@supernova-studio/client 0.57.19 → 0.57.20
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 +25 -0
- package/dist/index.d.ts +25 -0
- 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/src/api/dto/design-systems/data-source.ts +1 -0
package/dist/index.mjs
CHANGED
|
@@ -3140,7 +3140,8 @@ var DataSourceUploadRemote = z88.object({
|
|
|
3140
3140
|
remoteSourceType: DataSourceUploadRemoteSource,
|
|
3141
3141
|
lastImportMetadata: DataSourceUploadImportMetadata.optional(),
|
|
3142
3142
|
warnings: nullishToOptional(ImportWarning.array()),
|
|
3143
|
-
isTokenTypeSplitEnabled: z88.boolean()
|
|
3143
|
+
isTokenTypeSplitEnabled: z88.boolean(),
|
|
3144
|
+
isCollectionsMigrationCompleted: z88.boolean()
|
|
3144
3145
|
});
|
|
3145
3146
|
var DataSourceRemote = z88.discriminatedUnion("type", [
|
|
3146
3147
|
DataSourceFigmaRemote,
|
|
@@ -5281,7 +5282,8 @@ var DTODataSourceFigmaVariablesPlugin = z183.object({
|
|
|
5281
5282
|
fileId: z183.string(),
|
|
5282
5283
|
lastImportedAt: z183.coerce.date().optional(),
|
|
5283
5284
|
lastImportMetadata: DataSourceUploadImportMetadata.optional(),
|
|
5284
|
-
isTokenTypeSplitEnabled: z183.boolean()
|
|
5285
|
+
isTokenTypeSplitEnabled: z183.boolean(),
|
|
5286
|
+
isCollectionsMigrationCompleted: z183.boolean().default(false)
|
|
5285
5287
|
})
|
|
5286
5288
|
});
|
|
5287
5289
|
var DTODataSource = z183.discriminatedUnion("type", [
|