@supernova-studio/model 1.4.15 → 1.4.16
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 +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -84567,6 +84567,8 @@ declare const FigmaNodeStructureV2: z.ZodObject<{
|
|
|
84567
84567
|
createdAt: z.ZodDate;
|
|
84568
84568
|
updatedAt: z.ZodDate;
|
|
84569
84569
|
importState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
|
|
84570
|
+
error: z.ZodOptional<z.ZodString>;
|
|
84571
|
+
chunkSize: z.ZodOptional<z.ZodNumber>;
|
|
84570
84572
|
isFromLegacyStorage: z.ZodBoolean;
|
|
84571
84573
|
}, "strip", z.ZodTypeAny, {
|
|
84572
84574
|
id: string;
|
|
@@ -84576,7 +84578,9 @@ declare const FigmaNodeStructureV2: z.ZodObject<{
|
|
|
84576
84578
|
sourceId: string;
|
|
84577
84579
|
importState: "InProgress" | "Success" | "Failed";
|
|
84578
84580
|
isFromLegacyStorage: boolean;
|
|
84581
|
+
error?: string | undefined;
|
|
84579
84582
|
storagePath?: string | undefined;
|
|
84583
|
+
chunkSize?: number | undefined;
|
|
84580
84584
|
}, {
|
|
84581
84585
|
id: string;
|
|
84582
84586
|
createdAt: Date;
|
|
@@ -84585,7 +84589,9 @@ declare const FigmaNodeStructureV2: z.ZodObject<{
|
|
|
84585
84589
|
sourceId: string;
|
|
84586
84590
|
importState: "InProgress" | "Success" | "Failed";
|
|
84587
84591
|
isFromLegacyStorage: boolean;
|
|
84592
|
+
error?: string | undefined;
|
|
84588
84593
|
storagePath?: string | undefined;
|
|
84594
|
+
chunkSize?: number | undefined;
|
|
84589
84595
|
}>;
|
|
84590
84596
|
type FigmaNodeStructureV2 = z.infer<typeof FigmaNodeStructureV2>;
|
|
84591
84597
|
type CreateFigmaNodeStructureV2 = OmitStrict<DbCreateInputOmit<FigmaNodeStructureV2>, "isFromLegacyStorage">;
|
package/dist/index.d.ts
CHANGED
|
@@ -84567,6 +84567,8 @@ declare const FigmaNodeStructureV2: z.ZodObject<{
|
|
|
84567
84567
|
createdAt: z.ZodDate;
|
|
84568
84568
|
updatedAt: z.ZodDate;
|
|
84569
84569
|
importState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
|
|
84570
|
+
error: z.ZodOptional<z.ZodString>;
|
|
84571
|
+
chunkSize: z.ZodOptional<z.ZodNumber>;
|
|
84570
84572
|
isFromLegacyStorage: z.ZodBoolean;
|
|
84571
84573
|
}, "strip", z.ZodTypeAny, {
|
|
84572
84574
|
id: string;
|
|
@@ -84576,7 +84578,9 @@ declare const FigmaNodeStructureV2: z.ZodObject<{
|
|
|
84576
84578
|
sourceId: string;
|
|
84577
84579
|
importState: "InProgress" | "Success" | "Failed";
|
|
84578
84580
|
isFromLegacyStorage: boolean;
|
|
84581
|
+
error?: string | undefined;
|
|
84579
84582
|
storagePath?: string | undefined;
|
|
84583
|
+
chunkSize?: number | undefined;
|
|
84580
84584
|
}, {
|
|
84581
84585
|
id: string;
|
|
84582
84586
|
createdAt: Date;
|
|
@@ -84585,7 +84589,9 @@ declare const FigmaNodeStructureV2: z.ZodObject<{
|
|
|
84585
84589
|
sourceId: string;
|
|
84586
84590
|
importState: "InProgress" | "Success" | "Failed";
|
|
84587
84591
|
isFromLegacyStorage: boolean;
|
|
84592
|
+
error?: string | undefined;
|
|
84588
84593
|
storagePath?: string | undefined;
|
|
84594
|
+
chunkSize?: number | undefined;
|
|
84589
84595
|
}>;
|
|
84590
84596
|
type FigmaNodeStructureV2 = z.infer<typeof FigmaNodeStructureV2>;
|
|
84591
84597
|
type CreateFigmaNodeStructureV2 = OmitStrict<DbCreateInputOmit<FigmaNodeStructureV2>, "isFromLegacyStorage">;
|
package/dist/index.js
CHANGED
|
@@ -4389,6 +4389,8 @@ var FigmaNodeStructureV2 = _zod.z.object({
|
|
|
4389
4389
|
createdAt: _zod.z.coerce.date(),
|
|
4390
4390
|
updatedAt: _zod.z.coerce.date(),
|
|
4391
4391
|
importState: FigmaNodeStructureStateV2,
|
|
4392
|
+
error: _zod.z.string().optional(),
|
|
4393
|
+
chunkSize: _zod.z.number().optional(),
|
|
4392
4394
|
// TODO Artem: remove after migration
|
|
4393
4395
|
isFromLegacyStorage: _zod.z.boolean()
|
|
4394
4396
|
});
|