vms-nest-prisma-api-document 193.0.0 → 195.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/gps/features/geofence/gps_geofence_transaction_service.d.ts +8 -8
- package/dist/services/gps/features/geofence/gps_geofence_transaction_summary_service.d.ts +5 -5
- package/dist/services/gps/features/geofence/trip_geofence_to_geofence_service.d.ts +11 -11
- package/dist/services/main/users/user_admin_service.d.ts +2 -8
- package/dist/services/main/users/user_admin_service.js +7 -12
- 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/fleet/master_fleet_incident_severity_service.d.ts +2 -2
- package/dist/services/master/fleet/master_fleet_incident_status_service.d.ts +2 -2
- package/dist/services/master/main/master_main_eway_bill_provider_service.d.ts +2 -2
- package/dist/services/master/main/master_main_fasttag_bank_service.d.ts +2 -2
- package/dist/services/website/contact_us_detail_service.d.ts +1 -1
- package/dist/services/website/static_pages_service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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;
|
|
41
39
|
status: Status;
|
|
42
40
|
organisation_id: string;
|
|
43
41
|
vehicle_id: string;
|
|
44
42
|
driver_id: string;
|
|
45
|
-
gps_geofence_id: string;
|
|
46
43
|
time_zone_id: string;
|
|
47
|
-
|
|
44
|
+
gps_geofence_id: string;
|
|
48
45
|
geofence_status_type: GeofenceStatusType;
|
|
49
46
|
geofence_time: string;
|
|
47
|
+
}, {
|
|
50
48
|
status: Status;
|
|
51
49
|
organisation_id: string;
|
|
52
50
|
vehicle_id: string;
|
|
53
51
|
driver_id: string;
|
|
54
|
-
gps_geofence_id: string;
|
|
55
52
|
time_zone_id: string;
|
|
53
|
+
gps_geofence_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,7 +94,6 @@ 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
98
|
time_zone_id: string;
|
|
100
99
|
search: string;
|
|
@@ -119,15 +118,15 @@ declare const GPSGeofenceTransactionQuerySchema: z.ZodObject<{
|
|
|
119
118
|
organisation_ids: string[];
|
|
120
119
|
vehicle_ids: string[];
|
|
121
120
|
driver_ids: string[];
|
|
122
|
-
gps_geofence_ids: string[];
|
|
123
121
|
from_date: string;
|
|
124
122
|
to_date: string;
|
|
123
|
+
gps_geofence_ids: string[];
|
|
124
|
+
geofence_status_type: GeofenceStatusType[];
|
|
125
125
|
}, {
|
|
126
126
|
time_zone_id: string;
|
|
127
127
|
date_format_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;
|
|
@@ -151,6 +150,7 @@ declare const GPSGeofenceTransactionQuerySchema: z.ZodObject<{
|
|
|
151
150
|
vehicle_ids?: string[] | undefined;
|
|
152
151
|
driver_ids?: string[] | undefined;
|
|
153
152
|
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,15 +46,15 @@ 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
|
+
duration_seconds: number;
|
|
49
50
|
status: Status;
|
|
50
51
|
organisation_id: string;
|
|
51
52
|
vehicle_id: string;
|
|
52
53
|
driver_id: string;
|
|
53
|
-
gps_geofence_id: string;
|
|
54
54
|
time_zone_id: string;
|
|
55
|
+
gps_geofence_id: string;
|
|
55
56
|
geofence_enter_date_time: string;
|
|
56
57
|
geofence_exit_date_time: string;
|
|
57
|
-
duration_seconds: number;
|
|
58
58
|
enter_gps_geofence_transaction_id: string;
|
|
59
59
|
exit_gps_geofence_transaction_id: string;
|
|
60
60
|
}, {
|
|
@@ -62,13 +62,13 @@ declare const GPSGeofenceTransactionSummarySchema: z.ZodObject<{
|
|
|
62
62
|
organisation_id: string;
|
|
63
63
|
vehicle_id: string;
|
|
64
64
|
driver_id: string;
|
|
65
|
-
gps_geofence_id: string;
|
|
66
65
|
time_zone_id: string;
|
|
66
|
+
gps_geofence_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;
|
|
70
|
-
geofence_exit_date_time?: string | undefined;
|
|
71
70
|
duration_seconds?: unknown;
|
|
71
|
+
geofence_exit_date_time?: string | undefined;
|
|
72
72
|
}>;
|
|
73
73
|
type GPSGeofenceTransactionSummaryDTO = z.infer<typeof GPSGeofenceTransactionSummarySchema>;
|
|
74
74
|
declare const GPSGeofenceTransactionSummaryQuerySchema: z.ZodObject<{
|
|
@@ -133,9 +133,9 @@ declare const GPSGeofenceTransactionSummaryQuerySchema: z.ZodObject<{
|
|
|
133
133
|
organisation_ids: string[];
|
|
134
134
|
vehicle_ids: string[];
|
|
135
135
|
driver_ids: string[];
|
|
136
|
-
gps_geofence_ids: string[];
|
|
137
136
|
from_date: string;
|
|
138
137
|
to_date: string;
|
|
138
|
+
gps_geofence_ids: string[];
|
|
139
139
|
}, {
|
|
140
140
|
time_zone_id: string;
|
|
141
141
|
date_format_id: string;
|
|
@@ -55,31 +55,31 @@ declare const TripGeofenceToGeofenceSchema: z.ZodObject<{
|
|
|
55
55
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
56
56
|
time_zone_id: z.ZodEffects<z.ZodString, string, string>;
|
|
57
57
|
}, "strip", z.ZodTypeAny, {
|
|
58
|
-
status: Status;
|
|
59
|
-
organisation_id: string;
|
|
60
|
-
vehicle_id: string;
|
|
61
|
-
driver_id: string;
|
|
62
|
-
time_zone_id: string;
|
|
63
|
-
duration_seconds: number;
|
|
64
58
|
from_geofence_exit_date_time: string;
|
|
65
59
|
to_geofence_enter_date_time: string;
|
|
60
|
+
duration_seconds: number;
|
|
66
61
|
travel_duration_seconds: number;
|
|
67
62
|
stopped_duration_seconds: number;
|
|
68
63
|
max_speed: number;
|
|
69
64
|
avg_speed: number;
|
|
65
|
+
status: Status;
|
|
66
|
+
organisation_id: string;
|
|
67
|
+
vehicle_id: string;
|
|
68
|
+
driver_id: string;
|
|
70
69
|
from_geofence_id: string;
|
|
71
70
|
to_geofence_id: string;
|
|
71
|
+
time_zone_id: string;
|
|
72
72
|
distance_meters?: number | undefined;
|
|
73
73
|
}, {
|
|
74
|
+
from_geofence_exit_date_time: string;
|
|
75
|
+
to_geofence_enter_date_time: string;
|
|
74
76
|
status: Status;
|
|
75
77
|
organisation_id: string;
|
|
76
78
|
vehicle_id: string;
|
|
77
79
|
driver_id: string;
|
|
78
|
-
time_zone_id: string;
|
|
79
|
-
from_geofence_exit_date_time: string;
|
|
80
|
-
to_geofence_enter_date_time: string;
|
|
81
80
|
from_geofence_id: string;
|
|
82
81
|
to_geofence_id: string;
|
|
82
|
+
time_zone_id: string;
|
|
83
83
|
duration_seconds?: unknown;
|
|
84
84
|
travel_duration_seconds?: unknown;
|
|
85
85
|
stopped_duration_seconds?: unknown;
|
|
@@ -151,10 +151,10 @@ declare const TripGeofenceToGeofenceQuerySchema: z.ZodObject<{
|
|
|
151
151
|
organisation_ids: string[];
|
|
152
152
|
vehicle_ids: string[];
|
|
153
153
|
driver_ids: string[];
|
|
154
|
-
from_date: string;
|
|
155
|
-
to_date: string;
|
|
156
154
|
from_geofence_ids: string[];
|
|
157
155
|
to_geofence_ids: string[];
|
|
156
|
+
from_date: string;
|
|
157
|
+
to_date: string;
|
|
158
158
|
}, {
|
|
159
159
|
time_zone_id: string;
|
|
160
160
|
date_format_id: string;
|
|
@@ -93,15 +93,11 @@ type UserAdminLogoDTO = z.infer<typeof UserAdminLogoSchema>;
|
|
|
93
93
|
declare const UserAdminProfileSchema: z.ZodObject<{
|
|
94
94
|
admin_name: z.ZodEffects<z.ZodString, string, string>;
|
|
95
95
|
email: z.ZodEffects<z.ZodString, string, string>;
|
|
96
|
-
password: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
97
96
|
mobile: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
98
97
|
admin_image_url: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
99
98
|
admin_image_key: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
100
99
|
admin_image_name: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
101
|
-
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
102
100
|
}, "strip", z.ZodTypeAny, {
|
|
103
|
-
status: Status;
|
|
104
|
-
password: string;
|
|
105
101
|
email: string;
|
|
106
102
|
mobile: string;
|
|
107
103
|
admin_name: string;
|
|
@@ -109,10 +105,8 @@ declare const UserAdminProfileSchema: z.ZodObject<{
|
|
|
109
105
|
admin_image_key: string;
|
|
110
106
|
admin_image_name: string;
|
|
111
107
|
}, {
|
|
112
|
-
status: Status;
|
|
113
108
|
email: string;
|
|
114
109
|
admin_name: string;
|
|
115
|
-
password?: string | undefined;
|
|
116
110
|
mobile?: string | undefined;
|
|
117
111
|
admin_image_url?: string | undefined;
|
|
118
112
|
admin_image_key?: string | undefined;
|
|
@@ -203,13 +197,13 @@ declare const UserAdminQuerySchema: z.ZodObject<{
|
|
|
203
197
|
}>;
|
|
204
198
|
type UserAdminQueryDTO = z.infer<typeof UserAdminQuerySchema>;
|
|
205
199
|
declare const toUserAdminPayload: (admin: UserAdmin) => UserAdminDTO;
|
|
206
|
-
declare const toUserAdminLogoPayload: (admin: UserAdmin) => UserAdminLogoDTO;
|
|
207
200
|
declare const toUserAdminProfilePayload: (admin: UserAdmin) => UserAdminProfileDTO;
|
|
208
201
|
declare const newUserAdminPayload: () => UserAdminDTO;
|
|
209
202
|
declare const findUserAdmin: (data: UserAdminQueryDTO) => Promise<FBR<UserAdmin[]>>;
|
|
210
203
|
declare const createUserAdmin: (data: UserAdminDTO) => Promise<SBR>;
|
|
211
204
|
declare const updateUserAdmin: (id: string, data: UserAdminDTO) => Promise<SBR>;
|
|
212
205
|
declare const updateUserAdminLogo: (id: string, data: UserAdminLogoDTO) => Promise<SBR>;
|
|
206
|
+
declare const deleteUserAdminLogo: (id: string) => Promise<SBR>;
|
|
213
207
|
declare const updateUserAdminProfile: (id: string, data: UserAdminProfileDTO) => Promise<SBR>;
|
|
214
208
|
declare const deleteUserAdmin: (id: string) => Promise<SBR>;
|
|
215
209
|
declare const get_admin_presigned_url: (file_name: string) => Promise<BR<AWSPresignedUrl>>;
|
|
@@ -545,4 +539,4 @@ declare const getTicketFilePresignedUrl: (data: FilePresignedUrlDTO) => Promise<
|
|
|
545
539
|
declare const createTicketFile: (data: TicketFileDTO) => Promise<SBR>;
|
|
546
540
|
declare const removeTicketFile: (id: string) => Promise<SBR>;
|
|
547
541
|
|
|
548
|
-
export { type Ticket as T, type UserAdmin, type UserAdminDTO, type UserAdminLoginPush, type UserAdminLogoDTO, UserAdminLogoSchema, type UserAdminProfileDTO, UserAdminProfileSchema, type UserAdminQueryDTO, UserAdminQuerySchema, UserAdminSchema, type TicketFile as a, TicketFileSchema as b, type TicketFileDTO as c, createUserAdmin, TicketSchema as d, deleteUserAdmin, type TicketDTO as e, TicketVerifySchema as f, findUserAdmin, type TicketVerifyDTO as g, getAdminUserCache, get_admin_presigned_url, TicketQuerySchema as h, type TicketQueryDTO as i, toVerifyTicketPayload as j, findTickets as k, createTicket as l, updateVerifyStatus as m, newTicketPayload as n, newUserAdminPayload, deleteTicket as o, getTicketFilePresignedUrl as p, createTicketFile as q, removeTicketFile as r, toTicketPayload as t,
|
|
542
|
+
export { type Ticket as T, type UserAdmin, type UserAdminDTO, type UserAdminLoginPush, type UserAdminLogoDTO, UserAdminLogoSchema, type UserAdminProfileDTO, UserAdminProfileSchema, type UserAdminQueryDTO, UserAdminQuerySchema, UserAdminSchema, type TicketFile as a, TicketFileSchema as b, type TicketFileDTO as c, createUserAdmin, TicketSchema as d, deleteUserAdmin, deleteUserAdminLogo, type TicketDTO as e, TicketVerifySchema as f, findUserAdmin, type TicketVerifyDTO as g, getAdminUserCache, get_admin_presigned_url, TicketQuerySchema as h, type TicketQueryDTO as i, toVerifyTicketPayload as j, findTickets as k, createTicket as l, updateVerifyStatus as m, newTicketPayload as n, newUserAdminPayload, deleteTicket as o, getTicketFilePresignedUrl as p, createTicketFile as q, removeTicketFile as r, toTicketPayload as t, toUserAdminPayload, toUserAdminProfilePayload, updateTicket as u, updateUserAdmin, updateUserAdminLogo, updateUserAdminProfile };
|
|
@@ -253,6 +253,7 @@ var ENDPOINTS = {
|
|
|
253
253
|
create: URL,
|
|
254
254
|
update: (id) => `${URL}/${id}`,
|
|
255
255
|
update_logo: (id) => `${URL}/update_logo/${id}`,
|
|
256
|
+
delete_logo: (id) => `${URL}/delete_logo/${id}`,
|
|
256
257
|
update_profile: (id) => `${URL}/update_profile/${id}`,
|
|
257
258
|
delete: (id) => `${URL}/${id}`,
|
|
258
259
|
presigned_url: (fileName) => `${URL}/presigned_url/${fileName}`,
|
|
@@ -278,12 +279,10 @@ var UserAdminLogoSchema = z3.object({
|
|
|
278
279
|
var UserAdminProfileSchema = z3.object({
|
|
279
280
|
admin_name: stringMandatory("Admin Name", 3, 100),
|
|
280
281
|
email: stringMandatory("Email", 3, 100),
|
|
281
|
-
password: stringOptional("Password", 0, 20),
|
|
282
282
|
mobile: stringOptional("Password", 0, 20),
|
|
283
283
|
admin_image_url: stringOptional("Admin Image URL", 0, 300),
|
|
284
284
|
admin_image_key: stringOptional("Admin Image Key", 0, 300),
|
|
285
|
-
admin_image_name: stringOptional("Admin Image Name", 0, 300)
|
|
286
|
-
status: enumMandatory("Status", Status, "Active" /* Active */)
|
|
285
|
+
admin_image_name: stringOptional("Admin Image Name", 0, 300)
|
|
287
286
|
});
|
|
288
287
|
var UserAdminQuerySchema = BaseQuerySchema.extend({
|
|
289
288
|
admin_ids: multi_select_optional("UserAdmin"),
|
|
@@ -305,20 +304,13 @@ var toUserAdminPayload = (admin) => ({
|
|
|
305
304
|
admin_image_name: admin.admin_image_name || "",
|
|
306
305
|
status: admin.status
|
|
307
306
|
});
|
|
308
|
-
var toUserAdminLogoPayload = (admin) => ({
|
|
309
|
-
admin_image_url: admin.admin_image_url || "",
|
|
310
|
-
admin_image_key: admin.admin_image_key || "",
|
|
311
|
-
admin_image_name: admin.admin_image_name || ""
|
|
312
|
-
});
|
|
313
307
|
var toUserAdminProfilePayload = (admin) => ({
|
|
314
308
|
admin_name: admin.admin_name,
|
|
315
309
|
email: admin.email,
|
|
316
|
-
password: admin.password || "",
|
|
317
310
|
mobile: admin.mobile || "",
|
|
318
311
|
admin_image_url: admin.admin_image_url || "",
|
|
319
312
|
admin_image_key: admin.admin_image_key || "",
|
|
320
|
-
admin_image_name: admin.admin_image_name || ""
|
|
321
|
-
status: admin.status
|
|
313
|
+
admin_image_name: admin.admin_image_name || ""
|
|
322
314
|
});
|
|
323
315
|
var newUserAdminPayload = () => ({
|
|
324
316
|
admin_name: "",
|
|
@@ -343,6 +335,9 @@ var updateUserAdmin = async (id, data) => {
|
|
|
343
335
|
var updateUserAdminLogo = async (id, data) => {
|
|
344
336
|
return apiPatch(ENDPOINTS.update_logo(id), data);
|
|
345
337
|
};
|
|
338
|
+
var deleteUserAdminLogo = async (id) => {
|
|
339
|
+
return apiDelete(ENDPOINTS.delete_logo(id));
|
|
340
|
+
};
|
|
346
341
|
var updateUserAdminProfile = async (id, data) => {
|
|
347
342
|
return apiPatch(ENDPOINTS.update_profile(id), data);
|
|
348
343
|
};
|
|
@@ -362,11 +357,11 @@ export {
|
|
|
362
357
|
UserAdminSchema,
|
|
363
358
|
createUserAdmin,
|
|
364
359
|
deleteUserAdmin,
|
|
360
|
+
deleteUserAdminLogo,
|
|
365
361
|
findUserAdmin,
|
|
366
362
|
getAdminUserCache,
|
|
367
363
|
get_admin_presigned_url,
|
|
368
364
|
newUserAdminPayload,
|
|
369
|
-
toUserAdminLogoPayload,
|
|
370
365
|
toUserAdminPayload,
|
|
371
366
|
toUserAdminProfilePayload,
|
|
372
367
|
updateUserAdmin,
|
|
@@ -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;
|
|
30
32
|
description: string;
|
|
31
33
|
status: Status;
|
|
32
34
|
organisation_id: string;
|
|
35
|
+
}, {
|
|
33
36
|
expense_name: string;
|
|
34
37
|
expense_category: ExpenseCategory;
|
|
35
|
-
}, {
|
|
36
38
|
status: Status;
|
|
37
39
|
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,6 +75,7 @@ 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[];
|
|
78
79
|
status: Status[];
|
|
79
80
|
search: string;
|
|
80
81
|
paging: PAGING;
|
|
@@ -97,11 +98,11 @@ declare const MasterExpenseNameQuerySchema: z.ZodObject<{
|
|
|
97
98
|
date_format_id: string;
|
|
98
99
|
time_zone_id: string;
|
|
99
100
|
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;
|
|
105
106
|
status?: Status[] | undefined;
|
|
106
107
|
search?: string | undefined;
|
|
107
108
|
paging?: PAGING | undefined;
|
|
@@ -122,7 +123,6 @@ declare const MasterExpenseNameQuerySchema: z.ZodObject<{
|
|
|
122
123
|
}[] | undefined;
|
|
123
124
|
include_master_data?: YesNo | undefined;
|
|
124
125
|
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;
|
|
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<{
|
|
@@ -24,14 +24,14 @@ declare const MasterFleetIncidentSeveritySchema: 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
|
-
fleet_incident_severity: string;
|
|
28
27
|
description: string;
|
|
29
28
|
status: Status;
|
|
30
29
|
organisation_id: string;
|
|
31
|
-
}, {
|
|
32
30
|
fleet_incident_severity: string;
|
|
31
|
+
}, {
|
|
33
32
|
status: Status;
|
|
34
33
|
organisation_id: string;
|
|
34
|
+
fleet_incident_severity: string;
|
|
35
35
|
description?: string | undefined;
|
|
36
36
|
}>;
|
|
37
37
|
type MasterFleetIncidentSeverityDTO = z.infer<typeof MasterFleetIncidentSeveritySchema>;
|
|
@@ -24,14 +24,14 @@ declare const MasterFleetIncidentStatusSchema: 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
|
+
fleet_incident_status: string;
|
|
27
28
|
description: string;
|
|
28
29
|
status: Status;
|
|
29
30
|
organisation_id: string;
|
|
30
|
-
fleet_incident_status: string;
|
|
31
31
|
}, {
|
|
32
|
+
fleet_incident_status: string;
|
|
32
33
|
status: Status;
|
|
33
34
|
organisation_id: string;
|
|
34
|
-
fleet_incident_status: string;
|
|
35
35
|
description?: string | undefined;
|
|
36
36
|
}>;
|
|
37
37
|
type MasterFleetIncidentStatusDTO = z.infer<typeof MasterFleetIncidentStatusSchema>;
|
|
@@ -15,12 +15,12 @@ declare const MasterMainEwayBillProviderSchema: z.ZodObject<{
|
|
|
15
15
|
provider_code: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
16
16
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
17
17
|
}, "strip", z.ZodTypeAny, {
|
|
18
|
+
status: Status;
|
|
18
19
|
provider_name: string;
|
|
19
20
|
provider_code: string;
|
|
20
|
-
status: Status;
|
|
21
21
|
}, {
|
|
22
|
-
provider_name: string;
|
|
23
22
|
status: Status;
|
|
23
|
+
provider_name: string;
|
|
24
24
|
provider_code?: string | undefined;
|
|
25
25
|
}>;
|
|
26
26
|
type MasterMainEwayBillProviderDTO = z.infer<typeof MasterMainEwayBillProviderSchema>;
|
|
@@ -15,12 +15,12 @@ declare const MasterMainFasttagBankSchema: z.ZodObject<{
|
|
|
15
15
|
bank_code: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
16
16
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
17
17
|
}, "strip", z.ZodTypeAny, {
|
|
18
|
-
status: Status;
|
|
19
18
|
bank_name: string;
|
|
20
19
|
bank_code: string;
|
|
21
|
-
}, {
|
|
22
20
|
status: Status;
|
|
21
|
+
}, {
|
|
23
22
|
bank_name: string;
|
|
23
|
+
status: Status;
|
|
24
24
|
bank_code?: string | undefined;
|
|
25
25
|
}>;
|
|
26
26
|
type MasterMainFasttagBankDTO = z.infer<typeof MasterMainFasttagBankSchema>;
|
|
@@ -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;
|
|
@@ -19,11 +19,11 @@ declare const StaticPageSchema: z.ZodObject<{
|
|
|
19
19
|
page_content: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
20
20
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
21
21
|
}, "strip", z.ZodTypeAny, {
|
|
22
|
-
status: Status;
|
|
23
22
|
page_name: string;
|
|
24
23
|
page_code: string;
|
|
25
24
|
page_url: string;
|
|
26
25
|
page_content: string;
|
|
26
|
+
status: Status;
|
|
27
27
|
}, {
|
|
28
28
|
status: Status;
|
|
29
29
|
page_name?: string | undefined;
|
package/package.json
CHANGED