vms-nest-prisma-api-document 7.0.4 → 7.0.5

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.
Files changed (19) hide show
  1. package/dist/services/account/analytics/user_login_analytics_service.d.ts +3 -3
  2. package/dist/services/account/analytics/user_page_analytics_service.d.ts +1 -1
  3. package/dist/services/fleet/fuel_management/fleet_fuel_daily_summary_service.d.ts +16 -16
  4. package/dist/services/fleet/fuel_management/fleet_fuel_refill_service.d.ts +40 -40
  5. package/dist/services/fleet/fuel_management/fleet_fuel_removal_service.d.ts +51 -51
  6. package/dist/services/gps/features/geofence/gps_geofence_service.d.ts +16 -16
  7. package/dist/services/gps/features/geofence/gps_geofence_transaction_service.d.ts +15 -15
  8. package/dist/services/gps/features/geofence/gps_geofence_transaction_summary_service.d.ts +10 -10
  9. package/dist/services/gps/features/geofence/trip_geofence_to_geofence_service.d.ts +6 -6
  10. package/dist/services/gps/features/gps_live_track_share_link_service.d.ts +16 -16
  11. package/dist/services/gps/features/gps_track_history_share_link_service.d.ts +9 -9
  12. package/dist/services/main/vehicle/master_vehicle_service.js +1 -1
  13. package/dist/services/master/expense/master_fuel_company_service.d.ts +5 -5
  14. package/dist/services/master/expense/master_vendor_document_type_service.d.ts +2 -2
  15. package/dist/services/master/main/master_main_landmark_service.d.ts +6 -6
  16. package/dist/services/master/vehicle/master_vehicle_fuel_removal_reason_service.d.ts +4 -4
  17. package/dist/services/website/contact_us_detail_service.d.ts +1 -1
  18. package/dist/services/website/faq_service.d.ts +1 -1
  19. package/package.json +1 -1
@@ -22,15 +22,15 @@ declare const UserLoginAnalyticsSchema: z.ZodObject<{
22
22
  }, "strip", z.ZodTypeAny, {
23
23
  user_id: string;
24
24
  organisation_id: string;
25
- login_from: LoginFrom;
26
25
  country_id: string;
26
+ login_from: LoginFrom;
27
27
  os_details: Record<string, any>;
28
28
  ip_details: Record<string, any>;
29
29
  }, {
30
30
  user_id: string;
31
31
  organisation_id: string;
32
- login_from: LoginFrom;
33
32
  country_id: string;
33
+ login_from: LoginFrom;
34
34
  os_details?: Record<string, any> | undefined;
35
35
  ip_details?: Record<string, any> | undefined;
36
36
  }>;
