vms-nest-api-document 51.0.0 → 52.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/account/analytics/admin_login_analytics_service.d.ts +3 -3
- package/dist/services/account/analytics/driver_login_analytics_service.d.ts +4 -4
- package/dist/services/account/analytics/parent_login_analytics_service.d.ts +3 -3
- package/dist/services/account/analytics/student_login_analytics_service.d.ts +3 -3
- package/dist/services/account/analytics/user_login_analytics_service.d.ts +2 -2
- package/dist/services/account/analytics/user_page_analytics_service.d.ts +2 -2
- package/dist/services/account/analytics/user_report_analytics_service.d.ts +2 -2
- package/dist/services/core/cronjobs.service.d.ts +12 -12
- package/dist/services/core/external_api_push.service.d.ts +14 -14
- package/dist/services/core/external_api_share.service.d.ts +10 -10
- package/dist/services/core/external_api_sync.service.d.ts +15 -15
- package/dist/services/gps/reports/gps_models/FuelConsumptionMonthly.d.ts +2 -0
- package/dist/services/gps/reports/gps_reports_mongo_service.d.ts +18 -18
- package/dist/services/website/contact_us_detail_service.d.ts +3 -3
- package/dist/services/website/request_demo.service.d.ts +12 -12
- package/package.json +1 -1
|
@@ -79,11 +79,11 @@ declare const UserAdminLoginAnalyticsQuerySchema: z.ZodObject<{
|
|
|
79
79
|
include_master_data: YesNo;
|
|
80
80
|
date_format_id: string;
|
|
81
81
|
time_zone_id: string;
|
|
82
|
-
user_admin_login_analytics_ids: string[];
|
|
83
|
-
admin_ids: string[];
|
|
84
82
|
platform: LoginFrom[];
|
|
85
83
|
from_date: string;
|
|
86
84
|
to_date: string;
|
|
85
|
+
user_admin_login_analytics_ids: string[];
|
|
86
|
+
admin_ids: string[];
|
|
87
87
|
}, {
|
|
88
88
|
date_format_id: string;
|
|
89
89
|
time_zone_id: string;
|
|
@@ -108,9 +108,9 @@ declare const UserAdminLoginAnalyticsQuerySchema: z.ZodObject<{
|
|
|
108
108
|
direction: OrderBy;
|
|
109
109
|
}[] | undefined;
|
|
110
110
|
include_master_data?: YesNo | undefined;
|
|
111
|
+
platform?: LoginFrom[] | undefined;
|
|
111
112
|
user_admin_login_analytics_ids?: string[] | undefined;
|
|
112
113
|
admin_ids?: string[] | undefined;
|
|
113
|
-
platform?: LoginFrom[] | undefined;
|
|
114
114
|
}>;
|
|
115
115
|
type UserAdminLoginAnalyticsQueryDTO = z.infer<typeof UserAdminLoginAnalyticsQuerySchema>;
|
|
116
116
|
declare const UserAdminLoginAnalyticsLoginCountReportSchema: z.ZodObject<{
|
|
@@ -89,13 +89,13 @@ declare const MasterDriverLoginAnalyticsQuerySchema: z.ZodObject<{
|
|
|
89
89
|
include_master_data: YesNo;
|
|
90
90
|
date_format_id: string;
|
|
91
91
|
time_zone_id: string;
|
|
92
|
-
platform: LoginFrom[];
|
|
93
|
-
from_date: string;
|
|
94
|
-
to_date: string;
|
|
95
92
|
master_driver_login_analytics_ids: string[];
|
|
96
93
|
organisation_ids: string[];
|
|
97
94
|
organisation_branch_ids: string[];
|
|
98
95
|
driver_ids: string[];
|
|
96
|
+
platform: LoginFrom[];
|
|
97
|
+
from_date: string;
|
|
98
|
+
to_date: string;
|
|
99
99
|
}, {
|
|
100
100
|
date_format_id: string;
|
|
101
101
|
time_zone_id: string;
|
|
@@ -120,11 +120,11 @@ declare const MasterDriverLoginAnalyticsQuerySchema: z.ZodObject<{
|
|
|
120
120
|
direction: OrderBy;
|
|
121
121
|
}[] | undefined;
|
|
122
122
|
include_master_data?: YesNo | undefined;
|
|
123
|
-
platform?: LoginFrom[] | undefined;
|
|
124
123
|
master_driver_login_analytics_ids?: string[] | undefined;
|
|
125
124
|
organisation_ids?: string[] | undefined;
|
|
126
125
|
organisation_branch_ids?: string[] | undefined;
|
|
127
126
|
driver_ids?: string[] | undefined;
|
|
127
|
+
platform?: LoginFrom[] | undefined;
|
|
128
128
|
}>;
|
|
129
129
|
type MasterDriverLoginAnalyticsQueryDTO = z.infer<typeof MasterDriverLoginAnalyticsQuerySchema>;
|
|
130
130
|
declare const MasterDriverLoginAnalyticsLoginCountReportSchema: z.ZodObject<{
|
|
@@ -89,11 +89,11 @@ declare const StudentGuardianLoginAnalyticsQuerySchema: z.ZodObject<{
|
|
|
89
89
|
include_master_data: YesNo;
|
|
90
90
|
date_format_id: string;
|
|
91
91
|
time_zone_id: string;
|
|
92
|
+
organisation_ids: string[];
|
|
93
|
+
organisation_branch_ids: string[];
|
|
92
94
|
platform: LoginFrom[];
|
|
93
95
|
from_date: string;
|
|
94
96
|
to_date: string;
|
|
95
|
-
organisation_ids: string[];
|
|
96
|
-
organisation_branch_ids: string[];
|
|
97
97
|
guardian_login_analytics_ids: string[];
|
|
98
98
|
guardian_ids: string[];
|
|
99
99
|
}, {
|
|
@@ -120,9 +120,9 @@ declare const StudentGuardianLoginAnalyticsQuerySchema: z.ZodObject<{
|
|
|
120
120
|
direction: OrderBy;
|
|
121
121
|
}[] | undefined;
|
|
122
122
|
include_master_data?: YesNo | undefined;
|
|
123
|
-
platform?: LoginFrom[] | undefined;
|
|
124
123
|
organisation_ids?: string[] | undefined;
|
|
125
124
|
organisation_branch_ids?: string[] | undefined;
|
|
125
|
+
platform?: LoginFrom[] | undefined;
|
|
126
126
|
guardian_login_analytics_ids?: string[] | undefined;
|
|
127
127
|
guardian_ids?: string[] | undefined;
|
|
128
128
|
}>;
|
|
@@ -89,11 +89,11 @@ declare const StudentLoginAnalyticsQuerySchema: z.ZodObject<{
|
|
|
89
89
|
include_master_data: YesNo;
|
|
90
90
|
date_format_id: string;
|
|
91
91
|
time_zone_id: string;
|
|
92
|
+
organisation_ids: string[];
|
|
93
|
+
organisation_branch_ids: string[];
|
|
92
94
|
platform: LoginFrom[];
|
|
93
95
|
from_date: string;
|
|
94
96
|
to_date: string;
|
|
95
|
-
organisation_ids: string[];
|
|
96
|
-
organisation_branch_ids: string[];
|
|
97
97
|
student_login_analytics_ids: string[];
|
|
98
98
|
student_ids: string[];
|
|
99
99
|
}, {
|
|
@@ -120,9 +120,9 @@ declare const StudentLoginAnalyticsQuerySchema: z.ZodObject<{
|
|
|
120
120
|
direction: OrderBy;
|
|
121
121
|
}[] | undefined;
|
|
122
122
|
include_master_data?: YesNo | undefined;
|
|
123
|
-
platform?: LoginFrom[] | undefined;
|
|
124
123
|
organisation_ids?: string[] | undefined;
|
|
125
124
|
organisation_branch_ids?: string[] | undefined;
|
|
125
|
+
platform?: LoginFrom[] | undefined;
|
|
126
126
|
student_login_analytics_ids?: string[] | undefined;
|
|
127
127
|
student_ids?: string[] | undefined;
|
|
128
128
|
}>;
|
|
@@ -86,10 +86,10 @@ declare const UserLoginAnalyticsQuerySchema: z.ZodObject<{
|
|
|
86
86
|
include_master_data: YesNo;
|
|
87
87
|
date_format_id: string;
|
|
88
88
|
time_zone_id: string;
|
|
89
|
+
organisation_ids: string[];
|
|
89
90
|
platform: LoginFrom[];
|
|
90
91
|
from_date: string;
|
|
91
92
|
to_date: string;
|
|
92
|
-
organisation_ids: string[];
|
|
93
93
|
user_login_analytics_ids: string[];
|
|
94
94
|
user_ids: string[];
|
|
95
95
|
}, {
|
|
@@ -116,8 +116,8 @@ declare const UserLoginAnalyticsQuerySchema: z.ZodObject<{
|
|
|
116
116
|
direction: OrderBy;
|
|
117
117
|
}[] | undefined;
|
|
118
118
|
include_master_data?: YesNo | undefined;
|
|
119
|
-
platform?: LoginFrom[] | undefined;
|
|
120
119
|
organisation_ids?: string[] | undefined;
|
|
120
|
+
platform?: LoginFrom[] | undefined;
|
|
121
121
|
user_login_analytics_ids?: string[] | undefined;
|
|
122
122
|
user_ids?: string[] | undefined;
|
|
123
123
|
}>;
|
|
@@ -116,10 +116,10 @@ declare const UserPageAnalyticsQuerySchema: z.ZodObject<{
|
|
|
116
116
|
include_master_data: YesNo;
|
|
117
117
|
date_format_id: string;
|
|
118
118
|
time_zone_id: string;
|
|
119
|
+
organisation_ids: string[];
|
|
119
120
|
platform: LoginFrom[];
|
|
120
121
|
from_date: string;
|
|
121
122
|
to_date: string;
|
|
122
|
-
organisation_ids: string[];
|
|
123
123
|
user_ids: string[];
|
|
124
124
|
user_page_analytics_ids: string[];
|
|
125
125
|
}, {
|
|
@@ -146,8 +146,8 @@ declare const UserPageAnalyticsQuerySchema: z.ZodObject<{
|
|
|
146
146
|
direction: OrderBy;
|
|
147
147
|
}[] | undefined;
|
|
148
148
|
include_master_data?: YesNo | undefined;
|
|
149
|
-
platform?: LoginFrom[] | undefined;
|
|
150
149
|
organisation_ids?: string[] | undefined;
|
|
150
|
+
platform?: LoginFrom[] | undefined;
|
|
151
151
|
user_ids?: string[] | undefined;
|
|
152
152
|
user_page_analytics_ids?: string[] | undefined;
|
|
153
153
|
}>;
|
|
@@ -126,10 +126,10 @@ declare const UserReportAnalyticsQuerySchema: z.ZodObject<{
|
|
|
126
126
|
include_master_data: YesNo;
|
|
127
127
|
date_format_id: string;
|
|
128
128
|
time_zone_id: string;
|
|
129
|
+
organisation_ids: string[];
|
|
129
130
|
platform: LoginFrom[];
|
|
130
131
|
from_date: string;
|
|
131
132
|
to_date: string;
|
|
132
|
-
organisation_ids: string[];
|
|
133
133
|
user_ids: string[];
|
|
134
134
|
report_type: DownloadReportType[];
|
|
135
135
|
user_report_analytics_ids: string[];
|
|
@@ -157,8 +157,8 @@ declare const UserReportAnalyticsQuerySchema: z.ZodObject<{
|
|
|
157
157
|
direction: OrderBy;
|
|
158
158
|
}[] | undefined;
|
|
159
159
|
include_master_data?: YesNo | undefined;
|
|
160
|
-
platform?: LoginFrom[] | undefined;
|
|
161
160
|
organisation_ids?: string[] | undefined;
|
|
161
|
+
platform?: LoginFrom[] | undefined;
|
|
162
162
|
user_ids?: string[] | undefined;
|
|
163
163
|
report_type?: DownloadReportType[] | undefined;
|
|
164
164
|
user_report_analytics_ids?: string[] | undefined;
|
|
@@ -86,10 +86,8 @@ declare const CronMonitorQuerySchema: z.ZodObject<{
|
|
|
86
86
|
run_type: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof RunType>, "many">>>;
|
|
87
87
|
execution_status: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof ExecutionStatus>, "many">>>;
|
|
88
88
|
}, "strip", z.ZodTypeAny, {
|
|
89
|
-
run_type: RunType[];
|
|
90
|
-
execution_status: ExecutionStatus[];
|
|
91
|
-
status: Status[];
|
|
92
89
|
is_enabled: YesNo[];
|
|
90
|
+
status: Status[];
|
|
93
91
|
search: string;
|
|
94
92
|
paging: PAGING;
|
|
95
93
|
page_count: number;
|
|
@@ -110,13 +108,13 @@ declare const CronMonitorQuerySchema: z.ZodObject<{
|
|
|
110
108
|
include_master_data: YesNo;
|
|
111
109
|
date_format_id: string;
|
|
112
110
|
time_zone_id: string;
|
|
111
|
+
run_type: RunType[];
|
|
112
|
+
execution_status: ExecutionStatus[];
|
|
113
113
|
}, {
|
|
114
114
|
date_format_id: string;
|
|
115
115
|
time_zone_id: string;
|
|
116
|
-
run_type?: RunType[] | undefined;
|
|
117
|
-
execution_status?: ExecutionStatus[] | undefined;
|
|
118
|
-
status?: Status[] | undefined;
|
|
119
116
|
is_enabled?: YesNo[] | undefined;
|
|
117
|
+
status?: Status[] | undefined;
|
|
120
118
|
search?: string | undefined;
|
|
121
119
|
paging?: PAGING | undefined;
|
|
122
120
|
page_count?: unknown;
|
|
@@ -135,6 +133,8 @@ declare const CronMonitorQuerySchema: z.ZodObject<{
|
|
|
135
133
|
direction: OrderBy;
|
|
136
134
|
}[] | undefined;
|
|
137
135
|
include_master_data?: YesNo | undefined;
|
|
136
|
+
run_type?: RunType[] | undefined;
|
|
137
|
+
execution_status?: ExecutionStatus[] | undefined;
|
|
138
138
|
}>;
|
|
139
139
|
type CronMonitorQueryDTO = z.infer<typeof CronMonitorQuerySchema>;
|
|
140
140
|
declare const CronJobLogQuerySchema: z.ZodObject<{
|
|
@@ -173,9 +173,6 @@ declare const CronJobLogQuerySchema: z.ZodObject<{
|
|
|
173
173
|
execution_status: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof ExecutionStatus>, "many">>>;
|
|
174
174
|
is_latest_run: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof YesNo>, "many">>>;
|
|
175
175
|
}, "strip", z.ZodTypeAny, {
|
|
176
|
-
run_type: RunType[];
|
|
177
|
-
execution_status: ExecutionStatus[];
|
|
178
|
-
is_latest_run: YesNo[];
|
|
179
176
|
status: Status[];
|
|
180
177
|
search: string;
|
|
181
178
|
paging: PAGING;
|
|
@@ -197,13 +194,13 @@ declare const CronJobLogQuerySchema: z.ZodObject<{
|
|
|
197
194
|
include_master_data: YesNo;
|
|
198
195
|
date_format_id: string;
|
|
199
196
|
time_zone_id: string;
|
|
197
|
+
run_type: RunType[];
|
|
198
|
+
execution_status: ExecutionStatus[];
|
|
199
|
+
is_latest_run: YesNo[];
|
|
200
200
|
cron_job_ids: string[];
|
|
201
201
|
}, {
|
|
202
202
|
date_format_id: string;
|
|
203
203
|
time_zone_id: string;
|
|
204
|
-
run_type?: RunType[] | undefined;
|
|
205
|
-
execution_status?: ExecutionStatus[] | undefined;
|
|
206
|
-
is_latest_run?: YesNo[] | undefined;
|
|
207
204
|
status?: Status[] | undefined;
|
|
208
205
|
search?: string | undefined;
|
|
209
206
|
paging?: PAGING | undefined;
|
|
@@ -223,6 +220,9 @@ declare const CronJobLogQuerySchema: z.ZodObject<{
|
|
|
223
220
|
direction: OrderBy;
|
|
224
221
|
}[] | undefined;
|
|
225
222
|
include_master_data?: YesNo | undefined;
|
|
223
|
+
run_type?: RunType[] | undefined;
|
|
224
|
+
execution_status?: ExecutionStatus[] | undefined;
|
|
225
|
+
is_latest_run?: YesNo[] | undefined;
|
|
226
226
|
cron_job_ids?: string[] | undefined;
|
|
227
227
|
}>;
|
|
228
228
|
type CronJobLogQueryDTO = z.infer<typeof CronJobLogQuerySchema>;
|
|
@@ -85,25 +85,25 @@ declare const ApiDataPushManagementSchema: z.ZodObject<{
|
|
|
85
85
|
frequency_seconds: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
86
86
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
87
87
|
}, "strip", z.ZodTypeAny, {
|
|
88
|
-
|
|
89
|
-
is_enabled: YesNo;
|
|
90
|
-
description: string;
|
|
91
|
-
organisation_ids: string[];
|
|
92
|
-
vehicle_ids: string[];
|
|
88
|
+
api_name: string;
|
|
93
89
|
vendor_name: string;
|
|
90
|
+
description: string;
|
|
91
|
+
is_enabled: YesNo;
|
|
94
92
|
all_vehicles: YesNo;
|
|
95
|
-
api_name: string;
|
|
96
93
|
frequency_seconds: number;
|
|
97
|
-
}, {
|
|
98
94
|
status: Status;
|
|
95
|
+
organisation_ids: string[];
|
|
96
|
+
vehicle_ids: string[];
|
|
97
|
+
}, {
|
|
98
|
+
api_name: string;
|
|
99
99
|
vendor_name: string;
|
|
100
100
|
all_vehicles: YesNo;
|
|
101
|
-
|
|
102
|
-
is_enabled?: YesNo | undefined;
|
|
101
|
+
status: Status;
|
|
103
102
|
description?: string | undefined;
|
|
103
|
+
is_enabled?: YesNo | undefined;
|
|
104
|
+
frequency_seconds?: unknown;
|
|
104
105
|
organisation_ids?: string[] | undefined;
|
|
105
106
|
vehicle_ids?: string[] | undefined;
|
|
106
|
-
frequency_seconds?: unknown;
|
|
107
107
|
}>;
|
|
108
108
|
type ApiDataPushManagementDTO = z.infer<typeof ApiDataPushManagementSchema>;
|
|
109
109
|
declare const ApiDataPushManagementQuerySchema: z.ZodObject<{
|
|
@@ -140,8 +140,8 @@ declare const ApiDataPushManagementQuerySchema: z.ZodObject<{
|
|
|
140
140
|
api_data_push_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
141
141
|
is_enabled: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof YesNo>, "many">>>;
|
|
142
142
|
}, "strip", z.ZodTypeAny, {
|
|
143
|
-
status: Status[];
|
|
144
143
|
is_enabled: YesNo[];
|
|
144
|
+
status: Status[];
|
|
145
145
|
search: string;
|
|
146
146
|
paging: PAGING;
|
|
147
147
|
page_count: number;
|
|
@@ -166,8 +166,8 @@ declare const ApiDataPushManagementQuerySchema: z.ZodObject<{
|
|
|
166
166
|
}, {
|
|
167
167
|
date_format_id: string;
|
|
168
168
|
time_zone_id: string;
|
|
169
|
-
status?: Status[] | undefined;
|
|
170
169
|
is_enabled?: YesNo[] | undefined;
|
|
170
|
+
status?: Status[] | undefined;
|
|
171
171
|
search?: string | undefined;
|
|
172
172
|
paging?: PAGING | undefined;
|
|
173
173
|
page_count?: unknown;
|
|
@@ -225,6 +225,7 @@ declare const ApiDataPushHitLogQuerySchema: z.ZodObject<{
|
|
|
225
225
|
run_status: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof YesNo>, "many">>>;
|
|
226
226
|
}, "strip", z.ZodTypeAny, {
|
|
227
227
|
status: Status[];
|
|
228
|
+
run_status: YesNo[];
|
|
228
229
|
search: string;
|
|
229
230
|
paging: PAGING;
|
|
230
231
|
page_count: number;
|
|
@@ -245,13 +246,13 @@ declare const ApiDataPushHitLogQuerySchema: z.ZodObject<{
|
|
|
245
246
|
include_master_data: YesNo;
|
|
246
247
|
date_format_id: string;
|
|
247
248
|
time_zone_id: string;
|
|
248
|
-
run_status: YesNo[];
|
|
249
249
|
api_data_push_ids: string[];
|
|
250
250
|
api_data_push_hit_log_ids: string[];
|
|
251
251
|
}, {
|
|
252
252
|
date_format_id: string;
|
|
253
253
|
time_zone_id: string;
|
|
254
254
|
status?: Status[] | undefined;
|
|
255
|
+
run_status?: YesNo[] | undefined;
|
|
255
256
|
search?: string | undefined;
|
|
256
257
|
paging?: PAGING | undefined;
|
|
257
258
|
page_count?: unknown;
|
|
@@ -270,7 +271,6 @@ declare const ApiDataPushHitLogQuerySchema: z.ZodObject<{
|
|
|
270
271
|
direction: OrderBy;
|
|
271
272
|
}[] | undefined;
|
|
272
273
|
include_master_data?: YesNo | undefined;
|
|
273
|
-
run_status?: YesNo[] | undefined;
|
|
274
274
|
api_data_push_ids?: string[] | undefined;
|
|
275
275
|
api_data_push_hit_log_ids?: string[] | undefined;
|
|
276
276
|
}>;
|
|
@@ -95,14 +95,14 @@ declare const ApiDataShareManagementSchema: z.ZodObject<{
|
|
|
95
95
|
allowed_ips: z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], string[]>;
|
|
96
96
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
97
97
|
}, "strip", z.ZodTypeAny, {
|
|
98
|
-
|
|
99
|
-
|
|
98
|
+
api_name: string;
|
|
99
|
+
vendor_name: string;
|
|
100
100
|
description: string;
|
|
101
|
+
is_enabled: YesNo;
|
|
102
|
+
all_vehicles: YesNo;
|
|
103
|
+
status: Status;
|
|
101
104
|
organisation_ids: string[];
|
|
102
105
|
vehicle_ids: string[];
|
|
103
|
-
vendor_name: string;
|
|
104
|
-
all_vehicles: YesNo;
|
|
105
|
-
api_name: string;
|
|
106
106
|
auth_type: APIAuthType;
|
|
107
107
|
api_keys: string[];
|
|
108
108
|
usernames: string[];
|
|
@@ -110,16 +110,16 @@ declare const ApiDataShareManagementSchema: z.ZodObject<{
|
|
|
110
110
|
rate_limit_rpm: number;
|
|
111
111
|
allowed_ips: string[];
|
|
112
112
|
}, {
|
|
113
|
-
|
|
113
|
+
api_name: string;
|
|
114
114
|
vendor_name: string;
|
|
115
115
|
all_vehicles: YesNo;
|
|
116
|
-
|
|
116
|
+
status: Status;
|
|
117
117
|
api_keys: string[];
|
|
118
118
|
usernames: string[];
|
|
119
119
|
passwords: string[];
|
|
120
120
|
allowed_ips: string[];
|
|
121
|
-
is_enabled?: YesNo | undefined;
|
|
122
121
|
description?: string | undefined;
|
|
122
|
+
is_enabled?: YesNo | undefined;
|
|
123
123
|
organisation_ids?: string[] | undefined;
|
|
124
124
|
vehicle_ids?: string[] | undefined;
|
|
125
125
|
auth_type?: APIAuthType | undefined;
|
|
@@ -161,8 +161,8 @@ declare const ApiDataShareManagementQuerySchema: z.ZodObject<{
|
|
|
161
161
|
is_enabled: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof YesNo>, "many">>>;
|
|
162
162
|
auth_type: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof APIAuthType>, "many">>>;
|
|
163
163
|
}, "strip", z.ZodTypeAny, {
|
|
164
|
-
status: Status[];
|
|
165
164
|
is_enabled: YesNo[];
|
|
165
|
+
status: Status[];
|
|
166
166
|
search: string;
|
|
167
167
|
paging: PAGING;
|
|
168
168
|
page_count: number;
|
|
@@ -188,8 +188,8 @@ declare const ApiDataShareManagementQuerySchema: z.ZodObject<{
|
|
|
188
188
|
}, {
|
|
189
189
|
date_format_id: string;
|
|
190
190
|
time_zone_id: string;
|
|
191
|
-
status?: Status[] | undefined;
|
|
192
191
|
is_enabled?: YesNo[] | undefined;
|
|
192
|
+
status?: Status[] | undefined;
|
|
193
193
|
search?: string | undefined;
|
|
194
194
|
paging?: PAGING | undefined;
|
|
195
195
|
page_count?: unknown;
|
|
@@ -70,21 +70,21 @@ declare const ApiDataSyncManagementSchema: z.ZodObject<{
|
|
|
70
70
|
frequency_seconds: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
71
71
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
72
72
|
}, "strip", z.ZodTypeAny, {
|
|
73
|
-
status: Status;
|
|
74
|
-
is_enabled: YesNo;
|
|
75
|
-
description: string;
|
|
76
|
-
organisation_ids: string[];
|
|
77
|
-
vendor_name: string;
|
|
78
73
|
api_name: string;
|
|
74
|
+
vendor_name: string;
|
|
75
|
+
description: string;
|
|
76
|
+
is_enabled: YesNo;
|
|
79
77
|
frequency_seconds: number;
|
|
80
|
-
}, {
|
|
81
78
|
status: Status;
|
|
82
|
-
|
|
79
|
+
organisation_ids: string[];
|
|
80
|
+
}, {
|
|
83
81
|
api_name: string;
|
|
84
|
-
|
|
82
|
+
vendor_name: string;
|
|
83
|
+
status: Status;
|
|
85
84
|
description?: string | undefined;
|
|
86
|
-
|
|
85
|
+
is_enabled?: YesNo | undefined;
|
|
87
86
|
frequency_seconds?: unknown;
|
|
87
|
+
organisation_ids?: string[] | undefined;
|
|
88
88
|
}>;
|
|
89
89
|
type ApiDataSyncManagementDTO = z.infer<typeof ApiDataSyncManagementSchema>;
|
|
90
90
|
declare const ApiDataSyncManagementQuerySchema: z.ZodObject<{
|
|
@@ -121,8 +121,8 @@ declare const ApiDataSyncManagementQuerySchema: z.ZodObject<{
|
|
|
121
121
|
api_data_sync_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
122
122
|
is_enabled: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof YesNo>, "many">>>;
|
|
123
123
|
}, "strip", z.ZodTypeAny, {
|
|
124
|
-
status: Status[];
|
|
125
124
|
is_enabled: YesNo[];
|
|
125
|
+
status: Status[];
|
|
126
126
|
search: string;
|
|
127
127
|
paging: PAGING;
|
|
128
128
|
page_count: number;
|
|
@@ -147,8 +147,8 @@ declare const ApiDataSyncManagementQuerySchema: z.ZodObject<{
|
|
|
147
147
|
}, {
|
|
148
148
|
date_format_id: string;
|
|
149
149
|
time_zone_id: string;
|
|
150
|
-
status?: Status[] | undefined;
|
|
151
150
|
is_enabled?: YesNo[] | undefined;
|
|
151
|
+
status?: Status[] | undefined;
|
|
152
152
|
search?: string | undefined;
|
|
153
153
|
paging?: PAGING | undefined;
|
|
154
154
|
page_count?: unknown;
|
|
@@ -206,8 +206,8 @@ declare const ApiDataSyncRunLogQuerySchema: z.ZodObject<{
|
|
|
206
206
|
run_type: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof APISyncRunType>, "many">>>;
|
|
207
207
|
run_status: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof YesNo>, "many">>>;
|
|
208
208
|
}, "strip", z.ZodTypeAny, {
|
|
209
|
-
run_type: APISyncRunType[];
|
|
210
209
|
status: Status[];
|
|
210
|
+
run_status: YesNo[];
|
|
211
211
|
search: string;
|
|
212
212
|
paging: PAGING;
|
|
213
213
|
page_count: number;
|
|
@@ -228,14 +228,14 @@ declare const ApiDataSyncRunLogQuerySchema: z.ZodObject<{
|
|
|
228
228
|
include_master_data: YesNo;
|
|
229
229
|
date_format_id: string;
|
|
230
230
|
time_zone_id: string;
|
|
231
|
-
|
|
231
|
+
run_type: APISyncRunType[];
|
|
232
232
|
api_data_sync_ids: string[];
|
|
233
233
|
api_data_sync_run_log_ids: string[];
|
|
234
234
|
}, {
|
|
235
235
|
date_format_id: string;
|
|
236
236
|
time_zone_id: string;
|
|
237
|
-
run_type?: APISyncRunType[] | undefined;
|
|
238
237
|
status?: Status[] | undefined;
|
|
238
|
+
run_status?: YesNo[] | undefined;
|
|
239
239
|
search?: string | undefined;
|
|
240
240
|
paging?: PAGING | undefined;
|
|
241
241
|
page_count?: unknown;
|
|
@@ -254,7 +254,7 @@ declare const ApiDataSyncRunLogQuerySchema: z.ZodObject<{
|
|
|
254
254
|
direction: OrderBy;
|
|
255
255
|
}[] | undefined;
|
|
256
256
|
include_master_data?: YesNo | undefined;
|
|
257
|
-
|
|
257
|
+
run_type?: APISyncRunType[] | undefined;
|
|
258
258
|
api_data_sync_ids?: string[] | undefined;
|
|
259
259
|
api_data_sync_run_log_ids?: string[] | undefined;
|
|
260
260
|
}>;
|
|
@@ -36,8 +36,10 @@ interface FuelConsumptionMonthly extends Record<string, unknown> {
|
|
|
36
36
|
'29': FuelConsumptionDailyData;
|
|
37
37
|
'30': FuelConsumptionDailyData;
|
|
38
38
|
'31': FuelConsumptionDailyData;
|
|
39
|
+
org_id: string;
|
|
39
40
|
v_id: string;
|
|
40
41
|
vn_f: string;
|
|
42
|
+
vt: string;
|
|
41
43
|
d_id: string;
|
|
42
44
|
dr_f?: string;
|
|
43
45
|
dr_url?: string;
|
|
@@ -36,13 +36,14 @@ declare const MultipleVehicleReportSchema: z.ZodObject<{
|
|
|
36
36
|
vehicle_summary: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof YesNo>>>;
|
|
37
37
|
driver_summary: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof YesNo>>>;
|
|
38
38
|
}, "strip", z.ZodTypeAny, {
|
|
39
|
+
night_driving: NightDriving;
|
|
39
40
|
search: string;
|
|
40
41
|
paging: PAGING;
|
|
41
42
|
page_count: number;
|
|
42
43
|
page_index: number;
|
|
43
|
-
login_from: LoginFrom;
|
|
44
44
|
date_format_id: string;
|
|
45
45
|
time_zone_id: string;
|
|
46
|
+
login_from: LoginFrom;
|
|
46
47
|
organisation_id: string;
|
|
47
48
|
db_instance: string;
|
|
48
49
|
db_group: string;
|
|
@@ -50,7 +51,6 @@ declare const MultipleVehicleReportSchema: z.ZodObject<{
|
|
|
50
51
|
from_date: string;
|
|
51
52
|
to_date: string;
|
|
52
53
|
time_slot: TimeSlot;
|
|
53
|
-
night_driving: NightDriving;
|
|
54
54
|
over_speed: OverSpeed;
|
|
55
55
|
utilization_km: number;
|
|
56
56
|
raw_data: YesNo;
|
|
@@ -58,21 +58,21 @@ declare const MultipleVehicleReportSchema: z.ZodObject<{
|
|
|
58
58
|
vehicle_summary: YesNo;
|
|
59
59
|
driver_summary: YesNo;
|
|
60
60
|
}, {
|
|
61
|
-
login_from: LoginFrom;
|
|
62
61
|
date_format_id: string;
|
|
63
62
|
time_zone_id: string;
|
|
63
|
+
login_from: LoginFrom;
|
|
64
64
|
organisation_id: string;
|
|
65
65
|
db_instance: string;
|
|
66
66
|
db_group: string;
|
|
67
67
|
from_date: string;
|
|
68
68
|
to_date: string;
|
|
69
|
+
night_driving?: NightDriving | undefined;
|
|
69
70
|
search?: string | undefined;
|
|
70
71
|
paging?: PAGING | undefined;
|
|
71
72
|
page_count?: unknown;
|
|
72
73
|
page_index?: unknown;
|
|
73
74
|
vehicle_ids?: string[] | undefined;
|
|
74
75
|
time_slot?: TimeSlot | undefined;
|
|
75
|
-
night_driving?: NightDriving | undefined;
|
|
76
76
|
over_speed?: OverSpeed | undefined;
|
|
77
77
|
utilization_km?: unknown;
|
|
78
78
|
raw_data?: YesNo | undefined;
|
|
@@ -105,20 +105,20 @@ declare const MultipleDriverReportSchema: z.ZodObject<{
|
|
|
105
105
|
vehicle_summary: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof YesNo>>>;
|
|
106
106
|
driver_summary: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof YesNo>>>;
|
|
107
107
|
}, "strip", z.ZodTypeAny, {
|
|
108
|
+
night_driving: NightDriving;
|
|
108
109
|
search: string;
|
|
109
110
|
paging: PAGING;
|
|
110
111
|
page_count: number;
|
|
111
112
|
page_index: number;
|
|
112
|
-
login_from: LoginFrom;
|
|
113
113
|
date_format_id: string;
|
|
114
114
|
time_zone_id: string;
|
|
115
|
+
login_from: LoginFrom;
|
|
115
116
|
organisation_id: string;
|
|
116
117
|
db_instance: string;
|
|
117
118
|
db_group: string;
|
|
118
119
|
from_date: string;
|
|
119
120
|
to_date: string;
|
|
120
121
|
time_slot: TimeSlot;
|
|
121
|
-
night_driving: NightDriving;
|
|
122
122
|
over_speed: OverSpeed;
|
|
123
123
|
utilization_km: number;
|
|
124
124
|
raw_data: YesNo;
|
|
@@ -127,20 +127,20 @@ declare const MultipleDriverReportSchema: z.ZodObject<{
|
|
|
127
127
|
driver_summary: YesNo;
|
|
128
128
|
driver_ids: string[];
|
|
129
129
|
}, {
|
|
130
|
-
login_from: LoginFrom;
|
|
131
130
|
date_format_id: string;
|
|
132
131
|
time_zone_id: string;
|
|
132
|
+
login_from: LoginFrom;
|
|
133
133
|
organisation_id: string;
|
|
134
134
|
db_instance: string;
|
|
135
135
|
db_group: string;
|
|
136
136
|
from_date: string;
|
|
137
137
|
to_date: string;
|
|
138
|
+
night_driving?: NightDriving | undefined;
|
|
138
139
|
search?: string | undefined;
|
|
139
140
|
paging?: PAGING | undefined;
|
|
140
141
|
page_count?: unknown;
|
|
141
142
|
page_index?: unknown;
|
|
142
143
|
time_slot?: TimeSlot | undefined;
|
|
143
|
-
night_driving?: NightDriving | undefined;
|
|
144
144
|
over_speed?: OverSpeed | undefined;
|
|
145
145
|
utilization_km?: unknown;
|
|
146
146
|
raw_data?: YesNo | undefined;
|
|
@@ -173,9 +173,9 @@ declare const SimpleReportSchema: z.ZodObject<{
|
|
|
173
173
|
paging: PAGING;
|
|
174
174
|
page_count: number;
|
|
175
175
|
page_index: number;
|
|
176
|
-
login_from: LoginFrom;
|
|
177
176
|
date_format_id: string;
|
|
178
177
|
time_zone_id: string;
|
|
178
|
+
login_from: LoginFrom;
|
|
179
179
|
organisation_id: string;
|
|
180
180
|
db_instance: string;
|
|
181
181
|
db_group: string;
|
|
@@ -186,9 +186,9 @@ declare const SimpleReportSchema: z.ZodObject<{
|
|
|
186
186
|
interval_seconds: number;
|
|
187
187
|
boolean_type: BooleanType;
|
|
188
188
|
}, {
|
|
189
|
-
login_from: LoginFrom;
|
|
190
189
|
date_format_id: string;
|
|
191
190
|
time_zone_id: string;
|
|
191
|
+
login_from: LoginFrom;
|
|
192
192
|
organisation_id: string;
|
|
193
193
|
db_instance: string;
|
|
194
194
|
db_group: string;
|
|
@@ -224,9 +224,9 @@ declare const MultipleVehicleLast24HoursReportSchema: z.ZodObject<{
|
|
|
224
224
|
paging: PAGING;
|
|
225
225
|
page_count: number;
|
|
226
226
|
page_index: number;
|
|
227
|
-
login_from: LoginFrom;
|
|
228
227
|
date_format_id: string;
|
|
229
228
|
time_zone_id: string;
|
|
229
|
+
login_from: LoginFrom;
|
|
230
230
|
organisation_id: string;
|
|
231
231
|
db_instance: string;
|
|
232
232
|
db_group: string;
|
|
@@ -234,9 +234,9 @@ declare const MultipleVehicleLast24HoursReportSchema: z.ZodObject<{
|
|
|
234
234
|
utilization_km: number;
|
|
235
235
|
is12am: Is12AM;
|
|
236
236
|
}, {
|
|
237
|
-
login_from: LoginFrom;
|
|
238
237
|
date_format_id: string;
|
|
239
238
|
time_zone_id: string;
|
|
239
|
+
login_from: LoginFrom;
|
|
240
240
|
organisation_id: string;
|
|
241
241
|
db_instance: string;
|
|
242
242
|
db_group: string;
|
|
@@ -270,9 +270,9 @@ declare const SingleVehicleReportSchema: z.ZodObject<{
|
|
|
270
270
|
paging: PAGING;
|
|
271
271
|
page_count: number;
|
|
272
272
|
page_index: number;
|
|
273
|
-
login_from: LoginFrom;
|
|
274
273
|
date_format_id: string;
|
|
275
274
|
time_zone_id: string;
|
|
275
|
+
login_from: LoginFrom;
|
|
276
276
|
organisation_id: string;
|
|
277
277
|
db_instance: string;
|
|
278
278
|
db_group: string;
|
|
@@ -281,9 +281,9 @@ declare const SingleVehicleReportSchema: z.ZodObject<{
|
|
|
281
281
|
from_date_time: string;
|
|
282
282
|
to_date_time: string;
|
|
283
283
|
}, {
|
|
284
|
-
login_from: LoginFrom;
|
|
285
284
|
date_format_id: string;
|
|
286
285
|
time_zone_id: string;
|
|
286
|
+
login_from: LoginFrom;
|
|
287
287
|
organisation_id: string;
|
|
288
288
|
db_instance: string;
|
|
289
289
|
db_group: string;
|
|
@@ -315,17 +315,17 @@ declare const VehicleDashboardSummaryQuerySchema: z.ZodObject<{
|
|
|
315
315
|
paging: PAGING;
|
|
316
316
|
page_count: number;
|
|
317
317
|
page_index: number;
|
|
318
|
-
login_from: LoginFrom;
|
|
319
318
|
date_format_id: string;
|
|
320
319
|
time_zone_id: string;
|
|
320
|
+
login_from: LoginFrom;
|
|
321
321
|
organisation_id: string;
|
|
322
322
|
db_instance: string;
|
|
323
323
|
db_group: string;
|
|
324
324
|
vehicle_id: string;
|
|
325
325
|
}, {
|
|
326
|
-
login_from: LoginFrom;
|
|
327
326
|
date_format_id: string;
|
|
328
327
|
time_zone_id: string;
|
|
328
|
+
login_from: LoginFrom;
|
|
329
329
|
organisation_id: string;
|
|
330
330
|
db_instance: string;
|
|
331
331
|
db_group: string;
|
|
@@ -362,9 +362,9 @@ declare const AlertReportSchema: z.ZodObject<{
|
|
|
362
362
|
paging: PAGING;
|
|
363
363
|
page_count: number;
|
|
364
364
|
page_index: number;
|
|
365
|
-
login_from: LoginFrom;
|
|
366
365
|
date_format_id: string;
|
|
367
366
|
time_zone_id: string;
|
|
367
|
+
login_from: LoginFrom;
|
|
368
368
|
organisation_id: string;
|
|
369
369
|
db_instance: string;
|
|
370
370
|
db_group: string;
|
|
@@ -378,9 +378,9 @@ declare const AlertReportSchema: z.ZodObject<{
|
|
|
378
378
|
alert_types: AlertType[];
|
|
379
379
|
alert_sub_types: AlertSubType[];
|
|
380
380
|
}, {
|
|
381
|
-
login_from: LoginFrom;
|
|
382
381
|
date_format_id: string;
|
|
383
382
|
time_zone_id: string;
|
|
383
|
+
login_from: LoginFrom;
|
|
384
384
|
organisation_id: string;
|
|
385
385
|
db_instance: string;
|
|
386
386
|
db_group: string;
|
|
@@ -31,9 +31,8 @@ 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
|
-
email: string;
|
|
35
|
-
status: Status;
|
|
36
34
|
mobile_number: string;
|
|
35
|
+
email: string;
|
|
37
36
|
facebook_link: string;
|
|
38
37
|
twitter_link: string;
|
|
39
38
|
instagram_link: string;
|
|
@@ -42,10 +41,11 @@ declare const ContactUsDetailSchema: z.ZodObject<{
|
|
|
42
41
|
pinterest_link: string;
|
|
43
42
|
whats_app_chat_url: string;
|
|
44
43
|
telegram_chat_url: string;
|
|
44
|
+
status: Status;
|
|
45
45
|
}, {
|
|
46
46
|
status: Status;
|
|
47
|
-
email?: string | undefined;
|
|
48
47
|
mobile_number?: string | undefined;
|
|
48
|
+
email?: string | undefined;
|
|
49
49
|
facebook_link?: string | undefined;
|
|
50
50
|
twitter_link?: string | undefined;
|
|
51
51
|
instagram_link?: string | undefined;
|
|
@@ -25,23 +25,23 @@ declare const RequestDemoSchema: z.ZodObject<{
|
|
|
25
25
|
admin_view: z.ZodType<YesNo, z.ZodTypeDef, YesNo>;
|
|
26
26
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
27
27
|
}, "strip", z.ZodTypeAny, {
|
|
28
|
-
name: string;
|
|
29
|
-
mobile: string;
|
|
30
28
|
email: string;
|
|
29
|
+
status: Status;
|
|
31
30
|
message: string;
|
|
32
|
-
|
|
31
|
+
name: string;
|
|
32
|
+
mobile: string;
|
|
33
33
|
admin_message: string;
|
|
34
|
+
city: string;
|
|
34
35
|
admin_view: YesNo;
|
|
35
|
-
status: Status;
|
|
36
36
|
}, {
|
|
37
|
+
status: Status;
|
|
37
38
|
name: string;
|
|
38
39
|
admin_view: YesNo;
|
|
39
|
-
status: Status;
|
|
40
|
-
mobile?: string | undefined;
|
|
41
40
|
email?: string | undefined;
|
|
42
41
|
message?: string | undefined;
|
|
43
|
-
|
|
42
|
+
mobile?: string | undefined;
|
|
44
43
|
admin_message?: string | undefined;
|
|
44
|
+
city?: string | undefined;
|
|
45
45
|
}>;
|
|
46
46
|
type RequestDemoDTO = z.infer<typeof RequestDemoSchema>;
|
|
47
47
|
declare const RequestDemoQuerySchema: z.ZodObject<{
|
|
@@ -78,7 +78,6 @@ declare const RequestDemoQuerySchema: z.ZodObject<{
|
|
|
78
78
|
request_demo_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
79
79
|
admin_view: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof YesNo>, "many">>>;
|
|
80
80
|
}, "strip", z.ZodTypeAny, {
|
|
81
|
-
admin_view: YesNo[];
|
|
82
81
|
status: Status[];
|
|
83
82
|
search: string;
|
|
84
83
|
paging: PAGING;
|
|
@@ -100,11 +99,11 @@ declare const RequestDemoQuerySchema: z.ZodObject<{
|
|
|
100
99
|
include_master_data: YesNo;
|
|
101
100
|
date_format_id: string;
|
|
102
101
|
time_zone_id: string;
|
|
102
|
+
admin_view: YesNo[];
|
|
103
103
|
request_demo_ids: string[];
|
|
104
104
|
}, {
|
|
105
105
|
date_format_id: string;
|
|
106
106
|
time_zone_id: string;
|
|
107
|
-
admin_view?: YesNo[] | undefined;
|
|
108
107
|
status?: Status[] | undefined;
|
|
109
108
|
search?: string | undefined;
|
|
110
109
|
paging?: PAGING | undefined;
|
|
@@ -124,6 +123,7 @@ declare const RequestDemoQuerySchema: z.ZodObject<{
|
|
|
124
123
|
direction: OrderBy;
|
|
125
124
|
}[] | undefined;
|
|
126
125
|
include_master_data?: YesNo | undefined;
|
|
126
|
+
admin_view?: YesNo[] | undefined;
|
|
127
127
|
request_demo_ids?: string[] | undefined;
|
|
128
128
|
}>;
|
|
129
129
|
type RequestDemoQueryDTO = z.infer<typeof RequestDemoQuerySchema>;
|
|
@@ -134,16 +134,16 @@ declare const RequestDemoCreateSchema: z.ZodObject<{
|
|
|
134
134
|
message: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
135
135
|
city: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
|
|
136
136
|
}, "strip", z.ZodTypeAny, {
|
|
137
|
-
name: string;
|
|
138
|
-
mobile: string;
|
|
139
137
|
email: string;
|
|
140
138
|
message: string;
|
|
139
|
+
name: string;
|
|
140
|
+
mobile: string;
|
|
141
141
|
city: string;
|
|
142
142
|
}, {
|
|
143
143
|
name: string;
|
|
144
|
-
mobile?: string | undefined;
|
|
145
144
|
email?: string | undefined;
|
|
146
145
|
message?: string | undefined;
|
|
146
|
+
mobile?: string | undefined;
|
|
147
147
|
city?: string | undefined;
|
|
148
148
|
}>;
|
|
149
149
|
type RequestDemoCreateDTO = z.infer<typeof RequestDemoCreateSchema>;
|