vms-nest-prisma-api-document 6.0.2 → 6.0.4

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/fleet/fuel_management/fleet_fuel_daily_summary_service.d.ts +11 -11
  2. package/dist/services/fleet/fuel_management/fleet_fuel_refill_service.d.ts +32 -31
  3. package/dist/services/fleet/fuel_management/fleet_fuel_removal_service.d.ts +43 -42
  4. package/dist/services/master/expense/master_fuel_company_service.d.ts +5 -5
  5. package/dist/services/master/expense/master_vendor_document_type_service.d.ts +2 -2
  6. package/dist/services/master/main/master_main_landmark_service.d.ts +6 -6
  7. package/dist/services/master/vehicle/master_vehicle_associated_to_service.d.ts +2 -2
  8. package/dist/services/master/vehicle/master_vehicle_document_type_service.d.ts +2 -2
  9. package/dist/services/master/vehicle/master_vehicle_fuel_removal_reason_service.d.ts +4 -4
  10. package/dist/services/master/vehicle/master_vehicle_fuel_unit_service.d.ts +3 -3
  11. package/dist/services/website/contact_us_detail_service.d.ts +1 -1
  12. package/dist/services/website/faq_service.d.ts +1 -1
  13. package/package.json +1 -1
  14. package/dist/services/gps/features/fuel/gps_fuel_vehicle_daily_summary_service.d.ts +0 -282
  15. package/dist/services/gps/features/fuel/gps_fuel_vehicle_daily_summary_service.js +0 -379
  16. package/dist/services/gps/features/fuel/gps_fuel_vehicle_refill_service.d.ts +0 -230
  17. package/dist/services/gps/features/fuel/gps_fuel_vehicle_refill_service.js +0 -432
  18. package/dist/services/gps/features/fuel/gps_fuel_vehicle_removal_service.d.ts +0 -230
  19. package/dist/services/gps/features/fuel/gps_fuel_vehicle_removal_service.js +0 -432