@@ -48,11 +48,11 @@ declare const UserLoginAnalyticsQuerySchema: z.ZodObject<{
48
48
  organisation_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
49
49
  country_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
50
50
  }, "strip", z.ZodTypeAny, {
51
+ login_from: LoginFrom;
51
52
  search: string;
52
53
  paging: PAGING;
53
54
  page_count: number;
54
55
  page_index: number;
55
- login_from: LoginFrom;
56
56
  date_format_id: string;
57
57
  time_zone_id: string;
58
58
  user_ids: string[];
@@ -43,11 +43,11 @@ declare const UserPageAnalyticsQuerySchema: z.ZodObject<{
43
43
  user_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
44
44
  organisation_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
45
45
  }, "strip", z.ZodTypeAny, {
46
+ login_from: LoginFrom;
46
47
  search: string;
47
48
  paging: PAGING;
48
49
  page_count: number;
49
50
  page_index: number;
50
- login_from: LoginFrom;
51
51
  date_format_id: string;
52
52
  time_zone_id: string;
53
53
  user_ids: string[];
@@ -62,22 +62,22 @@ declare const FleetFuelDailySummarySchema: z.ZodObject<{
62
62
  status: z.ZodType<Status, z.ZodTypeDef, Status>;
63
63
  }, "strip", z.ZodTypeAny, {
64
64
  date: string;
65
- status: Status;
66
- organisation_id: string;
67
- user_id: string;
68
- vehicle_id: string;
69
- driver_id: string;
70
- device_id: string;
65
+ start_fuel_liters: number;
66
+ end_fuel_liters: number;
71
67
  total_km: number;
72
68
  consumed_fuel_liters: number;
73
69
  refills_count: number;
74
- start_fuel_liters: number;
75
- end_fuel_liters: number;
76
70
  refill_liters: number;
77
71
  removals_count: number;
78
72
  removal_liters: number;
79
73
  mileage_kmpl: number;
80
74
  liters_per_100km: number;
75
+ status: Status;
76
+ organisation_id: string;
77
+ user_id: string;
78
+ vehicle_id: string;
79
+ driver_id: string;
80
+ device_id: string;
81
81
  }, {
82
82
  date: string;
83
83
  status: Status;
@@ -86,11 +86,11 @@ declare const FleetFuelDailySummarySchema: z.ZodObject<{
86
86
  vehicle_id: string;
87
87
  driver_id: string;
88
88
  device_id: string;
89
+ start_fuel_liters?: unknown;
90
+ end_fuel_liters?: unknown;
89
91
  total_km?: unknown;
90
92
  consumed_fuel_liters?: unknown;
91
93
  refills_count?: unknown;
92
- start_fuel_liters?: unknown;
93
- end_fuel_liters?: unknown;
94
94
  refill_liters?: unknown;
95
95
  removals_count?: unknown;
96
96
  removal_liters?: unknown;
@@ -140,7 +140,6 @@ declare const FleetFuelDailySummaryQuerySchema: z.ZodObject<{
140
140
  day_summary: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof YesNo>>>;
141
141
  }, "strip", z.ZodTypeAny, {
142
142
  status: Status[];
143
- time_zone_id: string;
144
143
  search: string;
145
144
  paging: PAGING;
146
145
  page_count: number;
@@ -160,6 +159,7 @@ declare const FleetFuelDailySummaryQuerySchema: z.ZodObject<{
160
159
  }[];
161
160
  include_master_data: YesNo;
162
161
  date_format_id: string;
162
+ time_zone_id: string;
163
163
  organisation_ids: string[];
164
164
  user_ids: string[];
165
165
  vehicle_ids: string[];
@@ -170,8 +170,8 @@ declare const FleetFuelDailySummaryQuerySchema: z.ZodObject<{
170
170
  vehicle_summary: YesNo;
171
171
  day_summary: YesNo;
172
172
  }, {
173
- time_zone_id: string;
174
173
  date_format_id: string;
174
+ time_zone_id: string;
175
175
  from_date: string;
176
176
  to_date: string;
177
177
  status?: Status[] | undefined;
@@ -239,7 +239,6 @@ declare const FleetFuelDailyMonthlySummaryQuerySchema: z.ZodObject<{
239
239
  to_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
240
240
  }, "strip", z.ZodTypeAny, {
241
241
  status: Status[];
242
- time_zone_id: string;
243
242
  search: string;
244
243
  paging: PAGING;
245
244
  page_count: number;
@@ -259,13 +258,14 @@ declare const FleetFuelDailyMonthlySummaryQuerySchema: z.ZodObject<{
259
258
  }[];
260
259
  include_master_data: YesNo;
261
260
  date_format_id: string;
261
+ time_zone_id: string;
262
262
  organisation_ids: string[];
263
263
  vehicle_ids: string[];
264
264
  from_date: string;
265
265
  to_date: string;
266
266
  }, {
267
- time_zone_id: string;
268
267
  date_format_id: string;
268
+ time_zone_id: string;
269
269
  from_date: string;
270
270
  to_date: string;
271
271
  status?: Status[] | undefined;
@@ -327,7 +327,6 @@ declare const AllVehiclesFuelDailySummaryQuerySchema: z.ZodObject<{
327
327
  }, "strip", z.ZodTypeAny, {
328
328
  date: string;
329
329
  status: Status[];
330
- time_zone_id: string;
331
330
  search: string;
332
331
  paging: PAGING;
333
332
  page_count: number;
@@ -347,11 +346,12 @@ declare const AllVehiclesFuelDailySummaryQuerySchema: z.ZodObject<{
347
346
  }[];
348
347
  include_master_data: YesNo;
349
348
  date_format_id: string;
349
+ time_zone_id: string;
350
350
  organisation_utrack_id: string;
351
351
  }, {
352
352
  date: string;
353
- time_zone_id: string;
354
353
  date_format_id: string;
354
+ time_zone_id: string;
355
355
  organisation_utrack_id: string;
356
356
  status?: Status[] | undefined;
357
357
  search?: string | undefined;
@@ -113,22 +113,22 @@ declare const FleetFuelRefillFileSchema: z.ZodObject<{
113
113
  }, "strip", z.ZodTypeAny, {
114
114
  status: Status;
115
115
  organisation_id: string;
116
+ file_name: string;
116
117
  file_type: FileType;
118
+ fleet_fuel_refill_id: string;
117
119
  file_url: string;
118
120
  file_key: string;
119
- file_name: string;
120
121
  file_description: string;
121
122
  file_size: number;
122
123
  file_metadata: Record<string, any>;
123
- fleet_fuel_refill_id: string;
124
124
  }, {
125
125
  status: Status;
126
126
  organisation_id: string;
127
127
  file_type: FileType;
128
128
  fleet_fuel_refill_id: string;
129
+ file_name?: string | undefined;
129
130
  file_url?: string | undefined;
130
131
  file_key?: string | undefined;
131
- file_name?: string | undefined;
132
132
  file_description?: string | undefined;
133
133
  file_size?: unknown;
134
134
  file_metadata?: Record<string, any> | undefined;
@@ -189,46 +189,41 @@ declare const FleetFuelRefillSchema: z.ZodObject<{
189
189
  }, z.UnknownKeysParam, z.ZodTypeAny, {
190
190
  status: Status;
191
191
  organisation_id: string;
192
+ file_name: string;
192
193
  file_type: FileType;
194
+ fleet_fuel_refill_id: string;
193
195
  file_url: string;
194
196
  file_key: string;
195
- file_name: string;
196
197
  file_description: string;
197
198
  file_size: number;
198
199
  file_metadata: Record<string, any>;
199
- fleet_fuel_refill_id: string;
200
200
  }, {
201
201
  status: Status;
202
202
  organisation_id: string;
203
203
  file_type: FileType;
204
204
  fleet_fuel_refill_id: string;
205
+ file_name?: string | undefined;
205
206
  file_url?: string | undefined;
206
207
  file_key?: string | undefined;
207
- file_name?: string | undefined;
208
208
  file_description?: string | undefined;
209
209
  file_size?: unknown;
210
210
  file_metadata?: Record<string, any> | undefined;
211
211
  }>, "many">>>;
212
212
  }, "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
213
  status: Status;
222
214
  organisation_id: string;
223
215
  user_id: string;
224
216
  vehicle_id: string;
225
217
  driver_id: string;
226
218
  device_id: string;
219
+ time_zone_id: string;
227
220
  vehicle_fuel_type_id: string;
228
221
  vehicle_fuel_unit_id: string;
229
- time_zone_id: string;
222
+ odometer_reading: number;
223
+ google_location: string;
230
224
  is_full_tank: YesNo;
231
225
  is_previous_entries_missed: YesNo;
226
+ date_time: string;
232
227
  invoice_number: string;
233
228
  payment_mode: PaymentMode;
234
229
  payment_status: PaymentStatus;
@@ -239,22 +234,25 @@ declare const FleetFuelRefillSchema: z.ZodObject<{
239
234
  refill_details: string;
240
235
  payment_details: string;
241
236
  filled_by_person: string;
237
+ entry_source: RefillEntrySource;
238
+ source_reference_id: string;
239
+ source_notes: string;
240
+ admin_verify_status: GPSFuelApproveStatus;
241
+ transporter_verify_status: GPSFuelApproveStatus;
242
242
  vendor_id: string;
243
243
  fuel_station_id: string;
244
244
  refill_files: {
245
245
  status: Status;
246
246
  organisation_id: string;
247
+ file_name: string;
247
248
  file_type: FileType;
249
+ fleet_fuel_refill_id: string;
248
250
  file_url: string;
249
251
  file_key: string;
250
- file_name: string;
251
252
  file_description: string;
252
253
  file_size: number;
253
254
  file_metadata: Record<string, any>;
254
- fleet_fuel_refill_id: string;
255
255
  }[];
256
- cost_per_unit?: number | undefined;
257
- total_cost?: number | undefined;
258
256
  latitude?: number | undefined;
259
257
  longitude?: number | undefined;
260
258
  before_refill_quantity?: number | undefined;
@@ -262,31 +260,28 @@ declare const FleetFuelRefillSchema: z.ZodObject<{
262
260
  refill_quantity?: number | undefined;
263
261
  verified_refill_quantity?: number | undefined;
264
262
  diff_refill_quantity?: number | undefined;
263
+ cost_per_unit?: number | undefined;
264
+ total_cost?: number | undefined;
265
265
  }, {
266
- date_time: string;
267
- admin_verify_status: GPSFuelApproveStatus;
268
- transporter_verify_status: GPSFuelApproveStatus;
269
266
  status: Status;
270
267
  organisation_id: string;
271
268
  user_id: string;
272
269
  vehicle_id: string;
273
270
  driver_id: string;
274
271
  device_id: string;
272
+ time_zone_id: string;
275
273
  vehicle_fuel_type_id: string;
276
274
  vehicle_fuel_unit_id: string;
277
- time_zone_id: string;
278
275
  is_full_tank: YesNo;
279
276
  is_previous_entries_missed: YesNo;
277
+ date_time: string;
280
278
  payment_mode: PaymentMode;
281
279
  payment_status: PaymentStatus;
280
+ admin_verify_status: GPSFuelApproveStatus;
281
+ transporter_verify_status: GPSFuelApproveStatus;
282
282
  vendor_id: string;
283
283
  fuel_station_id: string;
284
284
  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
285
  latitude?: unknown;
291
286
  longitude?: unknown;
292
287
  google_location?: string | undefined;
@@ -295,6 +290,8 @@ declare const FleetFuelRefillSchema: z.ZodObject<{
295
290
  refill_quantity?: unknown;
296
291
  verified_refill_quantity?: unknown;
297
292
  diff_refill_quantity?: unknown;
293
+ cost_per_unit?: unknown;
294
+ total_cost?: unknown;
298
295
  invoice_number?: string | undefined;
299
296
  payment_reference_number?: string | undefined;
300
297
  fuel_card_number?: string | undefined;
@@ -303,14 +300,17 @@ declare const FleetFuelRefillSchema: z.ZodObject<{
303
300
  refill_details?: string | undefined;
304
301
  payment_details?: string | undefined;
305
302
  filled_by_person?: string | undefined;
303
+ entry_source?: RefillEntrySource | undefined;
304
+ source_reference_id?: string | undefined;
305
+ source_notes?: string | undefined;
306
306
  refill_files?: {
307
307
  status: Status;
308
308
  organisation_id: string;
309
309
  file_type: FileType;
310
310
  fleet_fuel_refill_id: string;
311
+ file_name?: string | undefined;
311
312
  file_url?: string | undefined;
312
313
  file_key?: string | undefined;
313
- file_name?: string | undefined;
314
314
  file_description?: string | undefined;
315
315
  file_size?: unknown;
316
316
  file_metadata?: Record<string, any> | undefined;
@@ -364,11 +364,7 @@ declare const FleetFuelRefillQuerySchema: z.ZodObject<{
364
364
  from_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
365
365
  to_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
366
366
  }, "strip", z.ZodTypeAny, {
367
- entry_source: RefillEntrySource[];
368
- admin_verify_status: GPSFuelApproveStatus[];
369
- transporter_verify_status: GPSFuelApproveStatus[];
370
367
  status: Status[];
371
- time_zone_id: string;
372
368
  search: string;
373
369
  paging: PAGING;
374
370
  page_count: number;
@@ -388,26 +384,27 @@ declare const FleetFuelRefillQuerySchema: z.ZodObject<{
388
384
  }[];
389
385
  include_master_data: YesNo;
390
386
  date_format_id: string;
387
+ time_zone_id: string;
391
388
  organisation_ids: string[];
392
389
  user_ids: string[];
393
390
  vehicle_ids: string[];
394
391
  driver_ids: string[];
395
392
  device_ids: string[];
396
- vehicle_fuel_type_ids: string[];
397
- vehicle_fuel_unit_ids: string[];
398
393
  from_date: string;
399
394
  to_date: string;
395
+ vehicle_fuel_type_ids: string[];
396
+ entry_source: RefillEntrySource[];
397
+ admin_verify_status: GPSFuelApproveStatus[];
398
+ transporter_verify_status: GPSFuelApproveStatus[];
400
399
  vendor_ids: string[];
401
400
  fuel_station_ids: string[];
401
+ vehicle_fuel_unit_ids: string[];
402
402
  fleet_fuel_refill_ids: string[];
403
403
  }, {
404
- time_zone_id: string;
405
404
  date_format_id: string;
405
+ time_zone_id: string;
406
406
  from_date: string;
407
407
  to_date: string;
408
- entry_source?: RefillEntrySource[] | undefined;
409
- admin_verify_status?: GPSFuelApproveStatus[] | undefined;
410
- transporter_verify_status?: GPSFuelApproveStatus[] | undefined;
411
408
  status?: Status[] | undefined;
412
409
  search?: string | undefined;
413
410
  paging?: PAGING | undefined;
@@ -433,9 +430,12 @@ declare const FleetFuelRefillQuerySchema: z.ZodObject<{
433
430
  driver_ids?: string[] | undefined;
434
431
  device_ids?: string[] | undefined;
435
432
  vehicle_fuel_type_ids?: string[] | undefined;
436
- vehicle_fuel_unit_ids?: string[] | undefined;
433
+ entry_source?: RefillEntrySource[] | undefined;
434
+ admin_verify_status?: GPSFuelApproveStatus[] | undefined;
435
+ transporter_verify_status?: GPSFuelApproveStatus[] | undefined;
437
436
  vendor_ids?: string[] | undefined;
438
437
  fuel_station_ids?: string[] | undefined;
438
+ vehicle_fuel_unit_ids?: string[] | undefined;
439
439
  fleet_fuel_refill_ids?: string[] | undefined;
440
440
  }>;
441
441
  type FleetFuelRefillQueryDTO = z.infer<typeof FleetFuelRefillQuerySchema>;
@@ -94,24 +94,24 @@ declare const FleetFuelRemovalFileSchema: z.ZodObject<{
94
94
  file_metadata: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
95
95
  status: z.ZodType<Status, z.ZodTypeDef, Status>;
96
96
  }, "strip", z.ZodTypeAny, {
97
- fleet_fuel_removal_id: string;
98
97
  status: Status;
99
98
  organisation_id: string;
99
+ file_name: string;
100
100
  file_type: FileType;
101
101
  file_url: string;
102
102
  file_key: string;
103
- file_name: string;
104
103
  file_description: string;
105
104
  file_size: number;
106
105
  file_metadata: Record<string, any>;
107
- }, {
108
106
  fleet_fuel_removal_id: string;
107
+ }, {
109
108
  status: Status;
110
109
  organisation_id: string;
111
110
  file_type: FileType;
111
+ fleet_fuel_removal_id: string;
112
+ file_name?: string | undefined;
112
113
  file_url?: string | undefined;
113
114
  file_key?: string | undefined;
114
- file_name?: string | undefined;
115
115
  file_description?: string | undefined;
116
116
  file_size?: unknown;
117
117
  file_metadata?: Record<string, any> | undefined;
@@ -158,106 +158,106 @@ declare const FleetFuelRemovalSchema: z.ZodObject<{
158
158
  file_metadata: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
159
159
  status: z.ZodType<Status, z.ZodTypeDef, Status>;
160
160
  }, z.UnknownKeysParam, z.ZodTypeAny, {
161
- fleet_fuel_removal_id: string;
162
161
  status: Status;
163
162
  organisation_id: string;
163
+ file_name: string;
164
164
  file_type: FileType;
165
165
  file_url: string;
166
166
  file_key: string;
167
- file_name: string;
168
167
  file_description: string;
169
168
  file_size: number;
170
169
  file_metadata: Record<string, any>;
171
- }, {
172
170
  fleet_fuel_removal_id: string;
171
+ }, {
173
172
  status: Status;
174
173
  organisation_id: string;
175
174
  file_type: FileType;
175
+ fleet_fuel_removal_id: string;
176
+ file_name?: string | undefined;
176
177
  file_url?: string | undefined;
177
178
  file_key?: string | undefined;
178
- file_name?: string | undefined;
179
179
  file_description?: string | undefined;
180
180
  file_size?: unknown;
181
181
  file_metadata?: Record<string, any> | undefined;
182
182
  }>, "many">>>;
183
183
  }, "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
184
  status: Status;
195
185
  organisation_id: string;
196
186
  user_id: string;
197
187
  vehicle_id: string;
198
188
  driver_id: string;
199
189
  device_id: string;
190
+ time_zone_id: string;
200
191
  vehicle_fuel_type_id: string;
201
192
  vehicle_fuel_unit_id: string;
202
- time_zone_id: string;
193
+ odometer_reading: number;
194
+ google_location: string;
195
+ date_time: string;
196
+ entry_source: RefillEntrySource;
197
+ source_reference_id: string;
198
+ source_notes: string;
199
+ admin_verify_status: GPSFuelApproveStatus;
200
+ transporter_verify_status: GPSFuelApproveStatus;
201
+ fuel_removal_reason_id: string;
202
+ removal_details: string;
203
203
  removal_files: {
204
- fleet_fuel_removal_id: string;
205
204
  status: Status;
206
205
  organisation_id: string;
206
+ file_name: string;
207
207
  file_type: FileType;
208
208
  file_url: string;
209
209
  file_key: string;
210
- file_name: string;
211
210
  file_description: string;
212
211
  file_size: number;
213
212
  file_metadata: Record<string, any>;
213
+ fleet_fuel_removal_id: string;
214
214
  }[];
215
+ latitude?: number | undefined;
216
+ longitude?: number | undefined;
217
+ cost_per_unit?: number | undefined;
218
+ total_cost?: number | undefined;
215
219
  before_removal_quantity?: number | undefined;
216
220
  after_removal_quantity?: number | undefined;
217
221
  removal_quantity?: number | undefined;
218
222
  verified_removal_quantity?: number | undefined;
219
223
  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
224
  }, {
225
- date_time: string;
226
- fuel_removal_reason_id: string;
227
- admin_verify_status: GPSFuelApproveStatus;
228
- transporter_verify_status: GPSFuelApproveStatus;
229
225
  status: Status;
230
226
  organisation_id: string;
231
227
  user_id: string;
232
228
  vehicle_id: string;
233
229
  driver_id: string;
234
230
  device_id: string;
231
+ time_zone_id: string;
235
232
  vehicle_fuel_type_id: string;
236
233
  vehicle_fuel_unit_id: string;
237
- time_zone_id: string;
238
- before_removal_quantity?: unknown;
239
- after_removal_quantity?: unknown;
240
- removal_quantity?: unknown;
241
- verified_removal_quantity?: unknown;
242
- diff_removal_quantity?: unknown;
234
+ date_time: string;
235
+ admin_verify_status: GPSFuelApproveStatus;
236
+ transporter_verify_status: GPSFuelApproveStatus;
237
+ fuel_removal_reason_id: string;
243
238
  odometer_reading?: unknown;
239
+ latitude?: unknown;
240
+ longitude?: unknown;
241
+ google_location?: string | undefined;
244
242
  cost_per_unit?: unknown;
245
243
  total_cost?: unknown;
246
- removal_details?: string | undefined;
247
244
  entry_source?: RefillEntrySource | undefined;
248
245
  source_reference_id?: string | undefined;
249
246
  source_notes?: string | undefined;
250
- latitude?: unknown;
251
- longitude?: unknown;
252
- google_location?: string | undefined;
247
+ before_removal_quantity?: unknown;
248
+ after_removal_quantity?: unknown;
249
+ removal_quantity?: unknown;
250
+ verified_removal_quantity?: unknown;
251
+ diff_removal_quantity?: unknown;
252
+ removal_details?: string | undefined;
253
253
  removal_files?: {
254
- fleet_fuel_removal_id: string;
255
254
  status: Status;
256
255
  organisation_id: string;
257
256
  file_type: FileType;
257
+ fleet_fuel_removal_id: string;
258
+ file_name?: string | undefined;
258
259
  file_url?: string | undefined;
259
260
  file_key?: string | undefined;
260
- file_name?: string | undefined;
261
261
  file_description?: string | undefined;
262
262
  file_size?: unknown;
263
263
  file_metadata?: Record<string, any> | undefined;
@@ -309,11 +309,7 @@ declare const FleetFuelRemovalQuerySchema: z.ZodObject<{
309
309
  from_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
310
310
  to_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
311
311
  }, "strip", z.ZodTypeAny, {
312
- entry_source: RefillEntrySource[];
313
- admin_verify_status: GPSFuelApproveStatus[];
314
- transporter_verify_status: GPSFuelApproveStatus[];
315
312
  status: Status[];
316
- time_zone_id: string;
317
313
  search: string;
318
314
  paging: PAGING;
319
315
  page_count: number;
@@ -333,24 +329,25 @@ declare const FleetFuelRemovalQuerySchema: z.ZodObject<{
333
329
  }[];
334
330
  include_master_data: YesNo;
335
331
  date_format_id: string;
332
+ time_zone_id: string;
336
333
  organisation_ids: string[];
337
334
  user_ids: string[];
338
335
  vehicle_ids: string[];
339
336
  driver_ids: string[];
340
337
  device_ids: string[];
338
+ from_date: string;
339
+ to_date: string;
341
340
  vehicle_fuel_type_ids: string[];
341
+ entry_source: RefillEntrySource[];
342
+ admin_verify_status: GPSFuelApproveStatus[];
343
+ transporter_verify_status: GPSFuelApproveStatus[];
342
344
  vehicle_fuel_unit_ids: string[];
343
345
  fuel_removal_reason_ids: string[];
344
- from_date: string;
345
- to_date: string;
346
346
  }, {
347
- time_zone_id: string;
348
347
  date_format_id: string;
348
+ time_zone_id: string;
349
349
  from_date: string;
350
350
  to_date: string;
351
- entry_source?: RefillEntrySource[] | undefined;
352
- admin_verify_status?: GPSFuelApproveStatus[] | undefined;
353
- transporter_verify_status?: GPSFuelApproveStatus[] | undefined;
354
351
  status?: Status[] | undefined;
355
352
  search?: string | undefined;
356
353
  paging?: PAGING | undefined;
@@ -376,6 +373,9 @@ declare const FleetFuelRemovalQuerySchema: z.ZodObject<{
376
373
  driver_ids?: string[] | undefined;
377
374
  device_ids?: string[] | undefined;
378
375
  vehicle_fuel_type_ids?: string[] | undefined;
376
+ entry_source?: RefillEntrySource[] | undefined;
377
+ admin_verify_status?: GPSFuelApproveStatus[] | undefined;
378
+ transporter_verify_status?: GPSFuelApproveStatus[] | undefined;
379
379
  vehicle_fuel_unit_ids?: string[] | undefined;
380
380
  fuel_removal_reason_ids?: string[] | undefined;
381
381
  }>;
@@ -82,9 +82,6 @@ declare const GPSGeofenceSchema: z.ZodObject<{
82
82
  google_location: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
83
83
  status: z.ZodType<Status, z.ZodTypeDef, Status>;
84
84
  }, "strip", z.ZodTypeAny, {
85
- status: Status;
86
- organisation_id: string;
87
- country_code: string;
88
85
  geofence_name: string;
89
86
  geofence_purpose_type: GeofencePurposeType;
90
87
  geofence_description: string;
@@ -102,23 +99,25 @@ declare const GPSGeofenceSchema: z.ZodObject<{
102
99
  state_province_region: string;
103
100
  postal_code: string;
104
101
  country: string;
102
+ country_code: string;
105
103
  google_location: string;
106
- latitude?: number | undefined;
107
- longitude?: number | undefined;
104
+ status: Status;
105
+ organisation_id: string;
108
106
  radius_m?: number | undefined;
109
107
  radius_km?: number | undefined;
108
+ latitude?: number | undefined;
109
+ longitude?: number | undefined;
110
110
  }, {
111
- status: Status;
112
- organisation_id: string;
113
111
  geofence_name: string;
114
112
  geofence_purpose_type: GeofencePurposeType;
115
113
  geofence_type: GeofenceType;
116
- country_code?: string | undefined;
117
- latitude?: unknown;
118
- longitude?: unknown;
114
+ status: Status;
115
+ organisation_id: string;
119
116
  geofence_description?: string | undefined;
120
117
  radius_m?: unknown;
121
118
  radius_km?: unknown;
119
+ latitude?: unknown;
120
+ longitude?: unknown;
122
121
  poliline_data?: {
123
122
  latitude?: unknown;
124
123
  longitude?: unknown;
@@ -132,6 +131,7 @@ declare const GPSGeofenceSchema: z.ZodObject<{
132
131
  state_province_region?: string | undefined;
133
132
  postal_code?: string | undefined;
134
133
  country?: string | undefined;
134
+ country_code?: string | undefined;
135
135
  google_location?: string | undefined;
136
136
  }>;
137
137
  type GPSGeofenceDTO = z.infer<typeof GPSGeofenceSchema>;
@@ -171,8 +171,9 @@ declare const GPSGeofenceQuerySchema: z.ZodObject<{
171
171
  geofence_type: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof GeofenceType>, "many">>>;
172
172
  gps_geofence_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
173
173
  }, "strip", z.ZodTypeAny, {
174
+ geofence_purpose_type: GeofencePurposeType[];
175
+ geofence_type: GeofenceType[];
174
176
  status: Status[];
175
- time_zone_id: string;
176
177
  search: string;
177
178
  paging: PAGING;
178
179
  page_count: number;
@@ -192,13 +193,14 @@ declare const GPSGeofenceQuerySchema: z.ZodObject<{
192
193
  }[];
193
194
  include_master_data: YesNo;
194
195
  date_format_id: string;
196
+ time_zone_id: string;
195
197
  organisation_ids: string[];
196
198
  gps_geofence_ids: string[];
197
- geofence_purpose_type: GeofencePurposeType[];
198
- geofence_type: GeofenceType[];
199
199
  }, {
200
- time_zone_id: string;
201
200
  date_format_id: string;
201
+ time_zone_id: string;
202
+ geofence_purpose_type?: GeofencePurposeType[] | undefined;
203
+ geofence_type?: GeofenceType[] | undefined;
202
204
  status?: Status[] | undefined;
203
205
  search?: string | undefined;
204
206
  paging?: PAGING | undefined;
@@ -220,8 +222,6 @@ declare const GPSGeofenceQuerySchema: z.ZodObject<{
220
222
  include_master_data?: YesNo | undefined;
221
223
  organisation_ids?: string[] | undefined;
222
224
  gps_geofence_ids?: string[] | undefined;
223
- geofence_purpose_type?: GeofencePurposeType[] | undefined;
224
- geofence_type?: GeofenceType[] | undefined;
225
225
  }>;
226
226
  type GPSGeofenceQueryDTO = z.infer<typeof GPSGeofenceQuerySchema>;
227
227
  declare const toGPSGeofencePayload: (data: GPSGeofence) => GPSGeofenceDTO;
@@ -36,23 +36,23 @@ declare const GPSGeofenceTransactionSchema: z.ZodObject<{
36
36
  status: z.ZodType<Status, z.ZodTypeDef, Status>;
37
37
  time_zone_id: z.ZodEffects<z.ZodString, string, string>;
38
38
  }, "strip", z.ZodTypeAny, {
39
- geofence_status_type: GeofenceStatusType;
40
- geofence_time: string;
39
+ gps_geofence_id: string;
41
40
  status: Status;
42
41
  organisation_id: string;
43
- vehicle_id: string;
44
- driver_id: string;
45
- gps_geofence_id: string;
46
42
  time_zone_id: string;
47
- }, {
43
+ driver_id: string;
44
+ vehicle_id: string;
48
45
  geofence_status_type: GeofenceStatusType;
49
46
  geofence_time: string;
47
+ }, {
48
+ gps_geofence_id: string;
50
49
  status: Status;
51
50
  organisation_id: string;
52
- vehicle_id: string;
53
- driver_id: string;
54
- gps_geofence_id: string;
55
51
  time_zone_id: string;
52
+ driver_id: string;
53
+ vehicle_id: string;
54
+ geofence_status_type: GeofenceStatusType;
55
+ geofence_time: string;
56
56
  }>;
57
57
  type GPSGeofenceTransactionDTO = z.infer<typeof GPSGeofenceTransactionSchema>;
58
58
  declare const GPSGeofenceTransactionQuerySchema: z.ZodObject<{
@@ -94,9 +94,7 @@ declare const GPSGeofenceTransactionQuerySchema: z.ZodObject<{
94
94
  from_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
95
95
  to_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
96
96
  }, "strip", z.ZodTypeAny, {
97
- geofence_status_type: GeofenceStatusType[];
98
97
  status: Status[];
99
- time_zone_id: string;
100
98
  search: string;
101
99
  paging: PAGING;
102
100
  page_count: number;
@@ -116,18 +114,19 @@ declare const GPSGeofenceTransactionQuerySchema: z.ZodObject<{
116
114
  }[];
117
115
  include_master_data: YesNo;
118
116
  date_format_id: string;
117
+ time_zone_id: string;
119
118
  organisation_ids: string[];
119
+ gps_geofence_ids: string[];
120
120
  vehicle_ids: string[];
121
121
  driver_ids: string[];
122
- gps_geofence_ids: string[];
122
+ geofence_status_type: GeofenceStatusType[];
123
123
  from_date: string;
124
124
  to_date: string;
125
125
  }, {
126
- time_zone_id: string;
127
126
  date_format_id: string;
127
+ time_zone_id: string;
128
128
  from_date: string;
129
129
  to_date: string;
130
- geofence_status_type?: GeofenceStatusType[] | undefined;
131
130
  status?: Status[] | undefined;
132
131
  search?: string | undefined;
133
132
  paging?: PAGING | undefined;
@@ -148,9 +147,10 @@ declare const GPSGeofenceTransactionQuerySchema: z.ZodObject<{
148
147
  }[] | undefined;
149
148
  include_master_data?: YesNo | undefined;
150
149
  organisation_ids?: string[] | undefined;
150
+ gps_geofence_ids?: string[] | undefined;
151
151
  vehicle_ids?: string[] | undefined;
152
152
  driver_ids?: string[] | undefined;
153
- gps_geofence_ids?: string[] | undefined;
153
+ geofence_status_type?: GeofenceStatusType[] | undefined;
154
154
  }>;
155
155
  type GPSGeofenceTransactionQueryDTO = z.infer<typeof GPSGeofenceTransactionQuerySchema>;
156
156
  declare const toGPSGeofenceTransactionPayload: (data: GPSGeofenceTransaction) => GPSGeofenceTransactionDTO;
@@ -46,24 +46,24 @@ declare const GPSGeofenceTransactionSummarySchema: z.ZodObject<{
46
46
  status: z.ZodType<Status, z.ZodTypeDef, Status>;
47
47
  time_zone_id: z.ZodEffects<z.ZodString, string, string>;
48
48
  }, "strip", z.ZodTypeAny, {
49
+ gps_geofence_id: string;
49
50
  status: Status;
50
51
  organisation_id: string;
51
- vehicle_id: string;
52
- driver_id: string;
53
- gps_geofence_id: string;
54
52
  time_zone_id: string;
53
+ driver_id: string;
54
+ vehicle_id: string;
55
55
  geofence_enter_date_time: string;
56
56
  geofence_exit_date_time: string;
57
57
  duration_seconds: number;
58
58
  enter_gps_geofence_transaction_id: string;
59
59
  exit_gps_geofence_transaction_id: string;
60
60
  }, {
61
+ gps_geofence_id: string;
61
62
  status: Status;
62
63
  organisation_id: string;
63
- vehicle_id: string;
64
- driver_id: string;
65
- gps_geofence_id: string;
66
64
  time_zone_id: string;
65
+ driver_id: string;
66
+ vehicle_id: string;
67
67
  geofence_enter_date_time: string;
68
68
  enter_gps_geofence_transaction_id: string;
69
69
  exit_gps_geofence_transaction_id: string;
@@ -110,7 +110,6 @@ declare const GPSGeofenceTransactionSummaryQuerySchema: z.ZodObject<{
110
110
  to_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
111
111
  }, "strip", z.ZodTypeAny, {
112
112
  status: Status[];
113
- time_zone_id: string;
114
113
  search: string;
115
114
  paging: PAGING;
116
115
  page_count: number;
@@ -130,15 +129,16 @@ declare const GPSGeofenceTransactionSummaryQuerySchema: z.ZodObject<{
130
129
  }[];
131
130
  include_master_data: YesNo;
132
131
  date_format_id: string;
132
+ time_zone_id: string;
133
133
  organisation_ids: string[];
134
+ gps_geofence_ids: string[];
134
135
  vehicle_ids: string[];
135
136
  driver_ids: string[];
136
- gps_geofence_ids: string[];
137
137
  from_date: string;
138
138
  to_date: string;
139
139
  }, {
140
- time_zone_id: string;
141
140
  date_format_id: string;
141
+ time_zone_id: string;
142
142
  from_date: string;
143
143
  to_date: string;
144
144
  status?: Status[] | undefined;
@@ -161,9 +161,9 @@ declare const GPSGeofenceTransactionSummaryQuerySchema: z.ZodObject<{
161
161
  }[] | undefined;
162
162
  include_master_data?: YesNo | undefined;
163
163
  organisation_ids?: string[] | undefined;
164
+ gps_geofence_ids?: string[] | undefined;
164
165
  vehicle_ids?: string[] | undefined;
165
166
  driver_ids?: string[] | undefined;
166
- gps_geofence_ids?: string[] | undefined;
167
167
  }>;
168
168
  type GPSGeofenceTransactionSummaryQueryDTO = z.infer<typeof GPSGeofenceTransactionSummaryQuerySchema>;
169
169
  declare const toGPSGeofenceTransactionSummaryPayload: (data: GPSGeofenceTransactionSummary) => GPSGeofenceTransactionSummaryDTO;
@@ -57,9 +57,9 @@ declare const TripGeofenceToGeofenceSchema: z.ZodObject<{
57
57
  }, "strip", z.ZodTypeAny, {
58
58
  status: Status;
59
59
  organisation_id: string;
60
- vehicle_id: string;
61
- driver_id: string;
62
60
  time_zone_id: string;
61
+ driver_id: string;
62
+ vehicle_id: string;
63
63
  duration_seconds: number;
64
64
  from_geofence_exit_date_time: string;
65
65
  to_geofence_enter_date_time: string;
@@ -73,9 +73,9 @@ declare const TripGeofenceToGeofenceSchema: z.ZodObject<{
73
73
  }, {
74
74
  status: Status;
75
75
  organisation_id: string;
76
- vehicle_id: string;
77
- driver_id: string;
78
76
  time_zone_id: string;
77
+ driver_id: string;
78
+ vehicle_id: string;
79
79
  from_geofence_exit_date_time: string;
80
80
  to_geofence_enter_date_time: string;
81
81
  from_geofence_id: string;
@@ -128,7 +128,6 @@ declare const TripGeofenceToGeofenceQuerySchema: z.ZodObject<{
128
128
  to_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
129
129
  }, "strip", z.ZodTypeAny, {
130
130
  status: Status[];
131
- time_zone_id: string;
132
131
  search: string;
133
132
  paging: PAGING;
134
133
  page_count: number;
@@ -148,6 +147,7 @@ declare const TripGeofenceToGeofenceQuerySchema: z.ZodObject<{
148
147
  }[];
149
148
  include_master_data: YesNo;
150
149
  date_format_id: string;
150
+ time_zone_id: string;
151
151
  organisation_ids: string[];
152
152
  vehicle_ids: string[];
153
153
  driver_ids: string[];
@@ -156,8 +156,8 @@ declare const TripGeofenceToGeofenceQuerySchema: z.ZodObject<{
156
156
  from_geofence_ids: string[];
157
157
  to_geofence_ids: string[];
158
158
  }, {
159
- time_zone_id: string;
160
159
  date_format_id: string;
160
+ time_zone_id: string;
161
161
  from_date: string;
162
162
  to_date: string;
163
163
  status?: Status[] | undefined;
@@ -42,17 +42,17 @@ declare const GPSLiveTrackShareLinkNotificationsSchema: z.ZodObject<{
42
42
  to_recipients: z.ZodEffects<z.ZodString, string, string>;
43
43
  status: z.ZodType<Status, z.ZodTypeDef, Status>;
44
44
  }, "strip", z.ZodTypeAny, {
45
- gps_live_track_share_link_id: string;
46
45
  status: Status;
47
46
  organisation_id: string;
48
47
  type: NotificationType;
49
48
  to_recipients: string;
50
- }, {
51
49
  gps_live_track_share_link_id: string;
50
+ }, {
52
51
  status: Status;
53
52
  organisation_id: string;
54
53
  type: NotificationType;
55
54
  to_recipients: string;
55
+ gps_live_track_share_link_id: string;
56
56
  }>;
57
57
  type GPSLiveTrackShareLinkNotificationsDTO = z.infer<typeof GPSLiveTrackShareLinkNotificationsSchema>;
58
58
  declare const GPSLiveTrackShareLinkSchema: z.ZodObject<{
@@ -73,54 +73,54 @@ declare const GPSLiveTrackShareLinkSchema: z.ZodObject<{
73
73
  to_recipients: z.ZodEffects<z.ZodString, string, string>;
74
74
  status: z.ZodType<Status, z.ZodTypeDef, Status>;
75
75
  }, z.UnknownKeysParam, z.ZodTypeAny, {
76
- gps_live_track_share_link_id: string;
77
76
  status: Status;
78
77
  organisation_id: string;
79
78
  type: NotificationType;
80
79
  to_recipients: string;
81
- }, {
82
80
  gps_live_track_share_link_id: string;
81
+ }, {
83
82
  status: Status;
84
83
  organisation_id: string;
85
84
  type: NotificationType;
86
85
  to_recipients: string;
86
+ gps_live_track_share_link_id: string;
87
87
  }>, "many">>>;
88
88
  }, "strip", z.ZodTypeAny, {
89
- link_type: LinkType;
90
- location: string;
91
89
  link_status: LinkStatus;
92
90
  status: Status;
93
91
  organisation_id: string;
94
92
  vehicle_id: string;
95
93
  trip_id: string;
96
- expire_milliseconds: number;
97
94
  notifications: {
98
- gps_live_track_share_link_id: string;
99
95
  status: Status;
100
96
  organisation_id: string;
101
97
  type: NotificationType;
102
98
  to_recipients: string;
99
+ gps_live_track_share_link_id: string;
103
100
  }[];
101
+ link_type: LinkType;
102
+ location: string;
103
+ expire_milliseconds: number;
104
104
  latitude?: number | undefined;
105
105
  longitude?: number | undefined;
106
106
  }, {
107
- link_type: LinkType;
108
107
  link_status: LinkStatus;
109
108
  status: Status;
110
109
  organisation_id: string;
111
110
  vehicle_id: string;
112
111
  trip_id: string;
113
- latitude?: unknown;
114
- longitude?: unknown;
115
- location?: string | undefined;
116
- expire_milliseconds?: unknown;
112
+ link_type: LinkType;
117
113
  notifications?: {
118
- gps_live_track_share_link_id: string;
119
114
  status: Status;
120
115
  organisation_id: string;
121
116
  type: NotificationType;
122
117
  to_recipients: string;
118
+ gps_live_track_share_link_id: string;
123
119
  }[] | undefined;
120
+ latitude?: unknown;
121
+ longitude?: unknown;
122
+ location?: string | undefined;
123
+ expire_milliseconds?: unknown;
124
124
  }>;
125
125
  type GPSLiveTrackShareLinkDTO = z.infer<typeof GPSLiveTrackShareLinkSchema>;
126
126
  declare const GPSLiveTrackShareLinkTimeSchema: z.ZodObject<{
@@ -176,7 +176,6 @@ declare const GPSLiveTrackShareLinkQuerySchema: z.ZodObject<{
176
176
  link_type: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof LinkType>, "many">>>;
177
177
  link_status: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof LinkStatus>, "many">>>;
178
178
  }, "strip", z.ZodTypeAny, {
179
- link_type: LinkType[];
180
179
  link_status: LinkStatus[];
181
180
  status: Status[];
182
181
  search: string;
@@ -202,10 +201,10 @@ declare const GPSLiveTrackShareLinkQuerySchema: z.ZodObject<{
202
201
  organisation_ids: string[];
203
202
  vehicle_ids: string[];
204
203
  trip_ids: string[];
204
+ link_type: LinkType[];
205
205
  }, {
206
206
  date_format_id: string;
207
207
  time_zone_id: string;
208
- link_type?: LinkType[] | undefined;
209
208
  link_status?: LinkStatus[] | undefined;
210
209
  status?: Status[] | undefined;
211
210
  search?: string | undefined;
@@ -229,6 +228,7 @@ declare const GPSLiveTrackShareLinkQuerySchema: z.ZodObject<{
229
228
  organisation_ids?: string[] | undefined;
230
229
  vehicle_ids?: string[] | undefined;
231
230
  trip_ids?: string[] | undefined;
231
+ link_type?: LinkType[] | undefined;
232
232
  }>;
233
233
  type GPSLiveTrackShareLinkQueryDTO = z.infer<typeof GPSLiveTrackShareLinkQuerySchema>;
234
234
  declare const toGPSLiveTrackShareLinkPayload: (data: GPSLiveTrackShareLink) => GPSLiveTrackShareLinkDTO;
@@ -40,17 +40,17 @@ declare const GPSTrackHistoryShareLinkNotificationsSchema: z.ZodObject<{
40
40
  to_recipients: z.ZodEffects<z.ZodString, string, string>;
41
41
  status: z.ZodType<Status, z.ZodTypeDef, Status>;
42
42
  }, "strip", z.ZodTypeAny, {
43
+ gps_track_history_share_link_id: string;
43
44
  status: Status;
44
45
  organisation_id: string;
45
46
  type: NotificationType;
46
47
  to_recipients: string;
47
- gps_track_history_share_link_id: string;
48
48
  }, {
49
+ gps_track_history_share_link_id: string;
49
50
  status: Status;
50
51
  organisation_id: string;
51
52
  type: NotificationType;
52
53
  to_recipients: string;
53
- gps_track_history_share_link_id: string;
54
54
  }>;
55
55
  type GPSTrackHistoryShareLinkNotificationsDTO = z.infer<typeof GPSTrackHistoryShareLinkNotificationsSchema>;
56
56
  declare const GPSTrackHistoryShareLinkSchema: z.ZodObject<{
@@ -68,47 +68,47 @@ declare const GPSTrackHistoryShareLinkSchema: z.ZodObject<{
68
68
  to_recipients: z.ZodEffects<z.ZodString, string, string>;
69
69
  status: z.ZodType<Status, z.ZodTypeDef, Status>;
70
70
  }, z.UnknownKeysParam, z.ZodTypeAny, {
71
+ gps_track_history_share_link_id: string;
71
72
  status: Status;
72
73
  organisation_id: string;
73
74
  type: NotificationType;
74
75
  to_recipients: string;
75
- gps_track_history_share_link_id: string;
76
76
  }, {
77
+ gps_track_history_share_link_id: string;
77
78
  status: Status;
78
79
  organisation_id: string;
79
80
  type: NotificationType;
80
81
  to_recipients: string;
81
- gps_track_history_share_link_id: string;
82
82
  }>, "many">>>;
83
83
  }, "strip", z.ZodTypeAny, {
84
+ from_date_time: string;
85
+ to_date_time: string;
84
86
  link_status: TrackHistoryLinkStatus;
85
87
  status: Status;
86
88
  organisation_id: string;
87
89
  vehicle_id: string;
88
90
  trip_id: string;
89
91
  notifications: {
92
+ gps_track_history_share_link_id: string;
90
93
  status: Status;
91
94
  organisation_id: string;
92
95
  type: NotificationType;
93
96
  to_recipients: string;
94
- gps_track_history_share_link_id: string;
95
97
  }[];
98
+ }, {
96
99
  from_date_time: string;
97
100
  to_date_time: string;
98
- }, {
99
101
  link_status: TrackHistoryLinkStatus;
100
102
  status: Status;
101
103
  organisation_id: string;
102
104
  vehicle_id: string;
103
105
  trip_id: string;
104
- from_date_time: string;
105
- to_date_time: string;
106
106
  notifications?: {
107
+ gps_track_history_share_link_id: string;
107
108
  status: Status;
108
109
  organisation_id: string;
109
110
  type: NotificationType;
110
111
  to_recipients: string;
111
- gps_track_history_share_link_id: string;
112
112
  }[] | undefined;
113
113
  }>;
114
114
  type GPSTrackHistoryShareLinkDTO = z.infer<typeof GPSTrackHistoryShareLinkSchema>;
@@ -381,7 +381,7 @@ var VehicleSchema = z3.object({
381
381
  // ✅ Single-Selection -> OrganisationColor
382
382
  organisation_group_ids: multi_select_optional("OrganisationGroup"),
383
383
  // Multi selection -> OrganisationGroup
384
- vehicle_type_id: single_select_optional("MasterVehicleType"),
384
+ vehicle_type_id: single_select_mandatory("MasterVehicleType"),
385
385
  // ✅ Single-Selection -> MasterVehicleType
386
386
  vehicle_make_id: single_select_optional("MasterVehicleMake"),
387
387
  // ✅ Single-Selection -> MasterVehicleMake
@@ -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;
32
31
  description: string;
33
- logo_url: string;
34
- logo_key: string;
35
32
  status: Status;
36
33
  organisation_id: string;
37
34
  country_id: string;
38
- }, {
35
+ logo_key: string;
36
+ logo_url: string;
39
37
  company_name: string;
38
+ }, {
40
39
  status: Status;
41
40
  organisation_id: string;
42
41
  country_id: string;
42
+ company_name: string;
43
43
  description?: string | undefined;
44
- logo_url?: string | undefined;
45
44
  logo_key?: string | undefined;
45
+ logo_url?: 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;
24
25
  description: string;
25
26
  status: Status;
26
27
  organisation_id: string;
27
- document_type: string;
28
28
  }, {
29
+ document_type: string;
29
30
  status: Status;
30
31
  organisation_id: string;
31
- document_type: string;
32
32
  description?: string | undefined;
33
33
  }>;
34
34
  type MasterVendorDocumentTypeDTO = z.infer<typeof MasterVendorDocumentTypeSchema>;
@@ -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;
@@ -31,7 +31,6 @@ declare const ContactUsDetailSchema: z.ZodObject<{
31
31
  telegram_chat_url: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
32
32
  status: z.ZodType<Status, z.ZodTypeDef, Status>;
33
33
  }, "strip", z.ZodTypeAny, {
34
- status: Status;
35
34
  mobile_number: string;
36
35
  email: string;
37
36
  facebook_link: string;
@@ -42,6 +41,7 @@ declare const ContactUsDetailSchema: z.ZodObject<{
42
41
  pinterest_link: string;
43
42
  whats_app_chat_url: string;
44
43
  telegram_chat_url: string;
44
+ status: Status;
45
45
  }, {
46
46
  status: Status;
47
47
  mobile_number?: string | undefined;
@@ -17,10 +17,10 @@ declare const FaqSchema: z.ZodObject<{
17
17
  faq_content: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
18
18
  status: z.ZodType<Status, z.ZodTypeDef, Status>;
19
19
  }, "strip", z.ZodTypeAny, {
20
+ status: Status;
20
21
  faq_section: string;
21
22
  faq_header: string;
22
23
  faq_content: string;
23
- status: Status;
24
24
  }, {
25
25
  status: Status;
26
26
  faq_section?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vms-nest-prisma-api-document",
3
- "version": "7.0.4",
3
+ "version": "7.0.5",
4
4
  "description": "Reusable API SDK built with NestJS, Prisma, Axios, and Zod for VMS frontends.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",