From a32960987bb5111dfad827c5b23f5b15eecb0df8 Mon Sep 17 00:00:00 2001 From: Vins Date: Thu, 15 Feb 2024 14:39:29 +0100 Subject: [PATCH] v2.109 --- dist/Customer/Office.d.ts | 1 + dist/Customer/Office.js | 4 ++++ src/Customer/Office.ts | 3 +++ 3 files changed, 8 insertions(+) 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; }