@@ -59,6 +59,12 @@ declare const FleetFuelDailySummarySchema: z.ZodObject<{
59
59
  liters_per_100km: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
60
60
  status: z.ZodType<Status, z.ZodTypeDef, Status>;
61
61
  }, "strip", z.ZodTypeAny, {
62
+ status: Status;
63
+ organisation_id: string;
64
+ user_id: string;
65
+ vehicle_id: string;
66
+ driver_id: string;
67
+ device_id: string;
62
68
  date: string;
63
69
  start_fuel_liters: number;
64
70
  end_fuel_liters: number;
@@ -70,20 +76,14 @@ declare const FleetFuelDailySummarySchema: z.ZodObject<{
70
76
  removal_liters: number;
71
77
  mileage_kmpl: number;
72
78
  liters_per_100km: number;
73
- status: Status;
74
- organisation_id: string;
75
- user_id: string;
76
- vehicle_id: string;
77
- driver_id: string;
78
- device_id: string;
79
79
  }, {
80
- date: string;
81
80
  status: Status;
82
81
  organisation_id: string;
83
82
  user_id: string;
84
83
  vehicle_id: string;
85
84
  driver_id: string;
86
85
  device_id: string;
86
+ date: string;
87
87
  start_fuel_liters?: unknown;
88
88
  end_fuel_liters?: unknown;
89
89
  total_km?: unknown;
@@ -138,6 +138,7 @@ declare const FleetFuelDailySummaryQuerySchema: z.ZodObject<{
138
138
  day_summary: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof YesNo>>>;
139
139
  }, "strip", z.ZodTypeAny, {
140
140
  status: Status[];
141
+ time_zone_id: string;
141
142
  search: string;
142
143
  paging: PAGING;
143
144
  page_count: number;
@@ -157,7 +158,6 @@ declare const FleetFuelDailySummaryQuerySchema: z.ZodObject<{
157
158
  }[];
158
159
  include_master_data: YesNo;
159
160
  date_format_id: string;
160
- time_zone_id: string;
161
161
  organisation_ids: string[];
162
162
  user_ids: string[];
163
163
  vehicle_ids: string[];
@@ -168,8 +168,8 @@ declare const FleetFuelDailySummaryQuerySchema: z.ZodObject<{
168
168
  vehicle_summary: YesNo;
169
169
  day_summary: YesNo;
170
170
  }, {
171
- date_format_id: string;
172
171
  time_zone_id: string;
172
+ date_format_id: string;
173
173
  from_date: string;
174
174
  to_date: string;
175
175
  status?: Status[] | undefined;
@@ -237,6 +237,7 @@ declare const FleetFuelDailyMonthlySummaryQuerySchema: z.ZodObject<{
237
237
  to_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
238
238
  }, "strip", z.ZodTypeAny, {
239
239
  status: Status[];
240
+ time_zone_id: string;
240
241
  search: string;
241
242
  paging: PAGING;
242
243
  page_count: number;
@@ -256,14 +257,13 @@ declare const FleetFuelDailyMonthlySummaryQuerySchema: z.ZodObject<{
256
257
  }[];
257
258
  include_master_data: YesNo;
258
259
  date_format_id: string;
259
- time_zone_id: string;
260
260
  organisation_ids: string[];
261
261
  vehicle_ids: string[];
262
262
  from_date: string;
263
263
  to_date: string;
264
264
  }, {
265
- date_format_id: string;
266
265
  time_zone_id: string;
266
+ date_format_id: string;
267
267
  from_date: string;
268
268
  to_date: string;
269
269
  status?: Status[] | undefined;
@@ -18,6 +18,7 @@ interface FleetFuelRefill extends Record<string, unknown> {
18
18
  is_full_tank: YesNo;
19
19
  is_previous_entries_missed: YesNo;
20
20
  date_time: string;
21
+ date_time_f?: string;
21
22
  cost_per_unit?: number;
22
23
  total_cost?: number;
23
24
  invoice_number?: string;
@@ -139,24 +140,29 @@ declare const FleetFuelRefillchema: z.ZodObject<{
139
140
  status: z.ZodType<Status, z.ZodTypeDef, Status>;
140
141
  time_zone_id: z.ZodEffects<z.ZodString, string, string>;
141
142
  }, "strip", z.ZodTypeAny, {
143
+ odometer_reading: number;
144
+ date_time: string;
145
+ entry_source: RefillEntrySource;
146
+ source_reference_id: string;
147
+ source_notes: string;
148
+ admin_verify_status: GPSFuelApproveStatus;
149
+ transporter_verify_status: GPSFuelApproveStatus;
150
+ google_location: string;
142
151
  status: Status;
143
152
  organisation_id: string;
144
153
  user_id: string;
145
154
  vehicle_id: string;
146
155
  driver_id: string;
147
156
  device_id: string;
148
- time_zone_id: string;
149
157
  vehicle_fuel_type_id: string;
150
- odometer_reading: number;
151
- google_location: string;
152
158
  vehicle_fuel_unit_id: string;
159
+ time_zone_id: string;
153
160
  before_refill_quantity: number;
154
161
  after_refill_quantity: number;
155
162
  refill_quantity: number;
156
163
  verified_refill_quantity: number;
157
164
  is_full_tank: YesNo;
158
165
  is_previous_entries_missed: YesNo;
159
- date_time: string;
160
166
  invoice_number: string;
161
167
  payment_mode: PaymentMode;
162
168
  payment_status: PaymentStatus;
@@ -167,38 +173,38 @@ declare const FleetFuelRefillchema: z.ZodObject<{
167
173
  refill_details: string;
168
174
  payment_details: string;
169
175
  filled_by_person: string;
170
- entry_source: RefillEntrySource;
171
- source_reference_id: string;
172
- source_notes: string;
173
- admin_verify_status: GPSFuelApproveStatus;
174
- transporter_verify_status: GPSFuelApproveStatus;
175
176
  vendor_id: string;
176
177
  fuel_station_id: string;
178
+ cost_per_unit?: number | undefined;
179
+ total_cost?: number | undefined;
177
180
  latitude?: number | undefined;
178
181
  longitude?: number | undefined;
179
182
  diff_refill_quantity?: number | undefined;
180
- cost_per_unit?: number | undefined;
181
- total_cost?: number | undefined;
182
183
  }, {
184
+ date_time: string;
185
+ admin_verify_status: GPSFuelApproveStatus;
186
+ transporter_verify_status: GPSFuelApproveStatus;
183
187
  status: Status;
184
188
  organisation_id: string;
185
189
  user_id: string;
186
190
  vehicle_id: string;
187
191
  driver_id: string;
188
192
  device_id: string;
189
- time_zone_id: string;
190
193
  vehicle_fuel_type_id: string;
191
194
  vehicle_fuel_unit_id: string;
195
+ time_zone_id: string;
192
196
  is_full_tank: YesNo;
193
197
  is_previous_entries_missed: YesNo;
194
- date_time: string;
195
198
  payment_mode: PaymentMode;
196
199
  payment_status: PaymentStatus;
197
- admin_verify_status: GPSFuelApproveStatus;
198
- transporter_verify_status: GPSFuelApproveStatus;
199
200
  vendor_id: string;
200
201
  fuel_station_id: string;
201
202
  odometer_reading?: unknown;
203
+ cost_per_unit?: unknown;
204
+ total_cost?: unknown;
205
+ entry_source?: RefillEntrySource | undefined;
206
+ source_reference_id?: string | undefined;
207
+ source_notes?: string | undefined;
202
208
  latitude?: unknown;
203
209
  longitude?: unknown;
204
210
  google_location?: string | undefined;
@@ -207,8 +213,6 @@ declare const FleetFuelRefillchema: z.ZodObject<{
207
213
  refill_quantity?: unknown;
208
214
  verified_refill_quantity?: unknown;
209
215
  diff_refill_quantity?: unknown;
210
- cost_per_unit?: unknown;
211
- total_cost?: unknown;
212
216
  invoice_number?: string | undefined;
213
217
  payment_reference_number?: string | undefined;
214
218
  fuel_card_number?: string | undefined;
@@ -217,9 +221,6 @@ declare const FleetFuelRefillchema: z.ZodObject<{
217
221
  refill_details?: string | undefined;
218
222
  payment_details?: string | undefined;
219
223
  filled_by_person?: string | undefined;
220
- entry_source?: RefillEntrySource | undefined;
221
- source_reference_id?: string | undefined;
222
- source_notes?: string | undefined;
223
224
  }>;
224
225
  type FleetFuelRefillDTO = z.infer<typeof FleetFuelRefillchema>;
225
226
  declare const FleetFuelRefillQuerySchema: z.ZodObject<{
@@ -268,7 +269,11 @@ declare const FleetFuelRefillQuerySchema: z.ZodObject<{
268
269
  from_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
269
270
  to_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
270
271
  }, "strip", z.ZodTypeAny, {
272
+ entry_source: RefillEntrySource[];
273
+ admin_verify_status: GPSFuelApproveStatus[];
274
+ transporter_verify_status: GPSFuelApproveStatus[];
271
275
  status: Status[];
276
+ time_zone_id: string;
272
277
  search: string;
273
278
  paging: PAGING;
274
279
  page_count: number;
@@ -288,26 +293,25 @@ declare const FleetFuelRefillQuerySchema: z.ZodObject<{
288
293
  }[];
289
294
  include_master_data: YesNo;
290
295
  date_format_id: string;
291
- time_zone_id: string;
292
296
  organisation_ids: string[];
293
297
  user_ids: string[];
294
298
  vehicle_ids: string[];
295
299
  driver_ids: string[];
296
300
  device_ids: string[];
301
+ vehicle_fuel_type_ids: string[];
302
+ vehicle_fuel_unit_ids: string[];
297
303
  from_date: string;
298
304
  to_date: string;
299
- vehicle_fuel_type_ids: string[];
300
- entry_source: RefillEntrySource[];
301
- admin_verify_status: GPSFuelApproveStatus[];
302
- transporter_verify_status: GPSFuelApproveStatus[];
303
305
  vendor_ids: string[];
304
306
  fuel_station_ids: string[];
305
- vehicle_fuel_unit_ids: string[];
306
307
  }, {
307
- date_format_id: string;
308
308
  time_zone_id: string;
309
+ date_format_id: string;
309
310
  from_date: string;
310
311
  to_date: string;
312
+ entry_source?: RefillEntrySource[] | undefined;
313
+ admin_verify_status?: GPSFuelApproveStatus[] | undefined;
314
+ transporter_verify_status?: GPSFuelApproveStatus[] | undefined;
311
315
  status?: Status[] | undefined;
312
316
  search?: string | undefined;
313
317
  paging?: PAGING | undefined;
@@ -333,12 +337,9 @@ declare const FleetFuelRefillQuerySchema: z.ZodObject<{
333
337
  driver_ids?: string[] | undefined;
334
338
  device_ids?: string[] | undefined;
335
339
  vehicle_fuel_type_ids?: string[] | undefined;
336
- entry_source?: RefillEntrySource[] | undefined;
337
- admin_verify_status?: GPSFuelApproveStatus[] | undefined;
338
- transporter_verify_status?: GPSFuelApproveStatus[] | undefined;
340
+ vehicle_fuel_unit_ids?: string[] | undefined;
339
341
  vendor_ids?: string[] | undefined;
340
342
  fuel_station_ids?: string[] | undefined;
341
- vehicle_fuel_unit_ids?: string[] | undefined;
342
343
  }>;
343
344
  type FleetFuelRefillQueryDTO = z.infer<typeof FleetFuelRefillQuerySchema>;
344
345
  declare const toFleetFuelRefillPayload: (row: FleetFuelRefill) => FleetFuelRefillDTO;
@@ -17,6 +17,7 @@ interface FleetFuelRemoval extends Record<string, unknown> {
17
17
  diff_quantity: number;
18
18
  odometer_reading?: number;
19
19
  date_time: string;
20
+ date_time_f?: string;
20
21
  cost_per_unit?: number;
21
22
  total_cost?: number;
22
23
  fuel_removal_reason_id?: string;
@@ -110,63 +111,63 @@ declare const FleetFuelRemovalSchema: z.ZodObject<{
110
111
  status: z.ZodType<Status, z.ZodTypeDef, Status>;
111
112
  time_zone_id: z.ZodEffects<z.ZodString, string, string>;
112
113
  }, "strip", z.ZodTypeAny, {
114
+ before_removal_quantity: number;
115
+ after_removal_quantity: number;
116
+ removed_quantity: number;
117
+ verified_quantity: number;
118
+ odometer_reading: number;
119
+ date_time: string;
120
+ fuel_removal_reason_id: string;
121
+ removal_details: string;
122
+ entry_source: RefillEntrySource;
123
+ source_reference_id: string;
124
+ source_notes: string;
125
+ admin_verify_status: GPSFuelApproveStatus;
126
+ transporter_verify_status: GPSFuelApproveStatus;
127
+ google_location: string;
113
128
  status: Status;
114
129
  organisation_id: string;
115
130
  user_id: string;
116
131
  vehicle_id: string;
117
132
  driver_id: string;
118
133
  device_id: string;
119
- time_zone_id: string;
120
134
  vehicle_fuel_type_id: string;
121
- odometer_reading: number;
122
- google_location: string;
123
135
  vehicle_fuel_unit_id: string;
124
- date_time: string;
125
- entry_source: RefillEntrySource;
126
- source_reference_id: string;
127
- source_notes: string;
128
- admin_verify_status: GPSFuelApproveStatus;
129
- transporter_verify_status: GPSFuelApproveStatus;
130
- fuel_removal_reason_id: string;
131
- before_removal_quantity: number;
132
- after_removal_quantity: number;
133
- removed_quantity: number;
134
- verified_quantity: number;
135
- removal_details: string;
136
- latitude?: number | undefined;
137
- longitude?: number | undefined;
136
+ time_zone_id: string;
137
+ diff_quantity?: number | undefined;
138
138
  cost_per_unit?: number | undefined;
139
139
  total_cost?: number | undefined;
140
- diff_quantity?: number | undefined;
140
+ latitude?: number | undefined;
141
+ longitude?: number | undefined;
141
142
  }, {
143
+ date_time: string;
144
+ fuel_removal_reason_id: string;
145
+ admin_verify_status: GPSFuelApproveStatus;
146
+ transporter_verify_status: GPSFuelApproveStatus;
142
147
  status: Status;
143
148
  organisation_id: string;
144
149
  user_id: string;
145
150
  vehicle_id: string;
146
151
  driver_id: string;
147
152
  device_id: string;
148
- time_zone_id: string;
149
153
  vehicle_fuel_type_id: string;
150
154
  vehicle_fuel_unit_id: string;
151
- date_time: string;
152
- admin_verify_status: GPSFuelApproveStatus;
153
- transporter_verify_status: GPSFuelApproveStatus;
154
- fuel_removal_reason_id: string;
155
- odometer_reading?: unknown;
156
- latitude?: unknown;
157
- longitude?: unknown;
158
- google_location?: string | undefined;
159
- cost_per_unit?: unknown;
160
- total_cost?: unknown;
161
- entry_source?: RefillEntrySource | undefined;
162
- source_reference_id?: string | undefined;
163
- source_notes?: string | undefined;
155
+ time_zone_id: string;
164
156
  before_removal_quantity?: unknown;
165
157
  after_removal_quantity?: unknown;
166
158
  removed_quantity?: unknown;
167
159
  verified_quantity?: unknown;
168
160
  diff_quantity?: unknown;
161
+ odometer_reading?: unknown;
162
+ cost_per_unit?: unknown;
163
+ total_cost?: unknown;
169
164
  removal_details?: string | undefined;
165
+ entry_source?: RefillEntrySource | undefined;
166
+ source_reference_id?: string | undefined;
167
+ source_notes?: string | undefined;
168
+ latitude?: unknown;
169
+ longitude?: unknown;
170
+ google_location?: string | undefined;
170
171
  }>;
171
172
  type FleetFuelRemovalDTO = z.infer<typeof FleetFuelRemovalSchema>;
172
173
  declare const FleetFuelRemovalQuerySchema: z.ZodObject<{
@@ -214,7 +215,11 @@ declare const FleetFuelRemovalQuerySchema: z.ZodObject<{
214
215
  from_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
215
216
  to_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
216
217
  }, "strip", z.ZodTypeAny, {
218
+ entry_source: RefillEntrySource[];
219
+ admin_verify_status: GPSFuelApproveStatus[];
220
+ transporter_verify_status: GPSFuelApproveStatus[];
217
221
  status: Status[];
222
+ time_zone_id: string;
218
223
  search: string;
219
224
  paging: PAGING;
220
225
  page_count: number;
@@ -234,25 +239,24 @@ declare const FleetFuelRemovalQuerySchema: z.ZodObject<{
234
239
  }[];
235
240
  include_master_data: YesNo;
236
241
  date_format_id: string;
237
- time_zone_id: string;
238
242
  organisation_ids: string[];
239
243
  user_ids: string[];
240
244
  vehicle_ids: string[];
241
245
  driver_ids: string[];
242
246
  device_ids: string[];
243
- from_date: string;
244
- to_date: string;
245
247
  vehicle_fuel_type_ids: string[];
246
- entry_source: RefillEntrySource[];
247
- admin_verify_status: GPSFuelApproveStatus[];
248
- transporter_verify_status: GPSFuelApproveStatus[];
249
248
  vehicle_fuel_unit_ids: string[];
250
249
  fuel_removal_reason_ids: string[];
250
+ from_date: string;
251
+ to_date: string;
251
252
  }, {
252
- date_format_id: string;
253
253
  time_zone_id: string;
254
+ date_format_id: string;
254
255
  from_date: string;
255
256
  to_date: string;
257
+ entry_source?: RefillEntrySource[] | undefined;
258
+ admin_verify_status?: GPSFuelApproveStatus[] | undefined;
259
+ transporter_verify_status?: GPSFuelApproveStatus[] | undefined;
256
260
  status?: Status[] | undefined;
257
261
  search?: string | undefined;
258
262
  paging?: PAGING | undefined;
@@ -278,9 +282,6 @@ declare const FleetFuelRemovalQuerySchema: z.ZodObject<{
278
282
  driver_ids?: string[] | undefined;
279
283
  device_ids?: string[] | undefined;
280
284
  vehicle_fuel_type_ids?: string[] | undefined;
281
- entry_source?: RefillEntrySource[] | undefined;
282
- admin_verify_status?: GPSFuelApproveStatus[] | undefined;
283
- transporter_verify_status?: GPSFuelApproveStatus[] | undefined;
284
285
  vehicle_fuel_unit_ids?: string[] | undefined;
285
286
  fuel_removal_reason_ids?: string[] | undefined;
286
287
  }>;
@@ -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,6 +39,7 @@ 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;
42
43
  status: Status;
43
44
  country_id: string;
44
45
  state_id: string;
@@ -47,7 +48,6 @@ declare const MasterMainLandmarkSchema: z.ZodObject<{
47
48
  zip_code: string;
48
49
  landmark_name: string;
49
50
  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;
58
61
  locality?: string | undefined;
59
62
  city_district_town?: string | undefined;
60
63
  zip_code?: string | undefined;
61
- latitude?: unknown;
62
- longitude?: unknown;
63
64
  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,6 +100,7 @@ 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;
103
104
  search: string;
104
105
  paging: PAGING;
105
106
  page_count: number;
@@ -119,13 +120,12 @@ declare const MasterMainLandmarkQuerySchema: z.ZodObject<{
119
120
  }[];
120
121
  include_master_data: YesNo;
121
122
  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
- date_format_id: string;
128
127
  time_zone_id: string;
128
+ date_format_id: string;
129
129
  status?: Status[] | undefined;
130
130
  search?: string | undefined;
131
131
  paging?: PAGING | undefined;
@@ -25,14 +25,14 @@ declare const MasterVehicleAssociatedToSchema: z.ZodObject<{
25
25
  description: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
26
26
  status: z.ZodType<Status, z.ZodTypeDef, Status>;
27
27
  }, "strip", z.ZodTypeAny, {
28
- associated_to: string;
29
28
  description: string;
30
29
  status: Status;
31
30
  organisation_id: string;
32
- }, {
33
31
  associated_to: string;
32
+ }, {
34
33
  status: Status;
35
34
  organisation_id: string;
35
+ associated_to: string;
36
36
  description?: string | undefined;
37
37
  }>;
38
38
  type MasterVehicleAssociatedToDTO = z.infer<typeof MasterVehicleAssociatedToSchema>;
@@ -24,14 +24,14 @@ declare const MasterVehicleDocumentTypeSchema: 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
+ document_type: string;
27
28
  description: string;
28
29
  status: Status;
29
30
  organisation_id: string;
30
- document_type: string;
31
31
  }, {
32
+ document_type: string;
32
33
  status: Status;
33
34
  organisation_id: string;
34
- document_type: string;
35
35
  description?: string | undefined;
36
36
  }>;
37
37
  type MasterVehicleDocumentTypeDTO = z.infer<typeof MasterVehicleDocumentTypeSchema>;
@@ -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;
27
28
  status: Status;
28
29
  organisation_id: string;
29
30
  description: string;
30
- removal_reason: string;
31
31
  }, {
32
+ removal_reason: string;
32
33
  status: Status;
33
34
  organisation_id: string;
34
- removal_reason: string;
35
35
  description?: string | undefined;
36
36
  }>;
37
37
  type MasterVehicleFuelRemovalReasonDTO = z.infer<typeof MasterVehicleFuelRemovalReasonSchema>;
@@ -70,6 +70,7 @@ 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;
73
74
  search: string;
74
75
  paging: PAGING;
75
76
  page_count: number;
@@ -89,12 +90,11 @@ declare const MasterVehicleFuelRemovalReasonQuerySchema: z.ZodObject<{
89
90
  }[];
90
91
  include_master_data: YesNo;
91
92
  date_format_id: string;
92
- time_zone_id: string;
93
93
  organisation_ids: string[];
94
94
  fuel_removal_reason_ids: string[];
95
95
  }, {
96
- date_format_id: string;
97
96
  time_zone_id: string;
97
+ date_format_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
- description: string;
36
35
  fuel_unit: string;
36
+ description: string;
37
37
  }, {
38
38
  status: Status;
39
39
  organisation_id: string;
@@ -76,6 +76,7 @@ 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;
79
80
  search: string;
80
81
  paging: PAGING;
81
82
  page_count: number;
@@ -95,12 +96,11 @@ declare const MasterVehicleFuelUnitQuerySchema: z.ZodObject<{
95
96
  }[];
96
97
  include_master_data: YesNo;
97
98
  date_format_id: string;
98
- time_zone_id: string;
99
99
  organisation_ids: string[];
100
100
  fuel_unit_ids: string[];
101
101
  }, {
102
- date_format_id: string;
103
102
  time_zone_id: string;
103
+ date_format_id: string;
104
104
  status?: Status[] | undefined;
105
105
  search?: string | undefined;
106
106
  paging?: PAGING | undefined;
@@ -31,6 +31,7 @@ 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;
34
35
  mobile_number: string;
35
36
  email: string;
36
37
  facebook_link: string;
@@ -41,7 +42,6 @@ declare const ContactUsDetailSchema: z.ZodObject<{
41
42
  pinterest_link: string;
42
43
  whats_app_chat_url: string;
43
44
  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;
21
20
  faq_section: string;
22
21
  faq_header: string;
23
22
  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": "6.0.2",
3
+ "version": "6.0.4",
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",