@supernova-studio/model 0.59.0 → 0.59.1
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 +406 -308
- package/dist/index.d.ts +406 -308
- package/dist/index.js +29 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +29 -15
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/figma-node-reference.ts +45 -17
package/dist/index.d.mts
CHANGED
|
@@ -34733,7 +34733,7 @@ declare const ImportJob: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
34733
34733
|
id: string;
|
|
34734
34734
|
createdAt: Date;
|
|
34735
34735
|
updatedAt: Date;
|
|
34736
|
-
state: "InProgress" | "Success" | "
|
|
34736
|
+
state: "InProgress" | "Success" | "Failed" | "PendingInput" | "Queued";
|
|
34737
34737
|
designSystemId: string;
|
|
34738
34738
|
designSystemVersionId: string;
|
|
34739
34739
|
sourceIds: string[];
|
|
@@ -34746,7 +34746,7 @@ declare const ImportJob: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
34746
34746
|
id: string;
|
|
34747
34747
|
createdAt: Date;
|
|
34748
34748
|
updatedAt: Date;
|
|
34749
|
-
state: "InProgress" | "Success" | "
|
|
34749
|
+
state: "InProgress" | "Success" | "Failed" | "PendingInput" | "Queued";
|
|
34750
34750
|
designSystemId: string;
|
|
34751
34751
|
designSystemVersionId: string;
|
|
34752
34752
|
sourceIds: string[];
|
|
@@ -50520,114 +50520,143 @@ declare const FigmaFileStructureElementData: z.ZodObject<{
|
|
|
50520
50520
|
type FigmaFileStructureElementData = z.infer<typeof FigmaFileStructureElementData>;
|
|
50521
50521
|
declare function figmaFileStructureToMap(root: FigmaFileStructureNode): Map<string, FigmaFileStructureNode>;
|
|
50522
50522
|
|
|
50523
|
+
declare const FigmaNodeRenderState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
|
|
50524
|
+
type FigmaNodeRenderState = z.infer<typeof FigmaNodeRenderState>;
|
|
50523
50525
|
declare const FigmaNodeRenderFormat: z.ZodEnum<["Png", "Svg"]>;
|
|
50524
50526
|
type FigmaNodeRenderFormat = z.infer<typeof FigmaNodeRenderFormat>;
|
|
50525
|
-
declare const
|
|
50526
|
-
|
|
50527
|
-
|
|
50528
|
-
fileId: z.
|
|
50529
|
-
valid: z.ZodBoolean;
|
|
50530
|
-
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
50531
|
-
assetId: z.ZodOptional<z.ZodString>;
|
|
50532
|
-
assetScale: z.ZodOptional<z.ZodNumber>;
|
|
50533
|
-
assetWidth: z.ZodOptional<z.ZodNumber>;
|
|
50534
|
-
assetHeight: z.ZodOptional<z.ZodNumber>;
|
|
50535
|
-
assetUrl: z.ZodOptional<z.ZodString>;
|
|
50536
|
-
assetOriginKey: z.ZodOptional<z.ZodString>;
|
|
50527
|
+
declare const FigmaNodeRenderErrorType: z.ZodEnum<["MissingIntegration", "NodeNotFound", "RenderError"]>;
|
|
50528
|
+
type FigmaNodeRenderErrorType = z.infer<typeof FigmaNodeRenderErrorType>;
|
|
50529
|
+
declare const FigmaNodeRelinkData: z.ZodObject<{
|
|
50530
|
+
fileId: z.ZodString;
|
|
50537
50531
|
}, "strip", z.ZodTypeAny, {
|
|
50538
|
-
|
|
50532
|
+
fileId: string;
|
|
50533
|
+
}, {
|
|
50534
|
+
fileId: string;
|
|
50535
|
+
}>;
|
|
50536
|
+
type FigmaNodeRelinkData = z.infer<typeof FigmaNodeRelinkData>;
|
|
50537
|
+
declare const FigmaNodeRenderedImage: z.ZodObject<{
|
|
50538
|
+
resourceId: z.ZodString;
|
|
50539
|
+
format: z.ZodEnum<["Png", "Svg"]>;
|
|
50540
|
+
scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
50541
|
+
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
50542
|
+
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
50543
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
50544
|
+
originKey: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
50545
|
+
}, "strip", z.ZodTypeAny, {
|
|
50546
|
+
resourceId: string;
|
|
50539
50547
|
format: "Png" | "Svg";
|
|
50540
|
-
|
|
50541
|
-
|
|
50542
|
-
|
|
50543
|
-
|
|
50544
|
-
|
|
50545
|
-
fileId?: string | undefined;
|
|
50546
|
-
assetWidth?: number | undefined;
|
|
50547
|
-
assetHeight?: number | undefined;
|
|
50548
|
-
assetOriginKey?: string | undefined;
|
|
50548
|
+
url?: string | undefined;
|
|
50549
|
+
width?: number | undefined;
|
|
50550
|
+
height?: number | undefined;
|
|
50551
|
+
originKey?: string | undefined;
|
|
50552
|
+
scale?: number | undefined;
|
|
50549
50553
|
}, {
|
|
50550
|
-
|
|
50551
|
-
|
|
50552
|
-
|
|
50553
|
-
|
|
50554
|
-
|
|
50555
|
-
|
|
50556
|
-
|
|
50557
|
-
fileId?: string | undefined;
|
|
50558
|
-
assetWidth?: number | undefined;
|
|
50559
|
-
assetHeight?: number | undefined;
|
|
50560
|
-
assetOriginKey?: string | undefined;
|
|
50554
|
+
resourceId: string;
|
|
50555
|
+
format: "Png" | "Svg";
|
|
50556
|
+
url?: string | null | undefined;
|
|
50557
|
+
width?: number | null | undefined;
|
|
50558
|
+
height?: number | null | undefined;
|
|
50559
|
+
originKey?: string | null | undefined;
|
|
50560
|
+
scale?: number | null | undefined;
|
|
50561
50561
|
}>;
|
|
50562
|
-
type
|
|
50563
|
-
declare const
|
|
50564
|
-
|
|
50565
|
-
|
|
50566
|
-
|
|
50567
|
-
|
|
50568
|
-
|
|
50569
|
-
|
|
50570
|
-
|
|
50571
|
-
|
|
50572
|
-
|
|
50573
|
-
|
|
50574
|
-
|
|
50575
|
-
|
|
50562
|
+
type FigmaNodeRenderedImage = z.infer<typeof FigmaNodeRenderedImage>;
|
|
50563
|
+
declare const FigmaNodeRenderError: z.ZodObject<{
|
|
50564
|
+
type: z.ZodEnum<["MissingIntegration", "NodeNotFound", "RenderError"]>;
|
|
50565
|
+
}, "strip", z.ZodTypeAny, {
|
|
50566
|
+
type: "MissingIntegration" | "NodeNotFound" | "RenderError";
|
|
50567
|
+
}, {
|
|
50568
|
+
type: "MissingIntegration" | "NodeNotFound" | "RenderError";
|
|
50569
|
+
}>;
|
|
50570
|
+
type FigmaNodeRenderError = z.infer<typeof FigmaNodeRenderError>;
|
|
50571
|
+
declare const FigmaNodeReferenceData: z.ZodObject<{
|
|
50572
|
+
nodeId: z.ZodString;
|
|
50573
|
+
format: z.ZodEnum<["Png", "Svg"]>;
|
|
50574
|
+
scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
50575
|
+
renderState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
|
|
50576
|
+
renderedImage: z.ZodOptional<z.ZodObject<{
|
|
50577
|
+
resourceId: z.ZodString;
|
|
50578
|
+
format: z.ZodEnum<["Png", "Svg"]>;
|
|
50579
|
+
scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
50580
|
+
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
50581
|
+
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
50582
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
50583
|
+
originKey: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
50576
50584
|
}, "strip", z.ZodTypeAny, {
|
|
50577
|
-
|
|
50585
|
+
resourceId: string;
|
|
50578
50586
|
format: "Png" | "Svg";
|
|
50579
|
-
|
|
50580
|
-
|
|
50581
|
-
|
|
50582
|
-
|
|
50583
|
-
|
|
50584
|
-
fileId?: string | undefined;
|
|
50585
|
-
assetWidth?: number | undefined;
|
|
50586
|
-
assetHeight?: number | undefined;
|
|
50587
|
-
assetOriginKey?: string | undefined;
|
|
50587
|
+
url?: string | undefined;
|
|
50588
|
+
width?: number | undefined;
|
|
50589
|
+
height?: number | undefined;
|
|
50590
|
+
originKey?: string | undefined;
|
|
50591
|
+
scale?: number | undefined;
|
|
50588
50592
|
}, {
|
|
50589
|
-
|
|
50590
|
-
|
|
50591
|
-
|
|
50592
|
-
|
|
50593
|
-
|
|
50594
|
-
|
|
50595
|
-
|
|
50596
|
-
|
|
50597
|
-
|
|
50598
|
-
|
|
50599
|
-
|
|
50600
|
-
|
|
50593
|
+
resourceId: string;
|
|
50594
|
+
format: "Png" | "Svg";
|
|
50595
|
+
url?: string | null | undefined;
|
|
50596
|
+
width?: number | null | undefined;
|
|
50597
|
+
height?: number | null | undefined;
|
|
50598
|
+
originKey?: string | null | undefined;
|
|
50599
|
+
scale?: number | null | undefined;
|
|
50600
|
+
}>>;
|
|
50601
|
+
renderError: z.ZodOptional<z.ZodObject<{
|
|
50602
|
+
type: z.ZodEnum<["MissingIntegration", "NodeNotFound", "RenderError"]>;
|
|
50603
|
+
}, "strip", z.ZodTypeAny, {
|
|
50604
|
+
type: "MissingIntegration" | "NodeNotFound" | "RenderError";
|
|
50605
|
+
}, {
|
|
50606
|
+
type: "MissingIntegration" | "NodeNotFound" | "RenderError";
|
|
50607
|
+
}>>;
|
|
50608
|
+
hasSource: z.ZodBoolean;
|
|
50609
|
+
relinkData: z.ZodOptional<z.ZodObject<{
|
|
50610
|
+
fileId: z.ZodString;
|
|
50611
|
+
}, "strip", z.ZodTypeAny, {
|
|
50612
|
+
fileId: string;
|
|
50613
|
+
}, {
|
|
50614
|
+
fileId: string;
|
|
50615
|
+
}>>;
|
|
50601
50616
|
}, "strip", z.ZodTypeAny, {
|
|
50602
|
-
|
|
50603
|
-
|
|
50617
|
+
format: "Png" | "Svg";
|
|
50618
|
+
nodeId: string;
|
|
50619
|
+
renderState: "InProgress" | "Success" | "Failed";
|
|
50620
|
+
hasSource: boolean;
|
|
50621
|
+
scale?: number | undefined;
|
|
50622
|
+
renderedImage?: {
|
|
50623
|
+
resourceId: string;
|
|
50604
50624
|
format: "Png" | "Svg";
|
|
50605
|
-
|
|
50606
|
-
|
|
50607
|
-
|
|
50608
|
-
|
|
50609
|
-
|
|
50610
|
-
|
|
50611
|
-
|
|
50612
|
-
|
|
50613
|
-
|
|
50614
|
-
|
|
50625
|
+
url?: string | undefined;
|
|
50626
|
+
width?: number | undefined;
|
|
50627
|
+
height?: number | undefined;
|
|
50628
|
+
originKey?: string | undefined;
|
|
50629
|
+
scale?: number | undefined;
|
|
50630
|
+
} | undefined;
|
|
50631
|
+
renderError?: {
|
|
50632
|
+
type: "MissingIntegration" | "NodeNotFound" | "RenderError";
|
|
50633
|
+
} | undefined;
|
|
50634
|
+
relinkData?: {
|
|
50635
|
+
fileId: string;
|
|
50636
|
+
} | undefined;
|
|
50615
50637
|
}, {
|
|
50616
|
-
|
|
50617
|
-
|
|
50618
|
-
|
|
50619
|
-
|
|
50620
|
-
|
|
50621
|
-
|
|
50622
|
-
|
|
50623
|
-
format
|
|
50624
|
-
|
|
50625
|
-
|
|
50626
|
-
|
|
50627
|
-
|
|
50628
|
-
|
|
50638
|
+
format: "Png" | "Svg";
|
|
50639
|
+
nodeId: string;
|
|
50640
|
+
renderState: "InProgress" | "Success" | "Failed";
|
|
50641
|
+
hasSource: boolean;
|
|
50642
|
+
scale?: number | null | undefined;
|
|
50643
|
+
renderedImage?: {
|
|
50644
|
+
resourceId: string;
|
|
50645
|
+
format: "Png" | "Svg";
|
|
50646
|
+
url?: string | null | undefined;
|
|
50647
|
+
width?: number | null | undefined;
|
|
50648
|
+
height?: number | null | undefined;
|
|
50649
|
+
originKey?: string | null | undefined;
|
|
50650
|
+
scale?: number | null | undefined;
|
|
50651
|
+
} | undefined;
|
|
50652
|
+
renderError?: {
|
|
50653
|
+
type: "MissingIntegration" | "NodeNotFound" | "RenderError";
|
|
50654
|
+
} | undefined;
|
|
50655
|
+
relinkData?: {
|
|
50656
|
+
fileId: string;
|
|
50657
|
+
} | undefined;
|
|
50629
50658
|
}>;
|
|
50630
|
-
type
|
|
50659
|
+
type FigmaNodeReferenceData = z.infer<typeof FigmaNodeReferenceData>;
|
|
50631
50660
|
|
|
50632
50661
|
declare const FontFamilyValue: z.ZodString;
|
|
50633
50662
|
type FontFamilyValue = z.infer<typeof FontFamilyValue>;
|
|
@@ -60490,41 +60519,92 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
60490
60519
|
updatedAt: z.ZodDate;
|
|
60491
60520
|
}, {
|
|
60492
60521
|
data: z.ZodObject<{
|
|
60493
|
-
structureElementId: z.ZodString;
|
|
60494
60522
|
nodeId: z.ZodString;
|
|
60495
|
-
|
|
60496
|
-
|
|
60497
|
-
|
|
60498
|
-
|
|
60499
|
-
|
|
60500
|
-
|
|
60501
|
-
|
|
60502
|
-
|
|
60503
|
-
|
|
60523
|
+
format: z.ZodEnum<["Png", "Svg"]>;
|
|
60524
|
+
scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
60525
|
+
renderState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
|
|
60526
|
+
renderedImage: z.ZodOptional<z.ZodObject<{
|
|
60527
|
+
resourceId: z.ZodString;
|
|
60528
|
+
format: z.ZodEnum<["Png", "Svg"]>;
|
|
60529
|
+
scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
60530
|
+
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
60531
|
+
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
60532
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
60533
|
+
originKey: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
60534
|
+
}, "strip", z.ZodTypeAny, {
|
|
60535
|
+
resourceId: string;
|
|
60536
|
+
format: "Png" | "Svg";
|
|
60537
|
+
url?: string | undefined;
|
|
60538
|
+
width?: number | undefined;
|
|
60539
|
+
height?: number | undefined;
|
|
60540
|
+
originKey?: string | undefined;
|
|
60541
|
+
scale?: number | undefined;
|
|
60542
|
+
}, {
|
|
60543
|
+
resourceId: string;
|
|
60544
|
+
format: "Png" | "Svg";
|
|
60545
|
+
url?: string | null | undefined;
|
|
60546
|
+
width?: number | null | undefined;
|
|
60547
|
+
height?: number | null | undefined;
|
|
60548
|
+
originKey?: string | null | undefined;
|
|
60549
|
+
scale?: number | null | undefined;
|
|
60550
|
+
}>>;
|
|
60551
|
+
renderError: z.ZodOptional<z.ZodObject<{
|
|
60552
|
+
type: z.ZodEnum<["MissingIntegration", "NodeNotFound", "RenderError"]>;
|
|
60553
|
+
}, "strip", z.ZodTypeAny, {
|
|
60554
|
+
type: "MissingIntegration" | "NodeNotFound" | "RenderError";
|
|
60555
|
+
}, {
|
|
60556
|
+
type: "MissingIntegration" | "NodeNotFound" | "RenderError";
|
|
60557
|
+
}>>;
|
|
60558
|
+
hasSource: z.ZodBoolean;
|
|
60559
|
+
relinkData: z.ZodOptional<z.ZodObject<{
|
|
60560
|
+
fileId: z.ZodString;
|
|
60561
|
+
}, "strip", z.ZodTypeAny, {
|
|
60562
|
+
fileId: string;
|
|
60563
|
+
}, {
|
|
60564
|
+
fileId: string;
|
|
60565
|
+
}>>;
|
|
60504
60566
|
}, "strip", z.ZodTypeAny, {
|
|
60505
|
-
valid: boolean;
|
|
60506
60567
|
format: "Png" | "Svg";
|
|
60507
|
-
structureElementId: string;
|
|
60508
60568
|
nodeId: string;
|
|
60509
|
-
|
|
60510
|
-
|
|
60511
|
-
|
|
60512
|
-
|
|
60513
|
-
|
|
60514
|
-
|
|
60515
|
-
|
|
60569
|
+
renderState: "InProgress" | "Success" | "Failed";
|
|
60570
|
+
hasSource: boolean;
|
|
60571
|
+
scale?: number | undefined;
|
|
60572
|
+
renderedImage?: {
|
|
60573
|
+
resourceId: string;
|
|
60574
|
+
format: "Png" | "Svg";
|
|
60575
|
+
url?: string | undefined;
|
|
60576
|
+
width?: number | undefined;
|
|
60577
|
+
height?: number | undefined;
|
|
60578
|
+
originKey?: string | undefined;
|
|
60579
|
+
scale?: number | undefined;
|
|
60580
|
+
} | undefined;
|
|
60581
|
+
renderError?: {
|
|
60582
|
+
type: "MissingIntegration" | "NodeNotFound" | "RenderError";
|
|
60583
|
+
} | undefined;
|
|
60584
|
+
relinkData?: {
|
|
60585
|
+
fileId: string;
|
|
60586
|
+
} | undefined;
|
|
60516
60587
|
}, {
|
|
60517
|
-
|
|
60518
|
-
structureElementId: string;
|
|
60588
|
+
format: "Png" | "Svg";
|
|
60519
60589
|
nodeId: string;
|
|
60520
|
-
|
|
60521
|
-
|
|
60522
|
-
|
|
60523
|
-
|
|
60524
|
-
|
|
60525
|
-
|
|
60526
|
-
|
|
60527
|
-
|
|
60590
|
+
renderState: "InProgress" | "Success" | "Failed";
|
|
60591
|
+
hasSource: boolean;
|
|
60592
|
+
scale?: number | null | undefined;
|
|
60593
|
+
renderedImage?: {
|
|
60594
|
+
resourceId: string;
|
|
60595
|
+
format: "Png" | "Svg";
|
|
60596
|
+
url?: string | null | undefined;
|
|
60597
|
+
width?: number | null | undefined;
|
|
60598
|
+
height?: number | null | undefined;
|
|
60599
|
+
originKey?: string | null | undefined;
|
|
60600
|
+
scale?: number | null | undefined;
|
|
60601
|
+
} | undefined;
|
|
60602
|
+
renderError?: {
|
|
60603
|
+
type: "MissingIntegration" | "NodeNotFound" | "RenderError";
|
|
60604
|
+
} | undefined;
|
|
60605
|
+
relinkData?: {
|
|
60606
|
+
fileId: string;
|
|
60607
|
+
} | undefined;
|
|
60528
60608
|
}>;
|
|
60529
60609
|
origin: z.ZodObject<{
|
|
60530
60610
|
sourceId: z.ZodString;
|
|
@@ -60543,17 +60623,26 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
60543
60623
|
persistentId: string;
|
|
60544
60624
|
designSystemVersionId: string;
|
|
60545
60625
|
data: {
|
|
60546
|
-
valid: boolean;
|
|
60547
60626
|
format: "Png" | "Svg";
|
|
60548
|
-
structureElementId: string;
|
|
60549
60627
|
nodeId: string;
|
|
60550
|
-
|
|
60551
|
-
|
|
60552
|
-
|
|
60553
|
-
|
|
60554
|
-
|
|
60555
|
-
|
|
60556
|
-
|
|
60628
|
+
renderState: "InProgress" | "Success" | "Failed";
|
|
60629
|
+
hasSource: boolean;
|
|
60630
|
+
scale?: number | undefined;
|
|
60631
|
+
renderedImage?: {
|
|
60632
|
+
resourceId: string;
|
|
60633
|
+
format: "Png" | "Svg";
|
|
60634
|
+
url?: string | undefined;
|
|
60635
|
+
width?: number | undefined;
|
|
60636
|
+
height?: number | undefined;
|
|
60637
|
+
originKey?: string | undefined;
|
|
60638
|
+
scale?: number | undefined;
|
|
60639
|
+
} | undefined;
|
|
60640
|
+
renderError?: {
|
|
60641
|
+
type: "MissingIntegration" | "NodeNotFound" | "RenderError";
|
|
60642
|
+
} | undefined;
|
|
60643
|
+
relinkData?: {
|
|
60644
|
+
fileId: string;
|
|
60645
|
+
} | undefined;
|
|
60557
60646
|
};
|
|
60558
60647
|
origin: {
|
|
60559
60648
|
sourceId: string;
|
|
@@ -60570,17 +60659,26 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
60570
60659
|
persistentId: string;
|
|
60571
60660
|
designSystemVersionId: string;
|
|
60572
60661
|
data: {
|
|
60573
|
-
|
|
60574
|
-
structureElementId: string;
|
|
60662
|
+
format: "Png" | "Svg";
|
|
60575
60663
|
nodeId: string;
|
|
60576
|
-
|
|
60577
|
-
|
|
60578
|
-
|
|
60579
|
-
|
|
60580
|
-
|
|
60581
|
-
|
|
60582
|
-
|
|
60583
|
-
|
|
60664
|
+
renderState: "InProgress" | "Success" | "Failed";
|
|
60665
|
+
hasSource: boolean;
|
|
60666
|
+
scale?: number | null | undefined;
|
|
60667
|
+
renderedImage?: {
|
|
60668
|
+
resourceId: string;
|
|
60669
|
+
format: "Png" | "Svg";
|
|
60670
|
+
url?: string | null | undefined;
|
|
60671
|
+
width?: number | null | undefined;
|
|
60672
|
+
height?: number | null | undefined;
|
|
60673
|
+
originKey?: string | null | undefined;
|
|
60674
|
+
scale?: number | null | undefined;
|
|
60675
|
+
} | undefined;
|
|
60676
|
+
renderError?: {
|
|
60677
|
+
type: "MissingIntegration" | "NodeNotFound" | "RenderError";
|
|
60678
|
+
} | undefined;
|
|
60679
|
+
relinkData?: {
|
|
60680
|
+
fileId: string;
|
|
60681
|
+
} | undefined;
|
|
60584
60682
|
};
|
|
60585
60683
|
origin: {
|
|
60586
60684
|
sourceId: string;
|
|
@@ -83590,18 +83688,18 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
|
|
|
83590
83688
|
originKey: string;
|
|
83591
83689
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
83592
83690
|
format: "Png";
|
|
83593
|
-
nodeId: string;
|
|
83594
83691
|
fileId: string;
|
|
83595
83692
|
scale: number;
|
|
83693
|
+
nodeId: string;
|
|
83596
83694
|
fileVersionId?: string | undefined;
|
|
83597
83695
|
}, {
|
|
83598
83696
|
type: "FigmaRender";
|
|
83599
83697
|
originKey: string;
|
|
83600
83698
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
83601
83699
|
format: "Png";
|
|
83602
|
-
nodeId: string;
|
|
83603
83700
|
fileId: string;
|
|
83604
83701
|
scale: number;
|
|
83702
|
+
nodeId: string;
|
|
83605
83703
|
fileVersionId?: string | undefined;
|
|
83606
83704
|
}>;
|
|
83607
83705
|
svg: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -83619,16 +83717,16 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
|
|
|
83619
83717
|
originKey: string;
|
|
83620
83718
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
83621
83719
|
format: "Svg";
|
|
83622
|
-
nodeId: string;
|
|
83623
83720
|
fileId: string;
|
|
83721
|
+
nodeId: string;
|
|
83624
83722
|
fileVersionId?: string | undefined;
|
|
83625
83723
|
}, {
|
|
83626
83724
|
type: "FigmaRender";
|
|
83627
83725
|
originKey: string;
|
|
83628
83726
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
83629
83727
|
format: "Svg";
|
|
83630
|
-
nodeId: string;
|
|
83631
83728
|
fileId: string;
|
|
83729
|
+
nodeId: string;
|
|
83632
83730
|
fileVersionId?: string | undefined;
|
|
83633
83731
|
}>;
|
|
83634
83732
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -83640,8 +83738,8 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
|
|
|
83640
83738
|
originKey: string;
|
|
83641
83739
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
83642
83740
|
format: "Svg";
|
|
83643
|
-
nodeId: string;
|
|
83644
83741
|
fileId: string;
|
|
83742
|
+
nodeId: string;
|
|
83645
83743
|
fileVersionId?: string | undefined;
|
|
83646
83744
|
};
|
|
83647
83745
|
png: {
|
|
@@ -83649,9 +83747,9 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
|
|
|
83649
83747
|
originKey: string;
|
|
83650
83748
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
83651
83749
|
format: "Png";
|
|
83652
|
-
nodeId: string;
|
|
83653
83750
|
fileId: string;
|
|
83654
83751
|
scale: number;
|
|
83752
|
+
nodeId: string;
|
|
83655
83753
|
fileVersionId?: string | undefined;
|
|
83656
83754
|
};
|
|
83657
83755
|
size?: {
|
|
@@ -83668,8 +83766,8 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
|
|
|
83668
83766
|
originKey: string;
|
|
83669
83767
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
83670
83768
|
format: "Svg";
|
|
83671
|
-
nodeId: string;
|
|
83672
83769
|
fileId: string;
|
|
83770
|
+
nodeId: string;
|
|
83673
83771
|
fileVersionId?: string | undefined;
|
|
83674
83772
|
};
|
|
83675
83773
|
png: {
|
|
@@ -83677,9 +83775,9 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
|
|
|
83677
83775
|
originKey: string;
|
|
83678
83776
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
83679
83777
|
format: "Png";
|
|
83680
|
-
nodeId: string;
|
|
83681
83778
|
fileId: string;
|
|
83682
83779
|
scale: number;
|
|
83780
|
+
nodeId: string;
|
|
83683
83781
|
fileVersionId?: string | undefined;
|
|
83684
83782
|
};
|
|
83685
83783
|
size?: {
|
|
@@ -83753,8 +83851,8 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
83753
83851
|
originKey: string;
|
|
83754
83852
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
83755
83853
|
format: "Svg";
|
|
83756
|
-
nodeId: string;
|
|
83757
83854
|
fileId: string;
|
|
83855
|
+
nodeId: string;
|
|
83758
83856
|
fileVersionId?: string | undefined;
|
|
83759
83857
|
};
|
|
83760
83858
|
png: {
|
|
@@ -83762,9 +83860,9 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
83762
83860
|
originKey: string;
|
|
83763
83861
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
83764
83862
|
format: "Png";
|
|
83765
|
-
nodeId: string;
|
|
83766
83863
|
fileId: string;
|
|
83767
83864
|
scale: number;
|
|
83865
|
+
nodeId: string;
|
|
83768
83866
|
fileVersionId?: string | undefined;
|
|
83769
83867
|
};
|
|
83770
83868
|
size?: {
|
|
@@ -83790,8 +83888,8 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
83790
83888
|
originKey: string;
|
|
83791
83889
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
83792
83890
|
format: "Svg";
|
|
83793
|
-
nodeId: string;
|
|
83794
83891
|
fileId: string;
|
|
83892
|
+
nodeId: string;
|
|
83795
83893
|
fileVersionId?: string | undefined;
|
|
83796
83894
|
};
|
|
83797
83895
|
png: {
|
|
@@ -83799,9 +83897,9 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
83799
83897
|
originKey: string;
|
|
83800
83898
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
83801
83899
|
format: "Png";
|
|
83802
|
-
nodeId: string;
|
|
83803
83900
|
fileId: string;
|
|
83804
83901
|
scale: number;
|
|
83902
|
+
nodeId: string;
|
|
83805
83903
|
fileVersionId?: string | undefined;
|
|
83806
83904
|
};
|
|
83807
83905
|
size?: {
|
|
@@ -83841,8 +83939,8 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
83841
83939
|
originKey: string;
|
|
83842
83940
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
83843
83941
|
format: "Svg";
|
|
83844
|
-
nodeId: string;
|
|
83845
83942
|
fileId: string;
|
|
83943
|
+
nodeId: string;
|
|
83846
83944
|
fileVersionId?: string | undefined;
|
|
83847
83945
|
};
|
|
83848
83946
|
png: {
|
|
@@ -83850,9 +83948,9 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
83850
83948
|
originKey: string;
|
|
83851
83949
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
83852
83950
|
format: "Png";
|
|
83853
|
-
nodeId: string;
|
|
83854
83951
|
fileId: string;
|
|
83855
83952
|
scale: number;
|
|
83953
|
+
nodeId: string;
|
|
83856
83954
|
fileVersionId?: string | undefined;
|
|
83857
83955
|
};
|
|
83858
83956
|
size?: {
|
|
@@ -83891,8 +83989,8 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
83891
83989
|
originKey: string;
|
|
83892
83990
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
83893
83991
|
format: "Svg";
|
|
83894
|
-
nodeId: string;
|
|
83895
83992
|
fileId: string;
|
|
83993
|
+
nodeId: string;
|
|
83896
83994
|
fileVersionId?: string | undefined;
|
|
83897
83995
|
};
|
|
83898
83996
|
png: {
|
|
@@ -83900,9 +83998,9 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
83900
83998
|
originKey: string;
|
|
83901
83999
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
83902
84000
|
format: "Png";
|
|
83903
|
-
nodeId: string;
|
|
83904
84001
|
fileId: string;
|
|
83905
84002
|
scale: number;
|
|
84003
|
+
nodeId: string;
|
|
83906
84004
|
fileVersionId?: string | undefined;
|
|
83907
84005
|
};
|
|
83908
84006
|
size?: {
|
|
@@ -83987,8 +84085,8 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
83987
84085
|
originKey: string;
|
|
83988
84086
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
83989
84087
|
format: "Svg";
|
|
83990
|
-
nodeId: string;
|
|
83991
84088
|
fileId: string;
|
|
84089
|
+
nodeId: string;
|
|
83992
84090
|
fileVersionId?: string | undefined;
|
|
83993
84091
|
};
|
|
83994
84092
|
png: {
|
|
@@ -83996,9 +84094,9 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
83996
84094
|
originKey: string;
|
|
83997
84095
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
83998
84096
|
format: "Png";
|
|
83999
|
-
nodeId: string;
|
|
84000
84097
|
fileId: string;
|
|
84001
84098
|
scale: number;
|
|
84099
|
+
nodeId: string;
|
|
84002
84100
|
fileVersionId?: string | undefined;
|
|
84003
84101
|
};
|
|
84004
84102
|
size?: {
|
|
@@ -84024,8 +84122,8 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
84024
84122
|
originKey: string;
|
|
84025
84123
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
84026
84124
|
format: "Svg";
|
|
84027
|
-
nodeId: string;
|
|
84028
84125
|
fileId: string;
|
|
84126
|
+
nodeId: string;
|
|
84029
84127
|
fileVersionId?: string | undefined;
|
|
84030
84128
|
};
|
|
84031
84129
|
png: {
|
|
@@ -84033,9 +84131,9 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
84033
84131
|
originKey: string;
|
|
84034
84132
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
84035
84133
|
format: "Png";
|
|
84036
|
-
nodeId: string;
|
|
84037
84134
|
fileId: string;
|
|
84038
84135
|
scale: number;
|
|
84136
|
+
nodeId: string;
|
|
84039
84137
|
fileVersionId?: string | undefined;
|
|
84040
84138
|
};
|
|
84041
84139
|
size?: {
|
|
@@ -84066,8 +84164,8 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
84066
84164
|
originKey: string;
|
|
84067
84165
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
84068
84166
|
format: "Svg";
|
|
84069
|
-
nodeId: string;
|
|
84070
84167
|
fileId: string;
|
|
84168
|
+
nodeId: string;
|
|
84071
84169
|
fileVersionId?: string | undefined;
|
|
84072
84170
|
};
|
|
84073
84171
|
png: {
|
|
@@ -84075,9 +84173,9 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
84075
84173
|
originKey: string;
|
|
84076
84174
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
84077
84175
|
format: "Png";
|
|
84078
|
-
nodeId: string;
|
|
84079
84176
|
fileId: string;
|
|
84080
84177
|
scale: number;
|
|
84178
|
+
nodeId: string;
|
|
84081
84179
|
fileVersionId?: string | undefined;
|
|
84082
84180
|
};
|
|
84083
84181
|
size?: {
|
|
@@ -84113,8 +84211,8 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
84113
84211
|
originKey: string;
|
|
84114
84212
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
84115
84213
|
format: "Svg";
|
|
84116
|
-
nodeId: string;
|
|
84117
84214
|
fileId: string;
|
|
84215
|
+
nodeId: string;
|
|
84118
84216
|
fileVersionId?: string | undefined;
|
|
84119
84217
|
};
|
|
84120
84218
|
png: {
|
|
@@ -84122,9 +84220,9 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
84122
84220
|
originKey: string;
|
|
84123
84221
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
84124
84222
|
format: "Png";
|
|
84125
|
-
nodeId: string;
|
|
84126
84223
|
fileId: string;
|
|
84127
84224
|
scale: number;
|
|
84225
|
+
nodeId: string;
|
|
84128
84226
|
fileVersionId?: string | undefined;
|
|
84129
84227
|
};
|
|
84130
84228
|
size?: {
|
|
@@ -86561,18 +86659,18 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86561
86659
|
originKey: string;
|
|
86562
86660
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86563
86661
|
format: "Png";
|
|
86564
|
-
nodeId: string;
|
|
86565
86662
|
fileId: string;
|
|
86566
86663
|
scale: number;
|
|
86664
|
+
nodeId: string;
|
|
86567
86665
|
fileVersionId?: string | undefined;
|
|
86568
86666
|
}, {
|
|
86569
86667
|
type: "FigmaRender";
|
|
86570
86668
|
originKey: string;
|
|
86571
86669
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86572
86670
|
format: "Png";
|
|
86573
|
-
nodeId: string;
|
|
86574
86671
|
fileId: string;
|
|
86575
86672
|
scale: number;
|
|
86673
|
+
nodeId: string;
|
|
86576
86674
|
fileVersionId?: string | undefined;
|
|
86577
86675
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
86578
86676
|
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
@@ -86589,16 +86687,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86589
86687
|
originKey: string;
|
|
86590
86688
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86591
86689
|
format: "Svg";
|
|
86592
|
-
nodeId: string;
|
|
86593
86690
|
fileId: string;
|
|
86691
|
+
nodeId: string;
|
|
86594
86692
|
fileVersionId?: string | undefined;
|
|
86595
86693
|
}, {
|
|
86596
86694
|
type: "FigmaRender";
|
|
86597
86695
|
originKey: string;
|
|
86598
86696
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86599
86697
|
format: "Svg";
|
|
86600
|
-
nodeId: string;
|
|
86601
86698
|
fileId: string;
|
|
86699
|
+
nodeId: string;
|
|
86602
86700
|
fileVersionId?: string | undefined;
|
|
86603
86701
|
}>]>]>;
|
|
86604
86702
|
parentComponentId: z.ZodOptional<z.ZodString>;
|
|
@@ -86713,16 +86811,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86713
86811
|
originKey: string;
|
|
86714
86812
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86715
86813
|
format: "Svg";
|
|
86716
|
-
nodeId: string;
|
|
86717
86814
|
fileId: string;
|
|
86815
|
+
nodeId: string;
|
|
86718
86816
|
fileVersionId?: string | undefined;
|
|
86719
86817
|
}, {
|
|
86720
86818
|
type: "FigmaRender";
|
|
86721
86819
|
originKey: string;
|
|
86722
86820
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86723
86821
|
format: "Svg";
|
|
86724
|
-
nodeId: string;
|
|
86725
86822
|
fileId: string;
|
|
86823
|
+
nodeId: string;
|
|
86726
86824
|
fileVersionId?: string | undefined;
|
|
86727
86825
|
}>>;
|
|
86728
86826
|
origin: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -86777,17 +86875,17 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86777
86875
|
originKey: string;
|
|
86778
86876
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86779
86877
|
format: "Png";
|
|
86780
|
-
nodeId: string;
|
|
86781
86878
|
fileId: string;
|
|
86782
86879
|
scale: number;
|
|
86880
|
+
nodeId: string;
|
|
86783
86881
|
fileVersionId?: string | undefined;
|
|
86784
86882
|
} | {
|
|
86785
86883
|
type: "FigmaRender";
|
|
86786
86884
|
originKey: string;
|
|
86787
86885
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86788
86886
|
format: "Svg";
|
|
86789
|
-
nodeId: string;
|
|
86790
86887
|
fileId: string;
|
|
86888
|
+
nodeId: string;
|
|
86791
86889
|
fileVersionId?: string | undefined;
|
|
86792
86890
|
};
|
|
86793
86891
|
svg?: {
|
|
@@ -86795,8 +86893,8 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86795
86893
|
originKey: string;
|
|
86796
86894
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86797
86895
|
format: "Svg";
|
|
86798
|
-
nodeId: string;
|
|
86799
86896
|
fileId: string;
|
|
86897
|
+
nodeId: string;
|
|
86800
86898
|
fileVersionId?: string | undefined;
|
|
86801
86899
|
} | undefined;
|
|
86802
86900
|
componentPropertyDefinitions?: Record<string, {
|
|
@@ -86857,17 +86955,17 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86857
86955
|
originKey: string;
|
|
86858
86956
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86859
86957
|
format: "Png";
|
|
86860
|
-
nodeId: string;
|
|
86861
86958
|
fileId: string;
|
|
86862
86959
|
scale: number;
|
|
86960
|
+
nodeId: string;
|
|
86863
86961
|
fileVersionId?: string | undefined;
|
|
86864
86962
|
} | {
|
|
86865
86963
|
type: "FigmaRender";
|
|
86866
86964
|
originKey: string;
|
|
86867
86965
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86868
86966
|
format: "Svg";
|
|
86869
|
-
nodeId: string;
|
|
86870
86967
|
fileId: string;
|
|
86968
|
+
nodeId: string;
|
|
86871
86969
|
fileVersionId?: string | undefined;
|
|
86872
86970
|
};
|
|
86873
86971
|
svg?: {
|
|
@@ -86875,8 +86973,8 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86875
86973
|
originKey: string;
|
|
86876
86974
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86877
86975
|
format: "Svg";
|
|
86878
|
-
nodeId: string;
|
|
86879
86976
|
fileId: string;
|
|
86977
|
+
nodeId: string;
|
|
86880
86978
|
fileVersionId?: string | undefined;
|
|
86881
86979
|
} | undefined;
|
|
86882
86980
|
componentPropertyDefinitions?: Record<string, {
|
|
@@ -93133,8 +93231,8 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93133
93231
|
originKey: string;
|
|
93134
93232
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93135
93233
|
format: "Svg";
|
|
93136
|
-
nodeId: string;
|
|
93137
93234
|
fileId: string;
|
|
93235
|
+
nodeId: string;
|
|
93138
93236
|
fileVersionId?: string | undefined;
|
|
93139
93237
|
};
|
|
93140
93238
|
png: {
|
|
@@ -93142,9 +93240,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93142
93240
|
originKey: string;
|
|
93143
93241
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93144
93242
|
format: "Png";
|
|
93145
|
-
nodeId: string;
|
|
93146
93243
|
fileId: string;
|
|
93147
93244
|
scale: number;
|
|
93245
|
+
nodeId: string;
|
|
93148
93246
|
fileVersionId?: string | undefined;
|
|
93149
93247
|
};
|
|
93150
93248
|
size?: {
|
|
@@ -93162,8 +93260,8 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93162
93260
|
originKey: string;
|
|
93163
93261
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93164
93262
|
format: "Svg";
|
|
93165
|
-
nodeId: string;
|
|
93166
93263
|
fileId: string;
|
|
93264
|
+
nodeId: string;
|
|
93167
93265
|
fileVersionId?: string | undefined;
|
|
93168
93266
|
};
|
|
93169
93267
|
png: {
|
|
@@ -93171,9 +93269,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93171
93269
|
originKey: string;
|
|
93172
93270
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93173
93271
|
format: "Png";
|
|
93174
|
-
nodeId: string;
|
|
93175
93272
|
fileId: string;
|
|
93176
93273
|
scale: number;
|
|
93274
|
+
nodeId: string;
|
|
93177
93275
|
fileVersionId?: string | undefined;
|
|
93178
93276
|
};
|
|
93179
93277
|
size?: {
|
|
@@ -93211,8 +93309,8 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93211
93309
|
originKey: string;
|
|
93212
93310
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93213
93311
|
format: "Svg";
|
|
93214
|
-
nodeId: string;
|
|
93215
93312
|
fileId: string;
|
|
93313
|
+
nodeId: string;
|
|
93216
93314
|
fileVersionId?: string | undefined;
|
|
93217
93315
|
};
|
|
93218
93316
|
png: {
|
|
@@ -93220,9 +93318,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93220
93318
|
originKey: string;
|
|
93221
93319
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93222
93320
|
format: "Png";
|
|
93223
|
-
nodeId: string;
|
|
93224
93321
|
fileId: string;
|
|
93225
93322
|
scale: number;
|
|
93323
|
+
nodeId: string;
|
|
93226
93324
|
fileVersionId?: string | undefined;
|
|
93227
93325
|
};
|
|
93228
93326
|
size?: {
|
|
@@ -93248,8 +93346,8 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93248
93346
|
originKey: string;
|
|
93249
93347
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93250
93348
|
format: "Svg";
|
|
93251
|
-
nodeId: string;
|
|
93252
93349
|
fileId: string;
|
|
93350
|
+
nodeId: string;
|
|
93253
93351
|
fileVersionId?: string | undefined;
|
|
93254
93352
|
};
|
|
93255
93353
|
png: {
|
|
@@ -93257,9 +93355,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93257
93355
|
originKey: string;
|
|
93258
93356
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93259
93357
|
format: "Png";
|
|
93260
|
-
nodeId: string;
|
|
93261
93358
|
fileId: string;
|
|
93262
93359
|
scale: number;
|
|
93360
|
+
nodeId: string;
|
|
93263
93361
|
fileVersionId?: string | undefined;
|
|
93264
93362
|
};
|
|
93265
93363
|
size?: {
|
|
@@ -93277,8 +93375,8 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93277
93375
|
originKey: string;
|
|
93278
93376
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93279
93377
|
format: "Svg";
|
|
93280
|
-
nodeId: string;
|
|
93281
93378
|
fileId: string;
|
|
93379
|
+
nodeId: string;
|
|
93282
93380
|
fileVersionId?: string | undefined;
|
|
93283
93381
|
};
|
|
93284
93382
|
png: {
|
|
@@ -93286,9 +93384,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93286
93384
|
originKey: string;
|
|
93287
93385
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93288
93386
|
format: "Png";
|
|
93289
|
-
nodeId: string;
|
|
93290
93387
|
fileId: string;
|
|
93291
93388
|
scale: number;
|
|
93389
|
+
nodeId: string;
|
|
93292
93390
|
fileVersionId?: string | undefined;
|
|
93293
93391
|
};
|
|
93294
93392
|
size?: {
|
|
@@ -93327,8 +93425,8 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93327
93425
|
originKey: string;
|
|
93328
93426
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93329
93427
|
format: "Svg";
|
|
93330
|
-
nodeId: string;
|
|
93331
93428
|
fileId: string;
|
|
93429
|
+
nodeId: string;
|
|
93332
93430
|
fileVersionId?: string | undefined;
|
|
93333
93431
|
};
|
|
93334
93432
|
png: {
|
|
@@ -93336,9 +93434,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93336
93434
|
originKey: string;
|
|
93337
93435
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93338
93436
|
format: "Png";
|
|
93339
|
-
nodeId: string;
|
|
93340
93437
|
fileId: string;
|
|
93341
93438
|
scale: number;
|
|
93439
|
+
nodeId: string;
|
|
93342
93440
|
fileVersionId?: string | undefined;
|
|
93343
93441
|
};
|
|
93344
93442
|
size?: {
|
|
@@ -93377,8 +93475,8 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93377
93475
|
originKey: string;
|
|
93378
93476
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93379
93477
|
format: "Svg";
|
|
93380
|
-
nodeId: string;
|
|
93381
93478
|
fileId: string;
|
|
93479
|
+
nodeId: string;
|
|
93382
93480
|
fileVersionId?: string | undefined;
|
|
93383
93481
|
};
|
|
93384
93482
|
png: {
|
|
@@ -93386,9 +93484,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93386
93484
|
originKey: string;
|
|
93387
93485
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93388
93486
|
format: "Png";
|
|
93389
|
-
nodeId: string;
|
|
93390
93487
|
fileId: string;
|
|
93391
93488
|
scale: number;
|
|
93489
|
+
nodeId: string;
|
|
93392
93490
|
fileVersionId?: string | undefined;
|
|
93393
93491
|
};
|
|
93394
93492
|
size?: {
|
|
@@ -93406,8 +93504,8 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93406
93504
|
originKey: string;
|
|
93407
93505
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93408
93506
|
format: "Svg";
|
|
93409
|
-
nodeId: string;
|
|
93410
93507
|
fileId: string;
|
|
93508
|
+
nodeId: string;
|
|
93411
93509
|
fileVersionId?: string | undefined;
|
|
93412
93510
|
};
|
|
93413
93511
|
png: {
|
|
@@ -93415,9 +93513,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93415
93513
|
originKey: string;
|
|
93416
93514
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93417
93515
|
format: "Png";
|
|
93418
|
-
nodeId: string;
|
|
93419
93516
|
fileId: string;
|
|
93420
93517
|
scale: number;
|
|
93518
|
+
nodeId: string;
|
|
93421
93519
|
fileVersionId?: string | undefined;
|
|
93422
93520
|
};
|
|
93423
93521
|
size?: {
|
|
@@ -93885,17 +93983,17 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93885
93983
|
originKey: string;
|
|
93886
93984
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93887
93985
|
format: "Png";
|
|
93888
|
-
nodeId: string;
|
|
93889
93986
|
fileId: string;
|
|
93890
93987
|
scale: number;
|
|
93988
|
+
nodeId: string;
|
|
93891
93989
|
fileVersionId?: string | undefined;
|
|
93892
93990
|
} | {
|
|
93893
93991
|
type: "FigmaRender";
|
|
93894
93992
|
originKey: string;
|
|
93895
93993
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93896
93994
|
format: "Svg";
|
|
93897
|
-
nodeId: string;
|
|
93898
93995
|
fileId: string;
|
|
93996
|
+
nodeId: string;
|
|
93899
93997
|
fileVersionId?: string | undefined;
|
|
93900
93998
|
};
|
|
93901
93999
|
svg?: {
|
|
@@ -93903,8 +94001,8 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93903
94001
|
originKey: string;
|
|
93904
94002
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
93905
94003
|
format: "Svg";
|
|
93906
|
-
nodeId: string;
|
|
93907
94004
|
fileId: string;
|
|
94005
|
+
nodeId: string;
|
|
93908
94006
|
fileVersionId?: string | undefined;
|
|
93909
94007
|
} | undefined;
|
|
93910
94008
|
componentPropertyDefinitions?: Record<string, {
|
|
@@ -94720,8 +94818,8 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
94720
94818
|
originKey: string;
|
|
94721
94819
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
94722
94820
|
format: "Svg";
|
|
94723
|
-
nodeId: string;
|
|
94724
94821
|
fileId: string;
|
|
94822
|
+
nodeId: string;
|
|
94725
94823
|
fileVersionId?: string | undefined;
|
|
94726
94824
|
};
|
|
94727
94825
|
png: {
|
|
@@ -94729,9 +94827,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
94729
94827
|
originKey: string;
|
|
94730
94828
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
94731
94829
|
format: "Png";
|
|
94732
|
-
nodeId: string;
|
|
94733
94830
|
fileId: string;
|
|
94734
94831
|
scale: number;
|
|
94832
|
+
nodeId: string;
|
|
94735
94833
|
fileVersionId?: string | undefined;
|
|
94736
94834
|
};
|
|
94737
94835
|
size?: {
|
|
@@ -94785,8 +94883,8 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
94785
94883
|
originKey: string;
|
|
94786
94884
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
94787
94885
|
format: "Svg";
|
|
94788
|
-
nodeId: string;
|
|
94789
94886
|
fileId: string;
|
|
94887
|
+
nodeId: string;
|
|
94790
94888
|
fileVersionId?: string | undefined;
|
|
94791
94889
|
};
|
|
94792
94890
|
png: {
|
|
@@ -94794,9 +94892,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
94794
94892
|
originKey: string;
|
|
94795
94893
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
94796
94894
|
format: "Png";
|
|
94797
|
-
nodeId: string;
|
|
94798
94895
|
fileId: string;
|
|
94799
94896
|
scale: number;
|
|
94897
|
+
nodeId: string;
|
|
94800
94898
|
fileVersionId?: string | undefined;
|
|
94801
94899
|
};
|
|
94802
94900
|
size?: {
|
|
@@ -94814,8 +94912,8 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
94814
94912
|
originKey: string;
|
|
94815
94913
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
94816
94914
|
format: "Svg";
|
|
94817
|
-
nodeId: string;
|
|
94818
94915
|
fileId: string;
|
|
94916
|
+
nodeId: string;
|
|
94819
94917
|
fileVersionId?: string | undefined;
|
|
94820
94918
|
};
|
|
94821
94919
|
png: {
|
|
@@ -94823,9 +94921,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
94823
94921
|
originKey: string;
|
|
94824
94922
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
94825
94923
|
format: "Png";
|
|
94826
|
-
nodeId: string;
|
|
94827
94924
|
fileId: string;
|
|
94828
94925
|
scale: number;
|
|
94926
|
+
nodeId: string;
|
|
94829
94927
|
fileVersionId?: string | undefined;
|
|
94830
94928
|
};
|
|
94831
94929
|
size?: {
|
|
@@ -95264,17 +95362,17 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
95264
95362
|
originKey: string;
|
|
95265
95363
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
95266
95364
|
format: "Png";
|
|
95267
|
-
nodeId: string;
|
|
95268
95365
|
fileId: string;
|
|
95269
95366
|
scale: number;
|
|
95367
|
+
nodeId: string;
|
|
95270
95368
|
fileVersionId?: string | undefined;
|
|
95271
95369
|
} | {
|
|
95272
95370
|
type: "FigmaRender";
|
|
95273
95371
|
originKey: string;
|
|
95274
95372
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
95275
95373
|
format: "Svg";
|
|
95276
|
-
nodeId: string;
|
|
95277
95374
|
fileId: string;
|
|
95375
|
+
nodeId: string;
|
|
95278
95376
|
fileVersionId?: string | undefined;
|
|
95279
95377
|
};
|
|
95280
95378
|
svg?: {
|
|
@@ -95282,8 +95380,8 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
95282
95380
|
originKey: string;
|
|
95283
95381
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
95284
95382
|
format: "Svg";
|
|
95285
|
-
nodeId: string;
|
|
95286
95383
|
fileId: string;
|
|
95384
|
+
nodeId: string;
|
|
95287
95385
|
fileVersionId?: string | undefined;
|
|
95288
95386
|
} | undefined;
|
|
95289
95387
|
componentPropertyDefinitions?: Record<string, {
|
|
@@ -98473,18 +98571,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
98473
98571
|
originKey: string;
|
|
98474
98572
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98475
98573
|
format: "Png";
|
|
98476
|
-
nodeId: string;
|
|
98477
98574
|
fileId: string;
|
|
98478
98575
|
scale: number;
|
|
98576
|
+
nodeId: string;
|
|
98479
98577
|
fileVersionId?: string | undefined;
|
|
98480
98578
|
}, {
|
|
98481
98579
|
type: "FigmaRender";
|
|
98482
98580
|
originKey: string;
|
|
98483
98581
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98484
98582
|
format: "Png";
|
|
98485
|
-
nodeId: string;
|
|
98486
98583
|
fileId: string;
|
|
98487
98584
|
scale: number;
|
|
98585
|
+
nodeId: string;
|
|
98488
98586
|
fileVersionId?: string | undefined;
|
|
98489
98587
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
98490
98588
|
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
@@ -98501,16 +98599,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
98501
98599
|
originKey: string;
|
|
98502
98600
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98503
98601
|
format: "Svg";
|
|
98504
|
-
nodeId: string;
|
|
98505
98602
|
fileId: string;
|
|
98603
|
+
nodeId: string;
|
|
98506
98604
|
fileVersionId?: string | undefined;
|
|
98507
98605
|
}, {
|
|
98508
98606
|
type: "FigmaRender";
|
|
98509
98607
|
originKey: string;
|
|
98510
98608
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98511
98609
|
format: "Svg";
|
|
98512
|
-
nodeId: string;
|
|
98513
98610
|
fileId: string;
|
|
98611
|
+
nodeId: string;
|
|
98514
98612
|
fileVersionId?: string | undefined;
|
|
98515
98613
|
}>]>]>;
|
|
98516
98614
|
parentComponentId: z.ZodOptional<z.ZodString>;
|
|
@@ -98640,17 +98738,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
98640
98738
|
originKey: string;
|
|
98641
98739
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98642
98740
|
format: "Png";
|
|
98643
|
-
nodeId: string;
|
|
98644
98741
|
fileId: string;
|
|
98645
98742
|
scale: number;
|
|
98743
|
+
nodeId: string;
|
|
98646
98744
|
fileVersionId?: string | undefined;
|
|
98647
98745
|
} | {
|
|
98648
98746
|
type: "FigmaRender";
|
|
98649
98747
|
originKey: string;
|
|
98650
98748
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98651
98749
|
format: "Svg";
|
|
98652
|
-
nodeId: string;
|
|
98653
98750
|
fileId: string;
|
|
98751
|
+
nodeId: string;
|
|
98654
98752
|
fileVersionId?: string | undefined;
|
|
98655
98753
|
};
|
|
98656
98754
|
originId: string;
|
|
@@ -98706,17 +98804,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
98706
98804
|
originKey: string;
|
|
98707
98805
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98708
98806
|
format: "Png";
|
|
98709
|
-
nodeId: string;
|
|
98710
98807
|
fileId: string;
|
|
98711
98808
|
scale: number;
|
|
98809
|
+
nodeId: string;
|
|
98712
98810
|
fileVersionId?: string | undefined;
|
|
98713
98811
|
} | {
|
|
98714
98812
|
type: "FigmaRender";
|
|
98715
98813
|
originKey: string;
|
|
98716
98814
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98717
98815
|
format: "Svg";
|
|
98718
|
-
nodeId: string;
|
|
98719
98816
|
fileId: string;
|
|
98817
|
+
nodeId: string;
|
|
98720
98818
|
fileVersionId?: string | undefined;
|
|
98721
98819
|
};
|
|
98722
98820
|
originId: string;
|
|
@@ -98821,18 +98919,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
98821
98919
|
originKey: string;
|
|
98822
98920
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98823
98921
|
format: "Png";
|
|
98824
|
-
nodeId: string;
|
|
98825
98922
|
fileId: string;
|
|
98826
98923
|
scale: number;
|
|
98924
|
+
nodeId: string;
|
|
98827
98925
|
fileVersionId?: string | undefined;
|
|
98828
98926
|
}, {
|
|
98829
98927
|
type: "FigmaRender";
|
|
98830
98928
|
originKey: string;
|
|
98831
98929
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98832
98930
|
format: "Png";
|
|
98833
|
-
nodeId: string;
|
|
98834
98931
|
fileId: string;
|
|
98835
98932
|
scale: number;
|
|
98933
|
+
nodeId: string;
|
|
98836
98934
|
fileVersionId?: string | undefined;
|
|
98837
98935
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
98838
98936
|
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
@@ -98849,16 +98947,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
98849
98947
|
originKey: string;
|
|
98850
98948
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98851
98949
|
format: "Svg";
|
|
98852
|
-
nodeId: string;
|
|
98853
98950
|
fileId: string;
|
|
98951
|
+
nodeId: string;
|
|
98854
98952
|
fileVersionId?: string | undefined;
|
|
98855
98953
|
}, {
|
|
98856
98954
|
type: "FigmaRender";
|
|
98857
98955
|
originKey: string;
|
|
98858
98956
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98859
98957
|
format: "Svg";
|
|
98860
|
-
nodeId: string;
|
|
98861
98958
|
fileId: string;
|
|
98959
|
+
nodeId: string;
|
|
98862
98960
|
fileVersionId?: string | undefined;
|
|
98863
98961
|
}>]>]>;
|
|
98864
98962
|
parentComponentId: z.ZodOptional<z.ZodString>;
|
|
@@ -98972,16 +99070,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
98972
99070
|
originKey: string;
|
|
98973
99071
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98974
99072
|
format: "Svg";
|
|
98975
|
-
nodeId: string;
|
|
98976
99073
|
fileId: string;
|
|
99074
|
+
nodeId: string;
|
|
98977
99075
|
fileVersionId?: string | undefined;
|
|
98978
99076
|
}, {
|
|
98979
99077
|
type: "FigmaRender";
|
|
98980
99078
|
originKey: string;
|
|
98981
99079
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98982
99080
|
format: "Svg";
|
|
98983
|
-
nodeId: string;
|
|
98984
99081
|
fileId: string;
|
|
99082
|
+
nodeId: string;
|
|
98985
99083
|
fileVersionId?: string | undefined;
|
|
98986
99084
|
}>;
|
|
98987
99085
|
originMetadata: z.ZodObject<{
|
|
@@ -99004,8 +99102,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
99004
99102
|
originKey: string;
|
|
99005
99103
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
99006
99104
|
format: "Svg";
|
|
99007
|
-
nodeId: string;
|
|
99008
99105
|
fileId: string;
|
|
99106
|
+
nodeId: string;
|
|
99009
99107
|
fileVersionId?: string | undefined;
|
|
99010
99108
|
};
|
|
99011
99109
|
renderNodeId: string;
|
|
@@ -99024,17 +99122,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
99024
99122
|
originKey: string;
|
|
99025
99123
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
99026
99124
|
format: "Png";
|
|
99027
|
-
nodeId: string;
|
|
99028
99125
|
fileId: string;
|
|
99029
99126
|
scale: number;
|
|
99127
|
+
nodeId: string;
|
|
99030
99128
|
fileVersionId?: string | undefined;
|
|
99031
99129
|
} | {
|
|
99032
99130
|
type: "FigmaRender";
|
|
99033
99131
|
originKey: string;
|
|
99034
99132
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
99035
99133
|
format: "Svg";
|
|
99036
|
-
nodeId: string;
|
|
99037
99134
|
fileId: string;
|
|
99135
|
+
nodeId: string;
|
|
99038
99136
|
fileVersionId?: string | undefined;
|
|
99039
99137
|
};
|
|
99040
99138
|
originId: string;
|
|
@@ -99079,8 +99177,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
99079
99177
|
originKey: string;
|
|
99080
99178
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
99081
99179
|
format: "Svg";
|
|
99082
|
-
nodeId: string;
|
|
99083
99180
|
fileId: string;
|
|
99181
|
+
nodeId: string;
|
|
99084
99182
|
fileVersionId?: string | undefined;
|
|
99085
99183
|
};
|
|
99086
99184
|
renderNodeId: string;
|
|
@@ -99099,17 +99197,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
99099
99197
|
originKey: string;
|
|
99100
99198
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
99101
99199
|
format: "Png";
|
|
99102
|
-
nodeId: string;
|
|
99103
99200
|
fileId: string;
|
|
99104
99201
|
scale: number;
|
|
99202
|
+
nodeId: string;
|
|
99105
99203
|
fileVersionId?: string | undefined;
|
|
99106
99204
|
} | {
|
|
99107
99205
|
type: "FigmaRender";
|
|
99108
99206
|
originKey: string;
|
|
99109
99207
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
99110
99208
|
format: "Svg";
|
|
99111
|
-
nodeId: string;
|
|
99112
99209
|
fileId: string;
|
|
99210
|
+
nodeId: string;
|
|
99113
99211
|
fileVersionId?: string | undefined;
|
|
99114
99212
|
};
|
|
99115
99213
|
originId: string;
|
|
@@ -105314,8 +105412,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105314
105412
|
originKey: string;
|
|
105315
105413
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105316
105414
|
format: "Svg";
|
|
105317
|
-
nodeId: string;
|
|
105318
105415
|
fileId: string;
|
|
105416
|
+
nodeId: string;
|
|
105319
105417
|
fileVersionId?: string | undefined;
|
|
105320
105418
|
};
|
|
105321
105419
|
png: {
|
|
@@ -105323,9 +105421,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105323
105421
|
originKey: string;
|
|
105324
105422
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105325
105423
|
format: "Png";
|
|
105326
|
-
nodeId: string;
|
|
105327
105424
|
fileId: string;
|
|
105328
105425
|
scale: number;
|
|
105426
|
+
nodeId: string;
|
|
105329
105427
|
fileVersionId?: string | undefined;
|
|
105330
105428
|
};
|
|
105331
105429
|
size?: {
|
|
@@ -105343,8 +105441,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105343
105441
|
originKey: string;
|
|
105344
105442
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105345
105443
|
format: "Svg";
|
|
105346
|
-
nodeId: string;
|
|
105347
105444
|
fileId: string;
|
|
105445
|
+
nodeId: string;
|
|
105348
105446
|
fileVersionId?: string | undefined;
|
|
105349
105447
|
};
|
|
105350
105448
|
png: {
|
|
@@ -105352,9 +105450,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105352
105450
|
originKey: string;
|
|
105353
105451
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105354
105452
|
format: "Png";
|
|
105355
|
-
nodeId: string;
|
|
105356
105453
|
fileId: string;
|
|
105357
105454
|
scale: number;
|
|
105455
|
+
nodeId: string;
|
|
105358
105456
|
fileVersionId?: string | undefined;
|
|
105359
105457
|
};
|
|
105360
105458
|
size?: {
|
|
@@ -105392,8 +105490,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105392
105490
|
originKey: string;
|
|
105393
105491
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105394
105492
|
format: "Svg";
|
|
105395
|
-
nodeId: string;
|
|
105396
105493
|
fileId: string;
|
|
105494
|
+
nodeId: string;
|
|
105397
105495
|
fileVersionId?: string | undefined;
|
|
105398
105496
|
};
|
|
105399
105497
|
png: {
|
|
@@ -105401,9 +105499,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105401
105499
|
originKey: string;
|
|
105402
105500
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105403
105501
|
format: "Png";
|
|
105404
|
-
nodeId: string;
|
|
105405
105502
|
fileId: string;
|
|
105406
105503
|
scale: number;
|
|
105504
|
+
nodeId: string;
|
|
105407
105505
|
fileVersionId?: string | undefined;
|
|
105408
105506
|
};
|
|
105409
105507
|
size?: {
|
|
@@ -105429,8 +105527,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105429
105527
|
originKey: string;
|
|
105430
105528
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105431
105529
|
format: "Svg";
|
|
105432
|
-
nodeId: string;
|
|
105433
105530
|
fileId: string;
|
|
105531
|
+
nodeId: string;
|
|
105434
105532
|
fileVersionId?: string | undefined;
|
|
105435
105533
|
};
|
|
105436
105534
|
png: {
|
|
@@ -105438,9 +105536,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105438
105536
|
originKey: string;
|
|
105439
105537
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105440
105538
|
format: "Png";
|
|
105441
|
-
nodeId: string;
|
|
105442
105539
|
fileId: string;
|
|
105443
105540
|
scale: number;
|
|
105541
|
+
nodeId: string;
|
|
105444
105542
|
fileVersionId?: string | undefined;
|
|
105445
105543
|
};
|
|
105446
105544
|
size?: {
|
|
@@ -105458,8 +105556,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105458
105556
|
originKey: string;
|
|
105459
105557
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105460
105558
|
format: "Svg";
|
|
105461
|
-
nodeId: string;
|
|
105462
105559
|
fileId: string;
|
|
105560
|
+
nodeId: string;
|
|
105463
105561
|
fileVersionId?: string | undefined;
|
|
105464
105562
|
};
|
|
105465
105563
|
png: {
|
|
@@ -105467,9 +105565,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105467
105565
|
originKey: string;
|
|
105468
105566
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105469
105567
|
format: "Png";
|
|
105470
|
-
nodeId: string;
|
|
105471
105568
|
fileId: string;
|
|
105472
105569
|
scale: number;
|
|
105570
|
+
nodeId: string;
|
|
105473
105571
|
fileVersionId?: string | undefined;
|
|
105474
105572
|
};
|
|
105475
105573
|
size?: {
|
|
@@ -105499,8 +105597,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105499
105597
|
originKey: string;
|
|
105500
105598
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105501
105599
|
format: "Svg";
|
|
105502
|
-
nodeId: string;
|
|
105503
105600
|
fileId: string;
|
|
105601
|
+
nodeId: string;
|
|
105504
105602
|
fileVersionId?: string | undefined;
|
|
105505
105603
|
};
|
|
105506
105604
|
png: {
|
|
@@ -105508,9 +105606,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105508
105606
|
originKey: string;
|
|
105509
105607
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105510
105608
|
format: "Png";
|
|
105511
|
-
nodeId: string;
|
|
105512
105609
|
fileId: string;
|
|
105513
105610
|
scale: number;
|
|
105611
|
+
nodeId: string;
|
|
105514
105612
|
fileVersionId?: string | undefined;
|
|
105515
105613
|
};
|
|
105516
105614
|
size?: {
|
|
@@ -105546,8 +105644,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105546
105644
|
originKey: string;
|
|
105547
105645
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105548
105646
|
format: "Svg";
|
|
105549
|
-
nodeId: string;
|
|
105550
105647
|
fileId: string;
|
|
105648
|
+
nodeId: string;
|
|
105551
105649
|
fileVersionId?: string | undefined;
|
|
105552
105650
|
};
|
|
105553
105651
|
png: {
|
|
@@ -105555,9 +105653,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105555
105653
|
originKey: string;
|
|
105556
105654
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105557
105655
|
format: "Png";
|
|
105558
|
-
nodeId: string;
|
|
105559
105656
|
fileId: string;
|
|
105560
105657
|
scale: number;
|
|
105658
|
+
nodeId: string;
|
|
105561
105659
|
fileVersionId?: string | undefined;
|
|
105562
105660
|
};
|
|
105563
105661
|
size?: {
|
|
@@ -105575,8 +105673,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105575
105673
|
originKey: string;
|
|
105576
105674
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105577
105675
|
format: "Svg";
|
|
105578
|
-
nodeId: string;
|
|
105579
105676
|
fileId: string;
|
|
105677
|
+
nodeId: string;
|
|
105580
105678
|
fileVersionId?: string | undefined;
|
|
105581
105679
|
};
|
|
105582
105680
|
png: {
|
|
@@ -105584,9 +105682,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105584
105682
|
originKey: string;
|
|
105585
105683
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
105586
105684
|
format: "Png";
|
|
105587
|
-
nodeId: string;
|
|
105588
105685
|
fileId: string;
|
|
105589
105686
|
scale: number;
|
|
105687
|
+
nodeId: string;
|
|
105590
105688
|
fileVersionId?: string | undefined;
|
|
105591
105689
|
};
|
|
105592
105690
|
size?: {
|
|
@@ -106009,8 +106107,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
106009
106107
|
originKey: string;
|
|
106010
106108
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106011
106109
|
format: "Svg";
|
|
106012
|
-
nodeId: string;
|
|
106013
106110
|
fileId: string;
|
|
106111
|
+
nodeId: string;
|
|
106014
106112
|
fileVersionId?: string | undefined;
|
|
106015
106113
|
};
|
|
106016
106114
|
renderNodeId: string;
|
|
@@ -106029,17 +106127,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
106029
106127
|
originKey: string;
|
|
106030
106128
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106031
106129
|
format: "Png";
|
|
106032
|
-
nodeId: string;
|
|
106033
106130
|
fileId: string;
|
|
106034
106131
|
scale: number;
|
|
106132
|
+
nodeId: string;
|
|
106035
106133
|
fileVersionId?: string | undefined;
|
|
106036
106134
|
} | {
|
|
106037
106135
|
type: "FigmaRender";
|
|
106038
106136
|
originKey: string;
|
|
106039
106137
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106040
106138
|
format: "Svg";
|
|
106041
|
-
nodeId: string;
|
|
106042
106139
|
fileId: string;
|
|
106140
|
+
nodeId: string;
|
|
106043
106141
|
fileVersionId?: string | undefined;
|
|
106044
106142
|
};
|
|
106045
106143
|
originId: string;
|
|
@@ -106096,17 +106194,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
106096
106194
|
originKey: string;
|
|
106097
106195
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106098
106196
|
format: "Png";
|
|
106099
|
-
nodeId: string;
|
|
106100
106197
|
fileId: string;
|
|
106101
106198
|
scale: number;
|
|
106199
|
+
nodeId: string;
|
|
106102
106200
|
fileVersionId?: string | undefined;
|
|
106103
106201
|
} | {
|
|
106104
106202
|
type: "FigmaRender";
|
|
106105
106203
|
originKey: string;
|
|
106106
106204
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106107
106205
|
format: "Svg";
|
|
106108
|
-
nodeId: string;
|
|
106109
106206
|
fileId: string;
|
|
106207
|
+
nodeId: string;
|
|
106110
106208
|
fileVersionId?: string | undefined;
|
|
106111
106209
|
};
|
|
106112
106210
|
originId: string;
|
|
@@ -106913,8 +107011,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
106913
107011
|
originKey: string;
|
|
106914
107012
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106915
107013
|
format: "Svg";
|
|
106916
|
-
nodeId: string;
|
|
106917
107014
|
fileId: string;
|
|
107015
|
+
nodeId: string;
|
|
106918
107016
|
fileVersionId?: string | undefined;
|
|
106919
107017
|
};
|
|
106920
107018
|
png: {
|
|
@@ -106922,9 +107020,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
106922
107020
|
originKey: string;
|
|
106923
107021
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
106924
107022
|
format: "Png";
|
|
106925
|
-
nodeId: string;
|
|
106926
107023
|
fileId: string;
|
|
106927
107024
|
scale: number;
|
|
107025
|
+
nodeId: string;
|
|
106928
107026
|
fileVersionId?: string | undefined;
|
|
106929
107027
|
};
|
|
106930
107028
|
size?: {
|
|
@@ -107342,8 +107440,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
107342
107440
|
originKey: string;
|
|
107343
107441
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
107344
107442
|
format: "Svg";
|
|
107345
|
-
nodeId: string;
|
|
107346
107443
|
fileId: string;
|
|
107444
|
+
nodeId: string;
|
|
107347
107445
|
fileVersionId?: string | undefined;
|
|
107348
107446
|
};
|
|
107349
107447
|
renderNodeId: string;
|
|
@@ -107362,17 +107460,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
107362
107460
|
originKey: string;
|
|
107363
107461
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
107364
107462
|
format: "Png";
|
|
107365
|
-
nodeId: string;
|
|
107366
107463
|
fileId: string;
|
|
107367
107464
|
scale: number;
|
|
107465
|
+
nodeId: string;
|
|
107368
107466
|
fileVersionId?: string | undefined;
|
|
107369
107467
|
} | {
|
|
107370
107468
|
type: "FigmaRender";
|
|
107371
107469
|
originKey: string;
|
|
107372
107470
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
107373
107471
|
format: "Svg";
|
|
107374
|
-
nodeId: string;
|
|
107375
107472
|
fileId: string;
|
|
107473
|
+
nodeId: string;
|
|
107376
107474
|
fileVersionId?: string | undefined;
|
|
107377
107475
|
};
|
|
107378
107476
|
originId: string;
|
|
@@ -107429,17 +107527,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
107429
107527
|
originKey: string;
|
|
107430
107528
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
107431
107529
|
format: "Png";
|
|
107432
|
-
nodeId: string;
|
|
107433
107530
|
fileId: string;
|
|
107434
107531
|
scale: number;
|
|
107532
|
+
nodeId: string;
|
|
107435
107533
|
fileVersionId?: string | undefined;
|
|
107436
107534
|
} | {
|
|
107437
107535
|
type: "FigmaRender";
|
|
107438
107536
|
originKey: string;
|
|
107439
107537
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
107440
107538
|
format: "Svg";
|
|
107441
|
-
nodeId: string;
|
|
107442
107539
|
fileId: string;
|
|
107540
|
+
nodeId: string;
|
|
107443
107541
|
fileVersionId?: string | undefined;
|
|
107444
107542
|
};
|
|
107445
107543
|
originId: string;
|
|
@@ -108242,8 +108340,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108242
108340
|
originKey: string;
|
|
108243
108341
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108244
108342
|
format: "Svg";
|
|
108245
|
-
nodeId: string;
|
|
108246
108343
|
fileId: string;
|
|
108344
|
+
nodeId: string;
|
|
108247
108345
|
fileVersionId?: string | undefined;
|
|
108248
108346
|
};
|
|
108249
108347
|
png: {
|
|
@@ -108251,9 +108349,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108251
108349
|
originKey: string;
|
|
108252
108350
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108253
108351
|
format: "Png";
|
|
108254
|
-
nodeId: string;
|
|
108255
108352
|
fileId: string;
|
|
108256
108353
|
scale: number;
|
|
108354
|
+
nodeId: string;
|
|
108257
108355
|
fileVersionId?: string | undefined;
|
|
108258
108356
|
};
|
|
108259
108357
|
size?: {
|
|
@@ -108271,8 +108369,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108271
108369
|
originKey: string;
|
|
108272
108370
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108273
108371
|
format: "Svg";
|
|
108274
|
-
nodeId: string;
|
|
108275
108372
|
fileId: string;
|
|
108373
|
+
nodeId: string;
|
|
108276
108374
|
fileVersionId?: string | undefined;
|
|
108277
108375
|
};
|
|
108278
108376
|
png: {
|
|
@@ -108280,9 +108378,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108280
108378
|
originKey: string;
|
|
108281
108379
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108282
108380
|
format: "Png";
|
|
108283
|
-
nodeId: string;
|
|
108284
108381
|
fileId: string;
|
|
108285
108382
|
scale: number;
|
|
108383
|
+
nodeId: string;
|
|
108286
108384
|
fileVersionId?: string | undefined;
|
|
108287
108385
|
};
|
|
108288
108386
|
size?: {
|
|
@@ -108368,18 +108466,18 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
108368
108466
|
originKey: string;
|
|
108369
108467
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108370
108468
|
format: "Png";
|
|
108371
|
-
nodeId: string;
|
|
108372
108469
|
fileId: string;
|
|
108373
108470
|
scale: number;
|
|
108471
|
+
nodeId: string;
|
|
108374
108472
|
fileVersionId?: string | undefined;
|
|
108375
108473
|
}, {
|
|
108376
108474
|
type: "FigmaRender";
|
|
108377
108475
|
originKey: string;
|
|
108378
108476
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108379
108477
|
format: "Png";
|
|
108380
|
-
nodeId: string;
|
|
108381
108478
|
fileId: string;
|
|
108382
108479
|
scale: number;
|
|
108480
|
+
nodeId: string;
|
|
108383
108481
|
fileVersionId?: string | undefined;
|
|
108384
108482
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
108385
108483
|
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
@@ -108396,16 +108494,16 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
108396
108494
|
originKey: string;
|
|
108397
108495
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108398
108496
|
format: "Svg";
|
|
108399
|
-
nodeId: string;
|
|
108400
108497
|
fileId: string;
|
|
108498
|
+
nodeId: string;
|
|
108401
108499
|
fileVersionId?: string | undefined;
|
|
108402
108500
|
}, {
|
|
108403
108501
|
type: "FigmaRender";
|
|
108404
108502
|
originKey: string;
|
|
108405
108503
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108406
108504
|
format: "Svg";
|
|
108407
|
-
nodeId: string;
|
|
108408
108505
|
fileId: string;
|
|
108506
|
+
nodeId: string;
|
|
108409
108507
|
fileVersionId?: string | undefined;
|
|
108410
108508
|
}>]>]>;
|
|
108411
108509
|
parentComponentId: z.ZodOptional<z.ZodString>;
|
|
@@ -108520,16 +108618,16 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
108520
108618
|
originKey: string;
|
|
108521
108619
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108522
108620
|
format: "Svg";
|
|
108523
|
-
nodeId: string;
|
|
108524
108621
|
fileId: string;
|
|
108622
|
+
nodeId: string;
|
|
108525
108623
|
fileVersionId?: string | undefined;
|
|
108526
108624
|
}, {
|
|
108527
108625
|
type: "FigmaRender";
|
|
108528
108626
|
originKey: string;
|
|
108529
108627
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108530
108628
|
format: "Svg";
|
|
108531
|
-
nodeId: string;
|
|
108532
108629
|
fileId: string;
|
|
108630
|
+
nodeId: string;
|
|
108533
108631
|
fileVersionId?: string | undefined;
|
|
108534
108632
|
}>>;
|
|
108535
108633
|
origin: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -108584,17 +108682,17 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
108584
108682
|
originKey: string;
|
|
108585
108683
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108586
108684
|
format: "Png";
|
|
108587
|
-
nodeId: string;
|
|
108588
108685
|
fileId: string;
|
|
108589
108686
|
scale: number;
|
|
108687
|
+
nodeId: string;
|
|
108590
108688
|
fileVersionId?: string | undefined;
|
|
108591
108689
|
} | {
|
|
108592
108690
|
type: "FigmaRender";
|
|
108593
108691
|
originKey: string;
|
|
108594
108692
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108595
108693
|
format: "Svg";
|
|
108596
|
-
nodeId: string;
|
|
108597
108694
|
fileId: string;
|
|
108695
|
+
nodeId: string;
|
|
108598
108696
|
fileVersionId?: string | undefined;
|
|
108599
108697
|
};
|
|
108600
108698
|
svg?: {
|
|
@@ -108602,8 +108700,8 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
108602
108700
|
originKey: string;
|
|
108603
108701
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108604
108702
|
format: "Svg";
|
|
108605
|
-
nodeId: string;
|
|
108606
108703
|
fileId: string;
|
|
108704
|
+
nodeId: string;
|
|
108607
108705
|
fileVersionId?: string | undefined;
|
|
108608
108706
|
} | undefined;
|
|
108609
108707
|
componentPropertyDefinitions?: Record<string, {
|
|
@@ -108664,17 +108762,17 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
108664
108762
|
originKey: string;
|
|
108665
108763
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108666
108764
|
format: "Png";
|
|
108667
|
-
nodeId: string;
|
|
108668
108765
|
fileId: string;
|
|
108669
108766
|
scale: number;
|
|
108767
|
+
nodeId: string;
|
|
108670
108768
|
fileVersionId?: string | undefined;
|
|
108671
108769
|
} | {
|
|
108672
108770
|
type: "FigmaRender";
|
|
108673
108771
|
originKey: string;
|
|
108674
108772
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108675
108773
|
format: "Svg";
|
|
108676
|
-
nodeId: string;
|
|
108677
108774
|
fileId: string;
|
|
108775
|
+
nodeId: string;
|
|
108678
108776
|
fileVersionId?: string | undefined;
|
|
108679
108777
|
};
|
|
108680
108778
|
svg?: {
|
|
@@ -108682,8 +108780,8 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
108682
108780
|
originKey: string;
|
|
108683
108781
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108684
108782
|
format: "Svg";
|
|
108685
|
-
nodeId: string;
|
|
108686
108783
|
fileId: string;
|
|
108784
|
+
nodeId: string;
|
|
108687
108785
|
fileVersionId?: string | undefined;
|
|
108688
108786
|
} | undefined;
|
|
108689
108787
|
componentPropertyDefinitions?: Record<string, {
|
|
@@ -108783,18 +108881,18 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
108783
108881
|
originKey: string;
|
|
108784
108882
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108785
108883
|
format: "Png";
|
|
108786
|
-
nodeId: string;
|
|
108787
108884
|
fileId: string;
|
|
108788
108885
|
scale: number;
|
|
108886
|
+
nodeId: string;
|
|
108789
108887
|
fileVersionId?: string | undefined;
|
|
108790
108888
|
}, {
|
|
108791
108889
|
type: "FigmaRender";
|
|
108792
108890
|
originKey: string;
|
|
108793
108891
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108794
108892
|
format: "Png";
|
|
108795
|
-
nodeId: string;
|
|
108796
108893
|
fileId: string;
|
|
108797
108894
|
scale: number;
|
|
108895
|
+
nodeId: string;
|
|
108798
108896
|
fileVersionId?: string | undefined;
|
|
108799
108897
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
108800
108898
|
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
@@ -108811,16 +108909,16 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
108811
108909
|
originKey: string;
|
|
108812
108910
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108813
108911
|
format: "Svg";
|
|
108814
|
-
nodeId: string;
|
|
108815
108912
|
fileId: string;
|
|
108913
|
+
nodeId: string;
|
|
108816
108914
|
fileVersionId?: string | undefined;
|
|
108817
108915
|
}, {
|
|
108818
108916
|
type: "FigmaRender";
|
|
108819
108917
|
originKey: string;
|
|
108820
108918
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108821
108919
|
format: "Svg";
|
|
108822
|
-
nodeId: string;
|
|
108823
108920
|
fileId: string;
|
|
108921
|
+
nodeId: string;
|
|
108824
108922
|
fileVersionId?: string | undefined;
|
|
108825
108923
|
}>]>]>;
|
|
108826
108924
|
parentComponentId: z.ZodOptional<z.ZodString>;
|
|
@@ -108950,17 +109048,17 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
108950
109048
|
originKey: string;
|
|
108951
109049
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108952
109050
|
format: "Png";
|
|
108953
|
-
nodeId: string;
|
|
108954
109051
|
fileId: string;
|
|
108955
109052
|
scale: number;
|
|
109053
|
+
nodeId: string;
|
|
108956
109054
|
fileVersionId?: string | undefined;
|
|
108957
109055
|
} | {
|
|
108958
109056
|
type: "FigmaRender";
|
|
108959
109057
|
originKey: string;
|
|
108960
109058
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108961
109059
|
format: "Svg";
|
|
108962
|
-
nodeId: string;
|
|
108963
109060
|
fileId: string;
|
|
109061
|
+
nodeId: string;
|
|
108964
109062
|
fileVersionId?: string | undefined;
|
|
108965
109063
|
};
|
|
108966
109064
|
originId: string;
|
|
@@ -109016,17 +109114,17 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
109016
109114
|
originKey: string;
|
|
109017
109115
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109018
109116
|
format: "Png";
|
|
109019
|
-
nodeId: string;
|
|
109020
109117
|
fileId: string;
|
|
109021
109118
|
scale: number;
|
|
109119
|
+
nodeId: string;
|
|
109022
109120
|
fileVersionId?: string | undefined;
|
|
109023
109121
|
} | {
|
|
109024
109122
|
type: "FigmaRender";
|
|
109025
109123
|
originKey: string;
|
|
109026
109124
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109027
109125
|
format: "Svg";
|
|
109028
|
-
nodeId: string;
|
|
109029
109126
|
fileId: string;
|
|
109127
|
+
nodeId: string;
|
|
109030
109128
|
fileVersionId?: string | undefined;
|
|
109031
109129
|
};
|
|
109032
109130
|
originId: string;
|
|
@@ -109132,18 +109230,18 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
109132
109230
|
originKey: string;
|
|
109133
109231
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109134
109232
|
format: "Png";
|
|
109135
|
-
nodeId: string;
|
|
109136
109233
|
fileId: string;
|
|
109137
109234
|
scale: number;
|
|
109235
|
+
nodeId: string;
|
|
109138
109236
|
fileVersionId?: string | undefined;
|
|
109139
109237
|
}, {
|
|
109140
109238
|
type: "FigmaRender";
|
|
109141
109239
|
originKey: string;
|
|
109142
109240
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109143
109241
|
format: "Png";
|
|
109144
|
-
nodeId: string;
|
|
109145
109242
|
fileId: string;
|
|
109146
109243
|
scale: number;
|
|
109244
|
+
nodeId: string;
|
|
109147
109245
|
fileVersionId?: string | undefined;
|
|
109148
109246
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
109149
109247
|
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
@@ -109160,16 +109258,16 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
109160
109258
|
originKey: string;
|
|
109161
109259
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109162
109260
|
format: "Svg";
|
|
109163
|
-
nodeId: string;
|
|
109164
109261
|
fileId: string;
|
|
109262
|
+
nodeId: string;
|
|
109165
109263
|
fileVersionId?: string | undefined;
|
|
109166
109264
|
}, {
|
|
109167
109265
|
type: "FigmaRender";
|
|
109168
109266
|
originKey: string;
|
|
109169
109267
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109170
109268
|
format: "Svg";
|
|
109171
|
-
nodeId: string;
|
|
109172
109269
|
fileId: string;
|
|
109270
|
+
nodeId: string;
|
|
109173
109271
|
fileVersionId?: string | undefined;
|
|
109174
109272
|
}>]>]>;
|
|
109175
109273
|
parentComponentId: z.ZodOptional<z.ZodString>;
|
|
@@ -109283,16 +109381,16 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
109283
109381
|
originKey: string;
|
|
109284
109382
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109285
109383
|
format: "Svg";
|
|
109286
|
-
nodeId: string;
|
|
109287
109384
|
fileId: string;
|
|
109385
|
+
nodeId: string;
|
|
109288
109386
|
fileVersionId?: string | undefined;
|
|
109289
109387
|
}, {
|
|
109290
109388
|
type: "FigmaRender";
|
|
109291
109389
|
originKey: string;
|
|
109292
109390
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109293
109391
|
format: "Svg";
|
|
109294
|
-
nodeId: string;
|
|
109295
109392
|
fileId: string;
|
|
109393
|
+
nodeId: string;
|
|
109296
109394
|
fileVersionId?: string | undefined;
|
|
109297
109395
|
}>;
|
|
109298
109396
|
originMetadata: z.ZodObject<{
|
|
@@ -109315,8 +109413,8 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
109315
109413
|
originKey: string;
|
|
109316
109414
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109317
109415
|
format: "Svg";
|
|
109318
|
-
nodeId: string;
|
|
109319
109416
|
fileId: string;
|
|
109417
|
+
nodeId: string;
|
|
109320
109418
|
fileVersionId?: string | undefined;
|
|
109321
109419
|
};
|
|
109322
109420
|
renderNodeId: string;
|
|
@@ -109335,17 +109433,17 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
109335
109433
|
originKey: string;
|
|
109336
109434
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109337
109435
|
format: "Png";
|
|
109338
|
-
nodeId: string;
|
|
109339
109436
|
fileId: string;
|
|
109340
109437
|
scale: number;
|
|
109438
|
+
nodeId: string;
|
|
109341
109439
|
fileVersionId?: string | undefined;
|
|
109342
109440
|
} | {
|
|
109343
109441
|
type: "FigmaRender";
|
|
109344
109442
|
originKey: string;
|
|
109345
109443
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109346
109444
|
format: "Svg";
|
|
109347
|
-
nodeId: string;
|
|
109348
109445
|
fileId: string;
|
|
109446
|
+
nodeId: string;
|
|
109349
109447
|
fileVersionId?: string | undefined;
|
|
109350
109448
|
};
|
|
109351
109449
|
originId: string;
|
|
@@ -109390,8 +109488,8 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
109390
109488
|
originKey: string;
|
|
109391
109489
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109392
109490
|
format: "Svg";
|
|
109393
|
-
nodeId: string;
|
|
109394
109491
|
fileId: string;
|
|
109492
|
+
nodeId: string;
|
|
109395
109493
|
fileVersionId?: string | undefined;
|
|
109396
109494
|
};
|
|
109397
109495
|
renderNodeId: string;
|
|
@@ -109410,17 +109508,17 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
109410
109508
|
originKey: string;
|
|
109411
109509
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109412
109510
|
format: "Png";
|
|
109413
|
-
nodeId: string;
|
|
109414
109511
|
fileId: string;
|
|
109415
109512
|
scale: number;
|
|
109513
|
+
nodeId: string;
|
|
109416
109514
|
fileVersionId?: string | undefined;
|
|
109417
109515
|
} | {
|
|
109418
109516
|
type: "FigmaRender";
|
|
109419
109517
|
originKey: string;
|
|
109420
109518
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109421
109519
|
format: "Svg";
|
|
109422
|
-
nodeId: string;
|
|
109423
109520
|
fileId: string;
|
|
109521
|
+
nodeId: string;
|
|
109424
109522
|
fileVersionId?: string | undefined;
|
|
109425
109523
|
};
|
|
109426
109524
|
originId: string;
|
|
@@ -109498,15 +109596,15 @@ declare const FigmaRenderBase: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
109498
109596
|
type: "FigmaRender";
|
|
109499
109597
|
originKey: string;
|
|
109500
109598
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109501
|
-
nodeId: string;
|
|
109502
109599
|
fileId: string;
|
|
109600
|
+
nodeId: string;
|
|
109503
109601
|
fileVersionId?: string | undefined;
|
|
109504
109602
|
}, {
|
|
109505
109603
|
type: "FigmaRender";
|
|
109506
109604
|
originKey: string;
|
|
109507
109605
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109508
|
-
nodeId: string;
|
|
109509
109606
|
fileId: string;
|
|
109607
|
+
nodeId: string;
|
|
109510
109608
|
fileVersionId?: string | undefined;
|
|
109511
109609
|
}>;
|
|
109512
109610
|
type FigmaRenderBase = z.infer<typeof FigmaRenderBase>;
|
|
@@ -109526,18 +109624,18 @@ declare const FigmaPngRenderImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
109526
109624
|
originKey: string;
|
|
109527
109625
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109528
109626
|
format: "Png";
|
|
109529
|
-
nodeId: string;
|
|
109530
109627
|
fileId: string;
|
|
109531
109628
|
scale: number;
|
|
109629
|
+
nodeId: string;
|
|
109532
109630
|
fileVersionId?: string | undefined;
|
|
109533
109631
|
}, {
|
|
109534
109632
|
type: "FigmaRender";
|
|
109535
109633
|
originKey: string;
|
|
109536
109634
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109537
109635
|
format: "Png";
|
|
109538
|
-
nodeId: string;
|
|
109539
109636
|
fileId: string;
|
|
109540
109637
|
scale: number;
|
|
109638
|
+
nodeId: string;
|
|
109541
109639
|
fileVersionId?: string | undefined;
|
|
109542
109640
|
}>;
|
|
109543
109641
|
type FigmaPngRenderImportModel = z.infer<typeof FigmaPngRenderImportModel>;
|
|
@@ -109556,16 +109654,16 @@ declare const FigmaSvgRenderImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
109556
109654
|
originKey: string;
|
|
109557
109655
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109558
109656
|
format: "Svg";
|
|
109559
|
-
nodeId: string;
|
|
109560
109657
|
fileId: string;
|
|
109658
|
+
nodeId: string;
|
|
109561
109659
|
fileVersionId?: string | undefined;
|
|
109562
109660
|
}, {
|
|
109563
109661
|
type: "FigmaRender";
|
|
109564
109662
|
originKey: string;
|
|
109565
109663
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109566
109664
|
format: "Svg";
|
|
109567
|
-
nodeId: string;
|
|
109568
109665
|
fileId: string;
|
|
109666
|
+
nodeId: string;
|
|
109569
109667
|
fileVersionId?: string | undefined;
|
|
109570
109668
|
}>;
|
|
109571
109669
|
type FigmaSvgRenderImportModel = z.infer<typeof FigmaSvgRenderImportModel>;
|
|
@@ -109585,18 +109683,18 @@ declare const FigmaRenderImportModel: z.ZodDiscriminatedUnion<"format", [z.ZodOb
|
|
|
109585
109683
|
originKey: string;
|
|
109586
109684
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109587
109685
|
format: "Png";
|
|
109588
|
-
nodeId: string;
|
|
109589
109686
|
fileId: string;
|
|
109590
109687
|
scale: number;
|
|
109688
|
+
nodeId: string;
|
|
109591
109689
|
fileVersionId?: string | undefined;
|
|
109592
109690
|
}, {
|
|
109593
109691
|
type: "FigmaRender";
|
|
109594
109692
|
originKey: string;
|
|
109595
109693
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109596
109694
|
format: "Png";
|
|
109597
|
-
nodeId: string;
|
|
109598
109695
|
fileId: string;
|
|
109599
109696
|
scale: number;
|
|
109697
|
+
nodeId: string;
|
|
109600
109698
|
fileVersionId?: string | undefined;
|
|
109601
109699
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
109602
109700
|
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
@@ -109613,16 +109711,16 @@ declare const FigmaRenderImportModel: z.ZodDiscriminatedUnion<"format", [z.ZodOb
|
|
|
109613
109711
|
originKey: string;
|
|
109614
109712
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109615
109713
|
format: "Svg";
|
|
109616
|
-
nodeId: string;
|
|
109617
109714
|
fileId: string;
|
|
109715
|
+
nodeId: string;
|
|
109618
109716
|
fileVersionId?: string | undefined;
|
|
109619
109717
|
}, {
|
|
109620
109718
|
type: "FigmaRender";
|
|
109621
109719
|
originKey: string;
|
|
109622
109720
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109623
109721
|
format: "Svg";
|
|
109624
|
-
nodeId: string;
|
|
109625
109722
|
fileId: string;
|
|
109723
|
+
nodeId: string;
|
|
109626
109724
|
fileVersionId?: string | undefined;
|
|
109627
109725
|
}>]>;
|
|
109628
109726
|
type FigmaRenderImportModel = z.infer<typeof FigmaRenderImportModel>;
|
|
@@ -109661,18 +109759,18 @@ declare const ImageImportModel: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
109661
109759
|
originKey: string;
|
|
109662
109760
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109663
109761
|
format: "Png";
|
|
109664
|
-
nodeId: string;
|
|
109665
109762
|
fileId: string;
|
|
109666
109763
|
scale: number;
|
|
109764
|
+
nodeId: string;
|
|
109667
109765
|
fileVersionId?: string | undefined;
|
|
109668
109766
|
}, {
|
|
109669
109767
|
type: "FigmaRender";
|
|
109670
109768
|
originKey: string;
|
|
109671
109769
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109672
109770
|
format: "Png";
|
|
109673
|
-
nodeId: string;
|
|
109674
109771
|
fileId: string;
|
|
109675
109772
|
scale: number;
|
|
109773
|
+
nodeId: string;
|
|
109676
109774
|
fileVersionId?: string | undefined;
|
|
109677
109775
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
109678
109776
|
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
@@ -109689,16 +109787,16 @@ declare const ImageImportModel: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape
|
|
|
109689
109787
|
originKey: string;
|
|
109690
109788
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109691
109789
|
format: "Svg";
|
|
109692
|
-
nodeId: string;
|
|
109693
109790
|
fileId: string;
|
|
109791
|
+
nodeId: string;
|
|
109694
109792
|
fileVersionId?: string | undefined;
|
|
109695
109793
|
}, {
|
|
109696
109794
|
type: "FigmaRender";
|
|
109697
109795
|
originKey: string;
|
|
109698
109796
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109699
109797
|
format: "Svg";
|
|
109700
|
-
nodeId: string;
|
|
109701
109798
|
fileId: string;
|
|
109799
|
+
nodeId: string;
|
|
109702
109800
|
fileVersionId?: string | undefined;
|
|
109703
109801
|
}>]>]>;
|
|
109704
109802
|
type ImageImportModel = z.infer<typeof ImageImportModel>;
|
|
@@ -181287,4 +181385,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
181287
181385
|
token: PersonalAccessToken;
|
|
181288
181386
|
};
|
|
181289
181387
|
|
|
181290
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, 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, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, ExporterPropertyDefinitionValue, ExporterPropertyDefinitionValueMap, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaNodeRenderFormat, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, 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, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, 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 UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|
|
181388
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, 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, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, ExporterPropertyDefinitionValue, ExporterPropertyDefinitionValueMap, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, 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, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, 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 UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|