@supernova-studio/model 0.55.27 → 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 +68 -1
- package/dist/index.d.ts +68 -1
- package/dist/index.js +13 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -2
- 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/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;
|
|
@@ -173582,4 +173649,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
173582
173649
|
token: PersonalAccessToken;
|
|
173583
173650
|
};
|
|
173584
173651
|
|
|
173585
|
-
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, 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 };
|