@supernova-studio/client 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 +54 -1
- package/dist/index.d.ts +54 -1
- package/dist/index.js +18 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +17 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3566,7 +3566,8 @@ var DataSourceUploadRemote = z95.object({
|
|
|
3566
3566
|
lastImportMetadata: DataSourceUploadImportMetadata.optional(),
|
|
3567
3567
|
warnings: nullishToOptional(ImportWarning.array()),
|
|
3568
3568
|
isTokenTypeSplitEnabled: z95.boolean(),
|
|
3569
|
-
isCollectionsMigrationCompleted: z95.boolean()
|
|
3569
|
+
isCollectionsMigrationCompleted: z95.boolean(),
|
|
3570
|
+
isCollectionKeysMigrationCompleted: z95.boolean()
|
|
3570
3571
|
});
|
|
3571
3572
|
var DataSourceStorybookRemote = z95.object({
|
|
3572
3573
|
type: z95.literal(DataSourceRemoteType.Enum.Storybook),
|
|
@@ -3690,7 +3691,8 @@ var FigmaImportContextWithDownloadScopes = FigmaImportContextWithSourcesState.ex
|
|
|
3690
3691
|
var CollectionOrigin = z99.object({
|
|
3691
3692
|
id: z99.string(),
|
|
3692
3693
|
parentId: z99.string().optional(),
|
|
3693
|
-
sourceId: z99.string()
|
|
3694
|
+
sourceId: z99.string(),
|
|
3695
|
+
collectionKeyMigrated: z99.boolean()
|
|
3694
3696
|
});
|
|
3695
3697
|
var Collection = z99.object({
|
|
3696
3698
|
id: z99.string(),
|
|
@@ -3723,7 +3725,8 @@ var CollectionImportModelInput = z100.object({
|
|
|
3723
3725
|
name: z100.string(),
|
|
3724
3726
|
parentId: z100.string().optional(),
|
|
3725
3727
|
parentLegacyId: z100.string().optional(),
|
|
3726
|
-
parentPersistentId: z100.string().optional()
|
|
3728
|
+
parentPersistentId: z100.string().optional(),
|
|
3729
|
+
collectionKeyMigrated: z100.boolean()
|
|
3727
3730
|
});
|
|
3728
3731
|
var CollectionImportModel = z100.object({
|
|
3729
3732
|
id: z100.string(),
|
|
@@ -4240,6 +4243,8 @@ var FigmaExporterProcessedStylesSchema = z125.object({
|
|
|
4240
4243
|
backgroundSize: z125.string().optional(),
|
|
4241
4244
|
backgroundPosition: z125.string().optional(),
|
|
4242
4245
|
backgroundRepeat: z125.string().optional(),
|
|
4246
|
+
// Typed as string to support multiple background blend modes
|
|
4247
|
+
backgroundBlendMode: z125.string().optional(),
|
|
4243
4248
|
backgroundClip: z125.union([z125.literal("border-box"), z125.literal("padding-box"), z125.literal("content-box"), z125.literal("text")]).optional(),
|
|
4244
4249
|
backgroundOrigin: z125.union([z125.literal("border-box"), z125.literal("padding-box"), z125.literal("content-box")]).optional(),
|
|
4245
4250
|
opacity: z125.number().optional(),
|
|
@@ -4315,6 +4320,8 @@ var FigmaExporterProcessedStylesSchema = z125.object({
|
|
|
4315
4320
|
]).optional(),
|
|
4316
4321
|
wordBreak: z125.union([z125.literal("normal"), z125.literal("break-all"), z125.literal("keep-all"), z125.literal("break-word")]).optional(),
|
|
4317
4322
|
textOverflow: z125.union([z125.literal("clip"), z125.literal("ellipsis")]).optional(),
|
|
4323
|
+
WebkitBackgroundClip: z125.literal("text").optional(),
|
|
4324
|
+
WebkitTextFillColor: z125.string().optional(),
|
|
4318
4325
|
WebkitLineClamp: z125.number().optional(),
|
|
4319
4326
|
WebkitBoxOrient: z125.literal("vertical").optional(),
|
|
4320
4327
|
fontFeatureSettings: z125.string().optional(),
|
|
@@ -5838,7 +5845,6 @@ var FlaggedFeature = z208.enum([
|
|
|
5838
5845
|
"ForgeE2BTemplate",
|
|
5839
5846
|
"ForgeOnDemandIterations",
|
|
5840
5847
|
"ForgeAutoRetryOnErrors",
|
|
5841
|
-
"ForgeAiBackendMigrated",
|
|
5842
5848
|
"CustomForgeTemplate",
|
|
5843
5849
|
"ForgeRestartPlaywright"
|
|
5844
5850
|
]);
|
|
@@ -6825,7 +6831,8 @@ var DTODataSourceFigmaVariablesPlugin = z230.object({
|
|
|
6825
6831
|
lastImportedAt: z230.coerce.date().optional(),
|
|
6826
6832
|
lastImportMetadata: DataSourceUploadImportMetadata.optional(),
|
|
6827
6833
|
isTokenTypeSplitEnabled: z230.boolean(),
|
|
6828
|
-
isCollectionsMigrationCompleted: z230.boolean().default(false)
|
|
6834
|
+
isCollectionsMigrationCompleted: z230.boolean().default(false),
|
|
6835
|
+
isCollectionKeysMigrationCompleted: z230.boolean().default(false)
|
|
6829
6836
|
})
|
|
6830
6837
|
});
|
|
6831
6838
|
var DTODataSourceStorybook = z230.object({
|
|
@@ -6900,6 +6907,10 @@ var DTOFigmaSourceUpdatePayload = z230.object({
|
|
|
6900
6907
|
scope: DataSourceFigmaScope.optional(),
|
|
6901
6908
|
autoImportMode: DataSourceAutoImportMode.optional()
|
|
6902
6909
|
});
|
|
6910
|
+
var DTOFVPMigrationsCollectionKeysPayload = z230.object({
|
|
6911
|
+
pluginFileId: z230.string(),
|
|
6912
|
+
collectionIdToKeyMap: z230.record(z230.string())
|
|
6913
|
+
});
|
|
6903
6914
|
|
|
6904
6915
|
// src/api/dto/design-systems/design-system.ts
|
|
6905
6916
|
import { z as z233 } from "zod";
|
|
@@ -20302,6 +20313,7 @@ export {
|
|
|
20302
20313
|
DTOExporterSource,
|
|
20303
20314
|
DTOExporterType,
|
|
20304
20315
|
DTOExporterUpdateInput,
|
|
20316
|
+
DTOFVPMigrationsCollectionKeysPayload,
|
|
20305
20317
|
DTOFeatureAgentResponseTracker,
|
|
20306
20318
|
DTOFeatureAgentWorkFinalizeInput,
|
|
20307
20319
|
DTOFeatureArtifact,
|