@supernova-studio/model 0.53.8 → 0.54.1
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 +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/feature-flags/feature-flags.ts +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -135430,13 +135430,13 @@ declare const PulsarContributionConfigurationProperty: z.ZodObject<z.objectUtil.
|
|
|
135430
135430
|
}>;
|
|
135431
135431
|
type PulsarContributionConfigurationProperty = z.infer<typeof PulsarContributionConfigurationProperty>;
|
|
135432
135432
|
|
|
135433
|
-
declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter"]>;
|
|
135433
|
+
declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder"]>;
|
|
135434
135434
|
type FlaggedFeature = z.infer<typeof FlaggedFeature>;
|
|
135435
|
-
declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter"]>, z.ZodBoolean>;
|
|
135435
|
+
declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder"]>, z.ZodBoolean>;
|
|
135436
135436
|
type FeatureFlagMap = z.infer<typeof FeatureFlagMap>;
|
|
135437
135437
|
declare const FeatureFlag: z.ZodObject<{
|
|
135438
135438
|
id: z.ZodString;
|
|
135439
|
-
feature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter"]>;
|
|
135439
|
+
feature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder"]>;
|
|
135440
135440
|
createdAt: z.ZodDate;
|
|
135441
135441
|
enabled: z.ZodBoolean;
|
|
135442
135442
|
designSystemId: z.ZodOptional<z.ZodString>;
|
|
@@ -135444,13 +135444,13 @@ declare const FeatureFlag: z.ZodObject<{
|
|
|
135444
135444
|
id: string;
|
|
135445
135445
|
createdAt: Date;
|
|
135446
135446
|
enabled: boolean;
|
|
135447
|
-
feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter";
|
|
135447
|
+
feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter" | "VariablesOrder";
|
|
135448
135448
|
designSystemId?: string | undefined;
|
|
135449
135449
|
}, {
|
|
135450
135450
|
id: string;
|
|
135451
135451
|
createdAt: Date;
|
|
135452
135452
|
enabled: boolean;
|
|
135453
|
-
feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter";
|
|
135453
|
+
feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter" | "VariablesOrder";
|
|
135454
135454
|
designSystemId?: string | undefined;
|
|
135455
135455
|
}>;
|
|
135456
135456
|
type FeatureFlag = z.infer<typeof FeatureFlag>;
|
package/dist/index.d.ts
CHANGED
|
@@ -135430,13 +135430,13 @@ declare const PulsarContributionConfigurationProperty: z.ZodObject<z.objectUtil.
|
|
|
135430
135430
|
}>;
|
|
135431
135431
|
type PulsarContributionConfigurationProperty = z.infer<typeof PulsarContributionConfigurationProperty>;
|
|
135432
135432
|
|
|
135433
|
-
declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter"]>;
|
|
135433
|
+
declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder"]>;
|
|
135434
135434
|
type FlaggedFeature = z.infer<typeof FlaggedFeature>;
|
|
135435
|
-
declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter"]>, z.ZodBoolean>;
|
|
135435
|
+
declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder"]>, z.ZodBoolean>;
|
|
135436
135436
|
type FeatureFlagMap = z.infer<typeof FeatureFlagMap>;
|
|
135437
135437
|
declare const FeatureFlag: z.ZodObject<{
|
|
135438
135438
|
id: z.ZodString;
|
|
135439
|
-
feature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter"]>;
|
|
135439
|
+
feature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder"]>;
|
|
135440
135440
|
createdAt: z.ZodDate;
|
|
135441
135441
|
enabled: z.ZodBoolean;
|
|
135442
135442
|
designSystemId: z.ZodOptional<z.ZodString>;
|
|
@@ -135444,13 +135444,13 @@ declare const FeatureFlag: z.ZodObject<{
|
|
|
135444
135444
|
id: string;
|
|
135445
135445
|
createdAt: Date;
|
|
135446
135446
|
enabled: boolean;
|
|
135447
|
-
feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter";
|
|
135447
|
+
feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter" | "VariablesOrder";
|
|
135448
135448
|
designSystemId?: string | undefined;
|
|
135449
135449
|
}, {
|
|
135450
135450
|
id: string;
|
|
135451
135451
|
createdAt: Date;
|
|
135452
135452
|
enabled: boolean;
|
|
135453
|
-
feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter";
|
|
135453
|
+
feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter" | "VariablesOrder";
|
|
135454
135454
|
designSystemId?: string | undefined;
|
|
135455
135455
|
}>;
|
|
135456
135456
|
type FeatureFlag = z.infer<typeof FeatureFlag>;
|
package/dist/index.js
CHANGED
|
@@ -4948,7 +4948,7 @@ var ExporterWorkspaceMembership = _zod.z.object({
|
|
|
4948
4948
|
|
|
4949
4949
|
// src/feature-flags/feature-flags.ts
|
|
4950
4950
|
|
|
4951
|
-
var FlaggedFeature = _zod.z.enum(["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter"]);
|
|
4951
|
+
var FlaggedFeature = _zod.z.enum(["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder"]);
|
|
4952
4952
|
var FeatureFlagMap = _zod.z.record(FlaggedFeature, _zod.z.boolean());
|
|
4953
4953
|
var FeatureFlag = _zod.z.object({
|
|
4954
4954
|
id: _zod.z.string(),
|