@cbm-common/cbm-types 0.0.267 → 0.0.269
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.
|
@@ -47,7 +47,7 @@ export declare namespace CbmMessageSettingsModel {
|
|
|
47
47
|
}
|
|
48
48
|
interface ListLookForResponse {
|
|
49
49
|
success: boolean;
|
|
50
|
-
data: ListLookForResponse.Data
|
|
50
|
+
data: ListLookForResponse.Data;
|
|
51
51
|
}
|
|
52
52
|
namespace ListLookForResponse {
|
|
53
53
|
interface Data {
|
|
@@ -65,6 +65,8 @@ export declare namespace CbmMessageSettingsModel {
|
|
|
65
65
|
enabled: boolean;
|
|
66
66
|
deleted: boolean;
|
|
67
67
|
automatic_movement_authorization?: boolean;
|
|
68
|
+
user_id?: string;
|
|
69
|
+
order?: number;
|
|
68
70
|
}
|
|
69
71
|
namespace Data {
|
|
70
72
|
interface Reason {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CbmSalePriceModel } from
|
|
1
|
+
import { CbmSalePriceModel } from './sale-price.domain.model';
|
|
2
2
|
export declare namespace CbmSalesAccountModel {
|
|
3
3
|
type DetailType = 'item' | 'service' | 'kit' | 'outsourcing_service';
|
|
4
4
|
const transactionTypes: Record<string, string>;
|
|
@@ -125,6 +125,30 @@ export declare namespace CbmSalesAccountModel {
|
|
|
125
125
|
booking_id?: string;
|
|
126
126
|
booking_created_at?: number;
|
|
127
127
|
booking_created_user?: string;
|
|
128
|
+
vehicle_id?: string;
|
|
129
|
+
vehicle_license_plate?: string;
|
|
130
|
+
vehicle_type?: string;
|
|
131
|
+
vehicle_brand?: string;
|
|
132
|
+
vehicle_model?: string;
|
|
133
|
+
vehicle_color?: string;
|
|
134
|
+
vehicle_cylinder?: string;
|
|
135
|
+
vehicle_year?: string;
|
|
136
|
+
vehicle_registry_code?: string;
|
|
137
|
+
vehicle_chassis_number?: string;
|
|
138
|
+
vehicle_engine_number?: string;
|
|
139
|
+
vehicle_country_id?: string;
|
|
140
|
+
vehicle_country_name?: string;
|
|
141
|
+
vehicle_country_code?: string;
|
|
142
|
+
vehicle_country_short_name?: string;
|
|
143
|
+
vehicle_type_id?: string;
|
|
144
|
+
vehicle_type_code?: string;
|
|
145
|
+
vehicle_type_name?: string;
|
|
146
|
+
vehicle_type_type?: string;
|
|
147
|
+
vehicle_class?: string;
|
|
148
|
+
vehicle_fuel?: string;
|
|
149
|
+
order_document_nomenclature?: string;
|
|
150
|
+
order_document_number?: string;
|
|
151
|
+
order_document_date?: number;
|
|
128
152
|
}
|
|
129
153
|
}
|
|
130
154
|
}
|