@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 +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/collection.ts +2 -0
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