@supernova-studio/client 1.92.1 → 1.92.2
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +14 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -145952,7 +145952,7 @@ declare const DTOForgeFeatureRoomResponse: z.ZodObject<{
|
|
|
145952
145952
|
}>;
|
|
145953
145953
|
type DTOForgeFeatureRoomResponse = z.infer<typeof DTOForgeFeatureRoomResponse>;
|
|
145954
145954
|
|
|
145955
|
-
declare const ForgeFigmaNodeLatestVersion: "
|
|
145955
|
+
declare const ForgeFigmaNodeLatestVersion: "V11";
|
|
145956
145956
|
declare const DTOForgeFigmaNodeOrigin: z$1.ZodObject<{
|
|
145957
145957
|
/**
|
|
145958
145958
|
* Figma file ID that was passed into the create request as a part of the Figma node URL
|
|
@@ -146887,7 +146887,7 @@ declare const DTOForgeFigmaNodeValidateResponse: z$1.ZodObject<{
|
|
|
146887
146887
|
isValid: boolean;
|
|
146888
146888
|
}>;
|
|
146889
146889
|
type DTOForgeFigmaNodeValidateResponse = z$1.infer<typeof DTOForgeFigmaNodeValidateResponse>;
|
|
146890
|
-
declare const DTOForgeFigmaNodeConversionVersion: z$1.ZodEnum<["V1", "V2", "V3", "V4", "V5", "V6", "V7", "V8", "V9", "V10"]>;
|
|
146890
|
+
declare const DTOForgeFigmaNodeConversionVersion: z$1.ZodEnum<["V1", "V2", "V3", "V4", "V5", "V6", "V7", "V8", "V9", "V10", "V11"]>;
|
|
146891
146891
|
type DTOForgeFigmaNodeConversionVersion = z$1.infer<typeof DTOForgeFigmaNodeConversionVersion>;
|
|
146892
146892
|
|
|
146893
146893
|
declare const DTOForgeIterationMessage: z.ZodObject<Omit<{
|
package/dist/index.d.ts
CHANGED
|
@@ -145952,7 +145952,7 @@ declare const DTOForgeFeatureRoomResponse: z.ZodObject<{
|
|
|
145952
145952
|
}>;
|
|
145953
145953
|
type DTOForgeFeatureRoomResponse = z.infer<typeof DTOForgeFeatureRoomResponse>;
|
|
145954
145954
|
|
|
145955
|
-
declare const ForgeFigmaNodeLatestVersion: "
|
|
145955
|
+
declare const ForgeFigmaNodeLatestVersion: "V11";
|
|
145956
145956
|
declare const DTOForgeFigmaNodeOrigin: z$1.ZodObject<{
|
|
145957
145957
|
/**
|
|
145958
145958
|
* Figma file ID that was passed into the create request as a part of the Figma node URL
|
|
@@ -146887,7 +146887,7 @@ declare const DTOForgeFigmaNodeValidateResponse: z$1.ZodObject<{
|
|
|
146887
146887
|
isValid: boolean;
|
|
146888
146888
|
}>;
|
|
146889
146889
|
type DTOForgeFigmaNodeValidateResponse = z$1.infer<typeof DTOForgeFigmaNodeValidateResponse>;
|
|
146890
|
-
declare const DTOForgeFigmaNodeConversionVersion: z$1.ZodEnum<["V1", "V2", "V3", "V4", "V5", "V6", "V7", "V8", "V9", "V10"]>;
|
|
146890
|
+
declare const DTOForgeFigmaNodeConversionVersion: z$1.ZodEnum<["V1", "V2", "V3", "V4", "V5", "V6", "V7", "V8", "V9", "V10", "V11"]>;
|
|
146891
146891
|
type DTOForgeFigmaNodeConversionVersion = z$1.infer<typeof DTOForgeFigmaNodeConversionVersion>;
|
|
146892
146892
|
|
|
146893
146893
|
declare const DTOForgeIterationMessage: z.ZodObject<Omit<{
|
package/dist/index.js
CHANGED
|
@@ -10766,8 +10766,20 @@ var DTOForgeFeatureRoomResponse = _zod.z.object({
|
|
|
10766
10766
|
// src/api/dto/forge/figma-node.ts
|
|
10767
10767
|
|
|
10768
10768
|
var DTOForgeFigmaNodeState = _zod2.default.enum(["Optimizing", "Success", "Failed"]);
|
|
10769
|
-
var DTOForgeFigmaNodeConversionVersion = _zod2.default.enum([
|
|
10770
|
-
|
|
10769
|
+
var DTOForgeFigmaNodeConversionVersion = _zod2.default.enum([
|
|
10770
|
+
"V1",
|
|
10771
|
+
"V2",
|
|
10772
|
+
"V3",
|
|
10773
|
+
"V4",
|
|
10774
|
+
"V5",
|
|
10775
|
+
"V6",
|
|
10776
|
+
"V7",
|
|
10777
|
+
"V8",
|
|
10778
|
+
"V9",
|
|
10779
|
+
"V10",
|
|
10780
|
+
"V11"
|
|
10781
|
+
]);
|
|
10782
|
+
var ForgeFigmaNodeLatestVersion = DTOForgeFigmaNodeConversionVersion.enum.V11;
|
|
10771
10783
|
var DTOForgeFigmaNodeOrigin = _zod2.default.object({
|
|
10772
10784
|
/**
|
|
10773
10785
|
* Figma file ID that was passed into the create request as a part of the Figma node URL
|