diff --git a/dist/Customer/Office.d.ts b/dist/Customer/Office.d.ts index ffe3113..483a50d 100644 --- a/dist/Customer/Office.d.ts +++ b/dist/Customer/Office.d.ts @@ -7,4 +7,5 @@ export default class Office extends Resource { address?: Address; created_at: Date | null; updated_at: Date | null; + rib_url?: string; } diff --git a/dist/Customer/Office.js b/dist/Customer/Office.js index 8ecc832..302187b 100644 --- a/dist/Customer/Office.js +++ b/dist/Customer/Office.js @@ -50,4 +50,8 @@ __decorate([ (0, class_validator_1.IsDate)(), __metadata("design:type", Object) ], Office.prototype, "updated_at", void 0); +__decorate([ + (0, class_transformer_1.Expose)(), + __metadata("design:type", String) +], Office.prototype, "rib_url", void 0); exports.default = Office; diff --git a/src/Customer/Office.ts b/src/Customer/Office.ts index e00bad8..e1fbd9c 100644 --- a/src/Customer/Office.ts +++ b/src/Customer/Office.ts @@ -24,4 +24,7 @@ export default class Office extends Resource { @Expose() @IsDate() public updated_at: Date | null = null; + + @Expose() + public rib_url?: string; }