From bde2ec832a8ed471da279c133bc983d692ec48e3 Mon Sep 17 00:00:00 2001 From: Vins Date: Thu, 15 Feb 2024 15:24:25 +0100 Subject: [PATCH] v2.113 --- dist/Customer/Office.d.ts | 2 +- dist/Customer/Office.js | 3 +-- src/Customer/Office.ts | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/dist/Customer/Office.d.ts b/dist/Customer/Office.d.ts index e58b817..483a50d 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 | null; + rib_url?: string; } diff --git a/dist/Customer/Office.js b/dist/Customer/Office.js index d26e170..302187b 100644 --- a/dist/Customer/Office.js +++ b/dist/Customer/Office.js @@ -21,7 +21,6 @@ class Office extends Resource_1.default { super(...arguments); this.created_at = null; this.updated_at = null; - this.rib_url = null; } } __decorate([ @@ -53,6 +52,6 @@ __decorate([ ], Office.prototype, "updated_at", void 0); __decorate([ (0, class_transformer_1.Expose)(), - __metadata("design:type", Object) + __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 bcc7354..e1fbd9c 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 | null = null; + public rib_url?: string; }