@supernova-studio/model 0.57.13 → 0.57.14

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/index.d.mts CHANGED
@@ -135348,6 +135348,7 @@ declare const Collection: z.ZodObject<{
135348
135348
  elementPropertyOptionId: z.ZodString;
135349
135349
  createdAt: z.ZodDate;
135350
135350
  updatedAt: z.ZodDate;
135351
+ sortOrder: z.ZodString;
135351
135352
  origin: z.ZodOptional<z.ZodObject<{
135352
135353
  id: z.ZodString;
135353
135354
  sourceId: z.ZodString;
@@ -135366,6 +135367,7 @@ declare const Collection: z.ZodObject<{
135366
135367
  name: string;
135367
135368
  description: string;
135368
135369
  designSystemVersionId: string;
135370
+ sortOrder: string;
135369
135371
  elementPropertyOptionId: string;
135370
135372
  origin?: {
135371
135373
  id: string;
@@ -135382,6 +135384,7 @@ declare const Collection: z.ZodObject<{
135382
135384
  name: string;
135383
135385
  description: string;
135384
135386
  designSystemVersionId: string;
135387
+ sortOrder: string;
135385
135388
  elementPropertyOptionId: string;
135386
135389
  origin?: {
135387
135390
  id: string;
package/dist/index.d.ts CHANGED
@@ -135348,6 +135348,7 @@ declare const Collection: z.ZodObject<{
135348
135348
  elementPropertyOptionId: z.ZodString;
135349
135349
  createdAt: z.ZodDate;
135350
135350
  updatedAt: z.ZodDate;
135351
+ sortOrder: z.ZodString;
135351
135352
  origin: z.ZodOptional<z.ZodObject<{
135352
135353
  id: z.ZodString;
135353
135354
  sourceId: z.ZodString;
@@ -135366,6 +135367,7 @@ declare const Collection: z.ZodObject<{
135366
135367
  name: string;
135367
135368
  description: string;
135368
135369
  designSystemVersionId: string;
135370
+ sortOrder: string;
135369
135371
  elementPropertyOptionId: string;
135370
135372
  origin?: {
135371
135373
  id: string;
@@ -135382,6 +135384,7 @@ declare const Collection: z.ZodObject<{
135382
135384
  name: string;
135383
135385
  description: string;
135384
135386
  designSystemVersionId: string;
135387
+ sortOrder: string;
135385
135388
  elementPropertyOptionId: string;
135386
135389
  origin?: {
135387
135390
  id: string;
package/dist/index.js CHANGED
@@ -3636,6 +3636,7 @@ var Collection = _zod.z.object({
3636
3636
  elementPropertyOptionId: _zod.z.string(),
3637
3637
  createdAt: _zod.z.coerce.date(),
3638
3638
  updatedAt: _zod.z.coerce.date(),
3639
+ sortOrder: _zod.z.string(),
3639
3640
  origin: CollectionOrigin.optional()
3640
3641
  });
3641
3642