@supernova-studio/model 0.52.5 → 0.52.7
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 +375 -42
- package/dist/index.d.ts +375 -42
- package/dist/index.js +7 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/documentation-block-v2.ts +1 -0
- 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;
|
|
@@ -39459,6 +39459,7 @@ declare const PageBlockItemColorValue: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
|
39459
39459
|
type PageBlockItemColorValue = z.infer<typeof PageBlockItemColorValue>;
|
|
39460
39460
|
declare const PageBlockItemComponentValue: z.ZodObject<{
|
|
39461
39461
|
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
39462
|
+
selectedBrandId: z.ZodOptional<z.ZodString>;
|
|
39462
39463
|
value: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
39463
39464
|
entityId: z.ZodString;
|
|
39464
39465
|
entityType: z.ZodEnum<["Component", "ComponentGroup"]>;
|
|
@@ -39475,12 +39476,14 @@ declare const PageBlockItemComponentValue: z.ZodObject<{
|
|
|
39475
39476
|
entityType: "Component" | "ComponentGroup";
|
|
39476
39477
|
}[];
|
|
39477
39478
|
selectedPropertyIds?: string[] | undefined;
|
|
39479
|
+
selectedBrandId?: string | undefined;
|
|
39478
39480
|
}, {
|
|
39479
39481
|
value?: {
|
|
39480
39482
|
entityId: string;
|
|
39481
39483
|
entityType: "Component" | "ComponentGroup";
|
|
39482
39484
|
}[] | undefined;
|
|
39483
39485
|
selectedPropertyIds?: string[] | undefined;
|
|
39486
|
+
selectedBrandId?: string | undefined;
|
|
39484
39487
|
}>;
|
|
39485
39488
|
type PageBlockItemComponentValue = z.infer<typeof PageBlockItemComponentValue>;
|
|
39486
39489
|
declare const PageBlockItemComponentPropertyValue: z.ZodObject<{
|
|
@@ -45348,11 +45351,14 @@ declare const FigmaFileStructureElementData: z.ZodObject<{
|
|
|
45348
45351
|
type FigmaFileStructureElementData = z.infer<typeof FigmaFileStructureElementData>;
|
|
45349
45352
|
declare function figmaFileStructureToMap(root: FigmaFileStructureNode): Map<string, FigmaFileStructureNode>;
|
|
45350
45353
|
|
|
45354
|
+
declare const FigmaNodeRenderFormat: z.ZodEnum<["Png", "Svg"]>;
|
|
45355
|
+
type FigmaNodeRenderFormat = z.infer<typeof FigmaNodeRenderFormat>;
|
|
45351
45356
|
declare const FigmaNodeReferenceData: z.ZodObject<{
|
|
45352
45357
|
structureElementId: z.ZodString;
|
|
45353
45358
|
nodeId: z.ZodString;
|
|
45354
45359
|
fileId: z.ZodOptional<z.ZodString>;
|
|
45355
45360
|
valid: z.ZodBoolean;
|
|
45361
|
+
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
45356
45362
|
assetId: z.ZodOptional<z.ZodString>;
|
|
45357
45363
|
assetScale: z.ZodOptional<z.ZodNumber>;
|
|
45358
45364
|
assetWidth: z.ZodOptional<z.ZodNumber>;
|
|
@@ -45361,6 +45367,7 @@ declare const FigmaNodeReferenceData: z.ZodObject<{
|
|
|
45361
45367
|
assetOriginKey: z.ZodOptional<z.ZodString>;
|
|
45362
45368
|
}, "strip", z.ZodTypeAny, {
|
|
45363
45369
|
valid: boolean;
|
|
45370
|
+
format: "Png" | "Svg";
|
|
45364
45371
|
structureElementId: string;
|
|
45365
45372
|
nodeId: string;
|
|
45366
45373
|
assetId?: string | undefined;
|
|
@@ -45377,6 +45384,7 @@ declare const FigmaNodeReferenceData: z.ZodObject<{
|
|
|
45377
45384
|
assetId?: string | undefined;
|
|
45378
45385
|
assetScale?: number | undefined;
|
|
45379
45386
|
assetUrl?: string | undefined;
|
|
45387
|
+
format?: "Png" | "Svg" | undefined;
|
|
45380
45388
|
fileId?: string | undefined;
|
|
45381
45389
|
assetWidth?: number | undefined;
|
|
45382
45390
|
assetHeight?: number | undefined;
|
|
@@ -45389,6 +45397,7 @@ declare const FigmaNodeReferenceElementData: z.ZodObject<{
|
|
|
45389
45397
|
nodeId: z.ZodString;
|
|
45390
45398
|
fileId: z.ZodOptional<z.ZodString>;
|
|
45391
45399
|
valid: z.ZodBoolean;
|
|
45400
|
+
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
45392
45401
|
assetId: z.ZodOptional<z.ZodString>;
|
|
45393
45402
|
assetScale: z.ZodOptional<z.ZodNumber>;
|
|
45394
45403
|
assetWidth: z.ZodOptional<z.ZodNumber>;
|
|
@@ -45397,6 +45406,7 @@ declare const FigmaNodeReferenceElementData: z.ZodObject<{
|
|
|
45397
45406
|
assetOriginKey: z.ZodOptional<z.ZodString>;
|
|
45398
45407
|
}, "strip", z.ZodTypeAny, {
|
|
45399
45408
|
valid: boolean;
|
|
45409
|
+
format: "Png" | "Svg";
|
|
45400
45410
|
structureElementId: string;
|
|
45401
45411
|
nodeId: string;
|
|
45402
45412
|
assetId?: string | undefined;
|
|
@@ -45413,6 +45423,7 @@ declare const FigmaNodeReferenceElementData: z.ZodObject<{
|
|
|
45413
45423
|
assetId?: string | undefined;
|
|
45414
45424
|
assetScale?: number | undefined;
|
|
45415
45425
|
assetUrl?: string | undefined;
|
|
45426
|
+
format?: "Png" | "Svg" | undefined;
|
|
45416
45427
|
fileId?: string | undefined;
|
|
45417
45428
|
assetWidth?: number | undefined;
|
|
45418
45429
|
assetHeight?: number | undefined;
|
|
@@ -45421,6 +45432,7 @@ declare const FigmaNodeReferenceElementData: z.ZodObject<{
|
|
|
45421
45432
|
}, "strip", z.ZodTypeAny, {
|
|
45422
45433
|
value: {
|
|
45423
45434
|
valid: boolean;
|
|
45435
|
+
format: "Png" | "Svg";
|
|
45424
45436
|
structureElementId: string;
|
|
45425
45437
|
nodeId: string;
|
|
45426
45438
|
assetId?: string | undefined;
|
|
@@ -45439,6 +45451,7 @@ declare const FigmaNodeReferenceElementData: z.ZodObject<{
|
|
|
45439
45451
|
assetId?: string | undefined;
|
|
45440
45452
|
assetScale?: number | undefined;
|
|
45441
45453
|
assetUrl?: string | undefined;
|
|
45454
|
+
format?: "Png" | "Svg" | undefined;
|
|
45442
45455
|
fileId?: string | undefined;
|
|
45443
45456
|
assetWidth?: number | undefined;
|
|
45444
45457
|
assetHeight?: number | undefined;
|
|
@@ -54639,6 +54652,7 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
54639
54652
|
nodeId: z.ZodString;
|
|
54640
54653
|
fileId: z.ZodOptional<z.ZodString>;
|
|
54641
54654
|
valid: z.ZodBoolean;
|
|
54655
|
+
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
54642
54656
|
assetId: z.ZodOptional<z.ZodString>;
|
|
54643
54657
|
assetScale: z.ZodOptional<z.ZodNumber>;
|
|
54644
54658
|
assetWidth: z.ZodOptional<z.ZodNumber>;
|
|
@@ -54647,6 +54661,7 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
54647
54661
|
assetOriginKey: z.ZodOptional<z.ZodString>;
|
|
54648
54662
|
}, "strip", z.ZodTypeAny, {
|
|
54649
54663
|
valid: boolean;
|
|
54664
|
+
format: "Png" | "Svg";
|
|
54650
54665
|
structureElementId: string;
|
|
54651
54666
|
nodeId: string;
|
|
54652
54667
|
assetId?: string | undefined;
|
|
@@ -54663,6 +54678,7 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
54663
54678
|
assetId?: string | undefined;
|
|
54664
54679
|
assetScale?: number | undefined;
|
|
54665
54680
|
assetUrl?: string | undefined;
|
|
54681
|
+
format?: "Png" | "Svg" | undefined;
|
|
54666
54682
|
fileId?: string | undefined;
|
|
54667
54683
|
assetWidth?: number | undefined;
|
|
54668
54684
|
assetHeight?: number | undefined;
|
|
@@ -54686,6 +54702,7 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
54686
54702
|
designSystemVersionId: string;
|
|
54687
54703
|
data: {
|
|
54688
54704
|
valid: boolean;
|
|
54705
|
+
format: "Png" | "Svg";
|
|
54689
54706
|
structureElementId: string;
|
|
54690
54707
|
nodeId: string;
|
|
54691
54708
|
assetId?: string | undefined;
|
|
@@ -54717,6 +54734,7 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
54717
54734
|
assetId?: string | undefined;
|
|
54718
54735
|
assetScale?: number | undefined;
|
|
54719
54736
|
assetUrl?: string | undefined;
|
|
54737
|
+
format?: "Png" | "Svg" | undefined;
|
|
54720
54738
|
fileId?: string | undefined;
|
|
54721
54739
|
assetWidth?: number | undefined;
|
|
54722
54740
|
assetHeight?: number | undefined;
|
|
@@ -77101,7 +77119,7 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
|
|
|
77101
77119
|
} | undefined>;
|
|
77102
77120
|
parentComponentSetId: z.ZodOptional<z.ZodString>;
|
|
77103
77121
|
}, {
|
|
77104
|
-
|
|
77122
|
+
png: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
77105
77123
|
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
77106
77124
|
}, {
|
|
77107
77125
|
type: z.ZodLiteral<"FigmaRender">;
|
|
@@ -77131,11 +77149,47 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
|
|
|
77131
77149
|
scale: number;
|
|
77132
77150
|
fileVersionId?: string | undefined;
|
|
77133
77151
|
}>;
|
|
77152
|
+
svg: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
77153
|
+
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
77154
|
+
}, {
|
|
77155
|
+
type: z.ZodLiteral<"FigmaRender">;
|
|
77156
|
+
fileId: z.ZodString;
|
|
77157
|
+
fileVersionId: z.ZodOptional<z.ZodString>;
|
|
77158
|
+
nodeId: z.ZodString;
|
|
77159
|
+
originKey: z.ZodString;
|
|
77160
|
+
}>, {
|
|
77161
|
+
format: z.ZodLiteral<"Svg">;
|
|
77162
|
+
}>, "strip", z.ZodTypeAny, {
|
|
77163
|
+
type: "FigmaRender";
|
|
77164
|
+
originKey: string;
|
|
77165
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77166
|
+
format: "Svg";
|
|
77167
|
+
nodeId: string;
|
|
77168
|
+
fileId: string;
|
|
77169
|
+
fileVersionId?: string | undefined;
|
|
77170
|
+
}, {
|
|
77171
|
+
type: "FigmaRender";
|
|
77172
|
+
originKey: string;
|
|
77173
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77174
|
+
format: "Svg";
|
|
77175
|
+
nodeId: string;
|
|
77176
|
+
fileId: string;
|
|
77177
|
+
fileVersionId?: string | undefined;
|
|
77178
|
+
}>;
|
|
77134
77179
|
}>, "strip", z.ZodTypeAny, {
|
|
77135
77180
|
id: string;
|
|
77136
77181
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77137
77182
|
name: string;
|
|
77138
|
-
|
|
77183
|
+
svg: {
|
|
77184
|
+
type: "FigmaRender";
|
|
77185
|
+
originKey: string;
|
|
77186
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77187
|
+
format: "Svg";
|
|
77188
|
+
nodeId: string;
|
|
77189
|
+
fileId: string;
|
|
77190
|
+
fileVersionId?: string | undefined;
|
|
77191
|
+
};
|
|
77192
|
+
png: {
|
|
77139
77193
|
type: "FigmaRender";
|
|
77140
77194
|
originKey: string;
|
|
77141
77195
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77154,7 +77208,16 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
|
|
|
77154
77208
|
id: string;
|
|
77155
77209
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77156
77210
|
name: string;
|
|
77157
|
-
|
|
77211
|
+
svg: {
|
|
77212
|
+
type: "FigmaRender";
|
|
77213
|
+
originKey: string;
|
|
77214
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77215
|
+
format: "Svg";
|
|
77216
|
+
nodeId: string;
|
|
77217
|
+
fileId: string;
|
|
77218
|
+
fileVersionId?: string | undefined;
|
|
77219
|
+
};
|
|
77220
|
+
png: {
|
|
77158
77221
|
type: "FigmaRender";
|
|
77159
77222
|
originKey: string;
|
|
77160
77223
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77206,7 +77269,7 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
77206
77269
|
sortOrder: z.ZodNumber;
|
|
77207
77270
|
}, {
|
|
77208
77271
|
data: z.ZodObject<{
|
|
77209
|
-
rootNode: ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
|
|
77272
|
+
rootNode: z.ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
|
|
77210
77273
|
assetsInFile: z.ZodObject<{
|
|
77211
77274
|
frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
77212
77275
|
components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
@@ -77230,7 +77293,16 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
77230
77293
|
id: string;
|
|
77231
77294
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77232
77295
|
name: string;
|
|
77233
|
-
|
|
77296
|
+
svg: {
|
|
77297
|
+
type: "FigmaRender";
|
|
77298
|
+
originKey: string;
|
|
77299
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77300
|
+
format: "Svg";
|
|
77301
|
+
nodeId: string;
|
|
77302
|
+
fileId: string;
|
|
77303
|
+
fileVersionId?: string | undefined;
|
|
77304
|
+
};
|
|
77305
|
+
png: {
|
|
77234
77306
|
type: "FigmaRender";
|
|
77235
77307
|
originKey: string;
|
|
77236
77308
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77258,7 +77330,16 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
77258
77330
|
id: string;
|
|
77259
77331
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77260
77332
|
name: string;
|
|
77261
|
-
|
|
77333
|
+
svg: {
|
|
77334
|
+
type: "FigmaRender";
|
|
77335
|
+
originKey: string;
|
|
77336
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77337
|
+
format: "Svg";
|
|
77338
|
+
nodeId: string;
|
|
77339
|
+
fileId: string;
|
|
77340
|
+
fileVersionId?: string | undefined;
|
|
77341
|
+
};
|
|
77342
|
+
png: {
|
|
77262
77343
|
type: "FigmaRender";
|
|
77263
77344
|
originKey: string;
|
|
77264
77345
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77300,7 +77381,16 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
77300
77381
|
id: string;
|
|
77301
77382
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77302
77383
|
name: string;
|
|
77303
|
-
|
|
77384
|
+
svg: {
|
|
77385
|
+
type: "FigmaRender";
|
|
77386
|
+
originKey: string;
|
|
77387
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77388
|
+
format: "Svg";
|
|
77389
|
+
nodeId: string;
|
|
77390
|
+
fileId: string;
|
|
77391
|
+
fileVersionId?: string | undefined;
|
|
77392
|
+
};
|
|
77393
|
+
png: {
|
|
77304
77394
|
type: "FigmaRender";
|
|
77305
77395
|
originKey: string;
|
|
77306
77396
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77341,7 +77431,16 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
77341
77431
|
id: string;
|
|
77342
77432
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77343
77433
|
name: string;
|
|
77344
|
-
|
|
77434
|
+
svg: {
|
|
77435
|
+
type: "FigmaRender";
|
|
77436
|
+
originKey: string;
|
|
77437
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77438
|
+
format: "Svg";
|
|
77439
|
+
nodeId: string;
|
|
77440
|
+
fileId: string;
|
|
77441
|
+
fileVersionId?: string | undefined;
|
|
77442
|
+
};
|
|
77443
|
+
png: {
|
|
77345
77444
|
type: "FigmaRender";
|
|
77346
77445
|
originKey: string;
|
|
77347
77446
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77404,7 +77503,7 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
77404
77503
|
originMetadata: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
77405
77504
|
}>, {
|
|
77406
77505
|
data: z.ZodObject<{
|
|
77407
|
-
rootNode: ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
|
|
77506
|
+
rootNode: z.ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
|
|
77408
77507
|
assetsInFile: z.ZodObject<{
|
|
77409
77508
|
frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
77410
77509
|
components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
@@ -77428,7 +77527,16 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
77428
77527
|
id: string;
|
|
77429
77528
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77430
77529
|
name: string;
|
|
77431
|
-
|
|
77530
|
+
svg: {
|
|
77531
|
+
type: "FigmaRender";
|
|
77532
|
+
originKey: string;
|
|
77533
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77534
|
+
format: "Svg";
|
|
77535
|
+
nodeId: string;
|
|
77536
|
+
fileId: string;
|
|
77537
|
+
fileVersionId?: string | undefined;
|
|
77538
|
+
};
|
|
77539
|
+
png: {
|
|
77432
77540
|
type: "FigmaRender";
|
|
77433
77541
|
originKey: string;
|
|
77434
77542
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77456,7 +77564,16 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
77456
77564
|
id: string;
|
|
77457
77565
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77458
77566
|
name: string;
|
|
77459
|
-
|
|
77567
|
+
svg: {
|
|
77568
|
+
type: "FigmaRender";
|
|
77569
|
+
originKey: string;
|
|
77570
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77571
|
+
format: "Svg";
|
|
77572
|
+
nodeId: string;
|
|
77573
|
+
fileId: string;
|
|
77574
|
+
fileVersionId?: string | undefined;
|
|
77575
|
+
};
|
|
77576
|
+
png: {
|
|
77460
77577
|
type: "FigmaRender";
|
|
77461
77578
|
originKey: string;
|
|
77462
77579
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77489,7 +77606,16 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
77489
77606
|
id: string;
|
|
77490
77607
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77491
77608
|
name: string;
|
|
77492
|
-
|
|
77609
|
+
svg: {
|
|
77610
|
+
type: "FigmaRender";
|
|
77611
|
+
originKey: string;
|
|
77612
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77613
|
+
format: "Svg";
|
|
77614
|
+
nodeId: string;
|
|
77615
|
+
fileId: string;
|
|
77616
|
+
fileVersionId?: string | undefined;
|
|
77617
|
+
};
|
|
77618
|
+
png: {
|
|
77493
77619
|
type: "FigmaRender";
|
|
77494
77620
|
originKey: string;
|
|
77495
77621
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77527,7 +77653,16 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
77527
77653
|
id: string;
|
|
77528
77654
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77529
77655
|
name: string;
|
|
77530
|
-
|
|
77656
|
+
svg: {
|
|
77657
|
+
type: "FigmaRender";
|
|
77658
|
+
originKey: string;
|
|
77659
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77660
|
+
format: "Svg";
|
|
77661
|
+
nodeId: string;
|
|
77662
|
+
fileId: string;
|
|
77663
|
+
fileVersionId?: string | undefined;
|
|
77664
|
+
};
|
|
77665
|
+
png: {
|
|
77531
77666
|
type: "FigmaRender";
|
|
77532
77667
|
originKey: string;
|
|
77533
77668
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86301,7 +86436,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86301
86436
|
id: string;
|
|
86302
86437
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86303
86438
|
name: string;
|
|
86304
|
-
|
|
86439
|
+
svg: {
|
|
86440
|
+
type: "FigmaRender";
|
|
86441
|
+
originKey: string;
|
|
86442
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86443
|
+
format: "Svg";
|
|
86444
|
+
nodeId: string;
|
|
86445
|
+
fileId: string;
|
|
86446
|
+
fileVersionId?: string | undefined;
|
|
86447
|
+
};
|
|
86448
|
+
png: {
|
|
86305
86449
|
type: "FigmaRender";
|
|
86306
86450
|
originKey: string;
|
|
86307
86451
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86321,7 +86465,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86321
86465
|
id: string;
|
|
86322
86466
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86323
86467
|
name: string;
|
|
86324
|
-
|
|
86468
|
+
svg: {
|
|
86469
|
+
type: "FigmaRender";
|
|
86470
|
+
originKey: string;
|
|
86471
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86472
|
+
format: "Svg";
|
|
86473
|
+
nodeId: string;
|
|
86474
|
+
fileId: string;
|
|
86475
|
+
fileVersionId?: string | undefined;
|
|
86476
|
+
};
|
|
86477
|
+
png: {
|
|
86325
86478
|
type: "FigmaRender";
|
|
86326
86479
|
originKey: string;
|
|
86327
86480
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86361,7 +86514,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86361
86514
|
id: string;
|
|
86362
86515
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86363
86516
|
name: string;
|
|
86364
|
-
|
|
86517
|
+
svg: {
|
|
86518
|
+
type: "FigmaRender";
|
|
86519
|
+
originKey: string;
|
|
86520
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86521
|
+
format: "Svg";
|
|
86522
|
+
nodeId: string;
|
|
86523
|
+
fileId: string;
|
|
86524
|
+
fileVersionId?: string | undefined;
|
|
86525
|
+
};
|
|
86526
|
+
png: {
|
|
86365
86527
|
type: "FigmaRender";
|
|
86366
86528
|
originKey: string;
|
|
86367
86529
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86389,7 +86551,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86389
86551
|
id: string;
|
|
86390
86552
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86391
86553
|
name: string;
|
|
86392
|
-
|
|
86554
|
+
svg: {
|
|
86555
|
+
type: "FigmaRender";
|
|
86556
|
+
originKey: string;
|
|
86557
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86558
|
+
format: "Svg";
|
|
86559
|
+
nodeId: string;
|
|
86560
|
+
fileId: string;
|
|
86561
|
+
fileVersionId?: string | undefined;
|
|
86562
|
+
};
|
|
86563
|
+
png: {
|
|
86393
86564
|
type: "FigmaRender";
|
|
86394
86565
|
originKey: string;
|
|
86395
86566
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86409,7 +86580,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86409
86580
|
id: string;
|
|
86410
86581
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86411
86582
|
name: string;
|
|
86412
|
-
|
|
86583
|
+
svg: {
|
|
86584
|
+
type: "FigmaRender";
|
|
86585
|
+
originKey: string;
|
|
86586
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86587
|
+
format: "Svg";
|
|
86588
|
+
nodeId: string;
|
|
86589
|
+
fileId: string;
|
|
86590
|
+
fileVersionId?: string | undefined;
|
|
86591
|
+
};
|
|
86592
|
+
png: {
|
|
86413
86593
|
type: "FigmaRender";
|
|
86414
86594
|
originKey: string;
|
|
86415
86595
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86450,7 +86630,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86450
86630
|
id: string;
|
|
86451
86631
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86452
86632
|
name: string;
|
|
86453
|
-
|
|
86633
|
+
svg: {
|
|
86634
|
+
type: "FigmaRender";
|
|
86635
|
+
originKey: string;
|
|
86636
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86637
|
+
format: "Svg";
|
|
86638
|
+
nodeId: string;
|
|
86639
|
+
fileId: string;
|
|
86640
|
+
fileVersionId?: string | undefined;
|
|
86641
|
+
};
|
|
86642
|
+
png: {
|
|
86454
86643
|
type: "FigmaRender";
|
|
86455
86644
|
originKey: string;
|
|
86456
86645
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86491,7 +86680,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86491
86680
|
id: string;
|
|
86492
86681
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86493
86682
|
name: string;
|
|
86494
|
-
|
|
86683
|
+
svg: {
|
|
86684
|
+
type: "FigmaRender";
|
|
86685
|
+
originKey: string;
|
|
86686
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86687
|
+
format: "Svg";
|
|
86688
|
+
nodeId: string;
|
|
86689
|
+
fileId: string;
|
|
86690
|
+
fileVersionId?: string | undefined;
|
|
86691
|
+
};
|
|
86692
|
+
png: {
|
|
86495
86693
|
type: "FigmaRender";
|
|
86496
86694
|
originKey: string;
|
|
86497
86695
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86511,7 +86709,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86511
86709
|
id: string;
|
|
86512
86710
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86513
86711
|
name: string;
|
|
86514
|
-
|
|
86712
|
+
svg: {
|
|
86713
|
+
type: "FigmaRender";
|
|
86714
|
+
originKey: string;
|
|
86715
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86716
|
+
format: "Svg";
|
|
86717
|
+
nodeId: string;
|
|
86718
|
+
fileId: string;
|
|
86719
|
+
fileVersionId?: string | undefined;
|
|
86720
|
+
};
|
|
86721
|
+
png: {
|
|
86515
86722
|
type: "FigmaRender";
|
|
86516
86723
|
originKey: string;
|
|
86517
86724
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -87737,7 +87944,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
87737
87944
|
id: string;
|
|
87738
87945
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
87739
87946
|
name: string;
|
|
87740
|
-
|
|
87947
|
+
svg: {
|
|
87948
|
+
type: "FigmaRender";
|
|
87949
|
+
originKey: string;
|
|
87950
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
87951
|
+
format: "Svg";
|
|
87952
|
+
nodeId: string;
|
|
87953
|
+
fileId: string;
|
|
87954
|
+
fileVersionId?: string | undefined;
|
|
87955
|
+
};
|
|
87956
|
+
png: {
|
|
87741
87957
|
type: "FigmaRender";
|
|
87742
87958
|
originKey: string;
|
|
87743
87959
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -87785,7 +88001,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
87785
88001
|
id: string;
|
|
87786
88002
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
87787
88003
|
name: string;
|
|
87788
|
-
|
|
88004
|
+
svg: {
|
|
88005
|
+
type: "FigmaRender";
|
|
88006
|
+
originKey: string;
|
|
88007
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
88008
|
+
format: "Svg";
|
|
88009
|
+
nodeId: string;
|
|
88010
|
+
fileId: string;
|
|
88011
|
+
fileVersionId?: string | undefined;
|
|
88012
|
+
};
|
|
88013
|
+
png: {
|
|
87789
88014
|
type: "FigmaRender";
|
|
87790
88015
|
originKey: string;
|
|
87791
88016
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -87805,7 +88030,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
87805
88030
|
id: string;
|
|
87806
88031
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
87807
88032
|
name: string;
|
|
87808
|
-
|
|
88033
|
+
svg: {
|
|
88034
|
+
type: "FigmaRender";
|
|
88035
|
+
originKey: string;
|
|
88036
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
88037
|
+
format: "Svg";
|
|
88038
|
+
nodeId: string;
|
|
88039
|
+
fileId: string;
|
|
88040
|
+
fileVersionId?: string | undefined;
|
|
88041
|
+
};
|
|
88042
|
+
png: {
|
|
87809
88043
|
type: "FigmaRender";
|
|
87810
88044
|
originKey: string;
|
|
87811
88045
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -97861,7 +98095,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
97861
98095
|
id: string;
|
|
97862
98096
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
97863
98097
|
name: string;
|
|
97864
|
-
|
|
98098
|
+
svg: {
|
|
98099
|
+
type: "FigmaRender";
|
|
98100
|
+
originKey: string;
|
|
98101
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98102
|
+
format: "Svg";
|
|
98103
|
+
nodeId: string;
|
|
98104
|
+
fileId: string;
|
|
98105
|
+
fileVersionId?: string | undefined;
|
|
98106
|
+
};
|
|
98107
|
+
png: {
|
|
97865
98108
|
type: "FigmaRender";
|
|
97866
98109
|
originKey: string;
|
|
97867
98110
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -97881,7 +98124,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
97881
98124
|
id: string;
|
|
97882
98125
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
97883
98126
|
name: string;
|
|
97884
|
-
|
|
98127
|
+
svg: {
|
|
98128
|
+
type: "FigmaRender";
|
|
98129
|
+
originKey: string;
|
|
98130
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98131
|
+
format: "Svg";
|
|
98132
|
+
nodeId: string;
|
|
98133
|
+
fileId: string;
|
|
98134
|
+
fileVersionId?: string | undefined;
|
|
98135
|
+
};
|
|
98136
|
+
png: {
|
|
97885
98137
|
type: "FigmaRender";
|
|
97886
98138
|
originKey: string;
|
|
97887
98139
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -97921,7 +98173,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
97921
98173
|
id: string;
|
|
97922
98174
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
97923
98175
|
name: string;
|
|
97924
|
-
|
|
98176
|
+
svg: {
|
|
98177
|
+
type: "FigmaRender";
|
|
98178
|
+
originKey: string;
|
|
98179
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98180
|
+
format: "Svg";
|
|
98181
|
+
nodeId: string;
|
|
98182
|
+
fileId: string;
|
|
98183
|
+
fileVersionId?: string | undefined;
|
|
98184
|
+
};
|
|
98185
|
+
png: {
|
|
97925
98186
|
type: "FigmaRender";
|
|
97926
98187
|
originKey: string;
|
|
97927
98188
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -97949,7 +98210,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
97949
98210
|
id: string;
|
|
97950
98211
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
97951
98212
|
name: string;
|
|
97952
|
-
|
|
98213
|
+
svg: {
|
|
98214
|
+
type: "FigmaRender";
|
|
98215
|
+
originKey: string;
|
|
98216
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98217
|
+
format: "Svg";
|
|
98218
|
+
nodeId: string;
|
|
98219
|
+
fileId: string;
|
|
98220
|
+
fileVersionId?: string | undefined;
|
|
98221
|
+
};
|
|
98222
|
+
png: {
|
|
97953
98223
|
type: "FigmaRender";
|
|
97954
98224
|
originKey: string;
|
|
97955
98225
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -97969,7 +98239,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
97969
98239
|
id: string;
|
|
97970
98240
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
97971
98241
|
name: string;
|
|
97972
|
-
|
|
98242
|
+
svg: {
|
|
98243
|
+
type: "FigmaRender";
|
|
98244
|
+
originKey: string;
|
|
98245
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98246
|
+
format: "Svg";
|
|
98247
|
+
nodeId: string;
|
|
98248
|
+
fileId: string;
|
|
98249
|
+
fileVersionId?: string | undefined;
|
|
98250
|
+
};
|
|
98251
|
+
png: {
|
|
97973
98252
|
type: "FigmaRender";
|
|
97974
98253
|
originKey: string;
|
|
97975
98254
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -98001,7 +98280,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
98001
98280
|
id: string;
|
|
98002
98281
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
98003
98282
|
name: string;
|
|
98004
|
-
|
|
98283
|
+
svg: {
|
|
98284
|
+
type: "FigmaRender";
|
|
98285
|
+
originKey: string;
|
|
98286
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98287
|
+
format: "Svg";
|
|
98288
|
+
nodeId: string;
|
|
98289
|
+
fileId: string;
|
|
98290
|
+
fileVersionId?: string | undefined;
|
|
98291
|
+
};
|
|
98292
|
+
png: {
|
|
98005
98293
|
type: "FigmaRender";
|
|
98006
98294
|
originKey: string;
|
|
98007
98295
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -98039,7 +98327,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
98039
98327
|
id: string;
|
|
98040
98328
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
98041
98329
|
name: string;
|
|
98042
|
-
|
|
98330
|
+
svg: {
|
|
98331
|
+
type: "FigmaRender";
|
|
98332
|
+
originKey: string;
|
|
98333
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98334
|
+
format: "Svg";
|
|
98335
|
+
nodeId: string;
|
|
98336
|
+
fileId: string;
|
|
98337
|
+
fileVersionId?: string | undefined;
|
|
98338
|
+
};
|
|
98339
|
+
png: {
|
|
98043
98340
|
type: "FigmaRender";
|
|
98044
98341
|
originKey: string;
|
|
98045
98342
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -98059,7 +98356,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
98059
98356
|
id: string;
|
|
98060
98357
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
98061
98358
|
name: string;
|
|
98062
|
-
|
|
98359
|
+
svg: {
|
|
98360
|
+
type: "FigmaRender";
|
|
98361
|
+
originKey: string;
|
|
98362
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98363
|
+
format: "Svg";
|
|
98364
|
+
nodeId: string;
|
|
98365
|
+
fileId: string;
|
|
98366
|
+
fileVersionId?: string | undefined;
|
|
98367
|
+
};
|
|
98368
|
+
png: {
|
|
98063
98369
|
type: "FigmaRender";
|
|
98064
98370
|
originKey: string;
|
|
98065
98371
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -99301,7 +99607,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
99301
99607
|
id: string;
|
|
99302
99608
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
99303
99609
|
name: string;
|
|
99304
|
-
|
|
99610
|
+
svg: {
|
|
99611
|
+
type: "FigmaRender";
|
|
99612
|
+
originKey: string;
|
|
99613
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
99614
|
+
format: "Svg";
|
|
99615
|
+
nodeId: string;
|
|
99616
|
+
fileId: string;
|
|
99617
|
+
fileVersionId?: string | undefined;
|
|
99618
|
+
};
|
|
99619
|
+
png: {
|
|
99305
99620
|
type: "FigmaRender";
|
|
99306
99621
|
originKey: string;
|
|
99307
99622
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -100544,7 +100859,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100544
100859
|
id: string;
|
|
100545
100860
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
100546
100861
|
name: string;
|
|
100547
|
-
|
|
100862
|
+
svg: {
|
|
100863
|
+
type: "FigmaRender";
|
|
100864
|
+
originKey: string;
|
|
100865
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
100866
|
+
format: "Svg";
|
|
100867
|
+
nodeId: string;
|
|
100868
|
+
fileId: string;
|
|
100869
|
+
fileVersionId?: string | undefined;
|
|
100870
|
+
};
|
|
100871
|
+
png: {
|
|
100548
100872
|
type: "FigmaRender";
|
|
100549
100873
|
originKey: string;
|
|
100550
100874
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -100564,7 +100888,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100564
100888
|
id: string;
|
|
100565
100889
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
100566
100890
|
name: string;
|
|
100567
|
-
|
|
100891
|
+
svg: {
|
|
100892
|
+
type: "FigmaRender";
|
|
100893
|
+
originKey: string;
|
|
100894
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
100895
|
+
format: "Svg";
|
|
100896
|
+
nodeId: string;
|
|
100897
|
+
fileId: string;
|
|
100898
|
+
fileVersionId?: string | undefined;
|
|
100899
|
+
};
|
|
100900
|
+
png: {
|
|
100568
100901
|
type: "FigmaRender";
|
|
100569
100902
|
originKey: string;
|
|
100570
100903
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -165232,4 +165565,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
165232
165565
|
}>;
|
|
165233
165566
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
165234
165567
|
|
|
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 };
|
|
165568
|
+
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 };
|