lancer-shared 1.2.294 → 1.2.295

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.
@@ -458,7 +458,6 @@ export declare const verifyBidderAccountCredentialsResponseSchema: z.ZodObject<{
458
458
  }[];
459
459
  agencyId: string | null;
460
460
  }>, "many">>;
461
- specialisedProfiles: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
462
461
  }, "strip", z.ZodTypeAny, {
463
462
  agencies: {
464
463
  name: string;
@@ -470,7 +469,6 @@ export declare const verifyBidderAccountCredentialsResponseSchema: z.ZodObject<{
470
469
  }[];
471
470
  agencyId: string | null;
472
471
  }[] | null;
473
- specialisedProfiles: string[] | null;
474
472
  accountName: string | null;
475
473
  accountPhotoUrl: string | null;
476
474
  }, {
@@ -484,7 +482,6 @@ export declare const verifyBidderAccountCredentialsResponseSchema: z.ZodObject<{
484
482
  }[];
485
483
  agencyId: string | null;
486
484
  }[] | null;
487
- specialisedProfiles: string[] | null;
488
485
  accountName: string | null;
489
486
  accountPhotoUrl: string | null;
490
487
  }>;
@@ -41,14 +41,17 @@ export declare const planFeatureSchema: z.ZodObject<{
41
41
  id: z.ZodString;
42
42
  description: z.ZodString;
43
43
  tooltipContent: z.ZodNullable<z.ZodString>;
44
+ icon: z.ZodNullable<z.ZodString>;
44
45
  }, "strip", z.ZodTypeAny, {
45
46
  id: string;
46
47
  description: string;
47
48
  tooltipContent: string | null;
49
+ icon: string | null;
48
50
  }, {
49
51
  id: string;
50
52
  description: string;
51
53
  tooltipContent: string | null;
54
+ icon: string | null;
52
55
  }>;
53
56
  export declare const planPricingIntervalSchema: z.ZodObject<{
54
57
  amount: z.ZodNumber;
@@ -165,14 +168,17 @@ export declare const planSchema: z.ZodObject<{
165
168
  id: z.ZodString;
166
169
  description: z.ZodString;
167
170
  tooltipContent: z.ZodNullable<z.ZodString>;
171
+ icon: z.ZodNullable<z.ZodString>;
168
172
  }, "strip", z.ZodTypeAny, {
169
173
  id: string;
170
174
  description: string;
171
175
  tooltipContent: string | null;
176
+ icon: string | null;
172
177
  }, {
173
178
  id: string;
174
179
  description: string;
175
180
  tooltipContent: string | null;
181
+ icon: string | null;
176
182
  }>, "many">;
177
183
  sortOrder: z.ZodNumber;
178
184
  isActive: z.ZodBoolean;
@@ -267,6 +273,7 @@ export declare const planSchema: z.ZodObject<{
267
273
  lookupKey: string;
268
274
  }[] | undefined;
269
275
  }>;
276
+ icon: z.ZodNullable<z.ZodString>;
270
277
  }, "strip", z.ZodTypeAny, {
271
278
  id: string;
272
279
  name: string;
@@ -297,11 +304,13 @@ export declare const planSchema: z.ZodObject<{
297
304
  createdAt: number;
298
305
  isActive: boolean;
299
306
  archivedAt: number | null;
307
+ icon: string | null;
300
308
  slug: string;
301
309
  features: {
302
310
  id: string;
303
311
  description: string;
304
312
  tooltipContent: string | null;
313
+ icon: string | null;
305
314
  }[];
306
315
  hasFreeTrial: boolean;
307
316
  }, {
@@ -334,11 +343,13 @@ export declare const planSchema: z.ZodObject<{
334
343
  createdAt: number;
335
344
  isActive: boolean;
336
345
  archivedAt: number | null;
346
+ icon: string | null;
337
347
  slug: string;
338
348
  features: {
339
349
  id: string;
340
350
  description: string;
341
351
  tooltipContent: string | null;
352
+ icon: string | null;
342
353
  }[];
343
354
  hasFreeTrial: boolean;
344
355
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lancer-shared",
3
- "version": "1.2.294",
3
+ "version": "1.2.295",
4
4
  "description": "This package contains shared stuff.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "dist/bundle.cjs.js",