vms-nest-prisma-api-document 1013.0.0 → 1014.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/core/cronjobs.service.d.ts +12 -12
- package/dist/services/core/external_api.service.d.ts +10 -10
- package/dist/services/master/fleet/master_fleet_breakdown_type_service.js +1 -1
- package/dist/services/master/fleet/master_fleet_service_part_service.js +1 -1
- package/package.json +1 -1
|
@@ -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>;
|
|
@@ -61,26 +61,26 @@ declare const ApiDataShareManagementSchema: z.ZodObject<{
|
|
|
61
61
|
allowed_ips: z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], string[]>;
|
|
62
62
|
status: z.ZodType<Status, z.ZodTypeDef, Status>;
|
|
63
63
|
}, "strip", z.ZodTypeAny, {
|
|
64
|
+
status: Status;
|
|
65
|
+
is_enabled: YesNo;
|
|
64
66
|
api_name: string;
|
|
65
67
|
vendor_name: string;
|
|
66
68
|
purpose: string;
|
|
67
69
|
description: string;
|
|
68
|
-
is_enabled: YesNo;
|
|
69
70
|
auth_type: APIAuthType;
|
|
70
71
|
api_key: string;
|
|
71
72
|
username: string;
|
|
72
73
|
password: string;
|
|
73
74
|
rate_limit_rpm: number;
|
|
74
75
|
allowed_ips: string[];
|
|
75
|
-
status: Status;
|
|
76
76
|
}, {
|
|
77
|
+
status: Status;
|
|
77
78
|
api_name: string;
|
|
78
79
|
vendor_name: string;
|
|
79
80
|
allowed_ips: string[];
|
|
80
|
-
|
|
81
|
+
is_enabled?: YesNo | undefined;
|
|
81
82
|
purpose?: string | undefined;
|
|
82
83
|
description?: string | undefined;
|
|
83
|
-
is_enabled?: YesNo | undefined;
|
|
84
84
|
auth_type?: APIAuthType | undefined;
|
|
85
85
|
api_key?: string | undefined;
|
|
86
86
|
username?: string | undefined;
|
|
@@ -123,9 +123,8 @@ declare const ApiDataShareManagementQuerySchema: z.ZodObject<{
|
|
|
123
123
|
is_enabled: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof YesNo>, "many">>>;
|
|
124
124
|
auth_type: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof APIAuthType>, "many">>>;
|
|
125
125
|
}, "strip", z.ZodTypeAny, {
|
|
126
|
-
is_enabled: YesNo[];
|
|
127
|
-
auth_type: APIAuthType[];
|
|
128
126
|
status: Status[];
|
|
127
|
+
is_enabled: YesNo[];
|
|
129
128
|
search: string;
|
|
130
129
|
paging: PAGING;
|
|
131
130
|
page_count: number;
|
|
@@ -146,13 +145,13 @@ declare const ApiDataShareManagementQuerySchema: z.ZodObject<{
|
|
|
146
145
|
include_master_data: YesNo;
|
|
147
146
|
date_format_id: string;
|
|
148
147
|
time_zone_id: string;
|
|
148
|
+
auth_type: APIAuthType[];
|
|
149
149
|
api_data_share_ids: string[];
|
|
150
150
|
}, {
|
|
151
151
|
date_format_id: string;
|
|
152
152
|
time_zone_id: string;
|
|
153
|
-
is_enabled?: YesNo[] | undefined;
|
|
154
|
-
auth_type?: APIAuthType[] | undefined;
|
|
155
153
|
status?: Status[] | undefined;
|
|
154
|
+
is_enabled?: YesNo[] | undefined;
|
|
156
155
|
search?: string | undefined;
|
|
157
156
|
paging?: PAGING | undefined;
|
|
158
157
|
page_count?: unknown;
|
|
@@ -171,6 +170,7 @@ declare const ApiDataShareManagementQuerySchema: z.ZodObject<{
|
|
|
171
170
|
direction: OrderBy;
|
|
172
171
|
}[] | undefined;
|
|
173
172
|
include_master_data?: YesNo | undefined;
|
|
173
|
+
auth_type?: APIAuthType[] | undefined;
|
|
174
174
|
api_data_share_ids?: string[] | undefined;
|
|
175
175
|
}>;
|
|
176
176
|
type ApiDataShareManagementQueryDTO = z.infer<typeof ApiDataShareManagementQuerySchema>;
|
|
@@ -210,7 +210,6 @@ declare const ApiDataShareHitLogQuerySchema: z.ZodObject<{
|
|
|
210
210
|
is_auth_success: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof YesNo>, "many">>>;
|
|
211
211
|
}, "strip", z.ZodTypeAny, {
|
|
212
212
|
status: Status[];
|
|
213
|
-
is_auth_success: YesNo[];
|
|
214
213
|
search: string;
|
|
215
214
|
paging: PAGING;
|
|
216
215
|
page_count: number;
|
|
@@ -231,13 +230,13 @@ declare const ApiDataShareHitLogQuerySchema: z.ZodObject<{
|
|
|
231
230
|
include_master_data: YesNo;
|
|
232
231
|
date_format_id: string;
|
|
233
232
|
time_zone_id: string;
|
|
233
|
+
is_auth_success: YesNo[];
|
|
234
234
|
api_data_share_ids: string[];
|
|
235
235
|
api_data_share_hit_log_ids: string[];
|
|
236
236
|
}, {
|
|
237
237
|
date_format_id: string;
|
|
238
238
|
time_zone_id: string;
|
|
239
239
|
status?: Status[] | undefined;
|
|
240
|
-
is_auth_success?: YesNo[] | undefined;
|
|
241
240
|
search?: string | undefined;
|
|
242
241
|
paging?: PAGING | undefined;
|
|
243
242
|
page_count?: unknown;
|
|
@@ -256,6 +255,7 @@ declare const ApiDataShareHitLogQuerySchema: z.ZodObject<{
|
|
|
256
255
|
direction: OrderBy;
|
|
257
256
|
}[] | undefined;
|
|
258
257
|
include_master_data?: YesNo | undefined;
|
|
258
|
+
is_auth_success?: YesNo[] | undefined;
|
|
259
259
|
api_data_share_ids?: string[] | undefined;
|
|
260
260
|
api_data_share_hit_log_ids?: string[] | undefined;
|
|
261
261
|
}>;
|
|
@@ -247,7 +247,7 @@ var MongoBaseQuerySchema = z2.object({
|
|
|
247
247
|
});
|
|
248
248
|
|
|
249
249
|
// src/services/master/fleet/master_fleet_breakdown_type_service.ts
|
|
250
|
-
var URL = "breakdown_type";
|
|
250
|
+
var URL = "master/fleet/breakdown_type";
|
|
251
251
|
var ENDPOINTS = {
|
|
252
252
|
// MasterFleetBreakdownType APIs
|
|
253
253
|
find: `${URL}/search`,
|
|
@@ -261,7 +261,7 @@ var MongoBaseQuerySchema = z2.object({
|
|
|
261
261
|
});
|
|
262
262
|
|
|
263
263
|
// src/services/master/fleet/master_fleet_service_part_service.ts
|
|
264
|
-
var URL = "service_part";
|
|
264
|
+
var URL = "master/fleet/service_part";
|
|
265
265
|
var ENDPOINTS = {
|
|
266
266
|
// MasterFleetServicePart APIs
|
|
267
267
|
find: `${URL}/search`,
|
package/package.json
CHANGED