@supernova-studio/model 0.2.2 → 0.4.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 +2795 -698
- package/dist/index.d.ts +2795 -698
- package/dist/index.js +171 -30
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +175 -34
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/documentation-block-v2.ts +219 -42
package/dist/index.d.mts
CHANGED
|
@@ -8338,6 +8338,8 @@ declare const PageBlockImageType: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
|
8338
8338
|
type PageBlockImageType = z.infer<typeof PageBlockImageType>;
|
|
8339
8339
|
declare const PageBlockImageAlignment: z.ZodEnum<["Left", "Center", "Stretch"]>;
|
|
8340
8340
|
type PageBlockImageAlignment = z.infer<typeof PageBlockImageAlignment>;
|
|
8341
|
+
declare const PageBlockTableCellAlignment: z.ZodEnum<["Left", "Center", "Right"]>;
|
|
8342
|
+
type PageBlockTableCellAlignment = z.infer<typeof PageBlockTableCellAlignment>;
|
|
8341
8343
|
declare const PageBlockAppearanceV2: z.ZodObject<{
|
|
8342
8344
|
itemBackgroundColor: z.ZodObject<{
|
|
8343
8345
|
opacity: z.ZodObject<{
|
|
@@ -8437,349 +8439,14 @@ declare const PageBlockAppearanceV2: z.ZodObject<{
|
|
|
8437
8439
|
};
|
|
8438
8440
|
}>;
|
|
8439
8441
|
type PageBlockAppearanceV2 = z.infer<typeof PageBlockAppearanceV2>;
|
|
8440
|
-
declare const
|
|
8442
|
+
declare const PageBlockItemUntypedValue: z.ZodIntersection<z.ZodObject<{
|
|
8441
8443
|
value: z.ZodAny;
|
|
8442
8444
|
}, "strip", z.ZodTypeAny, {
|
|
8443
8445
|
value?: any;
|
|
8444
8446
|
}, {
|
|
8445
8447
|
value?: any;
|
|
8446
8448
|
}>, 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>;
|
|
8449
|
+
type PageBlockItemUntypedValue = z.infer<typeof PageBlockItemUntypedValue>;
|
|
8783
8450
|
declare const PageBlockLinkV2: z.ZodObject<{
|
|
8784
8451
|
type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
|
|
8785
8452
|
documentationItemId: z.ZodOptional<z.ZodString>;
|
|
@@ -8866,217 +8533,2647 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
8866
8533
|
unit: z.ZodEnum<["Raw", "Pixels"]>;
|
|
8867
8534
|
measure: z.ZodNumber;
|
|
8868
8535
|
}, "strip", z.ZodTypeAny, {
|
|
8869
|
-
unit: "Pixels" | "Raw";
|
|
8870
|
-
measure: number;
|
|
8536
|
+
unit: "Pixels" | "Raw";
|
|
8537
|
+
measure: number;
|
|
8538
|
+
}, {
|
|
8539
|
+
unit: "Pixels" | "Raw";
|
|
8540
|
+
measure: number;
|
|
8541
|
+
}>>>, {
|
|
8542
|
+
unit: "Pixels" | "Raw";
|
|
8543
|
+
measure: number;
|
|
8544
|
+
} | undefined, {
|
|
8545
|
+
unit: "Pixels" | "Raw";
|
|
8546
|
+
measure: number;
|
|
8547
|
+
} | null | undefined>;
|
|
8548
|
+
}, "strip", z.ZodTypeAny, {
|
|
8549
|
+
aliasTo?: string | undefined;
|
|
8550
|
+
value?: {
|
|
8551
|
+
unit: "Pixels" | "Raw";
|
|
8552
|
+
measure: number;
|
|
8553
|
+
} | undefined;
|
|
8554
|
+
}, {
|
|
8555
|
+
aliasTo?: string | null | undefined;
|
|
8556
|
+
value?: {
|
|
8557
|
+
unit: "Pixels" | "Raw";
|
|
8558
|
+
measure: number;
|
|
8559
|
+
} | null | undefined;
|
|
8560
|
+
}>;
|
|
8561
|
+
color: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
8562
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
8563
|
+
}, "strip", z.ZodTypeAny, {
|
|
8564
|
+
aliasTo?: string | undefined;
|
|
8565
|
+
}, {
|
|
8566
|
+
aliasTo?: string | null | undefined;
|
|
8567
|
+
}>]>;
|
|
8568
|
+
}, "strip", z.ZodTypeAny, {
|
|
8569
|
+
opacity: {
|
|
8570
|
+
aliasTo?: string | undefined;
|
|
8571
|
+
value?: {
|
|
8572
|
+
unit: "Pixels" | "Raw";
|
|
8573
|
+
measure: number;
|
|
8574
|
+
} | undefined;
|
|
8575
|
+
};
|
|
8576
|
+
color: (string | {
|
|
8577
|
+
aliasTo?: string | undefined;
|
|
8578
|
+
}) & (string | {
|
|
8579
|
+
aliasTo?: string | undefined;
|
|
8580
|
+
} | undefined);
|
|
8581
|
+
}, {
|
|
8582
|
+
opacity: {
|
|
8583
|
+
aliasTo?: string | null | undefined;
|
|
8584
|
+
value?: {
|
|
8585
|
+
unit: "Pixels" | "Raw";
|
|
8586
|
+
measure: number;
|
|
8587
|
+
} | null | undefined;
|
|
8588
|
+
};
|
|
8589
|
+
color: (string | {
|
|
8590
|
+
aliasTo?: string | null | undefined;
|
|
8591
|
+
}) & (string | {
|
|
8592
|
+
aliasTo?: string | null | undefined;
|
|
8593
|
+
} | undefined);
|
|
8594
|
+
}>;
|
|
8595
|
+
}, "strip", z.ZodTypeAny, {
|
|
8596
|
+
itemBackgroundColor: {
|
|
8597
|
+
opacity: {
|
|
8598
|
+
aliasTo?: string | undefined;
|
|
8599
|
+
value?: {
|
|
8600
|
+
unit: "Pixels" | "Raw";
|
|
8601
|
+
measure: number;
|
|
8602
|
+
} | undefined;
|
|
8603
|
+
};
|
|
8604
|
+
color: (string | {
|
|
8605
|
+
aliasTo?: string | undefined;
|
|
8606
|
+
}) & (string | {
|
|
8607
|
+
aliasTo?: string | undefined;
|
|
8608
|
+
} | undefined);
|
|
8609
|
+
};
|
|
8610
|
+
}, {
|
|
8611
|
+
itemBackgroundColor: {
|
|
8612
|
+
opacity: {
|
|
8613
|
+
aliasTo?: string | null | undefined;
|
|
8614
|
+
value?: {
|
|
8615
|
+
unit: "Pixels" | "Raw";
|
|
8616
|
+
measure: number;
|
|
8617
|
+
} | null | undefined;
|
|
8618
|
+
};
|
|
8619
|
+
color: (string | {
|
|
8620
|
+
aliasTo?: string | null | undefined;
|
|
8621
|
+
}) & (string | {
|
|
8622
|
+
aliasTo?: string | null | undefined;
|
|
8623
|
+
} | undefined);
|
|
8624
|
+
};
|
|
8625
|
+
}>>;
|
|
8626
|
+
items: z.ZodArray<z.ZodObject<{
|
|
8627
|
+
id: z.ZodString;
|
|
8628
|
+
linksTo: z.ZodOptional<z.ZodObject<{
|
|
8629
|
+
type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
|
|
8630
|
+
documentationItemId: z.ZodOptional<z.ZodString>;
|
|
8631
|
+
pageHeadingId: z.ZodOptional<z.ZodString>;
|
|
8632
|
+
url: z.ZodOptional<z.ZodString>;
|
|
8633
|
+
openInNewTab: z.ZodOptional<z.ZodBoolean>;
|
|
8634
|
+
}, "strip", z.ZodTypeAny, {
|
|
8635
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
8636
|
+
documentationItemId?: string | undefined;
|
|
8637
|
+
pageHeadingId?: string | undefined;
|
|
8638
|
+
url?: string | undefined;
|
|
8639
|
+
openInNewTab?: boolean | undefined;
|
|
8640
|
+
}, {
|
|
8641
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
8642
|
+
documentationItemId?: string | undefined;
|
|
8643
|
+
pageHeadingId?: string | undefined;
|
|
8644
|
+
url?: string | undefined;
|
|
8645
|
+
openInNewTab?: boolean | undefined;
|
|
8646
|
+
}>>;
|
|
8647
|
+
props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
|
|
8648
|
+
value: z.ZodAny;
|
|
8649
|
+
}, "strip", z.ZodTypeAny, {
|
|
8650
|
+
value?: any;
|
|
8651
|
+
}, {
|
|
8652
|
+
value?: any;
|
|
8653
|
+
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
8654
|
+
}, "strip", z.ZodTypeAny, {
|
|
8655
|
+
id: string;
|
|
8656
|
+
props: Record<string, {
|
|
8657
|
+
value?: any;
|
|
8658
|
+
} & Record<string, any>>;
|
|
8659
|
+
linksTo?: {
|
|
8660
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
8661
|
+
documentationItemId?: string | undefined;
|
|
8662
|
+
pageHeadingId?: string | undefined;
|
|
8663
|
+
url?: string | undefined;
|
|
8664
|
+
openInNewTab?: boolean | undefined;
|
|
8665
|
+
} | undefined;
|
|
8666
|
+
}, {
|
|
8667
|
+
id: string;
|
|
8668
|
+
props: Record<string, {
|
|
8669
|
+
value?: any;
|
|
8670
|
+
} & Record<string, any>>;
|
|
8671
|
+
linksTo?: {
|
|
8672
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
8673
|
+
documentationItemId?: string | undefined;
|
|
8674
|
+
pageHeadingId?: string | undefined;
|
|
8675
|
+
url?: string | undefined;
|
|
8676
|
+
openInNewTab?: boolean | undefined;
|
|
8677
|
+
} | undefined;
|
|
8678
|
+
}>, "many">;
|
|
8679
|
+
}, "strip", z.ZodTypeAny, {
|
|
8680
|
+
packageId: string;
|
|
8681
|
+
indentLevel: number;
|
|
8682
|
+
items: {
|
|
8683
|
+
id: string;
|
|
8684
|
+
props: Record<string, {
|
|
8685
|
+
value?: any;
|
|
8686
|
+
} & Record<string, any>>;
|
|
8687
|
+
linksTo?: {
|
|
8688
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
8689
|
+
documentationItemId?: string | undefined;
|
|
8690
|
+
pageHeadingId?: string | undefined;
|
|
8691
|
+
url?: string | undefined;
|
|
8692
|
+
openInNewTab?: boolean | undefined;
|
|
8693
|
+
} | undefined;
|
|
8694
|
+
}[];
|
|
8695
|
+
variantId?: string | undefined;
|
|
8696
|
+
appearance?: {
|
|
8697
|
+
itemBackgroundColor: {
|
|
8698
|
+
opacity: {
|
|
8699
|
+
aliasTo?: string | undefined;
|
|
8700
|
+
value?: {
|
|
8701
|
+
unit: "Pixels" | "Raw";
|
|
8702
|
+
measure: number;
|
|
8703
|
+
} | undefined;
|
|
8704
|
+
};
|
|
8705
|
+
color: (string | {
|
|
8706
|
+
aliasTo?: string | undefined;
|
|
8707
|
+
}) & (string | {
|
|
8708
|
+
aliasTo?: string | undefined;
|
|
8709
|
+
} | undefined);
|
|
8710
|
+
};
|
|
8711
|
+
} | undefined;
|
|
8712
|
+
}, {
|
|
8713
|
+
packageId: string;
|
|
8714
|
+
indentLevel: number;
|
|
8715
|
+
items: {
|
|
8716
|
+
id: string;
|
|
8717
|
+
props: Record<string, {
|
|
8718
|
+
value?: any;
|
|
8719
|
+
} & Record<string, any>>;
|
|
8720
|
+
linksTo?: {
|
|
8721
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
8722
|
+
documentationItemId?: string | undefined;
|
|
8723
|
+
pageHeadingId?: string | undefined;
|
|
8724
|
+
url?: string | undefined;
|
|
8725
|
+
openInNewTab?: boolean | undefined;
|
|
8726
|
+
} | undefined;
|
|
8727
|
+
}[];
|
|
8728
|
+
variantId?: string | undefined;
|
|
8729
|
+
appearance?: {
|
|
8730
|
+
itemBackgroundColor: {
|
|
8731
|
+
opacity: {
|
|
8732
|
+
aliasTo?: string | null | undefined;
|
|
8733
|
+
value?: {
|
|
8734
|
+
unit: "Pixels" | "Raw";
|
|
8735
|
+
measure: number;
|
|
8736
|
+
} | null | undefined;
|
|
8737
|
+
};
|
|
8738
|
+
color: (string | {
|
|
8739
|
+
aliasTo?: string | null | undefined;
|
|
8740
|
+
}) & (string | {
|
|
8741
|
+
aliasTo?: string | null | undefined;
|
|
8742
|
+
} | undefined);
|
|
8743
|
+
};
|
|
8744
|
+
} | undefined;
|
|
8745
|
+
}>;
|
|
8746
|
+
type PageBlockDataV2 = z.infer<typeof PageBlockDataV2>;
|
|
8747
|
+
declare const PageBlockItemImageReference: z.ZodObject<{
|
|
8748
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
8749
|
+
url: z.ZodString;
|
|
8750
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
8751
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
8752
|
+
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
8753
|
+
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
8754
|
+
}, "strip", z.ZodTypeAny, {
|
|
8755
|
+
width: number;
|
|
8756
|
+
height: number;
|
|
8757
|
+
}, {
|
|
8758
|
+
width?: number | null | undefined;
|
|
8759
|
+
height?: number | null | undefined;
|
|
8760
|
+
}>>;
|
|
8761
|
+
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
8762
|
+
sourceId: z.ZodString;
|
|
8763
|
+
frameId: z.ZodString;
|
|
8764
|
+
}, "strip", z.ZodTypeAny, {
|
|
8765
|
+
sourceId: string;
|
|
8766
|
+
frameId: string;
|
|
8767
|
+
}, {
|
|
8768
|
+
sourceId: string;
|
|
8769
|
+
frameId: string;
|
|
8770
|
+
}>>;
|
|
8771
|
+
}, "strip", z.ZodTypeAny, {
|
|
8772
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
8773
|
+
url: string;
|
|
8774
|
+
assetId?: string | undefined;
|
|
8775
|
+
size?: {
|
|
8776
|
+
width: number;
|
|
8777
|
+
height: number;
|
|
8778
|
+
} | undefined;
|
|
8779
|
+
figmaFile?: {
|
|
8780
|
+
sourceId: string;
|
|
8781
|
+
frameId: string;
|
|
8782
|
+
} | undefined;
|
|
8783
|
+
}, {
|
|
8784
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
8785
|
+
url: string;
|
|
8786
|
+
assetId?: string | undefined;
|
|
8787
|
+
size?: {
|
|
8788
|
+
width?: number | null | undefined;
|
|
8789
|
+
height?: number | null | undefined;
|
|
8790
|
+
} | undefined;
|
|
8791
|
+
figmaFile?: {
|
|
8792
|
+
sourceId: string;
|
|
8793
|
+
frameId: string;
|
|
8794
|
+
} | undefined;
|
|
8795
|
+
}>;
|
|
8796
|
+
type PageBlockItemImageReference = z.infer<typeof PageBlockItemImageReference>;
|
|
8797
|
+
declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
8798
|
+
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8799
|
+
showSearch: z.ZodOptional<z.ZodBoolean>;
|
|
8800
|
+
previewContainerSize: z.ZodOptional<z.ZodEnum<["Centered", "NaturalHeight"]>>;
|
|
8801
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
8802
|
+
value: z.ZodArray<z.ZodObject<{
|
|
8803
|
+
entityId: z.ZodString;
|
|
8804
|
+
entityType: z.ZodEnum<["Asset", "AssetGroup"]>;
|
|
8805
|
+
}, "strip", z.ZodTypeAny, {
|
|
8806
|
+
entityId: string;
|
|
8807
|
+
entityType: "Asset" | "AssetGroup";
|
|
8808
|
+
}, {
|
|
8809
|
+
entityId: string;
|
|
8810
|
+
entityType: "Asset" | "AssetGroup";
|
|
8811
|
+
}>, "many">;
|
|
8812
|
+
}, "strip", z.ZodTypeAny, {
|
|
8813
|
+
value: {
|
|
8814
|
+
entityId: string;
|
|
8815
|
+
entityType: "Asset" | "AssetGroup";
|
|
8816
|
+
}[];
|
|
8817
|
+
selectedPropertyIds?: string[] | undefined;
|
|
8818
|
+
showSearch?: boolean | undefined;
|
|
8819
|
+
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
8820
|
+
backgroundColor?: string | undefined;
|
|
8821
|
+
}, {
|
|
8822
|
+
value: {
|
|
8823
|
+
entityId: string;
|
|
8824
|
+
entityType: "Asset" | "AssetGroup";
|
|
8825
|
+
}[];
|
|
8826
|
+
selectedPropertyIds?: string[] | undefined;
|
|
8827
|
+
showSearch?: boolean | undefined;
|
|
8828
|
+
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
8829
|
+
backgroundColor?: string | undefined;
|
|
8830
|
+
}>;
|
|
8831
|
+
type PageBlockItemAssetValue = z.infer<typeof PageBlockItemAssetValue>;
|
|
8832
|
+
declare const PageBlockItemAssetPropertyValue: z.ZodObject<{
|
|
8833
|
+
value: z.ZodArray<z.ZodString, "many">;
|
|
8834
|
+
}, "strip", z.ZodTypeAny, {
|
|
8835
|
+
value: string[];
|
|
8836
|
+
}, {
|
|
8837
|
+
value: string[];
|
|
8838
|
+
}>;
|
|
8839
|
+
type PageBlockItemAssetPropertyValue = z.infer<typeof PageBlockItemAssetPropertyValue>;
|
|
8840
|
+
declare const PageBlockItemBooleanValue: z.ZodObject<{
|
|
8841
|
+
value: z.ZodBoolean;
|
|
8842
|
+
}, "strip", z.ZodTypeAny, {
|
|
8843
|
+
value: boolean;
|
|
8844
|
+
}, {
|
|
8845
|
+
value: boolean;
|
|
8846
|
+
}>;
|
|
8847
|
+
type PageBlockItemBooleanValue = z.infer<typeof PageBlockItemBooleanValue>;
|
|
8848
|
+
declare const PageBlockItemCodeValue: z.ZodObject<{
|
|
8849
|
+
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"]>>;
|
|
8850
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
8851
|
+
value: z.ZodString;
|
|
8852
|
+
}, "strip", z.ZodTypeAny, {
|
|
8853
|
+
value: string;
|
|
8854
|
+
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;
|
|
8855
|
+
caption?: string | undefined;
|
|
8856
|
+
}, {
|
|
8857
|
+
value: string;
|
|
8858
|
+
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;
|
|
8859
|
+
caption?: string | undefined;
|
|
8860
|
+
}>;
|
|
8861
|
+
type PageBlockItemCodeValue = z.infer<typeof PageBlockItemCodeValue>;
|
|
8862
|
+
declare const PageBlockItemSandboxValue: z.ZodObject<{
|
|
8863
|
+
showCode: z.ZodOptional<z.ZodBoolean>;
|
|
8864
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
8865
|
+
alignPreview: z.ZodOptional<z.ZodEnum<["Left", "Center"]>>;
|
|
8866
|
+
value: z.ZodString;
|
|
8867
|
+
}, "strip", z.ZodTypeAny, {
|
|
8868
|
+
value: string;
|
|
8869
|
+
showCode?: boolean | undefined;
|
|
8870
|
+
backgroundColor?: string | undefined;
|
|
8871
|
+
alignPreview?: "Center" | "Left" | undefined;
|
|
8872
|
+
}, {
|
|
8873
|
+
value: string;
|
|
8874
|
+
showCode?: boolean | undefined;
|
|
8875
|
+
backgroundColor?: string | undefined;
|
|
8876
|
+
alignPreview?: "Center" | "Left" | undefined;
|
|
8877
|
+
}>;
|
|
8878
|
+
type PageBlockItemSandboxValue = z.infer<typeof PageBlockItemSandboxValue>;
|
|
8879
|
+
declare const PageBlockItemColorValue: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
8880
|
+
type PageBlockItemColorValue = z.infer<typeof PageBlockItemColorValue>;
|
|
8881
|
+
declare const PageBlockItemComponentValue: z.ZodObject<{
|
|
8882
|
+
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8883
|
+
value: z.ZodArray<z.ZodObject<{
|
|
8884
|
+
entityId: z.ZodString;
|
|
8885
|
+
entityType: z.ZodEnum<["Component", "ComponentGroup"]>;
|
|
8886
|
+
}, "strip", z.ZodTypeAny, {
|
|
8887
|
+
entityId: string;
|
|
8888
|
+
entityType: "Component" | "ComponentGroup";
|
|
8889
|
+
}, {
|
|
8890
|
+
entityId: string;
|
|
8891
|
+
entityType: "Component" | "ComponentGroup";
|
|
8892
|
+
}>, "many">;
|
|
8893
|
+
}, "strip", z.ZodTypeAny, {
|
|
8894
|
+
value: {
|
|
8895
|
+
entityId: string;
|
|
8896
|
+
entityType: "Component" | "ComponentGroup";
|
|
8897
|
+
}[];
|
|
8898
|
+
selectedPropertyIds?: string[] | undefined;
|
|
8899
|
+
}, {
|
|
8900
|
+
value: {
|
|
8901
|
+
entityId: string;
|
|
8902
|
+
entityType: "Component" | "ComponentGroup";
|
|
8903
|
+
}[];
|
|
8904
|
+
selectedPropertyIds?: string[] | undefined;
|
|
8905
|
+
}>;
|
|
8906
|
+
type PageBlockItemComponentValue = z.infer<typeof PageBlockItemComponentValue>;
|
|
8907
|
+
declare const PageBlockItemComponentPropertyValue: z.ZodObject<{
|
|
8908
|
+
value: z.ZodString;
|
|
8909
|
+
}, "strip", z.ZodTypeAny, {
|
|
8910
|
+
value: string;
|
|
8911
|
+
}, {
|
|
8912
|
+
value: string;
|
|
8913
|
+
}>;
|
|
8914
|
+
type PageBlockItemComponentPropertyValue = z.infer<typeof PageBlockItemComponentPropertyValue>;
|
|
8915
|
+
declare const PageBlockItemDividerValue: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
8916
|
+
type PageBlockItemDividerValue = z.infer<typeof PageBlockItemDividerValue>;
|
|
8917
|
+
declare const PageBlockItemEmbedValue: z.ZodObject<{
|
|
8918
|
+
value: z.ZodOptional<z.ZodString>;
|
|
8919
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
8920
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
8921
|
+
}, "strip", z.ZodTypeAny, {
|
|
8922
|
+
value?: string | undefined;
|
|
8923
|
+
caption?: string | undefined;
|
|
8924
|
+
height?: number | undefined;
|
|
8925
|
+
}, {
|
|
8926
|
+
value?: string | undefined;
|
|
8927
|
+
caption?: string | undefined;
|
|
8928
|
+
height?: number | undefined;
|
|
8929
|
+
}>;
|
|
8930
|
+
type PageBlockItemEmbedValue = z.infer<typeof PageBlockItemEmbedValue>;
|
|
8931
|
+
declare const PageBlockItemImageValue: z.ZodObject<{
|
|
8932
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
8933
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
8934
|
+
alignment: z.ZodOptional<z.ZodEnum<["Left", "Center", "Stretch"]>>;
|
|
8935
|
+
value: z.ZodOptional<z.ZodObject<{
|
|
8936
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
8937
|
+
url: z.ZodString;
|
|
8938
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
8939
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
8940
|
+
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
8941
|
+
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
8942
|
+
}, "strip", z.ZodTypeAny, {
|
|
8943
|
+
width: number;
|
|
8944
|
+
height: number;
|
|
8945
|
+
}, {
|
|
8946
|
+
width?: number | null | undefined;
|
|
8947
|
+
height?: number | null | undefined;
|
|
8948
|
+
}>>;
|
|
8949
|
+
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
8950
|
+
sourceId: z.ZodString;
|
|
8951
|
+
frameId: z.ZodString;
|
|
8952
|
+
}, "strip", z.ZodTypeAny, {
|
|
8953
|
+
sourceId: string;
|
|
8954
|
+
frameId: string;
|
|
8955
|
+
}, {
|
|
8956
|
+
sourceId: string;
|
|
8957
|
+
frameId: string;
|
|
8958
|
+
}>>;
|
|
8959
|
+
}, "strip", z.ZodTypeAny, {
|
|
8960
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
8961
|
+
url: string;
|
|
8962
|
+
assetId?: string | undefined;
|
|
8963
|
+
size?: {
|
|
8964
|
+
width: number;
|
|
8965
|
+
height: number;
|
|
8966
|
+
} | undefined;
|
|
8967
|
+
figmaFile?: {
|
|
8968
|
+
sourceId: string;
|
|
8969
|
+
frameId: string;
|
|
8970
|
+
} | undefined;
|
|
8971
|
+
}, {
|
|
8972
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
8973
|
+
url: string;
|
|
8974
|
+
assetId?: string | undefined;
|
|
8975
|
+
size?: {
|
|
8976
|
+
width?: number | null | undefined;
|
|
8977
|
+
height?: number | null | undefined;
|
|
8978
|
+
} | undefined;
|
|
8979
|
+
figmaFile?: {
|
|
8980
|
+
sourceId: string;
|
|
8981
|
+
frameId: string;
|
|
8982
|
+
} | undefined;
|
|
8983
|
+
}>>;
|
|
8984
|
+
}, "strip", z.ZodTypeAny, {
|
|
8985
|
+
alt?: string | undefined;
|
|
8986
|
+
caption?: string | undefined;
|
|
8987
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
8988
|
+
value?: {
|
|
8989
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
8990
|
+
url: string;
|
|
8991
|
+
assetId?: string | undefined;
|
|
8992
|
+
size?: {
|
|
8993
|
+
width: number;
|
|
8994
|
+
height: number;
|
|
8995
|
+
} | undefined;
|
|
8996
|
+
figmaFile?: {
|
|
8997
|
+
sourceId: string;
|
|
8998
|
+
frameId: string;
|
|
8999
|
+
} | undefined;
|
|
9000
|
+
} | undefined;
|
|
9001
|
+
}, {
|
|
9002
|
+
alt?: string | undefined;
|
|
9003
|
+
caption?: string | undefined;
|
|
9004
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
9005
|
+
value?: {
|
|
9006
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9007
|
+
url: string;
|
|
9008
|
+
assetId?: string | undefined;
|
|
9009
|
+
size?: {
|
|
9010
|
+
width?: number | null | undefined;
|
|
9011
|
+
height?: number | null | undefined;
|
|
9012
|
+
} | undefined;
|
|
9013
|
+
figmaFile?: {
|
|
9014
|
+
sourceId: string;
|
|
9015
|
+
frameId: string;
|
|
9016
|
+
} | undefined;
|
|
9017
|
+
} | undefined;
|
|
9018
|
+
}>;
|
|
9019
|
+
type PageBlockItemImageValue = z.infer<typeof PageBlockItemImageValue>;
|
|
9020
|
+
declare const PageBlockItemMarkdownValue: z.ZodObject<{
|
|
9021
|
+
value: z.ZodString;
|
|
9022
|
+
}, "strip", z.ZodTypeAny, {
|
|
9023
|
+
value: string;
|
|
9024
|
+
}, {
|
|
9025
|
+
value: string;
|
|
9026
|
+
}>;
|
|
9027
|
+
type PageBlockItemMarkdownValue = z.infer<typeof PageBlockItemMarkdownValue>;
|
|
9028
|
+
declare const PageBlockItemMultiRichTextValue: z.ZodObject<{
|
|
9029
|
+
value: z.ZodArray<z.ZodObject<{
|
|
9030
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
9031
|
+
text: z.ZodString;
|
|
9032
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
9033
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
9034
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9035
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9036
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
9037
|
+
}, "strip", z.ZodTypeAny, {
|
|
9038
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9039
|
+
link?: string | undefined;
|
|
9040
|
+
documentationItemId?: string | undefined;
|
|
9041
|
+
openInNewWindow?: boolean | undefined;
|
|
9042
|
+
}, {
|
|
9043
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9044
|
+
link?: string | null | undefined;
|
|
9045
|
+
documentationItemId?: string | null | undefined;
|
|
9046
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9047
|
+
}>, "many">;
|
|
9048
|
+
}, "strip", z.ZodTypeAny, {
|
|
9049
|
+
text: string;
|
|
9050
|
+
attributes: {
|
|
9051
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9052
|
+
link?: string | undefined;
|
|
9053
|
+
documentationItemId?: string | undefined;
|
|
9054
|
+
openInNewWindow?: boolean | undefined;
|
|
9055
|
+
}[];
|
|
9056
|
+
}, {
|
|
9057
|
+
text: string;
|
|
9058
|
+
attributes: {
|
|
9059
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9060
|
+
link?: string | null | undefined;
|
|
9061
|
+
documentationItemId?: string | null | undefined;
|
|
9062
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9063
|
+
}[];
|
|
9064
|
+
}>, "many">;
|
|
9065
|
+
}, "strip", z.ZodTypeAny, {
|
|
9066
|
+
spans: {
|
|
9067
|
+
text: string;
|
|
9068
|
+
attributes: {
|
|
9069
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9070
|
+
link?: string | undefined;
|
|
9071
|
+
documentationItemId?: string | undefined;
|
|
9072
|
+
openInNewWindow?: boolean | undefined;
|
|
9073
|
+
}[];
|
|
9074
|
+
}[];
|
|
9075
|
+
}, {
|
|
9076
|
+
spans: {
|
|
9077
|
+
text: string;
|
|
9078
|
+
attributes: {
|
|
9079
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9080
|
+
link?: string | null | undefined;
|
|
9081
|
+
documentationItemId?: string | null | undefined;
|
|
9082
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9083
|
+
}[];
|
|
9084
|
+
}[];
|
|
9085
|
+
}>, "many">;
|
|
9086
|
+
}, "strip", z.ZodTypeAny, {
|
|
9087
|
+
value: {
|
|
9088
|
+
spans: {
|
|
9089
|
+
text: string;
|
|
9090
|
+
attributes: {
|
|
9091
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9092
|
+
link?: string | undefined;
|
|
9093
|
+
documentationItemId?: string | undefined;
|
|
9094
|
+
openInNewWindow?: boolean | undefined;
|
|
9095
|
+
}[];
|
|
9096
|
+
}[];
|
|
9097
|
+
}[];
|
|
9098
|
+
}, {
|
|
9099
|
+
value: {
|
|
9100
|
+
spans: {
|
|
9101
|
+
text: string;
|
|
9102
|
+
attributes: {
|
|
9103
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9104
|
+
link?: string | null | undefined;
|
|
9105
|
+
documentationItemId?: string | null | undefined;
|
|
9106
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9107
|
+
}[];
|
|
9108
|
+
}[];
|
|
9109
|
+
}[];
|
|
9110
|
+
}>;
|
|
9111
|
+
type PageBlockItemMultiRichTextValue = z.infer<typeof PageBlockItemMultiRichTextValue>;
|
|
9112
|
+
declare const PageBlockItemMultiSelectValue: z.ZodObject<{
|
|
9113
|
+
value: z.ZodArray<z.ZodString, "many">;
|
|
9114
|
+
}, "strip", z.ZodTypeAny, {
|
|
9115
|
+
value: string[];
|
|
9116
|
+
}, {
|
|
9117
|
+
value: string[];
|
|
9118
|
+
}>;
|
|
9119
|
+
type PageBlockItemMultiSelectValue = z.infer<typeof PageBlockItemMultiSelectValue>;
|
|
9120
|
+
declare const PageBlockItemNumberValue: z.ZodObject<{
|
|
9121
|
+
value: z.ZodNumber;
|
|
9122
|
+
}, "strip", z.ZodTypeAny, {
|
|
9123
|
+
value: number;
|
|
9124
|
+
}, {
|
|
9125
|
+
value: number;
|
|
9126
|
+
}>;
|
|
9127
|
+
type PageBlockItemNumberValue = z.infer<typeof PageBlockItemNumberValue>;
|
|
9128
|
+
declare const PageBlockItemRichTextValue: z.ZodObject<{
|
|
9129
|
+
value: z.ZodObject<{
|
|
9130
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
9131
|
+
text: z.ZodString;
|
|
9132
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
9133
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
9134
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9135
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9136
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
9137
|
+
}, "strip", z.ZodTypeAny, {
|
|
9138
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9139
|
+
link?: string | undefined;
|
|
9140
|
+
documentationItemId?: string | undefined;
|
|
9141
|
+
openInNewWindow?: boolean | undefined;
|
|
9142
|
+
}, {
|
|
9143
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9144
|
+
link?: string | null | undefined;
|
|
9145
|
+
documentationItemId?: string | null | undefined;
|
|
9146
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9147
|
+
}>, "many">;
|
|
9148
|
+
}, "strip", z.ZodTypeAny, {
|
|
9149
|
+
text: string;
|
|
9150
|
+
attributes: {
|
|
9151
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9152
|
+
link?: string | undefined;
|
|
9153
|
+
documentationItemId?: string | undefined;
|
|
9154
|
+
openInNewWindow?: boolean | undefined;
|
|
9155
|
+
}[];
|
|
9156
|
+
}, {
|
|
9157
|
+
text: string;
|
|
9158
|
+
attributes: {
|
|
9159
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9160
|
+
link?: string | null | undefined;
|
|
9161
|
+
documentationItemId?: string | null | undefined;
|
|
9162
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9163
|
+
}[];
|
|
9164
|
+
}>, "many">;
|
|
9165
|
+
}, "strip", z.ZodTypeAny, {
|
|
9166
|
+
spans: {
|
|
9167
|
+
text: string;
|
|
9168
|
+
attributes: {
|
|
9169
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9170
|
+
link?: string | undefined;
|
|
9171
|
+
documentationItemId?: string | undefined;
|
|
9172
|
+
openInNewWindow?: boolean | undefined;
|
|
9173
|
+
}[];
|
|
9174
|
+
}[];
|
|
9175
|
+
}, {
|
|
9176
|
+
spans: {
|
|
9177
|
+
text: string;
|
|
9178
|
+
attributes: {
|
|
9179
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9180
|
+
link?: string | null | undefined;
|
|
9181
|
+
documentationItemId?: string | null | undefined;
|
|
9182
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9183
|
+
}[];
|
|
9184
|
+
}[];
|
|
9185
|
+
}>;
|
|
9186
|
+
calloutType: z.ZodOptional<z.ZodEnum<["Info", "Success", "Warning", "Error"]>>;
|
|
9187
|
+
}, "strip", z.ZodTypeAny, {
|
|
9188
|
+
value: {
|
|
9189
|
+
spans: {
|
|
9190
|
+
text: string;
|
|
9191
|
+
attributes: {
|
|
9192
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9193
|
+
link?: string | undefined;
|
|
9194
|
+
documentationItemId?: string | undefined;
|
|
9195
|
+
openInNewWindow?: boolean | undefined;
|
|
9196
|
+
}[];
|
|
9197
|
+
}[];
|
|
9198
|
+
};
|
|
9199
|
+
calloutType?: "Info" | "Success" | "Warning" | "Error" | undefined;
|
|
9200
|
+
}, {
|
|
9201
|
+
value: {
|
|
9202
|
+
spans: {
|
|
9203
|
+
text: string;
|
|
9204
|
+
attributes: {
|
|
9205
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9206
|
+
link?: string | null | undefined;
|
|
9207
|
+
documentationItemId?: string | null | undefined;
|
|
9208
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9209
|
+
}[];
|
|
9210
|
+
}[];
|
|
9211
|
+
};
|
|
9212
|
+
calloutType?: "Info" | "Success" | "Warning" | "Error" | undefined;
|
|
9213
|
+
}>;
|
|
9214
|
+
type PageBlockItemRichTextValue = z.infer<typeof PageBlockItemRichTextValue>;
|
|
9215
|
+
declare const PageBlockItemSingleSelectValue: z.ZodObject<{
|
|
9216
|
+
value: z.ZodString;
|
|
9217
|
+
}, "strip", z.ZodTypeAny, {
|
|
9218
|
+
value: string;
|
|
9219
|
+
}, {
|
|
9220
|
+
value: string;
|
|
9221
|
+
}>;
|
|
9222
|
+
type PageBlockItemSingleSelectValue = z.infer<typeof PageBlockItemSingleSelectValue>;
|
|
9223
|
+
declare const PageBlockItemStorybookValue: z.ZodObject<{
|
|
9224
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
9225
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
9226
|
+
showAddons: z.ZodOptional<z.ZodBoolean>;
|
|
9227
|
+
value: z.ZodString;
|
|
9228
|
+
}, "strip", z.ZodTypeAny, {
|
|
9229
|
+
value: string;
|
|
9230
|
+
caption?: string | undefined;
|
|
9231
|
+
height?: number | undefined;
|
|
9232
|
+
showAddons?: boolean | undefined;
|
|
9233
|
+
}, {
|
|
9234
|
+
value: string;
|
|
9235
|
+
caption?: string | undefined;
|
|
9236
|
+
height?: number | undefined;
|
|
9237
|
+
showAddons?: boolean | undefined;
|
|
9238
|
+
}>;
|
|
9239
|
+
type PageBlockItemStorybookValue = z.infer<typeof PageBlockItemStorybookValue>;
|
|
9240
|
+
declare const PageBlockItemTextValue: z.ZodObject<{
|
|
9241
|
+
value: z.ZodString;
|
|
9242
|
+
}, "strip", z.ZodTypeAny, {
|
|
9243
|
+
value: string;
|
|
9244
|
+
}, {
|
|
9245
|
+
value: string;
|
|
9246
|
+
}>;
|
|
9247
|
+
type PageBlockItemTextValue = z.infer<typeof PageBlockItemTextValue>;
|
|
9248
|
+
declare const PageBlockItemTokenValue: z.ZodObject<{
|
|
9249
|
+
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9250
|
+
selectedThemeIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9251
|
+
value: z.ZodArray<z.ZodObject<{
|
|
9252
|
+
entityId: z.ZodString;
|
|
9253
|
+
entityType: z.ZodEnum<["Token", "TokenGroup"]>;
|
|
9254
|
+
}, "strip", z.ZodTypeAny, {
|
|
9255
|
+
entityId: string;
|
|
9256
|
+
entityType: "Token" | "TokenGroup";
|
|
9257
|
+
}, {
|
|
9258
|
+
entityId: string;
|
|
9259
|
+
entityType: "Token" | "TokenGroup";
|
|
9260
|
+
}>, "many">;
|
|
9261
|
+
}, "strip", z.ZodTypeAny, {
|
|
9262
|
+
value: {
|
|
9263
|
+
entityId: string;
|
|
9264
|
+
entityType: "Token" | "TokenGroup";
|
|
9265
|
+
}[];
|
|
9266
|
+
selectedPropertyIds?: string[] | undefined;
|
|
9267
|
+
selectedThemeIds?: string[] | undefined;
|
|
9268
|
+
}, {
|
|
9269
|
+
value: {
|
|
9270
|
+
entityId: string;
|
|
9271
|
+
entityType: "Token" | "TokenGroup";
|
|
9272
|
+
}[];
|
|
9273
|
+
selectedPropertyIds?: string[] | undefined;
|
|
9274
|
+
selectedThemeIds?: string[] | undefined;
|
|
9275
|
+
}>;
|
|
9276
|
+
type PageBlockItemTokenValue = z.infer<typeof PageBlockItemTokenValue>;
|
|
9277
|
+
declare const PageBlockItemTokenPropertyValue: z.ZodObject<{
|
|
9278
|
+
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9279
|
+
selectedThemeIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9280
|
+
value: z.ZodArray<z.ZodString, "many">;
|
|
9281
|
+
}, "strip", z.ZodTypeAny, {
|
|
9282
|
+
value: string[];
|
|
9283
|
+
selectedPropertyIds?: string[] | undefined;
|
|
9284
|
+
selectedThemeIds?: string[] | undefined;
|
|
9285
|
+
}, {
|
|
9286
|
+
value: string[];
|
|
9287
|
+
selectedPropertyIds?: string[] | undefined;
|
|
9288
|
+
selectedThemeIds?: string[] | undefined;
|
|
9289
|
+
}>;
|
|
9290
|
+
type PageBlockItemTokenPropertyValue = z.infer<typeof PageBlockItemTokenPropertyValue>;
|
|
9291
|
+
declare const PageBlockItemTokenTypeValue: z.ZodObject<{
|
|
9292
|
+
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">;
|
|
9293
|
+
}, "strip", z.ZodTypeAny, {
|
|
9294
|
+
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")[];
|
|
9295
|
+
}, {
|
|
9296
|
+
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")[];
|
|
9297
|
+
}>;
|
|
9298
|
+
type PageBlockItemTokenTypeValue = z.infer<typeof PageBlockItemTokenTypeValue>;
|
|
9299
|
+
declare const PageBlockItemUrlValue: z.ZodObject<{
|
|
9300
|
+
value: z.ZodString;
|
|
9301
|
+
}, "strip", z.ZodTypeAny, {
|
|
9302
|
+
value: string;
|
|
9303
|
+
}, {
|
|
9304
|
+
value: string;
|
|
9305
|
+
}>;
|
|
9306
|
+
type PageBlockItemUrlValue = z.infer<typeof PageBlockItemUrlValue>;
|
|
9307
|
+
declare const PageBlockItemTableRichTextNode: z.ZodObject<{
|
|
9308
|
+
type: z.ZodLiteral<"RichText">;
|
|
9309
|
+
value: z.ZodObject<{
|
|
9310
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
9311
|
+
text: z.ZodString;
|
|
9312
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
9313
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
9314
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9315
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9316
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
9317
|
+
}, "strip", z.ZodTypeAny, {
|
|
9318
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9319
|
+
link?: string | undefined;
|
|
9320
|
+
documentationItemId?: string | undefined;
|
|
9321
|
+
openInNewWindow?: boolean | undefined;
|
|
9322
|
+
}, {
|
|
9323
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9324
|
+
link?: string | null | undefined;
|
|
9325
|
+
documentationItemId?: string | null | undefined;
|
|
9326
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9327
|
+
}>, "many">;
|
|
9328
|
+
}, "strip", z.ZodTypeAny, {
|
|
9329
|
+
text: string;
|
|
9330
|
+
attributes: {
|
|
9331
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9332
|
+
link?: string | undefined;
|
|
9333
|
+
documentationItemId?: string | undefined;
|
|
9334
|
+
openInNewWindow?: boolean | undefined;
|
|
9335
|
+
}[];
|
|
9336
|
+
}, {
|
|
9337
|
+
text: string;
|
|
9338
|
+
attributes: {
|
|
9339
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9340
|
+
link?: string | null | undefined;
|
|
9341
|
+
documentationItemId?: string | null | undefined;
|
|
9342
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9343
|
+
}[];
|
|
9344
|
+
}>, "many">;
|
|
9345
|
+
}, "strip", z.ZodTypeAny, {
|
|
9346
|
+
spans: {
|
|
9347
|
+
text: string;
|
|
9348
|
+
attributes: {
|
|
9349
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9350
|
+
link?: string | undefined;
|
|
9351
|
+
documentationItemId?: string | undefined;
|
|
9352
|
+
openInNewWindow?: boolean | undefined;
|
|
9353
|
+
}[];
|
|
9354
|
+
}[];
|
|
9355
|
+
}, {
|
|
9356
|
+
spans: {
|
|
9357
|
+
text: string;
|
|
9358
|
+
attributes: {
|
|
9359
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9360
|
+
link?: string | null | undefined;
|
|
9361
|
+
documentationItemId?: string | null | undefined;
|
|
9362
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9363
|
+
}[];
|
|
9364
|
+
}[];
|
|
9365
|
+
}>;
|
|
9366
|
+
}, "strip", z.ZodTypeAny, {
|
|
9367
|
+
type: "RichText";
|
|
9368
|
+
value: {
|
|
9369
|
+
spans: {
|
|
9370
|
+
text: string;
|
|
9371
|
+
attributes: {
|
|
9372
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9373
|
+
link?: string | undefined;
|
|
9374
|
+
documentationItemId?: string | undefined;
|
|
9375
|
+
openInNewWindow?: boolean | undefined;
|
|
9376
|
+
}[];
|
|
9377
|
+
}[];
|
|
9378
|
+
};
|
|
9379
|
+
}, {
|
|
9380
|
+
type: "RichText";
|
|
9381
|
+
value: {
|
|
9382
|
+
spans: {
|
|
9383
|
+
text: string;
|
|
9384
|
+
attributes: {
|
|
9385
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9386
|
+
link?: string | null | undefined;
|
|
9387
|
+
documentationItemId?: string | null | undefined;
|
|
9388
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9389
|
+
}[];
|
|
9390
|
+
}[];
|
|
9391
|
+
};
|
|
9392
|
+
}>;
|
|
9393
|
+
type PageBlockItemTableRichTextNode = z.infer<typeof PageBlockItemTableRichTextNode>;
|
|
9394
|
+
declare const PageBlockItemTableMultiRichTextNode: z.ZodObject<{
|
|
9395
|
+
type: z.ZodLiteral<"MultiRichText">;
|
|
9396
|
+
value: z.ZodArray<z.ZodObject<{
|
|
9397
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
9398
|
+
text: z.ZodString;
|
|
9399
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
9400
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
9401
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9402
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9403
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
9404
|
+
}, "strip", z.ZodTypeAny, {
|
|
9405
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9406
|
+
link?: string | undefined;
|
|
9407
|
+
documentationItemId?: string | undefined;
|
|
9408
|
+
openInNewWindow?: boolean | undefined;
|
|
9409
|
+
}, {
|
|
9410
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9411
|
+
link?: string | null | undefined;
|
|
9412
|
+
documentationItemId?: string | null | undefined;
|
|
9413
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9414
|
+
}>, "many">;
|
|
9415
|
+
}, "strip", z.ZodTypeAny, {
|
|
9416
|
+
text: string;
|
|
9417
|
+
attributes: {
|
|
9418
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9419
|
+
link?: string | undefined;
|
|
9420
|
+
documentationItemId?: string | undefined;
|
|
9421
|
+
openInNewWindow?: boolean | undefined;
|
|
9422
|
+
}[];
|
|
9423
|
+
}, {
|
|
9424
|
+
text: string;
|
|
9425
|
+
attributes: {
|
|
9426
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9427
|
+
link?: string | null | undefined;
|
|
9428
|
+
documentationItemId?: string | null | undefined;
|
|
9429
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9430
|
+
}[];
|
|
9431
|
+
}>, "many">;
|
|
9432
|
+
}, "strip", z.ZodTypeAny, {
|
|
9433
|
+
spans: {
|
|
9434
|
+
text: string;
|
|
9435
|
+
attributes: {
|
|
9436
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9437
|
+
link?: string | undefined;
|
|
9438
|
+
documentationItemId?: string | undefined;
|
|
9439
|
+
openInNewWindow?: boolean | undefined;
|
|
9440
|
+
}[];
|
|
9441
|
+
}[];
|
|
9442
|
+
}, {
|
|
9443
|
+
spans: {
|
|
9444
|
+
text: string;
|
|
9445
|
+
attributes: {
|
|
9446
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9447
|
+
link?: string | null | undefined;
|
|
9448
|
+
documentationItemId?: string | null | undefined;
|
|
9449
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9450
|
+
}[];
|
|
9451
|
+
}[];
|
|
9452
|
+
}>, "many">;
|
|
9453
|
+
}, "strip", z.ZodTypeAny, {
|
|
9454
|
+
type: "MultiRichText";
|
|
9455
|
+
value: {
|
|
9456
|
+
spans: {
|
|
9457
|
+
text: string;
|
|
9458
|
+
attributes: {
|
|
9459
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9460
|
+
link?: string | undefined;
|
|
9461
|
+
documentationItemId?: string | undefined;
|
|
9462
|
+
openInNewWindow?: boolean | undefined;
|
|
9463
|
+
}[];
|
|
9464
|
+
}[];
|
|
9465
|
+
}[];
|
|
9466
|
+
}, {
|
|
9467
|
+
type: "MultiRichText";
|
|
9468
|
+
value: {
|
|
9469
|
+
spans: {
|
|
9470
|
+
text: string;
|
|
9471
|
+
attributes: {
|
|
9472
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9473
|
+
link?: string | null | undefined;
|
|
9474
|
+
documentationItemId?: string | null | undefined;
|
|
9475
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9476
|
+
}[];
|
|
9477
|
+
}[];
|
|
9478
|
+
}[];
|
|
9479
|
+
}>;
|
|
9480
|
+
type PageBlockItemTableMultiRichTextNode = z.infer<typeof PageBlockItemTableMultiRichTextNode>;
|
|
9481
|
+
declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
9482
|
+
type: z.ZodLiteral<"Image">;
|
|
9483
|
+
value: z.ZodOptional<z.ZodObject<{
|
|
9484
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
9485
|
+
url: z.ZodString;
|
|
9486
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
9487
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
9488
|
+
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
9489
|
+
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
9490
|
+
}, "strip", z.ZodTypeAny, {
|
|
9491
|
+
width: number;
|
|
9492
|
+
height: number;
|
|
9493
|
+
}, {
|
|
9494
|
+
width?: number | null | undefined;
|
|
9495
|
+
height?: number | null | undefined;
|
|
9496
|
+
}>>;
|
|
9497
|
+
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
9498
|
+
sourceId: z.ZodString;
|
|
9499
|
+
frameId: z.ZodString;
|
|
9500
|
+
}, "strip", z.ZodTypeAny, {
|
|
9501
|
+
sourceId: string;
|
|
9502
|
+
frameId: string;
|
|
9503
|
+
}, {
|
|
9504
|
+
sourceId: string;
|
|
9505
|
+
frameId: string;
|
|
9506
|
+
}>>;
|
|
9507
|
+
}, "strip", z.ZodTypeAny, {
|
|
9508
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9509
|
+
url: string;
|
|
9510
|
+
assetId?: string | undefined;
|
|
9511
|
+
size?: {
|
|
9512
|
+
width: number;
|
|
9513
|
+
height: number;
|
|
9514
|
+
} | undefined;
|
|
9515
|
+
figmaFile?: {
|
|
9516
|
+
sourceId: string;
|
|
9517
|
+
frameId: string;
|
|
9518
|
+
} | undefined;
|
|
9519
|
+
}, {
|
|
9520
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9521
|
+
url: string;
|
|
9522
|
+
assetId?: string | undefined;
|
|
9523
|
+
size?: {
|
|
9524
|
+
width?: number | null | undefined;
|
|
9525
|
+
height?: number | null | undefined;
|
|
9526
|
+
} | undefined;
|
|
9527
|
+
figmaFile?: {
|
|
9528
|
+
sourceId: string;
|
|
9529
|
+
frameId: string;
|
|
9530
|
+
} | undefined;
|
|
9531
|
+
}>>;
|
|
9532
|
+
}, "strip", z.ZodTypeAny, {
|
|
9533
|
+
type: "Image";
|
|
9534
|
+
value?: {
|
|
9535
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9536
|
+
url: string;
|
|
9537
|
+
assetId?: string | undefined;
|
|
9538
|
+
size?: {
|
|
9539
|
+
width: number;
|
|
9540
|
+
height: number;
|
|
9541
|
+
} | undefined;
|
|
9542
|
+
figmaFile?: {
|
|
9543
|
+
sourceId: string;
|
|
9544
|
+
frameId: string;
|
|
9545
|
+
} | undefined;
|
|
9546
|
+
} | undefined;
|
|
9547
|
+
}, {
|
|
9548
|
+
type: "Image";
|
|
9549
|
+
value?: {
|
|
9550
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9551
|
+
url: string;
|
|
9552
|
+
assetId?: string | undefined;
|
|
9553
|
+
size?: {
|
|
9554
|
+
width?: number | null | undefined;
|
|
9555
|
+
height?: number | null | undefined;
|
|
9556
|
+
} | undefined;
|
|
9557
|
+
figmaFile?: {
|
|
9558
|
+
sourceId: string;
|
|
9559
|
+
frameId: string;
|
|
9560
|
+
} | undefined;
|
|
9561
|
+
} | undefined;
|
|
9562
|
+
}>;
|
|
9563
|
+
type PageBlockItemTableImageNode = z.infer<typeof PageBlockItemTableImageNode>;
|
|
9564
|
+
declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
9565
|
+
type: z.ZodLiteral<"RichText">;
|
|
9566
|
+
value: z.ZodObject<{
|
|
9567
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
9568
|
+
text: z.ZodString;
|
|
9569
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
9570
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
9571
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9572
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9573
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
9574
|
+
}, "strip", z.ZodTypeAny, {
|
|
9575
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9576
|
+
link?: string | undefined;
|
|
9577
|
+
documentationItemId?: string | undefined;
|
|
9578
|
+
openInNewWindow?: boolean | undefined;
|
|
9579
|
+
}, {
|
|
9580
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9581
|
+
link?: string | null | undefined;
|
|
9582
|
+
documentationItemId?: string | null | undefined;
|
|
9583
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9584
|
+
}>, "many">;
|
|
9585
|
+
}, "strip", z.ZodTypeAny, {
|
|
9586
|
+
text: string;
|
|
9587
|
+
attributes: {
|
|
9588
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9589
|
+
link?: string | undefined;
|
|
9590
|
+
documentationItemId?: string | undefined;
|
|
9591
|
+
openInNewWindow?: boolean | undefined;
|
|
9592
|
+
}[];
|
|
9593
|
+
}, {
|
|
9594
|
+
text: string;
|
|
9595
|
+
attributes: {
|
|
9596
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9597
|
+
link?: string | null | undefined;
|
|
9598
|
+
documentationItemId?: string | null | undefined;
|
|
9599
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9600
|
+
}[];
|
|
9601
|
+
}>, "many">;
|
|
9602
|
+
}, "strip", z.ZodTypeAny, {
|
|
9603
|
+
spans: {
|
|
9604
|
+
text: string;
|
|
9605
|
+
attributes: {
|
|
9606
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9607
|
+
link?: string | undefined;
|
|
9608
|
+
documentationItemId?: string | undefined;
|
|
9609
|
+
openInNewWindow?: boolean | undefined;
|
|
9610
|
+
}[];
|
|
9611
|
+
}[];
|
|
9612
|
+
}, {
|
|
9613
|
+
spans: {
|
|
9614
|
+
text: string;
|
|
9615
|
+
attributes: {
|
|
9616
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9617
|
+
link?: string | null | undefined;
|
|
9618
|
+
documentationItemId?: string | null | undefined;
|
|
9619
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9620
|
+
}[];
|
|
9621
|
+
}[];
|
|
9622
|
+
}>;
|
|
9623
|
+
}, "strip", z.ZodTypeAny, {
|
|
9624
|
+
type: "RichText";
|
|
9625
|
+
value: {
|
|
9626
|
+
spans: {
|
|
9627
|
+
text: string;
|
|
9628
|
+
attributes: {
|
|
9629
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9630
|
+
link?: string | undefined;
|
|
9631
|
+
documentationItemId?: string | undefined;
|
|
9632
|
+
openInNewWindow?: boolean | undefined;
|
|
9633
|
+
}[];
|
|
9634
|
+
}[];
|
|
9635
|
+
};
|
|
9636
|
+
}, {
|
|
9637
|
+
type: "RichText";
|
|
9638
|
+
value: {
|
|
9639
|
+
spans: {
|
|
9640
|
+
text: string;
|
|
9641
|
+
attributes: {
|
|
9642
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9643
|
+
link?: string | null | undefined;
|
|
9644
|
+
documentationItemId?: string | null | undefined;
|
|
9645
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9646
|
+
}[];
|
|
9647
|
+
}[];
|
|
9648
|
+
};
|
|
9649
|
+
}>, z.ZodObject<{
|
|
9650
|
+
type: z.ZodLiteral<"MultiRichText">;
|
|
9651
|
+
value: z.ZodArray<z.ZodObject<{
|
|
9652
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
9653
|
+
text: z.ZodString;
|
|
9654
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
9655
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
9656
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9657
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9658
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
9659
|
+
}, "strip", z.ZodTypeAny, {
|
|
9660
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9661
|
+
link?: string | undefined;
|
|
9662
|
+
documentationItemId?: string | undefined;
|
|
9663
|
+
openInNewWindow?: boolean | undefined;
|
|
9664
|
+
}, {
|
|
9665
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9666
|
+
link?: string | null | undefined;
|
|
9667
|
+
documentationItemId?: string | null | undefined;
|
|
9668
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9669
|
+
}>, "many">;
|
|
9670
|
+
}, "strip", z.ZodTypeAny, {
|
|
9671
|
+
text: string;
|
|
9672
|
+
attributes: {
|
|
9673
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9674
|
+
link?: string | undefined;
|
|
9675
|
+
documentationItemId?: string | undefined;
|
|
9676
|
+
openInNewWindow?: boolean | undefined;
|
|
9677
|
+
}[];
|
|
9678
|
+
}, {
|
|
9679
|
+
text: string;
|
|
9680
|
+
attributes: {
|
|
9681
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9682
|
+
link?: string | null | undefined;
|
|
9683
|
+
documentationItemId?: string | null | undefined;
|
|
9684
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9685
|
+
}[];
|
|
9686
|
+
}>, "many">;
|
|
9687
|
+
}, "strip", z.ZodTypeAny, {
|
|
9688
|
+
spans: {
|
|
9689
|
+
text: string;
|
|
9690
|
+
attributes: {
|
|
9691
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9692
|
+
link?: string | undefined;
|
|
9693
|
+
documentationItemId?: string | undefined;
|
|
9694
|
+
openInNewWindow?: boolean | undefined;
|
|
9695
|
+
}[];
|
|
9696
|
+
}[];
|
|
9697
|
+
}, {
|
|
9698
|
+
spans: {
|
|
9699
|
+
text: string;
|
|
9700
|
+
attributes: {
|
|
9701
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9702
|
+
link?: string | null | undefined;
|
|
9703
|
+
documentationItemId?: string | null | undefined;
|
|
9704
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9705
|
+
}[];
|
|
9706
|
+
}[];
|
|
9707
|
+
}>, "many">;
|
|
9708
|
+
}, "strip", z.ZodTypeAny, {
|
|
9709
|
+
type: "MultiRichText";
|
|
9710
|
+
value: {
|
|
9711
|
+
spans: {
|
|
9712
|
+
text: string;
|
|
9713
|
+
attributes: {
|
|
9714
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9715
|
+
link?: string | undefined;
|
|
9716
|
+
documentationItemId?: string | undefined;
|
|
9717
|
+
openInNewWindow?: boolean | undefined;
|
|
9718
|
+
}[];
|
|
9719
|
+
}[];
|
|
9720
|
+
}[];
|
|
9721
|
+
}, {
|
|
9722
|
+
type: "MultiRichText";
|
|
9723
|
+
value: {
|
|
9724
|
+
spans: {
|
|
9725
|
+
text: string;
|
|
9726
|
+
attributes: {
|
|
9727
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9728
|
+
link?: string | null | undefined;
|
|
9729
|
+
documentationItemId?: string | null | undefined;
|
|
9730
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9731
|
+
}[];
|
|
9732
|
+
}[];
|
|
9733
|
+
}[];
|
|
9734
|
+
}>, z.ZodObject<{
|
|
9735
|
+
type: z.ZodLiteral<"Image">;
|
|
9736
|
+
value: z.ZodOptional<z.ZodObject<{
|
|
9737
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
9738
|
+
url: z.ZodString;
|
|
9739
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
9740
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
9741
|
+
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
9742
|
+
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
9743
|
+
}, "strip", z.ZodTypeAny, {
|
|
9744
|
+
width: number;
|
|
9745
|
+
height: number;
|
|
9746
|
+
}, {
|
|
9747
|
+
width?: number | null | undefined;
|
|
9748
|
+
height?: number | null | undefined;
|
|
9749
|
+
}>>;
|
|
9750
|
+
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
9751
|
+
sourceId: z.ZodString;
|
|
9752
|
+
frameId: z.ZodString;
|
|
9753
|
+
}, "strip", z.ZodTypeAny, {
|
|
9754
|
+
sourceId: string;
|
|
9755
|
+
frameId: string;
|
|
9756
|
+
}, {
|
|
9757
|
+
sourceId: string;
|
|
9758
|
+
frameId: string;
|
|
9759
|
+
}>>;
|
|
9760
|
+
}, "strip", z.ZodTypeAny, {
|
|
9761
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9762
|
+
url: string;
|
|
9763
|
+
assetId?: string | undefined;
|
|
9764
|
+
size?: {
|
|
9765
|
+
width: number;
|
|
9766
|
+
height: number;
|
|
9767
|
+
} | undefined;
|
|
9768
|
+
figmaFile?: {
|
|
9769
|
+
sourceId: string;
|
|
9770
|
+
frameId: string;
|
|
9771
|
+
} | undefined;
|
|
9772
|
+
}, {
|
|
9773
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9774
|
+
url: string;
|
|
9775
|
+
assetId?: string | undefined;
|
|
9776
|
+
size?: {
|
|
9777
|
+
width?: number | null | undefined;
|
|
9778
|
+
height?: number | null | undefined;
|
|
9779
|
+
} | undefined;
|
|
9780
|
+
figmaFile?: {
|
|
9781
|
+
sourceId: string;
|
|
9782
|
+
frameId: string;
|
|
9783
|
+
} | undefined;
|
|
9784
|
+
}>>;
|
|
9785
|
+
}, "strip", z.ZodTypeAny, {
|
|
9786
|
+
type: "Image";
|
|
9787
|
+
value?: {
|
|
9788
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9789
|
+
url: string;
|
|
9790
|
+
assetId?: string | undefined;
|
|
9791
|
+
size?: {
|
|
9792
|
+
width: number;
|
|
9793
|
+
height: number;
|
|
9794
|
+
} | undefined;
|
|
9795
|
+
figmaFile?: {
|
|
9796
|
+
sourceId: string;
|
|
9797
|
+
frameId: string;
|
|
9798
|
+
} | undefined;
|
|
9799
|
+
} | undefined;
|
|
9800
|
+
}, {
|
|
9801
|
+
type: "Image";
|
|
9802
|
+
value?: {
|
|
9803
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9804
|
+
url: string;
|
|
9805
|
+
assetId?: string | undefined;
|
|
9806
|
+
size?: {
|
|
9807
|
+
width?: number | null | undefined;
|
|
9808
|
+
height?: number | null | undefined;
|
|
9809
|
+
} | undefined;
|
|
9810
|
+
figmaFile?: {
|
|
9811
|
+
sourceId: string;
|
|
9812
|
+
frameId: string;
|
|
9813
|
+
} | undefined;
|
|
9814
|
+
} | undefined;
|
|
9815
|
+
}>]>;
|
|
9816
|
+
type PageBlockItemTableNode = z.infer<typeof PageBlockItemTableNode>;
|
|
9817
|
+
declare const PageBlockItemTableCell: z.ZodObject<{
|
|
9818
|
+
id: z.ZodString;
|
|
9819
|
+
nodes: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
9820
|
+
type: z.ZodLiteral<"RichText">;
|
|
9821
|
+
value: z.ZodObject<{
|
|
9822
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
9823
|
+
text: z.ZodString;
|
|
9824
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
9825
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
9826
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9827
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9828
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
9829
|
+
}, "strip", z.ZodTypeAny, {
|
|
9830
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9831
|
+
link?: string | undefined;
|
|
9832
|
+
documentationItemId?: string | undefined;
|
|
9833
|
+
openInNewWindow?: boolean | undefined;
|
|
9834
|
+
}, {
|
|
9835
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9836
|
+
link?: string | null | undefined;
|
|
9837
|
+
documentationItemId?: string | null | undefined;
|
|
9838
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9839
|
+
}>, "many">;
|
|
9840
|
+
}, "strip", z.ZodTypeAny, {
|
|
9841
|
+
text: string;
|
|
9842
|
+
attributes: {
|
|
9843
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9844
|
+
link?: string | undefined;
|
|
9845
|
+
documentationItemId?: string | undefined;
|
|
9846
|
+
openInNewWindow?: boolean | undefined;
|
|
9847
|
+
}[];
|
|
9848
|
+
}, {
|
|
9849
|
+
text: string;
|
|
9850
|
+
attributes: {
|
|
9851
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9852
|
+
link?: string | null | undefined;
|
|
9853
|
+
documentationItemId?: string | null | undefined;
|
|
9854
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9855
|
+
}[];
|
|
9856
|
+
}>, "many">;
|
|
9857
|
+
}, "strip", z.ZodTypeAny, {
|
|
9858
|
+
spans: {
|
|
9859
|
+
text: string;
|
|
9860
|
+
attributes: {
|
|
9861
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9862
|
+
link?: string | undefined;
|
|
9863
|
+
documentationItemId?: string | undefined;
|
|
9864
|
+
openInNewWindow?: boolean | undefined;
|
|
9865
|
+
}[];
|
|
9866
|
+
}[];
|
|
9867
|
+
}, {
|
|
9868
|
+
spans: {
|
|
9869
|
+
text: string;
|
|
9870
|
+
attributes: {
|
|
9871
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9872
|
+
link?: string | null | undefined;
|
|
9873
|
+
documentationItemId?: string | null | undefined;
|
|
9874
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9875
|
+
}[];
|
|
9876
|
+
}[];
|
|
9877
|
+
}>;
|
|
9878
|
+
}, "strip", z.ZodTypeAny, {
|
|
9879
|
+
type: "RichText";
|
|
9880
|
+
value: {
|
|
9881
|
+
spans: {
|
|
9882
|
+
text: string;
|
|
9883
|
+
attributes: {
|
|
9884
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9885
|
+
link?: string | undefined;
|
|
9886
|
+
documentationItemId?: string | undefined;
|
|
9887
|
+
openInNewWindow?: boolean | undefined;
|
|
9888
|
+
}[];
|
|
9889
|
+
}[];
|
|
9890
|
+
};
|
|
9891
|
+
}, {
|
|
9892
|
+
type: "RichText";
|
|
9893
|
+
value: {
|
|
9894
|
+
spans: {
|
|
9895
|
+
text: string;
|
|
9896
|
+
attributes: {
|
|
9897
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9898
|
+
link?: string | null | undefined;
|
|
9899
|
+
documentationItemId?: string | null | undefined;
|
|
9900
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9901
|
+
}[];
|
|
9902
|
+
}[];
|
|
9903
|
+
};
|
|
9904
|
+
}>, z.ZodObject<{
|
|
9905
|
+
type: z.ZodLiteral<"MultiRichText">;
|
|
9906
|
+
value: z.ZodArray<z.ZodObject<{
|
|
9907
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
9908
|
+
text: z.ZodString;
|
|
9909
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
9910
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
9911
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9912
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9913
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
9914
|
+
}, "strip", z.ZodTypeAny, {
|
|
9915
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9916
|
+
link?: string | undefined;
|
|
9917
|
+
documentationItemId?: string | undefined;
|
|
9918
|
+
openInNewWindow?: boolean | undefined;
|
|
9919
|
+
}, {
|
|
9920
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9921
|
+
link?: string | null | undefined;
|
|
9922
|
+
documentationItemId?: string | null | undefined;
|
|
9923
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9924
|
+
}>, "many">;
|
|
9925
|
+
}, "strip", z.ZodTypeAny, {
|
|
9926
|
+
text: string;
|
|
9927
|
+
attributes: {
|
|
9928
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9929
|
+
link?: string | undefined;
|
|
9930
|
+
documentationItemId?: string | undefined;
|
|
9931
|
+
openInNewWindow?: boolean | undefined;
|
|
9932
|
+
}[];
|
|
9933
|
+
}, {
|
|
9934
|
+
text: string;
|
|
9935
|
+
attributes: {
|
|
9936
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9937
|
+
link?: string | null | undefined;
|
|
9938
|
+
documentationItemId?: string | null | undefined;
|
|
9939
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9940
|
+
}[];
|
|
9941
|
+
}>, "many">;
|
|
9942
|
+
}, "strip", z.ZodTypeAny, {
|
|
9943
|
+
spans: {
|
|
9944
|
+
text: string;
|
|
9945
|
+
attributes: {
|
|
9946
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9947
|
+
link?: string | undefined;
|
|
9948
|
+
documentationItemId?: string | undefined;
|
|
9949
|
+
openInNewWindow?: boolean | undefined;
|
|
9950
|
+
}[];
|
|
9951
|
+
}[];
|
|
9952
|
+
}, {
|
|
9953
|
+
spans: {
|
|
9954
|
+
text: string;
|
|
9955
|
+
attributes: {
|
|
9956
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9957
|
+
link?: string | null | undefined;
|
|
9958
|
+
documentationItemId?: string | null | undefined;
|
|
9959
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9960
|
+
}[];
|
|
9961
|
+
}[];
|
|
9962
|
+
}>, "many">;
|
|
9963
|
+
}, "strip", z.ZodTypeAny, {
|
|
9964
|
+
type: "MultiRichText";
|
|
9965
|
+
value: {
|
|
9966
|
+
spans: {
|
|
9967
|
+
text: string;
|
|
9968
|
+
attributes: {
|
|
9969
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9970
|
+
link?: string | undefined;
|
|
9971
|
+
documentationItemId?: string | undefined;
|
|
9972
|
+
openInNewWindow?: boolean | undefined;
|
|
9973
|
+
}[];
|
|
9974
|
+
}[];
|
|
9975
|
+
}[];
|
|
9976
|
+
}, {
|
|
9977
|
+
type: "MultiRichText";
|
|
9978
|
+
value: {
|
|
9979
|
+
spans: {
|
|
9980
|
+
text: string;
|
|
9981
|
+
attributes: {
|
|
9982
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9983
|
+
link?: string | null | undefined;
|
|
9984
|
+
documentationItemId?: string | null | undefined;
|
|
9985
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9986
|
+
}[];
|
|
9987
|
+
}[];
|
|
9988
|
+
}[];
|
|
9989
|
+
}>, z.ZodObject<{
|
|
9990
|
+
type: z.ZodLiteral<"Image">;
|
|
9991
|
+
value: z.ZodOptional<z.ZodObject<{
|
|
9992
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
9993
|
+
url: z.ZodString;
|
|
9994
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
9995
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
9996
|
+
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
9997
|
+
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
9998
|
+
}, "strip", z.ZodTypeAny, {
|
|
9999
|
+
width: number;
|
|
10000
|
+
height: number;
|
|
10001
|
+
}, {
|
|
10002
|
+
width?: number | null | undefined;
|
|
10003
|
+
height?: number | null | undefined;
|
|
10004
|
+
}>>;
|
|
10005
|
+
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
10006
|
+
sourceId: z.ZodString;
|
|
10007
|
+
frameId: z.ZodString;
|
|
10008
|
+
}, "strip", z.ZodTypeAny, {
|
|
10009
|
+
sourceId: string;
|
|
10010
|
+
frameId: string;
|
|
10011
|
+
}, {
|
|
10012
|
+
sourceId: string;
|
|
10013
|
+
frameId: string;
|
|
10014
|
+
}>>;
|
|
10015
|
+
}, "strip", z.ZodTypeAny, {
|
|
10016
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10017
|
+
url: string;
|
|
10018
|
+
assetId?: string | undefined;
|
|
10019
|
+
size?: {
|
|
10020
|
+
width: number;
|
|
10021
|
+
height: number;
|
|
10022
|
+
} | undefined;
|
|
10023
|
+
figmaFile?: {
|
|
10024
|
+
sourceId: string;
|
|
10025
|
+
frameId: string;
|
|
10026
|
+
} | undefined;
|
|
10027
|
+
}, {
|
|
10028
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10029
|
+
url: string;
|
|
10030
|
+
assetId?: string | undefined;
|
|
10031
|
+
size?: {
|
|
10032
|
+
width?: number | null | undefined;
|
|
10033
|
+
height?: number | null | undefined;
|
|
10034
|
+
} | undefined;
|
|
10035
|
+
figmaFile?: {
|
|
10036
|
+
sourceId: string;
|
|
10037
|
+
frameId: string;
|
|
10038
|
+
} | undefined;
|
|
10039
|
+
}>>;
|
|
10040
|
+
}, "strip", z.ZodTypeAny, {
|
|
10041
|
+
type: "Image";
|
|
10042
|
+
value?: {
|
|
10043
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10044
|
+
url: string;
|
|
10045
|
+
assetId?: string | undefined;
|
|
10046
|
+
size?: {
|
|
10047
|
+
width: number;
|
|
10048
|
+
height: number;
|
|
10049
|
+
} | undefined;
|
|
10050
|
+
figmaFile?: {
|
|
10051
|
+
sourceId: string;
|
|
10052
|
+
frameId: string;
|
|
10053
|
+
} | undefined;
|
|
10054
|
+
} | undefined;
|
|
10055
|
+
}, {
|
|
10056
|
+
type: "Image";
|
|
10057
|
+
value?: {
|
|
10058
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10059
|
+
url: string;
|
|
10060
|
+
assetId?: string | undefined;
|
|
10061
|
+
size?: {
|
|
10062
|
+
width?: number | null | undefined;
|
|
10063
|
+
height?: number | null | undefined;
|
|
10064
|
+
} | undefined;
|
|
10065
|
+
figmaFile?: {
|
|
10066
|
+
sourceId: string;
|
|
10067
|
+
frameId: string;
|
|
10068
|
+
} | undefined;
|
|
10069
|
+
} | undefined;
|
|
10070
|
+
}>]>, "many">;
|
|
10071
|
+
columnWidth: z.ZodOptional<z.ZodNumber>;
|
|
10072
|
+
alignment: z.ZodEnum<["Left", "Center", "Right"]>;
|
|
10073
|
+
}, "strip", z.ZodTypeAny, {
|
|
10074
|
+
id: string;
|
|
10075
|
+
alignment: "Center" | "Left" | "Right";
|
|
10076
|
+
nodes: ({
|
|
10077
|
+
type: "RichText";
|
|
10078
|
+
value: {
|
|
10079
|
+
spans: {
|
|
10080
|
+
text: string;
|
|
10081
|
+
attributes: {
|
|
10082
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10083
|
+
link?: string | undefined;
|
|
10084
|
+
documentationItemId?: string | undefined;
|
|
10085
|
+
openInNewWindow?: boolean | undefined;
|
|
10086
|
+
}[];
|
|
10087
|
+
}[];
|
|
10088
|
+
};
|
|
10089
|
+
} | {
|
|
10090
|
+
type: "MultiRichText";
|
|
10091
|
+
value: {
|
|
10092
|
+
spans: {
|
|
10093
|
+
text: string;
|
|
10094
|
+
attributes: {
|
|
10095
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10096
|
+
link?: string | undefined;
|
|
10097
|
+
documentationItemId?: string | undefined;
|
|
10098
|
+
openInNewWindow?: boolean | undefined;
|
|
10099
|
+
}[];
|
|
10100
|
+
}[];
|
|
10101
|
+
}[];
|
|
10102
|
+
} | {
|
|
10103
|
+
type: "Image";
|
|
10104
|
+
value?: {
|
|
10105
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10106
|
+
url: string;
|
|
10107
|
+
assetId?: string | undefined;
|
|
10108
|
+
size?: {
|
|
10109
|
+
width: number;
|
|
10110
|
+
height: number;
|
|
10111
|
+
} | undefined;
|
|
10112
|
+
figmaFile?: {
|
|
10113
|
+
sourceId: string;
|
|
10114
|
+
frameId: string;
|
|
10115
|
+
} | undefined;
|
|
10116
|
+
} | undefined;
|
|
10117
|
+
})[];
|
|
10118
|
+
columnWidth?: number | undefined;
|
|
10119
|
+
}, {
|
|
10120
|
+
id: string;
|
|
10121
|
+
alignment: "Center" | "Left" | "Right";
|
|
10122
|
+
nodes: ({
|
|
10123
|
+
type: "RichText";
|
|
10124
|
+
value: {
|
|
10125
|
+
spans: {
|
|
10126
|
+
text: string;
|
|
10127
|
+
attributes: {
|
|
10128
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10129
|
+
link?: string | null | undefined;
|
|
10130
|
+
documentationItemId?: string | null | undefined;
|
|
10131
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10132
|
+
}[];
|
|
10133
|
+
}[];
|
|
10134
|
+
};
|
|
10135
|
+
} | {
|
|
10136
|
+
type: "MultiRichText";
|
|
10137
|
+
value: {
|
|
10138
|
+
spans: {
|
|
10139
|
+
text: string;
|
|
10140
|
+
attributes: {
|
|
10141
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10142
|
+
link?: string | null | undefined;
|
|
10143
|
+
documentationItemId?: string | null | undefined;
|
|
10144
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10145
|
+
}[];
|
|
10146
|
+
}[];
|
|
10147
|
+
}[];
|
|
10148
|
+
} | {
|
|
10149
|
+
type: "Image";
|
|
10150
|
+
value?: {
|
|
10151
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10152
|
+
url: string;
|
|
10153
|
+
assetId?: string | undefined;
|
|
10154
|
+
size?: {
|
|
10155
|
+
width?: number | null | undefined;
|
|
10156
|
+
height?: number | null | undefined;
|
|
10157
|
+
} | undefined;
|
|
10158
|
+
figmaFile?: {
|
|
10159
|
+
sourceId: string;
|
|
10160
|
+
frameId: string;
|
|
10161
|
+
} | undefined;
|
|
10162
|
+
} | undefined;
|
|
10163
|
+
})[];
|
|
10164
|
+
columnWidth?: number | undefined;
|
|
10165
|
+
}>;
|
|
10166
|
+
type PageBlockItemTableCell = z.infer<typeof PageBlockItemTableCell>;
|
|
10167
|
+
declare const PageBlockItemTableRow: z.ZodObject<{
|
|
10168
|
+
cells: z.ZodArray<z.ZodObject<{
|
|
10169
|
+
id: z.ZodString;
|
|
10170
|
+
nodes: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
10171
|
+
type: z.ZodLiteral<"RichText">;
|
|
10172
|
+
value: z.ZodObject<{
|
|
10173
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
10174
|
+
text: z.ZodString;
|
|
10175
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
10176
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
10177
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10178
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10179
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
10180
|
+
}, "strip", z.ZodTypeAny, {
|
|
10181
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10182
|
+
link?: string | undefined;
|
|
10183
|
+
documentationItemId?: string | undefined;
|
|
10184
|
+
openInNewWindow?: boolean | undefined;
|
|
10185
|
+
}, {
|
|
10186
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10187
|
+
link?: string | null | undefined;
|
|
10188
|
+
documentationItemId?: string | null | undefined;
|
|
10189
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10190
|
+
}>, "many">;
|
|
10191
|
+
}, "strip", z.ZodTypeAny, {
|
|
10192
|
+
text: string;
|
|
10193
|
+
attributes: {
|
|
10194
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10195
|
+
link?: string | undefined;
|
|
10196
|
+
documentationItemId?: string | undefined;
|
|
10197
|
+
openInNewWindow?: boolean | undefined;
|
|
10198
|
+
}[];
|
|
10199
|
+
}, {
|
|
10200
|
+
text: string;
|
|
10201
|
+
attributes: {
|
|
10202
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10203
|
+
link?: string | null | undefined;
|
|
10204
|
+
documentationItemId?: string | null | undefined;
|
|
10205
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10206
|
+
}[];
|
|
10207
|
+
}>, "many">;
|
|
10208
|
+
}, "strip", z.ZodTypeAny, {
|
|
10209
|
+
spans: {
|
|
10210
|
+
text: string;
|
|
10211
|
+
attributes: {
|
|
10212
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10213
|
+
link?: string | undefined;
|
|
10214
|
+
documentationItemId?: string | undefined;
|
|
10215
|
+
openInNewWindow?: boolean | undefined;
|
|
10216
|
+
}[];
|
|
10217
|
+
}[];
|
|
10218
|
+
}, {
|
|
10219
|
+
spans: {
|
|
10220
|
+
text: string;
|
|
10221
|
+
attributes: {
|
|
10222
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10223
|
+
link?: string | null | undefined;
|
|
10224
|
+
documentationItemId?: string | null | undefined;
|
|
10225
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10226
|
+
}[];
|
|
10227
|
+
}[];
|
|
10228
|
+
}>;
|
|
10229
|
+
}, "strip", z.ZodTypeAny, {
|
|
10230
|
+
type: "RichText";
|
|
10231
|
+
value: {
|
|
10232
|
+
spans: {
|
|
10233
|
+
text: string;
|
|
10234
|
+
attributes: {
|
|
10235
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10236
|
+
link?: string | undefined;
|
|
10237
|
+
documentationItemId?: string | undefined;
|
|
10238
|
+
openInNewWindow?: boolean | undefined;
|
|
10239
|
+
}[];
|
|
10240
|
+
}[];
|
|
10241
|
+
};
|
|
10242
|
+
}, {
|
|
10243
|
+
type: "RichText";
|
|
10244
|
+
value: {
|
|
10245
|
+
spans: {
|
|
10246
|
+
text: string;
|
|
10247
|
+
attributes: {
|
|
10248
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10249
|
+
link?: string | null | undefined;
|
|
10250
|
+
documentationItemId?: string | null | undefined;
|
|
10251
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10252
|
+
}[];
|
|
10253
|
+
}[];
|
|
10254
|
+
};
|
|
10255
|
+
}>, z.ZodObject<{
|
|
10256
|
+
type: z.ZodLiteral<"MultiRichText">;
|
|
10257
|
+
value: z.ZodArray<z.ZodObject<{
|
|
10258
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
10259
|
+
text: z.ZodString;
|
|
10260
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
10261
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
10262
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10263
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10264
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
10265
|
+
}, "strip", z.ZodTypeAny, {
|
|
10266
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10267
|
+
link?: string | undefined;
|
|
10268
|
+
documentationItemId?: string | undefined;
|
|
10269
|
+
openInNewWindow?: boolean | undefined;
|
|
10270
|
+
}, {
|
|
10271
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10272
|
+
link?: string | null | undefined;
|
|
10273
|
+
documentationItemId?: string | null | undefined;
|
|
10274
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10275
|
+
}>, "many">;
|
|
10276
|
+
}, "strip", z.ZodTypeAny, {
|
|
10277
|
+
text: string;
|
|
10278
|
+
attributes: {
|
|
10279
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10280
|
+
link?: string | undefined;
|
|
10281
|
+
documentationItemId?: string | undefined;
|
|
10282
|
+
openInNewWindow?: boolean | undefined;
|
|
10283
|
+
}[];
|
|
10284
|
+
}, {
|
|
10285
|
+
text: string;
|
|
10286
|
+
attributes: {
|
|
10287
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10288
|
+
link?: string | null | undefined;
|
|
10289
|
+
documentationItemId?: string | null | undefined;
|
|
10290
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10291
|
+
}[];
|
|
10292
|
+
}>, "many">;
|
|
10293
|
+
}, "strip", z.ZodTypeAny, {
|
|
10294
|
+
spans: {
|
|
10295
|
+
text: string;
|
|
10296
|
+
attributes: {
|
|
10297
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10298
|
+
link?: string | undefined;
|
|
10299
|
+
documentationItemId?: string | undefined;
|
|
10300
|
+
openInNewWindow?: boolean | undefined;
|
|
10301
|
+
}[];
|
|
10302
|
+
}[];
|
|
10303
|
+
}, {
|
|
10304
|
+
spans: {
|
|
10305
|
+
text: string;
|
|
10306
|
+
attributes: {
|
|
10307
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10308
|
+
link?: string | null | undefined;
|
|
10309
|
+
documentationItemId?: string | null | undefined;
|
|
10310
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10311
|
+
}[];
|
|
10312
|
+
}[];
|
|
10313
|
+
}>, "many">;
|
|
10314
|
+
}, "strip", z.ZodTypeAny, {
|
|
10315
|
+
type: "MultiRichText";
|
|
10316
|
+
value: {
|
|
10317
|
+
spans: {
|
|
10318
|
+
text: string;
|
|
10319
|
+
attributes: {
|
|
10320
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10321
|
+
link?: string | undefined;
|
|
10322
|
+
documentationItemId?: string | undefined;
|
|
10323
|
+
openInNewWindow?: boolean | undefined;
|
|
10324
|
+
}[];
|
|
10325
|
+
}[];
|
|
10326
|
+
}[];
|
|
10327
|
+
}, {
|
|
10328
|
+
type: "MultiRichText";
|
|
10329
|
+
value: {
|
|
10330
|
+
spans: {
|
|
10331
|
+
text: string;
|
|
10332
|
+
attributes: {
|
|
10333
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10334
|
+
link?: string | null | undefined;
|
|
10335
|
+
documentationItemId?: string | null | undefined;
|
|
10336
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10337
|
+
}[];
|
|
10338
|
+
}[];
|
|
10339
|
+
}[];
|
|
10340
|
+
}>, z.ZodObject<{
|
|
10341
|
+
type: z.ZodLiteral<"Image">;
|
|
10342
|
+
value: z.ZodOptional<z.ZodObject<{
|
|
10343
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
10344
|
+
url: z.ZodString;
|
|
10345
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
10346
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
10347
|
+
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
10348
|
+
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
10349
|
+
}, "strip", z.ZodTypeAny, {
|
|
10350
|
+
width: number;
|
|
10351
|
+
height: number;
|
|
10352
|
+
}, {
|
|
10353
|
+
width?: number | null | undefined;
|
|
10354
|
+
height?: number | null | undefined;
|
|
10355
|
+
}>>;
|
|
10356
|
+
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
10357
|
+
sourceId: z.ZodString;
|
|
10358
|
+
frameId: z.ZodString;
|
|
10359
|
+
}, "strip", z.ZodTypeAny, {
|
|
10360
|
+
sourceId: string;
|
|
10361
|
+
frameId: string;
|
|
10362
|
+
}, {
|
|
10363
|
+
sourceId: string;
|
|
10364
|
+
frameId: string;
|
|
10365
|
+
}>>;
|
|
10366
|
+
}, "strip", z.ZodTypeAny, {
|
|
10367
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10368
|
+
url: string;
|
|
10369
|
+
assetId?: string | undefined;
|
|
10370
|
+
size?: {
|
|
10371
|
+
width: number;
|
|
10372
|
+
height: number;
|
|
10373
|
+
} | undefined;
|
|
10374
|
+
figmaFile?: {
|
|
10375
|
+
sourceId: string;
|
|
10376
|
+
frameId: string;
|
|
10377
|
+
} | undefined;
|
|
10378
|
+
}, {
|
|
10379
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10380
|
+
url: string;
|
|
10381
|
+
assetId?: string | undefined;
|
|
10382
|
+
size?: {
|
|
10383
|
+
width?: number | null | undefined;
|
|
10384
|
+
height?: number | null | undefined;
|
|
10385
|
+
} | undefined;
|
|
10386
|
+
figmaFile?: {
|
|
10387
|
+
sourceId: string;
|
|
10388
|
+
frameId: string;
|
|
10389
|
+
} | undefined;
|
|
10390
|
+
}>>;
|
|
10391
|
+
}, "strip", z.ZodTypeAny, {
|
|
10392
|
+
type: "Image";
|
|
10393
|
+
value?: {
|
|
10394
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10395
|
+
url: string;
|
|
10396
|
+
assetId?: string | undefined;
|
|
10397
|
+
size?: {
|
|
10398
|
+
width: number;
|
|
10399
|
+
height: number;
|
|
10400
|
+
} | undefined;
|
|
10401
|
+
figmaFile?: {
|
|
10402
|
+
sourceId: string;
|
|
10403
|
+
frameId: string;
|
|
10404
|
+
} | undefined;
|
|
10405
|
+
} | undefined;
|
|
10406
|
+
}, {
|
|
10407
|
+
type: "Image";
|
|
10408
|
+
value?: {
|
|
10409
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10410
|
+
url: string;
|
|
10411
|
+
assetId?: string | undefined;
|
|
10412
|
+
size?: {
|
|
10413
|
+
width?: number | null | undefined;
|
|
10414
|
+
height?: number | null | undefined;
|
|
10415
|
+
} | undefined;
|
|
10416
|
+
figmaFile?: {
|
|
10417
|
+
sourceId: string;
|
|
10418
|
+
frameId: string;
|
|
10419
|
+
} | undefined;
|
|
10420
|
+
} | undefined;
|
|
10421
|
+
}>]>, "many">;
|
|
10422
|
+
columnWidth: z.ZodOptional<z.ZodNumber>;
|
|
10423
|
+
alignment: z.ZodEnum<["Left", "Center", "Right"]>;
|
|
10424
|
+
}, "strip", z.ZodTypeAny, {
|
|
10425
|
+
id: string;
|
|
10426
|
+
alignment: "Center" | "Left" | "Right";
|
|
10427
|
+
nodes: ({
|
|
10428
|
+
type: "RichText";
|
|
10429
|
+
value: {
|
|
10430
|
+
spans: {
|
|
10431
|
+
text: string;
|
|
10432
|
+
attributes: {
|
|
10433
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10434
|
+
link?: string | undefined;
|
|
10435
|
+
documentationItemId?: string | undefined;
|
|
10436
|
+
openInNewWindow?: boolean | undefined;
|
|
10437
|
+
}[];
|
|
10438
|
+
}[];
|
|
10439
|
+
};
|
|
10440
|
+
} | {
|
|
10441
|
+
type: "MultiRichText";
|
|
10442
|
+
value: {
|
|
10443
|
+
spans: {
|
|
10444
|
+
text: string;
|
|
10445
|
+
attributes: {
|
|
10446
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10447
|
+
link?: string | undefined;
|
|
10448
|
+
documentationItemId?: string | undefined;
|
|
10449
|
+
openInNewWindow?: boolean | undefined;
|
|
10450
|
+
}[];
|
|
10451
|
+
}[];
|
|
10452
|
+
}[];
|
|
10453
|
+
} | {
|
|
10454
|
+
type: "Image";
|
|
10455
|
+
value?: {
|
|
10456
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10457
|
+
url: string;
|
|
10458
|
+
assetId?: string | undefined;
|
|
10459
|
+
size?: {
|
|
10460
|
+
width: number;
|
|
10461
|
+
height: number;
|
|
10462
|
+
} | undefined;
|
|
10463
|
+
figmaFile?: {
|
|
10464
|
+
sourceId: string;
|
|
10465
|
+
frameId: string;
|
|
10466
|
+
} | undefined;
|
|
10467
|
+
} | undefined;
|
|
10468
|
+
})[];
|
|
10469
|
+
columnWidth?: number | undefined;
|
|
10470
|
+
}, {
|
|
10471
|
+
id: string;
|
|
10472
|
+
alignment: "Center" | "Left" | "Right";
|
|
10473
|
+
nodes: ({
|
|
10474
|
+
type: "RichText";
|
|
10475
|
+
value: {
|
|
10476
|
+
spans: {
|
|
10477
|
+
text: string;
|
|
10478
|
+
attributes: {
|
|
10479
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10480
|
+
link?: string | null | undefined;
|
|
10481
|
+
documentationItemId?: string | null | undefined;
|
|
10482
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10483
|
+
}[];
|
|
10484
|
+
}[];
|
|
10485
|
+
};
|
|
10486
|
+
} | {
|
|
10487
|
+
type: "MultiRichText";
|
|
10488
|
+
value: {
|
|
10489
|
+
spans: {
|
|
10490
|
+
text: string;
|
|
10491
|
+
attributes: {
|
|
10492
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10493
|
+
link?: string | null | undefined;
|
|
10494
|
+
documentationItemId?: string | null | undefined;
|
|
10495
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10496
|
+
}[];
|
|
10497
|
+
}[];
|
|
10498
|
+
}[];
|
|
10499
|
+
} | {
|
|
10500
|
+
type: "Image";
|
|
10501
|
+
value?: {
|
|
10502
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10503
|
+
url: string;
|
|
10504
|
+
assetId?: string | undefined;
|
|
10505
|
+
size?: {
|
|
10506
|
+
width?: number | null | undefined;
|
|
10507
|
+
height?: number | null | undefined;
|
|
10508
|
+
} | undefined;
|
|
10509
|
+
figmaFile?: {
|
|
10510
|
+
sourceId: string;
|
|
10511
|
+
frameId: string;
|
|
10512
|
+
} | undefined;
|
|
10513
|
+
} | undefined;
|
|
10514
|
+
})[];
|
|
10515
|
+
columnWidth?: number | undefined;
|
|
10516
|
+
}>, "many">;
|
|
10517
|
+
}, "strip", z.ZodTypeAny, {
|
|
10518
|
+
cells: {
|
|
10519
|
+
id: string;
|
|
10520
|
+
alignment: "Center" | "Left" | "Right";
|
|
10521
|
+
nodes: ({
|
|
10522
|
+
type: "RichText";
|
|
10523
|
+
value: {
|
|
10524
|
+
spans: {
|
|
10525
|
+
text: string;
|
|
10526
|
+
attributes: {
|
|
10527
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10528
|
+
link?: string | undefined;
|
|
10529
|
+
documentationItemId?: string | undefined;
|
|
10530
|
+
openInNewWindow?: boolean | undefined;
|
|
10531
|
+
}[];
|
|
10532
|
+
}[];
|
|
10533
|
+
};
|
|
10534
|
+
} | {
|
|
10535
|
+
type: "MultiRichText";
|
|
10536
|
+
value: {
|
|
10537
|
+
spans: {
|
|
10538
|
+
text: string;
|
|
10539
|
+
attributes: {
|
|
10540
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10541
|
+
link?: string | undefined;
|
|
10542
|
+
documentationItemId?: string | undefined;
|
|
10543
|
+
openInNewWindow?: boolean | undefined;
|
|
10544
|
+
}[];
|
|
10545
|
+
}[];
|
|
10546
|
+
}[];
|
|
10547
|
+
} | {
|
|
10548
|
+
type: "Image";
|
|
10549
|
+
value?: {
|
|
10550
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10551
|
+
url: string;
|
|
10552
|
+
assetId?: string | undefined;
|
|
10553
|
+
size?: {
|
|
10554
|
+
width: number;
|
|
10555
|
+
height: number;
|
|
10556
|
+
} | undefined;
|
|
10557
|
+
figmaFile?: {
|
|
10558
|
+
sourceId: string;
|
|
10559
|
+
frameId: string;
|
|
10560
|
+
} | undefined;
|
|
10561
|
+
} | undefined;
|
|
10562
|
+
})[];
|
|
10563
|
+
columnWidth?: number | undefined;
|
|
10564
|
+
}[];
|
|
10565
|
+
}, {
|
|
10566
|
+
cells: {
|
|
10567
|
+
id: string;
|
|
10568
|
+
alignment: "Center" | "Left" | "Right";
|
|
10569
|
+
nodes: ({
|
|
10570
|
+
type: "RichText";
|
|
10571
|
+
value: {
|
|
10572
|
+
spans: {
|
|
10573
|
+
text: string;
|
|
10574
|
+
attributes: {
|
|
10575
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10576
|
+
link?: string | null | undefined;
|
|
10577
|
+
documentationItemId?: string | null | undefined;
|
|
10578
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10579
|
+
}[];
|
|
10580
|
+
}[];
|
|
10581
|
+
};
|
|
10582
|
+
} | {
|
|
10583
|
+
type: "MultiRichText";
|
|
10584
|
+
value: {
|
|
10585
|
+
spans: {
|
|
10586
|
+
text: string;
|
|
10587
|
+
attributes: {
|
|
10588
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10589
|
+
link?: string | null | undefined;
|
|
10590
|
+
documentationItemId?: string | null | undefined;
|
|
10591
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10592
|
+
}[];
|
|
10593
|
+
}[];
|
|
10594
|
+
}[];
|
|
10595
|
+
} | {
|
|
10596
|
+
type: "Image";
|
|
10597
|
+
value?: {
|
|
10598
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10599
|
+
url: string;
|
|
10600
|
+
assetId?: string | undefined;
|
|
10601
|
+
size?: {
|
|
10602
|
+
width?: number | null | undefined;
|
|
10603
|
+
height?: number | null | undefined;
|
|
10604
|
+
} | undefined;
|
|
10605
|
+
figmaFile?: {
|
|
10606
|
+
sourceId: string;
|
|
10607
|
+
frameId: string;
|
|
10608
|
+
} | undefined;
|
|
10609
|
+
} | undefined;
|
|
10610
|
+
})[];
|
|
10611
|
+
columnWidth?: number | undefined;
|
|
10612
|
+
}[];
|
|
10613
|
+
}>;
|
|
10614
|
+
type PageBlockItemTableRow = z.infer<typeof PageBlockItemTableRow>;
|
|
10615
|
+
declare const PageBlockItemTableValue: z.ZodObject<{
|
|
10616
|
+
highlightHeaderColumn: z.ZodOptional<z.ZodBoolean>;
|
|
10617
|
+
highlightHeaderRow: z.ZodOptional<z.ZodBoolean>;
|
|
10618
|
+
showBorder: z.ZodOptional<z.ZodBoolean>;
|
|
10619
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
10620
|
+
value: z.ZodArray<z.ZodObject<{
|
|
10621
|
+
cells: z.ZodArray<z.ZodObject<{
|
|
10622
|
+
id: z.ZodString;
|
|
10623
|
+
nodes: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
10624
|
+
type: z.ZodLiteral<"RichText">;
|
|
10625
|
+
value: z.ZodObject<{
|
|
10626
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
10627
|
+
text: z.ZodString;
|
|
10628
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
10629
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
10630
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10631
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10632
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
10633
|
+
}, "strip", z.ZodTypeAny, {
|
|
10634
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10635
|
+
link?: string | undefined;
|
|
10636
|
+
documentationItemId?: string | undefined;
|
|
10637
|
+
openInNewWindow?: boolean | undefined;
|
|
10638
|
+
}, {
|
|
10639
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10640
|
+
link?: string | null | undefined;
|
|
10641
|
+
documentationItemId?: string | null | undefined;
|
|
10642
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10643
|
+
}>, "many">;
|
|
10644
|
+
}, "strip", z.ZodTypeAny, {
|
|
10645
|
+
text: string;
|
|
10646
|
+
attributes: {
|
|
10647
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10648
|
+
link?: string | undefined;
|
|
10649
|
+
documentationItemId?: string | undefined;
|
|
10650
|
+
openInNewWindow?: boolean | undefined;
|
|
10651
|
+
}[];
|
|
10652
|
+
}, {
|
|
10653
|
+
text: string;
|
|
10654
|
+
attributes: {
|
|
10655
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10656
|
+
link?: string | null | undefined;
|
|
10657
|
+
documentationItemId?: string | null | undefined;
|
|
10658
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10659
|
+
}[];
|
|
10660
|
+
}>, "many">;
|
|
10661
|
+
}, "strip", z.ZodTypeAny, {
|
|
10662
|
+
spans: {
|
|
10663
|
+
text: string;
|
|
10664
|
+
attributes: {
|
|
10665
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10666
|
+
link?: string | undefined;
|
|
10667
|
+
documentationItemId?: string | undefined;
|
|
10668
|
+
openInNewWindow?: boolean | undefined;
|
|
10669
|
+
}[];
|
|
10670
|
+
}[];
|
|
10671
|
+
}, {
|
|
10672
|
+
spans: {
|
|
10673
|
+
text: string;
|
|
10674
|
+
attributes: {
|
|
10675
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10676
|
+
link?: string | null | undefined;
|
|
10677
|
+
documentationItemId?: string | null | undefined;
|
|
10678
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10679
|
+
}[];
|
|
10680
|
+
}[];
|
|
10681
|
+
}>;
|
|
10682
|
+
}, "strip", z.ZodTypeAny, {
|
|
10683
|
+
type: "RichText";
|
|
10684
|
+
value: {
|
|
10685
|
+
spans: {
|
|
10686
|
+
text: string;
|
|
10687
|
+
attributes: {
|
|
10688
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10689
|
+
link?: string | undefined;
|
|
10690
|
+
documentationItemId?: string | undefined;
|
|
10691
|
+
openInNewWindow?: boolean | undefined;
|
|
10692
|
+
}[];
|
|
10693
|
+
}[];
|
|
10694
|
+
};
|
|
10695
|
+
}, {
|
|
10696
|
+
type: "RichText";
|
|
10697
|
+
value: {
|
|
10698
|
+
spans: {
|
|
10699
|
+
text: string;
|
|
10700
|
+
attributes: {
|
|
10701
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10702
|
+
link?: string | null | undefined;
|
|
10703
|
+
documentationItemId?: string | null | undefined;
|
|
10704
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10705
|
+
}[];
|
|
10706
|
+
}[];
|
|
10707
|
+
};
|
|
10708
|
+
}>, z.ZodObject<{
|
|
10709
|
+
type: z.ZodLiteral<"MultiRichText">;
|
|
10710
|
+
value: z.ZodArray<z.ZodObject<{
|
|
10711
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
10712
|
+
text: z.ZodString;
|
|
10713
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
10714
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
10715
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10716
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10717
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
10718
|
+
}, "strip", z.ZodTypeAny, {
|
|
10719
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10720
|
+
link?: string | undefined;
|
|
10721
|
+
documentationItemId?: string | undefined;
|
|
10722
|
+
openInNewWindow?: boolean | undefined;
|
|
10723
|
+
}, {
|
|
10724
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10725
|
+
link?: string | null | undefined;
|
|
10726
|
+
documentationItemId?: string | null | undefined;
|
|
10727
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10728
|
+
}>, "many">;
|
|
10729
|
+
}, "strip", z.ZodTypeAny, {
|
|
10730
|
+
text: string;
|
|
10731
|
+
attributes: {
|
|
10732
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10733
|
+
link?: string | undefined;
|
|
10734
|
+
documentationItemId?: string | undefined;
|
|
10735
|
+
openInNewWindow?: boolean | undefined;
|
|
10736
|
+
}[];
|
|
10737
|
+
}, {
|
|
10738
|
+
text: string;
|
|
10739
|
+
attributes: {
|
|
10740
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10741
|
+
link?: string | null | undefined;
|
|
10742
|
+
documentationItemId?: string | null | undefined;
|
|
10743
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10744
|
+
}[];
|
|
10745
|
+
}>, "many">;
|
|
10746
|
+
}, "strip", z.ZodTypeAny, {
|
|
10747
|
+
spans: {
|
|
10748
|
+
text: string;
|
|
10749
|
+
attributes: {
|
|
10750
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10751
|
+
link?: string | undefined;
|
|
10752
|
+
documentationItemId?: string | undefined;
|
|
10753
|
+
openInNewWindow?: boolean | undefined;
|
|
10754
|
+
}[];
|
|
10755
|
+
}[];
|
|
8871
10756
|
}, {
|
|
8872
|
-
|
|
8873
|
-
|
|
8874
|
-
|
|
8875
|
-
|
|
8876
|
-
|
|
8877
|
-
|
|
8878
|
-
|
|
8879
|
-
|
|
8880
|
-
|
|
10757
|
+
spans: {
|
|
10758
|
+
text: string;
|
|
10759
|
+
attributes: {
|
|
10760
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10761
|
+
link?: string | null | undefined;
|
|
10762
|
+
documentationItemId?: string | null | undefined;
|
|
10763
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10764
|
+
}[];
|
|
10765
|
+
}[];
|
|
10766
|
+
}>, "many">;
|
|
8881
10767
|
}, "strip", z.ZodTypeAny, {
|
|
8882
|
-
|
|
10768
|
+
type: "MultiRichText";
|
|
10769
|
+
value: {
|
|
10770
|
+
spans: {
|
|
10771
|
+
text: string;
|
|
10772
|
+
attributes: {
|
|
10773
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10774
|
+
link?: string | undefined;
|
|
10775
|
+
documentationItemId?: string | undefined;
|
|
10776
|
+
openInNewWindow?: boolean | undefined;
|
|
10777
|
+
}[];
|
|
10778
|
+
}[];
|
|
10779
|
+
}[];
|
|
10780
|
+
}, {
|
|
10781
|
+
type: "MultiRichText";
|
|
10782
|
+
value: {
|
|
10783
|
+
spans: {
|
|
10784
|
+
text: string;
|
|
10785
|
+
attributes: {
|
|
10786
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10787
|
+
link?: string | null | undefined;
|
|
10788
|
+
documentationItemId?: string | null | undefined;
|
|
10789
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10790
|
+
}[];
|
|
10791
|
+
}[];
|
|
10792
|
+
}[];
|
|
10793
|
+
}>, z.ZodObject<{
|
|
10794
|
+
type: z.ZodLiteral<"Image">;
|
|
10795
|
+
value: z.ZodOptional<z.ZodObject<{
|
|
10796
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
10797
|
+
url: z.ZodString;
|
|
10798
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
10799
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
10800
|
+
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
10801
|
+
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
10802
|
+
}, "strip", z.ZodTypeAny, {
|
|
10803
|
+
width: number;
|
|
10804
|
+
height: number;
|
|
10805
|
+
}, {
|
|
10806
|
+
width?: number | null | undefined;
|
|
10807
|
+
height?: number | null | undefined;
|
|
10808
|
+
}>>;
|
|
10809
|
+
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
10810
|
+
sourceId: z.ZodString;
|
|
10811
|
+
frameId: z.ZodString;
|
|
10812
|
+
}, "strip", z.ZodTypeAny, {
|
|
10813
|
+
sourceId: string;
|
|
10814
|
+
frameId: string;
|
|
10815
|
+
}, {
|
|
10816
|
+
sourceId: string;
|
|
10817
|
+
frameId: string;
|
|
10818
|
+
}>>;
|
|
10819
|
+
}, "strip", z.ZodTypeAny, {
|
|
10820
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10821
|
+
url: string;
|
|
10822
|
+
assetId?: string | undefined;
|
|
10823
|
+
size?: {
|
|
10824
|
+
width: number;
|
|
10825
|
+
height: number;
|
|
10826
|
+
} | undefined;
|
|
10827
|
+
figmaFile?: {
|
|
10828
|
+
sourceId: string;
|
|
10829
|
+
frameId: string;
|
|
10830
|
+
} | undefined;
|
|
10831
|
+
}, {
|
|
10832
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10833
|
+
url: string;
|
|
10834
|
+
assetId?: string | undefined;
|
|
10835
|
+
size?: {
|
|
10836
|
+
width?: number | null | undefined;
|
|
10837
|
+
height?: number | null | undefined;
|
|
10838
|
+
} | undefined;
|
|
10839
|
+
figmaFile?: {
|
|
10840
|
+
sourceId: string;
|
|
10841
|
+
frameId: string;
|
|
10842
|
+
} | undefined;
|
|
10843
|
+
}>>;
|
|
10844
|
+
}, "strip", z.ZodTypeAny, {
|
|
10845
|
+
type: "Image";
|
|
8883
10846
|
value?: {
|
|
8884
|
-
|
|
8885
|
-
|
|
10847
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10848
|
+
url: string;
|
|
10849
|
+
assetId?: string | undefined;
|
|
10850
|
+
size?: {
|
|
10851
|
+
width: number;
|
|
10852
|
+
height: number;
|
|
10853
|
+
} | undefined;
|
|
10854
|
+
figmaFile?: {
|
|
10855
|
+
sourceId: string;
|
|
10856
|
+
frameId: string;
|
|
10857
|
+
} | undefined;
|
|
8886
10858
|
} | undefined;
|
|
8887
10859
|
}, {
|
|
8888
|
-
|
|
10860
|
+
type: "Image";
|
|
8889
10861
|
value?: {
|
|
8890
|
-
|
|
8891
|
-
|
|
8892
|
-
|
|
8893
|
-
|
|
8894
|
-
|
|
8895
|
-
|
|
8896
|
-
|
|
8897
|
-
|
|
8898
|
-
|
|
8899
|
-
|
|
8900
|
-
|
|
10862
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10863
|
+
url: string;
|
|
10864
|
+
assetId?: string | undefined;
|
|
10865
|
+
size?: {
|
|
10866
|
+
width?: number | null | undefined;
|
|
10867
|
+
height?: number | null | undefined;
|
|
10868
|
+
} | undefined;
|
|
10869
|
+
figmaFile?: {
|
|
10870
|
+
sourceId: string;
|
|
10871
|
+
frameId: string;
|
|
10872
|
+
} | undefined;
|
|
10873
|
+
} | undefined;
|
|
10874
|
+
}>]>, "many">;
|
|
10875
|
+
columnWidth: z.ZodOptional<z.ZodNumber>;
|
|
10876
|
+
alignment: z.ZodEnum<["Left", "Center", "Right"]>;
|
|
8901
10877
|
}, "strip", z.ZodTypeAny, {
|
|
8902
|
-
|
|
8903
|
-
|
|
10878
|
+
id: string;
|
|
10879
|
+
alignment: "Center" | "Left" | "Right";
|
|
10880
|
+
nodes: ({
|
|
10881
|
+
type: "RichText";
|
|
10882
|
+
value: {
|
|
10883
|
+
spans: {
|
|
10884
|
+
text: string;
|
|
10885
|
+
attributes: {
|
|
10886
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10887
|
+
link?: string | undefined;
|
|
10888
|
+
documentationItemId?: string | undefined;
|
|
10889
|
+
openInNewWindow?: boolean | undefined;
|
|
10890
|
+
}[];
|
|
10891
|
+
}[];
|
|
10892
|
+
};
|
|
10893
|
+
} | {
|
|
10894
|
+
type: "MultiRichText";
|
|
10895
|
+
value: {
|
|
10896
|
+
spans: {
|
|
10897
|
+
text: string;
|
|
10898
|
+
attributes: {
|
|
10899
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10900
|
+
link?: string | undefined;
|
|
10901
|
+
documentationItemId?: string | undefined;
|
|
10902
|
+
openInNewWindow?: boolean | undefined;
|
|
10903
|
+
}[];
|
|
10904
|
+
}[];
|
|
10905
|
+
}[];
|
|
10906
|
+
} | {
|
|
10907
|
+
type: "Image";
|
|
8904
10908
|
value?: {
|
|
8905
|
-
|
|
8906
|
-
|
|
10909
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10910
|
+
url: string;
|
|
10911
|
+
assetId?: string | undefined;
|
|
10912
|
+
size?: {
|
|
10913
|
+
width: number;
|
|
10914
|
+
height: number;
|
|
10915
|
+
} | undefined;
|
|
10916
|
+
figmaFile?: {
|
|
10917
|
+
sourceId: string;
|
|
10918
|
+
frameId: string;
|
|
10919
|
+
} | undefined;
|
|
8907
10920
|
} | undefined;
|
|
8908
|
-
};
|
|
8909
|
-
|
|
8910
|
-
aliasTo?: string | undefined;
|
|
8911
|
-
}) & (string | {
|
|
8912
|
-
aliasTo?: string | undefined;
|
|
8913
|
-
} | undefined);
|
|
10921
|
+
})[];
|
|
10922
|
+
columnWidth?: number | undefined;
|
|
8914
10923
|
}, {
|
|
8915
|
-
|
|
8916
|
-
|
|
10924
|
+
id: string;
|
|
10925
|
+
alignment: "Center" | "Left" | "Right";
|
|
10926
|
+
nodes: ({
|
|
10927
|
+
type: "RichText";
|
|
10928
|
+
value: {
|
|
10929
|
+
spans: {
|
|
10930
|
+
text: string;
|
|
10931
|
+
attributes: {
|
|
10932
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10933
|
+
link?: string | null | undefined;
|
|
10934
|
+
documentationItemId?: string | null | undefined;
|
|
10935
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10936
|
+
}[];
|
|
10937
|
+
}[];
|
|
10938
|
+
};
|
|
10939
|
+
} | {
|
|
10940
|
+
type: "MultiRichText";
|
|
10941
|
+
value: {
|
|
10942
|
+
spans: {
|
|
10943
|
+
text: string;
|
|
10944
|
+
attributes: {
|
|
10945
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10946
|
+
link?: string | null | undefined;
|
|
10947
|
+
documentationItemId?: string | null | undefined;
|
|
10948
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10949
|
+
}[];
|
|
10950
|
+
}[];
|
|
10951
|
+
}[];
|
|
10952
|
+
} | {
|
|
10953
|
+
type: "Image";
|
|
8917
10954
|
value?: {
|
|
8918
|
-
|
|
8919
|
-
|
|
8920
|
-
|
|
8921
|
-
|
|
8922
|
-
|
|
8923
|
-
|
|
8924
|
-
|
|
8925
|
-
|
|
8926
|
-
|
|
8927
|
-
|
|
10955
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10956
|
+
url: string;
|
|
10957
|
+
assetId?: string | undefined;
|
|
10958
|
+
size?: {
|
|
10959
|
+
width?: number | null | undefined;
|
|
10960
|
+
height?: number | null | undefined;
|
|
10961
|
+
} | undefined;
|
|
10962
|
+
figmaFile?: {
|
|
10963
|
+
sourceId: string;
|
|
10964
|
+
frameId: string;
|
|
10965
|
+
} | undefined;
|
|
10966
|
+
} | undefined;
|
|
10967
|
+
})[];
|
|
10968
|
+
columnWidth?: number | undefined;
|
|
10969
|
+
}>, "many">;
|
|
8928
10970
|
}, "strip", z.ZodTypeAny, {
|
|
8929
|
-
|
|
8930
|
-
|
|
8931
|
-
|
|
10971
|
+
cells: {
|
|
10972
|
+
id: string;
|
|
10973
|
+
alignment: "Center" | "Left" | "Right";
|
|
10974
|
+
nodes: ({
|
|
10975
|
+
type: "RichText";
|
|
10976
|
+
value: {
|
|
10977
|
+
spans: {
|
|
10978
|
+
text: string;
|
|
10979
|
+
attributes: {
|
|
10980
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10981
|
+
link?: string | undefined;
|
|
10982
|
+
documentationItemId?: string | undefined;
|
|
10983
|
+
openInNewWindow?: boolean | undefined;
|
|
10984
|
+
}[];
|
|
10985
|
+
}[];
|
|
10986
|
+
};
|
|
10987
|
+
} | {
|
|
10988
|
+
type: "MultiRichText";
|
|
10989
|
+
value: {
|
|
10990
|
+
spans: {
|
|
10991
|
+
text: string;
|
|
10992
|
+
attributes: {
|
|
10993
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10994
|
+
link?: string | undefined;
|
|
10995
|
+
documentationItemId?: string | undefined;
|
|
10996
|
+
openInNewWindow?: boolean | undefined;
|
|
10997
|
+
}[];
|
|
10998
|
+
}[];
|
|
10999
|
+
}[];
|
|
11000
|
+
} | {
|
|
11001
|
+
type: "Image";
|
|
8932
11002
|
value?: {
|
|
8933
|
-
|
|
8934
|
-
|
|
11003
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
11004
|
+
url: string;
|
|
11005
|
+
assetId?: string | undefined;
|
|
11006
|
+
size?: {
|
|
11007
|
+
width: number;
|
|
11008
|
+
height: number;
|
|
11009
|
+
} | undefined;
|
|
11010
|
+
figmaFile?: {
|
|
11011
|
+
sourceId: string;
|
|
11012
|
+
frameId: string;
|
|
11013
|
+
} | undefined;
|
|
8935
11014
|
} | undefined;
|
|
8936
|
-
};
|
|
8937
|
-
|
|
8938
|
-
|
|
8939
|
-
}) & (string | {
|
|
8940
|
-
aliasTo?: string | undefined;
|
|
8941
|
-
} | undefined);
|
|
8942
|
-
};
|
|
11015
|
+
})[];
|
|
11016
|
+
columnWidth?: number | undefined;
|
|
11017
|
+
}[];
|
|
8943
11018
|
}, {
|
|
8944
|
-
|
|
8945
|
-
|
|
8946
|
-
|
|
11019
|
+
cells: {
|
|
11020
|
+
id: string;
|
|
11021
|
+
alignment: "Center" | "Left" | "Right";
|
|
11022
|
+
nodes: ({
|
|
11023
|
+
type: "RichText";
|
|
11024
|
+
value: {
|
|
11025
|
+
spans: {
|
|
11026
|
+
text: string;
|
|
11027
|
+
attributes: {
|
|
11028
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
11029
|
+
link?: string | null | undefined;
|
|
11030
|
+
documentationItemId?: string | null | undefined;
|
|
11031
|
+
openInNewWindow?: boolean | null | undefined;
|
|
11032
|
+
}[];
|
|
11033
|
+
}[];
|
|
11034
|
+
};
|
|
11035
|
+
} | {
|
|
11036
|
+
type: "MultiRichText";
|
|
11037
|
+
value: {
|
|
11038
|
+
spans: {
|
|
11039
|
+
text: string;
|
|
11040
|
+
attributes: {
|
|
11041
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
11042
|
+
link?: string | null | undefined;
|
|
11043
|
+
documentationItemId?: string | null | undefined;
|
|
11044
|
+
openInNewWindow?: boolean | null | undefined;
|
|
11045
|
+
}[];
|
|
11046
|
+
}[];
|
|
11047
|
+
}[];
|
|
11048
|
+
} | {
|
|
11049
|
+
type: "Image";
|
|
8947
11050
|
value?: {
|
|
8948
|
-
|
|
8949
|
-
|
|
8950
|
-
|
|
8951
|
-
|
|
8952
|
-
|
|
8953
|
-
|
|
8954
|
-
|
|
8955
|
-
|
|
8956
|
-
|
|
8957
|
-
|
|
8958
|
-
|
|
8959
|
-
|
|
8960
|
-
|
|
8961
|
-
|
|
8962
|
-
|
|
8963
|
-
documentationItemId: z.ZodOptional<z.ZodString>;
|
|
8964
|
-
pageHeadingId: z.ZodOptional<z.ZodString>;
|
|
8965
|
-
url: z.ZodOptional<z.ZodString>;
|
|
8966
|
-
openInNewTab: z.ZodOptional<z.ZodBoolean>;
|
|
8967
|
-
}, "strip", z.ZodTypeAny, {
|
|
8968
|
-
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
8969
|
-
documentationItemId?: string | undefined;
|
|
8970
|
-
pageHeadingId?: string | undefined;
|
|
8971
|
-
url?: string | undefined;
|
|
8972
|
-
openInNewTab?: boolean | undefined;
|
|
8973
|
-
}, {
|
|
8974
|
-
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
8975
|
-
documentationItemId?: string | undefined;
|
|
8976
|
-
pageHeadingId?: string | undefined;
|
|
8977
|
-
url?: string | undefined;
|
|
8978
|
-
openInNewTab?: boolean | undefined;
|
|
8979
|
-
}>>;
|
|
8980
|
-
props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
|
|
8981
|
-
value: z.ZodAny;
|
|
8982
|
-
}, "strip", z.ZodTypeAny, {
|
|
8983
|
-
value?: any;
|
|
8984
|
-
}, {
|
|
8985
|
-
value?: any;
|
|
8986
|
-
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
8987
|
-
}, "strip", z.ZodTypeAny, {
|
|
8988
|
-
id: string;
|
|
8989
|
-
props: Record<string, {
|
|
8990
|
-
value?: any;
|
|
8991
|
-
} & Record<string, any>>;
|
|
8992
|
-
linksTo?: {
|
|
8993
|
-
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
8994
|
-
documentationItemId?: string | undefined;
|
|
8995
|
-
pageHeadingId?: string | undefined;
|
|
8996
|
-
url?: string | undefined;
|
|
8997
|
-
openInNewTab?: boolean | undefined;
|
|
8998
|
-
} | undefined;
|
|
8999
|
-
}, {
|
|
9000
|
-
id: string;
|
|
9001
|
-
props: Record<string, {
|
|
9002
|
-
value?: any;
|
|
9003
|
-
} & Record<string, any>>;
|
|
9004
|
-
linksTo?: {
|
|
9005
|
-
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
9006
|
-
documentationItemId?: string | undefined;
|
|
9007
|
-
pageHeadingId?: string | undefined;
|
|
9008
|
-
url?: string | undefined;
|
|
9009
|
-
openInNewTab?: boolean | undefined;
|
|
9010
|
-
} | undefined;
|
|
11051
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
11052
|
+
url: string;
|
|
11053
|
+
assetId?: string | undefined;
|
|
11054
|
+
size?: {
|
|
11055
|
+
width?: number | null | undefined;
|
|
11056
|
+
height?: number | null | undefined;
|
|
11057
|
+
} | undefined;
|
|
11058
|
+
figmaFile?: {
|
|
11059
|
+
sourceId: string;
|
|
11060
|
+
frameId: string;
|
|
11061
|
+
} | undefined;
|
|
11062
|
+
} | undefined;
|
|
11063
|
+
})[];
|
|
11064
|
+
columnWidth?: number | undefined;
|
|
11065
|
+
}[];
|
|
9011
11066
|
}>, "many">;
|
|
9012
11067
|
}, "strip", z.ZodTypeAny, {
|
|
9013
|
-
|
|
9014
|
-
|
|
9015
|
-
|
|
9016
|
-
|
|
9017
|
-
|
|
9018
|
-
|
|
9019
|
-
|
|
9020
|
-
|
|
9021
|
-
|
|
9022
|
-
|
|
9023
|
-
|
|
9024
|
-
|
|
9025
|
-
|
|
9026
|
-
|
|
9027
|
-
|
|
9028
|
-
|
|
9029
|
-
|
|
9030
|
-
|
|
9031
|
-
|
|
9032
|
-
|
|
11068
|
+
value: {
|
|
11069
|
+
cells: {
|
|
11070
|
+
id: string;
|
|
11071
|
+
alignment: "Center" | "Left" | "Right";
|
|
11072
|
+
nodes: ({
|
|
11073
|
+
type: "RichText";
|
|
11074
|
+
value: {
|
|
11075
|
+
spans: {
|
|
11076
|
+
text: string;
|
|
11077
|
+
attributes: {
|
|
11078
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
11079
|
+
link?: string | undefined;
|
|
11080
|
+
documentationItemId?: string | undefined;
|
|
11081
|
+
openInNewWindow?: boolean | undefined;
|
|
11082
|
+
}[];
|
|
11083
|
+
}[];
|
|
11084
|
+
};
|
|
11085
|
+
} | {
|
|
11086
|
+
type: "MultiRichText";
|
|
11087
|
+
value: {
|
|
11088
|
+
spans: {
|
|
11089
|
+
text: string;
|
|
11090
|
+
attributes: {
|
|
11091
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
11092
|
+
link?: string | undefined;
|
|
11093
|
+
documentationItemId?: string | undefined;
|
|
11094
|
+
openInNewWindow?: boolean | undefined;
|
|
11095
|
+
}[];
|
|
11096
|
+
}[];
|
|
11097
|
+
}[];
|
|
11098
|
+
} | {
|
|
11099
|
+
type: "Image";
|
|
9033
11100
|
value?: {
|
|
9034
|
-
|
|
9035
|
-
|
|
11101
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
11102
|
+
url: string;
|
|
11103
|
+
assetId?: string | undefined;
|
|
11104
|
+
size?: {
|
|
11105
|
+
width: number;
|
|
11106
|
+
height: number;
|
|
11107
|
+
} | undefined;
|
|
11108
|
+
figmaFile?: {
|
|
11109
|
+
sourceId: string;
|
|
11110
|
+
frameId: string;
|
|
11111
|
+
} | undefined;
|
|
9036
11112
|
} | undefined;
|
|
9037
|
-
};
|
|
9038
|
-
|
|
9039
|
-
|
|
9040
|
-
}) & (string | {
|
|
9041
|
-
aliasTo?: string | undefined;
|
|
9042
|
-
} | undefined);
|
|
9043
|
-
};
|
|
9044
|
-
} | undefined;
|
|
9045
|
-
}, {
|
|
9046
|
-
packageId: string;
|
|
9047
|
-
indentLevel: number;
|
|
9048
|
-
items: {
|
|
9049
|
-
id: string;
|
|
9050
|
-
props: Record<string, {
|
|
9051
|
-
value?: any;
|
|
9052
|
-
} & Record<string, any>>;
|
|
9053
|
-
linksTo?: {
|
|
9054
|
-
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
9055
|
-
documentationItemId?: string | undefined;
|
|
9056
|
-
pageHeadingId?: string | undefined;
|
|
9057
|
-
url?: string | undefined;
|
|
9058
|
-
openInNewTab?: boolean | undefined;
|
|
9059
|
-
} | undefined;
|
|
11113
|
+
})[];
|
|
11114
|
+
columnWidth?: number | undefined;
|
|
11115
|
+
}[];
|
|
9060
11116
|
}[];
|
|
9061
|
-
|
|
9062
|
-
|
|
9063
|
-
|
|
9064
|
-
|
|
9065
|
-
|
|
11117
|
+
highlightHeaderColumn?: boolean | undefined;
|
|
11118
|
+
highlightHeaderRow?: boolean | undefined;
|
|
11119
|
+
showBorder?: boolean | undefined;
|
|
11120
|
+
width?: number | undefined;
|
|
11121
|
+
}, {
|
|
11122
|
+
value: {
|
|
11123
|
+
cells: {
|
|
11124
|
+
id: string;
|
|
11125
|
+
alignment: "Center" | "Left" | "Right";
|
|
11126
|
+
nodes: ({
|
|
11127
|
+
type: "RichText";
|
|
11128
|
+
value: {
|
|
11129
|
+
spans: {
|
|
11130
|
+
text: string;
|
|
11131
|
+
attributes: {
|
|
11132
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
11133
|
+
link?: string | null | undefined;
|
|
11134
|
+
documentationItemId?: string | null | undefined;
|
|
11135
|
+
openInNewWindow?: boolean | null | undefined;
|
|
11136
|
+
}[];
|
|
11137
|
+
}[];
|
|
11138
|
+
};
|
|
11139
|
+
} | {
|
|
11140
|
+
type: "MultiRichText";
|
|
11141
|
+
value: {
|
|
11142
|
+
spans: {
|
|
11143
|
+
text: string;
|
|
11144
|
+
attributes: {
|
|
11145
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
11146
|
+
link?: string | null | undefined;
|
|
11147
|
+
documentationItemId?: string | null | undefined;
|
|
11148
|
+
openInNewWindow?: boolean | null | undefined;
|
|
11149
|
+
}[];
|
|
11150
|
+
}[];
|
|
11151
|
+
}[];
|
|
11152
|
+
} | {
|
|
11153
|
+
type: "Image";
|
|
9066
11154
|
value?: {
|
|
9067
|
-
|
|
9068
|
-
|
|
9069
|
-
|
|
9070
|
-
|
|
9071
|
-
|
|
9072
|
-
|
|
9073
|
-
|
|
9074
|
-
|
|
9075
|
-
|
|
9076
|
-
|
|
9077
|
-
|
|
11155
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
11156
|
+
url: string;
|
|
11157
|
+
assetId?: string | undefined;
|
|
11158
|
+
size?: {
|
|
11159
|
+
width?: number | null | undefined;
|
|
11160
|
+
height?: number | null | undefined;
|
|
11161
|
+
} | undefined;
|
|
11162
|
+
figmaFile?: {
|
|
11163
|
+
sourceId: string;
|
|
11164
|
+
frameId: string;
|
|
11165
|
+
} | undefined;
|
|
11166
|
+
} | undefined;
|
|
11167
|
+
})[];
|
|
11168
|
+
columnWidth?: number | undefined;
|
|
11169
|
+
}[];
|
|
11170
|
+
}[];
|
|
11171
|
+
highlightHeaderColumn?: boolean | undefined;
|
|
11172
|
+
highlightHeaderRow?: boolean | undefined;
|
|
11173
|
+
showBorder?: boolean | undefined;
|
|
11174
|
+
width?: number | undefined;
|
|
9078
11175
|
}>;
|
|
9079
|
-
type
|
|
11176
|
+
type PageBlockItemTableValue = z.infer<typeof PageBlockItemTableValue>;
|
|
9080
11177
|
|
|
9081
11178
|
declare const DocumentationPageDataV1: z.ZodObject<{
|
|
9082
11179
|
blocks: z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
@@ -43174,18 +45271,18 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<{
|
|
|
43174
45271
|
type: "FigmaRender";
|
|
43175
45272
|
originKey: string;
|
|
43176
45273
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
45274
|
+
format: "Png";
|
|
43177
45275
|
nodeId: string;
|
|
43178
45276
|
fileId: string;
|
|
43179
|
-
format: "Png";
|
|
43180
45277
|
scale: number;
|
|
43181
45278
|
fileVersionId?: string | undefined;
|
|
43182
45279
|
}, {
|
|
43183
45280
|
type: "FigmaRender";
|
|
43184
45281
|
originKey: string;
|
|
43185
45282
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
45283
|
+
format: "Png";
|
|
43186
45284
|
nodeId: string;
|
|
43187
45285
|
fileId: string;
|
|
43188
|
-
format: "Png";
|
|
43189
45286
|
scale: number;
|
|
43190
45287
|
fileVersionId?: string | undefined;
|
|
43191
45288
|
}>;
|
|
@@ -43197,9 +45294,9 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<{
|
|
|
43197
45294
|
type: "FigmaRender";
|
|
43198
45295
|
originKey: string;
|
|
43199
45296
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
45297
|
+
format: "Png";
|
|
43200
45298
|
nodeId: string;
|
|
43201
45299
|
fileId: string;
|
|
43202
|
-
format: "Png";
|
|
43203
45300
|
scale: number;
|
|
43204
45301
|
fileVersionId?: string | undefined;
|
|
43205
45302
|
};
|
|
@@ -43216,9 +45313,9 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<{
|
|
|
43216
45313
|
type: "FigmaRender";
|
|
43217
45314
|
originKey: string;
|
|
43218
45315
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
45316
|
+
format: "Png";
|
|
43219
45317
|
nodeId: string;
|
|
43220
45318
|
fileId: string;
|
|
43221
|
-
format: "Png";
|
|
43222
45319
|
scale: number;
|
|
43223
45320
|
fileVersionId?: string | undefined;
|
|
43224
45321
|
};
|
|
@@ -43266,9 +45363,9 @@ declare const FigmaFileStructureImportModel: z.ZodObject<{
|
|
|
43266
45363
|
type: "FigmaRender";
|
|
43267
45364
|
originKey: string;
|
|
43268
45365
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
45366
|
+
format: "Png";
|
|
43269
45367
|
nodeId: string;
|
|
43270
45368
|
fileId: string;
|
|
43271
|
-
format: "Png";
|
|
43272
45369
|
scale: number;
|
|
43273
45370
|
fileVersionId?: string | undefined;
|
|
43274
45371
|
};
|
|
@@ -43294,9 +45391,9 @@ declare const FigmaFileStructureImportModel: z.ZodObject<{
|
|
|
43294
45391
|
type: "FigmaRender";
|
|
43295
45392
|
originKey: string;
|
|
43296
45393
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
45394
|
+
format: "Png";
|
|
43297
45395
|
nodeId: string;
|
|
43298
45396
|
fileId: string;
|
|
43299
|
-
format: "Png";
|
|
43300
45397
|
scale: number;
|
|
43301
45398
|
fileVersionId?: string | undefined;
|
|
43302
45399
|
};
|
|
@@ -43347,9 +45444,9 @@ declare const FigmaFileStructureImportModel: z.ZodObject<{
|
|
|
43347
45444
|
type: "FigmaRender";
|
|
43348
45445
|
originKey: string;
|
|
43349
45446
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
45447
|
+
format: "Png";
|
|
43350
45448
|
nodeId: string;
|
|
43351
45449
|
fileId: string;
|
|
43352
|
-
format: "Png";
|
|
43353
45450
|
scale: number;
|
|
43354
45451
|
fileVersionId?: string | undefined;
|
|
43355
45452
|
};
|
|
@@ -43388,9 +45485,9 @@ declare const FigmaFileStructureImportModel: z.ZodObject<{
|
|
|
43388
45485
|
type: "FigmaRender";
|
|
43389
45486
|
originKey: string;
|
|
43390
45487
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
45488
|
+
format: "Png";
|
|
43391
45489
|
nodeId: string;
|
|
43392
45490
|
fileId: string;
|
|
43393
|
-
format: "Png";
|
|
43394
45491
|
scale: number;
|
|
43395
45492
|
fileVersionId?: string | undefined;
|
|
43396
45493
|
};
|
|
@@ -43446,9 +45543,9 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<{
|
|
|
43446
45543
|
type: "FigmaRender";
|
|
43447
45544
|
originKey: string;
|
|
43448
45545
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
45546
|
+
format: "Png";
|
|
43449
45547
|
nodeId: string;
|
|
43450
45548
|
fileId: string;
|
|
43451
|
-
format: "Png";
|
|
43452
45549
|
scale: number;
|
|
43453
45550
|
fileVersionId?: string | undefined;
|
|
43454
45551
|
};
|
|
@@ -43474,9 +45571,9 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<{
|
|
|
43474
45571
|
type: "FigmaRender";
|
|
43475
45572
|
originKey: string;
|
|
43476
45573
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
45574
|
+
format: "Png";
|
|
43477
45575
|
nodeId: string;
|
|
43478
45576
|
fileId: string;
|
|
43479
|
-
format: "Png";
|
|
43480
45577
|
scale: number;
|
|
43481
45578
|
fileVersionId?: string | undefined;
|
|
43482
45579
|
};
|
|
@@ -43518,9 +45615,9 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<{
|
|
|
43518
45615
|
type: "FigmaRender";
|
|
43519
45616
|
originKey: string;
|
|
43520
45617
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
45618
|
+
format: "Png";
|
|
43521
45619
|
nodeId: string;
|
|
43522
45620
|
fileId: string;
|
|
43523
|
-
format: "Png";
|
|
43524
45621
|
scale: number;
|
|
43525
45622
|
fileVersionId?: string | undefined;
|
|
43526
45623
|
};
|
|
@@ -43556,9 +45653,9 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<{
|
|
|
43556
45653
|
type: "FigmaRender";
|
|
43557
45654
|
originKey: string;
|
|
43558
45655
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
45656
|
+
format: "Png";
|
|
43559
45657
|
nodeId: string;
|
|
43560
45658
|
fileId: string;
|
|
43561
|
-
format: "Png";
|
|
43562
45659
|
scale: number;
|
|
43563
45660
|
fileVersionId?: string | undefined;
|
|
43564
45661
|
};
|
|
@@ -47019,18 +49116,18 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
47019
49116
|
type: "FigmaRender";
|
|
47020
49117
|
originKey: string;
|
|
47021
49118
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
49119
|
+
format: "Png";
|
|
47022
49120
|
nodeId: string;
|
|
47023
49121
|
fileId: string;
|
|
47024
|
-
format: "Png";
|
|
47025
49122
|
scale: number;
|
|
47026
49123
|
fileVersionId?: string | undefined;
|
|
47027
49124
|
}, {
|
|
47028
49125
|
type: "FigmaRender";
|
|
47029
49126
|
originKey: string;
|
|
47030
49127
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
49128
|
+
format: "Png";
|
|
47031
49129
|
nodeId: string;
|
|
47032
49130
|
fileId: string;
|
|
47033
|
-
format: "Png";
|
|
47034
49131
|
scale: number;
|
|
47035
49132
|
fileVersionId?: string | undefined;
|
|
47036
49133
|
}>, z.ZodObject<{
|
|
@@ -47045,17 +49142,17 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
47045
49142
|
type: "FigmaRender";
|
|
47046
49143
|
originKey: string;
|
|
47047
49144
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
49145
|
+
format: "Svg";
|
|
47048
49146
|
nodeId: string;
|
|
47049
49147
|
fileId: string;
|
|
47050
|
-
format: "Svg";
|
|
47051
49148
|
fileVersionId?: string | undefined;
|
|
47052
49149
|
}, {
|
|
47053
49150
|
type: "FigmaRender";
|
|
47054
49151
|
originKey: string;
|
|
47055
49152
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
49153
|
+
format: "Svg";
|
|
47056
49154
|
nodeId: string;
|
|
47057
49155
|
fileId: string;
|
|
47058
|
-
format: "Svg";
|
|
47059
49156
|
fileVersionId?: string | undefined;
|
|
47060
49157
|
}>]>]>;
|
|
47061
49158
|
isAsset: z.ZodBoolean;
|
|
@@ -47071,17 +49168,17 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
47071
49168
|
type: "FigmaRender";
|
|
47072
49169
|
originKey: string;
|
|
47073
49170
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
49171
|
+
format: "Svg";
|
|
47074
49172
|
nodeId: string;
|
|
47075
49173
|
fileId: string;
|
|
47076
|
-
format: "Svg";
|
|
47077
49174
|
fileVersionId?: string | undefined;
|
|
47078
49175
|
}, {
|
|
47079
49176
|
type: "FigmaRender";
|
|
47080
49177
|
originKey: string;
|
|
47081
49178
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
49179
|
+
format: "Svg";
|
|
47082
49180
|
nodeId: string;
|
|
47083
49181
|
fileId: string;
|
|
47084
|
-
format: "Svg";
|
|
47085
49182
|
fileVersionId?: string | undefined;
|
|
47086
49183
|
}>>;
|
|
47087
49184
|
origin: z.ZodObject<{
|
|
@@ -47133,77 +49230,77 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
47133
49230
|
type: "FigmaRender";
|
|
47134
49231
|
originKey: string;
|
|
47135
49232
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
49233
|
+
format: "Png";
|
|
47136
49234
|
nodeId: string;
|
|
47137
49235
|
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
49236
|
scale: number;
|
|
47190
49237
|
fileVersionId?: string | undefined;
|
|
47191
49238
|
} | {
|
|
47192
49239
|
type: "FigmaRender";
|
|
47193
49240
|
originKey: string;
|
|
47194
49241
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
49242
|
+
format: "Svg";
|
|
47195
49243
|
nodeId: string;
|
|
47196
49244
|
fileId: string;
|
|
47197
|
-
format: "Svg";
|
|
47198
49245
|
fileVersionId?: string | undefined;
|
|
47199
49246
|
};
|
|
47200
49247
|
svg?: {
|
|
47201
49248
|
type: "FigmaRender";
|
|
47202
49249
|
originKey: string;
|
|
47203
49250
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
49251
|
+
format: "Svg";
|
|
47204
49252
|
nodeId: string;
|
|
47205
49253
|
fileId: string;
|
|
49254
|
+
fileVersionId?: string | undefined;
|
|
49255
|
+
} | undefined;
|
|
49256
|
+
}, {
|
|
49257
|
+
id: string;
|
|
49258
|
+
origin: {
|
|
49259
|
+
id: string;
|
|
49260
|
+
name: string;
|
|
49261
|
+
sourceId: string;
|
|
49262
|
+
nodeId?: string | undefined;
|
|
49263
|
+
width?: number | undefined;
|
|
49264
|
+
height?: number | undefined;
|
|
49265
|
+
};
|
|
49266
|
+
brandPersistentId: string;
|
|
49267
|
+
sortOrder: number;
|
|
49268
|
+
meta: {
|
|
49269
|
+
name: string;
|
|
49270
|
+
description?: string | undefined;
|
|
49271
|
+
};
|
|
49272
|
+
isAsset: boolean;
|
|
49273
|
+
thumbnail: {
|
|
49274
|
+
type: "Url";
|
|
49275
|
+
url: string;
|
|
49276
|
+
originKey: string;
|
|
49277
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
49278
|
+
extension: "svg" | "png" | "jpg";
|
|
49279
|
+
} | {
|
|
49280
|
+
type: "FigmaRender";
|
|
49281
|
+
originKey: string;
|
|
49282
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
49283
|
+
format: "Png";
|
|
49284
|
+
nodeId: string;
|
|
49285
|
+
fileId: string;
|
|
49286
|
+
scale: number;
|
|
49287
|
+
fileVersionId?: string | undefined;
|
|
49288
|
+
} | {
|
|
49289
|
+
type: "FigmaRender";
|
|
49290
|
+
originKey: string;
|
|
49291
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
49292
|
+
format: "Svg";
|
|
49293
|
+
nodeId: string;
|
|
49294
|
+
fileId: string;
|
|
49295
|
+
fileVersionId?: string | undefined;
|
|
49296
|
+
};
|
|
49297
|
+
svg?: {
|
|
49298
|
+
type: "FigmaRender";
|
|
49299
|
+
originKey: string;
|
|
49300
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
47206
49301
|
format: "Svg";
|
|
49302
|
+
nodeId: string;
|
|
49303
|
+
fileId: string;
|
|
47207
49304
|
fileVersionId?: string | undefined;
|
|
47208
49305
|
} | undefined;
|
|
47209
49306
|
}>, "many">>;
|
|
@@ -55524,9 +57621,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
55524
57621
|
type: "FigmaRender";
|
|
55525
57622
|
originKey: string;
|
|
55526
57623
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
57624
|
+
format: "Png";
|
|
55527
57625
|
nodeId: string;
|
|
55528
57626
|
fileId: string;
|
|
55529
|
-
format: "Png";
|
|
55530
57627
|
scale: number;
|
|
55531
57628
|
fileVersionId?: string | undefined;
|
|
55532
57629
|
};
|
|
@@ -55544,9 +57641,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
55544
57641
|
type: "FigmaRender";
|
|
55545
57642
|
originKey: string;
|
|
55546
57643
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
57644
|
+
format: "Png";
|
|
55547
57645
|
nodeId: string;
|
|
55548
57646
|
fileId: string;
|
|
55549
|
-
format: "Png";
|
|
55550
57647
|
scale: number;
|
|
55551
57648
|
fileVersionId?: string | undefined;
|
|
55552
57649
|
};
|
|
@@ -55584,9 +57681,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
55584
57681
|
type: "FigmaRender";
|
|
55585
57682
|
originKey: string;
|
|
55586
57683
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
57684
|
+
format: "Png";
|
|
55587
57685
|
nodeId: string;
|
|
55588
57686
|
fileId: string;
|
|
55589
|
-
format: "Png";
|
|
55590
57687
|
scale: number;
|
|
55591
57688
|
fileVersionId?: string | undefined;
|
|
55592
57689
|
};
|
|
@@ -55612,9 +57709,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
55612
57709
|
type: "FigmaRender";
|
|
55613
57710
|
originKey: string;
|
|
55614
57711
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
57712
|
+
format: "Png";
|
|
55615
57713
|
nodeId: string;
|
|
55616
57714
|
fileId: string;
|
|
55617
|
-
format: "Png";
|
|
55618
57715
|
scale: number;
|
|
55619
57716
|
fileVersionId?: string | undefined;
|
|
55620
57717
|
};
|
|
@@ -55632,9 +57729,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
55632
57729
|
type: "FigmaRender";
|
|
55633
57730
|
originKey: string;
|
|
55634
57731
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
57732
|
+
format: "Png";
|
|
55635
57733
|
nodeId: string;
|
|
55636
57734
|
fileId: string;
|
|
55637
|
-
format: "Png";
|
|
55638
57735
|
scale: number;
|
|
55639
57736
|
fileVersionId?: string | undefined;
|
|
55640
57737
|
};
|
|
@@ -55684,9 +57781,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
55684
57781
|
type: "FigmaRender";
|
|
55685
57782
|
originKey: string;
|
|
55686
57783
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
57784
|
+
format: "Png";
|
|
55687
57785
|
nodeId: string;
|
|
55688
57786
|
fileId: string;
|
|
55689
|
-
format: "Png";
|
|
55690
57787
|
scale: number;
|
|
55691
57788
|
fileVersionId?: string | undefined;
|
|
55692
57789
|
};
|
|
@@ -55725,9 +57822,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
55725
57822
|
type: "FigmaRender";
|
|
55726
57823
|
originKey: string;
|
|
55727
57824
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
57825
|
+
format: "Png";
|
|
55728
57826
|
nodeId: string;
|
|
55729
57827
|
fileId: string;
|
|
55730
|
-
format: "Png";
|
|
55731
57828
|
scale: number;
|
|
55732
57829
|
fileVersionId?: string | undefined;
|
|
55733
57830
|
};
|
|
@@ -55745,9 +57842,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
55745
57842
|
type: "FigmaRender";
|
|
55746
57843
|
originKey: string;
|
|
55747
57844
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
57845
|
+
format: "Png";
|
|
55748
57846
|
nodeId: string;
|
|
55749
57847
|
fileId: string;
|
|
55750
|
-
format: "Png";
|
|
55751
57848
|
scale: number;
|
|
55752
57849
|
fileVersionId?: string | undefined;
|
|
55753
57850
|
};
|
|
@@ -56185,27 +58282,27 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
56185
58282
|
type: "FigmaRender";
|
|
56186
58283
|
originKey: string;
|
|
56187
58284
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
58285
|
+
format: "Png";
|
|
56188
58286
|
nodeId: string;
|
|
56189
58287
|
fileId: string;
|
|
56190
|
-
format: "Png";
|
|
56191
58288
|
scale: number;
|
|
56192
58289
|
fileVersionId?: string | undefined;
|
|
56193
58290
|
} | {
|
|
56194
58291
|
type: "FigmaRender";
|
|
56195
58292
|
originKey: string;
|
|
56196
58293
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
58294
|
+
format: "Svg";
|
|
56197
58295
|
nodeId: string;
|
|
56198
58296
|
fileId: string;
|
|
56199
|
-
format: "Svg";
|
|
56200
58297
|
fileVersionId?: string | undefined;
|
|
56201
58298
|
};
|
|
56202
58299
|
svg?: {
|
|
56203
58300
|
type: "FigmaRender";
|
|
56204
58301
|
originKey: string;
|
|
56205
58302
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
58303
|
+
format: "Svg";
|
|
56206
58304
|
nodeId: string;
|
|
56207
58305
|
fileId: string;
|
|
56208
|
-
format: "Svg";
|
|
56209
58306
|
fileVersionId?: string | undefined;
|
|
56210
58307
|
} | undefined;
|
|
56211
58308
|
}[];
|
|
@@ -56979,9 +59076,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
56979
59076
|
type: "FigmaRender";
|
|
56980
59077
|
originKey: string;
|
|
56981
59078
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
59079
|
+
format: "Png";
|
|
56982
59080
|
nodeId: string;
|
|
56983
59081
|
fileId: string;
|
|
56984
|
-
format: "Png";
|
|
56985
59082
|
scale: number;
|
|
56986
59083
|
fileVersionId?: string | undefined;
|
|
56987
59084
|
};
|
|
@@ -57027,9 +59124,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
57027
59124
|
type: "FigmaRender";
|
|
57028
59125
|
originKey: string;
|
|
57029
59126
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
59127
|
+
format: "Png";
|
|
57030
59128
|
nodeId: string;
|
|
57031
59129
|
fileId: string;
|
|
57032
|
-
format: "Png";
|
|
57033
59130
|
scale: number;
|
|
57034
59131
|
fileVersionId?: string | undefined;
|
|
57035
59132
|
};
|
|
@@ -57047,9 +59144,9 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
57047
59144
|
type: "FigmaRender";
|
|
57048
59145
|
originKey: string;
|
|
57049
59146
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
59147
|
+
format: "Png";
|
|
57050
59148
|
nodeId: string;
|
|
57051
59149
|
fileId: string;
|
|
57052
|
-
format: "Png";
|
|
57053
59150
|
scale: number;
|
|
57054
59151
|
fileVersionId?: string | undefined;
|
|
57055
59152
|
};
|
|
@@ -57473,27 +59570,27 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
57473
59570
|
type: "FigmaRender";
|
|
57474
59571
|
originKey: string;
|
|
57475
59572
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
59573
|
+
format: "Png";
|
|
57476
59574
|
nodeId: string;
|
|
57477
59575
|
fileId: string;
|
|
57478
|
-
format: "Png";
|
|
57479
59576
|
scale: number;
|
|
57480
59577
|
fileVersionId?: string | undefined;
|
|
57481
59578
|
} | {
|
|
57482
59579
|
type: "FigmaRender";
|
|
57483
59580
|
originKey: string;
|
|
57484
59581
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
59582
|
+
format: "Svg";
|
|
57485
59583
|
nodeId: string;
|
|
57486
59584
|
fileId: string;
|
|
57487
|
-
format: "Svg";
|
|
57488
59585
|
fileVersionId?: string | undefined;
|
|
57489
59586
|
};
|
|
57490
59587
|
svg?: {
|
|
57491
59588
|
type: "FigmaRender";
|
|
57492
59589
|
originKey: string;
|
|
57493
59590
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
59591
|
+
format: "Svg";
|
|
57494
59592
|
nodeId: string;
|
|
57495
59593
|
fileId: string;
|
|
57496
|
-
format: "Svg";
|
|
57497
59594
|
fileVersionId?: string | undefined;
|
|
57498
59595
|
} | undefined;
|
|
57499
59596
|
}[] | undefined;
|
|
@@ -61678,18 +63775,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61678
63775
|
type: "FigmaRender";
|
|
61679
63776
|
originKey: string;
|
|
61680
63777
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
63778
|
+
format: "Png";
|
|
61681
63779
|
nodeId: string;
|
|
61682
63780
|
fileId: string;
|
|
61683
|
-
format: "Png";
|
|
61684
63781
|
scale: number;
|
|
61685
63782
|
fileVersionId?: string | undefined;
|
|
61686
63783
|
}, {
|
|
61687
63784
|
type: "FigmaRender";
|
|
61688
63785
|
originKey: string;
|
|
61689
63786
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
63787
|
+
format: "Png";
|
|
61690
63788
|
nodeId: string;
|
|
61691
63789
|
fileId: string;
|
|
61692
|
-
format: "Png";
|
|
61693
63790
|
scale: number;
|
|
61694
63791
|
fileVersionId?: string | undefined;
|
|
61695
63792
|
}>, z.ZodObject<{
|
|
@@ -61704,17 +63801,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61704
63801
|
type: "FigmaRender";
|
|
61705
63802
|
originKey: string;
|
|
61706
63803
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
63804
|
+
format: "Svg";
|
|
61707
63805
|
nodeId: string;
|
|
61708
63806
|
fileId: string;
|
|
61709
|
-
format: "Svg";
|
|
61710
63807
|
fileVersionId?: string | undefined;
|
|
61711
63808
|
}, {
|
|
61712
63809
|
type: "FigmaRender";
|
|
61713
63810
|
originKey: string;
|
|
61714
63811
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
63812
|
+
format: "Svg";
|
|
61715
63813
|
nodeId: string;
|
|
61716
63814
|
fileId: string;
|
|
61717
|
-
format: "Svg";
|
|
61718
63815
|
fileVersionId?: string | undefined;
|
|
61719
63816
|
}>]>]>;
|
|
61720
63817
|
originId: z.ZodString;
|
|
@@ -61747,18 +63844,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61747
63844
|
type: "FigmaRender";
|
|
61748
63845
|
originKey: string;
|
|
61749
63846
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
63847
|
+
format: "Png";
|
|
61750
63848
|
nodeId: string;
|
|
61751
63849
|
fileId: string;
|
|
61752
|
-
format: "Png";
|
|
61753
63850
|
scale: number;
|
|
61754
63851
|
fileVersionId?: string | undefined;
|
|
61755
63852
|
} | {
|
|
61756
63853
|
type: "FigmaRender";
|
|
61757
63854
|
originKey: string;
|
|
61758
63855
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
63856
|
+
format: "Svg";
|
|
61759
63857
|
nodeId: string;
|
|
61760
63858
|
fileId: string;
|
|
61761
|
-
format: "Svg";
|
|
61762
63859
|
fileVersionId?: string | undefined;
|
|
61763
63860
|
};
|
|
61764
63861
|
originId: string;
|
|
@@ -61783,18 +63880,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61783
63880
|
type: "FigmaRender";
|
|
61784
63881
|
originKey: string;
|
|
61785
63882
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
63883
|
+
format: "Png";
|
|
61786
63884
|
nodeId: string;
|
|
61787
63885
|
fileId: string;
|
|
61788
|
-
format: "Png";
|
|
61789
63886
|
scale: number;
|
|
61790
63887
|
fileVersionId?: string | undefined;
|
|
61791
63888
|
} | {
|
|
61792
63889
|
type: "FigmaRender";
|
|
61793
63890
|
originKey: string;
|
|
61794
63891
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
63892
|
+
format: "Svg";
|
|
61795
63893
|
nodeId: string;
|
|
61796
63894
|
fileId: string;
|
|
61797
|
-
format: "Svg";
|
|
61798
63895
|
fileVersionId?: string | undefined;
|
|
61799
63896
|
};
|
|
61800
63897
|
originId: string;
|
|
@@ -61847,18 +63944,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61847
63944
|
type: "FigmaRender";
|
|
61848
63945
|
originKey: string;
|
|
61849
63946
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
63947
|
+
format: "Png";
|
|
61850
63948
|
nodeId: string;
|
|
61851
63949
|
fileId: string;
|
|
61852
|
-
format: "Png";
|
|
61853
63950
|
scale: number;
|
|
61854
63951
|
fileVersionId?: string | undefined;
|
|
61855
63952
|
}, {
|
|
61856
63953
|
type: "FigmaRender";
|
|
61857
63954
|
originKey: string;
|
|
61858
63955
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
63956
|
+
format: "Png";
|
|
61859
63957
|
nodeId: string;
|
|
61860
63958
|
fileId: string;
|
|
61861
|
-
format: "Png";
|
|
61862
63959
|
scale: number;
|
|
61863
63960
|
fileVersionId?: string | undefined;
|
|
61864
63961
|
}>, z.ZodObject<{
|
|
@@ -61873,17 +63970,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61873
63970
|
type: "FigmaRender";
|
|
61874
63971
|
originKey: string;
|
|
61875
63972
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
63973
|
+
format: "Svg";
|
|
61876
63974
|
nodeId: string;
|
|
61877
63975
|
fileId: string;
|
|
61878
|
-
format: "Svg";
|
|
61879
63976
|
fileVersionId?: string | undefined;
|
|
61880
63977
|
}, {
|
|
61881
63978
|
type: "FigmaRender";
|
|
61882
63979
|
originKey: string;
|
|
61883
63980
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
63981
|
+
format: "Svg";
|
|
61884
63982
|
nodeId: string;
|
|
61885
63983
|
fileId: string;
|
|
61886
|
-
format: "Svg";
|
|
61887
63984
|
fileVersionId?: string | undefined;
|
|
61888
63985
|
}>]>]>;
|
|
61889
63986
|
originId: z.ZodString;
|
|
@@ -61899,17 +63996,17 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61899
63996
|
type: "FigmaRender";
|
|
61900
63997
|
originKey: string;
|
|
61901
63998
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
63999
|
+
format: "Svg";
|
|
61902
64000
|
nodeId: string;
|
|
61903
64001
|
fileId: string;
|
|
61904
|
-
format: "Svg";
|
|
61905
64002
|
fileVersionId?: string | undefined;
|
|
61906
64003
|
}, {
|
|
61907
64004
|
type: "FigmaRender";
|
|
61908
64005
|
originKey: string;
|
|
61909
64006
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
64007
|
+
format: "Svg";
|
|
61910
64008
|
nodeId: string;
|
|
61911
64009
|
fileId: string;
|
|
61912
|
-
format: "Svg";
|
|
61913
64010
|
fileVersionId?: string | undefined;
|
|
61914
64011
|
}>;
|
|
61915
64012
|
originMetadata: z.ZodObject<{
|
|
@@ -61931,9 +64028,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61931
64028
|
type: "FigmaRender";
|
|
61932
64029
|
originKey: string;
|
|
61933
64030
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
64031
|
+
format: "Svg";
|
|
61934
64032
|
nodeId: string;
|
|
61935
64033
|
fileId: string;
|
|
61936
|
-
format: "Svg";
|
|
61937
64034
|
fileVersionId?: string | undefined;
|
|
61938
64035
|
};
|
|
61939
64036
|
meta: {
|
|
@@ -61950,18 +64047,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61950
64047
|
type: "FigmaRender";
|
|
61951
64048
|
originKey: string;
|
|
61952
64049
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
64050
|
+
format: "Png";
|
|
61953
64051
|
nodeId: string;
|
|
61954
64052
|
fileId: string;
|
|
61955
|
-
format: "Png";
|
|
61956
64053
|
scale: number;
|
|
61957
64054
|
fileVersionId?: string | undefined;
|
|
61958
64055
|
} | {
|
|
61959
64056
|
type: "FigmaRender";
|
|
61960
64057
|
originKey: string;
|
|
61961
64058
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
64059
|
+
format: "Svg";
|
|
61962
64060
|
nodeId: string;
|
|
61963
64061
|
fileId: string;
|
|
61964
|
-
format: "Svg";
|
|
61965
64062
|
fileVersionId?: string | undefined;
|
|
61966
64063
|
};
|
|
61967
64064
|
originId: string;
|
|
@@ -61976,9 +64073,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61976
64073
|
type: "FigmaRender";
|
|
61977
64074
|
originKey: string;
|
|
61978
64075
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
64076
|
+
format: "Svg";
|
|
61979
64077
|
nodeId: string;
|
|
61980
64078
|
fileId: string;
|
|
61981
|
-
format: "Svg";
|
|
61982
64079
|
fileVersionId?: string | undefined;
|
|
61983
64080
|
};
|
|
61984
64081
|
meta: {
|
|
@@ -61995,18 +64092,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
61995
64092
|
type: "FigmaRender";
|
|
61996
64093
|
originKey: string;
|
|
61997
64094
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
64095
|
+
format: "Png";
|
|
61998
64096
|
nodeId: string;
|
|
61999
64097
|
fileId: string;
|
|
62000
|
-
format: "Png";
|
|
62001
64098
|
scale: number;
|
|
62002
64099
|
fileVersionId?: string | undefined;
|
|
62003
64100
|
} | {
|
|
62004
64101
|
type: "FigmaRender";
|
|
62005
64102
|
originKey: string;
|
|
62006
64103
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
64104
|
+
format: "Svg";
|
|
62007
64105
|
nodeId: string;
|
|
62008
64106
|
fileId: string;
|
|
62009
|
-
format: "Svg";
|
|
62010
64107
|
fileVersionId?: string | undefined;
|
|
62011
64108
|
};
|
|
62012
64109
|
originId: string;
|
|
@@ -70274,9 +72371,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70274
72371
|
type: "FigmaRender";
|
|
70275
72372
|
originKey: string;
|
|
70276
72373
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
72374
|
+
format: "Png";
|
|
70277
72375
|
nodeId: string;
|
|
70278
72376
|
fileId: string;
|
|
70279
|
-
format: "Png";
|
|
70280
72377
|
scale: number;
|
|
70281
72378
|
fileVersionId?: string | undefined;
|
|
70282
72379
|
};
|
|
@@ -70294,9 +72391,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70294
72391
|
type: "FigmaRender";
|
|
70295
72392
|
originKey: string;
|
|
70296
72393
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
72394
|
+
format: "Png";
|
|
70297
72395
|
nodeId: string;
|
|
70298
72396
|
fileId: string;
|
|
70299
|
-
format: "Png";
|
|
70300
72397
|
scale: number;
|
|
70301
72398
|
fileVersionId?: string | undefined;
|
|
70302
72399
|
};
|
|
@@ -70334,9 +72431,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70334
72431
|
type: "FigmaRender";
|
|
70335
72432
|
originKey: string;
|
|
70336
72433
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
72434
|
+
format: "Png";
|
|
70337
72435
|
nodeId: string;
|
|
70338
72436
|
fileId: string;
|
|
70339
|
-
format: "Png";
|
|
70340
72437
|
scale: number;
|
|
70341
72438
|
fileVersionId?: string | undefined;
|
|
70342
72439
|
};
|
|
@@ -70362,9 +72459,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70362
72459
|
type: "FigmaRender";
|
|
70363
72460
|
originKey: string;
|
|
70364
72461
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
72462
|
+
format: "Png";
|
|
70365
72463
|
nodeId: string;
|
|
70366
72464
|
fileId: string;
|
|
70367
|
-
format: "Png";
|
|
70368
72465
|
scale: number;
|
|
70369
72466
|
fileVersionId?: string | undefined;
|
|
70370
72467
|
};
|
|
@@ -70382,9 +72479,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70382
72479
|
type: "FigmaRender";
|
|
70383
72480
|
originKey: string;
|
|
70384
72481
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
72482
|
+
format: "Png";
|
|
70385
72483
|
nodeId: string;
|
|
70386
72484
|
fileId: string;
|
|
70387
|
-
format: "Png";
|
|
70388
72485
|
scale: number;
|
|
70389
72486
|
fileVersionId?: string | undefined;
|
|
70390
72487
|
};
|
|
@@ -70425,9 +72522,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70425
72522
|
type: "FigmaRender";
|
|
70426
72523
|
originKey: string;
|
|
70427
72524
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
72525
|
+
format: "Png";
|
|
70428
72526
|
nodeId: string;
|
|
70429
72527
|
fileId: string;
|
|
70430
|
-
format: "Png";
|
|
70431
72528
|
scale: number;
|
|
70432
72529
|
fileVersionId?: string | undefined;
|
|
70433
72530
|
};
|
|
@@ -70463,9 +72560,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70463
72560
|
type: "FigmaRender";
|
|
70464
72561
|
originKey: string;
|
|
70465
72562
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
72563
|
+
format: "Png";
|
|
70466
72564
|
nodeId: string;
|
|
70467
72565
|
fileId: string;
|
|
70468
|
-
format: "Png";
|
|
70469
72566
|
scale: number;
|
|
70470
72567
|
fileVersionId?: string | undefined;
|
|
70471
72568
|
};
|
|
@@ -70483,9 +72580,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70483
72580
|
type: "FigmaRender";
|
|
70484
72581
|
originKey: string;
|
|
70485
72582
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
72583
|
+
format: "Png";
|
|
70486
72584
|
nodeId: string;
|
|
70487
72585
|
fileId: string;
|
|
70488
|
-
format: "Png";
|
|
70489
72586
|
scale: number;
|
|
70490
72587
|
fileVersionId?: string | undefined;
|
|
70491
72588
|
};
|
|
@@ -70902,18 +72999,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70902
72999
|
type: "FigmaRender";
|
|
70903
73000
|
originKey: string;
|
|
70904
73001
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73002
|
+
format: "Png";
|
|
70905
73003
|
nodeId: string;
|
|
70906
73004
|
fileId: string;
|
|
70907
|
-
format: "Png";
|
|
70908
73005
|
scale: number;
|
|
70909
73006
|
fileVersionId?: string | undefined;
|
|
70910
73007
|
} | {
|
|
70911
73008
|
type: "FigmaRender";
|
|
70912
73009
|
originKey: string;
|
|
70913
73010
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73011
|
+
format: "Svg";
|
|
70914
73012
|
nodeId: string;
|
|
70915
73013
|
fileId: string;
|
|
70916
|
-
format: "Svg";
|
|
70917
73014
|
fileVersionId?: string | undefined;
|
|
70918
73015
|
};
|
|
70919
73016
|
originId: string;
|
|
@@ -70929,9 +73026,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70929
73026
|
type: "FigmaRender";
|
|
70930
73027
|
originKey: string;
|
|
70931
73028
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73029
|
+
format: "Svg";
|
|
70932
73030
|
nodeId: string;
|
|
70933
73031
|
fileId: string;
|
|
70934
|
-
format: "Svg";
|
|
70935
73032
|
fileVersionId?: string | undefined;
|
|
70936
73033
|
};
|
|
70937
73034
|
meta: {
|
|
@@ -70948,18 +73045,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
70948
73045
|
type: "FigmaRender";
|
|
70949
73046
|
originKey: string;
|
|
70950
73047
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73048
|
+
format: "Png";
|
|
70951
73049
|
nodeId: string;
|
|
70952
73050
|
fileId: string;
|
|
70953
|
-
format: "Png";
|
|
70954
73051
|
scale: number;
|
|
70955
73052
|
fileVersionId?: string | undefined;
|
|
70956
73053
|
} | {
|
|
70957
73054
|
type: "FigmaRender";
|
|
70958
73055
|
originKey: string;
|
|
70959
73056
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73057
|
+
format: "Svg";
|
|
70960
73058
|
nodeId: string;
|
|
70961
73059
|
fileId: string;
|
|
70962
|
-
format: "Svg";
|
|
70963
73060
|
fileVersionId?: string | undefined;
|
|
70964
73061
|
};
|
|
70965
73062
|
originId: string;
|
|
@@ -71733,9 +73830,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
71733
73830
|
type: "FigmaRender";
|
|
71734
73831
|
originKey: string;
|
|
71735
73832
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
73833
|
+
format: "Png";
|
|
71736
73834
|
nodeId: string;
|
|
71737
73835
|
fileId: string;
|
|
71738
|
-
format: "Png";
|
|
71739
73836
|
scale: number;
|
|
71740
73837
|
fileVersionId?: string | undefined;
|
|
71741
73838
|
};
|
|
@@ -72148,18 +74245,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
72148
74245
|
type: "FigmaRender";
|
|
72149
74246
|
originKey: string;
|
|
72150
74247
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
74248
|
+
format: "Png";
|
|
72151
74249
|
nodeId: string;
|
|
72152
74250
|
fileId: string;
|
|
72153
|
-
format: "Png";
|
|
72154
74251
|
scale: number;
|
|
72155
74252
|
fileVersionId?: string | undefined;
|
|
72156
74253
|
} | {
|
|
72157
74254
|
type: "FigmaRender";
|
|
72158
74255
|
originKey: string;
|
|
72159
74256
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
74257
|
+
format: "Svg";
|
|
72160
74258
|
nodeId: string;
|
|
72161
74259
|
fileId: string;
|
|
72162
|
-
format: "Svg";
|
|
72163
74260
|
fileVersionId?: string | undefined;
|
|
72164
74261
|
};
|
|
72165
74262
|
originId: string;
|
|
@@ -72175,9 +74272,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
72175
74272
|
type: "FigmaRender";
|
|
72176
74273
|
originKey: string;
|
|
72177
74274
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
74275
|
+
format: "Svg";
|
|
72178
74276
|
nodeId: string;
|
|
72179
74277
|
fileId: string;
|
|
72180
|
-
format: "Svg";
|
|
72181
74278
|
fileVersionId?: string | undefined;
|
|
72182
74279
|
};
|
|
72183
74280
|
meta: {
|
|
@@ -72194,18 +74291,18 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
72194
74291
|
type: "FigmaRender";
|
|
72195
74292
|
originKey: string;
|
|
72196
74293
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
74294
|
+
format: "Png";
|
|
72197
74295
|
nodeId: string;
|
|
72198
74296
|
fileId: string;
|
|
72199
|
-
format: "Png";
|
|
72200
74297
|
scale: number;
|
|
72201
74298
|
fileVersionId?: string | undefined;
|
|
72202
74299
|
} | {
|
|
72203
74300
|
type: "FigmaRender";
|
|
72204
74301
|
originKey: string;
|
|
72205
74302
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
74303
|
+
format: "Svg";
|
|
72206
74304
|
nodeId: string;
|
|
72207
74305
|
fileId: string;
|
|
72208
|
-
format: "Svg";
|
|
72209
74306
|
fileVersionId?: string | undefined;
|
|
72210
74307
|
};
|
|
72211
74308
|
originId: string;
|
|
@@ -72984,9 +75081,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
72984
75081
|
type: "FigmaRender";
|
|
72985
75082
|
originKey: string;
|
|
72986
75083
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75084
|
+
format: "Png";
|
|
72987
75085
|
nodeId: string;
|
|
72988
75086
|
fileId: string;
|
|
72989
|
-
format: "Png";
|
|
72990
75087
|
scale: number;
|
|
72991
75088
|
fileVersionId?: string | undefined;
|
|
72992
75089
|
};
|
|
@@ -73004,9 +75101,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
73004
75101
|
type: "FigmaRender";
|
|
73005
75102
|
originKey: string;
|
|
73006
75103
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75104
|
+
format: "Png";
|
|
73007
75105
|
nodeId: string;
|
|
73008
75106
|
fileId: string;
|
|
73009
|
-
format: "Png";
|
|
73010
75107
|
scale: number;
|
|
73011
75108
|
fileVersionId?: string | undefined;
|
|
73012
75109
|
};
|
|
@@ -73075,18 +75172,18 @@ declare const ComponentImportModel: z.ZodObject<{
|
|
|
73075
75172
|
type: "FigmaRender";
|
|
73076
75173
|
originKey: string;
|
|
73077
75174
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75175
|
+
format: "Png";
|
|
73078
75176
|
nodeId: string;
|
|
73079
75177
|
fileId: string;
|
|
73080
|
-
format: "Png";
|
|
73081
75178
|
scale: number;
|
|
73082
75179
|
fileVersionId?: string | undefined;
|
|
73083
75180
|
}, {
|
|
73084
75181
|
type: "FigmaRender";
|
|
73085
75182
|
originKey: string;
|
|
73086
75183
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75184
|
+
format: "Png";
|
|
73087
75185
|
nodeId: string;
|
|
73088
75186
|
fileId: string;
|
|
73089
|
-
format: "Png";
|
|
73090
75187
|
scale: number;
|
|
73091
75188
|
fileVersionId?: string | undefined;
|
|
73092
75189
|
}>, z.ZodObject<{
|
|
@@ -73101,17 +75198,17 @@ declare const ComponentImportModel: z.ZodObject<{
|
|
|
73101
75198
|
type: "FigmaRender";
|
|
73102
75199
|
originKey: string;
|
|
73103
75200
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75201
|
+
format: "Svg";
|
|
73104
75202
|
nodeId: string;
|
|
73105
75203
|
fileId: string;
|
|
73106
|
-
format: "Svg";
|
|
73107
75204
|
fileVersionId?: string | undefined;
|
|
73108
75205
|
}, {
|
|
73109
75206
|
type: "FigmaRender";
|
|
73110
75207
|
originKey: string;
|
|
73111
75208
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75209
|
+
format: "Svg";
|
|
73112
75210
|
nodeId: string;
|
|
73113
75211
|
fileId: string;
|
|
73114
|
-
format: "Svg";
|
|
73115
75212
|
fileVersionId?: string | undefined;
|
|
73116
75213
|
}>]>]>;
|
|
73117
75214
|
isAsset: z.ZodBoolean;
|
|
@@ -73127,17 +75224,17 @@ declare const ComponentImportModel: z.ZodObject<{
|
|
|
73127
75224
|
type: "FigmaRender";
|
|
73128
75225
|
originKey: string;
|
|
73129
75226
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75227
|
+
format: "Svg";
|
|
73130
75228
|
nodeId: string;
|
|
73131
75229
|
fileId: string;
|
|
73132
|
-
format: "Svg";
|
|
73133
75230
|
fileVersionId?: string | undefined;
|
|
73134
75231
|
}, {
|
|
73135
75232
|
type: "FigmaRender";
|
|
73136
75233
|
originKey: string;
|
|
73137
75234
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75235
|
+
format: "Svg";
|
|
73138
75236
|
nodeId: string;
|
|
73139
75237
|
fileId: string;
|
|
73140
|
-
format: "Svg";
|
|
73141
75238
|
fileVersionId?: string | undefined;
|
|
73142
75239
|
}>>;
|
|
73143
75240
|
origin: z.ZodObject<{
|
|
@@ -73189,27 +75286,27 @@ declare const ComponentImportModel: z.ZodObject<{
|
|
|
73189
75286
|
type: "FigmaRender";
|
|
73190
75287
|
originKey: string;
|
|
73191
75288
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75289
|
+
format: "Png";
|
|
73192
75290
|
nodeId: string;
|
|
73193
75291
|
fileId: string;
|
|
73194
|
-
format: "Png";
|
|
73195
75292
|
scale: number;
|
|
73196
75293
|
fileVersionId?: string | undefined;
|
|
73197
75294
|
} | {
|
|
73198
75295
|
type: "FigmaRender";
|
|
73199
75296
|
originKey: string;
|
|
73200
75297
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75298
|
+
format: "Svg";
|
|
73201
75299
|
nodeId: string;
|
|
73202
75300
|
fileId: string;
|
|
73203
|
-
format: "Svg";
|
|
73204
75301
|
fileVersionId?: string | undefined;
|
|
73205
75302
|
};
|
|
73206
75303
|
svg?: {
|
|
73207
75304
|
type: "FigmaRender";
|
|
73208
75305
|
originKey: string;
|
|
73209
75306
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75307
|
+
format: "Svg";
|
|
73210
75308
|
nodeId: string;
|
|
73211
75309
|
fileId: string;
|
|
73212
|
-
format: "Svg";
|
|
73213
75310
|
fileVersionId?: string | undefined;
|
|
73214
75311
|
} | undefined;
|
|
73215
75312
|
}, {
|
|
@@ -73239,27 +75336,27 @@ declare const ComponentImportModel: z.ZodObject<{
|
|
|
73239
75336
|
type: "FigmaRender";
|
|
73240
75337
|
originKey: string;
|
|
73241
75338
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75339
|
+
format: "Png";
|
|
73242
75340
|
nodeId: string;
|
|
73243
75341
|
fileId: string;
|
|
73244
|
-
format: "Png";
|
|
73245
75342
|
scale: number;
|
|
73246
75343
|
fileVersionId?: string | undefined;
|
|
73247
75344
|
} | {
|
|
73248
75345
|
type: "FigmaRender";
|
|
73249
75346
|
originKey: string;
|
|
73250
75347
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75348
|
+
format: "Svg";
|
|
73251
75349
|
nodeId: string;
|
|
73252
75350
|
fileId: string;
|
|
73253
|
-
format: "Svg";
|
|
73254
75351
|
fileVersionId?: string | undefined;
|
|
73255
75352
|
};
|
|
73256
75353
|
svg?: {
|
|
73257
75354
|
type: "FigmaRender";
|
|
73258
75355
|
originKey: string;
|
|
73259
75356
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75357
|
+
format: "Svg";
|
|
73260
75358
|
nodeId: string;
|
|
73261
75359
|
fileId: string;
|
|
73262
|
-
format: "Svg";
|
|
73263
75360
|
fileVersionId?: string | undefined;
|
|
73264
75361
|
} | undefined;
|
|
73265
75362
|
}>;
|
|
@@ -73307,18 +75404,18 @@ declare const ComponentImportModelInput: z.ZodObject<{
|
|
|
73307
75404
|
type: "FigmaRender";
|
|
73308
75405
|
originKey: string;
|
|
73309
75406
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75407
|
+
format: "Png";
|
|
73310
75408
|
nodeId: string;
|
|
73311
75409
|
fileId: string;
|
|
73312
|
-
format: "Png";
|
|
73313
75410
|
scale: number;
|
|
73314
75411
|
fileVersionId?: string | undefined;
|
|
73315
75412
|
}, {
|
|
73316
75413
|
type: "FigmaRender";
|
|
73317
75414
|
originKey: string;
|
|
73318
75415
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75416
|
+
format: "Png";
|
|
73319
75417
|
nodeId: string;
|
|
73320
75418
|
fileId: string;
|
|
73321
|
-
format: "Png";
|
|
73322
75419
|
scale: number;
|
|
73323
75420
|
fileVersionId?: string | undefined;
|
|
73324
75421
|
}>, z.ZodObject<{
|
|
@@ -73333,17 +75430,17 @@ declare const ComponentImportModelInput: z.ZodObject<{
|
|
|
73333
75430
|
type: "FigmaRender";
|
|
73334
75431
|
originKey: string;
|
|
73335
75432
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75433
|
+
format: "Svg";
|
|
73336
75434
|
nodeId: string;
|
|
73337
75435
|
fileId: string;
|
|
73338
|
-
format: "Svg";
|
|
73339
75436
|
fileVersionId?: string | undefined;
|
|
73340
75437
|
}, {
|
|
73341
75438
|
type: "FigmaRender";
|
|
73342
75439
|
originKey: string;
|
|
73343
75440
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75441
|
+
format: "Svg";
|
|
73344
75442
|
nodeId: string;
|
|
73345
75443
|
fileId: string;
|
|
73346
|
-
format: "Svg";
|
|
73347
75444
|
fileVersionId?: string | undefined;
|
|
73348
75445
|
}>]>]>;
|
|
73349
75446
|
originId: z.ZodString;
|
|
@@ -73376,18 +75473,18 @@ declare const ComponentImportModelInput: z.ZodObject<{
|
|
|
73376
75473
|
type: "FigmaRender";
|
|
73377
75474
|
originKey: string;
|
|
73378
75475
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75476
|
+
format: "Png";
|
|
73379
75477
|
nodeId: string;
|
|
73380
75478
|
fileId: string;
|
|
73381
|
-
format: "Png";
|
|
73382
75479
|
scale: number;
|
|
73383
75480
|
fileVersionId?: string | undefined;
|
|
73384
75481
|
} | {
|
|
73385
75482
|
type: "FigmaRender";
|
|
73386
75483
|
originKey: string;
|
|
73387
75484
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75485
|
+
format: "Svg";
|
|
73388
75486
|
nodeId: string;
|
|
73389
75487
|
fileId: string;
|
|
73390
|
-
format: "Svg";
|
|
73391
75488
|
fileVersionId?: string | undefined;
|
|
73392
75489
|
};
|
|
73393
75490
|
originId: string;
|
|
@@ -73412,18 +75509,18 @@ declare const ComponentImportModelInput: z.ZodObject<{
|
|
|
73412
75509
|
type: "FigmaRender";
|
|
73413
75510
|
originKey: string;
|
|
73414
75511
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75512
|
+
format: "Png";
|
|
73415
75513
|
nodeId: string;
|
|
73416
75514
|
fileId: string;
|
|
73417
|
-
format: "Png";
|
|
73418
75515
|
scale: number;
|
|
73419
75516
|
fileVersionId?: string | undefined;
|
|
73420
75517
|
} | {
|
|
73421
75518
|
type: "FigmaRender";
|
|
73422
75519
|
originKey: string;
|
|
73423
75520
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75521
|
+
format: "Svg";
|
|
73424
75522
|
nodeId: string;
|
|
73425
75523
|
fileId: string;
|
|
73426
|
-
format: "Svg";
|
|
73427
75524
|
fileVersionId?: string | undefined;
|
|
73428
75525
|
};
|
|
73429
75526
|
originId: string;
|
|
@@ -73477,18 +75574,18 @@ declare const AssetImportModelInput: z.ZodObject<{
|
|
|
73477
75574
|
type: "FigmaRender";
|
|
73478
75575
|
originKey: string;
|
|
73479
75576
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75577
|
+
format: "Png";
|
|
73480
75578
|
nodeId: string;
|
|
73481
75579
|
fileId: string;
|
|
73482
|
-
format: "Png";
|
|
73483
75580
|
scale: number;
|
|
73484
75581
|
fileVersionId?: string | undefined;
|
|
73485
75582
|
}, {
|
|
73486
75583
|
type: "FigmaRender";
|
|
73487
75584
|
originKey: string;
|
|
73488
75585
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75586
|
+
format: "Png";
|
|
73489
75587
|
nodeId: string;
|
|
73490
75588
|
fileId: string;
|
|
73491
|
-
format: "Png";
|
|
73492
75589
|
scale: number;
|
|
73493
75590
|
fileVersionId?: string | undefined;
|
|
73494
75591
|
}>, z.ZodObject<{
|
|
@@ -73503,17 +75600,17 @@ declare const AssetImportModelInput: z.ZodObject<{
|
|
|
73503
75600
|
type: "FigmaRender";
|
|
73504
75601
|
originKey: string;
|
|
73505
75602
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75603
|
+
format: "Svg";
|
|
73506
75604
|
nodeId: string;
|
|
73507
75605
|
fileId: string;
|
|
73508
|
-
format: "Svg";
|
|
73509
75606
|
fileVersionId?: string | undefined;
|
|
73510
75607
|
}, {
|
|
73511
75608
|
type: "FigmaRender";
|
|
73512
75609
|
originKey: string;
|
|
73513
75610
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75611
|
+
format: "Svg";
|
|
73514
75612
|
nodeId: string;
|
|
73515
75613
|
fileId: string;
|
|
73516
|
-
format: "Svg";
|
|
73517
75614
|
fileVersionId?: string | undefined;
|
|
73518
75615
|
}>]>]>;
|
|
73519
75616
|
originId: z.ZodString;
|
|
@@ -73529,17 +75626,17 @@ declare const AssetImportModelInput: z.ZodObject<{
|
|
|
73529
75626
|
type: "FigmaRender";
|
|
73530
75627
|
originKey: string;
|
|
73531
75628
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75629
|
+
format: "Svg";
|
|
73532
75630
|
nodeId: string;
|
|
73533
75631
|
fileId: string;
|
|
73534
|
-
format: "Svg";
|
|
73535
75632
|
fileVersionId?: string | undefined;
|
|
73536
75633
|
}, {
|
|
73537
75634
|
type: "FigmaRender";
|
|
73538
75635
|
originKey: string;
|
|
73539
75636
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75637
|
+
format: "Svg";
|
|
73540
75638
|
nodeId: string;
|
|
73541
75639
|
fileId: string;
|
|
73542
|
-
format: "Svg";
|
|
73543
75640
|
fileVersionId?: string | undefined;
|
|
73544
75641
|
}>;
|
|
73545
75642
|
originMetadata: z.ZodObject<{
|
|
@@ -73561,9 +75658,9 @@ declare const AssetImportModelInput: z.ZodObject<{
|
|
|
73561
75658
|
type: "FigmaRender";
|
|
73562
75659
|
originKey: string;
|
|
73563
75660
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75661
|
+
format: "Svg";
|
|
73564
75662
|
nodeId: string;
|
|
73565
75663
|
fileId: string;
|
|
73566
|
-
format: "Svg";
|
|
73567
75664
|
fileVersionId?: string | undefined;
|
|
73568
75665
|
};
|
|
73569
75666
|
meta: {
|
|
@@ -73580,18 +75677,18 @@ declare const AssetImportModelInput: z.ZodObject<{
|
|
|
73580
75677
|
type: "FigmaRender";
|
|
73581
75678
|
originKey: string;
|
|
73582
75679
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75680
|
+
format: "Png";
|
|
73583
75681
|
nodeId: string;
|
|
73584
75682
|
fileId: string;
|
|
73585
|
-
format: "Png";
|
|
73586
75683
|
scale: number;
|
|
73587
75684
|
fileVersionId?: string | undefined;
|
|
73588
75685
|
} | {
|
|
73589
75686
|
type: "FigmaRender";
|
|
73590
75687
|
originKey: string;
|
|
73591
75688
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75689
|
+
format: "Svg";
|
|
73592
75690
|
nodeId: string;
|
|
73593
75691
|
fileId: string;
|
|
73594
|
-
format: "Svg";
|
|
73595
75692
|
fileVersionId?: string | undefined;
|
|
73596
75693
|
};
|
|
73597
75694
|
originId: string;
|
|
@@ -73606,9 +75703,9 @@ declare const AssetImportModelInput: z.ZodObject<{
|
|
|
73606
75703
|
type: "FigmaRender";
|
|
73607
75704
|
originKey: string;
|
|
73608
75705
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75706
|
+
format: "Svg";
|
|
73609
75707
|
nodeId: string;
|
|
73610
75708
|
fileId: string;
|
|
73611
|
-
format: "Svg";
|
|
73612
75709
|
fileVersionId?: string | undefined;
|
|
73613
75710
|
};
|
|
73614
75711
|
meta: {
|
|
@@ -73625,18 +75722,18 @@ declare const AssetImportModelInput: z.ZodObject<{
|
|
|
73625
75722
|
type: "FigmaRender";
|
|
73626
75723
|
originKey: string;
|
|
73627
75724
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75725
|
+
format: "Png";
|
|
73628
75726
|
nodeId: string;
|
|
73629
75727
|
fileId: string;
|
|
73630
|
-
format: "Png";
|
|
73631
75728
|
scale: number;
|
|
73632
75729
|
fileVersionId?: string | undefined;
|
|
73633
75730
|
} | {
|
|
73634
75731
|
type: "FigmaRender";
|
|
73635
75732
|
originKey: string;
|
|
73636
75733
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75734
|
+
format: "Svg";
|
|
73637
75735
|
nodeId: string;
|
|
73638
75736
|
fileId: string;
|
|
73639
|
-
format: "Svg";
|
|
73640
75737
|
fileVersionId?: string | undefined;
|
|
73641
75738
|
};
|
|
73642
75739
|
originId: string;
|
|
@@ -73708,18 +75805,18 @@ declare const FigmaPngRenderImportModel: z.ZodObject<{
|
|
|
73708
75805
|
type: "FigmaRender";
|
|
73709
75806
|
originKey: string;
|
|
73710
75807
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75808
|
+
format: "Png";
|
|
73711
75809
|
nodeId: string;
|
|
73712
75810
|
fileId: string;
|
|
73713
|
-
format: "Png";
|
|
73714
75811
|
scale: number;
|
|
73715
75812
|
fileVersionId?: string | undefined;
|
|
73716
75813
|
}, {
|
|
73717
75814
|
type: "FigmaRender";
|
|
73718
75815
|
originKey: string;
|
|
73719
75816
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75817
|
+
format: "Png";
|
|
73720
75818
|
nodeId: string;
|
|
73721
75819
|
fileId: string;
|
|
73722
|
-
format: "Png";
|
|
73723
75820
|
scale: number;
|
|
73724
75821
|
fileVersionId?: string | undefined;
|
|
73725
75822
|
}>;
|
|
@@ -73736,17 +75833,17 @@ declare const FigmaSvgRenderImportModel: z.ZodObject<{
|
|
|
73736
75833
|
type: "FigmaRender";
|
|
73737
75834
|
originKey: string;
|
|
73738
75835
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75836
|
+
format: "Svg";
|
|
73739
75837
|
nodeId: string;
|
|
73740
75838
|
fileId: string;
|
|
73741
|
-
format: "Svg";
|
|
73742
75839
|
fileVersionId?: string | undefined;
|
|
73743
75840
|
}, {
|
|
73744
75841
|
type: "FigmaRender";
|
|
73745
75842
|
originKey: string;
|
|
73746
75843
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75844
|
+
format: "Svg";
|
|
73747
75845
|
nodeId: string;
|
|
73748
75846
|
fileId: string;
|
|
73749
|
-
format: "Svg";
|
|
73750
75847
|
fileVersionId?: string | undefined;
|
|
73751
75848
|
}>;
|
|
73752
75849
|
type FigmaSvgRenderImportModel = z.infer<typeof FigmaSvgRenderImportModel>;
|
|
@@ -73763,18 +75860,18 @@ declare const FigmaRenderImportModel: z.ZodDiscriminatedUnion<"format", [z.ZodOb
|
|
|
73763
75860
|
type: "FigmaRender";
|
|
73764
75861
|
originKey: string;
|
|
73765
75862
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75863
|
+
format: "Png";
|
|
73766
75864
|
nodeId: string;
|
|
73767
75865
|
fileId: string;
|
|
73768
|
-
format: "Png";
|
|
73769
75866
|
scale: number;
|
|
73770
75867
|
fileVersionId?: string | undefined;
|
|
73771
75868
|
}, {
|
|
73772
75869
|
type: "FigmaRender";
|
|
73773
75870
|
originKey: string;
|
|
73774
75871
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75872
|
+
format: "Png";
|
|
73775
75873
|
nodeId: string;
|
|
73776
75874
|
fileId: string;
|
|
73777
|
-
format: "Png";
|
|
73778
75875
|
scale: number;
|
|
73779
75876
|
fileVersionId?: string | undefined;
|
|
73780
75877
|
}>, z.ZodObject<{
|
|
@@ -73789,17 +75886,17 @@ declare const FigmaRenderImportModel: z.ZodDiscriminatedUnion<"format", [z.ZodOb
|
|
|
73789
75886
|
type: "FigmaRender";
|
|
73790
75887
|
originKey: string;
|
|
73791
75888
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75889
|
+
format: "Svg";
|
|
73792
75890
|
nodeId: string;
|
|
73793
75891
|
fileId: string;
|
|
73794
|
-
format: "Svg";
|
|
73795
75892
|
fileVersionId?: string | undefined;
|
|
73796
75893
|
}, {
|
|
73797
75894
|
type: "FigmaRender";
|
|
73798
75895
|
originKey: string;
|
|
73799
75896
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75897
|
+
format: "Svg";
|
|
73800
75898
|
nodeId: string;
|
|
73801
75899
|
fileId: string;
|
|
73802
|
-
format: "Svg";
|
|
73803
75900
|
fileVersionId?: string | undefined;
|
|
73804
75901
|
}>]>;
|
|
73805
75902
|
type FigmaRenderImportModel = z.infer<typeof FigmaRenderImportModel>;
|
|
@@ -73834,18 +75931,18 @@ declare const ImageImportModel: z.ZodUnion<[z.ZodObject<{
|
|
|
73834
75931
|
type: "FigmaRender";
|
|
73835
75932
|
originKey: string;
|
|
73836
75933
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75934
|
+
format: "Png";
|
|
73837
75935
|
nodeId: string;
|
|
73838
75936
|
fileId: string;
|
|
73839
|
-
format: "Png";
|
|
73840
75937
|
scale: number;
|
|
73841
75938
|
fileVersionId?: string | undefined;
|
|
73842
75939
|
}, {
|
|
73843
75940
|
type: "FigmaRender";
|
|
73844
75941
|
originKey: string;
|
|
73845
75942
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75943
|
+
format: "Png";
|
|
73846
75944
|
nodeId: string;
|
|
73847
75945
|
fileId: string;
|
|
73848
|
-
format: "Png";
|
|
73849
75946
|
scale: number;
|
|
73850
75947
|
fileVersionId?: string | undefined;
|
|
73851
75948
|
}>, z.ZodObject<{
|
|
@@ -73860,17 +75957,17 @@ declare const ImageImportModel: z.ZodUnion<[z.ZodObject<{
|
|
|
73860
75957
|
type: "FigmaRender";
|
|
73861
75958
|
originKey: string;
|
|
73862
75959
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75960
|
+
format: "Svg";
|
|
73863
75961
|
nodeId: string;
|
|
73864
75962
|
fileId: string;
|
|
73865
|
-
format: "Svg";
|
|
73866
75963
|
fileVersionId?: string | undefined;
|
|
73867
75964
|
}, {
|
|
73868
75965
|
type: "FigmaRender";
|
|
73869
75966
|
originKey: string;
|
|
73870
75967
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
75968
|
+
format: "Svg";
|
|
73871
75969
|
nodeId: string;
|
|
73872
75970
|
fileId: string;
|
|
73873
|
-
format: "Svg";
|
|
73874
75971
|
fileVersionId?: string | undefined;
|
|
73875
75972
|
}>]>]>;
|
|
73876
75973
|
type ImageImportModel = z.infer<typeof ImageImportModel>;
|
|
@@ -114368,4 +116465,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
114368
116465
|
}>;
|
|
114369
116466
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
114370
116467
|
|
|
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 };
|
|
116468
|
+
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, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableCellAlignment, 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 };
|