vms-nest-prisma-api-document 6.0.12 → 6.0.14
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.
- package/dist/core/Enums.d.ts +103 -7
- package/dist/core/Enums.js +102 -8
- package/dist/services/account/notification_service.d.ts +6 -6
- package/dist/services/account/notification_service.js +102 -3
- package/dist/services/fleet/fuel_management/fleet_fuel_daily_summary_service.d.ts +16 -16
- package/dist/services/fleet/fuel_management/fleet_fuel_refill_service.d.ts +41 -40
- package/dist/services/fleet/fuel_management/fleet_fuel_removal_service.d.ts +52 -51
- package/dist/services/gps/reports/gps_reports_mongo_service.d.ts +43 -43
- package/dist/services/master/expense/master_fuel_company_service.d.ts +5 -5
- package/dist/services/master/expense/master_vendor_document_type_service.d.ts +2 -2
- package/dist/services/master/main/master_main_eway_bill_provider_service.d.ts +2 -2
- package/dist/services/master/main/master_main_fasttag_bank_service.d.ts +2 -2
- package/dist/services/master/main/master_main_landmark_service.d.ts +6 -6
- package/dist/services/master/vehicle/master_vehicle_fuel_removal_reason_service.d.ts +4 -4
- package/dist/services/master/vehicle/master_vehicle_fuel_unit_service.d.ts +3 -3
- package/package.json +1 -1
|
@@ -33,41 +33,41 @@ declare const MultipleVehicleReportSchema: z.ZodObject<{
|
|
|
33
33
|
vehicle_summary: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof YesNo>>>;
|
|
34
34
|
driver_summary: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof YesNo>>>;
|
|
35
35
|
}, "strip", z.ZodTypeAny, {
|
|
36
|
-
db_index: string;
|
|
37
|
-
db_instance: string;
|
|
38
|
-
night_driving: NightDriving;
|
|
39
36
|
search: string;
|
|
40
37
|
paging: PAGING;
|
|
41
38
|
page_count: number;
|
|
42
39
|
page_index: number;
|
|
40
|
+
login_from: LoginFrom;
|
|
43
41
|
date_format_id: string;
|
|
44
42
|
time_zone_id: string;
|
|
45
|
-
login_from: LoginFrom;
|
|
46
43
|
organisation_id: string;
|
|
44
|
+
db_instance: string;
|
|
45
|
+
db_index: string;
|
|
47
46
|
vehicle_ids: string[];
|
|
48
47
|
from_date: string;
|
|
49
48
|
to_date: string;
|
|
50
49
|
time_slot: TimeSlot;
|
|
50
|
+
night_driving: NightDriving;
|
|
51
51
|
over_speed: OverSpeed;
|
|
52
52
|
utilization_km: number;
|
|
53
53
|
vehicle_summary: YesNo;
|
|
54
54
|
driver_summary: YesNo;
|
|
55
55
|
}, {
|
|
56
|
-
|
|
57
|
-
db_instance: string;
|
|
56
|
+
login_from: LoginFrom;
|
|
58
57
|
date_format_id: string;
|
|
59
58
|
time_zone_id: string;
|
|
60
|
-
login_from: LoginFrom;
|
|
61
59
|
organisation_id: string;
|
|
60
|
+
db_instance: string;
|
|
61
|
+
db_index: string;
|
|
62
62
|
from_date: string;
|
|
63
63
|
to_date: string;
|
|
64
|
-
night_driving?: NightDriving | undefined;
|
|
65
64
|
search?: string | undefined;
|
|
66
65
|
paging?: PAGING | undefined;
|
|
67
66
|
page_count?: unknown;
|
|
68
67
|
page_index?: unknown;
|
|
69
68
|
vehicle_ids?: string[] | undefined;
|
|
70
69
|
time_slot?: TimeSlot | undefined;
|
|
70
|
+
night_driving?: NightDriving | undefined;
|
|
71
71
|
over_speed?: OverSpeed | undefined;
|
|
72
72
|
utilization_km?: unknown;
|
|
73
73
|
vehicle_summary?: YesNo | undefined;
|
|
@@ -96,40 +96,40 @@ declare const MultipleDriverReportSchema: z.ZodObject<{
|
|
|
96
96
|
vehicle_summary: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof YesNo>>>;
|
|
97
97
|
driver_summary: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof YesNo>>>;
|
|
98
98
|
}, "strip", z.ZodTypeAny, {
|
|
99
|
-
db_index: string;
|
|
100
|
-
db_instance: string;
|
|
101
|
-
night_driving: NightDriving;
|
|
102
99
|
search: string;
|
|
103
100
|
paging: PAGING;
|
|
104
101
|
page_count: number;
|
|
105
102
|
page_index: number;
|
|
103
|
+
login_from: LoginFrom;
|
|
106
104
|
date_format_id: string;
|
|
107
105
|
time_zone_id: string;
|
|
108
|
-
login_from: LoginFrom;
|
|
109
106
|
organisation_id: string;
|
|
107
|
+
db_instance: string;
|
|
108
|
+
db_index: string;
|
|
110
109
|
from_date: string;
|
|
111
110
|
to_date: string;
|
|
112
111
|
time_slot: TimeSlot;
|
|
112
|
+
night_driving: NightDriving;
|
|
113
113
|
over_speed: OverSpeed;
|
|
114
114
|
utilization_km: number;
|
|
115
115
|
vehicle_summary: YesNo;
|
|
116
116
|
driver_summary: YesNo;
|
|
117
117
|
driver_ids: string[];
|
|
118
118
|
}, {
|
|
119
|
-
|
|
120
|
-
db_instance: string;
|
|
119
|
+
login_from: LoginFrom;
|
|
121
120
|
date_format_id: string;
|
|
122
121
|
time_zone_id: string;
|
|
123
|
-
login_from: LoginFrom;
|
|
124
122
|
organisation_id: string;
|
|
123
|
+
db_instance: string;
|
|
124
|
+
db_index: string;
|
|
125
125
|
from_date: string;
|
|
126
126
|
to_date: string;
|
|
127
|
-
night_driving?: NightDriving | undefined;
|
|
128
127
|
search?: string | undefined;
|
|
129
128
|
paging?: PAGING | undefined;
|
|
130
129
|
page_count?: unknown;
|
|
131
130
|
page_index?: unknown;
|
|
132
131
|
time_slot?: TimeSlot | undefined;
|
|
132
|
+
night_driving?: NightDriving | undefined;
|
|
133
133
|
over_speed?: OverSpeed | undefined;
|
|
134
134
|
utilization_km?: unknown;
|
|
135
135
|
vehicle_summary?: YesNo | undefined;
|
|
@@ -156,16 +156,16 @@ declare const SimpleReportSchema: z.ZodObject<{
|
|
|
156
156
|
interval_seconds: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodNumber>>, number, unknown>;
|
|
157
157
|
boolean_type: z.ZodType<BooleanType, z.ZodTypeDef, BooleanType>;
|
|
158
158
|
}, "strip", z.ZodTypeAny, {
|
|
159
|
-
db_index: string;
|
|
160
|
-
db_instance: string;
|
|
161
159
|
search: string;
|
|
162
160
|
paging: PAGING;
|
|
163
161
|
page_count: number;
|
|
164
162
|
page_index: number;
|
|
163
|
+
login_from: LoginFrom;
|
|
165
164
|
date_format_id: string;
|
|
166
165
|
time_zone_id: string;
|
|
167
|
-
login_from: LoginFrom;
|
|
168
166
|
organisation_id: string;
|
|
167
|
+
db_instance: string;
|
|
168
|
+
db_index: string;
|
|
169
169
|
vehicle_ids: string[];
|
|
170
170
|
from_date: string;
|
|
171
171
|
to_date: string;
|
|
@@ -173,12 +173,12 @@ declare const SimpleReportSchema: z.ZodObject<{
|
|
|
173
173
|
interval_seconds: number;
|
|
174
174
|
boolean_type: BooleanType;
|
|
175
175
|
}, {
|
|
176
|
-
|
|
177
|
-
db_instance: string;
|
|
176
|
+
login_from: LoginFrom;
|
|
178
177
|
date_format_id: string;
|
|
179
178
|
time_zone_id: string;
|
|
180
|
-
login_from: LoginFrom;
|
|
181
179
|
organisation_id: string;
|
|
180
|
+
db_instance: string;
|
|
181
|
+
db_index: string;
|
|
182
182
|
from_date: string;
|
|
183
183
|
to_date: string;
|
|
184
184
|
gps_type: GPSType;
|
|
@@ -207,26 +207,26 @@ declare const MultipleVehicleLast24HoursReportSchema: z.ZodObject<{
|
|
|
207
207
|
utilization_km: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
208
208
|
is12am: z.ZodType<Is12AM, z.ZodTypeDef, Is12AM>;
|
|
209
209
|
}, "strip", z.ZodTypeAny, {
|
|
210
|
-
db_index: string;
|
|
211
|
-
db_instance: string;
|
|
212
210
|
search: string;
|
|
213
211
|
paging: PAGING;
|
|
214
212
|
page_count: number;
|
|
215
213
|
page_index: number;
|
|
214
|
+
login_from: LoginFrom;
|
|
216
215
|
date_format_id: string;
|
|
217
216
|
time_zone_id: string;
|
|
218
|
-
login_from: LoginFrom;
|
|
219
217
|
organisation_id: string;
|
|
218
|
+
db_instance: string;
|
|
219
|
+
db_index: string;
|
|
220
220
|
vehicle_ids: string[];
|
|
221
221
|
utilization_km: number;
|
|
222
222
|
is12am: Is12AM;
|
|
223
223
|
}, {
|
|
224
|
-
|
|
225
|
-
db_instance: string;
|
|
224
|
+
login_from: LoginFrom;
|
|
226
225
|
date_format_id: string;
|
|
227
226
|
time_zone_id: string;
|
|
228
|
-
login_from: LoginFrom;
|
|
229
227
|
organisation_id: string;
|
|
228
|
+
db_instance: string;
|
|
229
|
+
db_index: string;
|
|
230
230
|
is12am: Is12AM;
|
|
231
231
|
search?: string | undefined;
|
|
232
232
|
paging?: PAGING | undefined;
|
|
@@ -253,28 +253,28 @@ declare const SingleVehicleReportSchema: z.ZodObject<{
|
|
|
253
253
|
to_date_time: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
254
254
|
interval_seconds: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
255
255
|
}, "strip", z.ZodTypeAny, {
|
|
256
|
-
db_index: string;
|
|
257
|
-
db_instance: string;
|
|
258
|
-
vehicle_id: string;
|
|
259
256
|
search: string;
|
|
260
257
|
paging: PAGING;
|
|
261
258
|
page_count: number;
|
|
262
259
|
page_index: number;
|
|
260
|
+
login_from: LoginFrom;
|
|
263
261
|
date_format_id: string;
|
|
264
262
|
time_zone_id: string;
|
|
265
|
-
login_from: LoginFrom;
|
|
266
263
|
organisation_id: string;
|
|
264
|
+
db_instance: string;
|
|
265
|
+
db_index: string;
|
|
267
266
|
interval_seconds: number;
|
|
267
|
+
vehicle_id: string;
|
|
268
268
|
from_date_time: string;
|
|
269
269
|
to_date_time: string;
|
|
270
270
|
}, {
|
|
271
|
-
|
|
272
|
-
db_instance: string;
|
|
273
|
-
vehicle_id: string;
|
|
271
|
+
login_from: LoginFrom;
|
|
274
272
|
date_format_id: string;
|
|
275
273
|
time_zone_id: string;
|
|
276
|
-
login_from: LoginFrom;
|
|
277
274
|
organisation_id: string;
|
|
275
|
+
db_instance: string;
|
|
276
|
+
db_index: string;
|
|
277
|
+
vehicle_id: string;
|
|
278
278
|
from_date_time: string;
|
|
279
279
|
to_date_time: string;
|
|
280
280
|
search?: string | undefined;
|
|
@@ -298,25 +298,25 @@ declare const VehicleDashboardSummaryQuerySchema: z.ZodObject<{
|
|
|
298
298
|
db_index: z.ZodEffects<z.ZodString, string, string>;
|
|
299
299
|
vehicle_id: z.ZodEffects<z.ZodString, string, string>;
|
|
300
300
|
}, "strip", z.ZodTypeAny, {
|
|
301
|
-
db_index: string;
|
|
302
|
-
db_instance: string;
|
|
303
|
-
vehicle_id: string;
|
|
304
301
|
search: string;
|
|
305
302
|
paging: PAGING;
|
|
306
303
|
page_count: number;
|
|
307
304
|
page_index: number;
|
|
305
|
+
login_from: LoginFrom;
|
|
308
306
|
date_format_id: string;
|
|
309
307
|
time_zone_id: string;
|
|
310
|
-
login_from: LoginFrom;
|
|
311
308
|
organisation_id: string;
|
|
312
|
-
}, {
|
|
313
|
-
db_index: string;
|
|
314
309
|
db_instance: string;
|
|
310
|
+
db_index: string;
|
|
315
311
|
vehicle_id: string;
|
|
312
|
+
}, {
|
|
313
|
+
login_from: LoginFrom;
|
|
316
314
|
date_format_id: string;
|
|
317
315
|
time_zone_id: string;
|
|
318
|
-
login_from: LoginFrom;
|
|
319
316
|
organisation_id: string;
|
|
317
|
+
db_instance: string;
|
|
318
|
+
db_index: string;
|
|
319
|
+
vehicle_id: string;
|
|
320
320
|
search?: string | undefined;
|
|
321
321
|
paging?: PAGING | undefined;
|
|
322
322
|
page_count?: unknown;
|
|
@@ -28,21 +28,21 @@ declare const MasterFuelCompanySchema: z.ZodObject<{
|
|
|
28
28
|
logo_key: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
29
29
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
30
30
|
}, "strip", z.ZodTypeAny, {
|
|
31
|
+
company_name: string;
|
|
31
32
|
description: string;
|
|
33
|
+
logo_url: string;
|
|
34
|
+
logo_key: string;
|
|
32
35
|
status: Status;
|
|
33
36
|
organisation_id: string;
|
|
34
37
|
country_id: string;
|
|
35
|
-
logo_key: string;
|
|
36
|
-
logo_url: string;
|
|
37
|
-
company_name: string;
|
|
38
38
|
}, {
|
|
39
|
+
company_name: string;
|
|
39
40
|
status: Status;
|
|
40
41
|
organisation_id: string;
|
|
41
42
|
country_id: string;
|
|
42
|
-
company_name: string;
|
|
43
43
|
description?: string | undefined;
|
|
44
|
-
logo_key?: string | undefined;
|
|
45
44
|
logo_url?: string | undefined;
|
|
45
|
+
logo_key?: string | undefined;
|
|
46
46
|
}>;
|
|
47
47
|
type MasterFuelCompanyDTO = z.infer<typeof MasterFuelCompanySchema>;
|
|
48
48
|
declare const MasterFuelCompanyQuerySchema: z.ZodObject<{
|
|
@@ -21,14 +21,14 @@ declare const MasterVendorDocumentTypeSchema: z.ZodObject<{
|
|
|
21
21
|
description: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
22
22
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
23
23
|
}, "strip", z.ZodTypeAny, {
|
|
24
|
-
document_type: string;
|
|
25
24
|
description: string;
|
|
26
25
|
status: Status;
|
|
27
26
|
organisation_id: string;
|
|
28
|
-
}, {
|
|
29
27
|
document_type: string;
|
|
28
|
+
}, {
|
|
30
29
|
status: Status;
|
|
31
30
|
organisation_id: string;
|
|
31
|
+
document_type: string;
|
|
32
32
|
description?: string | undefined;
|
|
33
33
|
}>;
|
|
34
34
|
type MasterVendorDocumentTypeDTO = z.infer<typeof MasterVendorDocumentTypeSchema>;
|
|
@@ -15,12 +15,12 @@ declare const MasterMainEwayBillProviderSchema: z.ZodObject<{
|
|
|
15
15
|
provider_code: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
16
16
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
17
17
|
}, "strip", z.ZodTypeAny, {
|
|
18
|
-
status: Status;
|
|
19
18
|
provider_name: string;
|
|
20
19
|
provider_code: string;
|
|
21
|
-
}, {
|
|
22
20
|
status: Status;
|
|
21
|
+
}, {
|
|
23
22
|
provider_name: string;
|
|
23
|
+
status: Status;
|
|
24
24
|
provider_code?: string | undefined;
|
|
25
25
|
}>;
|
|
26
26
|
type MasterMainEwayBillProviderDTO = z.infer<typeof MasterMainEwayBillProviderSchema>;
|
|
@@ -15,12 +15,12 @@ declare const MasterMainFasttagBankSchema: z.ZodObject<{
|
|
|
15
15
|
bank_code: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
16
16
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
17
17
|
}, "strip", z.ZodTypeAny, {
|
|
18
|
+
status: Status;
|
|
18
19
|
bank_name: string;
|
|
19
20
|
bank_code: string;
|
|
20
|
-
status: Status;
|
|
21
21
|
}, {
|
|
22
|
-
bank_name: string;
|
|
23
22
|
status: Status;
|
|
23
|
+
bank_name: string;
|
|
24
24
|
bank_code?: string | undefined;
|
|
25
25
|
}>;
|
|
26
26
|
type MasterMainFasttagBankDTO = z.infer<typeof MasterMainFasttagBankSchema>;
|
|
@@ -39,7 +39,6 @@ declare const MasterMainLandmarkSchema: z.ZodObject<{
|
|
|
39
39
|
longitude: z.ZodOptional<z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>>;
|
|
40
40
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
41
41
|
}, "strip", z.ZodTypeAny, {
|
|
42
|
-
google_location: string;
|
|
43
42
|
status: Status;
|
|
44
43
|
country_id: string;
|
|
45
44
|
state_id: string;
|
|
@@ -48,6 +47,7 @@ declare const MasterMainLandmarkSchema: z.ZodObject<{
|
|
|
48
47
|
zip_code: string;
|
|
49
48
|
landmark_name: string;
|
|
50
49
|
location: string;
|
|
50
|
+
google_location: string;
|
|
51
51
|
latitude?: number | undefined;
|
|
52
52
|
longitude?: number | undefined;
|
|
53
53
|
}, {
|
|
@@ -55,13 +55,13 @@ declare const MasterMainLandmarkSchema: z.ZodObject<{
|
|
|
55
55
|
country_id: string;
|
|
56
56
|
state_id: string;
|
|
57
57
|
landmark_name: string;
|
|
58
|
-
latitude?: unknown;
|
|
59
|
-
longitude?: unknown;
|
|
60
|
-
google_location?: string | undefined;
|
|
61
58
|
locality?: string | undefined;
|
|
62
59
|
city_district_town?: string | undefined;
|
|
63
60
|
zip_code?: string | undefined;
|
|
61
|
+
latitude?: unknown;
|
|
62
|
+
longitude?: unknown;
|
|
64
63
|
location?: string | undefined;
|
|
64
|
+
google_location?: string | undefined;
|
|
65
65
|
}>;
|
|
66
66
|
type MasterMainLandmarkDTO = z.infer<typeof MasterMainLandmarkSchema>;
|
|
67
67
|
declare const MasterMainLandmarkQuerySchema: z.ZodObject<{
|
|
@@ -100,7 +100,6 @@ declare const MasterMainLandmarkQuerySchema: z.ZodObject<{
|
|
|
100
100
|
landmark_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
101
101
|
}, "strip", z.ZodTypeAny, {
|
|
102
102
|
status: Status[];
|
|
103
|
-
time_zone_id: string;
|
|
104
103
|
search: string;
|
|
105
104
|
paging: PAGING;
|
|
106
105
|
page_count: number;
|
|
@@ -120,12 +119,13 @@ declare const MasterMainLandmarkQuerySchema: z.ZodObject<{
|
|
|
120
119
|
}[];
|
|
121
120
|
include_master_data: YesNo;
|
|
122
121
|
date_format_id: string;
|
|
122
|
+
time_zone_id: string;
|
|
123
123
|
country_ids: string[];
|
|
124
124
|
state_ids: string[];
|
|
125
125
|
landmark_ids: string[];
|
|
126
126
|
}, {
|
|
127
|
-
time_zone_id: string;
|
|
128
127
|
date_format_id: string;
|
|
128
|
+
time_zone_id: string;
|
|
129
129
|
status?: Status[] | undefined;
|
|
130
130
|
search?: string | undefined;
|
|
131
131
|
paging?: PAGING | undefined;
|
|
@@ -24,14 +24,14 @@ declare const MasterVehicleFuelRemovalReasonSchema: z.ZodObject<{
|
|
|
24
24
|
description: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
25
25
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
26
26
|
}, "strip", z.ZodTypeAny, {
|
|
27
|
-
removal_reason: string;
|
|
28
27
|
status: Status;
|
|
29
28
|
organisation_id: string;
|
|
30
29
|
description: string;
|
|
31
|
-
}, {
|
|
32
30
|
removal_reason: string;
|
|
31
|
+
}, {
|
|
33
32
|
status: Status;
|
|
34
33
|
organisation_id: string;
|
|
34
|
+
removal_reason: string;
|
|
35
35
|
description?: string | undefined;
|
|
36
36
|
}>;
|
|
37
37
|
type MasterVehicleFuelRemovalReasonDTO = z.infer<typeof MasterVehicleFuelRemovalReasonSchema>;
|
|
@@ -70,7 +70,6 @@ declare const MasterVehicleFuelRemovalReasonQuerySchema: z.ZodObject<{
|
|
|
70
70
|
fuel_removal_reason_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
71
71
|
}, "strip", z.ZodTypeAny, {
|
|
72
72
|
status: Status[];
|
|
73
|
-
time_zone_id: string;
|
|
74
73
|
search: string;
|
|
75
74
|
paging: PAGING;
|
|
76
75
|
page_count: number;
|
|
@@ -90,11 +89,12 @@ declare const MasterVehicleFuelRemovalReasonQuerySchema: z.ZodObject<{
|
|
|
90
89
|
}[];
|
|
91
90
|
include_master_data: YesNo;
|
|
92
91
|
date_format_id: string;
|
|
92
|
+
time_zone_id: string;
|
|
93
93
|
organisation_ids: string[];
|
|
94
94
|
fuel_removal_reason_ids: string[];
|
|
95
95
|
}, {
|
|
96
|
-
time_zone_id: string;
|
|
97
96
|
date_format_id: string;
|
|
97
|
+
time_zone_id: string;
|
|
98
98
|
status?: Status[] | undefined;
|
|
99
99
|
search?: string | undefined;
|
|
100
100
|
paging?: PAGING | undefined;
|
|
@@ -32,8 +32,8 @@ declare const MasterVehicleFuelUnitSchema: z.ZodObject<{
|
|
|
32
32
|
}, "strip", z.ZodTypeAny, {
|
|
33
33
|
status: Status;
|
|
34
34
|
organisation_id: string;
|
|
35
|
-
fuel_unit: string;
|
|
36
35
|
description: string;
|
|
36
|
+
fuel_unit: string;
|
|
37
37
|
}, {
|
|
38
38
|
status: Status;
|
|
39
39
|
organisation_id: string;
|
|
@@ -76,7 +76,6 @@ declare const MasterVehicleFuelUnitQuerySchema: z.ZodObject<{
|
|
|
76
76
|
fuel_unit_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
77
77
|
}, "strip", z.ZodTypeAny, {
|
|
78
78
|
status: Status[];
|
|
79
|
-
time_zone_id: string;
|
|
80
79
|
search: string;
|
|
81
80
|
paging: PAGING;
|
|
82
81
|
page_count: number;
|
|
@@ -96,11 +95,12 @@ declare const MasterVehicleFuelUnitQuerySchema: z.ZodObject<{
|
|
|
96
95
|
}[];
|
|
97
96
|
include_master_data: YesNo;
|
|
98
97
|
date_format_id: string;
|
|
98
|
+
time_zone_id: string;
|
|
99
99
|
organisation_ids: string[];
|
|
100
100
|
fuel_unit_ids: string[];
|
|
101
101
|
}, {
|
|
102
|
-
time_zone_id: string;
|
|
103
102
|
date_format_id: string;
|
|
103
|
+
time_zone_id: string;
|
|
104
104
|
status?: Status[] | undefined;
|
|
105
105
|
search?: string | undefined;
|
|
106
106
|
paging?: PAGING | undefined;
|
package/package.json
CHANGED