@supernova-studio/client 1.4.21 → 1.4.23
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 +58 -4
- package/dist/index.d.ts +58 -4
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3357,7 +3357,7 @@ function zeroNumberByDefault2() {
|
|
|
3357
3357
|
var FigmaFile = z92.object({
|
|
3358
3358
|
id: z92.string(),
|
|
3359
3359
|
name: z92.string(),
|
|
3360
|
-
lastModifiedAt: z92.date(),
|
|
3360
|
+
lastModifiedAt: z92.coerce.date(),
|
|
3361
3361
|
thumbnailUrl: z92.string().optional()
|
|
3362
3362
|
});
|
|
3363
3363
|
var ImportJobState = z93.enum(["PendingInput", "Queued", "InProgress", "Failed", "Success"]);
|
|
@@ -5675,7 +5675,8 @@ var DTODataSourceFigma = z197.object({
|
|
|
5675
5675
|
scope: DTODataSourceFigmaScope,
|
|
5676
5676
|
brandId: z197.string(),
|
|
5677
5677
|
themeId: z197.string().nullish(),
|
|
5678
|
-
cloud: DTODataSourceFigmaCloud.nullish()
|
|
5678
|
+
cloud: DTODataSourceFigmaCloud.nullish(),
|
|
5679
|
+
sortOrder: z197.number().optional()
|
|
5679
5680
|
});
|
|
5680
5681
|
var DTODataSourceTokenStudio = z197.object({
|
|
5681
5682
|
id: z197.string(),
|
|
@@ -5683,6 +5684,7 @@ var DTODataSourceTokenStudio = z197.object({
|
|
|
5683
5684
|
fileName: z197.string(),
|
|
5684
5685
|
brandId: z197.string(),
|
|
5685
5686
|
themeId: z197.string().nullish(),
|
|
5687
|
+
sortOrder: z197.number().optional(),
|
|
5686
5688
|
tokenStudio: z197.object({
|
|
5687
5689
|
settings: z197.object({
|
|
5688
5690
|
dryRun: z197.boolean(),
|
|
@@ -5711,6 +5713,7 @@ var DTODataSourceFigmaVariablesPlugin = z197.object({
|
|
|
5711
5713
|
type: z197.literal(DataSourceRemoteType.Enum.FigmaVariablesPlugin),
|
|
5712
5714
|
fileName: z197.string(),
|
|
5713
5715
|
brandId: z197.string(),
|
|
5716
|
+
sortOrder: z197.number().optional(),
|
|
5714
5717
|
upload: z197.object({
|
|
5715
5718
|
remoteId: z197.string(),
|
|
5716
5719
|
remoteSourceType: DataSourceUploadRemoteSource,
|