@supernova-studio/client 0.58.27 → 0.59.0
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.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3312,7 +3312,8 @@ var FigmaImportBaseContext = _zod.z.object({
|
|
|
3312
3312
|
var FeatureFlagsKeepAliases = _zod.z.object({
|
|
3313
3313
|
isTypographyPropsKeepAliasesEnabled: _zod.z.boolean().default(false),
|
|
3314
3314
|
isGradientPropsKeepAliasesEnabled: _zod.z.boolean().default(false),
|
|
3315
|
-
isShadowPropsKeepAliasesEnabled: _zod.z.boolean().default(false)
|
|
3315
|
+
isShadowPropsKeepAliasesEnabled: _zod.z.boolean().default(false),
|
|
3316
|
+
isNonCompatibleTypeChangesEnabled: _zod.z.boolean().default(false)
|
|
3316
3317
|
});
|
|
3317
3318
|
var FigmaImportContextWithSourcesState = FigmaImportBaseContext.extend({
|
|
3318
3319
|
sourcesWithMissingAccess: _zod.z.array(_zod.z.string()).default([]),
|
|
@@ -4698,7 +4699,8 @@ var FlaggedFeature = _zod.z.enum([
|
|
|
4698
4699
|
"VariablesOrder",
|
|
4699
4700
|
"TypographyPropsKeepAliases",
|
|
4700
4701
|
"GradientPropsKeepAliases",
|
|
4701
|
-
"ShadowPropsKeepAliases"
|
|
4702
|
+
"ShadowPropsKeepAliases",
|
|
4703
|
+
"NonCompatibleTypeChanges"
|
|
4702
4704
|
]);
|
|
4703
4705
|
var FeatureFlagMap = _zod.z.record(FlaggedFeature, _zod.z.boolean());
|
|
4704
4706
|
var FeatureFlag = _zod.z.object({
|