@dakkitor/api-contracts 1.1.27 → 1.1.28
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 +4899 -597
- package/dist/actives/actives.contract.d.ts.map +1 -1
- package/dist/actives/actives.contract.js +0 -1
- package/dist/agent-client-links/agent-client-links.contract.d.ts +487 -487
- package/dist/agent-client-links/agent-client-links.contract.d.ts.map +1 -1
- package/dist/agent-client-links/agent-client-links.contract.js +2 -0
- package/dist/auth/auth.contract.d.ts +4 -4
- package/dist/bookings/bookings.contract.d.ts +5657 -1430
- package/dist/bookings/bookings.contract.d.ts.map +1 -1
- package/dist/bookings/bookings.contract.js +6 -6
- package/dist/call-history/call-history.contract.d.ts +1188 -262
- package/dist/call-history/call-history.contract.d.ts.map +1 -1
- package/dist/call-history/call-history.contract.js +3 -4
- package/dist/client-contacts/client-contacts.contract.d.ts +515 -515
- package/dist/clients/clients.contract.d.ts +380 -380
- package/dist/clients/clients.contract.d.ts.map +1 -1
- package/dist/clients/clients.contract.js +8 -2
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +3349 -1023
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts.map +1 -1
- package/dist/collaboration-checkings/collaboration-checkings.contract.js +3 -10
- package/dist/collaborations/collaborations.contract.d.ts +2934 -219
- package/dist/collaborations/collaborations.contract.d.ts.map +1 -1
- package/dist/collaborations/collaborations.contract.js +19 -33
- package/dist/common/common-schemas.d.ts +6 -6
- package/dist/common/common-schemas.d.ts.map +1 -1
- package/dist/common/common-schemas.js +3 -5
- package/dist/common/error-schemas.d.ts +6 -6
- package/dist/companies/companies.contract.d.ts +212 -212
- package/dist/cron-executions/cron-executions.contract.d.ts +228 -228
- package/dist/curated-workers/curated-workers.contract.d.ts +366 -366
- package/dist/curated-workers/curated-workers.contract.d.ts.map +1 -1
- package/dist/curated-workers/curated-workers.contract.js +4 -10
- package/dist/dashboards/agent-daily-metrics.contract.d.ts +120 -120
- package/dist/files/files.contract.d.ts +228 -228
- package/dist/health/health.contract.d.ts +22 -22
- package/dist/jobs/jobs.contract.d.ts +3517 -511
- package/dist/jobs/jobs.contract.d.ts.map +1 -1
- package/dist/jobs/jobs.contract.js +36 -17
- package/dist/lead-assignments/lead-assignments.contract.d.ts +272 -272
- package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +63 -63
- package/dist/lead-distribution/lead-distribution-config.contract.d.ts +146 -146
- package/dist/leads/leads.contract.d.ts +316 -316
- package/dist/locations/locations.contract.d.ts +161 -161
- package/dist/postcodes/postcodes.contract.d.ts +66 -66
- package/dist/qualifications/qualifications.contract.d.ts +256 -256
- package/dist/trades/trades.contract.d.ts +160 -160
- package/dist/users/users.contract.d.ts +100 -100
- package/dist/workers/workers.contract.d.ts +129 -75
- package/dist/workers/workers.contract.d.ts.map +1 -1
- package/dist/workers/workers.contract.js +20 -13
- package/package.json +1 -1
- package/dist/common/api-responses.d.ts +0 -105
- package/dist/common/api-responses.d.ts.map +0 -1
- package/dist/common/api-responses.js +0 -107
|
@@ -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;
|
|
13
12
|
createdAt: string;
|
|
14
13
|
updatedAt: string;
|
|
14
|
+
name: string;
|
|
15
15
|
}, {
|
|
16
16
|
id: string;
|
|
17
|
-
name: string;
|
|
18
17
|
createdAt: string | Date;
|
|
19
18
|
updatedAt: string | Date;
|
|
19
|
+
name: string;
|
|
20
20
|
}>;
|
|
21
21
|
export declare const CreateCompanySchema: z.ZodObject<{
|
|
22
22
|
name: z.ZodString;
|
|
@@ -43,13 +43,13 @@ export declare const FilterCompanySchema: z.ZodObject<{
|
|
|
43
43
|
limit: number;
|
|
44
44
|
page: number;
|
|
45
45
|
name?: string | null | undefined;
|
|
46
|
-
sortBy?: "
|
|
46
|
+
sortBy?: "createdAt" | "updatedAt" | "name" | null | undefined;
|
|
47
47
|
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
48
48
|
}, {
|
|
49
|
-
name?: string | null | undefined;
|
|
50
49
|
limit?: number | undefined;
|
|
51
50
|
page?: number | undefined;
|
|
52
|
-
|
|
51
|
+
name?: string | null | undefined;
|
|
52
|
+
sortBy?: "createdAt" | "updatedAt" | "name" | null | undefined;
|
|
53
53
|
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
54
54
|
}>;
|
|
55
55
|
export declare const CompanyAutocompleteResponseSchema: z.ZodObject<{
|
|
@@ -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;
|
|
84
83
|
createdAt: string;
|
|
85
84
|
updatedAt: string;
|
|
85
|
+
name: string;
|
|
86
86
|
}, {
|
|
87
87
|
id: string;
|
|
88
|
-
name: string;
|
|
89
88
|
createdAt: string | Date;
|
|
90
89
|
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;
|
|
98
99
|
items: {
|
|
99
100
|
id: string;
|
|
100
|
-
name: string;
|
|
101
101
|
createdAt: string;
|
|
102
102
|
updatedAt: string;
|
|
103
|
+
name: string;
|
|
103
104
|
}[];
|
|
104
105
|
totalCount: number;
|
|
105
|
-
limit: number;
|
|
106
106
|
skip: number;
|
|
107
107
|
currentPage: number;
|
|
108
108
|
totalPages: number;
|
|
109
109
|
}, {
|
|
110
|
+
limit: number;
|
|
110
111
|
items: {
|
|
111
112
|
id: string;
|
|
112
|
-
name: string;
|
|
113
113
|
createdAt: string | Date;
|
|
114
114
|
updatedAt: string | Date;
|
|
115
|
+
name: string;
|
|
115
116
|
}[];
|
|
116
117
|
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
|
-
statusCode: number;
|
|
159
|
-
message: string;
|
|
160
158
|
code: string;
|
|
161
|
-
timestamp: string;
|
|
162
159
|
path: string;
|
|
160
|
+
message: string;
|
|
161
|
+
statusCode: number;
|
|
162
|
+
timestamp: string;
|
|
163
163
|
details?: unknown;
|
|
164
164
|
correlationId?: string | undefined;
|
|
165
165
|
}, {
|
|
166
|
-
statusCode: number;
|
|
167
|
-
message: string;
|
|
168
166
|
code: string;
|
|
169
|
-
timestamp: string;
|
|
170
167
|
path: string;
|
|
168
|
+
message: string;
|
|
169
|
+
statusCode: number;
|
|
170
|
+
timestamp: 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
|
-
statusCode: number;
|
|
184
|
-
message: string;
|
|
185
183
|
code: string;
|
|
186
|
-
timestamp: string;
|
|
187
184
|
path: string;
|
|
185
|
+
message: string;
|
|
186
|
+
statusCode: number;
|
|
187
|
+
timestamp: string;
|
|
188
188
|
details?: unknown;
|
|
189
189
|
correlationId?: string | undefined;
|
|
190
190
|
}, {
|
|
191
|
-
statusCode: number;
|
|
192
|
-
message: string;
|
|
193
191
|
code: string;
|
|
194
|
-
timestamp: string;
|
|
195
192
|
path: string;
|
|
193
|
+
message: string;
|
|
194
|
+
statusCode: number;
|
|
195
|
+
timestamp: 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
|
-
statusCode: number;
|
|
209
|
-
message: string;
|
|
210
208
|
code: string;
|
|
211
|
-
timestamp: string;
|
|
212
209
|
path: string;
|
|
210
|
+
message: string;
|
|
211
|
+
statusCode: number;
|
|
212
|
+
timestamp: string;
|
|
213
213
|
details?: unknown;
|
|
214
214
|
correlationId?: string | undefined;
|
|
215
215
|
}, {
|
|
216
|
-
statusCode: number;
|
|
217
|
-
message: string;
|
|
218
216
|
code: string;
|
|
219
|
-
timestamp: string;
|
|
220
217
|
path: string;
|
|
218
|
+
message: string;
|
|
219
|
+
statusCode: number;
|
|
220
|
+
timestamp: 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
|
-
statusCode: number;
|
|
234
|
-
message: string;
|
|
235
233
|
code: string;
|
|
236
|
-
timestamp: string;
|
|
237
234
|
path: string;
|
|
235
|
+
message: string;
|
|
236
|
+
statusCode: number;
|
|
237
|
+
timestamp: string;
|
|
238
238
|
details?: unknown;
|
|
239
239
|
correlationId?: string | undefined;
|
|
240
240
|
}, {
|
|
241
|
-
statusCode: number;
|
|
242
|
-
message: string;
|
|
243
241
|
code: string;
|
|
244
|
-
timestamp: string;
|
|
245
242
|
path: string;
|
|
243
|
+
message: string;
|
|
244
|
+
statusCode: number;
|
|
245
|
+
timestamp: 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;
|
|
257
256
|
createdAt: string;
|
|
258
257
|
updatedAt: string;
|
|
258
|
+
name: string;
|
|
259
259
|
}, {
|
|
260
260
|
id: string;
|
|
261
|
-
name: string;
|
|
262
261
|
createdAt: string | Date;
|
|
263
262
|
updatedAt: string | Date;
|
|
263
|
+
name: string;
|
|
264
264
|
}>;
|
|
265
265
|
409: z.ZodObject<{
|
|
266
266
|
statusCode: z.ZodNumber;
|
|
@@ -271,31 +271,25 @@ export declare const companiesContractRouter: {
|
|
|
271
271
|
path: z.ZodString;
|
|
272
272
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
273
273
|
}, "strip", z.ZodTypeAny, {
|
|
274
|
-
statusCode: number;
|
|
275
|
-
message: string;
|
|
276
274
|
code: string;
|
|
277
|
-
timestamp: string;
|
|
278
275
|
path: string;
|
|
276
|
+
message: string;
|
|
277
|
+
statusCode: number;
|
|
278
|
+
timestamp: string;
|
|
279
279
|
details?: unknown;
|
|
280
280
|
correlationId?: string | undefined;
|
|
281
281
|
}, {
|
|
282
|
-
statusCode: number;
|
|
283
|
-
message: string;
|
|
284
282
|
code: string;
|
|
285
|
-
timestamp: string;
|
|
286
283
|
path: string;
|
|
284
|
+
message: string;
|
|
285
|
+
statusCode: number;
|
|
286
|
+
timestamp: 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
|
-
};
|
|
299
293
|
query: z.ZodObject<{
|
|
300
294
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
301
295
|
page: z.ZodDefault<z.ZodNumber>;
|
|
@@ -307,15 +301,21 @@ export declare const companiesContractRouter: {
|
|
|
307
301
|
limit: number;
|
|
308
302
|
page: number;
|
|
309
303
|
name?: string | null | undefined;
|
|
310
|
-
sortBy?: "
|
|
304
|
+
sortBy?: "createdAt" | "updatedAt" | "name" | null | undefined;
|
|
311
305
|
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
312
306
|
}, {
|
|
313
|
-
name?: string | null | undefined;
|
|
314
307
|
limit?: number | undefined;
|
|
315
308
|
page?: number | undefined;
|
|
316
|
-
|
|
309
|
+
name?: string | null | undefined;
|
|
310
|
+
sortBy?: "createdAt" | "updatedAt" | "name" | null | undefined;
|
|
317
311
|
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
318
312
|
}>;
|
|
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
|
-
statusCode: number;
|
|
333
|
-
message: string;
|
|
334
332
|
code: string;
|
|
335
|
-
timestamp: string;
|
|
336
333
|
path: string;
|
|
334
|
+
message: string;
|
|
335
|
+
statusCode: number;
|
|
336
|
+
timestamp: string;
|
|
337
337
|
details?: unknown;
|
|
338
338
|
correlationId?: string | undefined;
|
|
339
339
|
}, {
|
|
340
|
-
statusCode: number;
|
|
341
|
-
message: string;
|
|
342
340
|
code: string;
|
|
343
|
-
timestamp: string;
|
|
344
341
|
path: string;
|
|
342
|
+
message: string;
|
|
343
|
+
statusCode: number;
|
|
344
|
+
timestamp: 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
|
-
statusCode: number;
|
|
358
|
-
message: string;
|
|
359
357
|
code: string;
|
|
360
|
-
timestamp: string;
|
|
361
358
|
path: string;
|
|
359
|
+
message: string;
|
|
360
|
+
statusCode: number;
|
|
361
|
+
timestamp: string;
|
|
362
362
|
details?: unknown;
|
|
363
363
|
correlationId?: string | undefined;
|
|
364
364
|
}, {
|
|
365
|
-
statusCode: number;
|
|
366
|
-
message: string;
|
|
367
365
|
code: string;
|
|
368
|
-
timestamp: string;
|
|
369
366
|
path: string;
|
|
367
|
+
message: string;
|
|
368
|
+
statusCode: number;
|
|
369
|
+
timestamp: 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
|
-
statusCode: number;
|
|
383
|
-
message: string;
|
|
384
382
|
code: string;
|
|
385
|
-
timestamp: string;
|
|
386
383
|
path: string;
|
|
384
|
+
message: string;
|
|
385
|
+
statusCode: number;
|
|
386
|
+
timestamp: string;
|
|
387
387
|
details?: unknown;
|
|
388
388
|
correlationId?: string | undefined;
|
|
389
389
|
}, {
|
|
390
|
-
statusCode: number;
|
|
391
|
-
message: string;
|
|
392
390
|
code: string;
|
|
393
|
-
timestamp: string;
|
|
394
391
|
path: string;
|
|
392
|
+
message: string;
|
|
393
|
+
statusCode: number;
|
|
394
|
+
timestamp: 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
|
-
statusCode: number;
|
|
408
|
-
message: string;
|
|
409
407
|
code: string;
|
|
410
|
-
timestamp: string;
|
|
411
408
|
path: string;
|
|
409
|
+
message: string;
|
|
410
|
+
statusCode: number;
|
|
411
|
+
timestamp: string;
|
|
412
412
|
details?: unknown;
|
|
413
413
|
correlationId?: string | undefined;
|
|
414
414
|
}, {
|
|
415
|
-
statusCode: number;
|
|
416
|
-
message: string;
|
|
417
415
|
code: string;
|
|
418
|
-
timestamp: string;
|
|
419
416
|
path: string;
|
|
417
|
+
message: string;
|
|
418
|
+
statusCode: number;
|
|
419
|
+
timestamp: 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;
|
|
432
431
|
createdAt: string;
|
|
433
432
|
updatedAt: string;
|
|
433
|
+
name: string;
|
|
434
434
|
}, {
|
|
435
435
|
id: string;
|
|
436
|
-
name: string;
|
|
437
436
|
createdAt: string | Date;
|
|
438
437
|
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;
|
|
446
447
|
items: {
|
|
447
448
|
id: string;
|
|
448
|
-
name: string;
|
|
449
449
|
createdAt: string;
|
|
450
450
|
updatedAt: string;
|
|
451
|
+
name: string;
|
|
451
452
|
}[];
|
|
452
453
|
totalCount: number;
|
|
453
|
-
limit: number;
|
|
454
454
|
skip: number;
|
|
455
455
|
currentPage: number;
|
|
456
456
|
totalPages: number;
|
|
457
457
|
}, {
|
|
458
|
+
limit: number;
|
|
458
459
|
items: {
|
|
459
460
|
id: string;
|
|
460
|
-
name: string;
|
|
461
461
|
createdAt: string | Date;
|
|
462
462
|
updatedAt: string | Date;
|
|
463
|
+
name: string;
|
|
463
464
|
}[];
|
|
464
465
|
totalCount: number;
|
|
465
|
-
limit: number;
|
|
466
466
|
skip: number;
|
|
467
467
|
currentPage: number;
|
|
468
468
|
totalPages: number;
|
|
@@ -470,12 +470,6 @@ export declare const companiesContractRouter: {
|
|
|
470
470
|
};
|
|
471
471
|
};
|
|
472
472
|
autocomplete: {
|
|
473
|
-
metadata: {
|
|
474
|
-
tags: string[];
|
|
475
|
-
openApi: {
|
|
476
|
-
operationId: string;
|
|
477
|
-
};
|
|
478
|
-
};
|
|
479
473
|
query: z.ZodObject<{
|
|
480
474
|
query: z.ZodOptional<z.ZodString>;
|
|
481
475
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -486,6 +480,12 @@ export declare const companiesContractRouter: {
|
|
|
486
480
|
query?: string | undefined;
|
|
487
481
|
id?: string | undefined;
|
|
488
482
|
}>;
|
|
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
|
-
statusCode: number;
|
|
503
|
-
message: string;
|
|
504
502
|
code: string;
|
|
505
|
-
timestamp: string;
|
|
506
503
|
path: string;
|
|
504
|
+
message: string;
|
|
505
|
+
statusCode: number;
|
|
506
|
+
timestamp: string;
|
|
507
507
|
details?: unknown;
|
|
508
508
|
correlationId?: string | undefined;
|
|
509
509
|
}, {
|
|
510
|
-
statusCode: number;
|
|
511
|
-
message: string;
|
|
512
510
|
code: string;
|
|
513
|
-
timestamp: string;
|
|
514
511
|
path: string;
|
|
512
|
+
message: string;
|
|
513
|
+
statusCode: number;
|
|
514
|
+
timestamp: 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
|
-
statusCode: number;
|
|
528
|
-
message: string;
|
|
529
527
|
code: string;
|
|
530
|
-
timestamp: string;
|
|
531
528
|
path: string;
|
|
529
|
+
message: string;
|
|
530
|
+
statusCode: number;
|
|
531
|
+
timestamp: string;
|
|
532
532
|
details?: unknown;
|
|
533
533
|
correlationId?: string | undefined;
|
|
534
534
|
}, {
|
|
535
|
-
statusCode: number;
|
|
536
|
-
message: string;
|
|
537
535
|
code: string;
|
|
538
|
-
timestamp: string;
|
|
539
536
|
path: string;
|
|
537
|
+
message: string;
|
|
538
|
+
statusCode: number;
|
|
539
|
+
timestamp: 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
|
-
statusCode: number;
|
|
553
|
-
message: string;
|
|
554
552
|
code: string;
|
|
555
|
-
timestamp: string;
|
|
556
553
|
path: string;
|
|
554
|
+
message: string;
|
|
555
|
+
statusCode: number;
|
|
556
|
+
timestamp: string;
|
|
557
557
|
details?: unknown;
|
|
558
558
|
correlationId?: string | undefined;
|
|
559
559
|
}, {
|
|
560
|
-
statusCode: number;
|
|
561
|
-
message: string;
|
|
562
560
|
code: string;
|
|
563
|
-
timestamp: string;
|
|
564
561
|
path: string;
|
|
562
|
+
message: string;
|
|
563
|
+
statusCode: number;
|
|
564
|
+
timestamp: 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
|
-
statusCode: number;
|
|
578
|
-
message: string;
|
|
579
577
|
code: string;
|
|
580
|
-
timestamp: string;
|
|
581
578
|
path: string;
|
|
579
|
+
message: string;
|
|
580
|
+
statusCode: number;
|
|
581
|
+
timestamp: string;
|
|
582
582
|
details?: unknown;
|
|
583
583
|
correlationId?: string | undefined;
|
|
584
584
|
}, {
|
|
585
|
-
statusCode: number;
|
|
586
|
-
message: string;
|
|
587
585
|
code: string;
|
|
588
|
-
timestamp: string;
|
|
589
586
|
path: string;
|
|
587
|
+
message: string;
|
|
588
|
+
statusCode: number;
|
|
589
|
+
timestamp: 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
|
-
statusCode: number;
|
|
633
|
-
message: string;
|
|
634
632
|
code: string;
|
|
635
|
-
timestamp: string;
|
|
636
633
|
path: string;
|
|
634
|
+
message: string;
|
|
635
|
+
statusCode: number;
|
|
636
|
+
timestamp: string;
|
|
637
637
|
details?: unknown;
|
|
638
638
|
correlationId?: string | undefined;
|
|
639
639
|
}, {
|
|
640
|
-
statusCode: number;
|
|
641
|
-
message: string;
|
|
642
640
|
code: string;
|
|
643
|
-
timestamp: string;
|
|
644
641
|
path: string;
|
|
642
|
+
message: string;
|
|
643
|
+
statusCode: number;
|
|
644
|
+
timestamp: 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
|
-
statusCode: number;
|
|
658
|
-
message: string;
|
|
659
657
|
code: string;
|
|
660
|
-
timestamp: string;
|
|
661
658
|
path: string;
|
|
659
|
+
message: string;
|
|
660
|
+
statusCode: number;
|
|
661
|
+
timestamp: string;
|
|
662
662
|
details?: unknown;
|
|
663
663
|
correlationId?: string | undefined;
|
|
664
664
|
}, {
|
|
665
|
-
statusCode: number;
|
|
666
|
-
message: string;
|
|
667
665
|
code: string;
|
|
668
|
-
timestamp: string;
|
|
669
666
|
path: string;
|
|
667
|
+
message: string;
|
|
668
|
+
statusCode: number;
|
|
669
|
+
timestamp: 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
|
-
statusCode: number;
|
|
683
|
-
message: string;
|
|
684
682
|
code: string;
|
|
685
|
-
timestamp: string;
|
|
686
683
|
path: string;
|
|
684
|
+
message: string;
|
|
685
|
+
statusCode: number;
|
|
686
|
+
timestamp: string;
|
|
687
687
|
details?: unknown;
|
|
688
688
|
correlationId?: string | undefined;
|
|
689
689
|
}, {
|
|
690
|
-
statusCode: number;
|
|
691
|
-
message: string;
|
|
692
690
|
code: string;
|
|
693
|
-
timestamp: string;
|
|
694
691
|
path: string;
|
|
692
|
+
message: string;
|
|
693
|
+
statusCode: number;
|
|
694
|
+
timestamp: 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
|
-
statusCode: number;
|
|
708
|
-
message: string;
|
|
709
707
|
code: string;
|
|
710
|
-
timestamp: string;
|
|
711
708
|
path: string;
|
|
709
|
+
message: string;
|
|
710
|
+
statusCode: number;
|
|
711
|
+
timestamp: string;
|
|
712
712
|
details?: unknown;
|
|
713
713
|
correlationId?: string | undefined;
|
|
714
714
|
}, {
|
|
715
|
-
statusCode: number;
|
|
716
|
-
message: string;
|
|
717
715
|
code: string;
|
|
718
|
-
timestamp: string;
|
|
719
716
|
path: string;
|
|
717
|
+
message: string;
|
|
718
|
+
statusCode: number;
|
|
719
|
+
timestamp: 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;
|
|
731
730
|
createdAt: string;
|
|
732
731
|
updatedAt: string;
|
|
732
|
+
name: string;
|
|
733
733
|
}, {
|
|
734
734
|
id: string;
|
|
735
|
-
name: string;
|
|
736
735
|
createdAt: string | Date;
|
|
737
736
|
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
|
-
statusCode: number;
|
|
749
|
-
message: string;
|
|
750
748
|
code: string;
|
|
751
|
-
timestamp: string;
|
|
752
749
|
path: string;
|
|
750
|
+
message: string;
|
|
751
|
+
statusCode: number;
|
|
752
|
+
timestamp: string;
|
|
753
753
|
details?: unknown;
|
|
754
754
|
correlationId?: string | undefined;
|
|
755
755
|
}, {
|
|
756
|
-
statusCode: number;
|
|
757
|
-
message: string;
|
|
758
756
|
code: string;
|
|
759
|
-
timestamp: string;
|
|
760
757
|
path: string;
|
|
758
|
+
message: string;
|
|
759
|
+
statusCode: number;
|
|
760
|
+
timestamp: 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
|
-
statusCode: number;
|
|
801
|
-
message: string;
|
|
802
800
|
code: string;
|
|
803
|
-
timestamp: string;
|
|
804
801
|
path: string;
|
|
802
|
+
message: string;
|
|
803
|
+
statusCode: number;
|
|
804
|
+
timestamp: string;
|
|
805
805
|
details?: unknown;
|
|
806
806
|
correlationId?: string | undefined;
|
|
807
807
|
}, {
|
|
808
|
-
statusCode: number;
|
|
809
|
-
message: string;
|
|
810
808
|
code: string;
|
|
811
|
-
timestamp: string;
|
|
812
809
|
path: string;
|
|
810
|
+
message: string;
|
|
811
|
+
statusCode: number;
|
|
812
|
+
timestamp: 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
|
-
statusCode: number;
|
|
826
|
-
message: string;
|
|
827
825
|
code: string;
|
|
828
|
-
timestamp: string;
|
|
829
826
|
path: string;
|
|
827
|
+
message: string;
|
|
828
|
+
statusCode: number;
|
|
829
|
+
timestamp: string;
|
|
830
830
|
details?: unknown;
|
|
831
831
|
correlationId?: string | undefined;
|
|
832
832
|
}, {
|
|
833
|
-
statusCode: number;
|
|
834
|
-
message: string;
|
|
835
833
|
code: string;
|
|
836
|
-
timestamp: string;
|
|
837
834
|
path: string;
|
|
835
|
+
message: string;
|
|
836
|
+
statusCode: number;
|
|
837
|
+
timestamp: 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
|
-
statusCode: number;
|
|
851
|
-
message: string;
|
|
852
850
|
code: string;
|
|
853
|
-
timestamp: string;
|
|
854
851
|
path: string;
|
|
852
|
+
message: string;
|
|
853
|
+
statusCode: number;
|
|
854
|
+
timestamp: string;
|
|
855
855
|
details?: unknown;
|
|
856
856
|
correlationId?: string | undefined;
|
|
857
857
|
}, {
|
|
858
|
-
statusCode: number;
|
|
859
|
-
message: string;
|
|
860
858
|
code: string;
|
|
861
|
-
timestamp: string;
|
|
862
859
|
path: string;
|
|
860
|
+
message: string;
|
|
861
|
+
statusCode: number;
|
|
862
|
+
timestamp: 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
|
-
statusCode: number;
|
|
876
|
-
message: string;
|
|
877
875
|
code: string;
|
|
878
|
-
timestamp: string;
|
|
879
876
|
path: string;
|
|
877
|
+
message: string;
|
|
878
|
+
statusCode: number;
|
|
879
|
+
timestamp: string;
|
|
880
880
|
details?: unknown;
|
|
881
881
|
correlationId?: string | undefined;
|
|
882
882
|
}, {
|
|
883
|
-
statusCode: number;
|
|
884
|
-
message: string;
|
|
885
883
|
code: string;
|
|
886
|
-
timestamp: string;
|
|
887
884
|
path: string;
|
|
885
|
+
message: string;
|
|
886
|
+
statusCode: number;
|
|
887
|
+
timestamp: 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;
|
|
899
898
|
createdAt: string;
|
|
900
899
|
updatedAt: string;
|
|
900
|
+
name: string;
|
|
901
901
|
}, {
|
|
902
902
|
id: string;
|
|
903
|
-
name: string;
|
|
904
903
|
createdAt: string | Date;
|
|
905
904
|
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
|
-
statusCode: number;
|
|
917
|
-
message: string;
|
|
918
916
|
code: string;
|
|
919
|
-
timestamp: string;
|
|
920
917
|
path: string;
|
|
918
|
+
message: string;
|
|
919
|
+
statusCode: number;
|
|
920
|
+
timestamp: string;
|
|
921
921
|
details?: unknown;
|
|
922
922
|
correlationId?: string | undefined;
|
|
923
923
|
}, {
|
|
924
|
-
statusCode: number;
|
|
925
|
-
message: string;
|
|
926
924
|
code: string;
|
|
927
|
-
timestamp: string;
|
|
928
925
|
path: string;
|
|
926
|
+
message: string;
|
|
927
|
+
statusCode: number;
|
|
928
|
+
timestamp: 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
|
-
statusCode: number;
|
|
942
|
-
message: string;
|
|
943
941
|
code: string;
|
|
944
|
-
timestamp: string;
|
|
945
942
|
path: string;
|
|
943
|
+
message: string;
|
|
944
|
+
statusCode: number;
|
|
945
|
+
timestamp: string;
|
|
946
946
|
details?: unknown;
|
|
947
947
|
correlationId?: string | undefined;
|
|
948
948
|
}, {
|
|
949
|
-
statusCode: number;
|
|
950
|
-
message: string;
|
|
951
949
|
code: string;
|
|
952
|
-
timestamp: string;
|
|
953
950
|
path: string;
|
|
951
|
+
message: string;
|
|
952
|
+
statusCode: number;
|
|
953
|
+
timestamp: 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
|
-
statusCode: number;
|
|
988
|
-
message: string;
|
|
989
987
|
code: string;
|
|
990
|
-
timestamp: string;
|
|
991
988
|
path: string;
|
|
989
|
+
message: string;
|
|
990
|
+
statusCode: number;
|
|
991
|
+
timestamp: string;
|
|
992
992
|
details?: unknown;
|
|
993
993
|
correlationId?: string | undefined;
|
|
994
994
|
}, {
|
|
995
|
-
statusCode: number;
|
|
996
|
-
message: string;
|
|
997
995
|
code: string;
|
|
998
|
-
timestamp: string;
|
|
999
996
|
path: string;
|
|
997
|
+
message: string;
|
|
998
|
+
statusCode: number;
|
|
999
|
+
timestamp: 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
|
-
statusCode: number;
|
|
1013
|
-
message: string;
|
|
1014
1012
|
code: string;
|
|
1015
|
-
timestamp: string;
|
|
1016
1013
|
path: string;
|
|
1014
|
+
message: string;
|
|
1015
|
+
statusCode: number;
|
|
1016
|
+
timestamp: string;
|
|
1017
1017
|
details?: unknown;
|
|
1018
1018
|
correlationId?: string | undefined;
|
|
1019
1019
|
}, {
|
|
1020
|
-
statusCode: number;
|
|
1021
|
-
message: string;
|
|
1022
1020
|
code: string;
|
|
1023
|
-
timestamp: string;
|
|
1024
1021
|
path: string;
|
|
1022
|
+
message: string;
|
|
1023
|
+
statusCode: number;
|
|
1024
|
+
timestamp: 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
|
-
statusCode: number;
|
|
1038
|
-
message: string;
|
|
1039
1037
|
code: string;
|
|
1040
|
-
timestamp: string;
|
|
1041
1038
|
path: string;
|
|
1039
|
+
message: string;
|
|
1040
|
+
statusCode: number;
|
|
1041
|
+
timestamp: string;
|
|
1042
1042
|
details?: unknown;
|
|
1043
1043
|
correlationId?: string | undefined;
|
|
1044
1044
|
}, {
|
|
1045
|
-
statusCode: number;
|
|
1046
|
-
message: string;
|
|
1047
1045
|
code: string;
|
|
1048
|
-
timestamp: string;
|
|
1049
1046
|
path: string;
|
|
1047
|
+
message: string;
|
|
1048
|
+
statusCode: number;
|
|
1049
|
+
timestamp: 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
|
-
statusCode: number;
|
|
1063
|
-
message: string;
|
|
1064
1062
|
code: string;
|
|
1065
|
-
timestamp: string;
|
|
1066
1063
|
path: string;
|
|
1064
|
+
message: string;
|
|
1065
|
+
statusCode: number;
|
|
1066
|
+
timestamp: string;
|
|
1067
1067
|
details?: unknown;
|
|
1068
1068
|
correlationId?: string | undefined;
|
|
1069
1069
|
}, {
|
|
1070
|
-
statusCode: number;
|
|
1071
|
-
message: string;
|
|
1072
1070
|
code: string;
|
|
1073
|
-
timestamp: string;
|
|
1074
1071
|
path: string;
|
|
1072
|
+
message: string;
|
|
1073
|
+
statusCode: number;
|
|
1074
|
+
timestamp: 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
|
-
statusCode: number;
|
|
1089
|
-
message: string;
|
|
1090
1088
|
code: string;
|
|
1091
|
-
timestamp: string;
|
|
1092
1089
|
path: string;
|
|
1090
|
+
message: string;
|
|
1091
|
+
statusCode: number;
|
|
1092
|
+
timestamp: string;
|
|
1093
1093
|
details?: unknown;
|
|
1094
1094
|
correlationId?: string | undefined;
|
|
1095
1095
|
}, {
|
|
1096
|
-
statusCode: number;
|
|
1097
|
-
message: string;
|
|
1098
1096
|
code: string;
|
|
1099
|
-
timestamp: string;
|
|
1100
1097
|
path: string;
|
|
1098
|
+
message: string;
|
|
1099
|
+
statusCode: number;
|
|
1100
|
+
timestamp: string;
|
|
1101
1101
|
details?: unknown;
|
|
1102
1102
|
correlationId?: string | undefined;
|
|
1103
1103
|
}>;
|