@supernova-studio/model 1.74.0 → 1.74.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 +161 -5
- package/dist/index.d.ts +161 -5
- package/dist/index.js +10 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3958,7 +3958,8 @@ var DataSourceUploadRemote = _zod.z.object({
|
|
|
3958
3958
|
lastImportMetadata: DataSourceUploadImportMetadata.optional(),
|
|
3959
3959
|
warnings: nullishToOptional(ImportWarning.array()),
|
|
3960
3960
|
isTokenTypeSplitEnabled: _zod.z.boolean(),
|
|
3961
|
-
isCollectionsMigrationCompleted: _zod.z.boolean()
|
|
3961
|
+
isCollectionsMigrationCompleted: _zod.z.boolean(),
|
|
3962
|
+
isCollectionKeysMigrationCompleted: _zod.z.boolean()
|
|
3962
3963
|
});
|
|
3963
3964
|
var DataSourceStorybookRemote = _zod.z.object({
|
|
3964
3965
|
type: _zod.z.literal(DataSourceRemoteType.Enum.Storybook),
|
|
@@ -4102,7 +4103,8 @@ var FigmaImportContextWithDownloadScopes = FigmaImportContextWithSourcesState.ex
|
|
|
4102
4103
|
var CollectionOrigin = _zod.z.object({
|
|
4103
4104
|
id: _zod.z.string(),
|
|
4104
4105
|
parentId: _zod.z.string().optional(),
|
|
4105
|
-
sourceId: _zod.z.string()
|
|
4106
|
+
sourceId: _zod.z.string(),
|
|
4107
|
+
collectionKeyMigrated: _zod.z.boolean()
|
|
4106
4108
|
});
|
|
4107
4109
|
var Collection = _zod.z.object({
|
|
4108
4110
|
id: _zod.z.string(),
|
|
@@ -4137,7 +4139,8 @@ var CollectionImportModelInput = _zod.z.object({
|
|
|
4137
4139
|
name: _zod.z.string(),
|
|
4138
4140
|
parentId: _zod.z.string().optional(),
|
|
4139
4141
|
parentLegacyId: _zod.z.string().optional(),
|
|
4140
|
-
parentPersistentId: _zod.z.string().optional()
|
|
4142
|
+
parentPersistentId: _zod.z.string().optional(),
|
|
4143
|
+
collectionKeyMigrated: _zod.z.boolean()
|
|
4141
4144
|
});
|
|
4142
4145
|
var CollectionImportModel = _zod.z.object({
|
|
4143
4146
|
id: _zod.z.string(),
|
|
@@ -4767,6 +4770,8 @@ var FigmaExporterProcessedStylesSchema = _zod.z.object({
|
|
|
4767
4770
|
backgroundSize: _zod.z.string().optional(),
|
|
4768
4771
|
backgroundPosition: _zod.z.string().optional(),
|
|
4769
4772
|
backgroundRepeat: _zod.z.string().optional(),
|
|
4773
|
+
// Typed as string to support multiple background blend modes
|
|
4774
|
+
backgroundBlendMode: _zod.z.string().optional(),
|
|
4770
4775
|
backgroundClip: _zod.z.union([_zod.z.literal("border-box"), _zod.z.literal("padding-box"), _zod.z.literal("content-box"), _zod.z.literal("text")]).optional(),
|
|
4771
4776
|
backgroundOrigin: _zod.z.union([_zod.z.literal("border-box"), _zod.z.literal("padding-box"), _zod.z.literal("content-box")]).optional(),
|
|
4772
4777
|
opacity: _zod.z.number().optional(),
|
|
@@ -4842,6 +4847,8 @@ var FigmaExporterProcessedStylesSchema = _zod.z.object({
|
|
|
4842
4847
|
]).optional(),
|
|
4843
4848
|
wordBreak: _zod.z.union([_zod.z.literal("normal"), _zod.z.literal("break-all"), _zod.z.literal("keep-all"), _zod.z.literal("break-word")]).optional(),
|
|
4844
4849
|
textOverflow: _zod.z.union([_zod.z.literal("clip"), _zod.z.literal("ellipsis")]).optional(),
|
|
4850
|
+
WebkitBackgroundClip: _zod.z.literal("text").optional(),
|
|
4851
|
+
WebkitTextFillColor: _zod.z.string().optional(),
|
|
4845
4852
|
WebkitLineClamp: _zod.z.number().optional(),
|
|
4846
4853
|
WebkitBoxOrient: _zod.z.literal("vertical").optional(),
|
|
4847
4854
|
fontFeatureSettings: _zod.z.string().optional(),
|
|
@@ -6698,7 +6705,6 @@ var FlaggedFeature = _zod.z.enum([
|
|
|
6698
6705
|
"ForgeE2BTemplate",
|
|
6699
6706
|
"ForgeOnDemandIterations",
|
|
6700
6707
|
"ForgeAutoRetryOnErrors",
|
|
6701
|
-
"ForgeAiBackendMigrated",
|
|
6702
6708
|
"CustomForgeTemplate",
|
|
6703
6709
|
"ForgeRestartPlaywright"
|
|
6704
6710
|
]);
|