vms-nest-prisma-api-document 206.0.0 → 207.0.0
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/services/fleet/bus_mangement/bus_stop.d.ts +20 -20
- package/dist/services/fleet/bus_mangement/calender.d.ts +6 -6
- package/dist/services/fleet/bus_mangement/student.d.ts +12 -12
- 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 +46 -46
- package/dist/services/fleet/fuel_management/fleet_fuel_removal_service.d.ts +29 -29
- package/dist/services/gps/features/gps_live_track_share_link_service.d.ts +4 -4
- package/dist/services/gps/features/gps_track_history_share_link_service.d.ts +7 -7
- package/dist/services/master/expense/master_expense_name_service.d.ts +5 -5
- package/dist/services/master/expense/master_fuel_company_service.d.ts +5 -5
- package/dist/services/master/main/master_main_landmark_service.d.ts +4 -4
- package/dist/services/master/tyre/master_tyre_model_service.d.ts +6 -6
- package/dist/services/master/vehicle/master_vehicle_fuel_removal_reason_service.d.ts +2 -2
- package/dist/services/website/contact_us_detail_service.d.ts +1 -1
- package/dist/services/website/faq_service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -89,10 +89,11 @@ declare const BusStopSchema: z.ZodObject<{
|
|
|
89
89
|
}>, "many">>>;
|
|
90
90
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
91
91
|
}, "strip", z.ZodTypeAny, {
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
92
|
+
stop_name: string;
|
|
93
|
+
stop_code: string;
|
|
94
|
+
stop_type: BusStopType;
|
|
95
|
+
stop_description: string;
|
|
96
|
+
stop_duration_seconds: number;
|
|
96
97
|
address_line1: string;
|
|
97
98
|
address_line2: string;
|
|
98
99
|
locality_landmark: string;
|
|
@@ -102,29 +103,30 @@ declare const BusStopSchema: z.ZodObject<{
|
|
|
102
103
|
state_province_region: string;
|
|
103
104
|
postal_code: string;
|
|
104
105
|
country: string;
|
|
105
|
-
|
|
106
|
-
stop_code: string;
|
|
107
|
-
stop_type: BusStopType;
|
|
108
|
-
stop_description: string;
|
|
109
|
-
stop_duration_seconds: number;
|
|
106
|
+
country_code: string;
|
|
110
107
|
google_location: string;
|
|
111
108
|
geofence_type: GeofenceType;
|
|
112
109
|
polygon_data: {
|
|
113
110
|
latitude: number;
|
|
114
111
|
longitude: number;
|
|
115
112
|
}[];
|
|
113
|
+
status: Status;
|
|
114
|
+
organisation_id: string;
|
|
115
|
+
organisation_branch_id: string;
|
|
116
116
|
stop_latitude?: number | undefined;
|
|
117
117
|
stop_longitude?: number | undefined;
|
|
118
118
|
radius_meters?: number | undefined;
|
|
119
119
|
radius_km?: number | undefined;
|
|
120
120
|
}, {
|
|
121
|
-
status: Status;
|
|
122
|
-
organisation_id: string;
|
|
123
|
-
organisation_branch_id: string;
|
|
124
121
|
stop_name: string;
|
|
125
122
|
stop_type: BusStopType;
|
|
126
123
|
geofence_type: GeofenceType;
|
|
127
|
-
|
|
124
|
+
status: Status;
|
|
125
|
+
organisation_id: string;
|
|
126
|
+
organisation_branch_id: string;
|
|
127
|
+
stop_code?: string | undefined;
|
|
128
|
+
stop_description?: string | undefined;
|
|
129
|
+
stop_duration_seconds?: unknown;
|
|
128
130
|
address_line1?: string | undefined;
|
|
129
131
|
address_line2?: string | undefined;
|
|
130
132
|
locality_landmark?: string | undefined;
|
|
@@ -134,9 +136,7 @@ declare const BusStopSchema: z.ZodObject<{
|
|
|
134
136
|
state_province_region?: string | undefined;
|
|
135
137
|
postal_code?: string | undefined;
|
|
136
138
|
country?: string | undefined;
|
|
137
|
-
|
|
138
|
-
stop_description?: string | undefined;
|
|
139
|
-
stop_duration_seconds?: unknown;
|
|
139
|
+
country_code?: string | undefined;
|
|
140
140
|
google_location?: string | undefined;
|
|
141
141
|
stop_latitude?: unknown;
|
|
142
142
|
stop_longitude?: unknown;
|
|
@@ -185,6 +185,8 @@ declare const BusStopQuerySchema: z.ZodObject<{
|
|
|
185
185
|
stop_type: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof BusStopType>, "many">>>;
|
|
186
186
|
geofence_type: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof GeofenceType>, "many">>>;
|
|
187
187
|
}, "strip", z.ZodTypeAny, {
|
|
188
|
+
stop_type: BusStopType[];
|
|
189
|
+
geofence_type: GeofenceType[];
|
|
188
190
|
status: Status[];
|
|
189
191
|
search: string;
|
|
190
192
|
paging: PAGING;
|
|
@@ -208,12 +210,12 @@ declare const BusStopQuerySchema: z.ZodObject<{
|
|
|
208
210
|
time_zone_id: string;
|
|
209
211
|
organisation_ids: string[];
|
|
210
212
|
organisation_branch_ids: string[];
|
|
211
|
-
stop_type: BusStopType[];
|
|
212
|
-
geofence_type: GeofenceType[];
|
|
213
213
|
bus_stop_ids: string[];
|
|
214
214
|
}, {
|
|
215
215
|
date_format_id: string;
|
|
216
216
|
time_zone_id: string;
|
|
217
|
+
stop_type?: BusStopType[] | undefined;
|
|
218
|
+
geofence_type?: GeofenceType[] | undefined;
|
|
217
219
|
status?: Status[] | undefined;
|
|
218
220
|
search?: string | undefined;
|
|
219
221
|
paging?: PAGING | undefined;
|
|
@@ -235,8 +237,6 @@ declare const BusStopQuerySchema: z.ZodObject<{
|
|
|
235
237
|
include_master_data?: YesNo | undefined;
|
|
236
238
|
organisation_ids?: string[] | undefined;
|
|
237
239
|
organisation_branch_ids?: string[] | undefined;
|
|
238
|
-
stop_type?: BusStopType[] | undefined;
|
|
239
|
-
geofence_type?: GeofenceType[] | undefined;
|
|
240
240
|
bus_stop_ids?: string[] | undefined;
|
|
241
241
|
}>;
|
|
242
242
|
type BusStopQueryDTO = z.infer<typeof BusStopQuerySchema>;
|
|
@@ -29,20 +29,20 @@ declare const OrganisationCalendarSchema: z.ZodObject<{
|
|
|
29
29
|
notes: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
30
30
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
31
31
|
}, "strip", z.ZodTypeAny, {
|
|
32
|
+
status: Status;
|
|
33
|
+
organisation_id: string;
|
|
34
|
+
organisation_branch_id: string;
|
|
32
35
|
calendar_date: string;
|
|
33
36
|
holiday_type: HolidayType;
|
|
34
37
|
title: string;
|
|
35
38
|
notes: string;
|
|
39
|
+
}, {
|
|
36
40
|
status: Status;
|
|
37
41
|
organisation_id: string;
|
|
38
42
|
organisation_branch_id: string;
|
|
39
|
-
}, {
|
|
40
43
|
calendar_date: string;
|
|
41
44
|
holiday_type: HolidayType;
|
|
42
45
|
title: string;
|
|
43
|
-
status: Status;
|
|
44
|
-
organisation_id: string;
|
|
45
|
-
organisation_branch_id: string;
|
|
46
46
|
notes?: string | undefined;
|
|
47
47
|
}>;
|
|
48
48
|
type OrganisationCalendarDTO = z.infer<typeof OrganisationCalendarSchema>;
|
|
@@ -82,7 +82,6 @@ declare const OrganisationCalendarQuerySchema: z.ZodObject<{
|
|
|
82
82
|
calendar_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
83
83
|
holiday_type: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof HolidayType>, "many">>>;
|
|
84
84
|
}, "strip", z.ZodTypeAny, {
|
|
85
|
-
holiday_type: HolidayType[];
|
|
86
85
|
status: Status[];
|
|
87
86
|
search: string;
|
|
88
87
|
paging: PAGING;
|
|
@@ -106,11 +105,11 @@ declare const OrganisationCalendarQuerySchema: z.ZodObject<{
|
|
|
106
105
|
time_zone_id: string;
|
|
107
106
|
organisation_ids: string[];
|
|
108
107
|
organisation_branch_ids: string[];
|
|
108
|
+
holiday_type: HolidayType[];
|
|
109
109
|
calendar_ids: string[];
|
|
110
110
|
}, {
|
|
111
111
|
date_format_id: string;
|
|
112
112
|
time_zone_id: string;
|
|
113
|
-
holiday_type?: HolidayType[] | undefined;
|
|
114
113
|
status?: Status[] | undefined;
|
|
115
114
|
search?: string | undefined;
|
|
116
115
|
paging?: PAGING | undefined;
|
|
@@ -132,6 +131,7 @@ declare const OrganisationCalendarQuerySchema: z.ZodObject<{
|
|
|
132
131
|
include_master_data?: YesNo | undefined;
|
|
133
132
|
organisation_ids?: string[] | undefined;
|
|
134
133
|
organisation_branch_ids?: string[] | undefined;
|
|
134
|
+
holiday_type?: HolidayType[] | undefined;
|
|
135
135
|
calendar_ids?: string[] | undefined;
|
|
136
136
|
}>;
|
|
137
137
|
type OrganisationCalendarQueryDTO = z.infer<typeof OrganisationCalendarQuerySchema>;
|
|
@@ -464,11 +464,6 @@ declare const StudentAddressSchema: z.ZodObject<{
|
|
|
464
464
|
notes: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
465
465
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
466
466
|
}, "strip", z.ZodTypeAny, {
|
|
467
|
-
notes: string;
|
|
468
|
-
status: Status;
|
|
469
|
-
organisation_id: string;
|
|
470
|
-
organisation_branch_id: string;
|
|
471
|
-
country_code: string;
|
|
472
467
|
address_line1: string;
|
|
473
468
|
address_line2: string;
|
|
474
469
|
locality_landmark: string;
|
|
@@ -478,22 +473,23 @@ declare const StudentAddressSchema: z.ZodObject<{
|
|
|
478
473
|
state_province_region: string;
|
|
479
474
|
postal_code: string;
|
|
480
475
|
country: string;
|
|
476
|
+
country_code: string;
|
|
481
477
|
google_location: string;
|
|
478
|
+
status: Status;
|
|
479
|
+
organisation_id: string;
|
|
480
|
+
organisation_branch_id: string;
|
|
481
|
+
notes: string;
|
|
482
482
|
student_id: string;
|
|
483
483
|
is_default: YesNo;
|
|
484
484
|
latitude?: number | undefined;
|
|
485
485
|
longitude?: number | undefined;
|
|
486
486
|
}, {
|
|
487
|
+
address_line1: string;
|
|
487
488
|
status: Status;
|
|
488
489
|
organisation_id: string;
|
|
489
490
|
organisation_branch_id: string;
|
|
490
|
-
address_line1: string;
|
|
491
491
|
student_id: string;
|
|
492
492
|
is_default: YesNo;
|
|
493
|
-
notes?: string | undefined;
|
|
494
|
-
country_code?: string | undefined;
|
|
495
|
-
latitude?: unknown;
|
|
496
|
-
longitude?: unknown;
|
|
497
493
|
address_line2?: string | undefined;
|
|
498
494
|
locality_landmark?: string | undefined;
|
|
499
495
|
neighborhood?: string | undefined;
|
|
@@ -502,7 +498,11 @@ declare const StudentAddressSchema: z.ZodObject<{
|
|
|
502
498
|
state_province_region?: string | undefined;
|
|
503
499
|
postal_code?: string | undefined;
|
|
504
500
|
country?: string | undefined;
|
|
501
|
+
country_code?: string | undefined;
|
|
505
502
|
google_location?: string | undefined;
|
|
503
|
+
latitude?: unknown;
|
|
504
|
+
longitude?: unknown;
|
|
505
|
+
notes?: string | undefined;
|
|
506
506
|
}>;
|
|
507
507
|
type StudentAddressDTO = z.infer<typeof StudentAddressSchema>;
|
|
508
508
|
declare const StudentAddressBusStopAssignSchema: z.ZodObject<{
|
|
@@ -624,12 +624,12 @@ declare const StudentGuardianLinkSchema: z.ZodObject<{
|
|
|
624
624
|
alternative_mobile: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
625
625
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
626
626
|
}, "strip", z.ZodTypeAny, {
|
|
627
|
-
notes: string;
|
|
628
627
|
status: Status;
|
|
629
628
|
organisation_id: string;
|
|
630
629
|
organisation_branch_id: string;
|
|
631
630
|
email: string;
|
|
632
631
|
mobile: string;
|
|
632
|
+
notes: string;
|
|
633
633
|
relationship_id: string;
|
|
634
634
|
student_id: string;
|
|
635
635
|
photo_url: string;
|
|
@@ -647,8 +647,8 @@ declare const StudentGuardianLinkSchema: z.ZodObject<{
|
|
|
647
647
|
student_id: string;
|
|
648
648
|
is_primary: YesNo;
|
|
649
649
|
full_name: string;
|
|
650
|
-
notes?: string | undefined;
|
|
651
650
|
email?: string | undefined;
|
|
651
|
+
notes?: string | undefined;
|
|
652
652
|
photo_url?: string | undefined;
|
|
653
653
|
photo_key?: string | undefined;
|
|
654
654
|
photo_name?: string | undefined;
|
|
@@ -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
|
-
|
|
66
|
-
|
|
65
|
+
status: Status;
|
|
66
|
+
organisation_id: string;
|
|
67
|
+
user_id: string;
|
|
68
|
+
vehicle_id: string;
|
|
69
|
+
driver_id: string;
|
|
70
|
+
device_id: string;
|
|
67
71
|
total_km: number;
|
|
68
72
|
consumed_fuel_liters: number;
|
|
69
73
|
refills_count: number;
|
|
74
|
+
start_fuel_liters: number;
|
|
75
|
+
end_fuel_liters: number;
|
|
70
76
|
refill_liters: number;
|
|
71
77
|
removals_count: number;
|
|
72
78
|
removal_liters: number;
|
|
73
79
|
mileage_kmpl: number;
|
|
74
80
|
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;
|
|
91
89
|
total_km?: unknown;
|
|
92
90
|
consumed_fuel_liters?: unknown;
|
|
93
91
|
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,6 +140,7 @@ 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;
|
|
143
144
|
search: string;
|
|
144
145
|
paging: PAGING;
|
|
145
146
|
page_count: number;
|
|
@@ -159,7 +160,6 @@ declare const FleetFuelDailySummaryQuerySchema: z.ZodObject<{
|
|
|
159
160
|
}[];
|
|
160
161
|
include_master_data: YesNo;
|
|
161
162
|
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
|
-
date_format_id: string;
|
|
174
173
|
time_zone_id: string;
|
|
174
|
+
date_format_id: string;
|
|
175
175
|
from_date: string;
|
|
176
176
|
to_date: string;
|
|
177
177
|
status?: Status[] | undefined;
|
|
@@ -239,6 +239,7 @@ 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;
|
|
242
243
|
search: string;
|
|
243
244
|
paging: PAGING;
|
|
244
245
|
page_count: number;
|
|
@@ -258,14 +259,13 @@ declare const FleetFuelDailyMonthlySummaryQuerySchema: z.ZodObject<{
|
|
|
258
259
|
}[];
|
|
259
260
|
include_master_data: YesNo;
|
|
260
261
|
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
|
-
date_format_id: string;
|
|
268
267
|
time_zone_id: string;
|
|
268
|
+
date_format_id: string;
|
|
269
269
|
from_date: string;
|
|
270
270
|
to_date: string;
|
|
271
271
|
status?: Status[] | undefined;
|
|
@@ -327,6 +327,7 @@ declare const AllVehiclesFuelDailySummaryQuerySchema: z.ZodObject<{
|
|
|
327
327
|
}, "strip", z.ZodTypeAny, {
|
|
328
328
|
date: string;
|
|
329
329
|
status: Status[];
|
|
330
|
+
time_zone_id: string;
|
|
330
331
|
search: string;
|
|
331
332
|
paging: PAGING;
|
|
332
333
|
page_count: number;
|
|
@@ -346,12 +347,11 @@ declare const AllVehiclesFuelDailySummaryQuerySchema: z.ZodObject<{
|
|
|
346
347
|
}[];
|
|
347
348
|
include_master_data: YesNo;
|
|
348
349
|
date_format_id: string;
|
|
349
|
-
time_zone_id: string;
|
|
350
350
|
organisation_utrack_id: string;
|
|
351
351
|
}, {
|
|
352
352
|
date: string;
|
|
353
|
-
date_format_id: string;
|
|
354
353
|
time_zone_id: string;
|
|
354
|
+
date_format_id: string;
|
|
355
355
|
organisation_utrack_id: string;
|
|
356
356
|
status?: Status[] | undefined;
|
|
357
357
|
search?: string | undefined;
|
|
@@ -101,6 +101,7 @@ declare const FleetFuelRefillFileSchema: z.ZodObject<{
|
|
|
101
101
|
organisation_id: z.ZodEffects<z.ZodString, string, string>;
|
|
102
102
|
fleet_fuel_refill_id: z.ZodEffects<z.ZodString, string, string>;
|
|
103
103
|
}, "strip", z.ZodTypeAny, {
|
|
104
|
+
fleet_fuel_refill_id: string;
|
|
104
105
|
status: Status;
|
|
105
106
|
organisation_id: string;
|
|
106
107
|
usage_type: string;
|
|
@@ -111,13 +112,12 @@ declare const FleetFuelRefillFileSchema: z.ZodObject<{
|
|
|
111
112
|
file_description: string;
|
|
112
113
|
file_size: number;
|
|
113
114
|
file_metadata: Record<string, any>;
|
|
114
|
-
fleet_fuel_refill_id: string;
|
|
115
115
|
}, {
|
|
116
|
+
fleet_fuel_refill_id: string;
|
|
116
117
|
status: Status;
|
|
117
118
|
organisation_id: string;
|
|
118
119
|
usage_type: string;
|
|
119
120
|
file_type: FileType;
|
|
120
|
-
fleet_fuel_refill_id: string;
|
|
121
121
|
file_url?: string | undefined;
|
|
122
122
|
file_key?: string | undefined;
|
|
123
123
|
file_name?: string | undefined;
|
|
@@ -181,6 +181,7 @@ declare const FleetFuelRefillSchema: z.ZodObject<{
|
|
|
181
181
|
organisation_id: z.ZodEffects<z.ZodString, string, string>;
|
|
182
182
|
fleet_fuel_refill_id: z.ZodEffects<z.ZodString, string, string>;
|
|
183
183
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
184
|
+
fleet_fuel_refill_id: string;
|
|
184
185
|
status: Status;
|
|
185
186
|
organisation_id: string;
|
|
186
187
|
usage_type: string;
|
|
@@ -191,13 +192,12 @@ declare const FleetFuelRefillSchema: z.ZodObject<{
|
|
|
191
192
|
file_description: string;
|
|
192
193
|
file_size: number;
|
|
193
194
|
file_metadata: Record<string, any>;
|
|
194
|
-
fleet_fuel_refill_id: string;
|
|
195
195
|
}, {
|
|
196
|
+
fleet_fuel_refill_id: string;
|
|
196
197
|
status: Status;
|
|
197
198
|
organisation_id: string;
|
|
198
199
|
usage_type: string;
|
|
199
200
|
file_type: FileType;
|
|
200
|
-
fleet_fuel_refill_id: string;
|
|
201
201
|
file_url?: string | undefined;
|
|
202
202
|
file_key?: string | undefined;
|
|
203
203
|
file_name?: string | undefined;
|
|
@@ -206,18 +206,6 @@ declare const FleetFuelRefillSchema: z.ZodObject<{
|
|
|
206
206
|
file_metadata?: Record<string, any> | undefined;
|
|
207
207
|
}>, "many">>>;
|
|
208
208
|
}, "strip", z.ZodTypeAny, {
|
|
209
|
-
status: Status;
|
|
210
|
-
organisation_id: string;
|
|
211
|
-
user_id: string;
|
|
212
|
-
vehicle_id: string;
|
|
213
|
-
driver_id: string;
|
|
214
|
-
device_id: string;
|
|
215
|
-
time_zone_id: string;
|
|
216
|
-
vehicle_fuel_type_id: string;
|
|
217
|
-
vehicle_fuel_unit_id: string;
|
|
218
|
-
odometer_reading: number;
|
|
219
|
-
vendor_id: string;
|
|
220
|
-
google_location: string;
|
|
221
209
|
date_time: string;
|
|
222
210
|
admin_verify_status: GPSFuelApproveStatus;
|
|
223
211
|
transporter_verify_status: GPSFuelApproveStatus;
|
|
@@ -233,11 +221,23 @@ declare const FleetFuelRefillSchema: z.ZodObject<{
|
|
|
233
221
|
payment_reference_number: string;
|
|
234
222
|
fuel_card_number: string;
|
|
235
223
|
payment_notes: string;
|
|
224
|
+
google_location: string;
|
|
225
|
+
odometer_reading: number;
|
|
236
226
|
tank_size: number;
|
|
237
227
|
is_full_tank: YesNo;
|
|
238
228
|
is_previous_entries_missed: YesNo;
|
|
229
|
+
status: Status;
|
|
230
|
+
organisation_id: string;
|
|
231
|
+
user_id: string;
|
|
232
|
+
vehicle_id: string;
|
|
233
|
+
driver_id: string;
|
|
234
|
+
device_id: string;
|
|
235
|
+
vendor_id: string;
|
|
239
236
|
fuel_station_id: string;
|
|
237
|
+
vehicle_fuel_type_id: string;
|
|
238
|
+
vehicle_fuel_unit_id: string;
|
|
240
239
|
FleetFuelRefillFile: {
|
|
240
|
+
fleet_fuel_refill_id: string;
|
|
241
241
|
status: Status;
|
|
242
242
|
organisation_id: string;
|
|
243
243
|
usage_type: string;
|
|
@@ -248,10 +248,8 @@ declare const FleetFuelRefillSchema: z.ZodObject<{
|
|
|
248
248
|
file_description: string;
|
|
249
249
|
file_size: number;
|
|
250
250
|
file_metadata: Record<string, any>;
|
|
251
|
-
fleet_fuel_refill_id: string;
|
|
252
251
|
}[];
|
|
253
|
-
|
|
254
|
-
longitude?: number | undefined;
|
|
252
|
+
time_zone_id: string;
|
|
255
253
|
before_refill_quantity?: number | undefined;
|
|
256
254
|
after_refill_quantity?: number | undefined;
|
|
257
255
|
refill_quantity?: number | undefined;
|
|
@@ -259,17 +257,9 @@ declare const FleetFuelRefillSchema: z.ZodObject<{
|
|
|
259
257
|
diff_refill_quantity?: number | undefined;
|
|
260
258
|
cost_per_unit?: number | undefined;
|
|
261
259
|
total_cost?: number | undefined;
|
|
260
|
+
latitude?: number | undefined;
|
|
261
|
+
longitude?: number | undefined;
|
|
262
262
|
}, {
|
|
263
|
-
status: Status;
|
|
264
|
-
organisation_id: string;
|
|
265
|
-
user_id: string;
|
|
266
|
-
vehicle_id: string;
|
|
267
|
-
driver_id: string;
|
|
268
|
-
device_id: string;
|
|
269
|
-
time_zone_id: string;
|
|
270
|
-
vehicle_fuel_type_id: string;
|
|
271
|
-
vehicle_fuel_unit_id: string;
|
|
272
|
-
vendor_id: string;
|
|
273
263
|
date_time: string;
|
|
274
264
|
admin_verify_status: GPSFuelApproveStatus;
|
|
275
265
|
transporter_verify_status: GPSFuelApproveStatus;
|
|
@@ -277,11 +267,17 @@ declare const FleetFuelRefillSchema: z.ZodObject<{
|
|
|
277
267
|
payment_status: PaymentStatus;
|
|
278
268
|
is_full_tank: YesNo;
|
|
279
269
|
is_previous_entries_missed: YesNo;
|
|
270
|
+
status: Status;
|
|
271
|
+
organisation_id: string;
|
|
272
|
+
user_id: string;
|
|
273
|
+
vehicle_id: string;
|
|
274
|
+
driver_id: string;
|
|
275
|
+
device_id: string;
|
|
276
|
+
vendor_id: string;
|
|
280
277
|
fuel_station_id: string;
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
google_location?: string | undefined;
|
|
278
|
+
vehicle_fuel_type_id: string;
|
|
279
|
+
vehicle_fuel_unit_id: string;
|
|
280
|
+
time_zone_id: string;
|
|
285
281
|
before_refill_quantity?: unknown;
|
|
286
282
|
after_refill_quantity?: unknown;
|
|
287
283
|
refill_quantity?: unknown;
|
|
@@ -299,13 +295,17 @@ declare const FleetFuelRefillSchema: z.ZodObject<{
|
|
|
299
295
|
payment_reference_number?: string | undefined;
|
|
300
296
|
fuel_card_number?: string | undefined;
|
|
301
297
|
payment_notes?: string | undefined;
|
|
298
|
+
latitude?: unknown;
|
|
299
|
+
longitude?: unknown;
|
|
300
|
+
google_location?: string | undefined;
|
|
301
|
+
odometer_reading?: unknown;
|
|
302
302
|
tank_size?: unknown;
|
|
303
303
|
FleetFuelRefillFile?: {
|
|
304
|
+
fleet_fuel_refill_id: string;
|
|
304
305
|
status: Status;
|
|
305
306
|
organisation_id: string;
|
|
306
307
|
usage_type: string;
|
|
307
308
|
file_type: FileType;
|
|
308
|
-
fleet_fuel_refill_id: string;
|
|
309
309
|
file_url?: string | undefined;
|
|
310
310
|
file_key?: string | undefined;
|
|
311
311
|
file_name?: string | undefined;
|
|
@@ -362,7 +362,11 @@ declare const FleetFuelRefillQuerySchema: z.ZodObject<{
|
|
|
362
362
|
from_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
363
363
|
to_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
364
364
|
}, "strip", z.ZodTypeAny, {
|
|
365
|
+
admin_verify_status: GPSFuelApproveStatus[];
|
|
366
|
+
transporter_verify_status: GPSFuelApproveStatus[];
|
|
367
|
+
entry_source: RefillEntrySource[];
|
|
365
368
|
status: Status[];
|
|
369
|
+
time_zone_id: string;
|
|
366
370
|
search: string;
|
|
367
371
|
paging: PAGING;
|
|
368
372
|
page_count: number;
|
|
@@ -382,27 +386,26 @@ declare const FleetFuelRefillQuerySchema: z.ZodObject<{
|
|
|
382
386
|
}[];
|
|
383
387
|
include_master_data: YesNo;
|
|
384
388
|
date_format_id: string;
|
|
385
|
-
time_zone_id: string;
|
|
386
389
|
organisation_ids: string[];
|
|
387
390
|
user_ids: string[];
|
|
388
391
|
vehicle_ids: string[];
|
|
389
392
|
driver_ids: string[];
|
|
390
393
|
device_ids: string[];
|
|
391
|
-
from_date: string;
|
|
392
|
-
to_date: string;
|
|
393
394
|
vendor_ids: string[];
|
|
395
|
+
fuel_station_ids: string[];
|
|
394
396
|
vehicle_fuel_type_ids: string[];
|
|
395
397
|
vehicle_fuel_unit_ids: string[];
|
|
396
|
-
admin_verify_status: GPSFuelApproveStatus[];
|
|
397
|
-
transporter_verify_status: GPSFuelApproveStatus[];
|
|
398
|
-
entry_source: RefillEntrySource[];
|
|
399
|
-
fuel_station_ids: string[];
|
|
400
398
|
fleet_fuel_refill_ids: string[];
|
|
399
|
+
from_date: string;
|
|
400
|
+
to_date: string;
|
|
401
401
|
}, {
|
|
402
|
-
date_format_id: string;
|
|
403
402
|
time_zone_id: string;
|
|
403
|
+
date_format_id: string;
|
|
404
404
|
from_date: string;
|
|
405
405
|
to_date: string;
|
|
406
|
+
admin_verify_status?: GPSFuelApproveStatus[] | undefined;
|
|
407
|
+
transporter_verify_status?: GPSFuelApproveStatus[] | undefined;
|
|
408
|
+
entry_source?: RefillEntrySource[] | undefined;
|
|
406
409
|
status?: Status[] | undefined;
|
|
407
410
|
search?: string | undefined;
|
|
408
411
|
paging?: PAGING | undefined;
|
|
@@ -428,12 +431,9 @@ declare const FleetFuelRefillQuerySchema: z.ZodObject<{
|
|
|
428
431
|
driver_ids?: string[] | undefined;
|
|
429
432
|
device_ids?: string[] | undefined;
|
|
430
433
|
vendor_ids?: string[] | undefined;
|
|
434
|
+
fuel_station_ids?: string[] | undefined;
|
|
431
435
|
vehicle_fuel_type_ids?: string[] | undefined;
|
|
432
436
|
vehicle_fuel_unit_ids?: string[] | undefined;
|
|
433
|
-
admin_verify_status?: GPSFuelApproveStatus[] | undefined;
|
|
434
|
-
transporter_verify_status?: GPSFuelApproveStatus[] | undefined;
|
|
435
|
-
entry_source?: RefillEntrySource[] | undefined;
|
|
436
|
-
fuel_station_ids?: string[] | undefined;
|
|
437
437
|
fleet_fuel_refill_ids?: string[] | undefined;
|
|
438
438
|
}>;
|
|
439
439
|
type FleetFuelRefillQueryDTO = z.infer<typeof FleetFuelRefillQuerySchema>;
|
|
@@ -177,23 +177,23 @@ declare const FleetFuelRemovalSchema: z.ZodObject<{
|
|
|
177
177
|
file_metadata?: Record<string, any> | undefined;
|
|
178
178
|
}>, "many">>>;
|
|
179
179
|
}, "strip", z.ZodTypeAny, {
|
|
180
|
+
date_time: string;
|
|
181
|
+
admin_verify_status: GPSFuelApproveStatus;
|
|
182
|
+
transporter_verify_status: GPSFuelApproveStatus;
|
|
183
|
+
entry_source: RefillEntrySource;
|
|
184
|
+
source_reference_id: string;
|
|
185
|
+
source_notes: string;
|
|
186
|
+
google_location: string;
|
|
187
|
+
odometer_reading: number;
|
|
180
188
|
status: Status;
|
|
181
189
|
organisation_id: string;
|
|
182
190
|
user_id: string;
|
|
183
191
|
vehicle_id: string;
|
|
184
192
|
driver_id: string;
|
|
185
193
|
device_id: string;
|
|
186
|
-
time_zone_id: string;
|
|
187
194
|
vehicle_fuel_type_id: string;
|
|
188
195
|
vehicle_fuel_unit_id: string;
|
|
189
|
-
|
|
190
|
-
google_location: string;
|
|
191
|
-
date_time: string;
|
|
192
|
-
admin_verify_status: GPSFuelApproveStatus;
|
|
193
|
-
transporter_verify_status: GPSFuelApproveStatus;
|
|
194
|
-
entry_source: RefillEntrySource;
|
|
195
|
-
source_reference_id: string;
|
|
196
|
-
source_notes: string;
|
|
196
|
+
time_zone_id: string;
|
|
197
197
|
fuel_removal_reason_id: string;
|
|
198
198
|
removal_details: string;
|
|
199
199
|
FleetFuelRemovalFile: {
|
|
@@ -209,38 +209,38 @@ declare const FleetFuelRemovalSchema: z.ZodObject<{
|
|
|
209
209
|
file_metadata: Record<string, any>;
|
|
210
210
|
fleet_fuel_removal_id: string;
|
|
211
211
|
}[];
|
|
212
|
-
latitude?: number | undefined;
|
|
213
|
-
longitude?: number | undefined;
|
|
214
212
|
cost_per_unit?: number | undefined;
|
|
215
213
|
total_cost?: number | undefined;
|
|
214
|
+
latitude?: number | undefined;
|
|
215
|
+
longitude?: number | undefined;
|
|
216
216
|
before_removal_quantity?: number | undefined;
|
|
217
217
|
after_removal_quantity?: number | undefined;
|
|
218
218
|
removal_quantity?: number | undefined;
|
|
219
219
|
verified_removal_quantity?: number | undefined;
|
|
220
220
|
diff_removal_quantity?: number | undefined;
|
|
221
221
|
}, {
|
|
222
|
+
date_time: string;
|
|
223
|
+
admin_verify_status: GPSFuelApproveStatus;
|
|
224
|
+
transporter_verify_status: GPSFuelApproveStatus;
|
|
222
225
|
status: Status;
|
|
223
226
|
organisation_id: string;
|
|
224
227
|
user_id: string;
|
|
225
228
|
vehicle_id: string;
|
|
226
229
|
driver_id: string;
|
|
227
230
|
device_id: string;
|
|
228
|
-
time_zone_id: string;
|
|
229
231
|
vehicle_fuel_type_id: string;
|
|
230
232
|
vehicle_fuel_unit_id: string;
|
|
231
|
-
|
|
232
|
-
admin_verify_status: GPSFuelApproveStatus;
|
|
233
|
-
transporter_verify_status: GPSFuelApproveStatus;
|
|
233
|
+
time_zone_id: string;
|
|
234
234
|
fuel_removal_reason_id: string;
|
|
235
|
-
odometer_reading?: unknown;
|
|
236
|
-
latitude?: unknown;
|
|
237
|
-
longitude?: unknown;
|
|
238
|
-
google_location?: string | undefined;
|
|
239
235
|
cost_per_unit?: unknown;
|
|
240
236
|
total_cost?: unknown;
|
|
241
237
|
entry_source?: RefillEntrySource | undefined;
|
|
242
238
|
source_reference_id?: string | undefined;
|
|
243
239
|
source_notes?: string | undefined;
|
|
240
|
+
latitude?: unknown;
|
|
241
|
+
longitude?: unknown;
|
|
242
|
+
google_location?: string | undefined;
|
|
243
|
+
odometer_reading?: unknown;
|
|
244
244
|
before_removal_quantity?: unknown;
|
|
245
245
|
after_removal_quantity?: unknown;
|
|
246
246
|
removal_quantity?: unknown;
|
|
@@ -307,7 +307,11 @@ declare const FleetFuelRemovalQuerySchema: z.ZodObject<{
|
|
|
307
307
|
from_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
308
308
|
to_date: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
309
309
|
}, "strip", z.ZodTypeAny, {
|
|
310
|
+
admin_verify_status: GPSFuelApproveStatus[];
|
|
311
|
+
transporter_verify_status: GPSFuelApproveStatus[];
|
|
312
|
+
entry_source: RefillEntrySource[];
|
|
310
313
|
status: Status[];
|
|
314
|
+
time_zone_id: string;
|
|
311
315
|
search: string;
|
|
312
316
|
paging: PAGING;
|
|
313
317
|
page_count: number;
|
|
@@ -327,25 +331,24 @@ declare const FleetFuelRemovalQuerySchema: z.ZodObject<{
|
|
|
327
331
|
}[];
|
|
328
332
|
include_master_data: YesNo;
|
|
329
333
|
date_format_id: string;
|
|
330
|
-
time_zone_id: string;
|
|
331
334
|
organisation_ids: string[];
|
|
332
335
|
user_ids: string[];
|
|
333
336
|
vehicle_ids: string[];
|
|
334
337
|
driver_ids: string[];
|
|
335
338
|
device_ids: string[];
|
|
336
|
-
from_date: string;
|
|
337
|
-
to_date: string;
|
|
338
339
|
vehicle_fuel_type_ids: string[];
|
|
339
340
|
vehicle_fuel_unit_ids: string[];
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
entry_source: RefillEntrySource[];
|
|
341
|
+
from_date: string;
|
|
342
|
+
to_date: string;
|
|
343
343
|
fuel_removal_reason_ids: string[];
|
|
344
344
|
}, {
|
|
345
|
-
date_format_id: string;
|
|
346
345
|
time_zone_id: string;
|
|
346
|
+
date_format_id: string;
|
|
347
347
|
from_date: string;
|
|
348
348
|
to_date: string;
|
|
349
|
+
admin_verify_status?: GPSFuelApproveStatus[] | undefined;
|
|
350
|
+
transporter_verify_status?: GPSFuelApproveStatus[] | undefined;
|
|
351
|
+
entry_source?: RefillEntrySource[] | undefined;
|
|
349
352
|
status?: Status[] | undefined;
|
|
350
353
|
search?: string | undefined;
|
|
351
354
|
paging?: PAGING | undefined;
|
|
@@ -372,9 +375,6 @@ declare const FleetFuelRemovalQuerySchema: z.ZodObject<{
|
|
|
372
375
|
device_ids?: string[] | undefined;
|
|
373
376
|
vehicle_fuel_type_ids?: string[] | undefined;
|
|
374
377
|
vehicle_fuel_unit_ids?: string[] | undefined;
|
|
375
|
-
admin_verify_status?: GPSFuelApproveStatus[] | undefined;
|
|
376
|
-
transporter_verify_status?: GPSFuelApproveStatus[] | undefined;
|
|
377
|
-
entry_source?: RefillEntrySource[] | undefined;
|
|
378
378
|
fuel_removal_reason_ids?: string[] | undefined;
|
|
379
379
|
}>;
|
|
380
380
|
type FleetFuelRemovalQueryDTO = z.infer<typeof FleetFuelRemovalQuerySchema>;
|
|
@@ -48,17 +48,17 @@ declare const GPSLiveTrackShareLinkNotificationSchema: z.ZodObject<{
|
|
|
48
48
|
cc_email_ids: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
49
49
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
50
50
|
}, "strip", z.ZodTypeAny, {
|
|
51
|
+
gps_live_track_share_link_id: string;
|
|
51
52
|
status: Status;
|
|
52
53
|
organisation_id: string;
|
|
53
54
|
share_channels: ShareChannel.Email[];
|
|
54
55
|
mobile_numbers: string;
|
|
55
56
|
email_ids: string;
|
|
56
57
|
cc_email_ids: string;
|
|
57
|
-
gps_live_track_share_link_id: string;
|
|
58
58
|
}, {
|
|
59
|
+
gps_live_track_share_link_id: string;
|
|
59
60
|
status: Status;
|
|
60
61
|
organisation_id: string;
|
|
61
|
-
gps_live_track_share_link_id: string;
|
|
62
62
|
share_channels?: ShareChannel.Email[] | undefined;
|
|
63
63
|
mobile_numbers?: string | undefined;
|
|
64
64
|
email_ids?: string | undefined;
|
|
@@ -139,7 +139,6 @@ declare const GPSLiveTrackShareLinkQuerySchema: z.ZodObject<{
|
|
|
139
139
|
}, "strip", z.ZodTypeAny, {
|
|
140
140
|
link_status: LinkStatus[];
|
|
141
141
|
status: Status[];
|
|
142
|
-
time_zone_id: string;
|
|
143
142
|
search: string;
|
|
144
143
|
paging: PAGING;
|
|
145
144
|
page_count: number;
|
|
@@ -159,12 +158,13 @@ declare const GPSLiveTrackShareLinkQuerySchema: z.ZodObject<{
|
|
|
159
158
|
}[];
|
|
160
159
|
include_master_data: YesNo;
|
|
161
160
|
date_format_id: string;
|
|
161
|
+
time_zone_id: string;
|
|
162
162
|
organisation_ids: string[];
|
|
163
163
|
vehicle_ids: string[];
|
|
164
164
|
gps_live_track_share_link_ids: string[];
|
|
165
165
|
}, {
|
|
166
|
-
time_zone_id: string;
|
|
167
166
|
date_format_id: string;
|
|
167
|
+
time_zone_id: string;
|
|
168
168
|
link_status?: LinkStatus[] | undefined;
|
|
169
169
|
status?: Status[] | undefined;
|
|
170
170
|
search?: string | undefined;
|
|
@@ -48,17 +48,17 @@ declare const GPSTrackHistoryShareLinkNotificationSchema: z.ZodObject<{
|
|
|
48
48
|
cc_email_ids: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
49
49
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
50
50
|
}, "strip", z.ZodTypeAny, {
|
|
51
|
-
gps_track_history_share_link_id: string;
|
|
52
51
|
status: Status;
|
|
53
52
|
organisation_id: string;
|
|
54
53
|
share_channels: ShareChannel.Email[];
|
|
55
54
|
mobile_numbers: string;
|
|
56
55
|
email_ids: string;
|
|
57
56
|
cc_email_ids: string;
|
|
58
|
-
}, {
|
|
59
57
|
gps_track_history_share_link_id: string;
|
|
58
|
+
}, {
|
|
60
59
|
status: Status;
|
|
61
60
|
organisation_id: string;
|
|
61
|
+
gps_track_history_share_link_id: string;
|
|
62
62
|
share_channels?: ShareChannel.Email[] | undefined;
|
|
63
63
|
mobile_numbers?: string | undefined;
|
|
64
64
|
email_ids?: string | undefined;
|
|
@@ -74,21 +74,21 @@ declare const GPSTrackHistoryShareLinkSchema: z.ZodObject<{
|
|
|
74
74
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
75
75
|
time_zone_id: z.ZodEffects<z.ZodString, string, string>;
|
|
76
76
|
}, "strip", z.ZodTypeAny, {
|
|
77
|
-
from_date_time: string;
|
|
78
|
-
to_date_time: string;
|
|
79
77
|
link_status: TrackHistoryLinkStatus;
|
|
80
78
|
status: Status;
|
|
81
79
|
organisation_id: string;
|
|
82
80
|
vehicle_id: string;
|
|
83
81
|
time_zone_id: string;
|
|
84
|
-
}, {
|
|
85
82
|
from_date_time: string;
|
|
86
83
|
to_date_time: string;
|
|
84
|
+
}, {
|
|
87
85
|
link_status: TrackHistoryLinkStatus;
|
|
88
86
|
status: Status;
|
|
89
87
|
organisation_id: string;
|
|
90
88
|
vehicle_id: string;
|
|
91
89
|
time_zone_id: string;
|
|
90
|
+
from_date_time: string;
|
|
91
|
+
to_date_time: string;
|
|
92
92
|
}>;
|
|
93
93
|
type GPSTrackHistoryShareLinkDTO = z.infer<typeof GPSTrackHistoryShareLinkSchema>;
|
|
94
94
|
declare const GPSTrackHistoryShareLinkUpdateLinkStatusSchema: z.ZodObject<{
|
|
@@ -137,7 +137,6 @@ declare const GPSTrackHistoryShareLinkQuerySchema: z.ZodObject<{
|
|
|
137
137
|
}, "strip", z.ZodTypeAny, {
|
|
138
138
|
link_status: TrackHistoryLinkStatus[];
|
|
139
139
|
status: Status[];
|
|
140
|
-
time_zone_id: string;
|
|
141
140
|
search: string;
|
|
142
141
|
paging: PAGING;
|
|
143
142
|
page_count: number;
|
|
@@ -157,12 +156,13 @@ declare const GPSTrackHistoryShareLinkQuerySchema: z.ZodObject<{
|
|
|
157
156
|
}[];
|
|
158
157
|
include_master_data: YesNo;
|
|
159
158
|
date_format_id: string;
|
|
159
|
+
time_zone_id: string;
|
|
160
160
|
organisation_ids: string[];
|
|
161
161
|
vehicle_ids: string[];
|
|
162
162
|
gps_track_history_share_link_ids: string[];
|
|
163
163
|
}, {
|
|
164
|
-
time_zone_id: string;
|
|
165
164
|
date_format_id: string;
|
|
165
|
+
time_zone_id: string;
|
|
166
166
|
link_status?: TrackHistoryLinkStatus[] | undefined;
|
|
167
167
|
status?: Status[] | undefined;
|
|
168
168
|
search?: string | undefined;
|
|
@@ -27,16 +27,16 @@ declare const MasterExpenseNameSchema: z.ZodObject<{
|
|
|
27
27
|
description: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
28
28
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
29
29
|
}, "strip", z.ZodTypeAny, {
|
|
30
|
-
expense_name: string;
|
|
31
|
-
expense_category: ExpenseCategory;
|
|
32
30
|
description: string;
|
|
33
31
|
status: Status;
|
|
34
32
|
organisation_id: string;
|
|
35
|
-
}, {
|
|
36
33
|
expense_name: string;
|
|
37
34
|
expense_category: ExpenseCategory;
|
|
35
|
+
}, {
|
|
38
36
|
status: Status;
|
|
39
37
|
organisation_id: string;
|
|
38
|
+
expense_name: string;
|
|
39
|
+
expense_category: ExpenseCategory;
|
|
40
40
|
description?: string | undefined;
|
|
41
41
|
}>;
|
|
42
42
|
type MasterExpenseNameDTO = z.infer<typeof MasterExpenseNameSchema>;
|
|
@@ -75,7 +75,6 @@ declare const MasterExpenseNameQuerySchema: z.ZodObject<{
|
|
|
75
75
|
expense_name_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
76
76
|
expense_category: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof ExpenseCategory>, "many">>>;
|
|
77
77
|
}, "strip", z.ZodTypeAny, {
|
|
78
|
-
expense_category: ExpenseCategory[];
|
|
79
78
|
status: Status[];
|
|
80
79
|
search: string;
|
|
81
80
|
paging: PAGING;
|
|
@@ -98,11 +97,11 @@ declare const MasterExpenseNameQuerySchema: z.ZodObject<{
|
|
|
98
97
|
date_format_id: string;
|
|
99
98
|
time_zone_id: string;
|
|
100
99
|
organisation_ids: string[];
|
|
100
|
+
expense_category: ExpenseCategory[];
|
|
101
101
|
expense_name_ids: string[];
|
|
102
102
|
}, {
|
|
103
103
|
date_format_id: string;
|
|
104
104
|
time_zone_id: string;
|
|
105
|
-
expense_category?: ExpenseCategory[] | undefined;
|
|
106
105
|
status?: Status[] | undefined;
|
|
107
106
|
search?: string | undefined;
|
|
108
107
|
paging?: PAGING | undefined;
|
|
@@ -123,6 +122,7 @@ declare const MasterExpenseNameQuerySchema: z.ZodObject<{
|
|
|
123
122
|
}[] | undefined;
|
|
124
123
|
include_master_data?: YesNo | undefined;
|
|
125
124
|
organisation_ids?: string[] | undefined;
|
|
125
|
+
expense_category?: ExpenseCategory[] | undefined;
|
|
126
126
|
expense_name_ids?: string[] | undefined;
|
|
127
127
|
}>;
|
|
128
128
|
type MasterExpenseNameQueryDTO = z.infer<typeof MasterExpenseNameQuerySchema>;
|
|
@@ -28,21 +28,21 @@ declare const MasterFuelCompanySchema: z.ZodObject<{
|
|
|
28
28
|
logo_key: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
29
29
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
30
30
|
}, "strip", z.ZodTypeAny, {
|
|
31
|
+
company_name: string;
|
|
31
32
|
description: string;
|
|
33
|
+
logo_url: string;
|
|
34
|
+
logo_key: string;
|
|
32
35
|
status: Status;
|
|
33
36
|
organisation_id: string;
|
|
34
37
|
country_id: string;
|
|
35
|
-
logo_key: string;
|
|
36
|
-
logo_url: string;
|
|
37
|
-
company_name: string;
|
|
38
38
|
}, {
|
|
39
|
+
company_name: string;
|
|
39
40
|
status: Status;
|
|
40
41
|
organisation_id: string;
|
|
41
42
|
country_id: string;
|
|
42
|
-
company_name: string;
|
|
43
43
|
description?: string | undefined;
|
|
44
|
-
logo_key?: string | undefined;
|
|
45
44
|
logo_url?: string | undefined;
|
|
45
|
+
logo_key?: string | undefined;
|
|
46
46
|
}>;
|
|
47
47
|
type MasterFuelCompanyDTO = z.infer<typeof MasterFuelCompanySchema>;
|
|
48
48
|
declare const MasterFuelCompanyQuerySchema: z.ZodObject<{
|
|
@@ -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
|
locality: string;
|
|
48
49
|
city_district_town: string;
|
|
49
50
|
zip_code: string;
|
|
50
|
-
google_location: string;
|
|
51
51
|
latitude?: number | undefined;
|
|
52
52
|
longitude?: number | undefined;
|
|
53
53
|
}, {
|
|
@@ -57,11 +57,11 @@ declare const MasterMainLandmarkSchema: z.ZodObject<{
|
|
|
57
57
|
landmark_name: string;
|
|
58
58
|
latitude?: unknown;
|
|
59
59
|
longitude?: unknown;
|
|
60
|
+
google_location?: string | undefined;
|
|
60
61
|
location?: string | undefined;
|
|
61
62
|
locality?: string | undefined;
|
|
62
63
|
city_district_town?: string | undefined;
|
|
63
64
|
zip_code?: 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;
|
|
@@ -27,16 +27,16 @@ declare const MasterTyreModelSchema: z.ZodObject<{
|
|
|
27
27
|
description: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
28
28
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
29
29
|
}, "strip", z.ZodTypeAny, {
|
|
30
|
-
|
|
30
|
+
tyre_make_id: string;
|
|
31
31
|
description: string;
|
|
32
32
|
status: Status;
|
|
33
33
|
organisation_id: string;
|
|
34
|
-
tyre_make_id: string;
|
|
35
|
-
}, {
|
|
36
34
|
tyre_model: string;
|
|
35
|
+
}, {
|
|
36
|
+
tyre_make_id: string;
|
|
37
37
|
status: Status;
|
|
38
38
|
organisation_id: string;
|
|
39
|
-
|
|
39
|
+
tyre_model: string;
|
|
40
40
|
description?: string | undefined;
|
|
41
41
|
}>;
|
|
42
42
|
type MasterTyreModelDTO = z.infer<typeof MasterTyreModelSchema>;
|
|
@@ -156,14 +156,14 @@ declare const MasterTyreMakeSchema: z.ZodObject<{
|
|
|
156
156
|
description: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
157
157
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
158
158
|
}, "strip", z.ZodTypeAny, {
|
|
159
|
+
tyre_make: string;
|
|
159
160
|
description: string;
|
|
160
161
|
status: Status;
|
|
161
162
|
organisation_id: string;
|
|
162
|
-
tyre_make: string;
|
|
163
163
|
}, {
|
|
164
|
+
tyre_make: string;
|
|
164
165
|
status: Status;
|
|
165
166
|
organisation_id: string;
|
|
166
|
-
tyre_make: string;
|
|
167
167
|
description?: string | undefined;
|
|
168
168
|
}>;
|
|
169
169
|
type MasterTyreMakeDTO = z.infer<typeof MasterTyreMakeSchema>;
|
|
@@ -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;
|
|
@@ -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