lancer-shared 1.2.306 → 1.2.307
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.
|
@@ -12,6 +12,16 @@ export declare const bidderAccountAgencyContractorSchema: z.ZodObject<{
|
|
|
12
12
|
name: string;
|
|
13
13
|
specializedProfiles: string[];
|
|
14
14
|
}>;
|
|
15
|
+
export declare const bidderAccountPortfolioSchema: z.ZodObject<{
|
|
16
|
+
title: z.ZodString;
|
|
17
|
+
imageUrl: z.ZodString;
|
|
18
|
+
}, "strip", z.ZodTypeAny, {
|
|
19
|
+
title: string;
|
|
20
|
+
imageUrl: string;
|
|
21
|
+
}, {
|
|
22
|
+
title: string;
|
|
23
|
+
imageUrl: string;
|
|
24
|
+
}>;
|
|
15
25
|
export declare const bidderAccountAgencySchema: z.ZodObject<{
|
|
16
26
|
name: z.ZodString;
|
|
17
27
|
logoUrl: z.ZodNullable<z.ZodString>;
|
|
@@ -97,6 +107,16 @@ export declare const bidderAccountSchema: z.ZodObject<{
|
|
|
97
107
|
agencyId: string | null;
|
|
98
108
|
}>, "many">>;
|
|
99
109
|
specialisedProfiles: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
110
|
+
portfolios: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
111
|
+
title: z.ZodString;
|
|
112
|
+
imageUrl: z.ZodString;
|
|
113
|
+
}, "strip", z.ZodTypeAny, {
|
|
114
|
+
title: string;
|
|
115
|
+
imageUrl: string;
|
|
116
|
+
}, {
|
|
117
|
+
title: string;
|
|
118
|
+
imageUrl: string;
|
|
119
|
+
}>, "many">>;
|
|
100
120
|
instanceId: z.ZodNullable<z.ZodString>;
|
|
101
121
|
createdAt: z.ZodNumber;
|
|
102
122
|
updatedAt: z.ZodNumber;
|
|
@@ -131,6 +151,10 @@ export declare const bidderAccountSchema: z.ZodObject<{
|
|
|
131
151
|
agencyId: string | null;
|
|
132
152
|
}[] | null;
|
|
133
153
|
specialisedProfiles: string[] | null;
|
|
154
|
+
portfolios: {
|
|
155
|
+
title: string;
|
|
156
|
+
imageUrl: string;
|
|
157
|
+
}[] | null;
|
|
134
158
|
instanceId: string | null;
|
|
135
159
|
createdAt: number;
|
|
136
160
|
updatedAt: number;
|
|
@@ -165,6 +189,10 @@ export declare const bidderAccountSchema: z.ZodObject<{
|
|
|
165
189
|
agencyId: string | null;
|
|
166
190
|
}[] | null;
|
|
167
191
|
specialisedProfiles: string[] | null;
|
|
192
|
+
portfolios: {
|
|
193
|
+
title: string;
|
|
194
|
+
imageUrl: string;
|
|
195
|
+
}[] | null;
|
|
168
196
|
instanceId: string | null;
|
|
169
197
|
createdAt: number;
|
|
170
198
|
updatedAt: number;
|
|
@@ -243,6 +271,16 @@ export declare const createBidderAccountSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
243
271
|
agencyId: string | null;
|
|
244
272
|
}>, "many">>;
|
|
245
273
|
specialisedProfiles: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
274
|
+
portfolios: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
275
|
+
title: z.ZodString;
|
|
276
|
+
imageUrl: z.ZodString;
|
|
277
|
+
}, "strip", z.ZodTypeAny, {
|
|
278
|
+
title: string;
|
|
279
|
+
imageUrl: string;
|
|
280
|
+
}, {
|
|
281
|
+
title: string;
|
|
282
|
+
imageUrl: string;
|
|
283
|
+
}>, "many">>;
|
|
246
284
|
instanceId: z.ZodNullable<z.ZodString>;
|
|
247
285
|
createdAt: z.ZodNumber;
|
|
248
286
|
updatedAt: z.ZodNumber;
|
|
@@ -348,6 +386,16 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
|
|
|
348
386
|
agencyId: string | null;
|
|
349
387
|
}>, "many">>>;
|
|
350
388
|
specialisedProfiles: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
389
|
+
portfolios: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
390
|
+
title: z.ZodString;
|
|
391
|
+
imageUrl: z.ZodString;
|
|
392
|
+
}, "strip", z.ZodTypeAny, {
|
|
393
|
+
title: string;
|
|
394
|
+
imageUrl: string;
|
|
395
|
+
}, {
|
|
396
|
+
title: string;
|
|
397
|
+
imageUrl: string;
|
|
398
|
+
}>, "many">>>;
|
|
351
399
|
instanceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
352
400
|
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
353
401
|
updatedAt: z.ZodOptional<z.ZodNumber>;
|
|
@@ -381,6 +429,10 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
|
|
|
381
429
|
agencyId: string | null;
|
|
382
430
|
}[] | null | undefined;
|
|
383
431
|
specialisedProfiles?: string[] | null | undefined;
|
|
432
|
+
portfolios?: {
|
|
433
|
+
title: string;
|
|
434
|
+
imageUrl: string;
|
|
435
|
+
}[] | null | undefined;
|
|
384
436
|
instanceId?: string | null | undefined;
|
|
385
437
|
createdAt?: number | undefined;
|
|
386
438
|
updatedAt?: number | undefined;
|
|
@@ -414,6 +466,10 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
|
|
|
414
466
|
agencyId: string | null;
|
|
415
467
|
}[] | null | undefined;
|
|
416
468
|
specialisedProfiles?: string[] | null | undefined;
|
|
469
|
+
portfolios?: {
|
|
470
|
+
title: string;
|
|
471
|
+
imageUrl: string;
|
|
472
|
+
}[] | null | undefined;
|
|
417
473
|
instanceId?: string | null | undefined;
|
|
418
474
|
createdAt?: number | undefined;
|
|
419
475
|
updatedAt?: number | undefined;
|
|
@@ -221,6 +221,16 @@ export declare const verifyCredentialsSucceededEventMetadataSchema: z.ZodObject<
|
|
|
221
221
|
agencyId: string | null;
|
|
222
222
|
}>, "many">;
|
|
223
223
|
specialisedProfiles: z.ZodArray<z.ZodString, "many">;
|
|
224
|
+
portfolios: z.ZodArray<z.ZodObject<{
|
|
225
|
+
title: z.ZodString;
|
|
226
|
+
imageUrl: z.ZodString;
|
|
227
|
+
}, "strip", z.ZodTypeAny, {
|
|
228
|
+
title: string;
|
|
229
|
+
imageUrl: string;
|
|
230
|
+
}, {
|
|
231
|
+
title: string;
|
|
232
|
+
imageUrl: string;
|
|
233
|
+
}>, "many">;
|
|
224
234
|
}, "strip", z.ZodTypeAny, {
|
|
225
235
|
bidderAccountId: string;
|
|
226
236
|
accountName: string;
|
|
@@ -236,6 +246,10 @@ export declare const verifyCredentialsSucceededEventMetadataSchema: z.ZodObject<
|
|
|
236
246
|
agencyId: string | null;
|
|
237
247
|
}[];
|
|
238
248
|
specialisedProfiles: string[];
|
|
249
|
+
portfolios: {
|
|
250
|
+
title: string;
|
|
251
|
+
imageUrl: string;
|
|
252
|
+
}[];
|
|
239
253
|
}, {
|
|
240
254
|
bidderAccountId: string;
|
|
241
255
|
accountName: string;
|
|
@@ -251,6 +265,10 @@ export declare const verifyCredentialsSucceededEventMetadataSchema: z.ZodObject<
|
|
|
251
265
|
agencyId: string | null;
|
|
252
266
|
}[];
|
|
253
267
|
specialisedProfiles: string[];
|
|
268
|
+
portfolios: {
|
|
269
|
+
title: string;
|
|
270
|
+
imageUrl: string;
|
|
271
|
+
}[];
|
|
254
272
|
}>;
|
|
255
273
|
export declare const verifyCredentialsFailedEventMetadataSchema: z.ZodObject<{
|
|
256
274
|
bidderAccountId: z.ZodString;
|
|
@@ -289,8 +307,8 @@ export declare const suitabilityPendingEventMetadataSchema: z.ZodObject<{
|
|
|
289
307
|
}, "strip", z.ZodTypeAny, {
|
|
290
308
|
timestamp: number;
|
|
291
309
|
jobUrl: string;
|
|
292
|
-
jobId: string;
|
|
293
310
|
title: string;
|
|
311
|
+
jobId: string;
|
|
294
312
|
applyToLeads: {
|
|
295
313
|
campaignId: string;
|
|
296
314
|
leadId: string;
|
|
@@ -298,8 +316,8 @@ export declare const suitabilityPendingEventMetadataSchema: z.ZodObject<{
|
|
|
298
316
|
}, {
|
|
299
317
|
timestamp: number;
|
|
300
318
|
jobUrl: string;
|
|
301
|
-
jobId: string;
|
|
302
319
|
title: string;
|
|
320
|
+
jobId: string;
|
|
303
321
|
applyToLeads: {
|
|
304
322
|
campaignId: string;
|
|
305
323
|
leadId: string;
|