@supernova-studio/model 0.55.26 → 0.55.28
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 +452 -1
- package/dist/index.d.ts +452 -1
- package/dist/index.js +21 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/assets/asset.ts +1 -0
- package/src/dsm/data-sources/data-source.ts +1 -0
- package/src/dsm/elements/component-properties.ts +8 -0
- package/src/utils/common.ts +8 -0
package/dist/index.d.ts
CHANGED
|
@@ -3335,10 +3335,12 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
3335
3335
|
unsupportedStyleValueType?: string | undefined;
|
|
3336
3336
|
referenceId?: string | undefined;
|
|
3337
3337
|
}[] | null | undefined>;
|
|
3338
|
+
isTokenTypeSplitEnabled: z.ZodBoolean;
|
|
3338
3339
|
}, "strip", z.ZodTypeAny, {
|
|
3339
3340
|
type: "FigmaVariablesPlugin";
|
|
3340
3341
|
remoteId: string;
|
|
3341
3342
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
3343
|
+
isTokenTypeSplitEnabled: boolean;
|
|
3342
3344
|
warnings?: {
|
|
3343
3345
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
3344
3346
|
componentId?: string | undefined;
|
|
@@ -3353,6 +3355,7 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
3353
3355
|
type: "FigmaVariablesPlugin";
|
|
3354
3356
|
remoteId: string;
|
|
3355
3357
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
3358
|
+
isTokenTypeSplitEnabled: boolean;
|
|
3356
3359
|
warnings?: {
|
|
3357
3360
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
3358
3361
|
componentId?: string | undefined;
|
|
@@ -3420,6 +3423,7 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
3420
3423
|
type: "FigmaVariablesPlugin";
|
|
3421
3424
|
remoteId: string;
|
|
3422
3425
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
3426
|
+
isTokenTypeSplitEnabled: boolean;
|
|
3423
3427
|
warnings?: {
|
|
3424
3428
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
3425
3429
|
componentId?: string | undefined;
|
|
@@ -3514,6 +3518,7 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
3514
3518
|
type: "FigmaVariablesPlugin";
|
|
3515
3519
|
remoteId: string;
|
|
3516
3520
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
3521
|
+
isTokenTypeSplitEnabled: boolean;
|
|
3517
3522
|
warnings?: {
|
|
3518
3523
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
3519
3524
|
componentId?: string | undefined;
|
|
@@ -6006,6 +6011,7 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
6006
6011
|
originKey: string;
|
|
6007
6012
|
}>>;
|
|
6008
6013
|
originKey: z.ZodOptional<z.ZodString>;
|
|
6014
|
+
createdByImportJobId: z.ZodOptional<z.ZodString>;
|
|
6009
6015
|
}, "strip", z.ZodTypeAny, {
|
|
6010
6016
|
id: string;
|
|
6011
6017
|
type: "Image" | "Font";
|
|
@@ -6027,6 +6033,7 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
6027
6033
|
origin?: {
|
|
6028
6034
|
originKey: string;
|
|
6029
6035
|
} | undefined;
|
|
6036
|
+
createdByImportJobId?: string | undefined;
|
|
6030
6037
|
}, {
|
|
6031
6038
|
id: string;
|
|
6032
6039
|
type: "Image" | "Font";
|
|
@@ -6048,6 +6055,7 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
6048
6055
|
origin?: {
|
|
6049
6056
|
originKey: string;
|
|
6050
6057
|
} | undefined;
|
|
6058
|
+
createdByImportJobId?: string | undefined;
|
|
6051
6059
|
}>, "many">;
|
|
6052
6060
|
}, "strip", z.ZodTypeAny, {
|
|
6053
6061
|
files: {
|
|
@@ -6071,6 +6079,7 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
6071
6079
|
origin?: {
|
|
6072
6080
|
originKey: string;
|
|
6073
6081
|
} | undefined;
|
|
6082
|
+
createdByImportJobId?: string | undefined;
|
|
6074
6083
|
}[];
|
|
6075
6084
|
designSystem: {
|
|
6076
6085
|
id: string;
|
|
@@ -6144,6 +6153,7 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
6144
6153
|
type: "FigmaVariablesPlugin";
|
|
6145
6154
|
remoteId: string;
|
|
6146
6155
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
6156
|
+
isTokenTypeSplitEnabled: boolean;
|
|
6147
6157
|
warnings?: {
|
|
6148
6158
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
6149
6159
|
componentId?: string | undefined;
|
|
@@ -6501,6 +6511,7 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
6501
6511
|
origin?: {
|
|
6502
6512
|
originKey: string;
|
|
6503
6513
|
} | undefined;
|
|
6514
|
+
createdByImportJobId?: string | undefined;
|
|
6504
6515
|
}[];
|
|
6505
6516
|
designSystem: {
|
|
6506
6517
|
id: string;
|
|
@@ -6574,6 +6585,7 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
6574
6585
|
type: "FigmaVariablesPlugin";
|
|
6575
6586
|
remoteId: string;
|
|
6576
6587
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
6588
|
+
isTokenTypeSplitEnabled: boolean;
|
|
6577
6589
|
warnings?: {
|
|
6578
6590
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
6579
6591
|
componentId?: string | undefined;
|
|
@@ -12378,10 +12390,12 @@ declare const UserDump: z.ZodObject<{
|
|
|
12378
12390
|
unsupportedStyleValueType?: string | undefined;
|
|
12379
12391
|
referenceId?: string | undefined;
|
|
12380
12392
|
}[] | null | undefined>;
|
|
12393
|
+
isTokenTypeSplitEnabled: z.ZodBoolean;
|
|
12381
12394
|
}, "strip", z.ZodTypeAny, {
|
|
12382
12395
|
type: "FigmaVariablesPlugin";
|
|
12383
12396
|
remoteId: string;
|
|
12384
12397
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
12398
|
+
isTokenTypeSplitEnabled: boolean;
|
|
12385
12399
|
warnings?: {
|
|
12386
12400
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
12387
12401
|
componentId?: string | undefined;
|
|
@@ -12396,6 +12410,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
12396
12410
|
type: "FigmaVariablesPlugin";
|
|
12397
12411
|
remoteId: string;
|
|
12398
12412
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
12413
|
+
isTokenTypeSplitEnabled: boolean;
|
|
12399
12414
|
warnings?: {
|
|
12400
12415
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
12401
12416
|
componentId?: string | undefined;
|
|
@@ -12463,6 +12478,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
12463
12478
|
type: "FigmaVariablesPlugin";
|
|
12464
12479
|
remoteId: string;
|
|
12465
12480
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
12481
|
+
isTokenTypeSplitEnabled: boolean;
|
|
12466
12482
|
warnings?: {
|
|
12467
12483
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
12468
12484
|
componentId?: string | undefined;
|
|
@@ -12557,6 +12573,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
12557
12573
|
type: "FigmaVariablesPlugin";
|
|
12558
12574
|
remoteId: string;
|
|
12559
12575
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
12576
|
+
isTokenTypeSplitEnabled: boolean;
|
|
12560
12577
|
warnings?: {
|
|
12561
12578
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
12562
12579
|
componentId?: string | undefined;
|
|
@@ -15049,6 +15066,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
15049
15066
|
originKey: string;
|
|
15050
15067
|
}>>;
|
|
15051
15068
|
originKey: z.ZodOptional<z.ZodString>;
|
|
15069
|
+
createdByImportJobId: z.ZodOptional<z.ZodString>;
|
|
15052
15070
|
}, "strip", z.ZodTypeAny, {
|
|
15053
15071
|
id: string;
|
|
15054
15072
|
type: "Image" | "Font";
|
|
@@ -15070,6 +15088,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
15070
15088
|
origin?: {
|
|
15071
15089
|
originKey: string;
|
|
15072
15090
|
} | undefined;
|
|
15091
|
+
createdByImportJobId?: string | undefined;
|
|
15073
15092
|
}, {
|
|
15074
15093
|
id: string;
|
|
15075
15094
|
type: "Image" | "Font";
|
|
@@ -15091,6 +15110,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
15091
15110
|
origin?: {
|
|
15092
15111
|
originKey: string;
|
|
15093
15112
|
} | undefined;
|
|
15113
|
+
createdByImportJobId?: string | undefined;
|
|
15094
15114
|
}>, "many">;
|
|
15095
15115
|
}, "strip", z.ZodTypeAny, {
|
|
15096
15116
|
files: {
|
|
@@ -15114,6 +15134,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
15114
15134
|
origin?: {
|
|
15115
15135
|
originKey: string;
|
|
15116
15136
|
} | undefined;
|
|
15137
|
+
createdByImportJobId?: string | undefined;
|
|
15117
15138
|
}[];
|
|
15118
15139
|
designSystem: {
|
|
15119
15140
|
id: string;
|
|
@@ -15187,6 +15208,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
15187
15208
|
type: "FigmaVariablesPlugin";
|
|
15188
15209
|
remoteId: string;
|
|
15189
15210
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
15211
|
+
isTokenTypeSplitEnabled: boolean;
|
|
15190
15212
|
warnings?: {
|
|
15191
15213
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
15192
15214
|
componentId?: string | undefined;
|
|
@@ -15544,6 +15566,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
15544
15566
|
origin?: {
|
|
15545
15567
|
originKey: string;
|
|
15546
15568
|
} | undefined;
|
|
15569
|
+
createdByImportJobId?: string | undefined;
|
|
15547
15570
|
}[];
|
|
15548
15571
|
designSystem: {
|
|
15549
15572
|
id: string;
|
|
@@ -15617,6 +15640,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
15617
15640
|
type: "FigmaVariablesPlugin";
|
|
15618
15641
|
remoteId: string;
|
|
15619
15642
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
15643
|
+
isTokenTypeSplitEnabled: boolean;
|
|
15620
15644
|
warnings?: {
|
|
15621
15645
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
15622
15646
|
componentId?: string | undefined;
|
|
@@ -17169,6 +17193,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
17169
17193
|
origin?: {
|
|
17170
17194
|
originKey: string;
|
|
17171
17195
|
} | undefined;
|
|
17196
|
+
createdByImportJobId?: string | undefined;
|
|
17172
17197
|
}[];
|
|
17173
17198
|
designSystem: {
|
|
17174
17199
|
id: string;
|
|
@@ -17242,6 +17267,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
17242
17267
|
type: "FigmaVariablesPlugin";
|
|
17243
17268
|
remoteId: string;
|
|
17244
17269
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
17270
|
+
isTokenTypeSplitEnabled: boolean;
|
|
17245
17271
|
warnings?: {
|
|
17246
17272
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
17247
17273
|
componentId?: string | undefined;
|
|
@@ -17985,6 +18011,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
17985
18011
|
origin?: {
|
|
17986
18012
|
originKey: string;
|
|
17987
18013
|
} | undefined;
|
|
18014
|
+
createdByImportJobId?: string | undefined;
|
|
17988
18015
|
}[];
|
|
17989
18016
|
designSystem: {
|
|
17990
18017
|
id: string;
|
|
@@ -18058,6 +18085,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
18058
18085
|
type: "FigmaVariablesPlugin";
|
|
18059
18086
|
remoteId: string;
|
|
18060
18087
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
18088
|
+
isTokenTypeSplitEnabled: boolean;
|
|
18061
18089
|
warnings?: {
|
|
18062
18090
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
18063
18091
|
componentId?: string | undefined;
|
|
@@ -18803,6 +18831,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
18803
18831
|
origin?: {
|
|
18804
18832
|
originKey: string;
|
|
18805
18833
|
} | undefined;
|
|
18834
|
+
createdByImportJobId?: string | undefined;
|
|
18806
18835
|
}[];
|
|
18807
18836
|
designSystem: {
|
|
18808
18837
|
id: string;
|
|
@@ -18876,6 +18905,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
18876
18905
|
type: "FigmaVariablesPlugin";
|
|
18877
18906
|
remoteId: string;
|
|
18878
18907
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
18908
|
+
isTokenTypeSplitEnabled: boolean;
|
|
18879
18909
|
warnings?: {
|
|
18880
18910
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
18881
18911
|
componentId?: string | undefined;
|
|
@@ -19692,6 +19722,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19692
19722
|
origin?: {
|
|
19693
19723
|
originKey: string;
|
|
19694
19724
|
} | undefined;
|
|
19725
|
+
createdByImportJobId?: string | undefined;
|
|
19695
19726
|
}[];
|
|
19696
19727
|
designSystem: {
|
|
19697
19728
|
id: string;
|
|
@@ -19765,6 +19796,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19765
19796
|
type: "FigmaVariablesPlugin";
|
|
19766
19797
|
remoteId: string;
|
|
19767
19798
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
19799
|
+
isTokenTypeSplitEnabled: boolean;
|
|
19768
19800
|
warnings?: {
|
|
19769
19801
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
19770
19802
|
componentId?: string | undefined;
|
|
@@ -22469,10 +22501,12 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
22469
22501
|
unsupportedStyleValueType?: string | undefined;
|
|
22470
22502
|
referenceId?: string | undefined;
|
|
22471
22503
|
}[] | null | undefined>;
|
|
22504
|
+
isTokenTypeSplitEnabled: z.ZodBoolean;
|
|
22472
22505
|
}, "strip", z.ZodTypeAny, {
|
|
22473
22506
|
type: "FigmaVariablesPlugin";
|
|
22474
22507
|
remoteId: string;
|
|
22475
22508
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
22509
|
+
isTokenTypeSplitEnabled: boolean;
|
|
22476
22510
|
warnings?: {
|
|
22477
22511
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
22478
22512
|
componentId?: string | undefined;
|
|
@@ -22487,6 +22521,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
22487
22521
|
type: "FigmaVariablesPlugin";
|
|
22488
22522
|
remoteId: string;
|
|
22489
22523
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
22524
|
+
isTokenTypeSplitEnabled: boolean;
|
|
22490
22525
|
warnings?: {
|
|
22491
22526
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
22492
22527
|
componentId?: string | undefined;
|
|
@@ -22554,6 +22589,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
22554
22589
|
type: "FigmaVariablesPlugin";
|
|
22555
22590
|
remoteId: string;
|
|
22556
22591
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
22592
|
+
isTokenTypeSplitEnabled: boolean;
|
|
22557
22593
|
warnings?: {
|
|
22558
22594
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
22559
22595
|
componentId?: string | undefined;
|
|
@@ -22648,6 +22684,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
22648
22684
|
type: "FigmaVariablesPlugin";
|
|
22649
22685
|
remoteId: string;
|
|
22650
22686
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
22687
|
+
isTokenTypeSplitEnabled: boolean;
|
|
22651
22688
|
warnings?: {
|
|
22652
22689
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
22653
22690
|
componentId?: string | undefined;
|
|
@@ -25140,6 +25177,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25140
25177
|
originKey: string;
|
|
25141
25178
|
}>>;
|
|
25142
25179
|
originKey: z.ZodOptional<z.ZodString>;
|
|
25180
|
+
createdByImportJobId: z.ZodOptional<z.ZodString>;
|
|
25143
25181
|
}, "strip", z.ZodTypeAny, {
|
|
25144
25182
|
id: string;
|
|
25145
25183
|
type: "Image" | "Font";
|
|
@@ -25161,6 +25199,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25161
25199
|
origin?: {
|
|
25162
25200
|
originKey: string;
|
|
25163
25201
|
} | undefined;
|
|
25202
|
+
createdByImportJobId?: string | undefined;
|
|
25164
25203
|
}, {
|
|
25165
25204
|
id: string;
|
|
25166
25205
|
type: "Image" | "Font";
|
|
@@ -25182,6 +25221,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25182
25221
|
origin?: {
|
|
25183
25222
|
originKey: string;
|
|
25184
25223
|
} | undefined;
|
|
25224
|
+
createdByImportJobId?: string | undefined;
|
|
25185
25225
|
}>, "many">;
|
|
25186
25226
|
}, "strip", z.ZodTypeAny, {
|
|
25187
25227
|
files: {
|
|
@@ -25205,6 +25245,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25205
25245
|
origin?: {
|
|
25206
25246
|
originKey: string;
|
|
25207
25247
|
} | undefined;
|
|
25248
|
+
createdByImportJobId?: string | undefined;
|
|
25208
25249
|
}[];
|
|
25209
25250
|
designSystem: {
|
|
25210
25251
|
id: string;
|
|
@@ -25278,6 +25319,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25278
25319
|
type: "FigmaVariablesPlugin";
|
|
25279
25320
|
remoteId: string;
|
|
25280
25321
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
25322
|
+
isTokenTypeSplitEnabled: boolean;
|
|
25281
25323
|
warnings?: {
|
|
25282
25324
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
25283
25325
|
componentId?: string | undefined;
|
|
@@ -25635,6 +25677,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25635
25677
|
origin?: {
|
|
25636
25678
|
originKey: string;
|
|
25637
25679
|
} | undefined;
|
|
25680
|
+
createdByImportJobId?: string | undefined;
|
|
25638
25681
|
}[];
|
|
25639
25682
|
designSystem: {
|
|
25640
25683
|
id: string;
|
|
@@ -25708,6 +25751,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25708
25751
|
type: "FigmaVariablesPlugin";
|
|
25709
25752
|
remoteId: string;
|
|
25710
25753
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
25754
|
+
isTokenTypeSplitEnabled: boolean;
|
|
25711
25755
|
warnings?: {
|
|
25712
25756
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
25713
25757
|
componentId?: string | undefined;
|
|
@@ -27260,6 +27304,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
27260
27304
|
origin?: {
|
|
27261
27305
|
originKey: string;
|
|
27262
27306
|
} | undefined;
|
|
27307
|
+
createdByImportJobId?: string | undefined;
|
|
27263
27308
|
}[];
|
|
27264
27309
|
designSystem: {
|
|
27265
27310
|
id: string;
|
|
@@ -27333,6 +27378,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
27333
27378
|
type: "FigmaVariablesPlugin";
|
|
27334
27379
|
remoteId: string;
|
|
27335
27380
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
27381
|
+
isTokenTypeSplitEnabled: boolean;
|
|
27336
27382
|
warnings?: {
|
|
27337
27383
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
27338
27384
|
componentId?: string | undefined;
|
|
@@ -28076,6 +28122,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28076
28122
|
origin?: {
|
|
28077
28123
|
originKey: string;
|
|
28078
28124
|
} | undefined;
|
|
28125
|
+
createdByImportJobId?: string | undefined;
|
|
28079
28126
|
}[];
|
|
28080
28127
|
designSystem: {
|
|
28081
28128
|
id: string;
|
|
@@ -28149,6 +28196,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28149
28196
|
type: "FigmaVariablesPlugin";
|
|
28150
28197
|
remoteId: string;
|
|
28151
28198
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
28199
|
+
isTokenTypeSplitEnabled: boolean;
|
|
28152
28200
|
warnings?: {
|
|
28153
28201
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
28154
28202
|
componentId?: string | undefined;
|
|
@@ -29704,6 +29752,8 @@ declare function promiseWithTimeout<T>(timeoutMs: number, promise: () => Promise
|
|
|
29704
29752
|
declare function sleep(ms: number): Promise<void>;
|
|
29705
29753
|
declare function uniqueBy<K, V>(items: V[], prop: (v: V) => K): V[];
|
|
29706
29754
|
declare function areShallowObjectsEqual<T extends object>(lhs: T | undefined, rhs: T | undefined): boolean;
|
|
29755
|
+
declare function isNotNullish<T>(value: T | null | undefined): value is T;
|
|
29756
|
+
declare function isNullish<T>(value: T | null | undefined): value is null | undefined;
|
|
29707
29757
|
type Pagination = {
|
|
29708
29758
|
skip?: number;
|
|
29709
29759
|
take?: number;
|
|
@@ -29948,6 +29998,7 @@ declare const Asset: z.ZodObject<{
|
|
|
29948
29998
|
originKey: string;
|
|
29949
29999
|
}>>;
|
|
29950
30000
|
originKey: z.ZodOptional<z.ZodString>;
|
|
30001
|
+
createdByImportJobId: z.ZodOptional<z.ZodString>;
|
|
29951
30002
|
}, "strip", z.ZodTypeAny, {
|
|
29952
30003
|
id: string;
|
|
29953
30004
|
type: "Image" | "Font";
|
|
@@ -29969,6 +30020,7 @@ declare const Asset: z.ZodObject<{
|
|
|
29969
30020
|
origin?: {
|
|
29970
30021
|
originKey: string;
|
|
29971
30022
|
} | undefined;
|
|
30023
|
+
createdByImportJobId?: string | undefined;
|
|
29972
30024
|
}, {
|
|
29973
30025
|
id: string;
|
|
29974
30026
|
type: "Image" | "Font";
|
|
@@ -29990,6 +30042,7 @@ declare const Asset: z.ZodObject<{
|
|
|
29990
30042
|
origin?: {
|
|
29991
30043
|
originKey: string;
|
|
29992
30044
|
} | undefined;
|
|
30045
|
+
createdByImportJobId?: string | undefined;
|
|
29993
30046
|
}>;
|
|
29994
30047
|
type Asset = z.infer<typeof Asset>;
|
|
29995
30048
|
declare const ResolvedAsset: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -30039,6 +30092,7 @@ declare const ResolvedAsset: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
30039
30092
|
originKey: string;
|
|
30040
30093
|
}>>;
|
|
30041
30094
|
originKey: z.ZodOptional<z.ZodString>;
|
|
30095
|
+
createdByImportJobId: z.ZodOptional<z.ZodString>;
|
|
30042
30096
|
}, {
|
|
30043
30097
|
url: z.ZodString;
|
|
30044
30098
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -30063,6 +30117,7 @@ declare const ResolvedAsset: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
30063
30117
|
origin?: {
|
|
30064
30118
|
originKey: string;
|
|
30065
30119
|
} | undefined;
|
|
30120
|
+
createdByImportJobId?: string | undefined;
|
|
30066
30121
|
}, {
|
|
30067
30122
|
id: string;
|
|
30068
30123
|
type: "Image" | "Font";
|
|
@@ -30085,6 +30140,7 @@ declare const ResolvedAsset: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
30085
30140
|
origin?: {
|
|
30086
30141
|
originKey: string;
|
|
30087
30142
|
} | undefined;
|
|
30143
|
+
createdByImportJobId?: string | undefined;
|
|
30088
30144
|
}>;
|
|
30089
30145
|
type ResolvedAsset = z.infer<typeof ResolvedAsset>;
|
|
30090
30146
|
type ImportedAsset = OmitStrict<Asset, "originKey"> & {
|
|
@@ -30462,10 +30518,12 @@ declare const DataSourceUploadRemote: z.ZodObject<{
|
|
|
30462
30518
|
unsupportedStyleValueType?: string | undefined;
|
|
30463
30519
|
referenceId?: string | undefined;
|
|
30464
30520
|
}[] | null | undefined>;
|
|
30521
|
+
isTokenTypeSplitEnabled: z.ZodBoolean;
|
|
30465
30522
|
}, "strip", z.ZodTypeAny, {
|
|
30466
30523
|
type: "FigmaVariablesPlugin";
|
|
30467
30524
|
remoteId: string;
|
|
30468
30525
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
30526
|
+
isTokenTypeSplitEnabled: boolean;
|
|
30469
30527
|
warnings?: {
|
|
30470
30528
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
30471
30529
|
componentId?: string | undefined;
|
|
@@ -30480,6 +30538,7 @@ declare const DataSourceUploadRemote: z.ZodObject<{
|
|
|
30480
30538
|
type: "FigmaVariablesPlugin";
|
|
30481
30539
|
remoteId: string;
|
|
30482
30540
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
30541
|
+
isTokenTypeSplitEnabled: boolean;
|
|
30483
30542
|
warnings?: {
|
|
30484
30543
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
30485
30544
|
componentId?: string | undefined;
|
|
@@ -30685,10 +30744,12 @@ declare const DataSourceRemote: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
30685
30744
|
unsupportedStyleValueType?: string | undefined;
|
|
30686
30745
|
referenceId?: string | undefined;
|
|
30687
30746
|
}[] | null | undefined>;
|
|
30747
|
+
isTokenTypeSplitEnabled: z.ZodBoolean;
|
|
30688
30748
|
}, "strip", z.ZodTypeAny, {
|
|
30689
30749
|
type: "FigmaVariablesPlugin";
|
|
30690
30750
|
remoteId: string;
|
|
30691
30751
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
30752
|
+
isTokenTypeSplitEnabled: boolean;
|
|
30692
30753
|
warnings?: {
|
|
30693
30754
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
30694
30755
|
componentId?: string | undefined;
|
|
@@ -30703,6 +30764,7 @@ declare const DataSourceRemote: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
30703
30764
|
type: "FigmaVariablesPlugin";
|
|
30704
30765
|
remoteId: string;
|
|
30705
30766
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
30767
|
+
isTokenTypeSplitEnabled: boolean;
|
|
30706
30768
|
warnings?: {
|
|
30707
30769
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
30708
30770
|
componentId?: string | undefined;
|
|
@@ -31045,10 +31107,12 @@ declare const DataSource: z.ZodObject<{
|
|
|
31045
31107
|
unsupportedStyleValueType?: string | undefined;
|
|
31046
31108
|
referenceId?: string | undefined;
|
|
31047
31109
|
}[] | null | undefined>;
|
|
31110
|
+
isTokenTypeSplitEnabled: z.ZodBoolean;
|
|
31048
31111
|
}, "strip", z.ZodTypeAny, {
|
|
31049
31112
|
type: "FigmaVariablesPlugin";
|
|
31050
31113
|
remoteId: string;
|
|
31051
31114
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
31115
|
+
isTokenTypeSplitEnabled: boolean;
|
|
31052
31116
|
warnings?: {
|
|
31053
31117
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
31054
31118
|
componentId?: string | undefined;
|
|
@@ -31063,6 +31127,7 @@ declare const DataSource: z.ZodObject<{
|
|
|
31063
31127
|
type: "FigmaVariablesPlugin";
|
|
31064
31128
|
remoteId: string;
|
|
31065
31129
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
31130
|
+
isTokenTypeSplitEnabled: boolean;
|
|
31066
31131
|
warnings?: {
|
|
31067
31132
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
31068
31133
|
componentId?: string | undefined;
|
|
@@ -31130,6 +31195,7 @@ declare const DataSource: z.ZodObject<{
|
|
|
31130
31195
|
type: "FigmaVariablesPlugin";
|
|
31131
31196
|
remoteId: string;
|
|
31132
31197
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
31198
|
+
isTokenTypeSplitEnabled: boolean;
|
|
31133
31199
|
warnings?: {
|
|
31134
31200
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
31135
31201
|
componentId?: string | undefined;
|
|
@@ -31224,6 +31290,7 @@ declare const DataSource: z.ZodObject<{
|
|
|
31224
31290
|
type: "FigmaVariablesPlugin";
|
|
31225
31291
|
remoteId: string;
|
|
31226
31292
|
remoteSourceType: "Custom" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
31293
|
+
isTokenTypeSplitEnabled: boolean;
|
|
31227
31294
|
warnings?: {
|
|
31228
31295
|
warningType: "NoVersionFound" | "UnsupportedFill" | "UnsupportedStroke" | "UnsupportedEffect" | "NoPublishedElements" | "NoPublishedStyles" | "NoPublishedComponents" | "NoPublishedAssets" | "StyleNotApplied" | "ComponentHasNoThumbnail" | "DuplicateImportedStyleId" | "DuplicateImportedStylePath" | "NoUnpublishedStyles" | "ReferenceResolutionFailed";
|
|
31229
31296
|
componentId?: string | undefined;
|
|
@@ -36433,6 +36500,11 @@ declare const ComponentElementData: z.ZodObject<{
|
|
|
36433
36500
|
type: "InstanceSwap";
|
|
36434
36501
|
name: string;
|
|
36435
36502
|
defaultValue: string;
|
|
36503
|
+
defaultValuePreview?: {
|
|
36504
|
+
componentName: string;
|
|
36505
|
+
isRemote: boolean;
|
|
36506
|
+
componentSetName?: string | undefined;
|
|
36507
|
+
} | undefined;
|
|
36436
36508
|
} | {
|
|
36437
36509
|
id: string;
|
|
36438
36510
|
options: string[];
|
|
@@ -36454,6 +36526,11 @@ declare const ComponentElementData: z.ZodObject<{
|
|
|
36454
36526
|
type: "InstanceSwap";
|
|
36455
36527
|
name: string;
|
|
36456
36528
|
defaultValue: string;
|
|
36529
|
+
defaultValuePreview?: {
|
|
36530
|
+
componentName: string;
|
|
36531
|
+
isRemote: boolean;
|
|
36532
|
+
componentSetName?: string | undefined;
|
|
36533
|
+
} | undefined;
|
|
36457
36534
|
} | {
|
|
36458
36535
|
id: string;
|
|
36459
36536
|
options: string[];
|
|
@@ -36475,6 +36552,11 @@ declare const ComponentElementData: z.ZodObject<{
|
|
|
36475
36552
|
type: "InstanceSwap";
|
|
36476
36553
|
name: string;
|
|
36477
36554
|
defaultValue: string;
|
|
36555
|
+
defaultValuePreview?: {
|
|
36556
|
+
componentName: string;
|
|
36557
|
+
isRemote: boolean;
|
|
36558
|
+
componentSetName?: string | undefined;
|
|
36559
|
+
} | undefined;
|
|
36478
36560
|
} | {
|
|
36479
36561
|
id: string;
|
|
36480
36562
|
options: string[];
|
|
@@ -36496,6 +36578,11 @@ declare const ComponentElementData: z.ZodObject<{
|
|
|
36496
36578
|
type: "InstanceSwap";
|
|
36497
36579
|
name: string;
|
|
36498
36580
|
defaultValue: string;
|
|
36581
|
+
defaultValuePreview?: {
|
|
36582
|
+
componentName: string;
|
|
36583
|
+
isRemote: boolean;
|
|
36584
|
+
componentSetName?: string | undefined;
|
|
36585
|
+
} | undefined;
|
|
36499
36586
|
} | {
|
|
36500
36587
|
id: string;
|
|
36501
36588
|
options: string[];
|
|
@@ -36533,6 +36620,11 @@ declare const ComponentElementData: z.ZodObject<{
|
|
|
36533
36620
|
type: "InstanceSwap";
|
|
36534
36621
|
name: string;
|
|
36535
36622
|
defaultValue: string;
|
|
36623
|
+
defaultValuePreview?: {
|
|
36624
|
+
componentName: string;
|
|
36625
|
+
isRemote: boolean;
|
|
36626
|
+
componentSetName?: string | undefined;
|
|
36627
|
+
} | undefined;
|
|
36536
36628
|
} | {
|
|
36537
36629
|
id: string;
|
|
36538
36630
|
options: string[];
|
|
@@ -36570,6 +36662,11 @@ declare const ComponentElementData: z.ZodObject<{
|
|
|
36570
36662
|
type: "InstanceSwap";
|
|
36571
36663
|
name: string;
|
|
36572
36664
|
defaultValue: string;
|
|
36665
|
+
defaultValuePreview?: {
|
|
36666
|
+
componentName: string;
|
|
36667
|
+
isRemote: boolean;
|
|
36668
|
+
componentSetName?: string | undefined;
|
|
36669
|
+
} | undefined;
|
|
36573
36670
|
} | {
|
|
36574
36671
|
id: string;
|
|
36575
36672
|
options: string[];
|
|
@@ -36609,6 +36706,11 @@ declare const ComponentElementData: z.ZodObject<{
|
|
|
36609
36706
|
type: "InstanceSwap";
|
|
36610
36707
|
name: string;
|
|
36611
36708
|
defaultValue: string;
|
|
36709
|
+
defaultValuePreview?: {
|
|
36710
|
+
componentName: string;
|
|
36711
|
+
isRemote: boolean;
|
|
36712
|
+
componentSetName?: string | undefined;
|
|
36713
|
+
} | undefined;
|
|
36612
36714
|
} | {
|
|
36613
36715
|
id: string;
|
|
36614
36716
|
options: string[];
|
|
@@ -36648,6 +36750,11 @@ declare const ComponentElementData: z.ZodObject<{
|
|
|
36648
36750
|
type: "InstanceSwap";
|
|
36649
36751
|
name: string;
|
|
36650
36752
|
defaultValue: string;
|
|
36753
|
+
defaultValuePreview?: {
|
|
36754
|
+
componentName: string;
|
|
36755
|
+
isRemote: boolean;
|
|
36756
|
+
componentSetName?: string | undefined;
|
|
36757
|
+
} | undefined;
|
|
36651
36758
|
} | {
|
|
36652
36759
|
id: string;
|
|
36653
36760
|
options: string[];
|
|
@@ -50689,6 +50796,20 @@ declare const FigmaComponentPropertyOrigin: z.ZodObject<{
|
|
|
50689
50796
|
}, {
|
|
50690
50797
|
id: string;
|
|
50691
50798
|
}>;
|
|
50799
|
+
declare const FigmaComponentInstancePreview: z.ZodObject<{
|
|
50800
|
+
componentName: z.ZodString;
|
|
50801
|
+
componentSetName: z.ZodOptional<z.ZodString>;
|
|
50802
|
+
isRemote: z.ZodBoolean;
|
|
50803
|
+
}, "strip", z.ZodTypeAny, {
|
|
50804
|
+
componentName: string;
|
|
50805
|
+
isRemote: boolean;
|
|
50806
|
+
componentSetName?: string | undefined;
|
|
50807
|
+
}, {
|
|
50808
|
+
componentName: string;
|
|
50809
|
+
isRemote: boolean;
|
|
50810
|
+
componentSetName?: string | undefined;
|
|
50811
|
+
}>;
|
|
50812
|
+
type FigmaComponentInstancePreview = z.infer<typeof FigmaComponentInstancePreview>;
|
|
50692
50813
|
declare const FigmaComponentPropertyType: z.ZodEnum<["Boolean", "InstanceSwap", "Variant", "Text"]>;
|
|
50693
50814
|
type FigmaComponentPropertyType = z.infer<typeof FigmaComponentPropertyType>;
|
|
50694
50815
|
declare const FigmaComponentBooleanProperty: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -50715,16 +50836,39 @@ declare const FigmaComponentInstanceSwapProperty: z.ZodObject<z.objectUtil.exten
|
|
|
50715
50836
|
}, {
|
|
50716
50837
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
50717
50838
|
defaultValue: z.ZodString;
|
|
50839
|
+
defaultValuePreview: z.ZodOptional<z.ZodObject<{
|
|
50840
|
+
componentName: z.ZodString;
|
|
50841
|
+
componentSetName: z.ZodOptional<z.ZodString>;
|
|
50842
|
+
isRemote: z.ZodBoolean;
|
|
50843
|
+
}, "strip", z.ZodTypeAny, {
|
|
50844
|
+
componentName: string;
|
|
50845
|
+
isRemote: boolean;
|
|
50846
|
+
componentSetName?: string | undefined;
|
|
50847
|
+
}, {
|
|
50848
|
+
componentName: string;
|
|
50849
|
+
isRemote: boolean;
|
|
50850
|
+
componentSetName?: string | undefined;
|
|
50851
|
+
}>>;
|
|
50718
50852
|
}>, "strip", z.ZodTypeAny, {
|
|
50719
50853
|
id: string;
|
|
50720
50854
|
type: "InstanceSwap";
|
|
50721
50855
|
name: string;
|
|
50722
50856
|
defaultValue: string;
|
|
50857
|
+
defaultValuePreview?: {
|
|
50858
|
+
componentName: string;
|
|
50859
|
+
isRemote: boolean;
|
|
50860
|
+
componentSetName?: string | undefined;
|
|
50861
|
+
} | undefined;
|
|
50723
50862
|
}, {
|
|
50724
50863
|
id: string;
|
|
50725
50864
|
type: "InstanceSwap";
|
|
50726
50865
|
name: string;
|
|
50727
50866
|
defaultValue: string;
|
|
50867
|
+
defaultValuePreview?: {
|
|
50868
|
+
componentName: string;
|
|
50869
|
+
isRemote: boolean;
|
|
50870
|
+
componentSetName?: string | undefined;
|
|
50871
|
+
} | undefined;
|
|
50728
50872
|
}>;
|
|
50729
50873
|
type FigmaComponentInstanceSwapProperty = z.infer<typeof FigmaComponentInstanceSwapProperty>;
|
|
50730
50874
|
declare const FigmaComponentVariantProperty: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -50789,16 +50933,39 @@ declare const FigmaComponentProperty: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
50789
50933
|
}, {
|
|
50790
50934
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
50791
50935
|
defaultValue: z.ZodString;
|
|
50936
|
+
defaultValuePreview: z.ZodOptional<z.ZodObject<{
|
|
50937
|
+
componentName: z.ZodString;
|
|
50938
|
+
componentSetName: z.ZodOptional<z.ZodString>;
|
|
50939
|
+
isRemote: z.ZodBoolean;
|
|
50940
|
+
}, "strip", z.ZodTypeAny, {
|
|
50941
|
+
componentName: string;
|
|
50942
|
+
isRemote: boolean;
|
|
50943
|
+
componentSetName?: string | undefined;
|
|
50944
|
+
}, {
|
|
50945
|
+
componentName: string;
|
|
50946
|
+
isRemote: boolean;
|
|
50947
|
+
componentSetName?: string | undefined;
|
|
50948
|
+
}>>;
|
|
50792
50949
|
}>, "strip", z.ZodTypeAny, {
|
|
50793
50950
|
id: string;
|
|
50794
50951
|
type: "InstanceSwap";
|
|
50795
50952
|
name: string;
|
|
50796
50953
|
defaultValue: string;
|
|
50954
|
+
defaultValuePreview?: {
|
|
50955
|
+
componentName: string;
|
|
50956
|
+
isRemote: boolean;
|
|
50957
|
+
componentSetName?: string | undefined;
|
|
50958
|
+
} | undefined;
|
|
50797
50959
|
}, {
|
|
50798
50960
|
id: string;
|
|
50799
50961
|
type: "InstanceSwap";
|
|
50800
50962
|
name: string;
|
|
50801
50963
|
defaultValue: string;
|
|
50964
|
+
defaultValuePreview?: {
|
|
50965
|
+
componentName: string;
|
|
50966
|
+
isRemote: boolean;
|
|
50967
|
+
componentSetName?: string | undefined;
|
|
50968
|
+
} | undefined;
|
|
50802
50969
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
50803
50970
|
id: z.ZodString;
|
|
50804
50971
|
name: z.ZodString;
|
|
@@ -50859,16 +51026,39 @@ declare const FigmaComponentPropertyMap: z.ZodRecord<z.ZodString, z.ZodDiscrimin
|
|
|
50859
51026
|
}, {
|
|
50860
51027
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
50861
51028
|
defaultValue: z.ZodString;
|
|
51029
|
+
defaultValuePreview: z.ZodOptional<z.ZodObject<{
|
|
51030
|
+
componentName: z.ZodString;
|
|
51031
|
+
componentSetName: z.ZodOptional<z.ZodString>;
|
|
51032
|
+
isRemote: z.ZodBoolean;
|
|
51033
|
+
}, "strip", z.ZodTypeAny, {
|
|
51034
|
+
componentName: string;
|
|
51035
|
+
isRemote: boolean;
|
|
51036
|
+
componentSetName?: string | undefined;
|
|
51037
|
+
}, {
|
|
51038
|
+
componentName: string;
|
|
51039
|
+
isRemote: boolean;
|
|
51040
|
+
componentSetName?: string | undefined;
|
|
51041
|
+
}>>;
|
|
50862
51042
|
}>, "strip", z.ZodTypeAny, {
|
|
50863
51043
|
id: string;
|
|
50864
51044
|
type: "InstanceSwap";
|
|
50865
51045
|
name: string;
|
|
50866
51046
|
defaultValue: string;
|
|
51047
|
+
defaultValuePreview?: {
|
|
51048
|
+
componentName: string;
|
|
51049
|
+
isRemote: boolean;
|
|
51050
|
+
componentSetName?: string | undefined;
|
|
51051
|
+
} | undefined;
|
|
50867
51052
|
}, {
|
|
50868
51053
|
id: string;
|
|
50869
51054
|
type: "InstanceSwap";
|
|
50870
51055
|
name: string;
|
|
50871
51056
|
defaultValue: string;
|
|
51057
|
+
defaultValuePreview?: {
|
|
51058
|
+
componentName: string;
|
|
51059
|
+
isRemote: boolean;
|
|
51060
|
+
componentSetName?: string | undefined;
|
|
51061
|
+
} | undefined;
|
|
50872
51062
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
50873
51063
|
id: z.ZodString;
|
|
50874
51064
|
name: z.ZodString;
|
|
@@ -55681,16 +55871,39 @@ declare const FigmaComponent: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
55681
55871
|
}, {
|
|
55682
55872
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
55683
55873
|
defaultValue: z.ZodString;
|
|
55874
|
+
defaultValuePreview: z.ZodOptional<z.ZodObject<{
|
|
55875
|
+
componentName: z.ZodString;
|
|
55876
|
+
componentSetName: z.ZodOptional<z.ZodString>;
|
|
55877
|
+
isRemote: z.ZodBoolean;
|
|
55878
|
+
}, "strip", z.ZodTypeAny, {
|
|
55879
|
+
componentName: string;
|
|
55880
|
+
isRemote: boolean;
|
|
55881
|
+
componentSetName?: string | undefined;
|
|
55882
|
+
}, {
|
|
55883
|
+
componentName: string;
|
|
55884
|
+
isRemote: boolean;
|
|
55885
|
+
componentSetName?: string | undefined;
|
|
55886
|
+
}>>;
|
|
55684
55887
|
}>, "strip", z.ZodTypeAny, {
|
|
55685
55888
|
id: string;
|
|
55686
55889
|
type: "InstanceSwap";
|
|
55687
55890
|
name: string;
|
|
55688
55891
|
defaultValue: string;
|
|
55892
|
+
defaultValuePreview?: {
|
|
55893
|
+
componentName: string;
|
|
55894
|
+
isRemote: boolean;
|
|
55895
|
+
componentSetName?: string | undefined;
|
|
55896
|
+
} | undefined;
|
|
55689
55897
|
}, {
|
|
55690
55898
|
id: string;
|
|
55691
55899
|
type: "InstanceSwap";
|
|
55692
55900
|
name: string;
|
|
55693
55901
|
defaultValue: string;
|
|
55902
|
+
defaultValuePreview?: {
|
|
55903
|
+
componentName: string;
|
|
55904
|
+
isRemote: boolean;
|
|
55905
|
+
componentSetName?: string | undefined;
|
|
55906
|
+
} | undefined;
|
|
55694
55907
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
55695
55908
|
id: z.ZodString;
|
|
55696
55909
|
name: z.ZodString;
|
|
@@ -55782,6 +55995,11 @@ declare const FigmaComponent: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
55782
55995
|
type: "InstanceSwap";
|
|
55783
55996
|
name: string;
|
|
55784
55997
|
defaultValue: string;
|
|
55998
|
+
defaultValuePreview?: {
|
|
55999
|
+
componentName: string;
|
|
56000
|
+
isRemote: boolean;
|
|
56001
|
+
componentSetName?: string | undefined;
|
|
56002
|
+
} | undefined;
|
|
55785
56003
|
} | {
|
|
55786
56004
|
id: string;
|
|
55787
56005
|
options: string[];
|
|
@@ -55836,6 +56054,11 @@ declare const FigmaComponent: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
55836
56054
|
type: "InstanceSwap";
|
|
55837
56055
|
name: string;
|
|
55838
56056
|
defaultValue: string;
|
|
56057
|
+
defaultValuePreview?: {
|
|
56058
|
+
componentName: string;
|
|
56059
|
+
isRemote: boolean;
|
|
56060
|
+
componentSetName?: string | undefined;
|
|
56061
|
+
} | undefined;
|
|
55839
56062
|
} | {
|
|
55840
56063
|
id: string;
|
|
55841
56064
|
options: string[];
|
|
@@ -82024,16 +82247,39 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
82024
82247
|
}, {
|
|
82025
82248
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
82026
82249
|
defaultValue: z.ZodString;
|
|
82250
|
+
defaultValuePreview: z.ZodOptional<z.ZodObject<{
|
|
82251
|
+
componentName: z.ZodString;
|
|
82252
|
+
componentSetName: z.ZodOptional<z.ZodString>;
|
|
82253
|
+
isRemote: z.ZodBoolean;
|
|
82254
|
+
}, "strip", z.ZodTypeAny, {
|
|
82255
|
+
componentName: string;
|
|
82256
|
+
isRemote: boolean;
|
|
82257
|
+
componentSetName?: string | undefined;
|
|
82258
|
+
}, {
|
|
82259
|
+
componentName: string;
|
|
82260
|
+
isRemote: boolean;
|
|
82261
|
+
componentSetName?: string | undefined;
|
|
82262
|
+
}>>;
|
|
82027
82263
|
}>, "strip", z.ZodTypeAny, {
|
|
82028
82264
|
id: string;
|
|
82029
82265
|
type: "InstanceSwap";
|
|
82030
82266
|
name: string;
|
|
82031
82267
|
defaultValue: string;
|
|
82268
|
+
defaultValuePreview?: {
|
|
82269
|
+
componentName: string;
|
|
82270
|
+
isRemote: boolean;
|
|
82271
|
+
componentSetName?: string | undefined;
|
|
82272
|
+
} | undefined;
|
|
82032
82273
|
}, {
|
|
82033
82274
|
id: string;
|
|
82034
82275
|
type: "InstanceSwap";
|
|
82035
82276
|
name: string;
|
|
82036
82277
|
defaultValue: string;
|
|
82278
|
+
defaultValuePreview?: {
|
|
82279
|
+
componentName: string;
|
|
82280
|
+
isRemote: boolean;
|
|
82281
|
+
componentSetName?: string | undefined;
|
|
82282
|
+
} | undefined;
|
|
82037
82283
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
82038
82284
|
id: z.ZodString;
|
|
82039
82285
|
name: z.ZodString;
|
|
@@ -82184,6 +82430,11 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
82184
82430
|
type: "InstanceSwap";
|
|
82185
82431
|
name: string;
|
|
82186
82432
|
defaultValue: string;
|
|
82433
|
+
defaultValuePreview?: {
|
|
82434
|
+
componentName: string;
|
|
82435
|
+
isRemote: boolean;
|
|
82436
|
+
componentSetName?: string | undefined;
|
|
82437
|
+
} | undefined;
|
|
82187
82438
|
} | {
|
|
82188
82439
|
id: string;
|
|
82189
82440
|
options: string[];
|
|
@@ -82258,6 +82509,11 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
82258
82509
|
type: "InstanceSwap";
|
|
82259
82510
|
name: string;
|
|
82260
82511
|
defaultValue: string;
|
|
82512
|
+
defaultValuePreview?: {
|
|
82513
|
+
componentName: string;
|
|
82514
|
+
isRemote: boolean;
|
|
82515
|
+
componentSetName?: string | undefined;
|
|
82516
|
+
} | undefined;
|
|
82261
82517
|
} | {
|
|
82262
82518
|
id: string;
|
|
82263
82519
|
options: string[];
|
|
@@ -89237,6 +89493,11 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
89237
89493
|
type: "InstanceSwap";
|
|
89238
89494
|
name: string;
|
|
89239
89495
|
defaultValue: string;
|
|
89496
|
+
defaultValuePreview?: {
|
|
89497
|
+
componentName: string;
|
|
89498
|
+
isRemote: boolean;
|
|
89499
|
+
componentSetName?: string | undefined;
|
|
89500
|
+
} | undefined;
|
|
89240
89501
|
} | {
|
|
89241
89502
|
id: string;
|
|
89242
89503
|
options: string[];
|
|
@@ -90591,6 +90852,11 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
90591
90852
|
type: "InstanceSwap";
|
|
90592
90853
|
name: string;
|
|
90593
90854
|
defaultValue: string;
|
|
90855
|
+
defaultValuePreview?: {
|
|
90856
|
+
componentName: string;
|
|
90857
|
+
isRemote: boolean;
|
|
90858
|
+
componentSetName?: string | undefined;
|
|
90859
|
+
} | undefined;
|
|
90594
90860
|
} | {
|
|
90595
90861
|
id: string;
|
|
90596
90862
|
options: string[];
|
|
@@ -93819,16 +94085,39 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
93819
94085
|
}, {
|
|
93820
94086
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
93821
94087
|
defaultValue: z.ZodString;
|
|
94088
|
+
defaultValuePreview: z.ZodOptional<z.ZodObject<{
|
|
94089
|
+
componentName: z.ZodString;
|
|
94090
|
+
componentSetName: z.ZodOptional<z.ZodString>;
|
|
94091
|
+
isRemote: z.ZodBoolean;
|
|
94092
|
+
}, "strip", z.ZodTypeAny, {
|
|
94093
|
+
componentName: string;
|
|
94094
|
+
isRemote: boolean;
|
|
94095
|
+
componentSetName?: string | undefined;
|
|
94096
|
+
}, {
|
|
94097
|
+
componentName: string;
|
|
94098
|
+
isRemote: boolean;
|
|
94099
|
+
componentSetName?: string | undefined;
|
|
94100
|
+
}>>;
|
|
93822
94101
|
}>, "strip", z.ZodTypeAny, {
|
|
93823
94102
|
id: string;
|
|
93824
94103
|
type: "InstanceSwap";
|
|
93825
94104
|
name: string;
|
|
93826
94105
|
defaultValue: string;
|
|
94106
|
+
defaultValuePreview?: {
|
|
94107
|
+
componentName: string;
|
|
94108
|
+
isRemote: boolean;
|
|
94109
|
+
componentSetName?: string | undefined;
|
|
94110
|
+
} | undefined;
|
|
93827
94111
|
}, {
|
|
93828
94112
|
id: string;
|
|
93829
94113
|
type: "InstanceSwap";
|
|
93830
94114
|
name: string;
|
|
93831
94115
|
defaultValue: string;
|
|
94116
|
+
defaultValuePreview?: {
|
|
94117
|
+
componentName: string;
|
|
94118
|
+
isRemote: boolean;
|
|
94119
|
+
componentSetName?: string | undefined;
|
|
94120
|
+
} | undefined;
|
|
93832
94121
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
93833
94122
|
id: z.ZodString;
|
|
93834
94123
|
name: z.ZodString;
|
|
@@ -93927,6 +94216,11 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
93927
94216
|
type: "InstanceSwap";
|
|
93928
94217
|
name: string;
|
|
93929
94218
|
defaultValue: string;
|
|
94219
|
+
defaultValuePreview?: {
|
|
94220
|
+
componentName: string;
|
|
94221
|
+
isRemote: boolean;
|
|
94222
|
+
componentSetName?: string | undefined;
|
|
94223
|
+
} | undefined;
|
|
93930
94224
|
} | {
|
|
93931
94225
|
id: string;
|
|
93932
94226
|
options: string[];
|
|
@@ -93987,6 +94281,11 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
93987
94281
|
type: "InstanceSwap";
|
|
93988
94282
|
name: string;
|
|
93989
94283
|
defaultValue: string;
|
|
94284
|
+
defaultValuePreview?: {
|
|
94285
|
+
componentName: string;
|
|
94286
|
+
isRemote: boolean;
|
|
94287
|
+
componentSetName?: string | undefined;
|
|
94288
|
+
} | undefined;
|
|
93990
94289
|
} | {
|
|
93991
94290
|
id: string;
|
|
93992
94291
|
options: string[];
|
|
@@ -94131,16 +94430,39 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
94131
94430
|
}, {
|
|
94132
94431
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
94133
94432
|
defaultValue: z.ZodString;
|
|
94433
|
+
defaultValuePreview: z.ZodOptional<z.ZodObject<{
|
|
94434
|
+
componentName: z.ZodString;
|
|
94435
|
+
componentSetName: z.ZodOptional<z.ZodString>;
|
|
94436
|
+
isRemote: z.ZodBoolean;
|
|
94437
|
+
}, "strip", z.ZodTypeAny, {
|
|
94438
|
+
componentName: string;
|
|
94439
|
+
isRemote: boolean;
|
|
94440
|
+
componentSetName?: string | undefined;
|
|
94441
|
+
}, {
|
|
94442
|
+
componentName: string;
|
|
94443
|
+
isRemote: boolean;
|
|
94444
|
+
componentSetName?: string | undefined;
|
|
94445
|
+
}>>;
|
|
94134
94446
|
}>, "strip", z.ZodTypeAny, {
|
|
94135
94447
|
id: string;
|
|
94136
94448
|
type: "InstanceSwap";
|
|
94137
94449
|
name: string;
|
|
94138
94450
|
defaultValue: string;
|
|
94451
|
+
defaultValuePreview?: {
|
|
94452
|
+
componentName: string;
|
|
94453
|
+
isRemote: boolean;
|
|
94454
|
+
componentSetName?: string | undefined;
|
|
94455
|
+
} | undefined;
|
|
94139
94456
|
}, {
|
|
94140
94457
|
id: string;
|
|
94141
94458
|
type: "InstanceSwap";
|
|
94142
94459
|
name: string;
|
|
94143
94460
|
defaultValue: string;
|
|
94461
|
+
defaultValuePreview?: {
|
|
94462
|
+
componentName: string;
|
|
94463
|
+
isRemote: boolean;
|
|
94464
|
+
componentSetName?: string | undefined;
|
|
94465
|
+
} | undefined;
|
|
94144
94466
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
94145
94467
|
id: z.ZodString;
|
|
94146
94468
|
name: z.ZodString;
|
|
@@ -94275,6 +94597,11 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
94275
94597
|
type: "InstanceSwap";
|
|
94276
94598
|
name: string;
|
|
94277
94599
|
defaultValue: string;
|
|
94600
|
+
defaultValuePreview?: {
|
|
94601
|
+
componentName: string;
|
|
94602
|
+
isRemote: boolean;
|
|
94603
|
+
componentSetName?: string | undefined;
|
|
94604
|
+
} | undefined;
|
|
94278
94605
|
} | {
|
|
94279
94606
|
id: string;
|
|
94280
94607
|
options: string[];
|
|
@@ -94344,6 +94671,11 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
94344
94671
|
type: "InstanceSwap";
|
|
94345
94672
|
name: string;
|
|
94346
94673
|
defaultValue: string;
|
|
94674
|
+
defaultValuePreview?: {
|
|
94675
|
+
componentName: string;
|
|
94676
|
+
isRemote: boolean;
|
|
94677
|
+
componentSetName?: string | undefined;
|
|
94678
|
+
} | undefined;
|
|
94347
94679
|
} | {
|
|
94348
94680
|
id: string;
|
|
94349
94681
|
options: string[];
|
|
@@ -101243,6 +101575,11 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
101243
101575
|
type: "InstanceSwap";
|
|
101244
101576
|
name: string;
|
|
101245
101577
|
defaultValue: string;
|
|
101578
|
+
defaultValuePreview?: {
|
|
101579
|
+
componentName: string;
|
|
101580
|
+
isRemote: boolean;
|
|
101581
|
+
componentSetName?: string | undefined;
|
|
101582
|
+
} | undefined;
|
|
101246
101583
|
} | {
|
|
101247
101584
|
id: string;
|
|
101248
101585
|
options: string[];
|
|
@@ -101304,6 +101641,11 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
101304
101641
|
type: "InstanceSwap";
|
|
101305
101642
|
name: string;
|
|
101306
101643
|
defaultValue: string;
|
|
101644
|
+
defaultValuePreview?: {
|
|
101645
|
+
componentName: string;
|
|
101646
|
+
isRemote: boolean;
|
|
101647
|
+
componentSetName?: string | undefined;
|
|
101648
|
+
} | undefined;
|
|
101307
101649
|
} | {
|
|
101308
101650
|
id: string;
|
|
101309
101651
|
options: string[];
|
|
@@ -102553,6 +102895,11 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
102553
102895
|
type: "InstanceSwap";
|
|
102554
102896
|
name: string;
|
|
102555
102897
|
defaultValue: string;
|
|
102898
|
+
defaultValuePreview?: {
|
|
102899
|
+
componentName: string;
|
|
102900
|
+
isRemote: boolean;
|
|
102901
|
+
componentSetName?: string | undefined;
|
|
102902
|
+
} | undefined;
|
|
102556
102903
|
} | {
|
|
102557
102904
|
id: string;
|
|
102558
102905
|
options: string[];
|
|
@@ -102614,6 +102961,11 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
102614
102961
|
type: "InstanceSwap";
|
|
102615
102962
|
name: string;
|
|
102616
102963
|
defaultValue: string;
|
|
102964
|
+
defaultValuePreview?: {
|
|
102965
|
+
componentName: string;
|
|
102966
|
+
isRemote: boolean;
|
|
102967
|
+
componentSetName?: string | undefined;
|
|
102968
|
+
} | undefined;
|
|
102617
102969
|
} | {
|
|
102618
102970
|
id: string;
|
|
102619
102971
|
options: string[];
|
|
@@ -103580,16 +103932,39 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
103580
103932
|
}, {
|
|
103581
103933
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
103582
103934
|
defaultValue: z.ZodString;
|
|
103935
|
+
defaultValuePreview: z.ZodOptional<z.ZodObject<{
|
|
103936
|
+
componentName: z.ZodString;
|
|
103937
|
+
componentSetName: z.ZodOptional<z.ZodString>;
|
|
103938
|
+
isRemote: z.ZodBoolean;
|
|
103939
|
+
}, "strip", z.ZodTypeAny, {
|
|
103940
|
+
componentName: string;
|
|
103941
|
+
isRemote: boolean;
|
|
103942
|
+
componentSetName?: string | undefined;
|
|
103943
|
+
}, {
|
|
103944
|
+
componentName: string;
|
|
103945
|
+
isRemote: boolean;
|
|
103946
|
+
componentSetName?: string | undefined;
|
|
103947
|
+
}>>;
|
|
103583
103948
|
}>, "strip", z.ZodTypeAny, {
|
|
103584
103949
|
id: string;
|
|
103585
103950
|
type: "InstanceSwap";
|
|
103586
103951
|
name: string;
|
|
103587
103952
|
defaultValue: string;
|
|
103953
|
+
defaultValuePreview?: {
|
|
103954
|
+
componentName: string;
|
|
103955
|
+
isRemote: boolean;
|
|
103956
|
+
componentSetName?: string | undefined;
|
|
103957
|
+
} | undefined;
|
|
103588
103958
|
}, {
|
|
103589
103959
|
id: string;
|
|
103590
103960
|
type: "InstanceSwap";
|
|
103591
103961
|
name: string;
|
|
103592
103962
|
defaultValue: string;
|
|
103963
|
+
defaultValuePreview?: {
|
|
103964
|
+
componentName: string;
|
|
103965
|
+
isRemote: boolean;
|
|
103966
|
+
componentSetName?: string | undefined;
|
|
103967
|
+
} | undefined;
|
|
103593
103968
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
103594
103969
|
id: z.ZodString;
|
|
103595
103970
|
name: z.ZodString;
|
|
@@ -103740,6 +104115,11 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
103740
104115
|
type: "InstanceSwap";
|
|
103741
104116
|
name: string;
|
|
103742
104117
|
defaultValue: string;
|
|
104118
|
+
defaultValuePreview?: {
|
|
104119
|
+
componentName: string;
|
|
104120
|
+
isRemote: boolean;
|
|
104121
|
+
componentSetName?: string | undefined;
|
|
104122
|
+
} | undefined;
|
|
103743
104123
|
} | {
|
|
103744
104124
|
id: string;
|
|
103745
104125
|
options: string[];
|
|
@@ -103814,6 +104194,11 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
103814
104194
|
type: "InstanceSwap";
|
|
103815
104195
|
name: string;
|
|
103816
104196
|
defaultValue: string;
|
|
104197
|
+
defaultValuePreview?: {
|
|
104198
|
+
componentName: string;
|
|
104199
|
+
isRemote: boolean;
|
|
104200
|
+
componentSetName?: string | undefined;
|
|
104201
|
+
} | undefined;
|
|
103817
104202
|
} | {
|
|
103818
104203
|
id: string;
|
|
103819
104204
|
options: string[];
|
|
@@ -103959,16 +104344,39 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
103959
104344
|
}, {
|
|
103960
104345
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
103961
104346
|
defaultValue: z.ZodString;
|
|
104347
|
+
defaultValuePreview: z.ZodOptional<z.ZodObject<{
|
|
104348
|
+
componentName: z.ZodString;
|
|
104349
|
+
componentSetName: z.ZodOptional<z.ZodString>;
|
|
104350
|
+
isRemote: z.ZodBoolean;
|
|
104351
|
+
}, "strip", z.ZodTypeAny, {
|
|
104352
|
+
componentName: string;
|
|
104353
|
+
isRemote: boolean;
|
|
104354
|
+
componentSetName?: string | undefined;
|
|
104355
|
+
}, {
|
|
104356
|
+
componentName: string;
|
|
104357
|
+
isRemote: boolean;
|
|
104358
|
+
componentSetName?: string | undefined;
|
|
104359
|
+
}>>;
|
|
103962
104360
|
}>, "strip", z.ZodTypeAny, {
|
|
103963
104361
|
id: string;
|
|
103964
104362
|
type: "InstanceSwap";
|
|
103965
104363
|
name: string;
|
|
103966
104364
|
defaultValue: string;
|
|
104365
|
+
defaultValuePreview?: {
|
|
104366
|
+
componentName: string;
|
|
104367
|
+
isRemote: boolean;
|
|
104368
|
+
componentSetName?: string | undefined;
|
|
104369
|
+
} | undefined;
|
|
103967
104370
|
}, {
|
|
103968
104371
|
id: string;
|
|
103969
104372
|
type: "InstanceSwap";
|
|
103970
104373
|
name: string;
|
|
103971
104374
|
defaultValue: string;
|
|
104375
|
+
defaultValuePreview?: {
|
|
104376
|
+
componentName: string;
|
|
104377
|
+
isRemote: boolean;
|
|
104378
|
+
componentSetName?: string | undefined;
|
|
104379
|
+
} | undefined;
|
|
103972
104380
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
103973
104381
|
id: z.ZodString;
|
|
103974
104382
|
name: z.ZodString;
|
|
@@ -104067,6 +104475,11 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
104067
104475
|
type: "InstanceSwap";
|
|
104068
104476
|
name: string;
|
|
104069
104477
|
defaultValue: string;
|
|
104478
|
+
defaultValuePreview?: {
|
|
104479
|
+
componentName: string;
|
|
104480
|
+
isRemote: boolean;
|
|
104481
|
+
componentSetName?: string | undefined;
|
|
104482
|
+
} | undefined;
|
|
104070
104483
|
} | {
|
|
104071
104484
|
id: string;
|
|
104072
104485
|
options: string[];
|
|
@@ -104127,6 +104540,11 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
104127
104540
|
type: "InstanceSwap";
|
|
104128
104541
|
name: string;
|
|
104129
104542
|
defaultValue: string;
|
|
104543
|
+
defaultValuePreview?: {
|
|
104544
|
+
componentName: string;
|
|
104545
|
+
isRemote: boolean;
|
|
104546
|
+
componentSetName?: string | undefined;
|
|
104547
|
+
} | undefined;
|
|
104130
104548
|
} | {
|
|
104131
104549
|
id: string;
|
|
104132
104550
|
options: string[];
|
|
@@ -104272,16 +104690,39 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
104272
104690
|
}, {
|
|
104273
104691
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
104274
104692
|
defaultValue: z.ZodString;
|
|
104693
|
+
defaultValuePreview: z.ZodOptional<z.ZodObject<{
|
|
104694
|
+
componentName: z.ZodString;
|
|
104695
|
+
componentSetName: z.ZodOptional<z.ZodString>;
|
|
104696
|
+
isRemote: z.ZodBoolean;
|
|
104697
|
+
}, "strip", z.ZodTypeAny, {
|
|
104698
|
+
componentName: string;
|
|
104699
|
+
isRemote: boolean;
|
|
104700
|
+
componentSetName?: string | undefined;
|
|
104701
|
+
}, {
|
|
104702
|
+
componentName: string;
|
|
104703
|
+
isRemote: boolean;
|
|
104704
|
+
componentSetName?: string | undefined;
|
|
104705
|
+
}>>;
|
|
104275
104706
|
}>, "strip", z.ZodTypeAny, {
|
|
104276
104707
|
id: string;
|
|
104277
104708
|
type: "InstanceSwap";
|
|
104278
104709
|
name: string;
|
|
104279
104710
|
defaultValue: string;
|
|
104711
|
+
defaultValuePreview?: {
|
|
104712
|
+
componentName: string;
|
|
104713
|
+
isRemote: boolean;
|
|
104714
|
+
componentSetName?: string | undefined;
|
|
104715
|
+
} | undefined;
|
|
104280
104716
|
}, {
|
|
104281
104717
|
id: string;
|
|
104282
104718
|
type: "InstanceSwap";
|
|
104283
104719
|
name: string;
|
|
104284
104720
|
defaultValue: string;
|
|
104721
|
+
defaultValuePreview?: {
|
|
104722
|
+
componentName: string;
|
|
104723
|
+
isRemote: boolean;
|
|
104724
|
+
componentSetName?: string | undefined;
|
|
104725
|
+
} | undefined;
|
|
104285
104726
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
104286
104727
|
id: z.ZodString;
|
|
104287
104728
|
name: z.ZodString;
|
|
@@ -104416,6 +104857,11 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
104416
104857
|
type: "InstanceSwap";
|
|
104417
104858
|
name: string;
|
|
104418
104859
|
defaultValue: string;
|
|
104860
|
+
defaultValuePreview?: {
|
|
104861
|
+
componentName: string;
|
|
104862
|
+
isRemote: boolean;
|
|
104863
|
+
componentSetName?: string | undefined;
|
|
104864
|
+
} | undefined;
|
|
104419
104865
|
} | {
|
|
104420
104866
|
id: string;
|
|
104421
104867
|
options: string[];
|
|
@@ -104485,6 +104931,11 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
104485
104931
|
type: "InstanceSwap";
|
|
104486
104932
|
name: string;
|
|
104487
104933
|
defaultValue: string;
|
|
104934
|
+
defaultValuePreview?: {
|
|
104935
|
+
componentName: string;
|
|
104936
|
+
isRemote: boolean;
|
|
104937
|
+
componentSetName?: string | undefined;
|
|
104938
|
+
} | undefined;
|
|
104488
104939
|
} | {
|
|
104489
104940
|
id: string;
|
|
104490
104941
|
options: string[];
|
|
@@ -173198,4 +173649,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
173198
173649
|
token: PersonalAccessToken;
|
|
173199
173650
|
};
|
|
173200
173651
|
|
|
173201
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaNodeRenderFormat, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|
|
173652
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaNodeRenderFormat, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|