@supernova-studio/model 1.6.7 → 1.6.8
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 +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -145295,16 +145295,19 @@ declare const StorybookEntry: z.ZodObject<{
|
|
|
145295
145295
|
type: z.ZodEnum<["story", "docs"]>;
|
|
145296
145296
|
name: z.ZodString;
|
|
145297
145297
|
title: z.ZodString;
|
|
145298
|
+
index: z.ZodOptional<z.ZodNumber>;
|
|
145298
145299
|
}, "strip", z.ZodTypeAny, {
|
|
145299
145300
|
type: "docs" | "story";
|
|
145300
145301
|
id: string;
|
|
145301
145302
|
name: string;
|
|
145302
145303
|
title: string;
|
|
145304
|
+
index?: number | undefined;
|
|
145303
145305
|
}, {
|
|
145304
145306
|
type: "docs" | "story";
|
|
145305
145307
|
id: string;
|
|
145306
145308
|
name: string;
|
|
145307
145309
|
title: string;
|
|
145310
|
+
index?: number | undefined;
|
|
145308
145311
|
}>;
|
|
145309
145312
|
createdAt: z.ZodDate;
|
|
145310
145313
|
updatedAt: z.ZodDate;
|
|
@@ -145319,6 +145322,7 @@ declare const StorybookEntry: z.ZodObject<{
|
|
|
145319
145322
|
id: string;
|
|
145320
145323
|
name: string;
|
|
145321
145324
|
title: string;
|
|
145325
|
+
index?: number | undefined;
|
|
145322
145326
|
};
|
|
145323
145327
|
sourceId: string;
|
|
145324
145328
|
storyId: string;
|
|
@@ -145335,6 +145339,7 @@ declare const StorybookEntry: z.ZodObject<{
|
|
|
145335
145339
|
id: string;
|
|
145336
145340
|
name: string;
|
|
145337
145341
|
title: string;
|
|
145342
|
+
index?: number | undefined;
|
|
145338
145343
|
};
|
|
145339
145344
|
sourceId: string;
|
|
145340
145345
|
storyId: string;
|
|
@@ -145347,16 +145352,19 @@ declare const StorybookEntryOrigin: z.ZodObject<{
|
|
|
145347
145352
|
type: z.ZodEnum<["story", "docs"]>;
|
|
145348
145353
|
name: z.ZodString;
|
|
145349
145354
|
title: z.ZodString;
|
|
145355
|
+
index: z.ZodOptional<z.ZodNumber>;
|
|
145350
145356
|
}, "strip", z.ZodTypeAny, {
|
|
145351
145357
|
type: "docs" | "story";
|
|
145352
145358
|
id: string;
|
|
145353
145359
|
name: string;
|
|
145354
145360
|
title: string;
|
|
145361
|
+
index?: number | undefined;
|
|
145355
145362
|
}, {
|
|
145356
145363
|
type: "docs" | "story";
|
|
145357
145364
|
id: string;
|
|
145358
145365
|
name: string;
|
|
145359
145366
|
title: string;
|
|
145367
|
+
index?: number | undefined;
|
|
145360
145368
|
}>;
|
|
145361
145369
|
type StorybookEntryOrigin = z.infer<typeof StorybookEntryOrigin>;
|
|
145362
145370
|
type CreateStorybookEntry = OmitStrict<DbCreateInputOmit<StorybookEntry>, "storyId">;
|
package/dist/index.d.ts
CHANGED
|
@@ -145295,16 +145295,19 @@ declare const StorybookEntry: z.ZodObject<{
|
|
|
145295
145295
|
type: z.ZodEnum<["story", "docs"]>;
|
|
145296
145296
|
name: z.ZodString;
|
|
145297
145297
|
title: z.ZodString;
|
|
145298
|
+
index: z.ZodOptional<z.ZodNumber>;
|
|
145298
145299
|
}, "strip", z.ZodTypeAny, {
|
|
145299
145300
|
type: "docs" | "story";
|
|
145300
145301
|
id: string;
|
|
145301
145302
|
name: string;
|
|
145302
145303
|
title: string;
|
|
145304
|
+
index?: number | undefined;
|
|
145303
145305
|
}, {
|
|
145304
145306
|
type: "docs" | "story";
|
|
145305
145307
|
id: string;
|
|
145306
145308
|
name: string;
|
|
145307
145309
|
title: string;
|
|
145310
|
+
index?: number | undefined;
|
|
145308
145311
|
}>;
|
|
145309
145312
|
createdAt: z.ZodDate;
|
|
145310
145313
|
updatedAt: z.ZodDate;
|
|
@@ -145319,6 +145322,7 @@ declare const StorybookEntry: z.ZodObject<{
|
|
|
145319
145322
|
id: string;
|
|
145320
145323
|
name: string;
|
|
145321
145324
|
title: string;
|
|
145325
|
+
index?: number | undefined;
|
|
145322
145326
|
};
|
|
145323
145327
|
sourceId: string;
|
|
145324
145328
|
storyId: string;
|
|
@@ -145335,6 +145339,7 @@ declare const StorybookEntry: z.ZodObject<{
|
|
|
145335
145339
|
id: string;
|
|
145336
145340
|
name: string;
|
|
145337
145341
|
title: string;
|
|
145342
|
+
index?: number | undefined;
|
|
145338
145343
|
};
|
|
145339
145344
|
sourceId: string;
|
|
145340
145345
|
storyId: string;
|
|
@@ -145347,16 +145352,19 @@ declare const StorybookEntryOrigin: z.ZodObject<{
|
|
|
145347
145352
|
type: z.ZodEnum<["story", "docs"]>;
|
|
145348
145353
|
name: z.ZodString;
|
|
145349
145354
|
title: z.ZodString;
|
|
145355
|
+
index: z.ZodOptional<z.ZodNumber>;
|
|
145350
145356
|
}, "strip", z.ZodTypeAny, {
|
|
145351
145357
|
type: "docs" | "story";
|
|
145352
145358
|
id: string;
|
|
145353
145359
|
name: string;
|
|
145354
145360
|
title: string;
|
|
145361
|
+
index?: number | undefined;
|
|
145355
145362
|
}, {
|
|
145356
145363
|
type: "docs" | "story";
|
|
145357
145364
|
id: string;
|
|
145358
145365
|
name: string;
|
|
145359
145366
|
title: string;
|
|
145367
|
+
index?: number | undefined;
|
|
145360
145368
|
}>;
|
|
145361
145369
|
type StorybookEntryOrigin = z.infer<typeof StorybookEntryOrigin>;
|
|
145362
145370
|
type CreateStorybookEntry = OmitStrict<DbCreateInputOmit<StorybookEntry>, "storyId">;
|
package/dist/index.js
CHANGED
|
@@ -5118,8 +5118,9 @@ var StorybookEntryOrigin = _zod.z.object({
|
|
|
5118
5118
|
id: _zod.z.string(),
|
|
5119
5119
|
type: _zod.z.enum(["story", "docs"]),
|
|
5120
5120
|
name: _zod.z.string(),
|
|
5121
|
-
title: _zod.z.string()
|
|
5121
|
+
title: _zod.z.string(),
|
|
5122
5122
|
// Same as 'kind' for v3
|
|
5123
|
+
index: _zod.z.number().optional()
|
|
5123
5124
|
});
|
|
5124
5125
|
var StorybookEntry = _zod.z.object({
|
|
5125
5126
|
id: _zod.z.string(),
|