@supernova-studio/model 0.52.5 → 0.52.6
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 +372 -42
- package/dist/index.d.ts +372 -42
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/figma-node-reference.ts +4 -0
- package/src/dsm/import/figma-frames.ts +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -29872,12 +29872,12 @@ declare const AssetRenderConfiguration: z.ZodObject<{
|
|
|
29872
29872
|
scale: z.ZodNumber;
|
|
29873
29873
|
format: z.ZodEnum<["Svg", "Png", "Pdf"]>;
|
|
29874
29874
|
}, "strip", z.ZodTypeAny, {
|
|
29875
|
-
format: "
|
|
29875
|
+
format: "Png" | "Svg" | "Pdf";
|
|
29876
29876
|
scale: number;
|
|
29877
29877
|
prefix?: string | undefined;
|
|
29878
29878
|
suffix?: string | undefined;
|
|
29879
29879
|
}, {
|
|
29880
|
-
format: "
|
|
29880
|
+
format: "Png" | "Svg" | "Pdf";
|
|
29881
29881
|
scale: number;
|
|
29882
29882
|
prefix?: string | undefined;
|
|
29883
29883
|
suffix?: string | undefined;
|
|
@@ -29894,19 +29894,19 @@ declare const RenderedAssetFile: z.ZodObject<{
|
|
|
29894
29894
|
scale: z.ZodNumber;
|
|
29895
29895
|
format: z.ZodEnum<["Svg", "Png", "Pdf"]>;
|
|
29896
29896
|
}, "strip", z.ZodTypeAny, {
|
|
29897
|
-
format: "
|
|
29897
|
+
format: "Png" | "Svg" | "Pdf";
|
|
29898
29898
|
scale: number;
|
|
29899
29899
|
prefix?: string | undefined;
|
|
29900
29900
|
suffix?: string | undefined;
|
|
29901
29901
|
}, {
|
|
29902
|
-
format: "
|
|
29902
|
+
format: "Png" | "Svg" | "Pdf";
|
|
29903
29903
|
scale: number;
|
|
29904
29904
|
prefix?: string | undefined;
|
|
29905
29905
|
suffix?: string | undefined;
|
|
29906
29906
|
}>;
|
|
29907
29907
|
}, "strip", z.ZodTypeAny, {
|
|
29908
29908
|
settings: {
|
|
29909
|
-
format: "
|
|
29909
|
+
format: "Png" | "Svg" | "Pdf";
|
|
29910
29910
|
scale: number;
|
|
29911
29911
|
prefix?: string | undefined;
|
|
29912
29912
|
suffix?: string | undefined;
|
|
@@ -29917,7 +29917,7 @@ declare const RenderedAssetFile: z.ZodObject<{
|
|
|
29917
29917
|
renderedImageUrl: string;
|
|
29918
29918
|
}, {
|
|
29919
29919
|
settings: {
|
|
29920
|
-
format: "
|
|
29920
|
+
format: "Png" | "Svg" | "Pdf";
|
|
29921
29921
|
scale: number;
|
|
29922
29922
|
prefix?: string | undefined;
|
|
29923
29923
|
suffix?: string | undefined;
|
|
@@ -45348,11 +45348,14 @@ declare const FigmaFileStructureElementData: z.ZodObject<{
|
|
|
45348
45348
|
type FigmaFileStructureElementData = z.infer<typeof FigmaFileStructureElementData>;
|
|
45349
45349
|
declare function figmaFileStructureToMap(root: FigmaFileStructureNode): Map<string, FigmaFileStructureNode>;
|
|
45350
45350
|
|
|
45351
|
+
declare const FigmaNodeRenderFormat: z.ZodEnum<["Png", "Svg"]>;
|
|
45352
|
+
type FigmaNodeRenderFormat = z.infer<typeof FigmaNodeRenderFormat>;
|
|
45351
45353
|
declare const FigmaNodeReferenceData: z.ZodObject<{
|
|
45352
45354
|
structureElementId: z.ZodString;
|
|
45353
45355
|
nodeId: z.ZodString;
|
|
45354
45356
|
fileId: z.ZodOptional<z.ZodString>;
|
|
45355
45357
|
valid: z.ZodBoolean;
|
|
45358
|
+
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
45356
45359
|
assetId: z.ZodOptional<z.ZodString>;
|
|
45357
45360
|
assetScale: z.ZodOptional<z.ZodNumber>;
|
|
45358
45361
|
assetWidth: z.ZodOptional<z.ZodNumber>;
|
|
@@ -45361,6 +45364,7 @@ declare const FigmaNodeReferenceData: z.ZodObject<{
|
|
|
45361
45364
|
assetOriginKey: z.ZodOptional<z.ZodString>;
|
|
45362
45365
|
}, "strip", z.ZodTypeAny, {
|
|
45363
45366
|
valid: boolean;
|
|
45367
|
+
format: "Png" | "Svg";
|
|
45364
45368
|
structureElementId: string;
|
|
45365
45369
|
nodeId: string;
|
|
45366
45370
|
assetId?: string | undefined;
|
|
@@ -45377,6 +45381,7 @@ declare const FigmaNodeReferenceData: z.ZodObject<{
|
|
|
45377
45381
|
assetId?: string | undefined;
|
|
45378
45382
|
assetScale?: number | undefined;
|
|
45379
45383
|
assetUrl?: string | undefined;
|
|
45384
|
+
format?: "Png" | "Svg" | undefined;
|
|
45380
45385
|
fileId?: string | undefined;
|
|
45381
45386
|
assetWidth?: number | undefined;
|
|
45382
45387
|
assetHeight?: number | undefined;
|
|
@@ -45389,6 +45394,7 @@ declare const FigmaNodeReferenceElementData: z.ZodObject<{
|
|
|
45389
45394
|
nodeId: z.ZodString;
|
|
45390
45395
|
fileId: z.ZodOptional<z.ZodString>;
|
|
45391
45396
|
valid: z.ZodBoolean;
|
|
45397
|
+
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
45392
45398
|
assetId: z.ZodOptional<z.ZodString>;
|
|
45393
45399
|
assetScale: z.ZodOptional<z.ZodNumber>;
|
|
45394
45400
|
assetWidth: z.ZodOptional<z.ZodNumber>;
|
|
@@ -45397,6 +45403,7 @@ declare const FigmaNodeReferenceElementData: z.ZodObject<{
|
|
|
45397
45403
|
assetOriginKey: z.ZodOptional<z.ZodString>;
|
|
45398
45404
|
}, "strip", z.ZodTypeAny, {
|
|
45399
45405
|
valid: boolean;
|
|
45406
|
+
format: "Png" | "Svg";
|
|
45400
45407
|
structureElementId: string;
|
|
45401
45408
|
nodeId: string;
|
|
45402
45409
|
assetId?: string | undefined;
|
|
@@ -45413,6 +45420,7 @@ declare const FigmaNodeReferenceElementData: z.ZodObject<{
|
|
|
45413
45420
|
assetId?: string | undefined;
|
|
45414
45421
|
assetScale?: number | undefined;
|
|
45415
45422
|
assetUrl?: string | undefined;
|
|
45423
|
+
format?: "Png" | "Svg" | undefined;
|
|
45416
45424
|
fileId?: string | undefined;
|
|
45417
45425
|
assetWidth?: number | undefined;
|
|
45418
45426
|
assetHeight?: number | undefined;
|
|
@@ -45421,6 +45429,7 @@ declare const FigmaNodeReferenceElementData: z.ZodObject<{
|
|
|
45421
45429
|
}, "strip", z.ZodTypeAny, {
|
|
45422
45430
|
value: {
|
|
45423
45431
|
valid: boolean;
|
|
45432
|
+
format: "Png" | "Svg";
|
|
45424
45433
|
structureElementId: string;
|
|
45425
45434
|
nodeId: string;
|
|
45426
45435
|
assetId?: string | undefined;
|
|
@@ -45439,6 +45448,7 @@ declare const FigmaNodeReferenceElementData: z.ZodObject<{
|
|
|
45439
45448
|
assetId?: string | undefined;
|
|
45440
45449
|
assetScale?: number | undefined;
|
|
45441
45450
|
assetUrl?: string | undefined;
|
|
45451
|
+
format?: "Png" | "Svg" | undefined;
|
|
45442
45452
|
fileId?: string | undefined;
|
|
45443
45453
|
assetWidth?: number | undefined;
|
|
45444
45454
|
assetHeight?: number | undefined;
|
|
@@ -54639,6 +54649,7 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
54639
54649
|
nodeId: z.ZodString;
|
|
54640
54650
|
fileId: z.ZodOptional<z.ZodString>;
|
|
54641
54651
|
valid: z.ZodBoolean;
|
|
54652
|
+
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
54642
54653
|
assetId: z.ZodOptional<z.ZodString>;
|
|
54643
54654
|
assetScale: z.ZodOptional<z.ZodNumber>;
|
|
54644
54655
|
assetWidth: z.ZodOptional<z.ZodNumber>;
|
|
@@ -54647,6 +54658,7 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
54647
54658
|
assetOriginKey: z.ZodOptional<z.ZodString>;
|
|
54648
54659
|
}, "strip", z.ZodTypeAny, {
|
|
54649
54660
|
valid: boolean;
|
|
54661
|
+
format: "Png" | "Svg";
|
|
54650
54662
|
structureElementId: string;
|
|
54651
54663
|
nodeId: string;
|
|
54652
54664
|
assetId?: string | undefined;
|
|
@@ -54663,6 +54675,7 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
54663
54675
|
assetId?: string | undefined;
|
|
54664
54676
|
assetScale?: number | undefined;
|
|
54665
54677
|
assetUrl?: string | undefined;
|
|
54678
|
+
format?: "Png" | "Svg" | undefined;
|
|
54666
54679
|
fileId?: string | undefined;
|
|
54667
54680
|
assetWidth?: number | undefined;
|
|
54668
54681
|
assetHeight?: number | undefined;
|
|
@@ -54686,6 +54699,7 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
54686
54699
|
designSystemVersionId: string;
|
|
54687
54700
|
data: {
|
|
54688
54701
|
valid: boolean;
|
|
54702
|
+
format: "Png" | "Svg";
|
|
54689
54703
|
structureElementId: string;
|
|
54690
54704
|
nodeId: string;
|
|
54691
54705
|
assetId?: string | undefined;
|
|
@@ -54717,6 +54731,7 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
54717
54731
|
assetId?: string | undefined;
|
|
54718
54732
|
assetScale?: number | undefined;
|
|
54719
54733
|
assetUrl?: string | undefined;
|
|
54734
|
+
format?: "Png" | "Svg" | undefined;
|
|
54720
54735
|
fileId?: string | undefined;
|
|
54721
54736
|
assetWidth?: number | undefined;
|
|
54722
54737
|
assetHeight?: number | undefined;
|
|
@@ -77101,7 +77116,7 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
|
|
|
77101
77116
|
} | undefined>;
|
|
77102
77117
|
parentComponentSetId: z.ZodOptional<z.ZodString>;
|
|
77103
77118
|
}, {
|
|
77104
|
-
|
|
77119
|
+
png: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
77105
77120
|
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
77106
77121
|
}, {
|
|
77107
77122
|
type: z.ZodLiteral<"FigmaRender">;
|
|
@@ -77131,11 +77146,47 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
|
|
|
77131
77146
|
scale: number;
|
|
77132
77147
|
fileVersionId?: string | undefined;
|
|
77133
77148
|
}>;
|
|
77149
|
+
svg: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
77150
|
+
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
77151
|
+
}, {
|
|
77152
|
+
type: z.ZodLiteral<"FigmaRender">;
|
|
77153
|
+
fileId: z.ZodString;
|
|
77154
|
+
fileVersionId: z.ZodOptional<z.ZodString>;
|
|
77155
|
+
nodeId: z.ZodString;
|
|
77156
|
+
originKey: z.ZodString;
|
|
77157
|
+
}>, {
|
|
77158
|
+
format: z.ZodLiteral<"Svg">;
|
|
77159
|
+
}>, "strip", z.ZodTypeAny, {
|
|
77160
|
+
type: "FigmaRender";
|
|
77161
|
+
originKey: string;
|
|
77162
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77163
|
+
format: "Svg";
|
|
77164
|
+
nodeId: string;
|
|
77165
|
+
fileId: string;
|
|
77166
|
+
fileVersionId?: string | undefined;
|
|
77167
|
+
}, {
|
|
77168
|
+
type: "FigmaRender";
|
|
77169
|
+
originKey: string;
|
|
77170
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77171
|
+
format: "Svg";
|
|
77172
|
+
nodeId: string;
|
|
77173
|
+
fileId: string;
|
|
77174
|
+
fileVersionId?: string | undefined;
|
|
77175
|
+
}>;
|
|
77134
77176
|
}>, "strip", z.ZodTypeAny, {
|
|
77135
77177
|
id: string;
|
|
77136
77178
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77137
77179
|
name: string;
|
|
77138
|
-
|
|
77180
|
+
svg: {
|
|
77181
|
+
type: "FigmaRender";
|
|
77182
|
+
originKey: string;
|
|
77183
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77184
|
+
format: "Svg";
|
|
77185
|
+
nodeId: string;
|
|
77186
|
+
fileId: string;
|
|
77187
|
+
fileVersionId?: string | undefined;
|
|
77188
|
+
};
|
|
77189
|
+
png: {
|
|
77139
77190
|
type: "FigmaRender";
|
|
77140
77191
|
originKey: string;
|
|
77141
77192
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77154,7 +77205,16 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
|
|
|
77154
77205
|
id: string;
|
|
77155
77206
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77156
77207
|
name: string;
|
|
77157
|
-
|
|
77208
|
+
svg: {
|
|
77209
|
+
type: "FigmaRender";
|
|
77210
|
+
originKey: string;
|
|
77211
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77212
|
+
format: "Svg";
|
|
77213
|
+
nodeId: string;
|
|
77214
|
+
fileId: string;
|
|
77215
|
+
fileVersionId?: string | undefined;
|
|
77216
|
+
};
|
|
77217
|
+
png: {
|
|
77158
77218
|
type: "FigmaRender";
|
|
77159
77219
|
originKey: string;
|
|
77160
77220
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77206,7 +77266,7 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
77206
77266
|
sortOrder: z.ZodNumber;
|
|
77207
77267
|
}, {
|
|
77208
77268
|
data: z.ZodObject<{
|
|
77209
|
-
rootNode: ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
|
|
77269
|
+
rootNode: z.ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
|
|
77210
77270
|
assetsInFile: z.ZodObject<{
|
|
77211
77271
|
frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
77212
77272
|
components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
@@ -77230,7 +77290,16 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
77230
77290
|
id: string;
|
|
77231
77291
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77232
77292
|
name: string;
|
|
77233
|
-
|
|
77293
|
+
svg: {
|
|
77294
|
+
type: "FigmaRender";
|
|
77295
|
+
originKey: string;
|
|
77296
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77297
|
+
format: "Svg";
|
|
77298
|
+
nodeId: string;
|
|
77299
|
+
fileId: string;
|
|
77300
|
+
fileVersionId?: string | undefined;
|
|
77301
|
+
};
|
|
77302
|
+
png: {
|
|
77234
77303
|
type: "FigmaRender";
|
|
77235
77304
|
originKey: string;
|
|
77236
77305
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77258,7 +77327,16 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
77258
77327
|
id: string;
|
|
77259
77328
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77260
77329
|
name: string;
|
|
77261
|
-
|
|
77330
|
+
svg: {
|
|
77331
|
+
type: "FigmaRender";
|
|
77332
|
+
originKey: string;
|
|
77333
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77334
|
+
format: "Svg";
|
|
77335
|
+
nodeId: string;
|
|
77336
|
+
fileId: string;
|
|
77337
|
+
fileVersionId?: string | undefined;
|
|
77338
|
+
};
|
|
77339
|
+
png: {
|
|
77262
77340
|
type: "FigmaRender";
|
|
77263
77341
|
originKey: string;
|
|
77264
77342
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77300,7 +77378,16 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
77300
77378
|
id: string;
|
|
77301
77379
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77302
77380
|
name: string;
|
|
77303
|
-
|
|
77381
|
+
svg: {
|
|
77382
|
+
type: "FigmaRender";
|
|
77383
|
+
originKey: string;
|
|
77384
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77385
|
+
format: "Svg";
|
|
77386
|
+
nodeId: string;
|
|
77387
|
+
fileId: string;
|
|
77388
|
+
fileVersionId?: string | undefined;
|
|
77389
|
+
};
|
|
77390
|
+
png: {
|
|
77304
77391
|
type: "FigmaRender";
|
|
77305
77392
|
originKey: string;
|
|
77306
77393
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77341,7 +77428,16 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
77341
77428
|
id: string;
|
|
77342
77429
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77343
77430
|
name: string;
|
|
77344
|
-
|
|
77431
|
+
svg: {
|
|
77432
|
+
type: "FigmaRender";
|
|
77433
|
+
originKey: string;
|
|
77434
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77435
|
+
format: "Svg";
|
|
77436
|
+
nodeId: string;
|
|
77437
|
+
fileId: string;
|
|
77438
|
+
fileVersionId?: string | undefined;
|
|
77439
|
+
};
|
|
77440
|
+
png: {
|
|
77345
77441
|
type: "FigmaRender";
|
|
77346
77442
|
originKey: string;
|
|
77347
77443
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77404,7 +77500,7 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
77404
77500
|
originMetadata: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
77405
77501
|
}>, {
|
|
77406
77502
|
data: z.ZodObject<{
|
|
77407
|
-
rootNode: ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
|
|
77503
|
+
rootNode: z.ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
|
|
77408
77504
|
assetsInFile: z.ZodObject<{
|
|
77409
77505
|
frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
77410
77506
|
components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
@@ -77428,7 +77524,16 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
77428
77524
|
id: string;
|
|
77429
77525
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77430
77526
|
name: string;
|
|
77431
|
-
|
|
77527
|
+
svg: {
|
|
77528
|
+
type: "FigmaRender";
|
|
77529
|
+
originKey: string;
|
|
77530
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77531
|
+
format: "Svg";
|
|
77532
|
+
nodeId: string;
|
|
77533
|
+
fileId: string;
|
|
77534
|
+
fileVersionId?: string | undefined;
|
|
77535
|
+
};
|
|
77536
|
+
png: {
|
|
77432
77537
|
type: "FigmaRender";
|
|
77433
77538
|
originKey: string;
|
|
77434
77539
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77456,7 +77561,16 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
77456
77561
|
id: string;
|
|
77457
77562
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77458
77563
|
name: string;
|
|
77459
|
-
|
|
77564
|
+
svg: {
|
|
77565
|
+
type: "FigmaRender";
|
|
77566
|
+
originKey: string;
|
|
77567
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77568
|
+
format: "Svg";
|
|
77569
|
+
nodeId: string;
|
|
77570
|
+
fileId: string;
|
|
77571
|
+
fileVersionId?: string | undefined;
|
|
77572
|
+
};
|
|
77573
|
+
png: {
|
|
77460
77574
|
type: "FigmaRender";
|
|
77461
77575
|
originKey: string;
|
|
77462
77576
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77489,7 +77603,16 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
77489
77603
|
id: string;
|
|
77490
77604
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77491
77605
|
name: string;
|
|
77492
|
-
|
|
77606
|
+
svg: {
|
|
77607
|
+
type: "FigmaRender";
|
|
77608
|
+
originKey: string;
|
|
77609
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77610
|
+
format: "Svg";
|
|
77611
|
+
nodeId: string;
|
|
77612
|
+
fileId: string;
|
|
77613
|
+
fileVersionId?: string | undefined;
|
|
77614
|
+
};
|
|
77615
|
+
png: {
|
|
77493
77616
|
type: "FigmaRender";
|
|
77494
77617
|
originKey: string;
|
|
77495
77618
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77527,7 +77650,16 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
77527
77650
|
id: string;
|
|
77528
77651
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77529
77652
|
name: string;
|
|
77530
|
-
|
|
77653
|
+
svg: {
|
|
77654
|
+
type: "FigmaRender";
|
|
77655
|
+
originKey: string;
|
|
77656
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77657
|
+
format: "Svg";
|
|
77658
|
+
nodeId: string;
|
|
77659
|
+
fileId: string;
|
|
77660
|
+
fileVersionId?: string | undefined;
|
|
77661
|
+
};
|
|
77662
|
+
png: {
|
|
77531
77663
|
type: "FigmaRender";
|
|
77532
77664
|
originKey: string;
|
|
77533
77665
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86301,7 +86433,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86301
86433
|
id: string;
|
|
86302
86434
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86303
86435
|
name: string;
|
|
86304
|
-
|
|
86436
|
+
svg: {
|
|
86437
|
+
type: "FigmaRender";
|
|
86438
|
+
originKey: string;
|
|
86439
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86440
|
+
format: "Svg";
|
|
86441
|
+
nodeId: string;
|
|
86442
|
+
fileId: string;
|
|
86443
|
+
fileVersionId?: string | undefined;
|
|
86444
|
+
};
|
|
86445
|
+
png: {
|
|
86305
86446
|
type: "FigmaRender";
|
|
86306
86447
|
originKey: string;
|
|
86307
86448
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86321,7 +86462,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86321
86462
|
id: string;
|
|
86322
86463
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86323
86464
|
name: string;
|
|
86324
|
-
|
|
86465
|
+
svg: {
|
|
86466
|
+
type: "FigmaRender";
|
|
86467
|
+
originKey: string;
|
|
86468
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86469
|
+
format: "Svg";
|
|
86470
|
+
nodeId: string;
|
|
86471
|
+
fileId: string;
|
|
86472
|
+
fileVersionId?: string | undefined;
|
|
86473
|
+
};
|
|
86474
|
+
png: {
|
|
86325
86475
|
type: "FigmaRender";
|
|
86326
86476
|
originKey: string;
|
|
86327
86477
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86361,7 +86511,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86361
86511
|
id: string;
|
|
86362
86512
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86363
86513
|
name: string;
|
|
86364
|
-
|
|
86514
|
+
svg: {
|
|
86515
|
+
type: "FigmaRender";
|
|
86516
|
+
originKey: string;
|
|
86517
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86518
|
+
format: "Svg";
|
|
86519
|
+
nodeId: string;
|
|
86520
|
+
fileId: string;
|
|
86521
|
+
fileVersionId?: string | undefined;
|
|
86522
|
+
};
|
|
86523
|
+
png: {
|
|
86365
86524
|
type: "FigmaRender";
|
|
86366
86525
|
originKey: string;
|
|
86367
86526
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86389,7 +86548,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86389
86548
|
id: string;
|
|
86390
86549
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86391
86550
|
name: string;
|
|
86392
|
-
|
|
86551
|
+
svg: {
|
|
86552
|
+
type: "FigmaRender";
|
|
86553
|
+
originKey: string;
|
|
86554
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86555
|
+
format: "Svg";
|
|
86556
|
+
nodeId: string;
|
|
86557
|
+
fileId: string;
|
|
86558
|
+
fileVersionId?: string | undefined;
|
|
86559
|
+
};
|
|
86560
|
+
png: {
|
|
86393
86561
|
type: "FigmaRender";
|
|
86394
86562
|
originKey: string;
|
|
86395
86563
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86409,7 +86577,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86409
86577
|
id: string;
|
|
86410
86578
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86411
86579
|
name: string;
|
|
86412
|
-
|
|
86580
|
+
svg: {
|
|
86581
|
+
type: "FigmaRender";
|
|
86582
|
+
originKey: string;
|
|
86583
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86584
|
+
format: "Svg";
|
|
86585
|
+
nodeId: string;
|
|
86586
|
+
fileId: string;
|
|
86587
|
+
fileVersionId?: string | undefined;
|
|
86588
|
+
};
|
|
86589
|
+
png: {
|
|
86413
86590
|
type: "FigmaRender";
|
|
86414
86591
|
originKey: string;
|
|
86415
86592
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86450,7 +86627,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86450
86627
|
id: string;
|
|
86451
86628
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86452
86629
|
name: string;
|
|
86453
|
-
|
|
86630
|
+
svg: {
|
|
86631
|
+
type: "FigmaRender";
|
|
86632
|
+
originKey: string;
|
|
86633
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86634
|
+
format: "Svg";
|
|
86635
|
+
nodeId: string;
|
|
86636
|
+
fileId: string;
|
|
86637
|
+
fileVersionId?: string | undefined;
|
|
86638
|
+
};
|
|
86639
|
+
png: {
|
|
86454
86640
|
type: "FigmaRender";
|
|
86455
86641
|
originKey: string;
|
|
86456
86642
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86491,7 +86677,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86491
86677
|
id: string;
|
|
86492
86678
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86493
86679
|
name: string;
|
|
86494
|
-
|
|
86680
|
+
svg: {
|
|
86681
|
+
type: "FigmaRender";
|
|
86682
|
+
originKey: string;
|
|
86683
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86684
|
+
format: "Svg";
|
|
86685
|
+
nodeId: string;
|
|
86686
|
+
fileId: string;
|
|
86687
|
+
fileVersionId?: string | undefined;
|
|
86688
|
+
};
|
|
86689
|
+
png: {
|
|
86495
86690
|
type: "FigmaRender";
|
|
86496
86691
|
originKey: string;
|
|
86497
86692
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86511,7 +86706,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86511
86706
|
id: string;
|
|
86512
86707
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86513
86708
|
name: string;
|
|
86514
|
-
|
|
86709
|
+
svg: {
|
|
86710
|
+
type: "FigmaRender";
|
|
86711
|
+
originKey: string;
|
|
86712
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86713
|
+
format: "Svg";
|
|
86714
|
+
nodeId: string;
|
|
86715
|
+
fileId: string;
|
|
86716
|
+
fileVersionId?: string | undefined;
|
|
86717
|
+
};
|
|
86718
|
+
png: {
|
|
86515
86719
|
type: "FigmaRender";
|
|
86516
86720
|
originKey: string;
|
|
86517
86721
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -87737,7 +87941,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
87737
87941
|
id: string;
|
|
87738
87942
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
87739
87943
|
name: string;
|
|
87740
|
-
|
|
87944
|
+
svg: {
|
|
87945
|
+
type: "FigmaRender";
|
|
87946
|
+
originKey: string;
|
|
87947
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
87948
|
+
format: "Svg";
|
|
87949
|
+
nodeId: string;
|
|
87950
|
+
fileId: string;
|
|
87951
|
+
fileVersionId?: string | undefined;
|
|
87952
|
+
};
|
|
87953
|
+
png: {
|
|
87741
87954
|
type: "FigmaRender";
|
|
87742
87955
|
originKey: string;
|
|
87743
87956
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -87785,7 +87998,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
87785
87998
|
id: string;
|
|
87786
87999
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
87787
88000
|
name: string;
|
|
87788
|
-
|
|
88001
|
+
svg: {
|
|
88002
|
+
type: "FigmaRender";
|
|
88003
|
+
originKey: string;
|
|
88004
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
88005
|
+
format: "Svg";
|
|
88006
|
+
nodeId: string;
|
|
88007
|
+
fileId: string;
|
|
88008
|
+
fileVersionId?: string | undefined;
|
|
88009
|
+
};
|
|
88010
|
+
png: {
|
|
87789
88011
|
type: "FigmaRender";
|
|
87790
88012
|
originKey: string;
|
|
87791
88013
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -87805,7 +88027,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
87805
88027
|
id: string;
|
|
87806
88028
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
87807
88029
|
name: string;
|
|
87808
|
-
|
|
88030
|
+
svg: {
|
|
88031
|
+
type: "FigmaRender";
|
|
88032
|
+
originKey: string;
|
|
88033
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
88034
|
+
format: "Svg";
|
|
88035
|
+
nodeId: string;
|
|
88036
|
+
fileId: string;
|
|
88037
|
+
fileVersionId?: string | undefined;
|
|
88038
|
+
};
|
|
88039
|
+
png: {
|
|
87809
88040
|
type: "FigmaRender";
|
|
87810
88041
|
originKey: string;
|
|
87811
88042
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -97861,7 +98092,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
97861
98092
|
id: string;
|
|
97862
98093
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
97863
98094
|
name: string;
|
|
97864
|
-
|
|
98095
|
+
svg: {
|
|
98096
|
+
type: "FigmaRender";
|
|
98097
|
+
originKey: string;
|
|
98098
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98099
|
+
format: "Svg";
|
|
98100
|
+
nodeId: string;
|
|
98101
|
+
fileId: string;
|
|
98102
|
+
fileVersionId?: string | undefined;
|
|
98103
|
+
};
|
|
98104
|
+
png: {
|
|
97865
98105
|
type: "FigmaRender";
|
|
97866
98106
|
originKey: string;
|
|
97867
98107
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -97881,7 +98121,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
97881
98121
|
id: string;
|
|
97882
98122
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
97883
98123
|
name: string;
|
|
97884
|
-
|
|
98124
|
+
svg: {
|
|
98125
|
+
type: "FigmaRender";
|
|
98126
|
+
originKey: string;
|
|
98127
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98128
|
+
format: "Svg";
|
|
98129
|
+
nodeId: string;
|
|
98130
|
+
fileId: string;
|
|
98131
|
+
fileVersionId?: string | undefined;
|
|
98132
|
+
};
|
|
98133
|
+
png: {
|
|
97885
98134
|
type: "FigmaRender";
|
|
97886
98135
|
originKey: string;
|
|
97887
98136
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -97921,7 +98170,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
97921
98170
|
id: string;
|
|
97922
98171
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
97923
98172
|
name: string;
|
|
97924
|
-
|
|
98173
|
+
svg: {
|
|
98174
|
+
type: "FigmaRender";
|
|
98175
|
+
originKey: string;
|
|
98176
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98177
|
+
format: "Svg";
|
|
98178
|
+
nodeId: string;
|
|
98179
|
+
fileId: string;
|
|
98180
|
+
fileVersionId?: string | undefined;
|
|
98181
|
+
};
|
|
98182
|
+
png: {
|
|
97925
98183
|
type: "FigmaRender";
|
|
97926
98184
|
originKey: string;
|
|
97927
98185
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -97949,7 +98207,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
97949
98207
|
id: string;
|
|
97950
98208
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
97951
98209
|
name: string;
|
|
97952
|
-
|
|
98210
|
+
svg: {
|
|
98211
|
+
type: "FigmaRender";
|
|
98212
|
+
originKey: string;
|
|
98213
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98214
|
+
format: "Svg";
|
|
98215
|
+
nodeId: string;
|
|
98216
|
+
fileId: string;
|
|
98217
|
+
fileVersionId?: string | undefined;
|
|
98218
|
+
};
|
|
98219
|
+
png: {
|
|
97953
98220
|
type: "FigmaRender";
|
|
97954
98221
|
originKey: string;
|
|
97955
98222
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -97969,7 +98236,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
97969
98236
|
id: string;
|
|
97970
98237
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
97971
98238
|
name: string;
|
|
97972
|
-
|
|
98239
|
+
svg: {
|
|
98240
|
+
type: "FigmaRender";
|
|
98241
|
+
originKey: string;
|
|
98242
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98243
|
+
format: "Svg";
|
|
98244
|
+
nodeId: string;
|
|
98245
|
+
fileId: string;
|
|
98246
|
+
fileVersionId?: string | undefined;
|
|
98247
|
+
};
|
|
98248
|
+
png: {
|
|
97973
98249
|
type: "FigmaRender";
|
|
97974
98250
|
originKey: string;
|
|
97975
98251
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -98001,7 +98277,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
98001
98277
|
id: string;
|
|
98002
98278
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
98003
98279
|
name: string;
|
|
98004
|
-
|
|
98280
|
+
svg: {
|
|
98281
|
+
type: "FigmaRender";
|
|
98282
|
+
originKey: string;
|
|
98283
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98284
|
+
format: "Svg";
|
|
98285
|
+
nodeId: string;
|
|
98286
|
+
fileId: string;
|
|
98287
|
+
fileVersionId?: string | undefined;
|
|
98288
|
+
};
|
|
98289
|
+
png: {
|
|
98005
98290
|
type: "FigmaRender";
|
|
98006
98291
|
originKey: string;
|
|
98007
98292
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -98039,7 +98324,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
98039
98324
|
id: string;
|
|
98040
98325
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
98041
98326
|
name: string;
|
|
98042
|
-
|
|
98327
|
+
svg: {
|
|
98328
|
+
type: "FigmaRender";
|
|
98329
|
+
originKey: string;
|
|
98330
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98331
|
+
format: "Svg";
|
|
98332
|
+
nodeId: string;
|
|
98333
|
+
fileId: string;
|
|
98334
|
+
fileVersionId?: string | undefined;
|
|
98335
|
+
};
|
|
98336
|
+
png: {
|
|
98043
98337
|
type: "FigmaRender";
|
|
98044
98338
|
originKey: string;
|
|
98045
98339
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -98059,7 +98353,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
98059
98353
|
id: string;
|
|
98060
98354
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
98061
98355
|
name: string;
|
|
98062
|
-
|
|
98356
|
+
svg: {
|
|
98357
|
+
type: "FigmaRender";
|
|
98358
|
+
originKey: string;
|
|
98359
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98360
|
+
format: "Svg";
|
|
98361
|
+
nodeId: string;
|
|
98362
|
+
fileId: string;
|
|
98363
|
+
fileVersionId?: string | undefined;
|
|
98364
|
+
};
|
|
98365
|
+
png: {
|
|
98063
98366
|
type: "FigmaRender";
|
|
98064
98367
|
originKey: string;
|
|
98065
98368
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -99301,7 +99604,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
99301
99604
|
id: string;
|
|
99302
99605
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
99303
99606
|
name: string;
|
|
99304
|
-
|
|
99607
|
+
svg: {
|
|
99608
|
+
type: "FigmaRender";
|
|
99609
|
+
originKey: string;
|
|
99610
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
99611
|
+
format: "Svg";
|
|
99612
|
+
nodeId: string;
|
|
99613
|
+
fileId: string;
|
|
99614
|
+
fileVersionId?: string | undefined;
|
|
99615
|
+
};
|
|
99616
|
+
png: {
|
|
99305
99617
|
type: "FigmaRender";
|
|
99306
99618
|
originKey: string;
|
|
99307
99619
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -100544,7 +100856,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100544
100856
|
id: string;
|
|
100545
100857
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
100546
100858
|
name: string;
|
|
100547
|
-
|
|
100859
|
+
svg: {
|
|
100860
|
+
type: "FigmaRender";
|
|
100861
|
+
originKey: string;
|
|
100862
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
100863
|
+
format: "Svg";
|
|
100864
|
+
nodeId: string;
|
|
100865
|
+
fileId: string;
|
|
100866
|
+
fileVersionId?: string | undefined;
|
|
100867
|
+
};
|
|
100868
|
+
png: {
|
|
100548
100869
|
type: "FigmaRender";
|
|
100549
100870
|
originKey: string;
|
|
100550
100871
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -100564,7 +100885,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100564
100885
|
id: string;
|
|
100565
100886
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
100566
100887
|
name: string;
|
|
100567
|
-
|
|
100888
|
+
svg: {
|
|
100889
|
+
type: "FigmaRender";
|
|
100890
|
+
originKey: string;
|
|
100891
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
100892
|
+
format: "Svg";
|
|
100893
|
+
nodeId: string;
|
|
100894
|
+
fileId: string;
|
|
100895
|
+
fileVersionId?: string | undefined;
|
|
100896
|
+
};
|
|
100897
|
+
png: {
|
|
100568
100898
|
type: "FigmaRender";
|
|
100569
100899
|
originKey: string;
|
|
100570
100900
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -165232,4 +165562,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
165232
165562
|
}>;
|
|
165233
165563
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
165234
165564
|
|
|
165235
|
-
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, BaseComponent, 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, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ComponentSet, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, 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 CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, 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, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, 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, FigmaComponentBooleanProperty, FigmaComponentInstanceSwapProperty, FigmaComponentProperties, FigmaComponentPropertyType, FigmaComponentSetProperties, 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, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, 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 ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, 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, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, 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, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, 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 UpdateComponent, type UpdateDataSource, type UpdateDesignElement, 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 UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, 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, zodCreateInputOmit, zodUpdateInputOmit };
|
|
165565
|
+
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, BaseComponent, 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, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ComponentSet, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, 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 CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, 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, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, 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, FigmaComponentBooleanProperty, FigmaComponentInstanceSwapProperty, FigmaComponentProperties, FigmaComponentPropertyType, FigmaComponentSetProperties, 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, 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 ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, 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, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, 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, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, 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 UpdateComponent, type UpdateDataSource, type UpdateDesignElement, 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 UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, 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, zodCreateInputOmit, zodUpdateInputOmit };
|