diff --git a/dist/Customer/Office.d.ts b/dist/Customer/Office.d.ts index 483a50d..e58b817 100644 --- a/dist/Customer/Office.d.ts +++ b/dist/Customer/Office.d.ts @@ -7,5 +7,5 @@ export default class Office extends Resource { address?: Address; created_at: Date | null; updated_at: Date | null; - rib_url?: string; + rib_url?: string | null; } diff --git a/dist/Customer/Office.js b/dist/Customer/Office.js index 302187b..d26e170 100644 --- a/dist/Customer/Office.js +++ b/dist/Customer/Office.js @@ -21,6 +21,7 @@ class Office extends Resource_1.default { super(...arguments); this.created_at = null; this.updated_at = null; + this.rib_url = null; } } __decorate([ @@ -52,6 +53,6 @@ __decorate([ ], Office.prototype, "updated_at", void 0); __decorate([ (0, class_transformer_1.Expose)(), - __metadata("design:type", String) + __metadata("design:type", Object) ], Office.prototype, "rib_url", void 0); exports.default = Office; diff --git a/src/Customer/Office.ts b/src/Customer/Office.ts index e1fbd9c..bcc7354 100644 --- a/src/Customer/Office.ts +++ b/src/Customer/Office.ts @@ -26,5 +26,5 @@ export default class Office extends Resource { public updated_at: Date | null = null; @Expose() - public rib_url?: string; + public rib_url?: string | null = null; }