From 67348c776c8319ed8707ade406a2ce454e7adc2e Mon Sep 17 00:00:00 2001 From: Vins Date: Wed, 5 Jun 2024 09:05:27 +0200 Subject: [PATCH] typo note folder --- dist/Customer/Note.d.ts | 2 +- dist/Customer/Note.js | 2 +- src/Customer/Note.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/Customer/Note.d.ts b/dist/Customer/Note.d.ts index 7fab6c9..38e0cdc 100644 --- a/dist/Customer/Note.d.ts +++ b/dist/Customer/Note.d.ts @@ -6,5 +6,5 @@ export default class Note extends Resource { created_at: Date | null; updated_at: Date | null; customer?: Customer; - office_folder?: OfficeFolder; + folder?: OfficeFolder; } diff --git a/dist/Customer/Note.js b/dist/Customer/Note.js index e3a11f4..7dd0841 100644 --- a/dist/Customer/Note.js +++ b/dist/Customer/Note.js @@ -74,5 +74,5 @@ __decorate([ (0, class_transformer_1.Expose)(), (0, class_transformer_1.Type)(() => _1.OfficeFolder), __metadata("design:type", _1.OfficeFolder) -], Note.prototype, "office_folder", void 0); +], Note.prototype, "folder", void 0); exports.default = Note; diff --git a/src/Customer/Note.ts b/src/Customer/Note.ts index 8586a20..5a4c035 100644 --- a/src/Customer/Note.ts +++ b/src/Customer/Note.ts @@ -24,5 +24,5 @@ export default class Note extends Resource { @Expose() @Type(() => OfficeFolder) - public office_folder?: OfficeFolder; + public folder?: OfficeFolder; }