@dakkitor/api-contracts 1.9.6 → 1.9.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/candidate-calling/candidate-calling.contract.d.ts +5562 -5562
- package/dist/candidate-calling/inbound-calls.contract.d.ts +260 -0
- package/dist/candidate-calling/inbound-calls.contract.d.ts.map +1 -0
- package/dist/candidate-calling/inbound-calls.contract.js +59 -0
- package/dist/candidate-lookup/candidate-lookup.contract.d.ts +385 -2
- package/dist/candidate-lookup/candidate-lookup.contract.d.ts.map +1 -1
- package/dist/candidate-lookup/candidate-lookup.contract.js +18 -1
- package/dist/candidate-lookup/candidate-lookup.contract.spec.d.ts +2 -0
- package/dist/candidate-lookup/candidate-lookup.contract.spec.d.ts.map +1 -0
- package/dist/candidate-lookup/candidate-lookup.contract.spec.js +75 -0
- package/dist/curated-worker-leads/candidate-coordination.contract.d.ts +5209 -5008
- package/dist/curated-worker-leads/candidate-coordination.contract.d.ts.map +1 -1
- package/dist/curated-worker-leads/candidate-coordination.contract.js +43 -2
- package/dist/curated-worker-leads/candidate-edit-session.contract.d.ts +434 -434
- package/dist/curated-worker-leads/job-candidates.spec.js +2 -0
- package/dist/curated-worker-leads/jobs-tab.contract.d.ts +6776 -6418
- package/dist/curated-worker-leads/jobs-tab.contract.d.ts.map +1 -1
- package/dist/curated-worker-leads/jobs-tab.contract.js +61 -2
- package/dist/curated-worker-leads/next-candidate.spec.d.ts +2 -0
- package/dist/curated-worker-leads/next-candidate.spec.d.ts.map +1 -0
- package/dist/curated-worker-leads/next-candidate.spec.js +30 -0
- package/dist/curated-worker-leads/owned-jobs-tab.contract.d.ts +206 -206
- package/dist/dashboards/dashboard-widgets.contract.d.ts +371 -371
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/worker-identity-cases/worker-identity-cases.contract.d.ts +1060 -837
- package/dist/worker-identity-cases/worker-identity-cases.contract.d.ts.map +1 -1
- package/dist/worker-identity-cases/worker-identity-cases.contract.js +34 -1
- package/dist/worker-identity-cases/worker-identity-cases.contract.spec.d.ts +2 -0
- package/dist/worker-identity-cases/worker-identity-cases.contract.spec.d.ts.map +1 -0
- package/dist/worker-identity-cases/worker-identity-cases.contract.spec.js +21 -0
- package/package.json +1 -1
|
@@ -12,13 +12,13 @@ export declare const ownedJobsTabContract: {
|
|
|
12
12
|
subjectId: z.ZodString;
|
|
13
13
|
jobId: z.ZodString;
|
|
14
14
|
}, "strip", z.ZodTypeAny, {
|
|
15
|
-
|
|
16
|
-
subjectKind: "CURATED" | "OWNED";
|
|
15
|
+
subjectKind: "OWNED" | "CURATED";
|
|
17
16
|
subjectId: string;
|
|
18
|
-
}, {
|
|
19
17
|
jobId: string;
|
|
20
|
-
|
|
18
|
+
}, {
|
|
19
|
+
subjectKind: "OWNED" | "CURATED";
|
|
21
20
|
subjectId: string;
|
|
21
|
+
jobId: string;
|
|
22
22
|
}>;
|
|
23
23
|
status: z.ZodEnum<["NOT_INTERESTED", "OFFER_SENT"]>;
|
|
24
24
|
channel: z.ZodOptional<z.ZodEnum<["WHATSAPP", "PHONE"]>>;
|
|
@@ -28,51 +28,51 @@ export declare const ownedJobsTabContract: {
|
|
|
28
28
|
}, "strip", z.ZodTypeAny, {
|
|
29
29
|
status: "NOT_INTERESTED" | "OFFER_SENT";
|
|
30
30
|
tuple: {
|
|
31
|
-
|
|
32
|
-
subjectKind: "CURATED" | "OWNED";
|
|
31
|
+
subjectKind: "OWNED" | "CURATED";
|
|
33
32
|
subjectId: string;
|
|
33
|
+
jobId: string;
|
|
34
34
|
};
|
|
35
|
-
comment?: string | undefined;
|
|
36
35
|
channel?: "WHATSAPP" | "PHONE" | undefined;
|
|
37
|
-
reason?: "RATE" | "DISTANCE" | "TRANSPORT_COST" | "PAY_TYPE" | "TRADE_MISMATCH" | "OTHER" | undefined;
|
|
38
36
|
contactChannels?: ("WHATSAPP" | "PHONE")[] | undefined;
|
|
37
|
+
reason?: "RATE" | "DISTANCE" | "TRANSPORT_COST" | "PAY_TYPE" | "TRADE_MISMATCH" | "OTHER" | undefined;
|
|
38
|
+
comment?: string | undefined;
|
|
39
39
|
}, {
|
|
40
40
|
status: "NOT_INTERESTED" | "OFFER_SENT";
|
|
41
41
|
tuple: {
|
|
42
|
-
|
|
43
|
-
subjectKind: "CURATED" | "OWNED";
|
|
42
|
+
subjectKind: "OWNED" | "CURATED";
|
|
44
43
|
subjectId: string;
|
|
44
|
+
jobId: string;
|
|
45
45
|
};
|
|
46
|
-
comment?: string | undefined;
|
|
47
46
|
channel?: "WHATSAPP" | "PHONE" | undefined;
|
|
48
|
-
reason?: "RATE" | "DISTANCE" | "TRANSPORT_COST" | "PAY_TYPE" | "TRADE_MISMATCH" | "OTHER" | undefined;
|
|
49
47
|
contactChannels?: ("WHATSAPP" | "PHONE")[] | undefined;
|
|
48
|
+
reason?: "RATE" | "DISTANCE" | "TRANSPORT_COST" | "PAY_TYPE" | "TRADE_MISMATCH" | "OTHER" | undefined;
|
|
49
|
+
comment?: string | undefined;
|
|
50
50
|
}>, {
|
|
51
51
|
status: "NOT_INTERESTED" | "OFFER_SENT";
|
|
52
52
|
tuple: {
|
|
53
|
-
|
|
54
|
-
subjectKind: "CURATED" | "OWNED";
|
|
53
|
+
subjectKind: "OWNED" | "CURATED";
|
|
55
54
|
subjectId: string;
|
|
55
|
+
jobId: string;
|
|
56
56
|
};
|
|
57
|
-
comment?: string | undefined;
|
|
58
57
|
channel?: "WHATSAPP" | "PHONE" | undefined;
|
|
59
|
-
reason?: "RATE" | "DISTANCE" | "TRANSPORT_COST" | "PAY_TYPE" | "TRADE_MISMATCH" | "OTHER" | undefined;
|
|
60
58
|
contactChannels?: ("WHATSAPP" | "PHONE")[] | undefined;
|
|
59
|
+
reason?: "RATE" | "DISTANCE" | "TRANSPORT_COST" | "PAY_TYPE" | "TRADE_MISMATCH" | "OTHER" | undefined;
|
|
60
|
+
comment?: string | undefined;
|
|
61
61
|
}, {
|
|
62
62
|
status: "NOT_INTERESTED" | "OFFER_SENT";
|
|
63
63
|
tuple: {
|
|
64
|
-
|
|
65
|
-
subjectKind: "CURATED" | "OWNED";
|
|
64
|
+
subjectKind: "OWNED" | "CURATED";
|
|
66
65
|
subjectId: string;
|
|
66
|
+
jobId: string;
|
|
67
67
|
};
|
|
68
|
-
comment?: string | undefined;
|
|
69
68
|
channel?: "WHATSAPP" | "PHONE" | undefined;
|
|
70
|
-
reason?: "RATE" | "DISTANCE" | "TRANSPORT_COST" | "PAY_TYPE" | "TRADE_MISMATCH" | "OTHER" | undefined;
|
|
71
69
|
contactChannels?: ("WHATSAPP" | "PHONE")[] | undefined;
|
|
70
|
+
reason?: "RATE" | "DISTANCE" | "TRANSPORT_COST" | "PAY_TYPE" | "TRADE_MISMATCH" | "OTHER" | undefined;
|
|
71
|
+
comment?: string | undefined;
|
|
72
72
|
}>;
|
|
73
73
|
path: "/v2/curated-worker-leads/owned-job-matches/disposition";
|
|
74
74
|
responses: {
|
|
75
|
-
|
|
75
|
+
500: z.ZodObject<{
|
|
76
76
|
statusCode: z.ZodNumber;
|
|
77
77
|
message: z.ZodString;
|
|
78
78
|
code: z.ZodString;
|
|
@@ -81,23 +81,23 @@ export declare const ownedJobsTabContract: {
|
|
|
81
81
|
path: z.ZodString;
|
|
82
82
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
83
83
|
}, "strip", z.ZodTypeAny, {
|
|
84
|
-
message: string;
|
|
85
|
-
path: string;
|
|
86
84
|
code: string;
|
|
85
|
+
path: string;
|
|
86
|
+
message: string;
|
|
87
87
|
statusCode: number;
|
|
88
88
|
timestamp: string;
|
|
89
89
|
details?: unknown;
|
|
90
90
|
correlationId?: string | undefined;
|
|
91
91
|
}, {
|
|
92
|
-
message: string;
|
|
93
|
-
path: string;
|
|
94
92
|
code: string;
|
|
93
|
+
path: string;
|
|
94
|
+
message: string;
|
|
95
95
|
statusCode: number;
|
|
96
96
|
timestamp: string;
|
|
97
97
|
details?: unknown;
|
|
98
98
|
correlationId?: string | undefined;
|
|
99
99
|
}>;
|
|
100
|
-
|
|
100
|
+
400: z.ZodObject<{
|
|
101
101
|
statusCode: z.ZodNumber;
|
|
102
102
|
message: z.ZodString;
|
|
103
103
|
code: z.ZodString;
|
|
@@ -106,23 +106,23 @@ export declare const ownedJobsTabContract: {
|
|
|
106
106
|
path: z.ZodString;
|
|
107
107
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
108
108
|
}, "strip", z.ZodTypeAny, {
|
|
109
|
-
message: string;
|
|
110
|
-
path: string;
|
|
111
109
|
code: string;
|
|
110
|
+
path: string;
|
|
111
|
+
message: string;
|
|
112
112
|
statusCode: number;
|
|
113
113
|
timestamp: string;
|
|
114
114
|
details?: unknown;
|
|
115
115
|
correlationId?: string | undefined;
|
|
116
116
|
}, {
|
|
117
|
-
message: string;
|
|
118
|
-
path: string;
|
|
119
117
|
code: string;
|
|
118
|
+
path: string;
|
|
119
|
+
message: string;
|
|
120
120
|
statusCode: number;
|
|
121
121
|
timestamp: string;
|
|
122
122
|
details?: unknown;
|
|
123
123
|
correlationId?: string | undefined;
|
|
124
124
|
}>;
|
|
125
|
-
|
|
125
|
+
401: z.ZodObject<{
|
|
126
126
|
statusCode: z.ZodNumber;
|
|
127
127
|
message: z.ZodString;
|
|
128
128
|
code: z.ZodString;
|
|
@@ -131,17 +131,17 @@ export declare const ownedJobsTabContract: {
|
|
|
131
131
|
path: z.ZodString;
|
|
132
132
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
133
133
|
}, "strip", z.ZodTypeAny, {
|
|
134
|
-
message: string;
|
|
135
|
-
path: string;
|
|
136
134
|
code: string;
|
|
135
|
+
path: string;
|
|
136
|
+
message: string;
|
|
137
137
|
statusCode: number;
|
|
138
138
|
timestamp: string;
|
|
139
139
|
details?: unknown;
|
|
140
140
|
correlationId?: string | undefined;
|
|
141
141
|
}, {
|
|
142
|
-
message: string;
|
|
143
|
-
path: string;
|
|
144
142
|
code: string;
|
|
143
|
+
path: string;
|
|
144
|
+
message: string;
|
|
145
145
|
statusCode: number;
|
|
146
146
|
timestamp: string;
|
|
147
147
|
details?: unknown;
|
|
@@ -157,23 +157,23 @@ export declare const ownedJobsTabContract: {
|
|
|
157
157
|
status: z.ZodEnum<["NEW", "TOO_FAR", "NOT_INTERESTED", "OFFER_SENT", "BOOKED"]>;
|
|
158
158
|
statusUpdatedAt: z.ZodNullable<z.ZodString>;
|
|
159
159
|
}, "strip", z.ZodTypeAny, {
|
|
160
|
-
|
|
161
|
-
statusUpdatedAt: string | null;
|
|
162
|
-
jobId: string;
|
|
163
|
-
subjectKind: "CURATED" | "OWNED";
|
|
160
|
+
subjectKind: "OWNED" | "CURATED";
|
|
164
161
|
subjectId: string;
|
|
162
|
+
jobId: string;
|
|
163
|
+
status: "NEW" | "TOO_FAR" | "NOT_INTERESTED" | "OFFER_SENT" | "BOOKED";
|
|
165
164
|
distanceKm: number | null;
|
|
166
165
|
driveMinutes: number | null;
|
|
167
166
|
transitMinutes: number | null;
|
|
168
|
-
}, {
|
|
169
|
-
status: "NOT_INTERESTED" | "BOOKED" | "NEW" | "TOO_FAR" | "OFFER_SENT";
|
|
170
167
|
statusUpdatedAt: string | null;
|
|
171
|
-
|
|
172
|
-
subjectKind: "
|
|
168
|
+
}, {
|
|
169
|
+
subjectKind: "OWNED" | "CURATED";
|
|
173
170
|
subjectId: string;
|
|
171
|
+
jobId: string;
|
|
172
|
+
status: "NEW" | "TOO_FAR" | "NOT_INTERESTED" | "OFFER_SENT" | "BOOKED";
|
|
174
173
|
distanceKm: number | null;
|
|
175
174
|
driveMinutes: number | null;
|
|
176
175
|
transitMinutes: number | null;
|
|
176
|
+
statusUpdatedAt: string | null;
|
|
177
177
|
}>;
|
|
178
178
|
403: z.ZodObject<{
|
|
179
179
|
statusCode: z.ZodNumber;
|
|
@@ -184,17 +184,17 @@ export declare const ownedJobsTabContract: {
|
|
|
184
184
|
path: z.ZodString;
|
|
185
185
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
186
186
|
}, "strip", z.ZodTypeAny, {
|
|
187
|
-
message: string;
|
|
188
|
-
path: string;
|
|
189
187
|
code: string;
|
|
188
|
+
path: string;
|
|
189
|
+
message: string;
|
|
190
190
|
statusCode: number;
|
|
191
191
|
timestamp: string;
|
|
192
192
|
details?: unknown;
|
|
193
193
|
correlationId?: string | undefined;
|
|
194
194
|
}, {
|
|
195
|
-
message: string;
|
|
196
|
-
path: string;
|
|
197
195
|
code: string;
|
|
196
|
+
path: string;
|
|
197
|
+
message: string;
|
|
198
198
|
statusCode: number;
|
|
199
199
|
timestamp: string;
|
|
200
200
|
details?: unknown;
|
|
@@ -209,17 +209,17 @@ export declare const ownedJobsTabContract: {
|
|
|
209
209
|
path: z.ZodString;
|
|
210
210
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
211
211
|
}, "strip", z.ZodTypeAny, {
|
|
212
|
-
message: string;
|
|
213
|
-
path: string;
|
|
214
212
|
code: string;
|
|
213
|
+
path: string;
|
|
214
|
+
message: string;
|
|
215
215
|
statusCode: number;
|
|
216
216
|
timestamp: string;
|
|
217
217
|
details?: unknown;
|
|
218
218
|
correlationId?: string | undefined;
|
|
219
219
|
}, {
|
|
220
|
-
message: string;
|
|
221
|
-
path: string;
|
|
222
220
|
code: string;
|
|
221
|
+
path: string;
|
|
222
|
+
message: string;
|
|
223
223
|
statusCode: number;
|
|
224
224
|
timestamp: string;
|
|
225
225
|
details?: unknown;
|
|
@@ -239,13 +239,13 @@ export declare const ownedJobsTabContract: {
|
|
|
239
239
|
subjectId: z.ZodString;
|
|
240
240
|
jobId: z.ZodString;
|
|
241
241
|
}, "strip", z.ZodTypeAny, {
|
|
242
|
-
|
|
243
|
-
subjectKind: "CURATED" | "OWNED";
|
|
242
|
+
subjectKind: "OWNED" | "CURATED";
|
|
244
243
|
subjectId: string;
|
|
245
|
-
}, {
|
|
246
244
|
jobId: string;
|
|
247
|
-
|
|
245
|
+
}, {
|
|
246
|
+
subjectKind: "OWNED" | "CURATED";
|
|
248
247
|
subjectId: string;
|
|
248
|
+
jobId: string;
|
|
249
249
|
}>, "many">;
|
|
250
250
|
status: z.ZodEnum<["NOT_INTERESTED", "OFFER_SENT"]>;
|
|
251
251
|
channel: z.ZodOptional<z.ZodEnum<["WHATSAPP", "PHONE"]>>;
|
|
@@ -254,47 +254,47 @@ export declare const ownedJobsTabContract: {
|
|
|
254
254
|
}, "strip", z.ZodTypeAny, {
|
|
255
255
|
status: "NOT_INTERESTED" | "OFFER_SENT";
|
|
256
256
|
tuples: {
|
|
257
|
-
|
|
258
|
-
subjectKind: "CURATED" | "OWNED";
|
|
257
|
+
subjectKind: "OWNED" | "CURATED";
|
|
259
258
|
subjectId: string;
|
|
259
|
+
jobId: string;
|
|
260
260
|
}[];
|
|
261
|
-
comment?: string | undefined;
|
|
262
261
|
channel?: "WHATSAPP" | "PHONE" | undefined;
|
|
263
262
|
reason?: "RATE" | "DISTANCE" | "TRANSPORT_COST" | "PAY_TYPE" | "TRADE_MISMATCH" | "OTHER" | undefined;
|
|
263
|
+
comment?: string | undefined;
|
|
264
264
|
}, {
|
|
265
265
|
status: "NOT_INTERESTED" | "OFFER_SENT";
|
|
266
266
|
tuples: {
|
|
267
|
-
|
|
268
|
-
subjectKind: "CURATED" | "OWNED";
|
|
267
|
+
subjectKind: "OWNED" | "CURATED";
|
|
269
268
|
subjectId: string;
|
|
269
|
+
jobId: string;
|
|
270
270
|
}[];
|
|
271
|
-
comment?: string | undefined;
|
|
272
271
|
channel?: "WHATSAPP" | "PHONE" | undefined;
|
|
273
272
|
reason?: "RATE" | "DISTANCE" | "TRANSPORT_COST" | "PAY_TYPE" | "TRADE_MISMATCH" | "OTHER" | undefined;
|
|
273
|
+
comment?: string | undefined;
|
|
274
274
|
}>, {
|
|
275
275
|
status: "NOT_INTERESTED" | "OFFER_SENT";
|
|
276
276
|
tuples: {
|
|
277
|
-
|
|
278
|
-
subjectKind: "CURATED" | "OWNED";
|
|
277
|
+
subjectKind: "OWNED" | "CURATED";
|
|
279
278
|
subjectId: string;
|
|
279
|
+
jobId: string;
|
|
280
280
|
}[];
|
|
281
|
-
comment?: string | undefined;
|
|
282
281
|
channel?: "WHATSAPP" | "PHONE" | undefined;
|
|
283
282
|
reason?: "RATE" | "DISTANCE" | "TRANSPORT_COST" | "PAY_TYPE" | "TRADE_MISMATCH" | "OTHER" | undefined;
|
|
283
|
+
comment?: string | undefined;
|
|
284
284
|
}, {
|
|
285
285
|
status: "NOT_INTERESTED" | "OFFER_SENT";
|
|
286
286
|
tuples: {
|
|
287
|
-
|
|
288
|
-
subjectKind: "CURATED" | "OWNED";
|
|
287
|
+
subjectKind: "OWNED" | "CURATED";
|
|
289
288
|
subjectId: string;
|
|
289
|
+
jobId: string;
|
|
290
290
|
}[];
|
|
291
|
-
comment?: string | undefined;
|
|
292
291
|
channel?: "WHATSAPP" | "PHONE" | undefined;
|
|
293
292
|
reason?: "RATE" | "DISTANCE" | "TRANSPORT_COST" | "PAY_TYPE" | "TRADE_MISMATCH" | "OTHER" | undefined;
|
|
293
|
+
comment?: string | undefined;
|
|
294
294
|
}>;
|
|
295
295
|
path: "/v2/curated-worker-leads/owned-job-matches/disposition-batch";
|
|
296
296
|
responses: {
|
|
297
|
-
|
|
297
|
+
500: z.ZodObject<{
|
|
298
298
|
statusCode: z.ZodNumber;
|
|
299
299
|
message: z.ZodString;
|
|
300
300
|
code: z.ZodString;
|
|
@@ -303,23 +303,23 @@ export declare const ownedJobsTabContract: {
|
|
|
303
303
|
path: z.ZodString;
|
|
304
304
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
305
305
|
}, "strip", z.ZodTypeAny, {
|
|
306
|
-
message: string;
|
|
307
|
-
path: string;
|
|
308
306
|
code: string;
|
|
307
|
+
path: string;
|
|
308
|
+
message: string;
|
|
309
309
|
statusCode: number;
|
|
310
310
|
timestamp: string;
|
|
311
311
|
details?: unknown;
|
|
312
312
|
correlationId?: string | undefined;
|
|
313
313
|
}, {
|
|
314
|
-
message: string;
|
|
315
|
-
path: string;
|
|
316
314
|
code: string;
|
|
315
|
+
path: string;
|
|
316
|
+
message: string;
|
|
317
317
|
statusCode: number;
|
|
318
318
|
timestamp: string;
|
|
319
319
|
details?: unknown;
|
|
320
320
|
correlationId?: string | undefined;
|
|
321
321
|
}>;
|
|
322
|
-
|
|
322
|
+
400: z.ZodObject<{
|
|
323
323
|
statusCode: z.ZodNumber;
|
|
324
324
|
message: z.ZodString;
|
|
325
325
|
code: z.ZodString;
|
|
@@ -328,23 +328,23 @@ export declare const ownedJobsTabContract: {
|
|
|
328
328
|
path: z.ZodString;
|
|
329
329
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
330
330
|
}, "strip", z.ZodTypeAny, {
|
|
331
|
-
message: string;
|
|
332
|
-
path: string;
|
|
333
331
|
code: string;
|
|
332
|
+
path: string;
|
|
333
|
+
message: string;
|
|
334
334
|
statusCode: number;
|
|
335
335
|
timestamp: string;
|
|
336
336
|
details?: unknown;
|
|
337
337
|
correlationId?: string | undefined;
|
|
338
338
|
}, {
|
|
339
|
-
message: string;
|
|
340
|
-
path: string;
|
|
341
339
|
code: string;
|
|
340
|
+
path: string;
|
|
341
|
+
message: string;
|
|
342
342
|
statusCode: number;
|
|
343
343
|
timestamp: string;
|
|
344
344
|
details?: unknown;
|
|
345
345
|
correlationId?: string | undefined;
|
|
346
346
|
}>;
|
|
347
|
-
|
|
347
|
+
401: z.ZodObject<{
|
|
348
348
|
statusCode: z.ZodNumber;
|
|
349
349
|
message: z.ZodString;
|
|
350
350
|
code: z.ZodString;
|
|
@@ -353,17 +353,17 @@ export declare const ownedJobsTabContract: {
|
|
|
353
353
|
path: z.ZodString;
|
|
354
354
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
355
355
|
}, "strip", z.ZodTypeAny, {
|
|
356
|
-
message: string;
|
|
357
|
-
path: string;
|
|
358
356
|
code: string;
|
|
357
|
+
path: string;
|
|
358
|
+
message: string;
|
|
359
359
|
statusCode: number;
|
|
360
360
|
timestamp: string;
|
|
361
361
|
details?: unknown;
|
|
362
362
|
correlationId?: string | undefined;
|
|
363
363
|
}, {
|
|
364
|
-
message: string;
|
|
365
|
-
path: string;
|
|
366
364
|
code: string;
|
|
365
|
+
path: string;
|
|
366
|
+
message: string;
|
|
367
367
|
statusCode: number;
|
|
368
368
|
timestamp: string;
|
|
369
369
|
details?: unknown;
|
|
@@ -379,23 +379,23 @@ export declare const ownedJobsTabContract: {
|
|
|
379
379
|
status: z.ZodEnum<["NEW", "TOO_FAR", "NOT_INTERESTED", "OFFER_SENT", "BOOKED"]>;
|
|
380
380
|
statusUpdatedAt: z.ZodNullable<z.ZodString>;
|
|
381
381
|
}, "strip", z.ZodTypeAny, {
|
|
382
|
-
|
|
383
|
-
statusUpdatedAt: string | null;
|
|
384
|
-
jobId: string;
|
|
385
|
-
subjectKind: "CURATED" | "OWNED";
|
|
382
|
+
subjectKind: "OWNED" | "CURATED";
|
|
386
383
|
subjectId: string;
|
|
384
|
+
jobId: string;
|
|
385
|
+
status: "NEW" | "TOO_FAR" | "NOT_INTERESTED" | "OFFER_SENT" | "BOOKED";
|
|
387
386
|
distanceKm: number | null;
|
|
388
387
|
driveMinutes: number | null;
|
|
389
388
|
transitMinutes: number | null;
|
|
390
|
-
}, {
|
|
391
|
-
status: "NOT_INTERESTED" | "BOOKED" | "NEW" | "TOO_FAR" | "OFFER_SENT";
|
|
392
389
|
statusUpdatedAt: string | null;
|
|
393
|
-
|
|
394
|
-
subjectKind: "
|
|
390
|
+
}, {
|
|
391
|
+
subjectKind: "OWNED" | "CURATED";
|
|
395
392
|
subjectId: string;
|
|
393
|
+
jobId: string;
|
|
394
|
+
status: "NEW" | "TOO_FAR" | "NOT_INTERESTED" | "OFFER_SENT" | "BOOKED";
|
|
396
395
|
distanceKm: number | null;
|
|
397
396
|
driveMinutes: number | null;
|
|
398
397
|
transitMinutes: number | null;
|
|
398
|
+
statusUpdatedAt: string | null;
|
|
399
399
|
}>, "many">;
|
|
400
400
|
403: z.ZodObject<{
|
|
401
401
|
statusCode: z.ZodNumber;
|
|
@@ -406,17 +406,17 @@ export declare const ownedJobsTabContract: {
|
|
|
406
406
|
path: z.ZodString;
|
|
407
407
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
408
408
|
}, "strip", z.ZodTypeAny, {
|
|
409
|
-
message: string;
|
|
410
|
-
path: string;
|
|
411
409
|
code: string;
|
|
410
|
+
path: string;
|
|
411
|
+
message: string;
|
|
412
412
|
statusCode: number;
|
|
413
413
|
timestamp: string;
|
|
414
414
|
details?: unknown;
|
|
415
415
|
correlationId?: string | undefined;
|
|
416
416
|
}, {
|
|
417
|
-
message: string;
|
|
418
|
-
path: string;
|
|
419
417
|
code: string;
|
|
418
|
+
path: string;
|
|
419
|
+
message: string;
|
|
420
420
|
statusCode: number;
|
|
421
421
|
timestamp: string;
|
|
422
422
|
details?: unknown;
|
|
@@ -431,17 +431,17 @@ export declare const ownedJobsTabContract: {
|
|
|
431
431
|
path: z.ZodString;
|
|
432
432
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
433
433
|
}, "strip", z.ZodTypeAny, {
|
|
434
|
-
message: string;
|
|
435
|
-
path: string;
|
|
436
434
|
code: string;
|
|
435
|
+
path: string;
|
|
436
|
+
message: string;
|
|
437
437
|
statusCode: number;
|
|
438
438
|
timestamp: string;
|
|
439
439
|
details?: unknown;
|
|
440
440
|
correlationId?: string | undefined;
|
|
441
441
|
}, {
|
|
442
|
-
message: string;
|
|
443
|
-
path: string;
|
|
444
442
|
code: string;
|
|
443
|
+
path: string;
|
|
444
|
+
message: string;
|
|
445
445
|
statusCode: number;
|
|
446
446
|
timestamp: string;
|
|
447
447
|
details?: unknown;
|
|
@@ -461,30 +461,30 @@ export declare const ownedJobsTabContract: {
|
|
|
461
461
|
subjectId: z.ZodString;
|
|
462
462
|
jobId: z.ZodString;
|
|
463
463
|
}, "strip", z.ZodTypeAny, {
|
|
464
|
-
|
|
465
|
-
subjectKind: "CURATED" | "OWNED";
|
|
464
|
+
subjectKind: "OWNED" | "CURATED";
|
|
466
465
|
subjectId: string;
|
|
467
|
-
}, {
|
|
468
466
|
jobId: string;
|
|
469
|
-
|
|
467
|
+
}, {
|
|
468
|
+
subjectKind: "OWNED" | "CURATED";
|
|
470
469
|
subjectId: string;
|
|
470
|
+
jobId: string;
|
|
471
471
|
}>;
|
|
472
472
|
}, "strip", z.ZodTypeAny, {
|
|
473
473
|
tuple: {
|
|
474
|
-
|
|
475
|
-
subjectKind: "CURATED" | "OWNED";
|
|
474
|
+
subjectKind: "OWNED" | "CURATED";
|
|
476
475
|
subjectId: string;
|
|
476
|
+
jobId: string;
|
|
477
477
|
};
|
|
478
478
|
}, {
|
|
479
479
|
tuple: {
|
|
480
|
-
|
|
481
|
-
subjectKind: "CURATED" | "OWNED";
|
|
480
|
+
subjectKind: "OWNED" | "CURATED";
|
|
482
481
|
subjectId: string;
|
|
482
|
+
jobId: string;
|
|
483
483
|
};
|
|
484
484
|
}>;
|
|
485
485
|
path: "/v2/curated-worker-leads/owned-job-matches/reconsider";
|
|
486
486
|
responses: {
|
|
487
|
-
|
|
487
|
+
500: z.ZodObject<{
|
|
488
488
|
statusCode: z.ZodNumber;
|
|
489
489
|
message: z.ZodString;
|
|
490
490
|
code: z.ZodString;
|
|
@@ -493,23 +493,23 @@ export declare const ownedJobsTabContract: {
|
|
|
493
493
|
path: z.ZodString;
|
|
494
494
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
495
495
|
}, "strip", z.ZodTypeAny, {
|
|
496
|
-
message: string;
|
|
497
|
-
path: string;
|
|
498
496
|
code: string;
|
|
497
|
+
path: string;
|
|
498
|
+
message: string;
|
|
499
499
|
statusCode: number;
|
|
500
500
|
timestamp: string;
|
|
501
501
|
details?: unknown;
|
|
502
502
|
correlationId?: string | undefined;
|
|
503
503
|
}, {
|
|
504
|
-
message: string;
|
|
505
|
-
path: string;
|
|
506
504
|
code: string;
|
|
505
|
+
path: string;
|
|
506
|
+
message: string;
|
|
507
507
|
statusCode: number;
|
|
508
508
|
timestamp: string;
|
|
509
509
|
details?: unknown;
|
|
510
510
|
correlationId?: string | undefined;
|
|
511
511
|
}>;
|
|
512
|
-
|
|
512
|
+
400: z.ZodObject<{
|
|
513
513
|
statusCode: z.ZodNumber;
|
|
514
514
|
message: z.ZodString;
|
|
515
515
|
code: z.ZodString;
|
|
@@ -518,23 +518,23 @@ export declare const ownedJobsTabContract: {
|
|
|
518
518
|
path: z.ZodString;
|
|
519
519
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
520
520
|
}, "strip", z.ZodTypeAny, {
|
|
521
|
-
message: string;
|
|
522
|
-
path: string;
|
|
523
521
|
code: string;
|
|
522
|
+
path: string;
|
|
523
|
+
message: string;
|
|
524
524
|
statusCode: number;
|
|
525
525
|
timestamp: string;
|
|
526
526
|
details?: unknown;
|
|
527
527
|
correlationId?: string | undefined;
|
|
528
528
|
}, {
|
|
529
|
-
message: string;
|
|
530
|
-
path: string;
|
|
531
529
|
code: string;
|
|
530
|
+
path: string;
|
|
531
|
+
message: string;
|
|
532
532
|
statusCode: number;
|
|
533
533
|
timestamp: string;
|
|
534
534
|
details?: unknown;
|
|
535
535
|
correlationId?: string | undefined;
|
|
536
536
|
}>;
|
|
537
|
-
|
|
537
|
+
401: z.ZodObject<{
|
|
538
538
|
statusCode: z.ZodNumber;
|
|
539
539
|
message: z.ZodString;
|
|
540
540
|
code: z.ZodString;
|
|
@@ -543,17 +543,17 @@ export declare const ownedJobsTabContract: {
|
|
|
543
543
|
path: z.ZodString;
|
|
544
544
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
545
545
|
}, "strip", z.ZodTypeAny, {
|
|
546
|
-
message: string;
|
|
547
|
-
path: string;
|
|
548
546
|
code: string;
|
|
547
|
+
path: string;
|
|
548
|
+
message: string;
|
|
549
549
|
statusCode: number;
|
|
550
550
|
timestamp: string;
|
|
551
551
|
details?: unknown;
|
|
552
552
|
correlationId?: string | undefined;
|
|
553
553
|
}, {
|
|
554
|
-
message: string;
|
|
555
|
-
path: string;
|
|
556
554
|
code: string;
|
|
555
|
+
path: string;
|
|
556
|
+
message: string;
|
|
557
557
|
statusCode: number;
|
|
558
558
|
timestamp: string;
|
|
559
559
|
details?: unknown;
|
|
@@ -575,17 +575,17 @@ export declare const ownedJobsTabContract: {
|
|
|
575
575
|
path: z.ZodString;
|
|
576
576
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
577
577
|
}, "strip", z.ZodTypeAny, {
|
|
578
|
-
message: string;
|
|
579
|
-
path: string;
|
|
580
578
|
code: string;
|
|
579
|
+
path: string;
|
|
580
|
+
message: string;
|
|
581
581
|
statusCode: number;
|
|
582
582
|
timestamp: string;
|
|
583
583
|
details?: unknown;
|
|
584
584
|
correlationId?: string | undefined;
|
|
585
585
|
}, {
|
|
586
|
-
message: string;
|
|
587
|
-
path: string;
|
|
588
586
|
code: string;
|
|
587
|
+
path: string;
|
|
588
|
+
message: string;
|
|
589
589
|
statusCode: number;
|
|
590
590
|
timestamp: string;
|
|
591
591
|
details?: unknown;
|
|
@@ -600,17 +600,17 @@ export declare const ownedJobsTabContract: {
|
|
|
600
600
|
path: z.ZodString;
|
|
601
601
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
602
602
|
}, "strip", z.ZodTypeAny, {
|
|
603
|
-
message: string;
|
|
604
|
-
path: string;
|
|
605
603
|
code: string;
|
|
604
|
+
path: string;
|
|
605
|
+
message: string;
|
|
606
606
|
statusCode: number;
|
|
607
607
|
timestamp: string;
|
|
608
608
|
details?: unknown;
|
|
609
609
|
correlationId?: string | undefined;
|
|
610
610
|
}, {
|
|
611
|
-
message: string;
|
|
612
|
-
path: string;
|
|
613
611
|
code: string;
|
|
612
|
+
path: string;
|
|
613
|
+
message: string;
|
|
614
614
|
statusCode: number;
|
|
615
615
|
timestamp: string;
|
|
616
616
|
details?: unknown;
|
|
@@ -630,30 +630,30 @@ export declare const ownedJobsTabContract: {
|
|
|
630
630
|
subjectId: z.ZodString;
|
|
631
631
|
jobId: z.ZodString;
|
|
632
632
|
}, "strip", z.ZodTypeAny, {
|
|
633
|
-
|
|
634
|
-
subjectKind: "CURATED" | "OWNED";
|
|
633
|
+
subjectKind: "OWNED" | "CURATED";
|
|
635
634
|
subjectId: string;
|
|
636
|
-
}, {
|
|
637
635
|
jobId: string;
|
|
638
|
-
|
|
636
|
+
}, {
|
|
637
|
+
subjectKind: "OWNED" | "CURATED";
|
|
639
638
|
subjectId: string;
|
|
639
|
+
jobId: string;
|
|
640
640
|
}>;
|
|
641
641
|
}, "strip", z.ZodTypeAny, {
|
|
642
642
|
tuple: {
|
|
643
|
-
|
|
644
|
-
subjectKind: "CURATED" | "OWNED";
|
|
643
|
+
subjectKind: "OWNED" | "CURATED";
|
|
645
644
|
subjectId: string;
|
|
645
|
+
jobId: string;
|
|
646
646
|
};
|
|
647
647
|
}, {
|
|
648
648
|
tuple: {
|
|
649
|
-
|
|
650
|
-
subjectKind: "CURATED" | "OWNED";
|
|
649
|
+
subjectKind: "OWNED" | "CURATED";
|
|
651
650
|
subjectId: string;
|
|
651
|
+
jobId: string;
|
|
652
652
|
};
|
|
653
653
|
}>;
|
|
654
654
|
path: "/v2/curated-worker-leads/owned-job-matches/book";
|
|
655
655
|
responses: {
|
|
656
|
-
|
|
656
|
+
500: z.ZodObject<{
|
|
657
657
|
statusCode: z.ZodNumber;
|
|
658
658
|
message: z.ZodString;
|
|
659
659
|
code: z.ZodString;
|
|
@@ -662,23 +662,23 @@ export declare const ownedJobsTabContract: {
|
|
|
662
662
|
path: z.ZodString;
|
|
663
663
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
664
664
|
}, "strip", z.ZodTypeAny, {
|
|
665
|
-
message: string;
|
|
666
|
-
path: string;
|
|
667
665
|
code: string;
|
|
666
|
+
path: string;
|
|
667
|
+
message: string;
|
|
668
668
|
statusCode: number;
|
|
669
669
|
timestamp: string;
|
|
670
670
|
details?: unknown;
|
|
671
671
|
correlationId?: string | undefined;
|
|
672
672
|
}, {
|
|
673
|
-
message: string;
|
|
674
|
-
path: string;
|
|
675
673
|
code: string;
|
|
674
|
+
path: string;
|
|
675
|
+
message: string;
|
|
676
676
|
statusCode: number;
|
|
677
677
|
timestamp: string;
|
|
678
678
|
details?: unknown;
|
|
679
679
|
correlationId?: string | undefined;
|
|
680
680
|
}>;
|
|
681
|
-
|
|
681
|
+
400: z.ZodObject<{
|
|
682
682
|
statusCode: z.ZodNumber;
|
|
683
683
|
message: z.ZodString;
|
|
684
684
|
code: z.ZodString;
|
|
@@ -687,23 +687,23 @@ export declare const ownedJobsTabContract: {
|
|
|
687
687
|
path: z.ZodString;
|
|
688
688
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
689
689
|
}, "strip", z.ZodTypeAny, {
|
|
690
|
-
message: string;
|
|
691
|
-
path: string;
|
|
692
690
|
code: string;
|
|
691
|
+
path: string;
|
|
692
|
+
message: string;
|
|
693
693
|
statusCode: number;
|
|
694
694
|
timestamp: string;
|
|
695
695
|
details?: unknown;
|
|
696
696
|
correlationId?: string | undefined;
|
|
697
697
|
}, {
|
|
698
|
-
message: string;
|
|
699
|
-
path: string;
|
|
700
698
|
code: string;
|
|
699
|
+
path: string;
|
|
700
|
+
message: string;
|
|
701
701
|
statusCode: number;
|
|
702
702
|
timestamp: string;
|
|
703
703
|
details?: unknown;
|
|
704
704
|
correlationId?: string | undefined;
|
|
705
705
|
}>;
|
|
706
|
-
|
|
706
|
+
401: z.ZodObject<{
|
|
707
707
|
statusCode: z.ZodNumber;
|
|
708
708
|
message: z.ZodString;
|
|
709
709
|
code: z.ZodString;
|
|
@@ -712,17 +712,17 @@ export declare const ownedJobsTabContract: {
|
|
|
712
712
|
path: z.ZodString;
|
|
713
713
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
714
714
|
}, "strip", z.ZodTypeAny, {
|
|
715
|
-
message: string;
|
|
716
|
-
path: string;
|
|
717
715
|
code: string;
|
|
716
|
+
path: string;
|
|
717
|
+
message: string;
|
|
718
718
|
statusCode: number;
|
|
719
719
|
timestamp: string;
|
|
720
720
|
details?: unknown;
|
|
721
721
|
correlationId?: string | undefined;
|
|
722
722
|
}, {
|
|
723
|
-
message: string;
|
|
724
|
-
path: string;
|
|
725
723
|
code: string;
|
|
724
|
+
path: string;
|
|
725
|
+
message: string;
|
|
726
726
|
statusCode: number;
|
|
727
727
|
timestamp: string;
|
|
728
728
|
details?: unknown;
|
|
@@ -744,17 +744,17 @@ export declare const ownedJobsTabContract: {
|
|
|
744
744
|
path: z.ZodString;
|
|
745
745
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
746
746
|
}, "strip", z.ZodTypeAny, {
|
|
747
|
-
message: string;
|
|
748
|
-
path: string;
|
|
749
747
|
code: string;
|
|
748
|
+
path: string;
|
|
749
|
+
message: string;
|
|
750
750
|
statusCode: number;
|
|
751
751
|
timestamp: string;
|
|
752
752
|
details?: unknown;
|
|
753
753
|
correlationId?: string | undefined;
|
|
754
754
|
}, {
|
|
755
|
-
message: string;
|
|
756
|
-
path: string;
|
|
757
755
|
code: string;
|
|
756
|
+
path: string;
|
|
757
|
+
message: string;
|
|
758
758
|
statusCode: number;
|
|
759
759
|
timestamp: string;
|
|
760
760
|
details?: unknown;
|
|
@@ -769,17 +769,17 @@ export declare const ownedJobsTabContract: {
|
|
|
769
769
|
path: z.ZodString;
|
|
770
770
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
771
771
|
}, "strip", z.ZodTypeAny, {
|
|
772
|
-
message: string;
|
|
773
|
-
path: string;
|
|
774
772
|
code: string;
|
|
773
|
+
path: string;
|
|
774
|
+
message: string;
|
|
775
775
|
statusCode: number;
|
|
776
776
|
timestamp: string;
|
|
777
777
|
details?: unknown;
|
|
778
778
|
correlationId?: string | undefined;
|
|
779
779
|
}, {
|
|
780
|
-
message: string;
|
|
781
|
-
path: string;
|
|
782
780
|
code: string;
|
|
781
|
+
path: string;
|
|
782
|
+
message: string;
|
|
783
783
|
statusCode: number;
|
|
784
784
|
timestamp: string;
|
|
785
785
|
details?: unknown;
|
|
@@ -828,7 +828,7 @@ export declare const ownedJobsTabContract: {
|
|
|
828
828
|
}>;
|
|
829
829
|
path: "/v2/curated-worker-leads/owned-job-matches/worker/:workerId/do-not-contact";
|
|
830
830
|
responses: {
|
|
831
|
-
|
|
831
|
+
500: z.ZodObject<{
|
|
832
832
|
statusCode: z.ZodNumber;
|
|
833
833
|
message: z.ZodString;
|
|
834
834
|
code: z.ZodString;
|
|
@@ -837,23 +837,23 @@ export declare const ownedJobsTabContract: {
|
|
|
837
837
|
path: z.ZodString;
|
|
838
838
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
839
839
|
}, "strip", z.ZodTypeAny, {
|
|
840
|
-
message: string;
|
|
841
|
-
path: string;
|
|
842
840
|
code: string;
|
|
841
|
+
path: string;
|
|
842
|
+
message: string;
|
|
843
843
|
statusCode: number;
|
|
844
844
|
timestamp: string;
|
|
845
845
|
details?: unknown;
|
|
846
846
|
correlationId?: string | undefined;
|
|
847
847
|
}, {
|
|
848
|
-
message: string;
|
|
849
|
-
path: string;
|
|
850
848
|
code: string;
|
|
849
|
+
path: string;
|
|
850
|
+
message: string;
|
|
851
851
|
statusCode: number;
|
|
852
852
|
timestamp: string;
|
|
853
853
|
details?: unknown;
|
|
854
854
|
correlationId?: string | undefined;
|
|
855
855
|
}>;
|
|
856
|
-
|
|
856
|
+
400: z.ZodObject<{
|
|
857
857
|
statusCode: z.ZodNumber;
|
|
858
858
|
message: z.ZodString;
|
|
859
859
|
code: z.ZodString;
|
|
@@ -862,23 +862,23 @@ export declare const ownedJobsTabContract: {
|
|
|
862
862
|
path: z.ZodString;
|
|
863
863
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
864
864
|
}, "strip", z.ZodTypeAny, {
|
|
865
|
-
message: string;
|
|
866
|
-
path: string;
|
|
867
865
|
code: string;
|
|
866
|
+
path: string;
|
|
867
|
+
message: string;
|
|
868
868
|
statusCode: number;
|
|
869
869
|
timestamp: string;
|
|
870
870
|
details?: unknown;
|
|
871
871
|
correlationId?: string | undefined;
|
|
872
872
|
}, {
|
|
873
|
-
message: string;
|
|
874
|
-
path: string;
|
|
875
873
|
code: string;
|
|
874
|
+
path: string;
|
|
875
|
+
message: string;
|
|
876
876
|
statusCode: number;
|
|
877
877
|
timestamp: string;
|
|
878
878
|
details?: unknown;
|
|
879
879
|
correlationId?: string | undefined;
|
|
880
880
|
}>;
|
|
881
|
-
|
|
881
|
+
401: z.ZodObject<{
|
|
882
882
|
statusCode: z.ZodNumber;
|
|
883
883
|
message: z.ZodString;
|
|
884
884
|
code: z.ZodString;
|
|
@@ -887,17 +887,17 @@ export declare const ownedJobsTabContract: {
|
|
|
887
887
|
path: z.ZodString;
|
|
888
888
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
889
889
|
}, "strip", z.ZodTypeAny, {
|
|
890
|
-
message: string;
|
|
891
|
-
path: string;
|
|
892
890
|
code: string;
|
|
891
|
+
path: string;
|
|
892
|
+
message: string;
|
|
893
893
|
statusCode: number;
|
|
894
894
|
timestamp: string;
|
|
895
895
|
details?: unknown;
|
|
896
896
|
correlationId?: string | undefined;
|
|
897
897
|
}, {
|
|
898
|
-
message: string;
|
|
899
|
-
path: string;
|
|
900
898
|
code: string;
|
|
899
|
+
path: string;
|
|
900
|
+
message: string;
|
|
901
901
|
statusCode: number;
|
|
902
902
|
timestamp: string;
|
|
903
903
|
details?: unknown;
|
|
@@ -919,17 +919,17 @@ export declare const ownedJobsTabContract: {
|
|
|
919
919
|
path: z.ZodString;
|
|
920
920
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
921
921
|
}, "strip", z.ZodTypeAny, {
|
|
922
|
-
message: string;
|
|
923
|
-
path: string;
|
|
924
922
|
code: string;
|
|
923
|
+
path: string;
|
|
924
|
+
message: string;
|
|
925
925
|
statusCode: number;
|
|
926
926
|
timestamp: string;
|
|
927
927
|
details?: unknown;
|
|
928
928
|
correlationId?: string | undefined;
|
|
929
929
|
}, {
|
|
930
|
-
message: string;
|
|
931
|
-
path: string;
|
|
932
930
|
code: string;
|
|
931
|
+
path: string;
|
|
932
|
+
message: string;
|
|
933
933
|
statusCode: number;
|
|
934
934
|
timestamp: string;
|
|
935
935
|
details?: unknown;
|
|
@@ -944,17 +944,17 @@ export declare const ownedJobsTabContract: {
|
|
|
944
944
|
path: z.ZodString;
|
|
945
945
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
946
946
|
}, "strip", z.ZodTypeAny, {
|
|
947
|
-
message: string;
|
|
948
|
-
path: string;
|
|
949
947
|
code: string;
|
|
948
|
+
path: string;
|
|
949
|
+
message: string;
|
|
950
950
|
statusCode: number;
|
|
951
951
|
timestamp: string;
|
|
952
952
|
details?: unknown;
|
|
953
953
|
correlationId?: string | undefined;
|
|
954
954
|
}, {
|
|
955
|
-
message: string;
|
|
956
|
-
path: string;
|
|
957
955
|
code: string;
|
|
956
|
+
path: string;
|
|
957
|
+
message: string;
|
|
958
958
|
statusCode: number;
|
|
959
959
|
timestamp: string;
|
|
960
960
|
details?: unknown;
|
|
@@ -978,7 +978,7 @@ export declare const ownedJobsTabContract: {
|
|
|
978
978
|
body: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
979
979
|
path: "/v2/curated-worker-leads/owned-job-matches/worker/:workerId/do-not-contact/clear";
|
|
980
980
|
responses: {
|
|
981
|
-
|
|
981
|
+
500: z.ZodObject<{
|
|
982
982
|
statusCode: z.ZodNumber;
|
|
983
983
|
message: z.ZodString;
|
|
984
984
|
code: z.ZodString;
|
|
@@ -987,23 +987,23 @@ export declare const ownedJobsTabContract: {
|
|
|
987
987
|
path: z.ZodString;
|
|
988
988
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
989
989
|
}, "strip", z.ZodTypeAny, {
|
|
990
|
-
message: string;
|
|
991
|
-
path: string;
|
|
992
990
|
code: string;
|
|
991
|
+
path: string;
|
|
992
|
+
message: string;
|
|
993
993
|
statusCode: number;
|
|
994
994
|
timestamp: string;
|
|
995
995
|
details?: unknown;
|
|
996
996
|
correlationId?: string | undefined;
|
|
997
997
|
}, {
|
|
998
|
-
message: string;
|
|
999
|
-
path: string;
|
|
1000
998
|
code: string;
|
|
999
|
+
path: string;
|
|
1000
|
+
message: string;
|
|
1001
1001
|
statusCode: number;
|
|
1002
1002
|
timestamp: string;
|
|
1003
1003
|
details?: unknown;
|
|
1004
1004
|
correlationId?: string | undefined;
|
|
1005
1005
|
}>;
|
|
1006
|
-
|
|
1006
|
+
400: z.ZodObject<{
|
|
1007
1007
|
statusCode: z.ZodNumber;
|
|
1008
1008
|
message: z.ZodString;
|
|
1009
1009
|
code: z.ZodString;
|
|
@@ -1012,23 +1012,23 @@ export declare const ownedJobsTabContract: {
|
|
|
1012
1012
|
path: z.ZodString;
|
|
1013
1013
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1014
1014
|
}, "strip", z.ZodTypeAny, {
|
|
1015
|
-
message: string;
|
|
1016
|
-
path: string;
|
|
1017
1015
|
code: string;
|
|
1016
|
+
path: string;
|
|
1017
|
+
message: string;
|
|
1018
1018
|
statusCode: number;
|
|
1019
1019
|
timestamp: string;
|
|
1020
1020
|
details?: unknown;
|
|
1021
1021
|
correlationId?: string | undefined;
|
|
1022
1022
|
}, {
|
|
1023
|
-
message: string;
|
|
1024
|
-
path: string;
|
|
1025
1023
|
code: string;
|
|
1024
|
+
path: string;
|
|
1025
|
+
message: string;
|
|
1026
1026
|
statusCode: number;
|
|
1027
1027
|
timestamp: string;
|
|
1028
1028
|
details?: unknown;
|
|
1029
1029
|
correlationId?: string | undefined;
|
|
1030
1030
|
}>;
|
|
1031
|
-
|
|
1031
|
+
401: z.ZodObject<{
|
|
1032
1032
|
statusCode: z.ZodNumber;
|
|
1033
1033
|
message: z.ZodString;
|
|
1034
1034
|
code: z.ZodString;
|
|
@@ -1037,17 +1037,17 @@ export declare const ownedJobsTabContract: {
|
|
|
1037
1037
|
path: z.ZodString;
|
|
1038
1038
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1039
1039
|
}, "strip", z.ZodTypeAny, {
|
|
1040
|
-
message: string;
|
|
1041
|
-
path: string;
|
|
1042
1040
|
code: string;
|
|
1041
|
+
path: string;
|
|
1042
|
+
message: string;
|
|
1043
1043
|
statusCode: number;
|
|
1044
1044
|
timestamp: string;
|
|
1045
1045
|
details?: unknown;
|
|
1046
1046
|
correlationId?: string | undefined;
|
|
1047
1047
|
}, {
|
|
1048
|
-
message: string;
|
|
1049
|
-
path: string;
|
|
1050
1048
|
code: string;
|
|
1049
|
+
path: string;
|
|
1050
|
+
message: string;
|
|
1051
1051
|
statusCode: number;
|
|
1052
1052
|
timestamp: string;
|
|
1053
1053
|
details?: unknown;
|
|
@@ -1069,17 +1069,17 @@ export declare const ownedJobsTabContract: {
|
|
|
1069
1069
|
path: z.ZodString;
|
|
1070
1070
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1071
1071
|
}, "strip", z.ZodTypeAny, {
|
|
1072
|
-
message: string;
|
|
1073
|
-
path: string;
|
|
1074
1072
|
code: string;
|
|
1073
|
+
path: string;
|
|
1074
|
+
message: string;
|
|
1075
1075
|
statusCode: number;
|
|
1076
1076
|
timestamp: string;
|
|
1077
1077
|
details?: unknown;
|
|
1078
1078
|
correlationId?: string | undefined;
|
|
1079
1079
|
}, {
|
|
1080
|
-
message: string;
|
|
1081
|
-
path: string;
|
|
1082
1080
|
code: string;
|
|
1081
|
+
path: string;
|
|
1082
|
+
message: string;
|
|
1083
1083
|
statusCode: number;
|
|
1084
1084
|
timestamp: string;
|
|
1085
1085
|
details?: unknown;
|
|
@@ -1094,17 +1094,17 @@ export declare const ownedJobsTabContract: {
|
|
|
1094
1094
|
path: z.ZodString;
|
|
1095
1095
|
correlationId: z.ZodOptional<z.ZodString>;
|
|
1096
1096
|
}, "strip", z.ZodTypeAny, {
|
|
1097
|
-
message: string;
|
|
1098
|
-
path: string;
|
|
1099
1097
|
code: string;
|
|
1098
|
+
path: string;
|
|
1099
|
+
message: string;
|
|
1100
1100
|
statusCode: number;
|
|
1101
1101
|
timestamp: string;
|
|
1102
1102
|
details?: unknown;
|
|
1103
1103
|
correlationId?: string | undefined;
|
|
1104
1104
|
}, {
|
|
1105
|
-
message: string;
|
|
1106
|
-
path: string;
|
|
1107
1105
|
code: string;
|
|
1106
|
+
path: string;
|
|
1107
|
+
message: string;
|
|
1108
1108
|
statusCode: number;
|
|
1109
1109
|
timestamp: string;
|
|
1110
1110
|
details?: unknown;
|