@supernova-studio/model 0.2.2 → 0.3.0
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 +743 -510
- package/dist/index.d.ts +743 -510
- package/dist/index.js +134 -31
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +138 -35
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/documentation-block-v2.ts +170 -42
package/dist/index.d.mts
CHANGED
|
@@ -8437,349 +8437,14 @@ declare const PageBlockAppearanceV2: z.ZodObject<{
|
|
|
8437
8437
|
};
|
|
8438
8438
|
}>;
|
|
8439
8439
|
type PageBlockAppearanceV2 = z.infer<typeof PageBlockAppearanceV2>;
|
|
8440
|
-
declare const
|
|
8440
|
+
declare const PageBlockItemUntypedValue: z.ZodIntersection<z.ZodObject<{
|
|
8441
8441
|
value: z.ZodAny;
|
|
8442
8442
|
}, "strip", z.ZodTypeAny, {
|
|
8443
8443
|
value?: any;
|
|
8444
8444
|
}, {
|
|
8445
8445
|
value?: any;
|
|
8446
8446
|
}>, z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8447
|
-
type
|
|
8448
|
-
declare const PageBlockItemRichTextPropertyValue: z.ZodObject<{
|
|
8449
|
-
value: z.ZodObject<{
|
|
8450
|
-
spans: z.ZodArray<z.ZodObject<{
|
|
8451
|
-
text: z.ZodString;
|
|
8452
|
-
attributes: z.ZodArray<z.ZodObject<{
|
|
8453
|
-
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
8454
|
-
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
8455
|
-
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
8456
|
-
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
8457
|
-
}, "strip", z.ZodTypeAny, {
|
|
8458
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
8459
|
-
link?: string | undefined;
|
|
8460
|
-
documentationItemId?: string | undefined;
|
|
8461
|
-
openInNewWindow?: boolean | undefined;
|
|
8462
|
-
}, {
|
|
8463
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
8464
|
-
link?: string | null | undefined;
|
|
8465
|
-
documentationItemId?: string | null | undefined;
|
|
8466
|
-
openInNewWindow?: boolean | null | undefined;
|
|
8467
|
-
}>, "many">;
|
|
8468
|
-
}, "strip", z.ZodTypeAny, {
|
|
8469
|
-
text: string;
|
|
8470
|
-
attributes: {
|
|
8471
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
8472
|
-
link?: string | undefined;
|
|
8473
|
-
documentationItemId?: string | undefined;
|
|
8474
|
-
openInNewWindow?: boolean | undefined;
|
|
8475
|
-
}[];
|
|
8476
|
-
}, {
|
|
8477
|
-
text: string;
|
|
8478
|
-
attributes: {
|
|
8479
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
8480
|
-
link?: string | null | undefined;
|
|
8481
|
-
documentationItemId?: string | null | undefined;
|
|
8482
|
-
openInNewWindow?: boolean | null | undefined;
|
|
8483
|
-
}[];
|
|
8484
|
-
}>, "many">;
|
|
8485
|
-
}, "strip", z.ZodTypeAny, {
|
|
8486
|
-
spans: {
|
|
8487
|
-
text: string;
|
|
8488
|
-
attributes: {
|
|
8489
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
8490
|
-
link?: string | undefined;
|
|
8491
|
-
documentationItemId?: string | undefined;
|
|
8492
|
-
openInNewWindow?: boolean | undefined;
|
|
8493
|
-
}[];
|
|
8494
|
-
}[];
|
|
8495
|
-
}, {
|
|
8496
|
-
spans: {
|
|
8497
|
-
text: string;
|
|
8498
|
-
attributes: {
|
|
8499
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
8500
|
-
link?: string | null | undefined;
|
|
8501
|
-
documentationItemId?: string | null | undefined;
|
|
8502
|
-
openInNewWindow?: boolean | null | undefined;
|
|
8503
|
-
}[];
|
|
8504
|
-
}[];
|
|
8505
|
-
}>;
|
|
8506
|
-
calloutType: z.ZodOptional<z.ZodEnum<["Info", "Success", "Warning", "Error"]>>;
|
|
8507
|
-
}, "strip", z.ZodTypeAny, {
|
|
8508
|
-
value: {
|
|
8509
|
-
spans: {
|
|
8510
|
-
text: string;
|
|
8511
|
-
attributes: {
|
|
8512
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
8513
|
-
link?: string | undefined;
|
|
8514
|
-
documentationItemId?: string | undefined;
|
|
8515
|
-
openInNewWindow?: boolean | undefined;
|
|
8516
|
-
}[];
|
|
8517
|
-
}[];
|
|
8518
|
-
};
|
|
8519
|
-
calloutType?: "Info" | "Success" | "Warning" | "Error" | undefined;
|
|
8520
|
-
}, {
|
|
8521
|
-
value: {
|
|
8522
|
-
spans: {
|
|
8523
|
-
text: string;
|
|
8524
|
-
attributes: {
|
|
8525
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
8526
|
-
link?: string | null | undefined;
|
|
8527
|
-
documentationItemId?: string | null | undefined;
|
|
8528
|
-
openInNewWindow?: boolean | null | undefined;
|
|
8529
|
-
}[];
|
|
8530
|
-
}[];
|
|
8531
|
-
};
|
|
8532
|
-
calloutType?: "Info" | "Success" | "Warning" | "Error" | undefined;
|
|
8533
|
-
}>;
|
|
8534
|
-
type PageBlockItemRichTextPropertyValue = z.infer<typeof PageBlockItemRichTextPropertyValue>;
|
|
8535
|
-
declare const PageBlockItemMultiRichTextPropertyValue: z.ZodObject<{
|
|
8536
|
-
value: z.ZodArray<z.ZodObject<{
|
|
8537
|
-
spans: z.ZodArray<z.ZodObject<{
|
|
8538
|
-
text: z.ZodString;
|
|
8539
|
-
attributes: z.ZodArray<z.ZodObject<{
|
|
8540
|
-
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
8541
|
-
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
8542
|
-
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
8543
|
-
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
8544
|
-
}, "strip", z.ZodTypeAny, {
|
|
8545
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
8546
|
-
link?: string | undefined;
|
|
8547
|
-
documentationItemId?: string | undefined;
|
|
8548
|
-
openInNewWindow?: boolean | undefined;
|
|
8549
|
-
}, {
|
|
8550
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
8551
|
-
link?: string | null | undefined;
|
|
8552
|
-
documentationItemId?: string | null | undefined;
|
|
8553
|
-
openInNewWindow?: boolean | null | undefined;
|
|
8554
|
-
}>, "many">;
|
|
8555
|
-
}, "strip", z.ZodTypeAny, {
|
|
8556
|
-
text: string;
|
|
8557
|
-
attributes: {
|
|
8558
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
8559
|
-
link?: string | undefined;
|
|
8560
|
-
documentationItemId?: string | undefined;
|
|
8561
|
-
openInNewWindow?: boolean | undefined;
|
|
8562
|
-
}[];
|
|
8563
|
-
}, {
|
|
8564
|
-
text: string;
|
|
8565
|
-
attributes: {
|
|
8566
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
8567
|
-
link?: string | null | undefined;
|
|
8568
|
-
documentationItemId?: string | null | undefined;
|
|
8569
|
-
openInNewWindow?: boolean | null | undefined;
|
|
8570
|
-
}[];
|
|
8571
|
-
}>, "many">;
|
|
8572
|
-
}, "strip", z.ZodTypeAny, {
|
|
8573
|
-
spans: {
|
|
8574
|
-
text: string;
|
|
8575
|
-
attributes: {
|
|
8576
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
8577
|
-
link?: string | undefined;
|
|
8578
|
-
documentationItemId?: string | undefined;
|
|
8579
|
-
openInNewWindow?: boolean | undefined;
|
|
8580
|
-
}[];
|
|
8581
|
-
}[];
|
|
8582
|
-
}, {
|
|
8583
|
-
spans: {
|
|
8584
|
-
text: string;
|
|
8585
|
-
attributes: {
|
|
8586
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
8587
|
-
link?: string | null | undefined;
|
|
8588
|
-
documentationItemId?: string | null | undefined;
|
|
8589
|
-
openInNewWindow?: boolean | null | undefined;
|
|
8590
|
-
}[];
|
|
8591
|
-
}[];
|
|
8592
|
-
}>, "many">;
|
|
8593
|
-
}, "strip", z.ZodTypeAny, {
|
|
8594
|
-
value: {
|
|
8595
|
-
spans: {
|
|
8596
|
-
text: string;
|
|
8597
|
-
attributes: {
|
|
8598
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
8599
|
-
link?: string | undefined;
|
|
8600
|
-
documentationItemId?: string | undefined;
|
|
8601
|
-
openInNewWindow?: boolean | undefined;
|
|
8602
|
-
}[];
|
|
8603
|
-
}[];
|
|
8604
|
-
}[];
|
|
8605
|
-
}, {
|
|
8606
|
-
value: {
|
|
8607
|
-
spans: {
|
|
8608
|
-
text: string;
|
|
8609
|
-
attributes: {
|
|
8610
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
8611
|
-
link?: string | null | undefined;
|
|
8612
|
-
documentationItemId?: string | null | undefined;
|
|
8613
|
-
openInNewWindow?: boolean | null | undefined;
|
|
8614
|
-
}[];
|
|
8615
|
-
}[];
|
|
8616
|
-
}[];
|
|
8617
|
-
}>;
|
|
8618
|
-
type PageBlockItemMultiRichTextPropertyValue = z.infer<typeof PageBlockItemMultiRichTextPropertyValue>;
|
|
8619
|
-
declare const PageBlockItemTextPropertyValue: z.ZodObject<{
|
|
8620
|
-
value: z.ZodString;
|
|
8621
|
-
calloutType: z.ZodOptional<z.ZodEnum<["Info", "Success", "Warning", "Error"]>>;
|
|
8622
|
-
}, "strip", z.ZodTypeAny, {
|
|
8623
|
-
value: string;
|
|
8624
|
-
calloutType?: "Info" | "Success" | "Warning" | "Error" | undefined;
|
|
8625
|
-
}, {
|
|
8626
|
-
value: string;
|
|
8627
|
-
calloutType?: "Info" | "Success" | "Warning" | "Error" | undefined;
|
|
8628
|
-
}>;
|
|
8629
|
-
type PageBlockItemTextPropertyValue = z.infer<typeof PageBlockItemTextPropertyValue>;
|
|
8630
|
-
declare const PageBlockItemEmbedPropertyValue: z.ZodObject<{
|
|
8631
|
-
value: z.ZodOptional<z.ZodString>;
|
|
8632
|
-
caption: z.ZodOptional<z.ZodString>;
|
|
8633
|
-
height: z.ZodOptional<z.ZodNumber>;
|
|
8634
|
-
}, "strip", z.ZodTypeAny, {
|
|
8635
|
-
value?: string | undefined;
|
|
8636
|
-
caption?: string | undefined;
|
|
8637
|
-
height?: number | undefined;
|
|
8638
|
-
}, {
|
|
8639
|
-
value?: string | undefined;
|
|
8640
|
-
caption?: string | undefined;
|
|
8641
|
-
height?: number | undefined;
|
|
8642
|
-
}>;
|
|
8643
|
-
type PageBlockItemEmbedPropertyValue = z.infer<typeof PageBlockItemEmbedPropertyValue>;
|
|
8644
|
-
declare const PageBlockItemImageValue: z.ZodObject<{
|
|
8645
|
-
alt: z.ZodOptional<z.ZodString>;
|
|
8646
|
-
caption: z.ZodOptional<z.ZodString>;
|
|
8647
|
-
alignment: z.ZodOptional<z.ZodEnum<["Left", "Center", "Stretch"]>>;
|
|
8648
|
-
value: z.ZodOptional<z.ZodObject<{
|
|
8649
|
-
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
8650
|
-
url: z.ZodString;
|
|
8651
|
-
assetId: z.ZodOptional<z.ZodString>;
|
|
8652
|
-
size: z.ZodOptional<z.ZodObject<{
|
|
8653
|
-
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
8654
|
-
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
8655
|
-
}, "strip", z.ZodTypeAny, {
|
|
8656
|
-
width: number;
|
|
8657
|
-
height: number;
|
|
8658
|
-
}, {
|
|
8659
|
-
width?: number | null | undefined;
|
|
8660
|
-
height?: number | null | undefined;
|
|
8661
|
-
}>>;
|
|
8662
|
-
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
8663
|
-
sourceId: z.ZodString;
|
|
8664
|
-
frameId: z.ZodString;
|
|
8665
|
-
}, "strip", z.ZodTypeAny, {
|
|
8666
|
-
sourceId: string;
|
|
8667
|
-
frameId: string;
|
|
8668
|
-
}, {
|
|
8669
|
-
sourceId: string;
|
|
8670
|
-
frameId: string;
|
|
8671
|
-
}>>;
|
|
8672
|
-
}, "strip", z.ZodTypeAny, {
|
|
8673
|
-
type: "Upload" | "Asset" | "FigmaFrame";
|
|
8674
|
-
url: string;
|
|
8675
|
-
assetId?: string | undefined;
|
|
8676
|
-
size?: {
|
|
8677
|
-
width: number;
|
|
8678
|
-
height: number;
|
|
8679
|
-
} | undefined;
|
|
8680
|
-
figmaFile?: {
|
|
8681
|
-
sourceId: string;
|
|
8682
|
-
frameId: string;
|
|
8683
|
-
} | undefined;
|
|
8684
|
-
}, {
|
|
8685
|
-
type: "Upload" | "Asset" | "FigmaFrame";
|
|
8686
|
-
url: string;
|
|
8687
|
-
assetId?: string | undefined;
|
|
8688
|
-
size?: {
|
|
8689
|
-
width?: number | null | undefined;
|
|
8690
|
-
height?: number | null | undefined;
|
|
8691
|
-
} | undefined;
|
|
8692
|
-
figmaFile?: {
|
|
8693
|
-
sourceId: string;
|
|
8694
|
-
frameId: string;
|
|
8695
|
-
} | undefined;
|
|
8696
|
-
}>>;
|
|
8697
|
-
}, "strip", z.ZodTypeAny, {
|
|
8698
|
-
alt?: string | undefined;
|
|
8699
|
-
caption?: string | undefined;
|
|
8700
|
-
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
8701
|
-
value?: {
|
|
8702
|
-
type: "Upload" | "Asset" | "FigmaFrame";
|
|
8703
|
-
url: string;
|
|
8704
|
-
assetId?: string | undefined;
|
|
8705
|
-
size?: {
|
|
8706
|
-
width: number;
|
|
8707
|
-
height: number;
|
|
8708
|
-
} | undefined;
|
|
8709
|
-
figmaFile?: {
|
|
8710
|
-
sourceId: string;
|
|
8711
|
-
frameId: string;
|
|
8712
|
-
} | undefined;
|
|
8713
|
-
} | undefined;
|
|
8714
|
-
}, {
|
|
8715
|
-
alt?: string | undefined;
|
|
8716
|
-
caption?: string | undefined;
|
|
8717
|
-
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
8718
|
-
value?: {
|
|
8719
|
-
type: "Upload" | "Asset" | "FigmaFrame";
|
|
8720
|
-
url: string;
|
|
8721
|
-
assetId?: string | undefined;
|
|
8722
|
-
size?: {
|
|
8723
|
-
width?: number | null | undefined;
|
|
8724
|
-
height?: number | null | undefined;
|
|
8725
|
-
} | undefined;
|
|
8726
|
-
figmaFile?: {
|
|
8727
|
-
sourceId: string;
|
|
8728
|
-
frameId: string;
|
|
8729
|
-
} | undefined;
|
|
8730
|
-
} | undefined;
|
|
8731
|
-
}>;
|
|
8732
|
-
type PageBlockItemImageValue = z.infer<typeof PageBlockItemImageValue>;
|
|
8733
|
-
declare const PageBlockItemImageReference: z.ZodObject<{
|
|
8734
|
-
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
8735
|
-
url: z.ZodString;
|
|
8736
|
-
assetId: z.ZodOptional<z.ZodString>;
|
|
8737
|
-
size: z.ZodOptional<z.ZodObject<{
|
|
8738
|
-
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
8739
|
-
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
8740
|
-
}, "strip", z.ZodTypeAny, {
|
|
8741
|
-
width: number;
|
|
8742
|
-
height: number;
|
|
8743
|
-
}, {
|
|
8744
|
-
width?: number | null | undefined;
|
|
8745
|
-
height?: number | null | undefined;
|
|
8746
|
-
}>>;
|
|
8747
|
-
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
8748
|
-
sourceId: z.ZodString;
|
|
8749
|
-
frameId: z.ZodString;
|
|
8750
|
-
}, "strip", z.ZodTypeAny, {
|
|
8751
|
-
sourceId: string;
|
|
8752
|
-
frameId: string;
|
|
8753
|
-
}, {
|
|
8754
|
-
sourceId: string;
|
|
8755
|
-
frameId: string;
|
|
8756
|
-
}>>;
|
|
8757
|
-
}, "strip", z.ZodTypeAny, {
|
|
8758
|
-
type: "Upload" | "Asset" | "FigmaFrame";
|
|
8759
|
-
url: string;
|
|
8760
|
-
assetId?: string | undefined;
|
|
8761
|
-
size?: {
|
|
8762
|
-
width: number;
|
|
8763
|
-
height: number;
|
|
8764
|
-
} | undefined;
|
|
8765
|
-
figmaFile?: {
|
|
8766
|
-
sourceId: string;
|
|
8767
|
-
frameId: string;
|
|
8768
|
-
} | undefined;
|
|
8769
|
-
}, {
|
|
8770
|
-
type: "Upload" | "Asset" | "FigmaFrame";
|
|
8771
|
-
url: string;
|
|
8772
|
-
assetId?: string | undefined;
|
|
8773
|
-
size?: {
|
|
8774
|
-
width?: number | null | undefined;
|
|
8775
|
-
height?: number | null | undefined;
|
|
8776
|
-
} | undefined;
|
|
8777
|
-
figmaFile?: {
|
|
8778
|
-
sourceId: string;
|
|
8779
|
-
frameId: string;
|
|
8780
|
-
} | undefined;
|
|
8781
|
-
}>;
|
|
8782
|
-
type PageBlockItemImageReference = z.infer<typeof PageBlockItemImageReference>;
|
|
8447
|
+
type PageBlockItemUntypedValue = z.infer<typeof PageBlockItemUntypedValue>;
|
|
8783
8448
|
declare const PageBlockLinkV2: z.ZodObject<{
|
|
8784
8449
|
type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
|
|
8785
8450
|
documentationItemId: z.ZodOptional<z.ZodString>;
|
|
@@ -9077,6 +8742,574 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
9077
8742
|
} | undefined;
|
|
9078
8743
|
}>;
|
|
9079
8744
|
type PageBlockDataV2 = z.infer<typeof PageBlockDataV2>;
|
|
8745
|
+
declare const PageBlockItemImageReference: z.ZodObject<{
|
|
8746
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
8747
|
+
url: z.ZodString;
|
|
8748
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
8749
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
8750
|
+
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
8751
|
+
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
8752
|
+
}, "strip", z.ZodTypeAny, {
|
|
8753
|
+
width: number;
|
|
8754
|
+
height: number;
|
|
8755
|
+
}, {
|
|
8756
|
+
width?: number | null | undefined;
|
|
8757
|
+
height?: number | null | undefined;
|
|
8758
|
+
}>>;
|
|
8759
|
+
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
8760
|
+
sourceId: z.ZodString;
|
|
8761
|
+
frameId: z.ZodString;
|
|
8762
|
+
}, "strip", z.ZodTypeAny, {
|
|
8763
|
+
sourceId: string;
|
|
8764
|
+
frameId: string;
|
|
8765
|
+
}, {
|
|
8766
|
+
sourceId: string;
|
|
8767
|
+
frameId: string;
|
|
8768
|
+
}>>;
|
|
8769
|
+
}, "strip", z.ZodTypeAny, {
|
|
8770
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
8771
|
+
url: string;
|
|
8772
|
+
assetId?: string | undefined;
|
|
8773
|
+
size?: {
|
|
8774
|
+
width: number;
|
|
8775
|
+
height: number;
|
|
8776
|
+
} | undefined;
|
|
8777
|
+
figmaFile?: {
|
|
8778
|
+
sourceId: string;
|
|
8779
|
+
frameId: string;
|
|
8780
|
+
} | undefined;
|
|
8781
|
+
}, {
|
|
8782
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
8783
|
+
url: string;
|
|
8784
|
+
assetId?: string | undefined;
|
|
8785
|
+
size?: {
|
|
8786
|
+
width?: number | null | undefined;
|
|
8787
|
+
height?: number | null | undefined;
|
|
8788
|
+
} | undefined;
|
|
8789
|
+
figmaFile?: {
|
|
8790
|
+
sourceId: string;
|
|
8791
|
+
frameId: string;
|
|
8792
|
+
} | undefined;
|
|
8793
|
+
}>;
|
|
8794
|
+
type PageBlockItemImageReference = z.infer<typeof PageBlockItemImageReference>;
|
|
8795
|
+
declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
8796
|
+
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8797
|
+
showSearch: z.ZodOptional<z.ZodBoolean>;
|
|
8798
|
+
previewContainerSize: z.ZodOptional<z.ZodEnum<["Centered", "NaturalHeight"]>>;
|
|
8799
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
8800
|
+
value: z.ZodArray<z.ZodObject<{
|
|
8801
|
+
entityId: z.ZodString;
|
|
8802
|
+
entityType: z.ZodEnum<["Asset", "AssetGroup"]>;
|
|
8803
|
+
}, "strip", z.ZodTypeAny, {
|
|
8804
|
+
entityId: string;
|
|
8805
|
+
entityType: "Asset" | "AssetGroup";
|
|
8806
|
+
}, {
|
|
8807
|
+
entityId: string;
|
|
8808
|
+
entityType: "Asset" | "AssetGroup";
|
|
8809
|
+
}>, "many">;
|
|
8810
|
+
}, "strip", z.ZodTypeAny, {
|
|
8811
|
+
value: {
|
|
8812
|
+
entityId: string;
|
|
8813
|
+
entityType: "Asset" | "AssetGroup";
|
|
8814
|
+
}[];
|
|
8815
|
+
selectedPropertyIds?: string[] | undefined;
|
|
8816
|
+
showSearch?: boolean | undefined;
|
|
8817
|
+
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
8818
|
+
backgroundColor?: string | undefined;
|
|
8819
|
+
}, {
|
|
8820
|
+
value: {
|
|
8821
|
+
entityId: string;
|
|
8822
|
+
entityType: "Asset" | "AssetGroup";
|
|
8823
|
+
}[];
|
|
8824
|
+
selectedPropertyIds?: string[] | undefined;
|
|
8825
|
+
showSearch?: boolean | undefined;
|
|
8826
|
+
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
8827
|
+
backgroundColor?: string | undefined;
|
|
8828
|
+
}>;
|
|
8829
|
+
type PageBlockItemAssetValue = z.infer<typeof PageBlockItemAssetValue>;
|
|
8830
|
+
declare const PageBlockItemAssetPropertyValue: z.ZodObject<{
|
|
8831
|
+
value: z.ZodArray<z.ZodString, "many">;
|
|
8832
|
+
}, "strip", z.ZodTypeAny, {
|
|
8833
|
+
value: string[];
|
|
8834
|
+
}, {
|
|
8835
|
+
value: string[];
|
|
8836
|
+
}>;
|
|
8837
|
+
type PageBlockItemAssetPropertyValue = z.infer<typeof PageBlockItemAssetPropertyValue>;
|
|
8838
|
+
declare const PageBlockItemBooleanValue: z.ZodObject<{
|
|
8839
|
+
value: z.ZodBoolean;
|
|
8840
|
+
}, "strip", z.ZodTypeAny, {
|
|
8841
|
+
value: boolean;
|
|
8842
|
+
}, {
|
|
8843
|
+
value: boolean;
|
|
8844
|
+
}>;
|
|
8845
|
+
type PageBlockItemBooleanValue = z.infer<typeof PageBlockItemBooleanValue>;
|
|
8846
|
+
declare const PageBlockItemCodeValue: z.ZodObject<{
|
|
8847
|
+
format: z.ZodOptional<z.ZodEnum<["Angular", "Bash", "C", "Cpp", "Csharp", "CSS", "Dart", "Handlebars", "HTML", "Java", "Javascript", "JSON", "ReactJSX", "ReactTSX", "Kotlin", "Lua", "Markdown", "ObjectiveC", "PHP", "Plain", "Python", "Ruby", "Rust", "Sass", "SCSS", "Svetle", "Swift", "Twig", "Typescript", "Vue", "XML", "YAML"]>>;
|
|
8848
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
8849
|
+
value: z.ZodString;
|
|
8850
|
+
}, "strip", z.ZodTypeAny, {
|
|
8851
|
+
value: string;
|
|
8852
|
+
format?: "Angular" | "Bash" | "C" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | undefined;
|
|
8853
|
+
caption?: string | undefined;
|
|
8854
|
+
}, {
|
|
8855
|
+
value: string;
|
|
8856
|
+
format?: "Angular" | "Bash" | "C" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "Markdown" | "ObjectiveC" | "PHP" | "Plain" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | undefined;
|
|
8857
|
+
caption?: string | undefined;
|
|
8858
|
+
}>;
|
|
8859
|
+
type PageBlockItemCodeValue = z.infer<typeof PageBlockItemCodeValue>;
|
|
8860
|
+
declare const PageBlockItemSandboxValue: z.ZodObject<{
|
|
8861
|
+
showCode: z.ZodOptional<z.ZodBoolean>;
|
|
8862
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
8863
|
+
alignPreview: z.ZodOptional<z.ZodEnum<["Left", "Center"]>>;
|
|
8864
|
+
value: z.ZodString;
|
|
8865
|
+
}, "strip", z.ZodTypeAny, {
|
|
8866
|
+
value: string;
|
|
8867
|
+
showCode?: boolean | undefined;
|
|
8868
|
+
backgroundColor?: string | undefined;
|
|
8869
|
+
alignPreview?: "Center" | "Left" | undefined;
|
|
8870
|
+
}, {
|
|
8871
|
+
value: string;
|
|
8872
|
+
showCode?: boolean | undefined;
|
|
8873
|
+
backgroundColor?: string | undefined;
|
|
8874
|
+
alignPreview?: "Center" | "Left" | undefined;
|
|
8875
|
+
}>;
|
|
8876
|
+
type PageBlockItemSandboxValue = z.infer<typeof PageBlockItemSandboxValue>;
|
|
8877
|
+
declare const PageBlockItemColorValue: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
8878
|
+
type PageBlockItemColorValue = z.infer<typeof PageBlockItemColorValue>;
|
|
8879
|
+
declare const PageBlockItemComponentValue: z.ZodObject<{
|
|
8880
|
+
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8881
|
+
value: z.ZodArray<z.ZodObject<{
|
|
8882
|
+
entityId: z.ZodString;
|
|
8883
|
+
entityType: z.ZodEnum<["Component", "ComponentGroup"]>;
|
|
8884
|
+
}, "strip", z.ZodTypeAny, {
|
|
8885
|
+
entityId: string;
|
|
8886
|
+
entityType: "Component" | "ComponentGroup";
|
|
8887
|
+
}, {
|
|
8888
|
+
entityId: string;
|
|
8889
|
+
entityType: "Component" | "ComponentGroup";
|
|
8890
|
+
}>, "many">;
|
|
8891
|
+
}, "strip", z.ZodTypeAny, {
|
|
8892
|
+
value: {
|
|
8893
|
+
entityId: string;
|
|
8894
|
+
entityType: "Component" | "ComponentGroup";
|
|
8895
|
+
}[];
|
|
8896
|
+
selectedPropertyIds?: string[] | undefined;
|
|
8897
|
+
}, {
|
|
8898
|
+
value: {
|
|
8899
|
+
entityId: string;
|
|
8900
|
+
entityType: "Component" | "ComponentGroup";
|
|
8901
|
+
}[];
|
|
8902
|
+
selectedPropertyIds?: string[] | undefined;
|
|
8903
|
+
}>;
|
|
8904
|
+
type PageBlockItemComponentValue = z.infer<typeof PageBlockItemComponentValue>;
|
|
8905
|
+
declare const PageBlockItemComponentPropertyValue: z.ZodObject<{
|
|
8906
|
+
value: z.ZodString;
|
|
8907
|
+
}, "strip", z.ZodTypeAny, {
|
|
8908
|
+
value: string;
|
|
8909
|
+
}, {
|
|
8910
|
+
value: string;
|
|
8911
|
+
}>;
|
|
8912
|
+
type PageBlockItemComponentPropertyValue = z.infer<typeof PageBlockItemComponentPropertyValue>;
|
|
8913
|
+
declare const PageBlockItemDividerValue: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
8914
|
+
type PageBlockItemDividerValue = z.infer<typeof PageBlockItemDividerValue>;
|
|
8915
|
+
declare const PageBlockItemEmbedValue: z.ZodObject<{
|
|
8916
|
+
value: z.ZodOptional<z.ZodString>;
|
|
8917
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
8918
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
8919
|
+
}, "strip", z.ZodTypeAny, {
|
|
8920
|
+
value?: string | undefined;
|
|
8921
|
+
caption?: string | undefined;
|
|
8922
|
+
height?: number | undefined;
|
|
8923
|
+
}, {
|
|
8924
|
+
value?: string | undefined;
|
|
8925
|
+
caption?: string | undefined;
|
|
8926
|
+
height?: number | undefined;
|
|
8927
|
+
}>;
|
|
8928
|
+
type PageBlockItemEmbedValue = z.infer<typeof PageBlockItemEmbedValue>;
|
|
8929
|
+
declare const PageBlockItemImageValue: z.ZodObject<{
|
|
8930
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
8931
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
8932
|
+
alignment: z.ZodOptional<z.ZodEnum<["Left", "Center", "Stretch"]>>;
|
|
8933
|
+
value: z.ZodOptional<z.ZodObject<{
|
|
8934
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
8935
|
+
url: z.ZodString;
|
|
8936
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
8937
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
8938
|
+
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
8939
|
+
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
8940
|
+
}, "strip", z.ZodTypeAny, {
|
|
8941
|
+
width: number;
|
|
8942
|
+
height: number;
|
|
8943
|
+
}, {
|
|
8944
|
+
width?: number | null | undefined;
|
|
8945
|
+
height?: number | null | undefined;
|
|
8946
|
+
}>>;
|
|
8947
|
+
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
8948
|
+
sourceId: z.ZodString;
|
|
8949
|
+
frameId: z.ZodString;
|
|
8950
|
+
}, "strip", z.ZodTypeAny, {
|
|
8951
|
+
sourceId: string;
|
|
8952
|
+
frameId: string;
|
|
8953
|
+
}, {
|
|
8954
|
+
sourceId: string;
|
|
8955
|
+
frameId: string;
|
|
8956
|
+
}>>;
|
|
8957
|
+
}, "strip", z.ZodTypeAny, {
|
|
8958
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
8959
|
+
url: string;
|
|
8960
|
+
assetId?: string | undefined;
|
|
8961
|
+
size?: {
|
|
8962
|
+
width: number;
|
|
8963
|
+
height: number;
|
|
8964
|
+
} | undefined;
|
|
8965
|
+
figmaFile?: {
|
|
8966
|
+
sourceId: string;
|
|
8967
|
+
frameId: string;
|
|
8968
|
+
} | undefined;
|
|
8969
|
+
}, {
|
|
8970
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
8971
|
+
url: string;
|
|
8972
|
+
assetId?: string | undefined;
|
|
8973
|
+
size?: {
|
|
8974
|
+
width?: number | null | undefined;
|
|
8975
|
+
height?: number | null | undefined;
|
|
8976
|
+
} | undefined;
|
|
8977
|
+
figmaFile?: {
|
|
8978
|
+
sourceId: string;
|
|
8979
|
+
frameId: string;
|
|
8980
|
+
} | undefined;
|
|
8981
|
+
}>>;
|
|
8982
|
+
}, "strip", z.ZodTypeAny, {
|
|
8983
|
+
alt?: string | undefined;
|
|
8984
|
+
caption?: string | undefined;
|
|
8985
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
8986
|
+
value?: {
|
|
8987
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
8988
|
+
url: string;
|
|
8989
|
+
assetId?: string | undefined;
|
|
8990
|
+
size?: {
|
|
8991
|
+
width: number;
|
|
8992
|
+
height: number;
|
|
8993
|
+
} | undefined;
|
|
8994
|
+
figmaFile?: {
|
|
8995
|
+
sourceId: string;
|
|
8996
|
+
frameId: string;
|
|
8997
|
+
} | undefined;
|
|
8998
|
+
} | undefined;
|
|
8999
|
+
}, {
|
|
9000
|
+
alt?: string | undefined;
|
|
9001
|
+
caption?: string | undefined;
|
|
9002
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
9003
|
+
value?: {
|
|
9004
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9005
|
+
url: string;
|
|
9006
|
+
assetId?: string | undefined;
|
|
9007
|
+
size?: {
|
|
9008
|
+
width?: number | null | undefined;
|
|
9009
|
+
height?: number | null | undefined;
|
|
9010
|
+
} | undefined;
|
|
9011
|
+
figmaFile?: {
|
|
9012
|
+
sourceId: string;
|
|
9013
|
+
frameId: string;
|
|
9014
|
+
} | undefined;
|
|
9015
|
+
} | undefined;
|
|
9016
|
+
}>;
|
|
9017
|
+
type PageBlockItemImageValue = z.infer<typeof PageBlockItemImageValue>;
|
|
9018
|
+
declare const PageBlockItemMarkdownValue: z.ZodObject<{
|
|
9019
|
+
value: z.ZodString;
|
|
9020
|
+
}, "strip", z.ZodTypeAny, {
|
|
9021
|
+
value: string;
|
|
9022
|
+
}, {
|
|
9023
|
+
value: string;
|
|
9024
|
+
}>;
|
|
9025
|
+
type PageBlockItemMarkdownValue = z.infer<typeof PageBlockItemMarkdownValue>;
|
|
9026
|
+
declare const PageBlockItemMultiRichTextValue: z.ZodObject<{
|
|
9027
|
+
value: z.ZodArray<z.ZodObject<{
|
|
9028
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
9029
|
+
text: z.ZodString;
|
|
9030
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
9031
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
9032
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9033
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9034
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
9035
|
+
}, "strip", z.ZodTypeAny, {
|
|
9036
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9037
|
+
link?: string | undefined;
|
|
9038
|
+
documentationItemId?: string | undefined;
|
|
9039
|
+
openInNewWindow?: boolean | undefined;
|
|
9040
|
+
}, {
|
|
9041
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9042
|
+
link?: string | null | undefined;
|
|
9043
|
+
documentationItemId?: string | null | undefined;
|
|
9044
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9045
|
+
}>, "many">;
|
|
9046
|
+
}, "strip", z.ZodTypeAny, {
|
|
9047
|
+
text: string;
|
|
9048
|
+
attributes: {
|
|
9049
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9050
|
+
link?: string | undefined;
|
|
9051
|
+
documentationItemId?: string | undefined;
|
|
9052
|
+
openInNewWindow?: boolean | undefined;
|
|
9053
|
+
}[];
|
|
9054
|
+
}, {
|
|
9055
|
+
text: string;
|
|
9056
|
+
attributes: {
|
|
9057
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9058
|
+
link?: string | null | undefined;
|
|
9059
|
+
documentationItemId?: string | null | undefined;
|
|
9060
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9061
|
+
}[];
|
|
9062
|
+
}>, "many">;
|
|
9063
|
+
}, "strip", z.ZodTypeAny, {
|
|
9064
|
+
spans: {
|
|
9065
|
+
text: string;
|
|
9066
|
+
attributes: {
|
|
9067
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9068
|
+
link?: string | undefined;
|
|
9069
|
+
documentationItemId?: string | undefined;
|
|
9070
|
+
openInNewWindow?: boolean | undefined;
|
|
9071
|
+
}[];
|
|
9072
|
+
}[];
|
|
9073
|
+
}, {
|
|
9074
|
+
spans: {
|
|
9075
|
+
text: string;
|
|
9076
|
+
attributes: {
|
|
9077
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9078
|
+
link?: string | null | undefined;
|
|
9079
|
+
documentationItemId?: string | null | undefined;
|
|
9080
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9081
|
+
}[];
|
|
9082
|
+
}[];
|
|
9083
|
+
}>, "many">;
|
|
9084
|
+
}, "strip", z.ZodTypeAny, {
|
|
9085
|
+
value: {
|
|
9086
|
+
spans: {
|
|
9087
|
+
text: string;
|
|
9088
|
+
attributes: {
|
|
9089
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9090
|
+
link?: string | undefined;
|
|
9091
|
+
documentationItemId?: string | undefined;
|
|
9092
|
+
openInNewWindow?: boolean | undefined;
|
|
9093
|
+
}[];
|
|
9094
|
+
}[];
|
|
9095
|
+
}[];
|
|
9096
|
+
}, {
|
|
9097
|
+
value: {
|
|
9098
|
+
spans: {
|
|
9099
|
+
text: string;
|
|
9100
|
+
attributes: {
|
|
9101
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9102
|
+
link?: string | null | undefined;
|
|
9103
|
+
documentationItemId?: string | null | undefined;
|
|
9104
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9105
|
+
}[];
|
|
9106
|
+
}[];
|
|
9107
|
+
}[];
|
|
9108
|
+
}>;
|
|
9109
|
+
type PageBlockItemMultiRichTextValue = z.infer<typeof PageBlockItemMultiRichTextValue>;
|
|
9110
|
+
declare const PageBlockItemMultiSelectValue: z.ZodObject<{
|
|
9111
|
+
value: z.ZodArray<z.ZodString, "many">;
|
|
9112
|
+
}, "strip", z.ZodTypeAny, {
|
|
9113
|
+
value: string[];
|
|
9114
|
+
}, {
|
|
9115
|
+
value: string[];
|
|
9116
|
+
}>;
|
|
9117
|
+
type PageBlockItemMultiSelectValue = z.infer<typeof PageBlockItemMultiSelectValue>;
|
|
9118
|
+
declare const PageBlockItemNumberValue: z.ZodObject<{
|
|
9119
|
+
value: z.ZodNumber;
|
|
9120
|
+
}, "strip", z.ZodTypeAny, {
|
|
9121
|
+
value: number;
|
|
9122
|
+
}, {
|
|
9123
|
+
value: number;
|
|
9124
|
+
}>;
|
|
9125
|
+
type PageBlockItemNumberValue = z.infer<typeof PageBlockItemNumberValue>;
|
|
9126
|
+
declare const PageBlockItemRichTextValue: z.ZodObject<{
|
|
9127
|
+
value: z.ZodObject<{
|
|
9128
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
9129
|
+
text: z.ZodString;
|
|
9130
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
9131
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
9132
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9133
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9134
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
9135
|
+
}, "strip", z.ZodTypeAny, {
|
|
9136
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9137
|
+
link?: string | undefined;
|
|
9138
|
+
documentationItemId?: string | undefined;
|
|
9139
|
+
openInNewWindow?: boolean | undefined;
|
|
9140
|
+
}, {
|
|
9141
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9142
|
+
link?: string | null | undefined;
|
|
9143
|
+
documentationItemId?: string | null | undefined;
|
|
9144
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9145
|
+
}>, "many">;
|
|
9146
|
+
}, "strip", z.ZodTypeAny, {
|
|
9147
|
+
text: string;
|
|
9148
|
+
attributes: {
|
|
9149
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9150
|
+
link?: string | undefined;
|
|
9151
|
+
documentationItemId?: string | undefined;
|
|
9152
|
+
openInNewWindow?: boolean | undefined;
|
|
9153
|
+
}[];
|
|
9154
|
+
}, {
|
|
9155
|
+
text: string;
|
|
9156
|
+
attributes: {
|
|
9157
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9158
|
+
link?: string | null | undefined;
|
|
9159
|
+
documentationItemId?: string | null | undefined;
|
|
9160
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9161
|
+
}[];
|
|
9162
|
+
}>, "many">;
|
|
9163
|
+
}, "strip", z.ZodTypeAny, {
|
|
9164
|
+
spans: {
|
|
9165
|
+
text: string;
|
|
9166
|
+
attributes: {
|
|
9167
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9168
|
+
link?: string | undefined;
|
|
9169
|
+
documentationItemId?: string | undefined;
|
|
9170
|
+
openInNewWindow?: boolean | undefined;
|
|
9171
|
+
}[];
|
|
9172
|
+
}[];
|
|
9173
|
+
}, {
|
|
9174
|
+
spans: {
|
|
9175
|
+
text: string;
|
|
9176
|
+
attributes: {
|
|
9177
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9178
|
+
link?: string | null | undefined;
|
|
9179
|
+
documentationItemId?: string | null | undefined;
|
|
9180
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9181
|
+
}[];
|
|
9182
|
+
}[];
|
|
9183
|
+
}>;
|
|
9184
|
+
calloutType: z.ZodOptional<z.ZodEnum<["Info", "Success", "Warning", "Error"]>>;
|
|
9185
|
+
}, "strip", z.ZodTypeAny, {
|
|
9186
|
+
value: {
|
|
9187
|
+
spans: {
|
|
9188
|
+
text: string;
|
|
9189
|
+
attributes: {
|
|
9190
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9191
|
+
link?: string | undefined;
|
|
9192
|
+
documentationItemId?: string | undefined;
|
|
9193
|
+
openInNewWindow?: boolean | undefined;
|
|
9194
|
+
}[];
|
|
9195
|
+
}[];
|
|
9196
|
+
};
|
|
9197
|
+
calloutType?: "Info" | "Success" | "Warning" | "Error" | undefined;
|
|
9198
|
+
}, {
|
|
9199
|
+
value: {
|
|
9200
|
+
spans: {
|
|
9201
|
+
text: string;
|
|
9202
|
+
attributes: {
|
|
9203
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9204
|
+
link?: string | null | undefined;
|
|
9205
|
+
documentationItemId?: string | null | undefined;
|
|
9206
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9207
|
+
}[];
|
|
9208
|
+
}[];
|
|
9209
|
+
};
|
|
9210
|
+
calloutType?: "Info" | "Success" | "Warning" | "Error" | undefined;
|
|
9211
|
+
}>;
|
|
9212
|
+
type PageBlockItemRichTextValue = z.infer<typeof PageBlockItemRichTextValue>;
|
|
9213
|
+
declare const PageBlockItemSingleSelectValue: z.ZodObject<{
|
|
9214
|
+
value: z.ZodString;
|
|
9215
|
+
}, "strip", z.ZodTypeAny, {
|
|
9216
|
+
value: string;
|
|
9217
|
+
}, {
|
|
9218
|
+
value: string;
|
|
9219
|
+
}>;
|
|
9220
|
+
type PageBlockItemSingleSelectValue = z.infer<typeof PageBlockItemSingleSelectValue>;
|
|
9221
|
+
declare const PageBlockItemStorybookValue: z.ZodObject<{
|
|
9222
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
9223
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
9224
|
+
showAddons: z.ZodOptional<z.ZodBoolean>;
|
|
9225
|
+
value: z.ZodString;
|
|
9226
|
+
}, "strip", z.ZodTypeAny, {
|
|
9227
|
+
value: string;
|
|
9228
|
+
caption?: string | undefined;
|
|
9229
|
+
height?: number | undefined;
|
|
9230
|
+
showAddons?: boolean | undefined;
|
|
9231
|
+
}, {
|
|
9232
|
+
value: string;
|
|
9233
|
+
caption?: string | undefined;
|
|
9234
|
+
height?: number | undefined;
|
|
9235
|
+
showAddons?: boolean | undefined;
|
|
9236
|
+
}>;
|
|
9237
|
+
type PageBlockItemStorybookValue = z.infer<typeof PageBlockItemStorybookValue>;
|
|
9238
|
+
declare const PageBlockItemTableValue: z.ZodObject<{
|
|
9239
|
+
value: z.ZodAny;
|
|
9240
|
+
}, "strip", z.ZodTypeAny, {
|
|
9241
|
+
value?: any;
|
|
9242
|
+
}, {
|
|
9243
|
+
value?: any;
|
|
9244
|
+
}>;
|
|
9245
|
+
type PageBlockItemTableValue = z.infer<typeof PageBlockItemTableValue>;
|
|
9246
|
+
declare const PageBlockItemTextValue: z.ZodObject<{
|
|
9247
|
+
value: z.ZodString;
|
|
9248
|
+
}, "strip", z.ZodTypeAny, {
|
|
9249
|
+
value: string;
|
|
9250
|
+
}, {
|
|
9251
|
+
value: string;
|
|
9252
|
+
}>;
|
|
9253
|
+
type PageBlockItemTextValue = z.infer<typeof PageBlockItemTextValue>;
|
|
9254
|
+
declare const PageBlockItemTokenValue: z.ZodObject<{
|
|
9255
|
+
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9256
|
+
selectedThemeIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9257
|
+
value: z.ZodArray<z.ZodObject<{
|
|
9258
|
+
entityId: z.ZodString;
|
|
9259
|
+
entityType: z.ZodEnum<["Token", "TokenGroup"]>;
|
|
9260
|
+
}, "strip", z.ZodTypeAny, {
|
|
9261
|
+
entityId: string;
|
|
9262
|
+
entityType: "Token" | "TokenGroup";
|
|
9263
|
+
}, {
|
|
9264
|
+
entityId: string;
|
|
9265
|
+
entityType: "Token" | "TokenGroup";
|
|
9266
|
+
}>, "many">;
|
|
9267
|
+
}, "strip", z.ZodTypeAny, {
|
|
9268
|
+
value: {
|
|
9269
|
+
entityId: string;
|
|
9270
|
+
entityType: "Token" | "TokenGroup";
|
|
9271
|
+
}[];
|
|
9272
|
+
selectedPropertyIds?: string[] | undefined;
|
|
9273
|
+
selectedThemeIds?: string[] | undefined;
|
|
9274
|
+
}, {
|
|
9275
|
+
value: {
|
|
9276
|
+
entityId: string;
|
|
9277
|
+
entityType: "Token" | "TokenGroup";
|
|
9278
|
+
}[];
|
|
9279
|
+
selectedPropertyIds?: string[] | undefined;
|
|
9280
|
+
selectedThemeIds?: string[] | undefined;
|
|
9281
|
+
}>;
|
|
9282
|
+
type PageBlockItemTokenValue = z.infer<typeof PageBlockItemTokenValue>;
|
|
9283
|
+
declare const PageBlockItemTokenPropertyValue: z.ZodObject<{
|
|
9284
|
+
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9285
|
+
selectedThemeIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9286
|
+
value: z.ZodArray<z.ZodString, "many">;
|
|
9287
|
+
}, "strip", z.ZodTypeAny, {
|
|
9288
|
+
value: string[];
|
|
9289
|
+
selectedPropertyIds?: string[] | undefined;
|
|
9290
|
+
selectedThemeIds?: string[] | undefined;
|
|
9291
|
+
}, {
|
|
9292
|
+
value: string[];
|
|
9293
|
+
selectedPropertyIds?: string[] | undefined;
|
|
9294
|
+
selectedThemeIds?: string[] | undefined;
|
|
9295
|
+
}>;
|
|
9296
|
+
type PageBlockItemTokenPropertyValue = z.infer<typeof PageBlockItemTokenPropertyValue>;
|
|
9297
|
+
declare const PageBlockItemTokenTypeValue: z.ZodObject<{
|
|
9298
|
+
value: z.ZodArray<z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "Duration", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, "many">;
|
|
9299
|
+
}, "strip", z.ZodTypeAny, {
|
|
9300
|
+
value: ("Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur")[];
|
|
9301
|
+
}, {
|
|
9302
|
+
value: ("Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur")[];
|
|
9303
|
+
}>;
|
|
9304
|
+
type PageBlockItemTokenTypeValue = z.infer<typeof PageBlockItemTokenTypeValue>;
|
|
9305
|
+
declare const PageBlockItemUrlValue: z.ZodObject<{
|
|
9306
|
+
value: z.ZodString;
|
|
9307
|
+
}, "strip", z.ZodTypeAny, {
|
|
9308
|
+
value: string;
|
|
9309
|
+
}, {
|
|
9310
|
+
value: string;
|
|
9311
|
+
}>;
|
|
9312
|
+
type PageBlockItemUrlValue = z.infer<typeof PageBlockItemUrlValue>;
|
|
9080
9313
|
|
|
9081
9314
|
declare const DocumentationPageDataV1: z.ZodObject<{
|
|
9082
9315
|
blocks: z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
@@ -43174,18 +43407,18 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<{
|
|
|
43174
43407
|
type: "FigmaRender";
|
|
43175
43408
|
originKey: string;
|
|
43176
43409
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
43410
|
+
format: "Png";
|
|
43177
43411
|
nodeId: string;
|
|
43178
43412
|
fileId: string;
|
|
43179
|
-
format: "Png";
|
|
43180
43413
|
scale: number;
|
|
43181
43414
|
fileVersionId?: string | undefined;
|
|
43182
43415
|
}, {
|
|
43183
43416
|
type: "FigmaRender";
|
|
43184
43417
|
originKey: string;
|
|
43185
43418
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
43419
|
+
format: "Png";
|
|
43186
43420
|
nodeId: string;
|
|
43187
43421
|
fileId: string;
|
|
43188
|
-
format: "Png";
|
|
43189
43422
|
scale: number;
|
|
43190
43423
|
fileVersionId?: string | undefined;
|
|
43191
43424
|
}>;
|
|
@@ -43197,9 +43430,9 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<{
|
|
|
43197
43430
|
type: "FigmaRender";
|
|
43198
43431
|
originKey: string;
|
|
43199
43432
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
43433
|
+
format: "Png";
|
|
43200
43434
|
nodeId: string;
|
|
43201
43435
|
fileId: string;
|
|
43202
|
-
format: "Png";
|
|
43203
43436
|
scale: number;
|
|
43204
43437
|
fileVersionId?: string | undefined;
|
|
43205
43438
|
};
|
|
@@ -43216,9 +43449,9 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<{
|
|
|
43216
43449
|
type: "FigmaRender";
|
|
43217
43450
|
originKey: string;
|
|
43218
43451
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
43452
|
+
format: "Png";
|
|
43219
43453
|
nodeId: string;
|
|
43220
43454
|
fileId: string;
|
|
43221
|
-
format: "Png";
|
|
43222
43455
|
scale: number;
|
|
43223
43456
|
fileVersionId?: string | undefined;
|
|
43224
43457
|
};
|
|
@@ -43266,9 +43499,9 @@ declare const FigmaFileStructureImportModel: z.ZodObject<{
|
|
|
43266
43499
|
type: "FigmaRender";
|
|
43267
43500
|
originKey: string;
|
|
43268
43501
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
43502
|
+
format: "Png";
|
|
43269
43503
|
nodeId: string;
|
|
43270
43504
|
fileId: string;
|
|
43271
|
-
format: "Png";
|
|
43272
43505
|
scale: number;
|
|
43273
43506
|
fileVersionId?: string | undefined;
|
|
43274
43507
|
};
|
|
@@ -43294,9 +43527,9 @@ declare const FigmaFileStructureImportModel: z.ZodObject<{
|
|
|
43294
43527
|
type: "FigmaRender";
|
|
43295
43528
|
originKey: string;
|
|
43296
43529
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
43530
|
+
format: "Png";
|
|
43297
43531
|
nodeId: string;
|
|
43298
43532
|
fileId: string;
|
|
43299
|
-
format: "Png";
|
|
43300
43533
|
scale: number;
|
|
43301
43534
|
fileVersionId?: string | undefined;
|
|
43302
43535
|
};
|
|
@@ -43347,9 +43580,9 @@ declare const FigmaFileStructureImportModel: z.ZodObject<{
|
|
|
43347
43580
|
type: "FigmaRender";
|
|
43348
43581
|
originKey: string;
|
|
43349
43582
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
43583
|
+
format: "Png";
|
|
43350
43584
|
nodeId: string;
|
|
43351
43585
|
fileId: string;
|
|
43352
|
-
format: "Png";
|
|
43353
43586
|
scale: number;
|
|
43354
43587
|
fileVersionId?: string | undefined;
|
|
43355
43588
|
};
|
|
@@ -43388,9 +43621,9 @@ declare const FigmaFileStructureImportModel: z.ZodObject<{
|
|
|
43388
43621
|
type: "FigmaRender";
|
|
43389
43622
|
originKey: string;
|
|
43390
43623
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
43624
|
+
format: "Png";
|
|
43391
43625
|
nodeId: string;
|
|
43392
43626
|
fileId: string;
|
|
43393
|
-
format: "Png";
|
|
43394
43627
|
scale: number;
|
|
43395
43628
|
fileVersionId?: string | undefined;
|
|
43396
43629
|
};
|
|
@@ -43446,9 +43679,9 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<{
|
|
|
43446
43679
|
type: "FigmaRender";
|
|
43447
43680
|
originKey: string;
|
|
43448
43681
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
43682
|
+
format: "Png";
|
|
43449
43683
|
nodeId: string;
|
|
43450
43684
|
fileId: string;
|
|
43451
|
-
format: "Png";
|
|
43452
43685
|
scale: number;
|
|
43453
43686
|
fileVersionId?: string | undefined;
|
|
43454
43687
|
};
|
|
@@ -43474,9 +43707,9 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<{
|
|
|
43474
43707
|
type: "FigmaRender";
|
|
43475
43708
|
originKey: string;
|
|
43476
43709
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
43710
|
+
format: "Png";
|
|
43477
43711
|
nodeId: string;
|
|
43478
43712
|
fileId: string;
|
|
43479
|
-
format: "Png";
|
|
43480
43713
|
scale: number;
|
|
43481
43714
|
fileVersionId?: string | undefined;
|
|
43482
43715
|
};
|
|
@@ -43518,9 +43751,9 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<{
|
|
|
43518
43751
|
type: "FigmaRender";
|
|
43519
43752
|
originKey: string;
|
|
43520
43753
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
43754
|
+
format: "Png";
|
|
43521
43755
|
nodeId: string;
|
|
43522
43756
|
fileId: string;
|
|
43523
|
-
format: "Png";
|
|
43524
43757
|
scale: number;
|
|
43525
43758
|
fileVersionId?: string | undefined;
|
|
43526
43759
|
};
|
|
@@ -43556,9 +43789,9 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<{
|
|
|
43556
43789
|
type: "FigmaRender";
|
|
43557
43790
|
originKey: string;
|
|
43558
43791
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
43792
|
+
format: "Png";
|
|
43559
43793
|
nodeId: string;
|
|
43560
43794
|
fileId: string;
|
|
43561
|
-
format: "Png";
|
|
43562
43795
|
scale: number;
|
|
43563
43796
|
fileVersionId?: string | undefined;
|
|
43564
43797
|
};
|
|
@@ -47019,18 +47252,18 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
47019
47252
|
type: "FigmaRender";
|
|
47020
47253
|
originKey: string;
|
|
47021
47254
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
47255
|
+
format: "Png";
|
|
47022
47256
|
nodeId: string;
|
|
47023
47257
|
fileId: string;
|
|
47024
|
-
format: "Png";
|
|
47025
47258
|
scale: number;
|
|
47026
47259
|
fileVersionId?: string | undefined;
|
|
47027
47260
|
}, {
|
|
47028
47261
|
type: "FigmaRender";
|
|
47029
47262
|
originKey: string;
|
|
47030
47263
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
47264
|
+
format: "Png";
|
|
47031
47265
|
nodeId: string;
|
|
47032
47266
|
fileId: string;
|
|
47033
|
-
format: "Png";
|
|
47034
47267
|
scale: number;
|
|
47035
47268
|
fileVersionId?: string | undefined;
|
|
47036
47269
|
}>, z.ZodObject<{
|
|
@@ -47045,17 +47278,17 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
47045
47278
|
type: "FigmaRender";
|
|
47046
47279
|
originKey: string;
|
|
47047
47280
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
47281
|
+
format: "Svg";
|
|
47048
47282
|
nodeId: string;
|
|
47049
47283
|
fileId: string;
|
|
47050
|
-
format: "Svg";
|
|
47051
47284
|
fileVersionId?: string | undefined;
|
|
47052
47285
|
}, {
|
|
47053
47286
|
type: "FigmaRender";
|
|
47054
47287
|
originKey: string;
|
|
47055
47288
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
47289
|
+
format: "Svg";
|
|
47056
47290
|
nodeId: string;
|
|
47057
47291
|
fileId: string;
|
|
47058
|
-
format: "Svg";
|
|
47059
47292
|
fileVersionId?: string | undefined;
|
|
47060
47293
|
}>]>]>;
|
|
47061
47294
|
isAsset: z.ZodBoolean;
|
|
@@ -47071,17 +47304,17 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
47071
47304
|
type: "FigmaRender";
|
|
47072
47305
|
originKey: string;
|
|
47073
47306
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
47307
|
+
format: "Svg";
|
|
47074
47308
|
nodeId: string;
|
|
47075
47309
|
fileId: string;
|
|
47076
|
-
format: "Svg";
|
|
47077
47310
|
fileVersionId?: string | undefined;
|
|
47078
47311
|
}, {
|
|
47079
47312
|
type: "FigmaRender";
|
|
47080
47313
|
originKey: string;
|
|
47081
47314
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
47315
|
+
format: "Svg";
|
|
47082
47316
|
nodeId: string;
|
|
47083
47317
|
fileId: string;
|
|
47084
|
-
format: "Svg";
|
|
47085
47318
|
fileVersionId?: string | undefined;
|
|
47086
47319
|
}>>;
|
|
47087
47320
|
origin: z.ZodObject<{
|
|
@@ -47133,77 +47366,77 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
47133
47366
|
type: "FigmaRender";
|
|
47134
47367
|
originKey: string;
|
|
47135
47368
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
47369
|
+
format: "Png";
|
|
47136
47370
|
nodeId: string;
|
|
47137
47371
|
fileId: string;
|
|
47138
|
-
format: "Png";
|
|
47139
|
-
scale: number;
|
|
47140
|
-
fileVersionId?: string | undefined;
|
|
47141
|
-
} | {
|
|
47142
|
-
type: "FigmaRender";
|
|
47143
|
-
originKey: string;
|
|
47144
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
47145
|
-
nodeId: string;
|
|
47146
|
-
fileId: string;
|
|
47147
|
-
format: "Svg";
|
|
47148
|
-
fileVersionId?: string | undefined;
|
|
47149
|
-
};
|
|
47150
|
-
svg?: {
|
|
47151
|
-
type: "FigmaRender";
|
|
47152
|
-
originKey: string;
|
|
47153
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
47154
|
-
nodeId: string;
|
|
47155
|
-
fileId: string;
|
|
47156
|
-
format: "Svg";
|
|
47157
|
-
fileVersionId?: string | undefined;
|
|
47158
|
-
} | undefined;
|
|
47159
|
-
}, {
|
|
47160
|
-
id: string;
|
|
47161
|
-
origin: {
|
|
47162
|
-
id: string;
|
|
47163
|
-
name: string;
|
|
47164
|
-
sourceId: string;
|
|
47165
|
-
nodeId?: string | undefined;
|
|
47166
|
-
width?: number | undefined;
|
|
47167
|
-
height?: number | undefined;
|
|
47168
|
-
};
|
|
47169
|
-
brandPersistentId: string;
|
|
47170
|
-
sortOrder: number;
|
|
47171
|
-
meta: {
|
|
47172
|
-
name: string;
|
|
47173
|
-
description?: string | undefined;
|
|
47174
|
-
};
|
|
47175
|
-
isAsset: boolean;
|
|
47176
|
-
thumbnail: {
|
|
47177
|
-
type: "Url";
|
|
47178
|
-
url: string;
|
|
47179
|
-
originKey: string;
|
|
47180
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
47181
|
-
extension: "svg" | "png" | "jpg";
|
|
47182
|
-
} | {
|
|
47183
|
-
type: "FigmaRender";
|
|
47184
|
-
originKey: string;
|
|
47185
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
47186
|
-
nodeId: string;
|
|
47187
|
-
fileId: string;
|
|
47188
|
-
format: "Png";
|
|
47189
47372
|
scale: number;
|
|
47190
47373
|
fileVersionId?: string | undefined;
|
|
47191
47374
|
} | {
|
|
47192
47375
|
type: "FigmaRender";
|
|
47193
47376
|
originKey: string;
|
|
47194
47377
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
47378
|
+
format: "Svg";
|
|
47195
47379
|
nodeId: string;
|
|
47196
47380
|
fileId: string;
|
|
47197
|
-
format: "Svg";
|
|
47198
47381
|
fileVersionId?: string | undefined;
|
|
47199
47382
|
};
|
|
47200
47383
|
svg?: {
|
|
47201
47384
|
type: "FigmaRender";
|
|
47202
47385
|
originKey: string;
|
|
47203
47386
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
47387
|
+
format: "Svg";
|
|
47204
47388
|
nodeId: string;
|
|
47205
47389
|
fileId: string;
|
|
47390
|
+
fileVersionId?: string | undefined;
|
|
47391
|
+
} | undefined;
|
|
47392
|
+
}, {
|
|
47393
|
+
id: string;
|
|
47394
|
+
origin: {
|
|
47395
|
+
id: string;
|
|
47396
|
+
name: string;
|
|
47397
|
+
sourceId: string;
|
|
47398
|
+
nodeId?: string | undefined;
|
|
47399
|
+
width?: number | undefined;
|
|
47400
|
+
height?: number | undefined;
|
|
47401
|
+
};
|
|
47402
|
+
brandPersistentId: string;
|
|
47403
|
+
sortOrder: number;
|
|
47404
|
+
meta: {
|
|
47405
|
+
name: string;
|
|
47406
|
+
description?: string | undefined;
|
|
47407
|
+
};
|
|
47408
|
+
isAsset: boolean;
|
|
47409
|
+
thumbnail: {
|
|
47410
|
+
type: "Url";
|
|
47411
|
+
url: string;
|
|
47412
|
+
originKey: string;
|
|
47413
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
47414
|
+
extension: "svg" | "png" | "jpg";
|
|
47415
|
+
} | {
|
|
47416
|
+
type: "FigmaRender";
|
|
47417
|
+
originKey: string;
|
|
47418
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
47419
|
+
format: "Png";
|
|
47420
|
+
nodeId: string;
|
|
47421
|
+
fileId: string;
|
|
47422
|
+
scale: number;
|
|
47423
|
+
fileVersionId?: string | undefined;
|
|
47424
|
+
} | {
|
|
47425
|
+
type: "FigmaRender";
|
|
47426
|
+
originKey: string;
|
|
47427
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
47428
|
+
format: "Svg";
|
|
47429
|
+
nodeId: string;
|
|
47430
|
+
fileId: string;
|
|
47431
|
+
fileVersionId?: string | undefined;
|
|
47432
|
+
};
|
|
47433
|
+
svg?: {
|
|
47434
|
+
type: "FigmaRender";
|
|
47435
|
+
originKey: string;
|
|
47436
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
47206
47437
|
format: "Svg";
|
|
47438
|
+
nodeId: string;
|
|
47439
|
+
fileId: string;
|
|
47207
47440
|
fileVersionId?: string | undefined;
|
|
47208
47441
|
} | undefined;
|
|
47209
47442
|
}>, "many">>;
|
|
@@ -55524,9 +55757,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
55524
55757
|
type: "FigmaRender";
|
|
55525
55758
|
originKey: string;
|
|
55526
55759
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
55760
|
+
format: "Png";
|
|
55527
55761
|
nodeId: string;
|
|
55528
55762
|
fileId: string;
|
|
55529
|
-
format: "Png";
|
|
55530
55763
|
scale: number;
|
|
55531
55764
|
fileVersionId?: string | undefined;
|
|
55532
55765
|
};
|
|
@@ -55544,9 +55777,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
55544
55777
|
type: "FigmaRender";
|
|
55545
55778
|
originKey: string;
|
|
55546
55779
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
55780
|
+
format: "Png";
|
|
55547
55781
|
nodeId: string;
|
|
55548
55782
|
fileId: string;
|
|
55549
|
-
format: "Png";
|
|
55550
55783
|
scale: number;
|
|
55551
55784
|
fileVersionId?: string | undefined;
|
|
55552
55785
|
};
|
|
@@ -55584,9 +55817,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
55584
55817
|
type: "FigmaRender";
|
|
55585
55818
|
originKey: string;
|
|
55586
55819
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
55820
|
+
format: "Png";
|
|
55587
55821
|
nodeId: string;
|
|
55588
55822
|
fileId: string;
|
|
55589
|
-
format: "Png";
|
|
55590
55823
|
scale: number;
|
|
55591
55824
|
fileVersionId?: string | undefined;
|
|
55592
55825
|
};
|
|
@@ -55612,9 +55845,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
55612
55845
|
type: "FigmaRender";
|
|
55613
55846
|
originKey: string;
|
|
55614
55847
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
55848
|
+
format: "Png";
|
|
55615
55849
|
nodeId: string;
|
|
55616
55850
|
fileId: string;
|
|
55617
|
-
format: "Png";
|
|
55618
55851
|
scale: number;
|
|
55619
55852
|
fileVersionId?: string | undefined;
|
|
55620
55853
|
};
|
|
@@ -55632,9 +55865,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
55632
55865
|
type: "FigmaRender";
|
|
55633
55866
|
originKey: string;
|
|
55634
55867
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
55868
|
+
format: "Png";
|
|
55635
55869
|
nodeId: string;
|
|
55636
55870
|
fileId: string;
|
|
55637
|
-
format: "Png";
|
|
55638
55871
|
scale: number;
|
|
55639
55872
|
fileVersionId?: string | undefined;
|
|
55640
55873
|
};
|
|
@@ -55684,9 +55917,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
55684
55917
|
type: "FigmaRender";
|
|
55685
55918
|
originKey: string;
|
|
55686
55919
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
55920
|
+
format: "Png";
|
|
55687
55921
|
nodeId: string;
|
|
55688
55922
|
fileId: string;
|
|
55689
|
-
format: "Png";
|
|
55690
55923
|
scale: number;
|
|
55691
55924
|
fileVersionId?: string | undefined;
|
|
55692
55925
|
};
|
|
@@ -55725,9 +55958,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
55725
55958
|
type: "FigmaRender";
|
|
55726
55959
|
originKey: string;
|
|
55727
55960
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
55961
|
+
format: "Png";
|
|
55728
55962
|
nodeId: string;
|
|
55729
55963
|
fileId: string;
|
|
55730
|
-
format: "Png";
|
|
55731
55964
|
scale: number;
|
|
55732
55965
|
fileVersionId?: string | undefined;
|
|
55733
55966
|
};
|
|
@@ -55745,9 +55978,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
55745
55978
|
type: "FigmaRender";
|
|
55746
55979
|
originKey: string;
|
|
55747
55980
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
55981
|
+
format: "Png";
|
|
55748
55982
|
nodeId: string;
|
|
55749
55983
|
fileId: string;
|
|
55750
|
-
format: "Png";
|
|
55751
55984
|
scale: number;
|
|
55752
55985
|
fileVersionId?: string | undefined;
|
|
55753
55986
|
};
|
|
@@ -56185,27 +56418,27 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
56185
56418
|
type: "FigmaRender";
|
|
56186
56419
|
originKey: string;
|
|
56187
56420
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
56421
|
+
format: "Png";
|
|
56188
56422
|
nodeId: string;
|
|
56189
56423
|
fileId: string;
|
|
56190
|
-
format: "Png";
|
|
56191
56424
|
scale: number;
|
|
56192
56425
|
fileVersionId?: string | undefined;
|
|
56193
56426
|
} | {
|
|
56194
56427
|
type: "FigmaRender";
|
|
56195
56428
|
originKey: string;
|
|
56196
56429
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
56430
|
+
format: "Svg";
|
|
56197
56431
|
nodeId: string;
|
|
56198
56432
|
fileId: string;
|
|
56199
|
-
format: "Svg";
|
|
56200
56433
|
fileVersionId?: string | undefined;
|
|
56201
56434
|
};
|
|
56202
56435
|
svg?: {
|
|
56203
56436
|
type: "FigmaRender";
|
|
56204
56437
|
originKey: string;
|
|
56205
56438
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
56439
|
+
format: "Svg";
|
|
56206
56440
|
nodeId: string;
|
|
56207
56441
|
fileId: string;
|
|
56208
|
-
format: "Svg";
|
|
56209
56442
|
fileVersionId?: string | undefined;
|
|
56210
56443
|
} | undefined;
|
|
56211
56444
|
}[];
|
|
@@ -56979,9 +57212,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
56979
57212
|
type: "FigmaRender";
|
|
56980
57213
|
originKey: string;
|
|
56981
57214
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
57215
|
+
format: "Png";
|
|
56982
57216
|
nodeId: string;
|
|
56983
57217
|
fileId: string;
|
|
56984
|
-
format: "Png";
|
|
56985
57218
|
scale: number;
|
|
56986
57219
|
fileVersionId?: string | undefined;
|
|
56987
57220
|
};
|
|
@@ -57027,9 +57260,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
57027
57260
|
type: "FigmaRender";
|
|
57028
57261
|
originKey: string;
|
|
57029
57262
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
57263
|
+
format: "Png";
|
|
57030
57264
|
nodeId: string;
|
|
57031
57265
|
fileId: string;
|
|
57032
|
-
format: "Png";
|
|
57033
57266
|
scale: number;
|
|
57034
57267
|
fileVersionId?: string | undefined;
|
|
57035
57268
|
};
|
|
@@ -57047,9 +57280,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
57047
57280
|
type: "FigmaRender";
|
|
57048
57281
|
originKey: string;
|
|
57049
57282
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
57283
|
+
format: "Png";
|
|
57050
57284
|
nodeId: string;
|
|
57051
57285
|
fileId: string;
|
|
57052
|
-
format: "Png";
|
|
57053
57286
|
scale: number;
|
|
57054
57287
|
fileVersionId?: string | undefined;
|
|
57055
57288
|
};
|
|
@@ -57473,27 +57706,27 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
57473
57706
|
type: "FigmaRender";
|
|
57474
57707
|
originKey: string;
|
|
57475
57708
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
57709
|
+
format: "Png";
|
|
57476
57710
|
nodeId: string;
|
|
57477
57711
|
fileId: string;
|
|
57478
|
-
format: "Png";
|
|
57479
57712
|
scale: number;
|
|
57480
57713
|
fileVersionId?: string | undefined;
|
|
57481
57714
|
} | {
|
|
57482
57715
|
type: "FigmaRender";
|
|
57483
57716
|
originKey: string;
|
|
57484
57717
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
57718
|
+
format: "Svg";
|
|
57485
57719
|
nodeId: string;
|
|
57486
57720
|
fileId: string;
|
|
57487
|
-
format: "Svg";
|
|
57488
57721
|
fileVersionId?: string | undefined;
|
|
57489
57722
|
};
|
|
57490
57723
|
svg?: {
|
|
57491
57724
|
type: "FigmaRender";
|
|
57492
57725
|
originKey: string;
|
|
57493
57726
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
57727
|
+
format: "Svg";
|
|
57494
57728
|
nodeId: string;
|
|
57495
57729
|
fileId: string;
|
|
57496
|
-
format: "Svg";
|
|
57497
57730
|
fileVersionId?: string | undefined;
|
|
57498
57731
|
} | undefined;
|
|
57499
57732
|
}[] | undefined;
|
|
@@ -61678,18 +61911,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61678
61911
|
type: "FigmaRender";
|
|
61679
61912
|
originKey: string;
|
|
61680
61913
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
61914
|
+
format: "Png";
|
|
61681
61915
|
nodeId: string;
|
|
61682
61916
|
fileId: string;
|
|
61683
|
-
format: "Png";
|
|
61684
61917
|
scale: number;
|
|
61685
61918
|
fileVersionId?: string | undefined;
|
|
61686
61919
|
}, {
|
|
61687
61920
|
type: "FigmaRender";
|
|
61688
61921
|
originKey: string;
|
|
61689
61922
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
61923
|
+
format: "Png";
|
|
61690
61924
|
nodeId: string;
|
|
61691
61925
|
fileId: string;
|
|
61692
|
-
format: "Png";
|
|
61693
61926
|
scale: number;
|
|
61694
61927
|
fileVersionId?: string | undefined;
|
|
61695
61928
|
}>, z.ZodObject<{
|
|
@@ -61704,17 +61937,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61704
61937
|
type: "FigmaRender";
|
|
61705
61938
|
originKey: string;
|
|
61706
61939
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
61940
|
+
format: "Svg";
|
|
61707
61941
|
nodeId: string;
|
|
61708
61942
|
fileId: string;
|
|
61709
|
-
format: "Svg";
|
|
61710
61943
|
fileVersionId?: string | undefined;
|
|
61711
61944
|
}, {
|
|
61712
61945
|
type: "FigmaRender";
|
|
61713
61946
|
originKey: string;
|
|
61714
61947
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
61948
|
+
format: "Svg";
|
|
61715
61949
|
nodeId: string;
|
|
61716
61950
|
fileId: string;
|
|
61717
|
-
format: "Svg";
|
|
61718
61951
|
fileVersionId?: string | undefined;
|
|
61719
61952
|
}>]>]>;
|
|
61720
61953
|
originId: z.ZodString;
|
|
@@ -61747,18 +61980,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61747
61980
|
type: "FigmaRender";
|
|
61748
61981
|
originKey: string;
|
|
61749
61982
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
61983
|
+
format: "Png";
|
|
61750
61984
|
nodeId: string;
|
|
61751
61985
|
fileId: string;
|
|
61752
|
-
format: "Png";
|
|
61753
61986
|
scale: number;
|
|
61754
61987
|
fileVersionId?: string | undefined;
|
|
61755
61988
|
} | {
|
|
61756
61989
|
type: "FigmaRender";
|
|
61757
61990
|
originKey: string;
|
|
61758
61991
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
61992
|
+
format: "Svg";
|
|
61759
61993
|
nodeId: string;
|
|
61760
61994
|
fileId: string;
|
|
61761
|
-
format: "Svg";
|
|
61762
61995
|
fileVersionId?: string | undefined;
|
|
61763
61996
|
};
|
|
61764
61997
|
originId: string;
|
|
@@ -61783,18 +62016,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61783
62016
|
type: "FigmaRender";
|
|
61784
62017
|
originKey: string;
|
|
61785
62018
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
62019
|
+
format: "Png";
|
|
61786
62020
|
nodeId: string;
|
|
61787
62021
|
fileId: string;
|
|
61788
|
-
format: "Png";
|
|
61789
62022
|
scale: number;
|
|
61790
62023
|
fileVersionId?: string | undefined;
|
|
61791
62024
|
} | {
|
|
61792
62025
|
type: "FigmaRender";
|
|
61793
62026
|
originKey: string;
|
|
61794
62027
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
62028
|
+
format: "Svg";
|
|
61795
62029
|
nodeId: string;
|
|
61796
62030
|
fileId: string;
|
|
61797
|
-
format: "Svg";
|
|
61798
62031
|
fileVersionId?: string | undefined;
|
|
61799
62032
|
};
|
|
61800
62033
|
originId: string;
|
|
@@ -61847,18 +62080,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61847
62080
|
type: "FigmaRender";
|
|
61848
62081
|
originKey: string;
|
|
61849
62082
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
62083
|
+
format: "Png";
|
|
61850
62084
|
nodeId: string;
|
|
61851
62085
|
fileId: string;
|
|
61852
|
-
format: "Png";
|
|
61853
62086
|
scale: number;
|
|
61854
62087
|
fileVersionId?: string | undefined;
|
|
61855
62088
|
}, {
|
|
61856
62089
|
type: "FigmaRender";
|
|
61857
62090
|
originKey: string;
|
|
61858
62091
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
62092
|
+
format: "Png";
|
|
61859
62093
|
nodeId: string;
|
|
61860
62094
|
fileId: string;
|
|
61861
|
-
format: "Png";
|
|
61862
62095
|
scale: number;
|
|
61863
62096
|
fileVersionId?: string | undefined;
|
|
61864
62097
|
}>, z.ZodObject<{
|
|
@@ -61873,17 +62106,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61873
62106
|
type: "FigmaRender";
|
|
61874
62107
|
originKey: string;
|
|
61875
62108
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
62109
|
+
format: "Svg";
|
|
61876
62110
|
nodeId: string;
|
|
61877
62111
|
fileId: string;
|
|
61878
|
-
format: "Svg";
|
|
61879
62112
|
fileVersionId?: string | undefined;
|
|
61880
62113
|
}, {
|
|
61881
62114
|
type: "FigmaRender";
|
|
61882
62115
|
originKey: string;
|
|
61883
62116
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
62117
|
+
format: "Svg";
|
|
61884
62118
|
nodeId: string;
|
|
61885
62119
|
fileId: string;
|
|
61886
|
-
format: "Svg";
|
|
61887
62120
|
fileVersionId?: string | undefined;
|
|
61888
62121
|
}>]>]>;
|
|
61889
62122
|
originId: z.ZodString;
|
|
@@ -61899,17 +62132,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61899
62132
|
type: "FigmaRender";
|
|
61900
62133
|
originKey: string;
|
|
61901
62134
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
62135
|
+
format: "Svg";
|
|
61902
62136
|
nodeId: string;
|
|
61903
62137
|
fileId: string;
|
|
61904
|
-
format: "Svg";
|
|
61905
62138
|
fileVersionId?: string | undefined;
|
|
61906
62139
|
}, {
|
|
61907
62140
|
type: "FigmaRender";
|
|
61908
62141
|
originKey: string;
|
|
61909
62142
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
62143
|
+
format: "Svg";
|
|
61910
62144
|
nodeId: string;
|
|
61911
62145
|
fileId: string;
|
|
61912
|
-
format: "Svg";
|
|
61913
62146
|
fileVersionId?: string | undefined;
|
|
61914
62147
|
}>;
|
|
61915
62148
|
originMetadata: z.ZodObject<{
|
|
@@ -61931,9 +62164,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61931
62164
|
type: "FigmaRender";
|
|
61932
62165
|
originKey: string;
|
|
61933
62166
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
62167
|
+
format: "Svg";
|
|
61934
62168
|
nodeId: string;
|
|
61935
62169
|
fileId: string;
|
|
61936
|
-
format: "Svg";
|
|
61937
62170
|
fileVersionId?: string | undefined;
|
|
61938
62171
|
};
|
|
61939
62172
|
meta: {
|
|
@@ -61950,18 +62183,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61950
62183
|
type: "FigmaRender";
|
|
61951
62184
|
originKey: string;
|
|
61952
62185
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
62186
|
+
format: "Png";
|
|
61953
62187
|
nodeId: string;
|
|
61954
62188
|
fileId: string;
|
|
61955
|
-
format: "Png";
|
|
61956
62189
|
scale: number;
|
|
61957
62190
|
fileVersionId?: string | undefined;
|
|
61958
62191
|
} | {
|
|
61959
62192
|
type: "FigmaRender";
|
|
61960
62193
|
originKey: string;
|
|
61961
62194
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
62195
|
+
format: "Svg";
|
|
61962
62196
|
nodeId: string;
|
|
61963
62197
|
fileId: string;
|
|
61964
|
-
format: "Svg";
|
|
61965
62198
|
fileVersionId?: string | undefined;
|
|
61966
62199
|
};
|
|
61967
62200
|
originId: string;
|
|
@@ -61976,9 +62209,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61976
62209
|
type: "FigmaRender";
|
|
61977
62210
|
originKey: string;
|
|
61978
62211
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
62212
|
+
format: "Svg";
|
|
61979
62213
|
nodeId: string;
|
|
61980
62214
|
fileId: string;
|
|
61981
|
-
format: "Svg";
|
|
61982
62215
|
fileVersionId?: string | undefined;
|
|
61983
62216
|
};
|
|
61984
62217
|
meta: {
|
|
@@ -61995,18 +62228,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61995
62228
|
type: "FigmaRender";
|
|
61996
62229
|
originKey: string;
|
|
61997
62230
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
62231
|
+
format: "Png";
|
|
61998
62232
|
nodeId: string;
|
|
61999
62233
|
fileId: string;
|
|
62000
|
-
format: "Png";
|
|
62001
62234
|
scale: number;
|
|
62002
62235
|
fileVersionId?: string | undefined;
|
|
62003
62236
|
} | {
|
|
62004
62237
|
type: "FigmaRender";
|
|
62005
62238
|
originKey: string;
|
|
62006
62239
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
62240
|
+
format: "Svg";
|
|
62007
62241
|
nodeId: string;
|
|
62008
62242
|
fileId: string;
|
|
62009
|
-
format: "Svg";
|
|
62010
62243
|
fileVersionId?: string | undefined;
|
|
62011
62244
|
};
|
|
62012
62245
|
originId: string;
|
|
@@ -70274,9 +70507,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70274
70507
|
type: "FigmaRender";
|
|
70275
70508
|
originKey: string;
|
|
70276
70509
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
70510
|
+
format: "Png";
|
|
70277
70511
|
nodeId: string;
|
|
70278
70512
|
fileId: string;
|
|
70279
|
-
format: "Png";
|
|
70280
70513
|
scale: number;
|
|
70281
70514
|
fileVersionId?: string | undefined;
|
|
70282
70515
|
};
|
|
@@ -70294,9 +70527,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70294
70527
|
type: "FigmaRender";
|
|
70295
70528
|
originKey: string;
|
|
70296
70529
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
70530
|
+
format: "Png";
|
|
70297
70531
|
nodeId: string;
|
|
70298
70532
|
fileId: string;
|
|
70299
|
-
format: "Png";
|
|
70300
70533
|
scale: number;
|
|
70301
70534
|
fileVersionId?: string | undefined;
|
|
70302
70535
|
};
|
|
@@ -70334,9 +70567,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70334
70567
|
type: "FigmaRender";
|
|
70335
70568
|
originKey: string;
|
|
70336
70569
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
70570
|
+
format: "Png";
|
|
70337
70571
|
nodeId: string;
|
|
70338
70572
|
fileId: string;
|
|
70339
|
-
format: "Png";
|
|
70340
70573
|
scale: number;
|
|
70341
70574
|
fileVersionId?: string | undefined;
|
|
70342
70575
|
};
|
|
@@ -70362,9 +70595,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70362
70595
|
type: "FigmaRender";
|
|
70363
70596
|
originKey: string;
|
|
70364
70597
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
70598
|
+
format: "Png";
|
|
70365
70599
|
nodeId: string;
|
|
70366
70600
|
fileId: string;
|
|
70367
|
-
format: "Png";
|
|
70368
70601
|
scale: number;
|
|
70369
70602
|
fileVersionId?: string | undefined;
|
|
70370
70603
|
};
|
|
@@ -70382,9 +70615,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70382
70615
|
type: "FigmaRender";
|
|
70383
70616
|
originKey: string;
|
|
70384
70617
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
70618
|
+
format: "Png";
|
|
70385
70619
|
nodeId: string;
|
|
70386
70620
|
fileId: string;
|
|
70387
|
-
format: "Png";
|
|
70388
70621
|
scale: number;
|
|
70389
70622
|
fileVersionId?: string | undefined;
|
|
70390
70623
|
};
|
|
@@ -70425,9 +70658,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70425
70658
|
type: "FigmaRender";
|
|
70426
70659
|
originKey: string;
|
|
70427
70660
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
70661
|
+
format: "Png";
|
|
70428
70662
|
nodeId: string;
|
|
70429
70663
|
fileId: string;
|
|
70430
|
-
format: "Png";
|
|
70431
70664
|
scale: number;
|
|
70432
70665
|
fileVersionId?: string | undefined;
|
|
70433
70666
|
};
|
|
@@ -70463,9 +70696,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70463
70696
|
type: "FigmaRender";
|
|
70464
70697
|
originKey: string;
|
|
70465
70698
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
70699
|
+
format: "Png";
|
|
70466
70700
|
nodeId: string;
|
|
70467
70701
|
fileId: string;
|
|
70468
|
-
format: "Png";
|
|
70469
70702
|
scale: number;
|
|
70470
70703
|
fileVersionId?: string | undefined;
|
|
70471
70704
|
};
|
|
@@ -70483,9 +70716,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70483
70716
|
type: "FigmaRender";
|
|
70484
70717
|
originKey: string;
|
|
70485
70718
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
70719
|
+
format: "Png";
|
|
70486
70720
|
nodeId: string;
|
|
70487
70721
|
fileId: string;
|
|
70488
|
-
format: "Png";
|
|
70489
70722
|
scale: number;
|
|
70490
70723
|
fileVersionId?: string | undefined;
|
|
70491
70724
|
};
|
|
@@ -70902,18 +71135,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70902
71135
|
type: "FigmaRender";
|
|
70903
71136
|
originKey: string;
|
|
70904
71137
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
71138
|
+
format: "Png";
|
|
70905
71139
|
nodeId: string;
|
|
70906
71140
|
fileId: string;
|
|
70907
|
-
format: "Png";
|
|
70908
71141
|
scale: number;
|
|
70909
71142
|
fileVersionId?: string | undefined;
|
|
70910
71143
|
} | {
|
|
70911
71144
|
type: "FigmaRender";
|
|
70912
71145
|
originKey: string;
|
|
70913
71146
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
71147
|
+
format: "Svg";
|
|
70914
71148
|
nodeId: string;
|
|
70915
71149
|
fileId: string;
|
|
70916
|
-
format: "Svg";
|
|
70917
71150
|
fileVersionId?: string | undefined;
|
|
70918
71151
|
};
|
|
70919
71152
|
originId: string;
|
|
@@ -70929,9 +71162,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70929
71162
|
type: "FigmaRender";
|
|
70930
71163
|
originKey: string;
|
|
70931
71164
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
71165
|
+
format: "Svg";
|
|
70932
71166
|
nodeId: string;
|
|
70933
71167
|
fileId: string;
|
|
70934
|
-
format: "Svg";
|
|
70935
71168
|
fileVersionId?: string | undefined;
|
|
70936
71169
|
};
|
|
70937
71170
|
meta: {
|
|
@@ -70948,18 +71181,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70948
71181
|
type: "FigmaRender";
|
|
70949
71182
|
originKey: string;
|
|
70950
71183
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
71184
|
+
format: "Png";
|
|
70951
71185
|
nodeId: string;
|
|
70952
71186
|
fileId: string;
|
|
70953
|
-
format: "Png";
|
|
70954
71187
|
scale: number;
|
|
70955
71188
|
fileVersionId?: string | undefined;
|
|
70956
71189
|
} | {
|
|
70957
71190
|
type: "FigmaRender";
|
|
70958
71191
|
originKey: string;
|
|
70959
71192
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
71193
|
+
format: "Svg";
|
|
70960
71194
|
nodeId: string;
|
|
70961
71195
|
fileId: string;
|
|
70962
|
-
format: "Svg";
|
|
70963
71196
|
fileVersionId?: string | undefined;
|
|
70964
71197
|
};
|
|
70965
71198
|
originId: string;
|
|
@@ -71733,9 +71966,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
71733
71966
|
type: "FigmaRender";
|
|
71734
71967
|
originKey: string;
|
|
71735
71968
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
71969
|
+
format: "Png";
|
|
71736
71970
|
nodeId: string;
|
|
71737
71971
|
fileId: string;
|
|
71738
|
-
format: "Png";
|
|
71739
71972
|
scale: number;
|
|
71740
71973
|
fileVersionId?: string | undefined;
|
|
71741
71974
|
};
|
|
@@ -72148,18 +72381,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
72148
72381
|
type: "FigmaRender";
|
|
72149
72382
|
originKey: string;
|
|
72150
72383
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
72384
|
+
format: "Png";
|
|
72151
72385
|
nodeId: string;
|
|
72152
72386
|
fileId: string;
|
|
72153
|
-
format: "Png";
|
|
72154
72387
|
scale: number;
|
|
72155
72388
|
fileVersionId?: string | undefined;
|
|
72156
72389
|
} | {
|
|
72157
72390
|
type: "FigmaRender";
|
|
72158
72391
|
originKey: string;
|
|
72159
72392
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
72393
|
+
format: "Svg";
|
|
72160
72394
|
nodeId: string;
|
|
72161
72395
|
fileId: string;
|
|
72162
|
-
format: "Svg";
|
|
72163
72396
|
fileVersionId?: string | undefined;
|
|
72164
72397
|
};
|
|
72165
72398
|
originId: string;
|
|
@@ -72175,9 +72408,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
72175
72408
|
type: "FigmaRender";
|
|
72176
72409
|
originKey: string;
|
|
72177
72410
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
72411
|
+
format: "Svg";
|
|
72178
72412
|
nodeId: string;
|
|
72179
72413
|
fileId: string;
|
|
72180
|
-
format: "Svg";
|
|
72181
72414
|
fileVersionId?: string | undefined;
|
|
72182
72415
|
};
|
|
72183
72416
|
meta: {
|
|
@@ -72194,18 +72427,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
72194
72427
|
type: "FigmaRender";
|
|
72195
72428
|
originKey: string;
|
|
72196
72429
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
72430
|
+
format: "Png";
|
|
72197
72431
|
nodeId: string;
|
|
72198
72432
|
fileId: string;
|
|
72199
|
-
format: "Png";
|
|
72200
72433
|
scale: number;
|
|
72201
72434
|
fileVersionId?: string | undefined;
|
|
72202
72435
|
} | {
|
|
72203
72436
|
type: "FigmaRender";
|
|
72204
72437
|
originKey: string;
|
|
72205
72438
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
72439
|
+
format: "Svg";
|
|
72206
72440
|
nodeId: string;
|
|
72207
72441
|
fileId: string;
|
|
72208
|
-
format: "Svg";
|
|
72209
72442
|
fileVersionId?: string | undefined;
|
|
72210
72443
|
};
|
|
72211
72444
|
originId: string;
|
|
@@ -72984,9 +73217,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
72984
73217
|
type: "FigmaRender";
|
|
72985
73218
|
originKey: string;
|
|
72986
73219
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73220
|
+
format: "Png";
|
|
72987
73221
|
nodeId: string;
|
|
72988
73222
|
fileId: string;
|
|
72989
|
-
format: "Png";
|
|
72990
73223
|
scale: number;
|
|
72991
73224
|
fileVersionId?: string | undefined;
|
|
72992
73225
|
};
|
|
@@ -73004,9 +73237,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
73004
73237
|
type: "FigmaRender";
|
|
73005
73238
|
originKey: string;
|
|
73006
73239
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73240
|
+
format: "Png";
|
|
73007
73241
|
nodeId: string;
|
|
73008
73242
|
fileId: string;
|
|
73009
|
-
format: "Png";
|
|
73010
73243
|
scale: number;
|
|
73011
73244
|
fileVersionId?: string | undefined;
|
|
73012
73245
|
};
|
|
@@ -73075,18 +73308,18 @@ declare const ComponentImportModel: z.ZodObject<{
|
|
|
73075
73308
|
type: "FigmaRender";
|
|
73076
73309
|
originKey: string;
|
|
73077
73310
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73311
|
+
format: "Png";
|
|
73078
73312
|
nodeId: string;
|
|
73079
73313
|
fileId: string;
|
|
73080
|
-
format: "Png";
|
|
73081
73314
|
scale: number;
|
|
73082
73315
|
fileVersionId?: string | undefined;
|
|
73083
73316
|
}, {
|
|
73084
73317
|
type: "FigmaRender";
|
|
73085
73318
|
originKey: string;
|
|
73086
73319
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73320
|
+
format: "Png";
|
|
73087
73321
|
nodeId: string;
|
|
73088
73322
|
fileId: string;
|
|
73089
|
-
format: "Png";
|
|
73090
73323
|
scale: number;
|
|
73091
73324
|
fileVersionId?: string | undefined;
|
|
73092
73325
|
}>, z.ZodObject<{
|
|
@@ -73101,17 +73334,17 @@ declare const ComponentImportModel: z.ZodObject<{
|
|
|
73101
73334
|
type: "FigmaRender";
|
|
73102
73335
|
originKey: string;
|
|
73103
73336
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73337
|
+
format: "Svg";
|
|
73104
73338
|
nodeId: string;
|
|
73105
73339
|
fileId: string;
|
|
73106
|
-
format: "Svg";
|
|
73107
73340
|
fileVersionId?: string | undefined;
|
|
73108
73341
|
}, {
|
|
73109
73342
|
type: "FigmaRender";
|
|
73110
73343
|
originKey: string;
|
|
73111
73344
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73345
|
+
format: "Svg";
|
|
73112
73346
|
nodeId: string;
|
|
73113
73347
|
fileId: string;
|
|
73114
|
-
format: "Svg";
|
|
73115
73348
|
fileVersionId?: string | undefined;
|
|
73116
73349
|
}>]>]>;
|
|
73117
73350
|
isAsset: z.ZodBoolean;
|
|
@@ -73127,17 +73360,17 @@ declare const ComponentImportModel: z.ZodObject<{
|
|
|
73127
73360
|
type: "FigmaRender";
|
|
73128
73361
|
originKey: string;
|
|
73129
73362
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73363
|
+
format: "Svg";
|
|
73130
73364
|
nodeId: string;
|
|
73131
73365
|
fileId: string;
|
|
73132
|
-
format: "Svg";
|
|
73133
73366
|
fileVersionId?: string | undefined;
|
|
73134
73367
|
}, {
|
|
73135
73368
|
type: "FigmaRender";
|
|
73136
73369
|
originKey: string;
|
|
73137
73370
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73371
|
+
format: "Svg";
|
|
73138
73372
|
nodeId: string;
|
|
73139
73373
|
fileId: string;
|
|
73140
|
-
format: "Svg";
|
|
73141
73374
|
fileVersionId?: string | undefined;
|
|
73142
73375
|
}>>;
|
|
73143
73376
|
origin: z.ZodObject<{
|
|
@@ -73189,27 +73422,27 @@ declare const ComponentImportModel: z.ZodObject<{
|
|
|
73189
73422
|
type: "FigmaRender";
|
|
73190
73423
|
originKey: string;
|
|
73191
73424
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73425
|
+
format: "Png";
|
|
73192
73426
|
nodeId: string;
|
|
73193
73427
|
fileId: string;
|
|
73194
|
-
format: "Png";
|
|
73195
73428
|
scale: number;
|
|
73196
73429
|
fileVersionId?: string | undefined;
|
|
73197
73430
|
} | {
|
|
73198
73431
|
type: "FigmaRender";
|
|
73199
73432
|
originKey: string;
|
|
73200
73433
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73434
|
+
format: "Svg";
|
|
73201
73435
|
nodeId: string;
|
|
73202
73436
|
fileId: string;
|
|
73203
|
-
format: "Svg";
|
|
73204
73437
|
fileVersionId?: string | undefined;
|
|
73205
73438
|
};
|
|
73206
73439
|
svg?: {
|
|
73207
73440
|
type: "FigmaRender";
|
|
73208
73441
|
originKey: string;
|
|
73209
73442
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73443
|
+
format: "Svg";
|
|
73210
73444
|
nodeId: string;
|
|
73211
73445
|
fileId: string;
|
|
73212
|
-
format: "Svg";
|
|
73213
73446
|
fileVersionId?: string | undefined;
|
|
73214
73447
|
} | undefined;
|
|
73215
73448
|
}, {
|
|
@@ -73239,27 +73472,27 @@ declare const ComponentImportModel: z.ZodObject<{
|
|
|
73239
73472
|
type: "FigmaRender";
|
|
73240
73473
|
originKey: string;
|
|
73241
73474
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73475
|
+
format: "Png";
|
|
73242
73476
|
nodeId: string;
|
|
73243
73477
|
fileId: string;
|
|
73244
|
-
format: "Png";
|
|
73245
73478
|
scale: number;
|
|
73246
73479
|
fileVersionId?: string | undefined;
|
|
73247
73480
|
} | {
|
|
73248
73481
|
type: "FigmaRender";
|
|
73249
73482
|
originKey: string;
|
|
73250
73483
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73484
|
+
format: "Svg";
|
|
73251
73485
|
nodeId: string;
|
|
73252
73486
|
fileId: string;
|
|
73253
|
-
format: "Svg";
|
|
73254
73487
|
fileVersionId?: string | undefined;
|
|
73255
73488
|
};
|
|
73256
73489
|
svg?: {
|
|
73257
73490
|
type: "FigmaRender";
|
|
73258
73491
|
originKey: string;
|
|
73259
73492
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73493
|
+
format: "Svg";
|
|
73260
73494
|
nodeId: string;
|
|
73261
73495
|
fileId: string;
|
|
73262
|
-
format: "Svg";
|
|
73263
73496
|
fileVersionId?: string | undefined;
|
|
73264
73497
|
} | undefined;
|
|
73265
73498
|
}>;
|
|
@@ -73307,18 +73540,18 @@ declare const ComponentImportModelInput: z.ZodObject<{
|
|
|
73307
73540
|
type: "FigmaRender";
|
|
73308
73541
|
originKey: string;
|
|
73309
73542
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73543
|
+
format: "Png";
|
|
73310
73544
|
nodeId: string;
|
|
73311
73545
|
fileId: string;
|
|
73312
|
-
format: "Png";
|
|
73313
73546
|
scale: number;
|
|
73314
73547
|
fileVersionId?: string | undefined;
|
|
73315
73548
|
}, {
|
|
73316
73549
|
type: "FigmaRender";
|
|
73317
73550
|
originKey: string;
|
|
73318
73551
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73552
|
+
format: "Png";
|
|
73319
73553
|
nodeId: string;
|
|
73320
73554
|
fileId: string;
|
|
73321
|
-
format: "Png";
|
|
73322
73555
|
scale: number;
|
|
73323
73556
|
fileVersionId?: string | undefined;
|
|
73324
73557
|
}>, z.ZodObject<{
|
|
@@ -73333,17 +73566,17 @@ declare const ComponentImportModelInput: z.ZodObject<{
|
|
|
73333
73566
|
type: "FigmaRender";
|
|
73334
73567
|
originKey: string;
|
|
73335
73568
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73569
|
+
format: "Svg";
|
|
73336
73570
|
nodeId: string;
|
|
73337
73571
|
fileId: string;
|
|
73338
|
-
format: "Svg";
|
|
73339
73572
|
fileVersionId?: string | undefined;
|
|
73340
73573
|
}, {
|
|
73341
73574
|
type: "FigmaRender";
|
|
73342
73575
|
originKey: string;
|
|
73343
73576
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73577
|
+
format: "Svg";
|
|
73344
73578
|
nodeId: string;
|
|
73345
73579
|
fileId: string;
|
|
73346
|
-
format: "Svg";
|
|
73347
73580
|
fileVersionId?: string | undefined;
|
|
73348
73581
|
}>]>]>;
|
|
73349
73582
|
originId: z.ZodString;
|
|
@@ -73376,18 +73609,18 @@ declare const ComponentImportModelInput: z.ZodObject<{
|
|
|
73376
73609
|
type: "FigmaRender";
|
|
73377
73610
|
originKey: string;
|
|
73378
73611
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73612
|
+
format: "Png";
|
|
73379
73613
|
nodeId: string;
|
|
73380
73614
|
fileId: string;
|
|
73381
|
-
format: "Png";
|
|
73382
73615
|
scale: number;
|
|
73383
73616
|
fileVersionId?: string | undefined;
|
|
73384
73617
|
} | {
|
|
73385
73618
|
type: "FigmaRender";
|
|
73386
73619
|
originKey: string;
|
|
73387
73620
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73621
|
+
format: "Svg";
|
|
73388
73622
|
nodeId: string;
|
|
73389
73623
|
fileId: string;
|
|
73390
|
-
format: "Svg";
|
|
73391
73624
|
fileVersionId?: string | undefined;
|
|
73392
73625
|
};
|
|
73393
73626
|
originId: string;
|
|
@@ -73412,18 +73645,18 @@ declare const ComponentImportModelInput: z.ZodObject<{
|
|
|
73412
73645
|
type: "FigmaRender";
|
|
73413
73646
|
originKey: string;
|
|
73414
73647
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73648
|
+
format: "Png";
|
|
73415
73649
|
nodeId: string;
|
|
73416
73650
|
fileId: string;
|
|
73417
|
-
format: "Png";
|
|
73418
73651
|
scale: number;
|
|
73419
73652
|
fileVersionId?: string | undefined;
|
|
73420
73653
|
} | {
|
|
73421
73654
|
type: "FigmaRender";
|
|
73422
73655
|
originKey: string;
|
|
73423
73656
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73657
|
+
format: "Svg";
|
|
73424
73658
|
nodeId: string;
|
|
73425
73659
|
fileId: string;
|
|
73426
|
-
format: "Svg";
|
|
73427
73660
|
fileVersionId?: string | undefined;
|
|
73428
73661
|
};
|
|
73429
73662
|
originId: string;
|
|
@@ -73477,18 +73710,18 @@ declare const AssetImportModelInput: z.ZodObject<{
|
|
|
73477
73710
|
type: "FigmaRender";
|
|
73478
73711
|
originKey: string;
|
|
73479
73712
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73713
|
+
format: "Png";
|
|
73480
73714
|
nodeId: string;
|
|
73481
73715
|
fileId: string;
|
|
73482
|
-
format: "Png";
|
|
73483
73716
|
scale: number;
|
|
73484
73717
|
fileVersionId?: string | undefined;
|
|
73485
73718
|
}, {
|
|
73486
73719
|
type: "FigmaRender";
|
|
73487
73720
|
originKey: string;
|
|
73488
73721
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73722
|
+
format: "Png";
|
|
73489
73723
|
nodeId: string;
|
|
73490
73724
|
fileId: string;
|
|
73491
|
-
format: "Png";
|
|
73492
73725
|
scale: number;
|
|
73493
73726
|
fileVersionId?: string | undefined;
|
|
73494
73727
|
}>, z.ZodObject<{
|
|
@@ -73503,17 +73736,17 @@ declare const AssetImportModelInput: z.ZodObject<{
|
|
|
73503
73736
|
type: "FigmaRender";
|
|
73504
73737
|
originKey: string;
|
|
73505
73738
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73739
|
+
format: "Svg";
|
|
73506
73740
|
nodeId: string;
|
|
73507
73741
|
fileId: string;
|
|
73508
|
-
format: "Svg";
|
|
73509
73742
|
fileVersionId?: string | undefined;
|
|
73510
73743
|
}, {
|
|
73511
73744
|
type: "FigmaRender";
|
|
73512
73745
|
originKey: string;
|
|
73513
73746
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73747
|
+
format: "Svg";
|
|
73514
73748
|
nodeId: string;
|
|
73515
73749
|
fileId: string;
|
|
73516
|
-
format: "Svg";
|
|
73517
73750
|
fileVersionId?: string | undefined;
|
|
73518
73751
|
}>]>]>;
|
|
73519
73752
|
originId: z.ZodString;
|
|
@@ -73529,17 +73762,17 @@ declare const AssetImportModelInput: z.ZodObject<{
|
|
|
73529
73762
|
type: "FigmaRender";
|
|
73530
73763
|
originKey: string;
|
|
73531
73764
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73765
|
+
format: "Svg";
|
|
73532
73766
|
nodeId: string;
|
|
73533
73767
|
fileId: string;
|
|
73534
|
-
format: "Svg";
|
|
73535
73768
|
fileVersionId?: string | undefined;
|
|
73536
73769
|
}, {
|
|
73537
73770
|
type: "FigmaRender";
|
|
73538
73771
|
originKey: string;
|
|
73539
73772
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73773
|
+
format: "Svg";
|
|
73540
73774
|
nodeId: string;
|
|
73541
73775
|
fileId: string;
|
|
73542
|
-
format: "Svg";
|
|
73543
73776
|
fileVersionId?: string | undefined;
|
|
73544
73777
|
}>;
|
|
73545
73778
|
originMetadata: z.ZodObject<{
|
|
@@ -73561,9 +73794,9 @@ declare const AssetImportModelInput: z.ZodObject<{
|
|
|
73561
73794
|
type: "FigmaRender";
|
|
73562
73795
|
originKey: string;
|
|
73563
73796
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73797
|
+
format: "Svg";
|
|
73564
73798
|
nodeId: string;
|
|
73565
73799
|
fileId: string;
|
|
73566
|
-
format: "Svg";
|
|
73567
73800
|
fileVersionId?: string | undefined;
|
|
73568
73801
|
};
|
|
73569
73802
|
meta: {
|
|
@@ -73580,18 +73813,18 @@ declare const AssetImportModelInput: z.ZodObject<{
|
|
|
73580
73813
|
type: "FigmaRender";
|
|
73581
73814
|
originKey: string;
|
|
73582
73815
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73816
|
+
format: "Png";
|
|
73583
73817
|
nodeId: string;
|
|
73584
73818
|
fileId: string;
|
|
73585
|
-
format: "Png";
|
|
73586
73819
|
scale: number;
|
|
73587
73820
|
fileVersionId?: string | undefined;
|
|
73588
73821
|
} | {
|
|
73589
73822
|
type: "FigmaRender";
|
|
73590
73823
|
originKey: string;
|
|
73591
73824
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73825
|
+
format: "Svg";
|
|
73592
73826
|
nodeId: string;
|
|
73593
73827
|
fileId: string;
|
|
73594
|
-
format: "Svg";
|
|
73595
73828
|
fileVersionId?: string | undefined;
|
|
73596
73829
|
};
|
|
73597
73830
|
originId: string;
|
|
@@ -73606,9 +73839,9 @@ declare const AssetImportModelInput: z.ZodObject<{
|
|
|
73606
73839
|
type: "FigmaRender";
|
|
73607
73840
|
originKey: string;
|
|
73608
73841
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73842
|
+
format: "Svg";
|
|
73609
73843
|
nodeId: string;
|
|
73610
73844
|
fileId: string;
|
|
73611
|
-
format: "Svg";
|
|
73612
73845
|
fileVersionId?: string | undefined;
|
|
73613
73846
|
};
|
|
73614
73847
|
meta: {
|
|
@@ -73625,18 +73858,18 @@ declare const AssetImportModelInput: z.ZodObject<{
|
|
|
73625
73858
|
type: "FigmaRender";
|
|
73626
73859
|
originKey: string;
|
|
73627
73860
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73861
|
+
format: "Png";
|
|
73628
73862
|
nodeId: string;
|
|
73629
73863
|
fileId: string;
|
|
73630
|
-
format: "Png";
|
|
73631
73864
|
scale: number;
|
|
73632
73865
|
fileVersionId?: string | undefined;
|
|
73633
73866
|
} | {
|
|
73634
73867
|
type: "FigmaRender";
|
|
73635
73868
|
originKey: string;
|
|
73636
73869
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73870
|
+
format: "Svg";
|
|
73637
73871
|
nodeId: string;
|
|
73638
73872
|
fileId: string;
|
|
73639
|
-
format: "Svg";
|
|
73640
73873
|
fileVersionId?: string | undefined;
|
|
73641
73874
|
};
|
|
73642
73875
|
originId: string;
|
|
@@ -73708,18 +73941,18 @@ declare const FigmaPngRenderImportModel: z.ZodObject<{
|
|
|
73708
73941
|
type: "FigmaRender";
|
|
73709
73942
|
originKey: string;
|
|
73710
73943
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73944
|
+
format: "Png";
|
|
73711
73945
|
nodeId: string;
|
|
73712
73946
|
fileId: string;
|
|
73713
|
-
format: "Png";
|
|
73714
73947
|
scale: number;
|
|
73715
73948
|
fileVersionId?: string | undefined;
|
|
73716
73949
|
}, {
|
|
73717
73950
|
type: "FigmaRender";
|
|
73718
73951
|
originKey: string;
|
|
73719
73952
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73953
|
+
format: "Png";
|
|
73720
73954
|
nodeId: string;
|
|
73721
73955
|
fileId: string;
|
|
73722
|
-
format: "Png";
|
|
73723
73956
|
scale: number;
|
|
73724
73957
|
fileVersionId?: string | undefined;
|
|
73725
73958
|
}>;
|
|
@@ -73736,17 +73969,17 @@ declare const FigmaSvgRenderImportModel: z.ZodObject<{
|
|
|
73736
73969
|
type: "FigmaRender";
|
|
73737
73970
|
originKey: string;
|
|
73738
73971
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73972
|
+
format: "Svg";
|
|
73739
73973
|
nodeId: string;
|
|
73740
73974
|
fileId: string;
|
|
73741
|
-
format: "Svg";
|
|
73742
73975
|
fileVersionId?: string | undefined;
|
|
73743
73976
|
}, {
|
|
73744
73977
|
type: "FigmaRender";
|
|
73745
73978
|
originKey: string;
|
|
73746
73979
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73980
|
+
format: "Svg";
|
|
73747
73981
|
nodeId: string;
|
|
73748
73982
|
fileId: string;
|
|
73749
|
-
format: "Svg";
|
|
73750
73983
|
fileVersionId?: string | undefined;
|
|
73751
73984
|
}>;
|
|
73752
73985
|
type FigmaSvgRenderImportModel = z.infer<typeof FigmaSvgRenderImportModel>;
|
|
@@ -73763,18 +73996,18 @@ declare const FigmaRenderImportModel: z.ZodDiscriminatedUnion<"format", [z.ZodOb
|
|
|
73763
73996
|
type: "FigmaRender";
|
|
73764
73997
|
originKey: string;
|
|
73765
73998
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73999
|
+
format: "Png";
|
|
73766
74000
|
nodeId: string;
|
|
73767
74001
|
fileId: string;
|
|
73768
|
-
format: "Png";
|
|
73769
74002
|
scale: number;
|
|
73770
74003
|
fileVersionId?: string | undefined;
|
|
73771
74004
|
}, {
|
|
73772
74005
|
type: "FigmaRender";
|
|
73773
74006
|
originKey: string;
|
|
73774
74007
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
74008
|
+
format: "Png";
|
|
73775
74009
|
nodeId: string;
|
|
73776
74010
|
fileId: string;
|
|
73777
|
-
format: "Png";
|
|
73778
74011
|
scale: number;
|
|
73779
74012
|
fileVersionId?: string | undefined;
|
|
73780
74013
|
}>, z.ZodObject<{
|
|
@@ -73789,17 +74022,17 @@ declare const FigmaRenderImportModel: z.ZodDiscriminatedUnion<"format", [z.ZodOb
|
|
|
73789
74022
|
type: "FigmaRender";
|
|
73790
74023
|
originKey: string;
|
|
73791
74024
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
74025
|
+
format: "Svg";
|
|
73792
74026
|
nodeId: string;
|
|
73793
74027
|
fileId: string;
|
|
73794
|
-
format: "Svg";
|
|
73795
74028
|
fileVersionId?: string | undefined;
|
|
73796
74029
|
}, {
|
|
73797
74030
|
type: "FigmaRender";
|
|
73798
74031
|
originKey: string;
|
|
73799
74032
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
74033
|
+
format: "Svg";
|
|
73800
74034
|
nodeId: string;
|
|
73801
74035
|
fileId: string;
|
|
73802
|
-
format: "Svg";
|
|
73803
74036
|
fileVersionId?: string | undefined;
|
|
73804
74037
|
}>]>;
|
|
73805
74038
|
type FigmaRenderImportModel = z.infer<typeof FigmaRenderImportModel>;
|
|
@@ -73834,18 +74067,18 @@ declare const ImageImportModel: z.ZodUnion<[z.ZodObject<{
|
|
|
73834
74067
|
type: "FigmaRender";
|
|
73835
74068
|
originKey: string;
|
|
73836
74069
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
74070
|
+
format: "Png";
|
|
73837
74071
|
nodeId: string;
|
|
73838
74072
|
fileId: string;
|
|
73839
|
-
format: "Png";
|
|
73840
74073
|
scale: number;
|
|
73841
74074
|
fileVersionId?: string | undefined;
|
|
73842
74075
|
}, {
|
|
73843
74076
|
type: "FigmaRender";
|
|
73844
74077
|
originKey: string;
|
|
73845
74078
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
74079
|
+
format: "Png";
|
|
73846
74080
|
nodeId: string;
|
|
73847
74081
|
fileId: string;
|
|
73848
|
-
format: "Png";
|
|
73849
74082
|
scale: number;
|
|
73850
74083
|
fileVersionId?: string | undefined;
|
|
73851
74084
|
}>, z.ZodObject<{
|
|
@@ -73860,17 +74093,17 @@ declare const ImageImportModel: z.ZodUnion<[z.ZodObject<{
|
|
|
73860
74093
|
type: "FigmaRender";
|
|
73861
74094
|
originKey: string;
|
|
73862
74095
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
74096
|
+
format: "Svg";
|
|
73863
74097
|
nodeId: string;
|
|
73864
74098
|
fileId: string;
|
|
73865
|
-
format: "Svg";
|
|
73866
74099
|
fileVersionId?: string | undefined;
|
|
73867
74100
|
}, {
|
|
73868
74101
|
type: "FigmaRender";
|
|
73869
74102
|
originKey: string;
|
|
73870
74103
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
74104
|
+
format: "Svg";
|
|
73871
74105
|
nodeId: string;
|
|
73872
74106
|
fileId: string;
|
|
73873
|
-
format: "Svg";
|
|
73874
74107
|
fileVersionId?: string | undefined;
|
|
73875
74108
|
}>]>]>;
|
|
73876
74109
|
type ImageImportModel = z.infer<typeof ImageImportModel>;
|
|
@@ -114368,4 +114601,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
114368
114601
|
}>;
|
|
114369
114602
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
114370
114603
|
|
|
114371
|
-
export { Address, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BasePulsarProperty, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationGroupDTO, DocumentationItemConfiguration, DocumentationPage, DocumentationPageDTOV1, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupData, ElementGroupElementData, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, ExportJob, ExportJobStatus, Exporter, ExporterDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyOptions, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionVariant, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageType, PageBlockItemEmbedPropertyValue, PageBlockItemImageReference, PageBlockItemImageValue, PageBlockItemMultiRichTextPropertyValue, PageBlockItemRichTextPropertyValue, PageBlockItemTextPropertyValue, PageBlockItemUntypedPropertyValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, type PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarContributionBlock, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarPropertyType, type ResolvedAsset, SHORT_PERSISTENT_ID_LENGTH, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isTokenType, nullishToOptional, publishedDocEnvironments, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|
|
114604
|
+
export { Address, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BasePulsarProperty, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationGroupDTO, DocumentationItemConfiguration, DocumentationPage, DocumentationPageDTOV1, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupData, ElementGroupElementData, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, ExportJob, ExportJobStatus, Exporter, ExporterDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyOptions, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionVariant, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemImageReference, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, type PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarContributionBlock, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarPropertyType, type ResolvedAsset, SHORT_PERSISTENT_ID_LENGTH, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isTokenType, nullishToOptional, publishedDocEnvironments, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|