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
|
@@ -19,6 +19,7 @@ interface FleetFuelRefill extends Record<string, unknown> {
|
|
|
19
19
|
is_previous_entries_missed: YesNo;
|
|
20
20
|
date_time: string;
|
|
21
21
|
date?: string;
|
|
22
|
+
date_f?: string;
|
|
22
23
|
date_time_f?: string;
|
|
23
24
|
cost_per_unit?: number;
|
|
24
25
|
total_cost?: number;
|
|
@@ -113,22 +114,22 @@ declare const FleetFuelRefillFileSchema: z.ZodObject<{
|
|
|
113
114
|
}, "strip", z.ZodTypeAny, {
|
|
114
115
|
status: Status;
|
|
115
116
|
organisation_id: string;
|
|
117
|
+
file_name: string;
|
|
116
118
|
file_type: FileType;
|
|
119
|
+
fleet_fuel_refill_id: string;
|
|
117
120
|
file_url: string;
|
|
118
121
|
file_key: string;
|
|
119
|
-
file_name: string;
|
|
120
122
|
file_description: string;
|
|
121
123
|
file_size: number;
|
|
122
124
|
file_metadata: Record<string, any>;
|
|
123
|
-
fleet_fuel_refill_id: string;
|
|
124
125
|
}, {
|
|
125
126
|
status: Status;
|
|
126
127
|
organisation_id: string;
|
|
127
128
|
file_type: FileType;
|
|
128
129
|
fleet_fuel_refill_id: string;
|
|
130
|
+
file_name?: string | undefined;
|
|
129
131
|
file_url?: string | undefined;
|
|
130
132
|
file_key?: string | undefined;
|
|
131
|
-
file_name?: string | undefined;
|
|
132
133
|
file_description?: string | undefined;
|
|
133
134
|
file_size?: unknown;
|
|
134
135
|
file_metadata?: Record<string, any> | undefined;
|
|
@@ -189,46 +190,41 @@ declare const FleetFuelRefillSchema: z.ZodObject<{
|
|
|
189
190
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
190
191
|
status: Status;
|
|
191
192
|
organisation_id: string;
|
|
193
|
+
file_name: string;
|
|
192
194
|
file_type: FileType;
|
|
195
|
+
fleet_fuel_refill_id: string;
|
|
193
196
|
file_url: string;
|
|
194
197
|
file_key: string;
|
|
195
|
-
file_name: string;
|
|
196
198
|
file_description: string;
|
|
197
199
|
file_size: number;
|
|
198
200
|
file_metadata: Record<string, any>;
|
|
199
|
-
fleet_fuel_refill_id: string;
|
|
200
201
|
}, {
|
|
201
202
|
status: Status;
|
|
202
203
|
organisation_id: string;
|
|
203
204
|
file_type: FileType;
|
|
204
205
|
fleet_fuel_refill_id: string;
|
|
206
|
+
file_name?: string | undefined;
|
|
205
207
|
file_url?: string | undefined;
|
|
206
208
|
file_key?: string | undefined;
|
|
207
|
-
file_name?: string | undefined;
|
|
208
209
|
file_description?: string | undefined;
|
|
209
210
|
file_size?: unknown;
|
|
210
211
|
file_metadata?: Record<string, any> | undefined;
|
|
211
212
|
}>, "many">>>;
|
|
212
213
|
}, "strip", z.ZodTypeAny, {
|
|
213
|
-
odometer_reading: number;
|
|
214
|
-
date_time: string;
|
|
215
|
-
entry_source: RefillEntrySource;
|
|
216
|
-
source_reference_id: string;
|
|
217
|
-
source_notes: string;
|
|
218
|
-
admin_verify_status: GPSFuelApproveStatus;
|
|
219
|
-
transporter_verify_status: GPSFuelApproveStatus;
|
|
220
|
-
google_location: string;
|
|
221
214
|
status: Status;
|
|
222
215
|
organisation_id: string;
|
|
223
216
|
user_id: string;
|
|
224
217
|
vehicle_id: string;
|
|
225
218
|
driver_id: string;
|
|
226
219
|
device_id: string;
|
|
220
|
+
time_zone_id: string;
|
|
227
221
|
vehicle_fuel_type_id: string;
|
|
222
|
+
odometer_reading: number;
|
|
223
|
+
google_location: string;
|
|
228
224
|
vehicle_fuel_unit_id: string;
|
|
229
|
-
time_zone_id: string;
|
|
230
225
|
is_full_tank: YesNo;
|
|
231
226
|
is_previous_entries_missed: YesNo;
|
|
227
|
+
date_time: string;
|
|
232
228
|
invoice_number: string;
|
|
233
229
|
payment_mode: PaymentMode;
|
|
234
230
|
payment_status: PaymentStatus;
|
|
@@ -239,22 +235,25 @@ declare const FleetFuelRefillSchema: z.ZodObject<{
|
|
|
239
235
|
refill_details: string;
|
|
240
236
|
payment_details: string;
|
|
241
237
|
filled_by_person: string;
|
|
238
|
+
entry_source: RefillEntrySource;
|
|
239
|
+
source_reference_id: string;
|
|
240
|
+
source_notes: string;
|
|
241
|
+
admin_verify_status: GPSFuelApproveStatus;
|
|
242
|
+
transporter_verify_status: GPSFuelApproveStatus;
|
|
242
243
|
vendor_id: string;
|
|
243
244
|
fuel_station_id: string;
|
|
244
245
|
refill_files: {
|
|
245
246
|
status: Status;
|
|
246
247
|
organisation_id: string;
|
|
248
|
+
file_name: string;
|
|
247
249
|
file_type: FileType;
|
|
250
|
+
fleet_fuel_refill_id: string;
|
|
248
251
|
file_url: string;
|
|
249
252
|
file_key: string;
|
|
250
|
-
file_name: string;
|
|
251
253
|
file_description: string;
|
|
252
254
|
file_size: number;
|
|
253
255
|
file_metadata: Record<string, any>;
|
|
254
|
-
fleet_fuel_refill_id: string;
|
|
255
256
|
}[];
|
|
256
|
-
cost_per_unit?: number | undefined;
|
|
257
|
-
total_cost?: number | undefined;
|
|
258
257
|
latitude?: number | undefined;
|
|
259
258
|
longitude?: number | undefined;
|
|
260
259
|
before_refill_quantity?: number | undefined;
|
|
@@ -262,31 +261,28 @@ declare const FleetFuelRefillSchema: z.ZodObject<{
|
|
|
262
261
|
refill_quantity?: number | undefined;
|
|
263
262
|
verified_refill_quantity?: number | undefined;
|
|
264
263
|
diff_refill_quantity?: number | undefined;
|
|
264
|
+
cost_per_unit?: number | undefined;
|
|
265
|
+
total_cost?: number | undefined;
|
|
265
266
|
}, {
|
|
266
|
-
date_time: string;
|
|
267
|
-
admin_verify_status: GPSFuelApproveStatus;
|
|
268
|
-
transporter_verify_status: GPSFuelApproveStatus;
|
|
269
267
|
status: Status;
|
|
270
268
|
organisation_id: string;
|
|
271
269
|
user_id: string;
|
|
272
270
|
vehicle_id: string;
|
|
273
271
|
driver_id: string;
|
|
274
272
|
device_id: string;
|
|
273
|
+
time_zone_id: string;
|
|
275
274
|
vehicle_fuel_type_id: string;
|
|
276
275
|
vehicle_fuel_unit_id: string;
|
|
277
|
-
time_zone_id: string;
|
|
278
276
|
is_full_tank: YesNo;
|
|
279
277
|
is_previous_entries_missed: YesNo;
|
|
278
|
+
date_time: string;
|
|
280
279
|
payment_mode: PaymentMode;
|
|
281
280
|
payment_status: PaymentStatus;
|
|
281
|
+
admin_verify_status: GPSFuelApproveStatus;
|
|
282
|
+
transporter_verify_status: GPSFuelApproveStatus;
|
|
282
283
|
vendor_id: string;
|
|
283
284
|
fuel_station_id: string;
|
|
284
285
|
odometer_reading?: unknown;
|
|
285
|
-
cost_per_unit?: unknown;
|
|
286
|
-
total_cost?: unknown;
|
|
287
|
-
entry_source?: RefillEntrySource | undefined;
|
|
288
|
-
source_reference_id?: string | undefined;
|
|
289
|
-
source_notes?: string | undefined;
|
|
290
286
|
latitude?: unknown;
|
|
291
287
|
longitude?: unknown;
|
|
292
288
|
google_location?: string | undefined;
|
|
@@ -295,6 +291,8 @@ declare const FleetFuelRefillSchema: z.ZodObject<{
|
|
|
295
291
|
refill_quantity?: unknown;
|
|
296
292
|
verified_refill_quantity?: unknown;
|
|
297
293
|
diff_refill_quantity?: unknown;
|
|
294
|
+
cost_per_unit?: unknown;
|
|
295
|
+
total_cost?: unknown;
|
|
298
296
|
invoice_number?: string | undefined;
|
|
299
297
|
payment_reference_number?: string | undefined;
|
|
300
298
|
fuel_card_number?: string | undefined;
|
|
@@ -303,14 +301,17 @@ declare const FleetFuelRefillSchema: z.ZodObject<{
|
|
|
303
301
|
refill_details?: string | undefined;
|
|
304
302
|
payment_details?: string | undefined;
|
|
305
303
|
filled_by_person?: string | undefined;
|
|
304
|
+
entry_source?: RefillEntrySource | undefined;
|
|
305
|
+
source_reference_id?: string | undefined;
|
|
306
|
+
source_notes?: string | undefined;
|
|
306
307
|
refill_files?: {
|
|
307
308
|
status: Status;
|
|
308
309
|
organisation_id: string;
|
|
309
310
|
file_type: FileType;
|
|
310
311
|
fleet_fuel_refill_id: string;
|
|
312
|
+
file_name?: string | undefined;
|
|
311
313
|
file_url?: string | undefined;
|
|
312
314
|
file_key?: string | undefined;
|
|
313
|
-
file_name?: string | undefined;
|
|
314
315
|
file_description?: string | undefined;
|
|
315
316
|
file_size?: unknown;
|
|
316
317
|
file_metadata?: Record<string, any> | undefined;
|
|
@@ -364,11 +365,7 @@ declare const FleetFuelRefillQuerySchema: z.ZodObject<{
|
|
|
364
365
|
from_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
365
366
|
to_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
366
367
|
}, "strip", z.ZodTypeAny, {
|
|
367
|
-
entry_source: RefillEntrySource[];
|
|
368
|
-
admin_verify_status: GPSFuelApproveStatus[];
|
|
369
|
-
transporter_verify_status: GPSFuelApproveStatus[];
|
|
370
368
|
status: Status[];
|
|
371
|
-
time_zone_id: string;
|
|
372
369
|
search: string;
|
|
373
370
|
paging: PAGING;
|
|
374
371
|
page_count: number;
|
|
@@ -388,26 +385,27 @@ declare const FleetFuelRefillQuerySchema: z.ZodObject<{
|
|
|
388
385
|
}[];
|
|
389
386
|
include_master_data: YesNo;
|
|
390
387
|
date_format_id: string;
|
|
388
|
+
time_zone_id: string;
|
|
391
389
|
organisation_ids: string[];
|
|
392
390
|
user_ids: string[];
|
|
393
391
|
vehicle_ids: string[];
|
|
394
392
|
driver_ids: string[];
|
|
395
393
|
device_ids: string[];
|
|
396
|
-
vehicle_fuel_type_ids: string[];
|
|
397
|
-
vehicle_fuel_unit_ids: string[];
|
|
398
394
|
from_date: string;
|
|
399
395
|
to_date: string;
|
|
396
|
+
vehicle_fuel_type_ids: string[];
|
|
397
|
+
entry_source: RefillEntrySource[];
|
|
398
|
+
admin_verify_status: GPSFuelApproveStatus[];
|
|
399
|
+
transporter_verify_status: GPSFuelApproveStatus[];
|
|
400
400
|
vendor_ids: string[];
|
|
401
401
|
fuel_station_ids: string[];
|
|
402
|
+
vehicle_fuel_unit_ids: string[];
|
|
402
403
|
fleet_fuel_refill_ids: string[];
|
|
403
404
|
}, {
|
|
404
|
-
time_zone_id: string;
|
|
405
405
|
date_format_id: string;
|
|
406
|
+
time_zone_id: string;
|
|
406
407
|
from_date: string;
|
|
407
408
|
to_date: string;
|
|
408
|
-
entry_source?: RefillEntrySource[] | undefined;
|
|
409
|
-
admin_verify_status?: GPSFuelApproveStatus[] | undefined;
|
|
410
|
-
transporter_verify_status?: GPSFuelApproveStatus[] | undefined;
|
|
411
409
|
status?: Status[] | undefined;
|
|
412
410
|
search?: string | undefined;
|
|
413
411
|
paging?: PAGING | undefined;
|
|
@@ -433,9 +431,12 @@ declare const FleetFuelRefillQuerySchema: z.ZodObject<{
|
|
|
433
431
|
driver_ids?: string[] | undefined;
|
|
434
432
|
device_ids?: string[] | undefined;
|
|
435
433
|
vehicle_fuel_type_ids?: string[] | undefined;
|
|
436
|
-
|
|
434
|
+
entry_source?: RefillEntrySource[] | undefined;
|
|
435
|
+
admin_verify_status?: GPSFuelApproveStatus[] | undefined;
|
|
436
|
+
transporter_verify_status?: GPSFuelApproveStatus[] | undefined;
|
|
437
437
|
vendor_ids?: string[] | undefined;
|
|
438
438
|
fuel_station_ids?: string[] | undefined;
|
|
439
|
+
vehicle_fuel_unit_ids?: string[] | undefined;
|
|
439
440
|
fleet_fuel_refill_ids?: string[] | undefined;
|
|
440
441
|
}>;
|
|
441
442
|
type FleetFuelRefillQueryDTO = z.infer<typeof FleetFuelRefillQuerySchema>;
|
|
@@ -18,6 +18,7 @@ interface FleetFuelRemoval extends Record<string, unknown> {
|
|
|
18
18
|
odometer_reading?: number;
|
|
19
19
|
date_time: string;
|
|
20
20
|
date?: string;
|
|
21
|
+
date_f?: string;
|
|
21
22
|
date_time_f?: string;
|
|
22
23
|
cost_per_unit?: number;
|
|
23
24
|
total_cost?: number;
|
|
@@ -94,24 +95,24 @@ declare const FleetFuelRemovalFileSchema: z.ZodObject<{
|
|
|
94
95
|
file_metadata: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
95
96
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
96
97
|
}, "strip", z.ZodTypeAny, {
|
|
97
|
-
fleet_fuel_removal_id: string;
|
|
98
98
|
status: Status;
|
|
99
99
|
organisation_id: string;
|
|
100
|
+
file_name: string;
|
|
100
101
|
file_type: FileType;
|
|
101
102
|
file_url: string;
|
|
102
103
|
file_key: string;
|
|
103
|
-
file_name: string;
|
|
104
104
|
file_description: string;
|
|
105
105
|
file_size: number;
|
|
106
106
|
file_metadata: Record<string, any>;
|
|
107
|
-
}, {
|
|
108
107
|
fleet_fuel_removal_id: string;
|
|
108
|
+
}, {
|
|
109
109
|
status: Status;
|
|
110
110
|
organisation_id: string;
|
|
111
111
|
file_type: FileType;
|
|
112
|
+
fleet_fuel_removal_id: string;
|
|
113
|
+
file_name?: string | undefined;
|
|
112
114
|
file_url?: string | undefined;
|
|
113
115
|
file_key?: string | undefined;
|
|
114
|
-
file_name?: string | undefined;
|
|
115
116
|
file_description?: string | undefined;
|
|
116
117
|
file_size?: unknown;
|
|
117
118
|
file_metadata?: Record<string, any> | undefined;
|
|
@@ -158,106 +159,106 @@ declare const FleetFuelRemovalSchema: z.ZodObject<{
|
|
|
158
159
|
file_metadata: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
159
160
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
160
161
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
161
|
-
fleet_fuel_removal_id: string;
|
|
162
162
|
status: Status;
|
|
163
163
|
organisation_id: string;
|
|
164
|
+
file_name: string;
|
|
164
165
|
file_type: FileType;
|
|
165
166
|
file_url: string;
|
|
166
167
|
file_key: string;
|
|
167
|
-
file_name: string;
|
|
168
168
|
file_description: string;
|
|
169
169
|
file_size: number;
|
|
170
170
|
file_metadata: Record<string, any>;
|
|
171
|
-
}, {
|
|
172
171
|
fleet_fuel_removal_id: string;
|
|
172
|
+
}, {
|
|
173
173
|
status: Status;
|
|
174
174
|
organisation_id: string;
|
|
175
175
|
file_type: FileType;
|
|
176
|
+
fleet_fuel_removal_id: string;
|
|
177
|
+
file_name?: string | undefined;
|
|
176
178
|
file_url?: string | undefined;
|
|
177
179
|
file_key?: string | undefined;
|
|
178
|
-
file_name?: string | undefined;
|
|
179
180
|
file_description?: string | undefined;
|
|
180
181
|
file_size?: unknown;
|
|
181
182
|
file_metadata?: Record<string, any> | undefined;
|
|
182
183
|
}>, "many">>>;
|
|
183
184
|
}, "strip", z.ZodTypeAny, {
|
|
184
|
-
odometer_reading: number;
|
|
185
|
-
date_time: string;
|
|
186
|
-
fuel_removal_reason_id: string;
|
|
187
|
-
removal_details: string;
|
|
188
|
-
entry_source: RefillEntrySource;
|
|
189
|
-
source_reference_id: string;
|
|
190
|
-
source_notes: string;
|
|
191
|
-
admin_verify_status: GPSFuelApproveStatus;
|
|
192
|
-
transporter_verify_status: GPSFuelApproveStatus;
|
|
193
|
-
google_location: string;
|
|
194
185
|
status: Status;
|
|
195
186
|
organisation_id: string;
|
|
196
187
|
user_id: string;
|
|
197
188
|
vehicle_id: string;
|
|
198
189
|
driver_id: string;
|
|
199
190
|
device_id: string;
|
|
191
|
+
time_zone_id: string;
|
|
200
192
|
vehicle_fuel_type_id: string;
|
|
193
|
+
odometer_reading: number;
|
|
194
|
+
google_location: string;
|
|
201
195
|
vehicle_fuel_unit_id: string;
|
|
202
|
-
|
|
196
|
+
date_time: string;
|
|
197
|
+
entry_source: RefillEntrySource;
|
|
198
|
+
source_reference_id: string;
|
|
199
|
+
source_notes: string;
|
|
200
|
+
admin_verify_status: GPSFuelApproveStatus;
|
|
201
|
+
transporter_verify_status: GPSFuelApproveStatus;
|
|
202
|
+
fuel_removal_reason_id: string;
|
|
203
|
+
removal_details: string;
|
|
203
204
|
removal_files: {
|
|
204
|
-
fleet_fuel_removal_id: string;
|
|
205
205
|
status: Status;
|
|
206
206
|
organisation_id: string;
|
|
207
|
+
file_name: string;
|
|
207
208
|
file_type: FileType;
|
|
208
209
|
file_url: string;
|
|
209
210
|
file_key: string;
|
|
210
|
-
file_name: string;
|
|
211
211
|
file_description: string;
|
|
212
212
|
file_size: number;
|
|
213
213
|
file_metadata: Record<string, any>;
|
|
214
|
+
fleet_fuel_removal_id: string;
|
|
214
215
|
}[];
|
|
216
|
+
latitude?: number | undefined;
|
|
217
|
+
longitude?: number | undefined;
|
|
218
|
+
cost_per_unit?: number | undefined;
|
|
219
|
+
total_cost?: number | undefined;
|
|
215
220
|
before_removal_quantity?: number | undefined;
|
|
216
221
|
after_removal_quantity?: number | undefined;
|
|
217
222
|
removal_quantity?: number | undefined;
|
|
218
223
|
verified_removal_quantity?: number | undefined;
|
|
219
224
|
diff_removal_quantity?: number | undefined;
|
|
220
|
-
cost_per_unit?: number | undefined;
|
|
221
|
-
total_cost?: number | undefined;
|
|
222
|
-
latitude?: number | undefined;
|
|
223
|
-
longitude?: number | undefined;
|
|
224
225
|
}, {
|
|
225
|
-
date_time: string;
|
|
226
|
-
fuel_removal_reason_id: string;
|
|
227
|
-
admin_verify_status: GPSFuelApproveStatus;
|
|
228
|
-
transporter_verify_status: GPSFuelApproveStatus;
|
|
229
226
|
status: Status;
|
|
230
227
|
organisation_id: string;
|
|
231
228
|
user_id: string;
|
|
232
229
|
vehicle_id: string;
|
|
233
230
|
driver_id: string;
|
|
234
231
|
device_id: string;
|
|
232
|
+
time_zone_id: string;
|
|
235
233
|
vehicle_fuel_type_id: string;
|
|
236
234
|
vehicle_fuel_unit_id: string;
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
verified_removal_quantity?: unknown;
|
|
242
|
-
diff_removal_quantity?: unknown;
|
|
235
|
+
date_time: string;
|
|
236
|
+
admin_verify_status: GPSFuelApproveStatus;
|
|
237
|
+
transporter_verify_status: GPSFuelApproveStatus;
|
|
238
|
+
fuel_removal_reason_id: string;
|
|
243
239
|
odometer_reading?: unknown;
|
|
240
|
+
latitude?: unknown;
|
|
241
|
+
longitude?: unknown;
|
|
242
|
+
google_location?: string | undefined;
|
|
244
243
|
cost_per_unit?: unknown;
|
|
245
244
|
total_cost?: unknown;
|
|
246
|
-
removal_details?: string | undefined;
|
|
247
245
|
entry_source?: RefillEntrySource | undefined;
|
|
248
246
|
source_reference_id?: string | undefined;
|
|
249
247
|
source_notes?: string | undefined;
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
248
|
+
before_removal_quantity?: unknown;
|
|
249
|
+
after_removal_quantity?: unknown;
|
|
250
|
+
removal_quantity?: unknown;
|
|
251
|
+
verified_removal_quantity?: unknown;
|
|
252
|
+
diff_removal_quantity?: unknown;
|
|
253
|
+
removal_details?: string | undefined;
|
|
253
254
|
removal_files?: {
|
|
254
|
-
fleet_fuel_removal_id: string;
|
|
255
255
|
status: Status;
|
|
256
256
|
organisation_id: string;
|
|
257
257
|
file_type: FileType;
|
|
258
|
+
fleet_fuel_removal_id: string;
|
|
259
|
+
file_name?: string | undefined;
|
|
258
260
|
file_url?: string | undefined;
|
|
259
261
|
file_key?: string | undefined;
|
|
260
|
-
file_name?: string | undefined;
|
|
261
262
|
file_description?: string | undefined;
|
|
262
263
|
file_size?: unknown;
|
|
263
264
|
file_metadata?: Record<string, any> | undefined;
|
|
@@ -309,11 +310,7 @@ declare const FleetFuelRemovalQuerySchema: z.ZodObject<{
|
|
|
309
310
|
from_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
310
311
|
to_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
311
312
|
}, "strip", z.ZodTypeAny, {
|
|
312
|
-
entry_source: RefillEntrySource[];
|
|
313
|
-
admin_verify_status: GPSFuelApproveStatus[];
|
|
314
|
-
transporter_verify_status: GPSFuelApproveStatus[];
|
|
315
313
|
status: Status[];
|
|
316
|
-
time_zone_id: string;
|
|
317
314
|
search: string;
|
|
318
315
|
paging: PAGING;
|
|
319
316
|
page_count: number;
|
|
@@ -333,24 +330,25 @@ declare const FleetFuelRemovalQuerySchema: z.ZodObject<{
|
|
|
333
330
|
}[];
|
|
334
331
|
include_master_data: YesNo;
|
|
335
332
|
date_format_id: string;
|
|
333
|
+
time_zone_id: string;
|
|
336
334
|
organisation_ids: string[];
|
|
337
335
|
user_ids: string[];
|
|
338
336
|
vehicle_ids: string[];
|
|
339
337
|
driver_ids: string[];
|
|
340
338
|
device_ids: string[];
|
|
339
|
+
from_date: string;
|
|
340
|
+
to_date: string;
|
|
341
341
|
vehicle_fuel_type_ids: string[];
|
|
342
|
+
entry_source: RefillEntrySource[];
|
|
343
|
+
admin_verify_status: GPSFuelApproveStatus[];
|
|
344
|
+
transporter_verify_status: GPSFuelApproveStatus[];
|
|
342
345
|
vehicle_fuel_unit_ids: string[];
|
|
343
346
|
fuel_removal_reason_ids: string[];
|
|
344
|
-
from_date: string;
|
|
345
|
-
to_date: string;
|
|
346
347
|
}, {
|
|
347
|
-
time_zone_id: string;
|
|
348
348
|
date_format_id: string;
|
|
349
|
+
time_zone_id: string;
|
|
349
350
|
from_date: string;
|
|
350
351
|
to_date: string;
|
|
351
|
-
entry_source?: RefillEntrySource[] | undefined;
|
|
352
|
-
admin_verify_status?: GPSFuelApproveStatus[] | undefined;
|
|
353
|
-
transporter_verify_status?: GPSFuelApproveStatus[] | undefined;
|
|
354
352
|
status?: Status[] | undefined;
|
|
355
353
|
search?: string | undefined;
|
|
356
354
|
paging?: PAGING | undefined;
|
|
@@ -376,6 +374,9 @@ declare const FleetFuelRemovalQuerySchema: z.ZodObject<{
|
|
|
376
374
|
driver_ids?: string[] | undefined;
|
|
377
375
|
device_ids?: string[] | undefined;
|
|
378
376
|
vehicle_fuel_type_ids?: string[] | undefined;
|
|
377
|
+
entry_source?: RefillEntrySource[] | undefined;
|
|
378
|
+
admin_verify_status?: GPSFuelApproveStatus[] | undefined;
|
|
379
|
+
transporter_verify_status?: GPSFuelApproveStatus[] | undefined;
|
|
379
380
|
vehicle_fuel_unit_ids?: string[] | undefined;
|
|
380
381
|
fuel_removal_reason_ids?: string[] | undefined;
|
|
381
382
|
}>;
|