@supernova-studio/client 1.90.4 → 1.90.6
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 +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -145802,7 +145802,7 @@ declare const DTOForgeFeatureRoomResponse: z.ZodObject<{
|
|
|
145802
145802
|
}>;
|
|
145803
145803
|
type DTOForgeFeatureRoomResponse = z.infer<typeof DTOForgeFeatureRoomResponse>;
|
|
145804
145804
|
|
|
145805
|
-
declare const ForgeFigmaNodeLatestVersion: "
|
|
145805
|
+
declare const ForgeFigmaNodeLatestVersion: "V9";
|
|
145806
145806
|
declare const DTOForgeFigmaNodeOrigin: z$1.ZodObject<{
|
|
145807
145807
|
/**
|
|
145808
145808
|
* Figma file ID that was passed into the create request as a part of the Figma node URL
|
|
@@ -146737,7 +146737,7 @@ declare const DTOForgeFigmaNodeValidateResponse: z$1.ZodObject<{
|
|
|
146737
146737
|
isValid: boolean;
|
|
146738
146738
|
}>;
|
|
146739
146739
|
type DTOForgeFigmaNodeValidateResponse = z$1.infer<typeof DTOForgeFigmaNodeValidateResponse>;
|
|
146740
|
-
declare const DTOForgeFigmaNodeConversionVersion: z$1.ZodEnum<["V1", "V2", "V3", "V4", "V5", "V6", "V7", "V8"]>;
|
|
146740
|
+
declare const DTOForgeFigmaNodeConversionVersion: z$1.ZodEnum<["V1", "V2", "V3", "V4", "V5", "V6", "V7", "V8", "V9"]>;
|
|
146741
146741
|
type DTOForgeFigmaNodeConversionVersion = z$1.infer<typeof DTOForgeFigmaNodeConversionVersion>;
|
|
146742
146742
|
|
|
146743
146743
|
declare const DTOForgeIterationMessage: z.ZodObject<Omit<{
|
package/dist/index.d.ts
CHANGED
|
@@ -145802,7 +145802,7 @@ declare const DTOForgeFeatureRoomResponse: z.ZodObject<{
|
|
|
145802
145802
|
}>;
|
|
145803
145803
|
type DTOForgeFeatureRoomResponse = z.infer<typeof DTOForgeFeatureRoomResponse>;
|
|
145804
145804
|
|
|
145805
|
-
declare const ForgeFigmaNodeLatestVersion: "
|
|
145805
|
+
declare const ForgeFigmaNodeLatestVersion: "V9";
|
|
145806
145806
|
declare const DTOForgeFigmaNodeOrigin: z$1.ZodObject<{
|
|
145807
145807
|
/**
|
|
145808
145808
|
* Figma file ID that was passed into the create request as a part of the Figma node URL
|
|
@@ -146737,7 +146737,7 @@ declare const DTOForgeFigmaNodeValidateResponse: z$1.ZodObject<{
|
|
|
146737
146737
|
isValid: boolean;
|
|
146738
146738
|
}>;
|
|
146739
146739
|
type DTOForgeFigmaNodeValidateResponse = z$1.infer<typeof DTOForgeFigmaNodeValidateResponse>;
|
|
146740
|
-
declare const DTOForgeFigmaNodeConversionVersion: z$1.ZodEnum<["V1", "V2", "V3", "V4", "V5", "V6", "V7", "V8"]>;
|
|
146740
|
+
declare const DTOForgeFigmaNodeConversionVersion: z$1.ZodEnum<["V1", "V2", "V3", "V4", "V5", "V6", "V7", "V8", "V9"]>;
|
|
146741
146741
|
type DTOForgeFigmaNodeConversionVersion = z$1.infer<typeof DTOForgeFigmaNodeConversionVersion>;
|
|
146742
146742
|
|
|
146743
146743
|
declare const DTOForgeIterationMessage: z.ZodObject<Omit<{
|
package/dist/index.js
CHANGED
|
@@ -6338,7 +6338,8 @@ var FlaggedFeature = _zod.z.enum([
|
|
|
6338
6338
|
"ForgeFileUploadBatchSize",
|
|
6339
6339
|
"DSVersionRoomYJSStorageVersion",
|
|
6340
6340
|
"ForgeTemplateUploadForAll",
|
|
6341
|
-
"LargeWorkspaceFileUpload"
|
|
6341
|
+
"LargeWorkspaceFileUpload",
|
|
6342
|
+
"CliMinimumVersion"
|
|
6342
6343
|
]);
|
|
6343
6344
|
var FeatureFlagMap = _zod.z.record(FlaggedFeature, _zod.z.boolean());
|
|
6344
6345
|
var FeatureFlag = _zod.z.object({
|
|
@@ -6347,6 +6348,7 @@ var FeatureFlag = _zod.z.object({
|
|
|
6347
6348
|
createdAt: _zod.z.coerce.date(),
|
|
6348
6349
|
enabled: _zod.z.boolean(),
|
|
6349
6350
|
designSystemId: _zod.z.string().optional(),
|
|
6351
|
+
workspaceId: _zod.z.string().optional(),
|
|
6350
6352
|
data: _zod.z.record(_zod.z.any()).nullable().optional()
|
|
6351
6353
|
});
|
|
6352
6354
|
|
|
@@ -10727,8 +10729,8 @@ var DTOForgeFeatureRoomResponse = _zod.z.object({
|
|
|
10727
10729
|
// src/api/dto/forge/figma-node.ts
|
|
10728
10730
|
|
|
10729
10731
|
var DTOForgeFigmaNodeState = _zod2.default.enum(["Optimizing", "Success", "Failed"]);
|
|
10730
|
-
var DTOForgeFigmaNodeConversionVersion = _zod2.default.enum(["V1", "V2", "V3", "V4", "V5", "V6", "V7", "V8"]);
|
|
10731
|
-
var ForgeFigmaNodeLatestVersion = DTOForgeFigmaNodeConversionVersion.enum.
|
|
10732
|
+
var DTOForgeFigmaNodeConversionVersion = _zod2.default.enum(["V1", "V2", "V3", "V4", "V5", "V6", "V7", "V8", "V9"]);
|
|
10733
|
+
var ForgeFigmaNodeLatestVersion = DTOForgeFigmaNodeConversionVersion.enum.V9;
|
|
10732
10734
|
var DTOForgeFigmaNodeOrigin = _zod2.default.object({
|
|
10733
10735
|
/**
|
|
10734
10736
|
* Figma file ID that was passed into the create request as a part of the Figma node URL
|