@cbm-common/cbm-types 0.0.262 → 0.0.264
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -85,9 +85,7 @@ export declare class CbmAddDownPayment {
|
|
|
85
85
|
value: FormControl<string | null>;
|
|
86
86
|
}>;
|
|
87
87
|
commentary: FormControl<string | null>;
|
|
88
|
-
|
|
89
|
-
collectionOriginName: FormControl<string | null>;
|
|
90
|
-
eventModuleOrigin: FormControl<string | null>;
|
|
88
|
+
collectionOrigin: FormControl<CbmSalesAccountModel.ListResponse.Item | null>;
|
|
91
89
|
dataOrigin: FormControl<CbmSalesAccountModel.ListResponse.Item.DataOrigin | null>;
|
|
92
90
|
}>;
|
|
93
91
|
sellers: import("@angular/core").WritableSignal<CbmSellerModel.ListResponse.Data[]>;
|
|
@@ -349,10 +349,10 @@ export declare namespace IDownPaymentModel {
|
|
|
349
349
|
client_branch_contact_cellphone?: string;
|
|
350
350
|
client_branch_contact_email?: string[];
|
|
351
351
|
payment_term_options: SaveBody.PaymentTermOptions;
|
|
352
|
-
collection_origin_id
|
|
353
|
-
collection_origin_name
|
|
354
|
-
event_module_origin
|
|
355
|
-
data_origin
|
|
352
|
+
collection_origin_id: string;
|
|
353
|
+
collection_origin_name: string;
|
|
354
|
+
event_module_origin: string;
|
|
355
|
+
data_origin: SaveBody.DataOrigin;
|
|
356
356
|
}
|
|
357
357
|
export namespace SaveBody {
|
|
358
358
|
interface PaymentTermOptions {
|
|
@@ -120,6 +120,11 @@ export declare namespace CbmSalesAccountModel {
|
|
|
120
120
|
guest_document_type_name: string;
|
|
121
121
|
guest_name: string;
|
|
122
122
|
guest_last_name: string;
|
|
123
|
+
entry_date?: number;
|
|
124
|
+
exit_date?: number;
|
|
125
|
+
booking_id?: string;
|
|
126
|
+
booking_created_at?: number;
|
|
127
|
+
booking_created_user?: string;
|
|
123
128
|
}
|
|
124
129
|
}
|
|
125
130
|
}
|