lancer-shared 1.2.110 → 1.2.111

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.
@@ -12738,6 +12738,7 @@ const organizationSchema = objectType({
12738
12738
  appTrialEndsAt: numberType().nullable(),
12739
12739
  });
12740
12740
  const caseStudySchema = objectType({
12741
+ id: stringType(),
12741
12742
  title: stringType(),
12742
12743
  description: stringType(),
12743
12744
  });
@@ -279,12 +279,15 @@ export declare const organizationSchema: z.ZodObject<{
279
279
  appTrialEndsAt: number | null;
280
280
  }>;
281
281
  export declare const caseStudySchema: z.ZodObject<{
282
+ id: z.ZodString;
282
283
  title: z.ZodString;
283
284
  description: z.ZodString;
284
285
  }, "strip", z.ZodTypeAny, {
286
+ id: string;
285
287
  title: string;
286
288
  description: string;
287
289
  }, {
290
+ id: string;
288
291
  title: string;
289
292
  description: string;
290
293
  }>;
@@ -313,12 +316,15 @@ declare const organizationProfileSchema: z.ZodObject<{
313
316
  teamSize: number;
314
317
  }>;
315
318
  caseStudies: z.ZodArray<z.ZodObject<{
319
+ id: z.ZodString;
316
320
  title: z.ZodString;
317
321
  description: z.ZodString;
318
322
  }, "strip", z.ZodTypeAny, {
323
+ id: string;
319
324
  title: string;
320
325
  description: string;
321
326
  }, {
327
+ id: string;
322
328
  title: string;
323
329
  description: string;
324
330
  }>, "many">;
@@ -338,6 +344,7 @@ declare const organizationProfileSchema: z.ZodObject<{
338
344
  teamSize: number;
339
345
  };
340
346
  caseStudies: {
347
+ id: string;
341
348
  title: string;
342
349
  description: string;
343
350
  }[];
@@ -357,6 +364,7 @@ declare const organizationProfileSchema: z.ZodObject<{
357
364
  teamSize: number;
358
365
  };
359
366
  caseStudies: {
367
+ id: string;
360
368
  title: string;
361
369
  description: string;
362
370
  }[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lancer-shared",
3
- "version": "1.2.110",
3
+ "version": "1.2.111",
4
4
  "description": "This package contains shared stuff.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "dist/bundle.cjs.js",