@dakkitor/api-contracts 1.1.11 → 1.1.12
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/actives/actives.contract.d.ts +75 -76
- package/dist/actives/actives.contract.d.ts.map +1 -1
- package/dist/actives/actives.contract.js +13 -13
- package/dist/agent-client-links/agent-client-links.contract.d.ts +320 -316
- package/dist/agent-client-links/agent-client-links.contract.d.ts.map +1 -1
- package/dist/agent-client-links/agent-client-links.contract.js +6 -6
- package/dist/auth/auth.contract.d.ts +2 -2
- package/dist/bookings/bookings.contract.d.ts +328 -328
- package/dist/call-history/call-history.contract.d.ts +205 -205
- package/dist/client-contacts/client-contacts.contract.d.ts +334 -332
- package/dist/client-contacts/client-contacts.contract.d.ts.map +1 -1
- package/dist/client-contacts/client-contacts.contract.js +3 -3
- package/dist/clients/clients.contract.d.ts +196 -196
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +404 -404
- package/dist/collaborations/collaborations.contract.d.ts +379 -379
- package/dist/common/error-schemas.d.ts +7 -7
- package/dist/common/error-schemas.d.ts.map +1 -1
- package/dist/companies/companies.contract.d.ts +214 -214
- package/dist/cron-executions/cron-executions.contract.d.ts +206 -206
- package/dist/curated-workers/curated-workers.contract.d.ts +213 -213
- package/dist/dashboards/agent-daily-metrics.contract.d.ts +124 -124
- package/dist/files/files.contract.d.ts +216 -216
- package/dist/health/health.contract.d.ts +22 -22
- package/dist/index.d.ts +971 -971
- package/dist/jobs/jobs.contract.d.ts +210 -210
- package/dist/lead-assignments/lead-assignments.contract.d.ts +248 -248
- package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +40 -40
- package/dist/lead-distribution/lead-distribution-config.contract.d.ts +153 -153
- package/dist/leads/leads.contract.d.ts +246 -246
- package/dist/locations/locations.contract.d.ts +143 -143
- package/dist/postcodes/postcodes.contract.d.ts +56 -56
- package/dist/qualifications/qualifications.contract.d.ts +248 -248
- package/dist/trades/trades.contract.d.ts +156 -156
- package/dist/users/users.contract.d.ts +68 -64
- package/dist/users/users.contract.d.ts.map +1 -1
- package/dist/users/users.contract.js +8 -8
- package/dist/workers/workers.contract.d.ts +226 -226
- package/package.json +1 -1
|
@@ -9,14 +9,14 @@ export declare const CompanySchema: z.ZodObject<{
|
|
|
9
9
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
10
10
|
}, "strip", z.ZodTypeAny, {
|
|
11
11
|
id: string;
|
|
12
|
+
name: string;
|
|
12
13
|
createdAt: string;
|
|
13
14
|
updatedAt: string;
|
|
14
|
-
name: string;
|
|
15
15
|
}, {
|
|
16
16
|
id: string;
|
|
17
|
+
name: string;
|
|
17
18
|
createdAt: string | Date;
|
|
18
19
|
updatedAt: string | Date;
|
|
19
|
-
name: string;
|
|
20
20
|
}>;
|
|
21
21
|
export declare const CreateCompanySchema: z.ZodObject<{
|
|
22
22
|
name: z.ZodString;
|
|
@@ -42,15 +42,15 @@ export declare const FilterCompanySchema: z.ZodObject<{
|
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
43
|
limit: number;
|
|
44
44
|
page: number;
|
|
45
|
-
sortBy?: "createdAt" | "updatedAt" | "name" | null | undefined;
|
|
46
|
-
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
47
45
|
name?: string | null | undefined;
|
|
46
|
+
sortBy?: "name" | "createdAt" | "updatedAt" | null | undefined;
|
|
47
|
+
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
48
48
|
}, {
|
|
49
|
+
name?: string | null | undefined;
|
|
49
50
|
limit?: number | undefined;
|
|
50
51
|
page?: number | undefined;
|
|
51
|
-
sortBy?: "
|
|
52
|
+
sortBy?: "name" | "createdAt" | "updatedAt" | null | undefined;
|
|
52
53
|
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
53
|
-
name?: string | null | undefined;
|
|
54
54
|
}>;
|
|
55
55
|
export declare const CompanyAutocompleteResponseSchema: z.ZodObject<{
|
|
56
56
|
id: z.ZodString;
|
|
@@ -80,14 +80,14 @@ export declare const CompaniesPaginatedResponseSchema: z.ZodObject<{
|
|
|
80
80
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
81
81
|
}, "strip", z.ZodTypeAny, {
|
|
82
82
|
id: string;
|
|
83
|
+
name: string;
|
|
83
84
|
createdAt: string;
|
|
84
85
|
updatedAt: string;
|
|
85
|
-
name: string;
|
|
86
86
|
}, {
|
|
87
87
|
id: string;
|
|
88
|
+
name: string;
|
|
88
89
|
createdAt: string | Date;
|
|
89
90
|
updatedAt: string | Date;
|
|
90
|
-
name: string;
|
|
91
91
|
}>, "many">;
|
|
92
92
|
totalCount: z.ZodNumber;
|
|
93
93
|
limit: z.ZodNumber;
|
|
@@ -95,26 +95,26 @@ export declare const CompaniesPaginatedResponseSchema: z.ZodObject<{
|
|
|
95
95
|
currentPage: z.ZodNumber;
|
|
96
96
|
totalPages: z.ZodNumber;
|
|
97
97
|
}, "strip", z.ZodTypeAny, {
|
|
98
|
-
limit: number;
|
|
99
98
|
items: {
|
|
100
99
|
id: string;
|
|
100
|
+
name: string;
|
|
101
101
|
createdAt: string;
|
|
102
102
|
updatedAt: string;
|
|
103
|
-
name: string;
|
|
104
103
|
}[];
|
|
105
104
|
totalCount: number;
|
|
105
|
+
limit: number;
|
|
106
106
|
skip: number;
|
|
107
107
|
currentPage: number;
|
|
108
108
|
totalPages: number;
|
|
109
109
|
}, {
|
|
110
|
-
limit: number;
|
|
111
110
|
items: {
|
|
112
111
|
id: string;
|
|
112
|
+
name: string;
|
|
113
113
|
createdAt: string | Date;
|
|
114
114
|
updatedAt: string | Date;
|
|
115
|
-
name: string;
|
|
116
115
|
}[];
|
|
117
116
|
totalCount: number;
|
|
117
|
+
limit: number;
|
|
118
118
|
skip: number;
|
|
119
119
|
currentPage: number;
|
|
120
120
|
totalPages: number;
|
|
@@ -155,19 +155,19 @@ export declare const companiesContractRouter: {
|
|
|
155
155
|
path: z.ZodString;
|
|
156
156
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
157
157
|
}, "strip", z.ZodTypeAny, {
|
|
158
|
-
code: string;
|
|
159
|
-
path: string;
|
|
160
|
-
message: string;
|
|
161
158
|
statusCode: number;
|
|
159
|
+
message: string;
|
|
160
|
+
code: string;
|
|
162
161
|
timestamp: string;
|
|
162
|
+
path: string;
|
|
163
163
|
details?: unknown;
|
|
164
164
|
correlationId?: string | undefined;
|
|
165
165
|
}, {
|
|
166
|
-
code: string;
|
|
167
|
-
path: string;
|
|
168
|
-
message: string;
|
|
169
166
|
statusCode: number;
|
|
167
|
+
message: string;
|
|
168
|
+
code: string;
|
|
170
169
|
timestamp: string;
|
|
170
|
+
path: string;
|
|
171
171
|
details?: unknown;
|
|
172
172
|
correlationId?: string | undefined;
|
|
173
173
|
}>;
|
|
@@ -180,19 +180,19 @@ export declare const companiesContractRouter: {
|
|
|
180
180
|
path: z.ZodString;
|
|
181
181
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
182
182
|
}, "strip", z.ZodTypeAny, {
|
|
183
|
-
code: string;
|
|
184
|
-
path: string;
|
|
185
|
-
message: string;
|
|
186
183
|
statusCode: number;
|
|
184
|
+
message: string;
|
|
185
|
+
code: string;
|
|
187
186
|
timestamp: string;
|
|
187
|
+
path: string;
|
|
188
188
|
details?: unknown;
|
|
189
189
|
correlationId?: string | undefined;
|
|
190
190
|
}, {
|
|
191
|
-
code: string;
|
|
192
|
-
path: string;
|
|
193
|
-
message: string;
|
|
194
191
|
statusCode: number;
|
|
192
|
+
message: string;
|
|
193
|
+
code: string;
|
|
195
194
|
timestamp: string;
|
|
195
|
+
path: string;
|
|
196
196
|
details?: unknown;
|
|
197
197
|
correlationId?: string | undefined;
|
|
198
198
|
}>;
|
|
@@ -205,19 +205,19 @@ export declare const companiesContractRouter: {
|
|
|
205
205
|
path: z.ZodString;
|
|
206
206
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
207
207
|
}, "strip", z.ZodTypeAny, {
|
|
208
|
-
code: string;
|
|
209
|
-
path: string;
|
|
210
|
-
message: string;
|
|
211
208
|
statusCode: number;
|
|
209
|
+
message: string;
|
|
210
|
+
code: string;
|
|
212
211
|
timestamp: string;
|
|
212
|
+
path: string;
|
|
213
213
|
details?: unknown;
|
|
214
214
|
correlationId?: string | undefined;
|
|
215
215
|
}, {
|
|
216
|
-
code: string;
|
|
217
|
-
path: string;
|
|
218
|
-
message: string;
|
|
219
216
|
statusCode: number;
|
|
217
|
+
message: string;
|
|
218
|
+
code: string;
|
|
220
219
|
timestamp: string;
|
|
220
|
+
path: string;
|
|
221
221
|
details?: unknown;
|
|
222
222
|
correlationId?: string | undefined;
|
|
223
223
|
}>;
|
|
@@ -230,19 +230,19 @@ export declare const companiesContractRouter: {
|
|
|
230
230
|
path: z.ZodString;
|
|
231
231
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
232
232
|
}, "strip", z.ZodTypeAny, {
|
|
233
|
-
code: string;
|
|
234
|
-
path: string;
|
|
235
|
-
message: string;
|
|
236
233
|
statusCode: number;
|
|
234
|
+
message: string;
|
|
235
|
+
code: string;
|
|
237
236
|
timestamp: string;
|
|
237
|
+
path: string;
|
|
238
238
|
details?: unknown;
|
|
239
239
|
correlationId?: string | undefined;
|
|
240
240
|
}, {
|
|
241
|
-
code: string;
|
|
242
|
-
path: string;
|
|
243
|
-
message: string;
|
|
244
241
|
statusCode: number;
|
|
242
|
+
message: string;
|
|
243
|
+
code: string;
|
|
245
244
|
timestamp: string;
|
|
245
|
+
path: string;
|
|
246
246
|
details?: unknown;
|
|
247
247
|
correlationId?: string | undefined;
|
|
248
248
|
}>;
|
|
@@ -253,14 +253,14 @@ export declare const companiesContractRouter: {
|
|
|
253
253
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
254
254
|
}, "strip", z.ZodTypeAny, {
|
|
255
255
|
id: string;
|
|
256
|
+
name: string;
|
|
256
257
|
createdAt: string;
|
|
257
258
|
updatedAt: string;
|
|
258
|
-
name: string;
|
|
259
259
|
}, {
|
|
260
260
|
id: string;
|
|
261
|
+
name: string;
|
|
261
262
|
createdAt: string | Date;
|
|
262
263
|
updatedAt: string | Date;
|
|
263
|
-
name: string;
|
|
264
264
|
}>;
|
|
265
265
|
409: z.ZodObject<{
|
|
266
266
|
statusCode: z.ZodNumber;
|
|
@@ -271,25 +271,31 @@ export declare const companiesContractRouter: {
|
|
|
271
271
|
path: z.ZodString;
|
|
272
272
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
273
273
|
}, "strip", z.ZodTypeAny, {
|
|
274
|
-
code: string;
|
|
275
|
-
path: string;
|
|
276
|
-
message: string;
|
|
277
274
|
statusCode: number;
|
|
275
|
+
message: string;
|
|
276
|
+
code: string;
|
|
278
277
|
timestamp: string;
|
|
278
|
+
path: string;
|
|
279
279
|
details?: unknown;
|
|
280
280
|
correlationId?: string | undefined;
|
|
281
281
|
}, {
|
|
282
|
-
code: string;
|
|
283
|
-
path: string;
|
|
284
|
-
message: string;
|
|
285
282
|
statusCode: number;
|
|
283
|
+
message: string;
|
|
284
|
+
code: string;
|
|
286
285
|
timestamp: string;
|
|
286
|
+
path: string;
|
|
287
287
|
details?: unknown;
|
|
288
288
|
correlationId?: string | undefined;
|
|
289
289
|
}>;
|
|
290
290
|
};
|
|
291
291
|
};
|
|
292
292
|
findAll: {
|
|
293
|
+
metadata: {
|
|
294
|
+
tags: string[];
|
|
295
|
+
openApi: {
|
|
296
|
+
operationId: string;
|
|
297
|
+
};
|
|
298
|
+
};
|
|
293
299
|
query: z.ZodObject<{
|
|
294
300
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
295
301
|
page: z.ZodDefault<z.ZodNumber>;
|
|
@@ -300,22 +306,16 @@ export declare const companiesContractRouter: {
|
|
|
300
306
|
}, "strip", z.ZodTypeAny, {
|
|
301
307
|
limit: number;
|
|
302
308
|
page: number;
|
|
303
|
-
sortBy?: "createdAt" | "updatedAt" | "name" | null | undefined;
|
|
304
|
-
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
305
309
|
name?: string | null | undefined;
|
|
310
|
+
sortBy?: "name" | "createdAt" | "updatedAt" | null | undefined;
|
|
311
|
+
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
306
312
|
}, {
|
|
313
|
+
name?: string | null | undefined;
|
|
307
314
|
limit?: number | undefined;
|
|
308
315
|
page?: number | undefined;
|
|
309
|
-
sortBy?: "
|
|
316
|
+
sortBy?: "name" | "createdAt" | "updatedAt" | null | undefined;
|
|
310
317
|
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
311
|
-
name?: string | null | undefined;
|
|
312
318
|
}>;
|
|
313
|
-
metadata: {
|
|
314
|
-
tags: string[];
|
|
315
|
-
openApi: {
|
|
316
|
-
operationId: string;
|
|
317
|
-
};
|
|
318
|
-
};
|
|
319
319
|
summary: "Get all companies";
|
|
320
320
|
method: "GET";
|
|
321
321
|
path: "/v2/companies";
|
|
@@ -329,19 +329,19 @@ export declare const companiesContractRouter: {
|
|
|
329
329
|
path: z.ZodString;
|
|
330
330
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
331
331
|
}, "strip", z.ZodTypeAny, {
|
|
332
|
-
code: string;
|
|
333
|
-
path: string;
|
|
334
|
-
message: string;
|
|
335
332
|
statusCode: number;
|
|
333
|
+
message: string;
|
|
334
|
+
code: string;
|
|
336
335
|
timestamp: string;
|
|
336
|
+
path: string;
|
|
337
337
|
details?: unknown;
|
|
338
338
|
correlationId?: string | undefined;
|
|
339
339
|
}, {
|
|
340
|
-
code: string;
|
|
341
|
-
path: string;
|
|
342
|
-
message: string;
|
|
343
340
|
statusCode: number;
|
|
341
|
+
message: string;
|
|
342
|
+
code: string;
|
|
344
343
|
timestamp: string;
|
|
344
|
+
path: string;
|
|
345
345
|
details?: unknown;
|
|
346
346
|
correlationId?: string | undefined;
|
|
347
347
|
}>;
|
|
@@ -354,19 +354,19 @@ export declare const companiesContractRouter: {
|
|
|
354
354
|
path: z.ZodString;
|
|
355
355
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
356
356
|
}, "strip", z.ZodTypeAny, {
|
|
357
|
-
code: string;
|
|
358
|
-
path: string;
|
|
359
|
-
message: string;
|
|
360
357
|
statusCode: number;
|
|
358
|
+
message: string;
|
|
359
|
+
code: string;
|
|
361
360
|
timestamp: string;
|
|
361
|
+
path: string;
|
|
362
362
|
details?: unknown;
|
|
363
363
|
correlationId?: string | undefined;
|
|
364
364
|
}, {
|
|
365
|
-
code: string;
|
|
366
|
-
path: string;
|
|
367
|
-
message: string;
|
|
368
365
|
statusCode: number;
|
|
366
|
+
message: string;
|
|
367
|
+
code: string;
|
|
369
368
|
timestamp: string;
|
|
369
|
+
path: string;
|
|
370
370
|
details?: unknown;
|
|
371
371
|
correlationId?: string | undefined;
|
|
372
372
|
}>;
|
|
@@ -379,19 +379,19 @@ export declare const companiesContractRouter: {
|
|
|
379
379
|
path: z.ZodString;
|
|
380
380
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
381
381
|
}, "strip", z.ZodTypeAny, {
|
|
382
|
-
code: string;
|
|
383
|
-
path: string;
|
|
384
|
-
message: string;
|
|
385
382
|
statusCode: number;
|
|
383
|
+
message: string;
|
|
384
|
+
code: string;
|
|
386
385
|
timestamp: string;
|
|
386
|
+
path: string;
|
|
387
387
|
details?: unknown;
|
|
388
388
|
correlationId?: string | undefined;
|
|
389
389
|
}, {
|
|
390
|
-
code: string;
|
|
391
|
-
path: string;
|
|
392
|
-
message: string;
|
|
393
390
|
statusCode: number;
|
|
391
|
+
message: string;
|
|
392
|
+
code: string;
|
|
394
393
|
timestamp: string;
|
|
394
|
+
path: string;
|
|
395
395
|
details?: unknown;
|
|
396
396
|
correlationId?: string | undefined;
|
|
397
397
|
}>;
|
|
@@ -404,19 +404,19 @@ export declare const companiesContractRouter: {
|
|
|
404
404
|
path: z.ZodString;
|
|
405
405
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
406
406
|
}, "strip", z.ZodTypeAny, {
|
|
407
|
-
code: string;
|
|
408
|
-
path: string;
|
|
409
|
-
message: string;
|
|
410
407
|
statusCode: number;
|
|
408
|
+
message: string;
|
|
409
|
+
code: string;
|
|
411
410
|
timestamp: string;
|
|
411
|
+
path: string;
|
|
412
412
|
details?: unknown;
|
|
413
413
|
correlationId?: string | undefined;
|
|
414
414
|
}, {
|
|
415
|
-
code: string;
|
|
416
|
-
path: string;
|
|
417
|
-
message: string;
|
|
418
415
|
statusCode: number;
|
|
416
|
+
message: string;
|
|
417
|
+
code: string;
|
|
419
418
|
timestamp: string;
|
|
419
|
+
path: string;
|
|
420
420
|
details?: unknown;
|
|
421
421
|
correlationId?: string | undefined;
|
|
422
422
|
}>;
|
|
@@ -428,14 +428,14 @@ export declare const companiesContractRouter: {
|
|
|
428
428
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
429
429
|
}, "strip", z.ZodTypeAny, {
|
|
430
430
|
id: string;
|
|
431
|
+
name: string;
|
|
431
432
|
createdAt: string;
|
|
432
433
|
updatedAt: string;
|
|
433
|
-
name: string;
|
|
434
434
|
}, {
|
|
435
435
|
id: string;
|
|
436
|
+
name: string;
|
|
436
437
|
createdAt: string | Date;
|
|
437
438
|
updatedAt: string | Date;
|
|
438
|
-
name: string;
|
|
439
439
|
}>, "many">;
|
|
440
440
|
totalCount: z.ZodNumber;
|
|
441
441
|
limit: z.ZodNumber;
|
|
@@ -443,26 +443,26 @@ export declare const companiesContractRouter: {
|
|
|
443
443
|
currentPage: z.ZodNumber;
|
|
444
444
|
totalPages: z.ZodNumber;
|
|
445
445
|
}, "strip", z.ZodTypeAny, {
|
|
446
|
-
limit: number;
|
|
447
446
|
items: {
|
|
448
447
|
id: string;
|
|
448
|
+
name: string;
|
|
449
449
|
createdAt: string;
|
|
450
450
|
updatedAt: string;
|
|
451
|
-
name: string;
|
|
452
451
|
}[];
|
|
453
452
|
totalCount: number;
|
|
453
|
+
limit: number;
|
|
454
454
|
skip: number;
|
|
455
455
|
currentPage: number;
|
|
456
456
|
totalPages: number;
|
|
457
457
|
}, {
|
|
458
|
-
limit: number;
|
|
459
458
|
items: {
|
|
460
459
|
id: string;
|
|
460
|
+
name: string;
|
|
461
461
|
createdAt: string | Date;
|
|
462
462
|
updatedAt: string | Date;
|
|
463
|
-
name: string;
|
|
464
463
|
}[];
|
|
465
464
|
totalCount: number;
|
|
465
|
+
limit: number;
|
|
466
466
|
skip: number;
|
|
467
467
|
currentPage: number;
|
|
468
468
|
totalPages: number;
|
|
@@ -470,6 +470,12 @@ export declare const companiesContractRouter: {
|
|
|
470
470
|
};
|
|
471
471
|
};
|
|
472
472
|
autocomplete: {
|
|
473
|
+
metadata: {
|
|
474
|
+
tags: string[];
|
|
475
|
+
openApi: {
|
|
476
|
+
operationId: string;
|
|
477
|
+
};
|
|
478
|
+
};
|
|
473
479
|
query: z.ZodObject<{
|
|
474
480
|
query: z.ZodOptional<z.ZodString>;
|
|
475
481
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -480,12 +486,6 @@ export declare const companiesContractRouter: {
|
|
|
480
486
|
query?: string | undefined;
|
|
481
487
|
id?: string | undefined;
|
|
482
488
|
}>;
|
|
483
|
-
metadata: {
|
|
484
|
-
tags: string[];
|
|
485
|
-
openApi: {
|
|
486
|
-
operationId: string;
|
|
487
|
-
};
|
|
488
|
-
};
|
|
489
489
|
summary: "Get companies for autocomplete";
|
|
490
490
|
method: "GET";
|
|
491
491
|
path: "/v2/companies/autocomplete";
|
|
@@ -499,19 +499,19 @@ export declare const companiesContractRouter: {
|
|
|
499
499
|
path: z.ZodString;
|
|
500
500
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
501
501
|
}, "strip", z.ZodTypeAny, {
|
|
502
|
-
code: string;
|
|
503
|
-
path: string;
|
|
504
|
-
message: string;
|
|
505
502
|
statusCode: number;
|
|
503
|
+
message: string;
|
|
504
|
+
code: string;
|
|
506
505
|
timestamp: string;
|
|
506
|
+
path: string;
|
|
507
507
|
details?: unknown;
|
|
508
508
|
correlationId?: string | undefined;
|
|
509
509
|
}, {
|
|
510
|
-
code: string;
|
|
511
|
-
path: string;
|
|
512
|
-
message: string;
|
|
513
510
|
statusCode: number;
|
|
511
|
+
message: string;
|
|
512
|
+
code: string;
|
|
514
513
|
timestamp: string;
|
|
514
|
+
path: string;
|
|
515
515
|
details?: unknown;
|
|
516
516
|
correlationId?: string | undefined;
|
|
517
517
|
}>;
|
|
@@ -524,19 +524,19 @@ export declare const companiesContractRouter: {
|
|
|
524
524
|
path: z.ZodString;
|
|
525
525
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
526
526
|
}, "strip", z.ZodTypeAny, {
|
|
527
|
-
code: string;
|
|
528
|
-
path: string;
|
|
529
|
-
message: string;
|
|
530
527
|
statusCode: number;
|
|
528
|
+
message: string;
|
|
529
|
+
code: string;
|
|
531
530
|
timestamp: string;
|
|
531
|
+
path: string;
|
|
532
532
|
details?: unknown;
|
|
533
533
|
correlationId?: string | undefined;
|
|
534
534
|
}, {
|
|
535
|
-
code: string;
|
|
536
|
-
path: string;
|
|
537
|
-
message: string;
|
|
538
535
|
statusCode: number;
|
|
536
|
+
message: string;
|
|
537
|
+
code: string;
|
|
539
538
|
timestamp: string;
|
|
539
|
+
path: string;
|
|
540
540
|
details?: unknown;
|
|
541
541
|
correlationId?: string | undefined;
|
|
542
542
|
}>;
|
|
@@ -549,19 +549,19 @@ export declare const companiesContractRouter: {
|
|
|
549
549
|
path: z.ZodString;
|
|
550
550
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
551
551
|
}, "strip", z.ZodTypeAny, {
|
|
552
|
-
code: string;
|
|
553
|
-
path: string;
|
|
554
|
-
message: string;
|
|
555
552
|
statusCode: number;
|
|
553
|
+
message: string;
|
|
554
|
+
code: string;
|
|
556
555
|
timestamp: string;
|
|
556
|
+
path: string;
|
|
557
557
|
details?: unknown;
|
|
558
558
|
correlationId?: string | undefined;
|
|
559
559
|
}, {
|
|
560
|
-
code: string;
|
|
561
|
-
path: string;
|
|
562
|
-
message: string;
|
|
563
560
|
statusCode: number;
|
|
561
|
+
message: string;
|
|
562
|
+
code: string;
|
|
564
563
|
timestamp: string;
|
|
564
|
+
path: string;
|
|
565
565
|
details?: unknown;
|
|
566
566
|
correlationId?: string | undefined;
|
|
567
567
|
}>;
|
|
@@ -574,19 +574,19 @@ export declare const companiesContractRouter: {
|
|
|
574
574
|
path: z.ZodString;
|
|
575
575
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
576
576
|
}, "strip", z.ZodTypeAny, {
|
|
577
|
-
code: string;
|
|
578
|
-
path: string;
|
|
579
|
-
message: string;
|
|
580
577
|
statusCode: number;
|
|
578
|
+
message: string;
|
|
579
|
+
code: string;
|
|
581
580
|
timestamp: string;
|
|
581
|
+
path: string;
|
|
582
582
|
details?: unknown;
|
|
583
583
|
correlationId?: string | undefined;
|
|
584
584
|
}, {
|
|
585
|
-
code: string;
|
|
586
|
-
path: string;
|
|
587
|
-
message: string;
|
|
588
585
|
statusCode: number;
|
|
586
|
+
message: string;
|
|
587
|
+
code: string;
|
|
589
588
|
timestamp: string;
|
|
589
|
+
path: string;
|
|
590
590
|
details?: unknown;
|
|
591
591
|
correlationId?: string | undefined;
|
|
592
592
|
}>;
|
|
@@ -629,19 +629,19 @@ export declare const companiesContractRouter: {
|
|
|
629
629
|
path: z.ZodString;
|
|
630
630
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
631
631
|
}, "strip", z.ZodTypeAny, {
|
|
632
|
-
code: string;
|
|
633
|
-
path: string;
|
|
634
|
-
message: string;
|
|
635
632
|
statusCode: number;
|
|
633
|
+
message: string;
|
|
634
|
+
code: string;
|
|
636
635
|
timestamp: string;
|
|
636
|
+
path: string;
|
|
637
637
|
details?: unknown;
|
|
638
638
|
correlationId?: string | undefined;
|
|
639
639
|
}, {
|
|
640
|
-
code: string;
|
|
641
|
-
path: string;
|
|
642
|
-
message: string;
|
|
643
640
|
statusCode: number;
|
|
641
|
+
message: string;
|
|
642
|
+
code: string;
|
|
644
643
|
timestamp: string;
|
|
644
|
+
path: string;
|
|
645
645
|
details?: unknown;
|
|
646
646
|
correlationId?: string | undefined;
|
|
647
647
|
}>;
|
|
@@ -654,19 +654,19 @@ export declare const companiesContractRouter: {
|
|
|
654
654
|
path: z.ZodString;
|
|
655
655
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
656
656
|
}, "strip", z.ZodTypeAny, {
|
|
657
|
-
code: string;
|
|
658
|
-
path: string;
|
|
659
|
-
message: string;
|
|
660
657
|
statusCode: number;
|
|
658
|
+
message: string;
|
|
659
|
+
code: string;
|
|
661
660
|
timestamp: string;
|
|
661
|
+
path: string;
|
|
662
662
|
details?: unknown;
|
|
663
663
|
correlationId?: string | undefined;
|
|
664
664
|
}, {
|
|
665
|
-
code: string;
|
|
666
|
-
path: string;
|
|
667
|
-
message: string;
|
|
668
665
|
statusCode: number;
|
|
666
|
+
message: string;
|
|
667
|
+
code: string;
|
|
669
668
|
timestamp: string;
|
|
669
|
+
path: string;
|
|
670
670
|
details?: unknown;
|
|
671
671
|
correlationId?: string | undefined;
|
|
672
672
|
}>;
|
|
@@ -679,19 +679,19 @@ export declare const companiesContractRouter: {
|
|
|
679
679
|
path: z.ZodString;
|
|
680
680
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
681
681
|
}, "strip", z.ZodTypeAny, {
|
|
682
|
-
code: string;
|
|
683
|
-
path: string;
|
|
684
|
-
message: string;
|
|
685
682
|
statusCode: number;
|
|
683
|
+
message: string;
|
|
684
|
+
code: string;
|
|
686
685
|
timestamp: string;
|
|
686
|
+
path: string;
|
|
687
687
|
details?: unknown;
|
|
688
688
|
correlationId?: string | undefined;
|
|
689
689
|
}, {
|
|
690
|
-
code: string;
|
|
691
|
-
path: string;
|
|
692
|
-
message: string;
|
|
693
690
|
statusCode: number;
|
|
691
|
+
message: string;
|
|
692
|
+
code: string;
|
|
694
693
|
timestamp: string;
|
|
694
|
+
path: string;
|
|
695
695
|
details?: unknown;
|
|
696
696
|
correlationId?: string | undefined;
|
|
697
697
|
}>;
|
|
@@ -704,19 +704,19 @@ export declare const companiesContractRouter: {
|
|
|
704
704
|
path: z.ZodString;
|
|
705
705
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
706
706
|
}, "strip", z.ZodTypeAny, {
|
|
707
|
-
code: string;
|
|
708
|
-
path: string;
|
|
709
|
-
message: string;
|
|
710
707
|
statusCode: number;
|
|
708
|
+
message: string;
|
|
709
|
+
code: string;
|
|
711
710
|
timestamp: string;
|
|
711
|
+
path: string;
|
|
712
712
|
details?: unknown;
|
|
713
713
|
correlationId?: string | undefined;
|
|
714
714
|
}, {
|
|
715
|
-
code: string;
|
|
716
|
-
path: string;
|
|
717
|
-
message: string;
|
|
718
715
|
statusCode: number;
|
|
716
|
+
message: string;
|
|
717
|
+
code: string;
|
|
719
718
|
timestamp: string;
|
|
719
|
+
path: string;
|
|
720
720
|
details?: unknown;
|
|
721
721
|
correlationId?: string | undefined;
|
|
722
722
|
}>;
|
|
@@ -727,14 +727,14 @@ export declare const companiesContractRouter: {
|
|
|
727
727
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
728
728
|
}, "strip", z.ZodTypeAny, {
|
|
729
729
|
id: string;
|
|
730
|
+
name: string;
|
|
730
731
|
createdAt: string;
|
|
731
732
|
updatedAt: string;
|
|
732
|
-
name: string;
|
|
733
733
|
}, {
|
|
734
734
|
id: string;
|
|
735
|
+
name: string;
|
|
735
736
|
createdAt: string | Date;
|
|
736
737
|
updatedAt: string | Date;
|
|
737
|
-
name: string;
|
|
738
738
|
}>;
|
|
739
739
|
404: z.ZodObject<{
|
|
740
740
|
statusCode: z.ZodNumber;
|
|
@@ -745,19 +745,19 @@ export declare const companiesContractRouter: {
|
|
|
745
745
|
path: z.ZodString;
|
|
746
746
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
747
747
|
}, "strip", z.ZodTypeAny, {
|
|
748
|
-
code: string;
|
|
749
|
-
path: string;
|
|
750
|
-
message: string;
|
|
751
748
|
statusCode: number;
|
|
749
|
+
message: string;
|
|
750
|
+
code: string;
|
|
752
751
|
timestamp: string;
|
|
752
|
+
path: string;
|
|
753
753
|
details?: unknown;
|
|
754
754
|
correlationId?: string | undefined;
|
|
755
755
|
}, {
|
|
756
|
-
code: string;
|
|
757
|
-
path: string;
|
|
758
|
-
message: string;
|
|
759
756
|
statusCode: number;
|
|
757
|
+
message: string;
|
|
758
|
+
code: string;
|
|
760
759
|
timestamp: string;
|
|
760
|
+
path: string;
|
|
761
761
|
details?: unknown;
|
|
762
762
|
correlationId?: string | undefined;
|
|
763
763
|
}>;
|
|
@@ -797,19 +797,19 @@ export declare const companiesContractRouter: {
|
|
|
797
797
|
path: z.ZodString;
|
|
798
798
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
799
799
|
}, "strip", z.ZodTypeAny, {
|
|
800
|
-
code: string;
|
|
801
|
-
path: string;
|
|
802
|
-
message: string;
|
|
803
800
|
statusCode: number;
|
|
801
|
+
message: string;
|
|
802
|
+
code: string;
|
|
804
803
|
timestamp: string;
|
|
804
|
+
path: string;
|
|
805
805
|
details?: unknown;
|
|
806
806
|
correlationId?: string | undefined;
|
|
807
807
|
}, {
|
|
808
|
-
code: string;
|
|
809
|
-
path: string;
|
|
810
|
-
message: string;
|
|
811
808
|
statusCode: number;
|
|
809
|
+
message: string;
|
|
810
|
+
code: string;
|
|
812
811
|
timestamp: string;
|
|
812
|
+
path: string;
|
|
813
813
|
details?: unknown;
|
|
814
814
|
correlationId?: string | undefined;
|
|
815
815
|
}>;
|
|
@@ -822,19 +822,19 @@ export declare const companiesContractRouter: {
|
|
|
822
822
|
path: z.ZodString;
|
|
823
823
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
824
824
|
}, "strip", z.ZodTypeAny, {
|
|
825
|
-
code: string;
|
|
826
|
-
path: string;
|
|
827
|
-
message: string;
|
|
828
825
|
statusCode: number;
|
|
826
|
+
message: string;
|
|
827
|
+
code: string;
|
|
829
828
|
timestamp: string;
|
|
829
|
+
path: string;
|
|
830
830
|
details?: unknown;
|
|
831
831
|
correlationId?: string | undefined;
|
|
832
832
|
}, {
|
|
833
|
-
code: string;
|
|
834
|
-
path: string;
|
|
835
|
-
message: string;
|
|
836
833
|
statusCode: number;
|
|
834
|
+
message: string;
|
|
835
|
+
code: string;
|
|
837
836
|
timestamp: string;
|
|
837
|
+
path: string;
|
|
838
838
|
details?: unknown;
|
|
839
839
|
correlationId?: string | undefined;
|
|
840
840
|
}>;
|
|
@@ -847,19 +847,19 @@ export declare const companiesContractRouter: {
|
|
|
847
847
|
path: z.ZodString;
|
|
848
848
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
849
849
|
}, "strip", z.ZodTypeAny, {
|
|
850
|
-
code: string;
|
|
851
|
-
path: string;
|
|
852
|
-
message: string;
|
|
853
850
|
statusCode: number;
|
|
851
|
+
message: string;
|
|
852
|
+
code: string;
|
|
854
853
|
timestamp: string;
|
|
854
|
+
path: string;
|
|
855
855
|
details?: unknown;
|
|
856
856
|
correlationId?: string | undefined;
|
|
857
857
|
}, {
|
|
858
|
-
code: string;
|
|
859
|
-
path: string;
|
|
860
|
-
message: string;
|
|
861
858
|
statusCode: number;
|
|
859
|
+
message: string;
|
|
860
|
+
code: string;
|
|
862
861
|
timestamp: string;
|
|
862
|
+
path: string;
|
|
863
863
|
details?: unknown;
|
|
864
864
|
correlationId?: string | undefined;
|
|
865
865
|
}>;
|
|
@@ -872,19 +872,19 @@ export declare const companiesContractRouter: {
|
|
|
872
872
|
path: z.ZodString;
|
|
873
873
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
874
874
|
}, "strip", z.ZodTypeAny, {
|
|
875
|
-
code: string;
|
|
876
|
-
path: string;
|
|
877
|
-
message: string;
|
|
878
875
|
statusCode: number;
|
|
876
|
+
message: string;
|
|
877
|
+
code: string;
|
|
879
878
|
timestamp: string;
|
|
879
|
+
path: string;
|
|
880
880
|
details?: unknown;
|
|
881
881
|
correlationId?: string | undefined;
|
|
882
882
|
}, {
|
|
883
|
-
code: string;
|
|
884
|
-
path: string;
|
|
885
|
-
message: string;
|
|
886
883
|
statusCode: number;
|
|
884
|
+
message: string;
|
|
885
|
+
code: string;
|
|
887
886
|
timestamp: string;
|
|
887
|
+
path: string;
|
|
888
888
|
details?: unknown;
|
|
889
889
|
correlationId?: string | undefined;
|
|
890
890
|
}>;
|
|
@@ -895,14 +895,14 @@ export declare const companiesContractRouter: {
|
|
|
895
895
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
896
896
|
}, "strip", z.ZodTypeAny, {
|
|
897
897
|
id: string;
|
|
898
|
+
name: string;
|
|
898
899
|
createdAt: string;
|
|
899
900
|
updatedAt: string;
|
|
900
|
-
name: string;
|
|
901
901
|
}, {
|
|
902
902
|
id: string;
|
|
903
|
+
name: string;
|
|
903
904
|
createdAt: string | Date;
|
|
904
905
|
updatedAt: string | Date;
|
|
905
|
-
name: string;
|
|
906
906
|
}>;
|
|
907
907
|
404: z.ZodObject<{
|
|
908
908
|
statusCode: z.ZodNumber;
|
|
@@ -913,19 +913,19 @@ export declare const companiesContractRouter: {
|
|
|
913
913
|
path: z.ZodString;
|
|
914
914
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
915
915
|
}, "strip", z.ZodTypeAny, {
|
|
916
|
-
code: string;
|
|
917
|
-
path: string;
|
|
918
|
-
message: string;
|
|
919
916
|
statusCode: number;
|
|
917
|
+
message: string;
|
|
918
|
+
code: string;
|
|
920
919
|
timestamp: string;
|
|
920
|
+
path: string;
|
|
921
921
|
details?: unknown;
|
|
922
922
|
correlationId?: string | undefined;
|
|
923
923
|
}, {
|
|
924
|
-
code: string;
|
|
925
|
-
path: string;
|
|
926
|
-
message: string;
|
|
927
924
|
statusCode: number;
|
|
925
|
+
message: string;
|
|
926
|
+
code: string;
|
|
928
927
|
timestamp: string;
|
|
928
|
+
path: string;
|
|
929
929
|
details?: unknown;
|
|
930
930
|
correlationId?: string | undefined;
|
|
931
931
|
}>;
|
|
@@ -938,19 +938,19 @@ export declare const companiesContractRouter: {
|
|
|
938
938
|
path: z.ZodString;
|
|
939
939
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
940
940
|
}, "strip", z.ZodTypeAny, {
|
|
941
|
-
code: string;
|
|
942
|
-
path: string;
|
|
943
|
-
message: string;
|
|
944
941
|
statusCode: number;
|
|
942
|
+
message: string;
|
|
943
|
+
code: string;
|
|
945
944
|
timestamp: string;
|
|
945
|
+
path: string;
|
|
946
946
|
details?: unknown;
|
|
947
947
|
correlationId?: string | undefined;
|
|
948
948
|
}, {
|
|
949
|
-
code: string;
|
|
950
|
-
path: string;
|
|
951
|
-
message: string;
|
|
952
949
|
statusCode: number;
|
|
950
|
+
message: string;
|
|
951
|
+
code: string;
|
|
953
952
|
timestamp: string;
|
|
953
|
+
path: string;
|
|
954
954
|
details?: unknown;
|
|
955
955
|
correlationId?: string | undefined;
|
|
956
956
|
}>;
|
|
@@ -984,19 +984,19 @@ export declare const companiesContractRouter: {
|
|
|
984
984
|
path: z.ZodString;
|
|
985
985
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
986
986
|
}, "strip", z.ZodTypeAny, {
|
|
987
|
-
code: string;
|
|
988
|
-
path: string;
|
|
989
|
-
message: string;
|
|
990
987
|
statusCode: number;
|
|
988
|
+
message: string;
|
|
989
|
+
code: string;
|
|
991
990
|
timestamp: string;
|
|
991
|
+
path: string;
|
|
992
992
|
details?: unknown;
|
|
993
993
|
correlationId?: string | undefined;
|
|
994
994
|
}, {
|
|
995
|
-
code: string;
|
|
996
|
-
path: string;
|
|
997
|
-
message: string;
|
|
998
995
|
statusCode: number;
|
|
996
|
+
message: string;
|
|
997
|
+
code: string;
|
|
999
998
|
timestamp: string;
|
|
999
|
+
path: string;
|
|
1000
1000
|
details?: unknown;
|
|
1001
1001
|
correlationId?: string | undefined;
|
|
1002
1002
|
}>;
|
|
@@ -1009,19 +1009,19 @@ export declare const companiesContractRouter: {
|
|
|
1009
1009
|
path: z.ZodString;
|
|
1010
1010
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1011
1011
|
}, "strip", z.ZodTypeAny, {
|
|
1012
|
-
code: string;
|
|
1013
|
-
path: string;
|
|
1014
|
-
message: string;
|
|
1015
1012
|
statusCode: number;
|
|
1013
|
+
message: string;
|
|
1014
|
+
code: string;
|
|
1016
1015
|
timestamp: string;
|
|
1016
|
+
path: string;
|
|
1017
1017
|
details?: unknown;
|
|
1018
1018
|
correlationId?: string | undefined;
|
|
1019
1019
|
}, {
|
|
1020
|
-
code: string;
|
|
1021
|
-
path: string;
|
|
1022
|
-
message: string;
|
|
1023
1020
|
statusCode: number;
|
|
1021
|
+
message: string;
|
|
1022
|
+
code: string;
|
|
1024
1023
|
timestamp: string;
|
|
1024
|
+
path: string;
|
|
1025
1025
|
details?: unknown;
|
|
1026
1026
|
correlationId?: string | undefined;
|
|
1027
1027
|
}>;
|
|
@@ -1034,19 +1034,19 @@ export declare const companiesContractRouter: {
|
|
|
1034
1034
|
path: z.ZodString;
|
|
1035
1035
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1036
1036
|
}, "strip", z.ZodTypeAny, {
|
|
1037
|
-
code: string;
|
|
1038
|
-
path: string;
|
|
1039
|
-
message: string;
|
|
1040
1037
|
statusCode: number;
|
|
1038
|
+
message: string;
|
|
1039
|
+
code: string;
|
|
1041
1040
|
timestamp: string;
|
|
1041
|
+
path: string;
|
|
1042
1042
|
details?: unknown;
|
|
1043
1043
|
correlationId?: string | undefined;
|
|
1044
1044
|
}, {
|
|
1045
|
-
code: string;
|
|
1046
|
-
path: string;
|
|
1047
|
-
message: string;
|
|
1048
1045
|
statusCode: number;
|
|
1046
|
+
message: string;
|
|
1047
|
+
code: string;
|
|
1049
1048
|
timestamp: string;
|
|
1049
|
+
path: string;
|
|
1050
1050
|
details?: unknown;
|
|
1051
1051
|
correlationId?: string | undefined;
|
|
1052
1052
|
}>;
|
|
@@ -1059,19 +1059,19 @@ export declare const companiesContractRouter: {
|
|
|
1059
1059
|
path: z.ZodString;
|
|
1060
1060
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1061
1061
|
}, "strip", z.ZodTypeAny, {
|
|
1062
|
-
code: string;
|
|
1063
|
-
path: string;
|
|
1064
|
-
message: string;
|
|
1065
1062
|
statusCode: number;
|
|
1063
|
+
message: string;
|
|
1064
|
+
code: string;
|
|
1066
1065
|
timestamp: string;
|
|
1066
|
+
path: string;
|
|
1067
1067
|
details?: unknown;
|
|
1068
1068
|
correlationId?: string | undefined;
|
|
1069
1069
|
}, {
|
|
1070
|
-
code: string;
|
|
1071
|
-
path: string;
|
|
1072
|
-
message: string;
|
|
1073
1070
|
statusCode: number;
|
|
1071
|
+
message: string;
|
|
1072
|
+
code: string;
|
|
1074
1073
|
timestamp: string;
|
|
1074
|
+
path: string;
|
|
1075
1075
|
details?: unknown;
|
|
1076
1076
|
correlationId?: string | undefined;
|
|
1077
1077
|
}>;
|
|
@@ -1085,19 +1085,19 @@ export declare const companiesContractRouter: {
|
|
|
1085
1085
|
path: z.ZodString;
|
|
1086
1086
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1087
1087
|
}, "strip", z.ZodTypeAny, {
|
|
1088
|
-
code: string;
|
|
1089
|
-
path: string;
|
|
1090
|
-
message: string;
|
|
1091
1088
|
statusCode: number;
|
|
1089
|
+
message: string;
|
|
1090
|
+
code: string;
|
|
1092
1091
|
timestamp: string;
|
|
1092
|
+
path: string;
|
|
1093
1093
|
details?: unknown;
|
|
1094
1094
|
correlationId?: string | undefined;
|
|
1095
1095
|
}, {
|
|
1096
|
-
code: string;
|
|
1097
|
-
path: string;
|
|
1098
|
-
message: string;
|
|
1099
1096
|
statusCode: number;
|
|
1097
|
+
message: string;
|
|
1098
|
+
code: string;
|
|
1100
1099
|
timestamp: string;
|
|
1100
|
+
path: string;
|
|
1101
1101
|
details?: unknown;
|
|
1102
1102
|
correlationId?: string | undefined;
|
|
1103
1103
|
}>;
|