lancer-shared 1.2.292 → 1.2.293

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.
@@ -95,6 +95,7 @@ export declare const bidderAccountSchema: z.ZodObject<{
95
95
  }[];
96
96
  agencyId: string | null;
97
97
  }>, "many">>;
98
+ specialisedProfiles: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
98
99
  instanceId: z.ZodNullable<z.ZodString>;
99
100
  createdAt: z.ZodNumber;
100
101
  updatedAt: z.ZodNumber;
@@ -128,6 +129,7 @@ export declare const bidderAccountSchema: z.ZodObject<{
128
129
  }[];
129
130
  agencyId: string | null;
130
131
  }[] | null;
132
+ specialisedProfiles: string[] | null;
131
133
  instanceId: string | null;
132
134
  createdAt: number;
133
135
  updatedAt: number;
@@ -160,6 +162,7 @@ export declare const bidderAccountSchema: z.ZodObject<{
160
162
  }[];
161
163
  agencyId: string | null;
162
164
  }[] | null;
165
+ specialisedProfiles: string[] | null;
163
166
  instanceId: string | null;
164
167
  createdAt: number;
165
168
  updatedAt: number;
@@ -232,6 +235,7 @@ export declare const createBidderAccountSchema: z.ZodObject<z.objectUtil.extendS
232
235
  }[];
233
236
  agencyId: string | null;
234
237
  }>, "many">>;
238
+ specialisedProfiles: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
235
239
  instanceId: z.ZodNullable<z.ZodString>;
236
240
  createdAt: z.ZodNumber;
237
241
  updatedAt: z.ZodNumber;
@@ -336,6 +340,7 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
336
340
  }[];
337
341
  agencyId: string | null;
338
342
  }>, "many">>>;
343
+ specialisedProfiles: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
339
344
  instanceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
340
345
  createdAt: z.ZodOptional<z.ZodNumber>;
341
346
  updatedAt: z.ZodOptional<z.ZodNumber>;
@@ -367,6 +372,7 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
367
372
  }[];
368
373
  agencyId: string | null;
369
374
  }[] | null | undefined;
375
+ specialisedProfiles?: string[] | null | undefined;
370
376
  instanceId?: string | null | undefined;
371
377
  createdAt?: number | undefined;
372
378
  updatedAt?: number | undefined;
@@ -398,6 +404,7 @@ export declare const updateBidderAccountSchema: z.ZodObject<{
398
404
  }[];
399
405
  agencyId: string | null;
400
406
  }[] | null | undefined;
407
+ specialisedProfiles?: string[] | null | undefined;
401
408
  instanceId?: string | null | undefined;
402
409
  createdAt?: number | undefined;
403
410
  updatedAt?: number | undefined;
@@ -451,6 +458,7 @@ export declare const verifyBidderAccountCredentialsResponseSchema: z.ZodObject<{
451
458
  }[];
452
459
  agencyId: string | null;
453
460
  }>, "many">>;
461
+ specialisedProfiles: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
454
462
  }, "strip", z.ZodTypeAny, {
455
463
  agencies: {
456
464
  name: string;
@@ -462,6 +470,7 @@ export declare const verifyBidderAccountCredentialsResponseSchema: z.ZodObject<{
462
470
  }[];
463
471
  agencyId: string | null;
464
472
  }[] | null;
473
+ specialisedProfiles: string[] | null;
465
474
  accountName: string | null;
466
475
  accountPhotoUrl: string | null;
467
476
  }, {
@@ -475,6 +484,7 @@ export declare const verifyBidderAccountCredentialsResponseSchema: z.ZodObject<{
475
484
  }[];
476
485
  agencyId: string | null;
477
486
  }[] | null;
487
+ specialisedProfiles: string[] | null;
478
488
  accountName: string | null;
479
489
  accountPhotoUrl: string | null;
480
490
  }>;
@@ -1214,13 +1214,13 @@ export declare const agentPickSpecialisedProfileRequestSchema: z.ZodObject<{
1214
1214
  jobDescription: z.ZodString;
1215
1215
  specialisedProfiles: z.ZodArray<z.ZodString, "many">;
1216
1216
  }, "strip", z.ZodTypeAny, {
1217
+ specialisedProfiles: string[];
1217
1218
  jobTitle: string;
1218
1219
  jobDescription: string;
1219
- specialisedProfiles: string[];
1220
1220
  }, {
1221
+ specialisedProfiles: string[];
1221
1222
  jobTitle: string;
1222
1223
  jobDescription: string;
1223
- specialisedProfiles: string[];
1224
1224
  }>;
1225
1225
  export declare const agentPickSpecialisedProfileResponseSchema: z.ZodObject<{
1226
1226
  selected_profile: z.ZodString;
@@ -220,6 +220,7 @@ export declare const verifyCredentialsSucceededEventMetadataSchema: z.ZodObject<
220
220
  }[];
221
221
  agencyId: string | null;
222
222
  }>, "many">;
223
+ specialisedProfiles: z.ZodArray<z.ZodString, "many">;
223
224
  }, "strip", z.ZodTypeAny, {
224
225
  agencies: {
225
226
  name: string;
@@ -231,6 +232,7 @@ export declare const verifyCredentialsSucceededEventMetadataSchema: z.ZodObject<
231
232
  }[];
232
233
  agencyId: string | null;
233
234
  }[];
235
+ specialisedProfiles: string[];
234
236
  bidderAccountId: string;
235
237
  accountName: string;
236
238
  accountPhotoUrl: string;
@@ -245,6 +247,7 @@ export declare const verifyCredentialsSucceededEventMetadataSchema: z.ZodObject<
245
247
  }[];
246
248
  agencyId: string | null;
247
249
  }[];
250
+ specialisedProfiles: string[];
248
251
  bidderAccountId: string;
249
252
  accountName: string;
250
253
  accountPhotoUrl: string;
@@ -2196,6 +2196,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
2196
2196
  }[];
2197
2197
  agencyId: string | null;
2198
2198
  }>, "many">>;
2199
+ specialisedProfiles: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
2199
2200
  instanceId: z.ZodNullable<z.ZodString>;
2200
2201
  createdAt: z.ZodNumber;
2201
2202
  updatedAt: z.ZodNumber;
@@ -2229,6 +2230,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
2229
2230
  }[];
2230
2231
  agencyId: string | null;
2231
2232
  }[] | null;
2233
+ specialisedProfiles: string[] | null;
2232
2234
  instanceId: string | null;
2233
2235
  createdAt: number;
2234
2236
  updatedAt: number;
@@ -2261,6 +2263,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
2261
2263
  }[];
2262
2264
  agencyId: string | null;
2263
2265
  }[] | null;
2266
+ specialisedProfiles: string[] | null;
2264
2267
  instanceId: string | null;
2265
2268
  createdAt: number;
2266
2269
  updatedAt: number;
@@ -2653,6 +2656,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
2653
2656
  }[];
2654
2657
  agencyId: string | null;
2655
2658
  }[] | null;
2659
+ specialisedProfiles: string[] | null;
2656
2660
  instanceId: string | null;
2657
2661
  createdAt: number;
2658
2662
  updatedAt: number;
@@ -3045,6 +3049,7 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
3045
3049
  }[];
3046
3050
  agencyId: string | null;
3047
3051
  }[] | null;
3052
+ specialisedProfiles: string[] | null;
3048
3053
  instanceId: string | null;
3049
3054
  createdAt: number;
3050
3055
  updatedAt: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lancer-shared",
3
- "version": "1.2.292",
3
+ "version": "1.2.293",
4
4
  "description": "This package contains shared stuff.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "dist/bundle.cjs.js",