vms-nest-api-document 45.0.0 → 46.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/user_login_analytics_service.d.ts +3 -3
- package/dist/services/account/analytics/user_page_analytics_service.d.ts +1 -1
- 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/main/vehicle/childs/shared_vehicles.js +1 -1
- 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
|
@@ -22,15 +22,15 @@ declare const UserLoginAnalyticsSchema: z.ZodObject<{
|
|
|
22
22
|
}, "strip", z.ZodTypeAny, {
|
|
23
23
|
user_id: string;
|
|
24
24
|
organisation_id: string;
|
|
25
|
-
country_id: string;
|
|
26
25
|
login_from: LoginFrom;
|
|
26
|
+
country_id: string;
|
|
27
27
|
os_details: Record<string, any>;
|
|
28
28
|
ip_details: Record<string, any>;
|
|
29
29
|
}, {
|
|
30
30
|
user_id: string;
|
|
31
31
|
organisation_id: string;
|
|
32
|
-
country_id: string;
|
|
33
32
|
login_from: LoginFrom;
|
|
33
|
+
country_id: string;
|
|
34
34
|
os_details?: Record<string, any> | undefined;
|
|
35
35
|
ip_details?: Record<string, any> | undefined;
|
|
36
36
|
}>;
|
|
@@ -48,11 +48,11 @@ declare const UserLoginAnalyticsQuerySchema: z.ZodObject<{
|
|
|
48
48
|
organisation_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
49
49
|
country_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
50
50
|
}, "strip", z.ZodTypeAny, {
|
|
51
|
-
login_from: LoginFrom;
|
|
52
51
|
search: string;
|
|
53
52
|
paging: PAGING;
|
|
54
53
|
page_count: number;
|
|
55
54
|
page_index: number;
|
|
55
|
+
login_from: LoginFrom;
|
|
56
56
|
date_format_id: string;
|
|
57
57
|
time_zone_id: string;
|
|
58
58
|
user_ids: string[];
|
|
@@ -43,11 +43,11 @@ declare const UserPageAnalyticsQuerySchema: z.ZodObject<{
|
|
|
43
43
|
user_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
44
44
|
organisation_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
45
45
|
}, "strip", z.ZodTypeAny, {
|
|
46
|
-
login_from: LoginFrom;
|
|
47
46
|
search: string;
|
|
48
47
|
paging: PAGING;
|
|
49
48
|
page_count: number;
|
|
50
49
|
page_index: number;
|
|
50
|
+
login_from: LoginFrom;
|
|
51
51
|
date_format_id: string;
|
|
52
52
|
time_zone_id: string;
|
|
53
53
|
user_ids: string[];
|
|
@@ -86,8 +86,10 @@ 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
|
-
|
|
89
|
+
run_type: RunType[];
|
|
90
|
+
execution_status: ExecutionStatus[];
|
|
90
91
|
status: Status[];
|
|
92
|
+
is_enabled: YesNo[];
|
|
91
93
|
search: string;
|
|
92
94
|
paging: PAGING;
|
|
93
95
|
page_count: number;
|
|
@@ -108,13 +110,13 @@ declare const CronMonitorQuerySchema: z.ZodObject<{
|
|
|
108
110
|
include_master_data: YesNo;
|
|
109
111
|
date_format_id: string;
|
|
110
112
|
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
|
-
|
|
116
|
+
run_type?: RunType[] | undefined;
|
|
117
|
+
execution_status?: ExecutionStatus[] | undefined;
|
|
117
118
|
status?: Status[] | undefined;
|
|
119
|
+
is_enabled?: YesNo[] | undefined;
|
|
118
120
|
search?: string | undefined;
|
|
119
121
|
paging?: PAGING | undefined;
|
|
120
122
|
page_count?: unknown;
|
|
@@ -133,8 +135,6 @@ declare const CronMonitorQuerySchema: z.ZodObject<{
|
|
|
133
135
|
direction: OrderBy;
|
|
134
136
|
}[] | undefined;
|
|
135
137
|
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,6 +173,9 @@ 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[];
|
|
176
179
|
status: Status[];
|
|
177
180
|
search: string;
|
|
178
181
|
paging: PAGING;
|
|
@@ -194,13 +197,13 @@ declare const CronJobLogQuerySchema: z.ZodObject<{
|
|
|
194
197
|
include_master_data: YesNo;
|
|
195
198
|
date_format_id: string;
|
|
196
199
|
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;
|
|
204
207
|
status?: Status[] | undefined;
|
|
205
208
|
search?: string | undefined;
|
|
206
209
|
paging?: PAGING | undefined;
|
|
@@ -220,9 +223,6 @@ declare const CronJobLogQuerySchema: z.ZodObject<{
|
|
|
220
223
|
direction: OrderBy;
|
|
221
224
|
}[] | undefined;
|
|
222
225
|
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
|
-
api_name: string;
|
|
89
|
-
vendor_name: string;
|
|
90
|
-
description: string;
|
|
91
|
-
is_enabled: YesNo;
|
|
92
|
-
all_vehicles: YesNo;
|
|
93
|
-
frequency_seconds: number;
|
|
94
88
|
status: Status;
|
|
89
|
+
is_enabled: YesNo;
|
|
90
|
+
description: string;
|
|
95
91
|
organisation_ids: string[];
|
|
96
92
|
vehicle_ids: string[];
|
|
97
|
-
}, {
|
|
98
|
-
api_name: string;
|
|
99
93
|
vendor_name: string;
|
|
100
94
|
all_vehicles: YesNo;
|
|
95
|
+
api_name: string;
|
|
96
|
+
frequency_seconds: number;
|
|
97
|
+
}, {
|
|
101
98
|
status: Status;
|
|
102
|
-
|
|
99
|
+
vendor_name: string;
|
|
100
|
+
all_vehicles: YesNo;
|
|
101
|
+
api_name: string;
|
|
103
102
|
is_enabled?: YesNo | undefined;
|
|
104
|
-
|
|
103
|
+
description?: string | undefined;
|
|
105
104
|
organisation_ids?: string[] | undefined;
|
|
106
105
|
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
|
-
is_enabled: YesNo[];
|
|
144
143
|
status: Status[];
|
|
144
|
+
is_enabled: YesNo[];
|
|
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
|
-
is_enabled?: YesNo[] | undefined;
|
|
170
169
|
status?: Status[] | undefined;
|
|
170
|
+
is_enabled?: YesNo[] | undefined;
|
|
171
171
|
search?: string | undefined;
|
|
172
172
|
paging?: PAGING | undefined;
|
|
173
173
|
page_count?: unknown;
|
|
@@ -225,7 +225,6 @@ 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[];
|
|
229
228
|
search: string;
|
|
230
229
|
paging: PAGING;
|
|
231
230
|
page_count: number;
|
|
@@ -246,13 +245,13 @@ declare const ApiDataPushHitLogQuerySchema: z.ZodObject<{
|
|
|
246
245
|
include_master_data: YesNo;
|
|
247
246
|
date_format_id: string;
|
|
248
247
|
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;
|
|
256
255
|
search?: string | undefined;
|
|
257
256
|
paging?: PAGING | undefined;
|
|
258
257
|
page_count?: unknown;
|
|
@@ -271,6 +270,7 @@ declare const ApiDataPushHitLogQuerySchema: z.ZodObject<{
|
|
|
271
270
|
direction: OrderBy;
|
|
272
271
|
}[] | undefined;
|
|
273
272
|
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
|
-
api_name: string;
|
|
99
|
-
vendor_name: string;
|
|
100
|
-
description: string;
|
|
101
|
-
is_enabled: YesNo;
|
|
102
|
-
all_vehicles: YesNo;
|
|
103
98
|
status: Status;
|
|
99
|
+
is_enabled: YesNo;
|
|
100
|
+
description: string;
|
|
104
101
|
organisation_ids: string[];
|
|
105
102
|
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
|
+
status: Status;
|
|
114
114
|
vendor_name: string;
|
|
115
115
|
all_vehicles: YesNo;
|
|
116
|
-
|
|
116
|
+
api_name: string;
|
|
117
117
|
api_keys: string[];
|
|
118
118
|
usernames: string[];
|
|
119
119
|
passwords: string[];
|
|
120
120
|
allowed_ips: string[];
|
|
121
|
-
description?: string | undefined;
|
|
122
121
|
is_enabled?: YesNo | undefined;
|
|
122
|
+
description?: string | 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
|
-
is_enabled: YesNo[];
|
|
165
164
|
status: Status[];
|
|
165
|
+
is_enabled: YesNo[];
|
|
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
|
-
is_enabled?: YesNo[] | undefined;
|
|
192
191
|
status?: Status[] | undefined;
|
|
192
|
+
is_enabled?: YesNo[] | 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
|
-
api_name: string;
|
|
74
|
-
vendor_name: string;
|
|
75
|
-
description: string;
|
|
76
|
-
is_enabled: YesNo;
|
|
77
|
-
frequency_seconds: number;
|
|
78
73
|
status: Status;
|
|
74
|
+
is_enabled: YesNo;
|
|
75
|
+
description: string;
|
|
79
76
|
organisation_ids: string[];
|
|
80
|
-
}, {
|
|
81
|
-
api_name: string;
|
|
82
77
|
vendor_name: string;
|
|
78
|
+
api_name: string;
|
|
79
|
+
frequency_seconds: number;
|
|
80
|
+
}, {
|
|
83
81
|
status: Status;
|
|
84
|
-
|
|
82
|
+
vendor_name: string;
|
|
83
|
+
api_name: string;
|
|
85
84
|
is_enabled?: YesNo | undefined;
|
|
86
|
-
|
|
85
|
+
description?: string | undefined;
|
|
87
86
|
organisation_ids?: string[] | undefined;
|
|
87
|
+
frequency_seconds?: unknown;
|
|
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
|
-
is_enabled: YesNo[];
|
|
125
124
|
status: Status[];
|
|
125
|
+
is_enabled: YesNo[];
|
|
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
|
-
is_enabled?: YesNo[] | undefined;
|
|
151
150
|
status?: Status[] | undefined;
|
|
151
|
+
is_enabled?: YesNo[] | 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[];
|
|
209
210
|
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_status: YesNo[];
|
|
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;
|
|
237
238
|
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_status?: YesNo[] | undefined;
|
|
258
258
|
api_data_sync_ids?: string[] | undefined;
|
|
259
259
|
api_data_sync_run_log_ids?: string[] | undefined;
|
|
260
260
|
}>;
|
|
@@ -239,7 +239,7 @@ var MongoBaseQuerySchema = z2.object({
|
|
|
239
239
|
});
|
|
240
240
|
|
|
241
241
|
// src/services/main/vehicle/childs/shared_vehicles.ts
|
|
242
|
-
var URL = "main/
|
|
242
|
+
var URL = "main/shared_vehicles";
|
|
243
243
|
var ENDPOINTS = {
|
|
244
244
|
// SharedVehicles APIs
|
|
245
245
|
create_update: URL,
|
|
@@ -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>;
|