@supernova-studio/model 0.7.1 → 0.8.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 +487 -505
- package/dist/index.d.ts +487 -505
- package/dist/index.js +27 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +26 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/documentation-block-v1.ts +5 -0
- package/src/dsm/elements/data/documentation-block-v2.ts +16 -2
- package/src/dsm/elements/raw-element.ts +7 -1
package/dist/index.d.mts
CHANGED
|
@@ -5114,8 +5114,8 @@ declare const DocumentationPageGroup: z.ZodObject<{
|
|
|
5114
5114
|
persistentId: string;
|
|
5115
5115
|
designSystemVersionId: string;
|
|
5116
5116
|
shortPersistentId: string;
|
|
5117
|
-
sortOrder: number;
|
|
5118
5117
|
childType: "DocumentationPage";
|
|
5118
|
+
sortOrder: number;
|
|
5119
5119
|
slug: string;
|
|
5120
5120
|
title: string;
|
|
5121
5121
|
parentPersistentId?: string | null | undefined;
|
|
@@ -5128,8 +5128,8 @@ declare const DocumentationPageGroup: z.ZodObject<{
|
|
|
5128
5128
|
persistentId: string;
|
|
5129
5129
|
designSystemVersionId: string;
|
|
5130
5130
|
shortPersistentId: string;
|
|
5131
|
-
sortOrder: number;
|
|
5132
5131
|
childType: "DocumentationPage";
|
|
5132
|
+
sortOrder: number;
|
|
5133
5133
|
slug: string;
|
|
5134
5134
|
title: string;
|
|
5135
5135
|
parentPersistentId?: string | null | undefined;
|
|
@@ -6490,6 +6490,15 @@ declare const PageBlockCustomBlockPropertyValue: z.ZodObject<{
|
|
|
6490
6490
|
value?: any;
|
|
6491
6491
|
}>;
|
|
6492
6492
|
declare const PageBlockFigmaFrameProperties: z.ZodObject<{
|
|
6493
|
+
color: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6494
|
+
value: string;
|
|
6495
|
+
}, z.ZodTypeDef, {
|
|
6496
|
+
value: string;
|
|
6497
|
+
}>>>, {
|
|
6498
|
+
value: string;
|
|
6499
|
+
} | undefined, {
|
|
6500
|
+
value: string;
|
|
6501
|
+
} | null | undefined>;
|
|
6493
6502
|
alignment: z.ZodEnum<["Center", "FrameHeight"]>;
|
|
6494
6503
|
layout: z.ZodEnum<["C8", "C7", "C6", "C5", "C4", "C3", "C2", "C1", "C1_75"]>;
|
|
6495
6504
|
backgroundColor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -6506,6 +6515,9 @@ declare const PageBlockFigmaFrameProperties: z.ZodObject<{
|
|
|
6506
6515
|
alignment: "Center" | "FrameHeight";
|
|
6507
6516
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
6508
6517
|
showTitles: boolean;
|
|
6518
|
+
color?: {
|
|
6519
|
+
value: string;
|
|
6520
|
+
} | undefined;
|
|
6509
6521
|
backgroundColor?: {
|
|
6510
6522
|
value: string;
|
|
6511
6523
|
} | undefined;
|
|
@@ -6513,6 +6525,9 @@ declare const PageBlockFigmaFrameProperties: z.ZodObject<{
|
|
|
6513
6525
|
alignment: "Center" | "FrameHeight";
|
|
6514
6526
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
6515
6527
|
showTitles: boolean;
|
|
6528
|
+
color?: {
|
|
6529
|
+
value: string;
|
|
6530
|
+
} | null | undefined;
|
|
6516
6531
|
backgroundColor?: {
|
|
6517
6532
|
value: string;
|
|
6518
6533
|
} | null | undefined;
|
|
@@ -7441,6 +7456,9 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
7441
7456
|
alignment: "Center" | "FrameHeight";
|
|
7442
7457
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
7443
7458
|
showTitles: boolean;
|
|
7459
|
+
color?: {
|
|
7460
|
+
value: string;
|
|
7461
|
+
} | undefined;
|
|
7444
7462
|
backgroundColor?: {
|
|
7445
7463
|
value: string;
|
|
7446
7464
|
} | undefined;
|
|
@@ -7448,6 +7466,9 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
7448
7466
|
alignment: "Center" | "FrameHeight";
|
|
7449
7467
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
7450
7468
|
showTitles: boolean;
|
|
7469
|
+
color?: {
|
|
7470
|
+
value: string;
|
|
7471
|
+
} | null | undefined;
|
|
7451
7472
|
backgroundColor?: {
|
|
7452
7473
|
value: string;
|
|
7453
7474
|
} | null | undefined;
|
|
@@ -7455,6 +7476,9 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
7455
7476
|
alignment: "Center" | "FrameHeight";
|
|
7456
7477
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
7457
7478
|
showTitles: boolean;
|
|
7479
|
+
color?: {
|
|
7480
|
+
value: string;
|
|
7481
|
+
} | undefined;
|
|
7458
7482
|
backgroundColor?: {
|
|
7459
7483
|
value: string;
|
|
7460
7484
|
} | undefined;
|
|
@@ -7462,6 +7486,9 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
7462
7486
|
alignment: "Center" | "FrameHeight";
|
|
7463
7487
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
7464
7488
|
showTitles: boolean;
|
|
7489
|
+
color?: {
|
|
7490
|
+
value: string;
|
|
7491
|
+
} | null | undefined;
|
|
7465
7492
|
backgroundColor?: {
|
|
7466
7493
|
value: string;
|
|
7467
7494
|
} | null | undefined;
|
|
@@ -7793,6 +7820,9 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
7793
7820
|
alignment: "Center" | "FrameHeight";
|
|
7794
7821
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
7795
7822
|
showTitles: boolean;
|
|
7823
|
+
color?: {
|
|
7824
|
+
value: string;
|
|
7825
|
+
} | undefined;
|
|
7796
7826
|
backgroundColor?: {
|
|
7797
7827
|
value: string;
|
|
7798
7828
|
} | undefined;
|
|
@@ -7968,6 +7998,9 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
7968
7998
|
alignment: "Center" | "FrameHeight";
|
|
7969
7999
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
7970
8000
|
showTitles: boolean;
|
|
8001
|
+
color?: {
|
|
8002
|
+
value: string;
|
|
8003
|
+
} | null | undefined;
|
|
7971
8004
|
backgroundColor?: {
|
|
7972
8005
|
value: string;
|
|
7973
8006
|
} | null | undefined;
|
|
@@ -8052,6 +8085,8 @@ declare const PageBlockImageAlignment: z.ZodEnum<["Left", "Center", "Stretch"]>;
|
|
|
8052
8085
|
type PageBlockImageAlignment = z.infer<typeof PageBlockImageAlignment>;
|
|
8053
8086
|
declare const PageBlockTableCellAlignment: z.ZodEnum<["Left", "Center", "Right"]>;
|
|
8054
8087
|
type PageBlockTableCellAlignment = z.infer<typeof PageBlockTableCellAlignment>;
|
|
8088
|
+
declare const PageBlockPreviewContainerSize: z.ZodEnum<["Centered", "NaturalHeight"]>;
|
|
8089
|
+
type PageBlockPreviewContainerSize = z.infer<typeof PageBlockPreviewContainerSize>;
|
|
8055
8090
|
declare const PageBlockAppearanceV2: z.ZodObject<{
|
|
8056
8091
|
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
8057
8092
|
opacity: z.ZodObject<{
|
|
@@ -8475,12 +8510,33 @@ declare const PageBlockItemImageReference: z.ZodObject<{
|
|
|
8475
8510
|
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
8476
8511
|
sourceId: z.ZodString;
|
|
8477
8512
|
frameId: z.ZodString;
|
|
8513
|
+
frameReferenceId: z.ZodString;
|
|
8514
|
+
origin: z.ZodObject<{
|
|
8515
|
+
title: z.ZodOptional<z.ZodString>;
|
|
8516
|
+
sourceFileName: z.ZodOptional<z.ZodString>;
|
|
8517
|
+
}, "strip", z.ZodTypeAny, {
|
|
8518
|
+
title?: string | undefined;
|
|
8519
|
+
sourceFileName?: string | undefined;
|
|
8520
|
+
}, {
|
|
8521
|
+
title?: string | undefined;
|
|
8522
|
+
sourceFileName?: string | undefined;
|
|
8523
|
+
}>;
|
|
8478
8524
|
}, "strip", z.ZodTypeAny, {
|
|
8525
|
+
origin: {
|
|
8526
|
+
title?: string | undefined;
|
|
8527
|
+
sourceFileName?: string | undefined;
|
|
8528
|
+
};
|
|
8479
8529
|
sourceId: string;
|
|
8480
8530
|
frameId: string;
|
|
8531
|
+
frameReferenceId: string;
|
|
8481
8532
|
}, {
|
|
8533
|
+
origin: {
|
|
8534
|
+
title?: string | undefined;
|
|
8535
|
+
sourceFileName?: string | undefined;
|
|
8536
|
+
};
|
|
8482
8537
|
sourceId: string;
|
|
8483
8538
|
frameId: string;
|
|
8539
|
+
frameReferenceId: string;
|
|
8484
8540
|
}>>;
|
|
8485
8541
|
}, "strip", z.ZodTypeAny, {
|
|
8486
8542
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -8491,8 +8547,13 @@ declare const PageBlockItemImageReference: z.ZodObject<{
|
|
|
8491
8547
|
height: number;
|
|
8492
8548
|
} | undefined;
|
|
8493
8549
|
figmaFile?: {
|
|
8550
|
+
origin: {
|
|
8551
|
+
title?: string | undefined;
|
|
8552
|
+
sourceFileName?: string | undefined;
|
|
8553
|
+
};
|
|
8494
8554
|
sourceId: string;
|
|
8495
8555
|
frameId: string;
|
|
8556
|
+
frameReferenceId: string;
|
|
8496
8557
|
} | undefined;
|
|
8497
8558
|
}, {
|
|
8498
8559
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -8503,8 +8564,13 @@ declare const PageBlockItemImageReference: z.ZodObject<{
|
|
|
8503
8564
|
height?: number | null | undefined;
|
|
8504
8565
|
} | undefined;
|
|
8505
8566
|
figmaFile?: {
|
|
8567
|
+
origin: {
|
|
8568
|
+
title?: string | undefined;
|
|
8569
|
+
sourceFileName?: string | undefined;
|
|
8570
|
+
};
|
|
8506
8571
|
sourceId: string;
|
|
8507
8572
|
frameId: string;
|
|
8573
|
+
frameReferenceId: string;
|
|
8508
8574
|
} | undefined;
|
|
8509
8575
|
}>;
|
|
8510
8576
|
type PageBlockItemImageReference = z.infer<typeof PageBlockItemImageReference>;
|
|
@@ -8516,17 +8582,39 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
8516
8582
|
value: z.ZodArray<z.ZodObject<{
|
|
8517
8583
|
entityId: z.ZodString;
|
|
8518
8584
|
entityType: z.ZodEnum<["Asset", "AssetGroup"]>;
|
|
8585
|
+
entityMeta: z.ZodOptional<z.ZodObject<{
|
|
8586
|
+
title: z.ZodOptional<z.ZodString>;
|
|
8587
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8588
|
+
}, "strip", z.ZodTypeAny, {
|
|
8589
|
+
title?: string | undefined;
|
|
8590
|
+
description?: string | undefined;
|
|
8591
|
+
}, {
|
|
8592
|
+
title?: string | undefined;
|
|
8593
|
+
description?: string | undefined;
|
|
8594
|
+
}>>;
|
|
8519
8595
|
}, "strip", z.ZodTypeAny, {
|
|
8520
8596
|
entityId: string;
|
|
8521
8597
|
entityType: "Asset" | "AssetGroup";
|
|
8598
|
+
entityMeta?: {
|
|
8599
|
+
title?: string | undefined;
|
|
8600
|
+
description?: string | undefined;
|
|
8601
|
+
} | undefined;
|
|
8522
8602
|
}, {
|
|
8523
8603
|
entityId: string;
|
|
8524
8604
|
entityType: "Asset" | "AssetGroup";
|
|
8605
|
+
entityMeta?: {
|
|
8606
|
+
title?: string | undefined;
|
|
8607
|
+
description?: string | undefined;
|
|
8608
|
+
} | undefined;
|
|
8525
8609
|
}>, "many">;
|
|
8526
8610
|
}, "strip", z.ZodTypeAny, {
|
|
8527
8611
|
value: {
|
|
8528
8612
|
entityId: string;
|
|
8529
8613
|
entityType: "Asset" | "AssetGroup";
|
|
8614
|
+
entityMeta?: {
|
|
8615
|
+
title?: string | undefined;
|
|
8616
|
+
description?: string | undefined;
|
|
8617
|
+
} | undefined;
|
|
8530
8618
|
}[];
|
|
8531
8619
|
selectedPropertyIds?: string[] | undefined;
|
|
8532
8620
|
showSearch?: boolean | undefined;
|
|
@@ -8536,6 +8624,10 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
8536
8624
|
value: {
|
|
8537
8625
|
entityId: string;
|
|
8538
8626
|
entityType: "Asset" | "AssetGroup";
|
|
8627
|
+
entityMeta?: {
|
|
8628
|
+
title?: string | undefined;
|
|
8629
|
+
description?: string | undefined;
|
|
8630
|
+
} | undefined;
|
|
8539
8631
|
}[];
|
|
8540
8632
|
selectedPropertyIds?: string[] | undefined;
|
|
8541
8633
|
showSearch?: boolean | undefined;
|
|
@@ -8663,12 +8755,33 @@ declare const PageBlockItemImageValue: z.ZodObject<{
|
|
|
8663
8755
|
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
8664
8756
|
sourceId: z.ZodString;
|
|
8665
8757
|
frameId: z.ZodString;
|
|
8758
|
+
frameReferenceId: z.ZodString;
|
|
8759
|
+
origin: z.ZodObject<{
|
|
8760
|
+
title: z.ZodOptional<z.ZodString>;
|
|
8761
|
+
sourceFileName: z.ZodOptional<z.ZodString>;
|
|
8762
|
+
}, "strip", z.ZodTypeAny, {
|
|
8763
|
+
title?: string | undefined;
|
|
8764
|
+
sourceFileName?: string | undefined;
|
|
8765
|
+
}, {
|
|
8766
|
+
title?: string | undefined;
|
|
8767
|
+
sourceFileName?: string | undefined;
|
|
8768
|
+
}>;
|
|
8666
8769
|
}, "strip", z.ZodTypeAny, {
|
|
8770
|
+
origin: {
|
|
8771
|
+
title?: string | undefined;
|
|
8772
|
+
sourceFileName?: string | undefined;
|
|
8773
|
+
};
|
|
8667
8774
|
sourceId: string;
|
|
8668
8775
|
frameId: string;
|
|
8776
|
+
frameReferenceId: string;
|
|
8669
8777
|
}, {
|
|
8778
|
+
origin: {
|
|
8779
|
+
title?: string | undefined;
|
|
8780
|
+
sourceFileName?: string | undefined;
|
|
8781
|
+
};
|
|
8670
8782
|
sourceId: string;
|
|
8671
8783
|
frameId: string;
|
|
8784
|
+
frameReferenceId: string;
|
|
8672
8785
|
}>>;
|
|
8673
8786
|
}, "strip", z.ZodTypeAny, {
|
|
8674
8787
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -8679,8 +8792,13 @@ declare const PageBlockItemImageValue: z.ZodObject<{
|
|
|
8679
8792
|
height: number;
|
|
8680
8793
|
} | undefined;
|
|
8681
8794
|
figmaFile?: {
|
|
8795
|
+
origin: {
|
|
8796
|
+
title?: string | undefined;
|
|
8797
|
+
sourceFileName?: string | undefined;
|
|
8798
|
+
};
|
|
8682
8799
|
sourceId: string;
|
|
8683
8800
|
frameId: string;
|
|
8801
|
+
frameReferenceId: string;
|
|
8684
8802
|
} | undefined;
|
|
8685
8803
|
}, {
|
|
8686
8804
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -8691,8 +8809,13 @@ declare const PageBlockItemImageValue: z.ZodObject<{
|
|
|
8691
8809
|
height?: number | null | undefined;
|
|
8692
8810
|
} | undefined;
|
|
8693
8811
|
figmaFile?: {
|
|
8812
|
+
origin: {
|
|
8813
|
+
title?: string | undefined;
|
|
8814
|
+
sourceFileName?: string | undefined;
|
|
8815
|
+
};
|
|
8694
8816
|
sourceId: string;
|
|
8695
8817
|
frameId: string;
|
|
8818
|
+
frameReferenceId: string;
|
|
8696
8819
|
} | undefined;
|
|
8697
8820
|
}>>;
|
|
8698
8821
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8708,8 +8831,13 @@ declare const PageBlockItemImageValue: z.ZodObject<{
|
|
|
8708
8831
|
height: number;
|
|
8709
8832
|
} | undefined;
|
|
8710
8833
|
figmaFile?: {
|
|
8834
|
+
origin: {
|
|
8835
|
+
title?: string | undefined;
|
|
8836
|
+
sourceFileName?: string | undefined;
|
|
8837
|
+
};
|
|
8711
8838
|
sourceId: string;
|
|
8712
8839
|
frameId: string;
|
|
8840
|
+
frameReferenceId: string;
|
|
8713
8841
|
} | undefined;
|
|
8714
8842
|
} | undefined;
|
|
8715
8843
|
}, {
|
|
@@ -8725,8 +8853,13 @@ declare const PageBlockItemImageValue: z.ZodObject<{
|
|
|
8725
8853
|
height?: number | null | undefined;
|
|
8726
8854
|
} | undefined;
|
|
8727
8855
|
figmaFile?: {
|
|
8856
|
+
origin: {
|
|
8857
|
+
title?: string | undefined;
|
|
8858
|
+
sourceFileName?: string | undefined;
|
|
8859
|
+
};
|
|
8728
8860
|
sourceId: string;
|
|
8729
8861
|
frameId: string;
|
|
8862
|
+
frameReferenceId: string;
|
|
8730
8863
|
} | undefined;
|
|
8731
8864
|
} | undefined;
|
|
8732
8865
|
}>;
|
|
@@ -9197,6 +9330,7 @@ declare const PageBlockItemTableMultiRichTextNode: z.ZodObject<{
|
|
|
9197
9330
|
type PageBlockItemTableMultiRichTextNode = z.infer<typeof PageBlockItemTableMultiRichTextNode>;
|
|
9198
9331
|
declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
9199
9332
|
type: z.ZodLiteral<"Image">;
|
|
9333
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
9200
9334
|
value: z.ZodOptional<z.ZodObject<{
|
|
9201
9335
|
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
9202
9336
|
url: z.ZodString;
|
|
@@ -9214,12 +9348,33 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
9214
9348
|
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
9215
9349
|
sourceId: z.ZodString;
|
|
9216
9350
|
frameId: z.ZodString;
|
|
9351
|
+
frameReferenceId: z.ZodString;
|
|
9352
|
+
origin: z.ZodObject<{
|
|
9353
|
+
title: z.ZodOptional<z.ZodString>;
|
|
9354
|
+
sourceFileName: z.ZodOptional<z.ZodString>;
|
|
9355
|
+
}, "strip", z.ZodTypeAny, {
|
|
9356
|
+
title?: string | undefined;
|
|
9357
|
+
sourceFileName?: string | undefined;
|
|
9358
|
+
}, {
|
|
9359
|
+
title?: string | undefined;
|
|
9360
|
+
sourceFileName?: string | undefined;
|
|
9361
|
+
}>;
|
|
9217
9362
|
}, "strip", z.ZodTypeAny, {
|
|
9363
|
+
origin: {
|
|
9364
|
+
title?: string | undefined;
|
|
9365
|
+
sourceFileName?: string | undefined;
|
|
9366
|
+
};
|
|
9218
9367
|
sourceId: string;
|
|
9219
9368
|
frameId: string;
|
|
9369
|
+
frameReferenceId: string;
|
|
9220
9370
|
}, {
|
|
9371
|
+
origin: {
|
|
9372
|
+
title?: string | undefined;
|
|
9373
|
+
sourceFileName?: string | undefined;
|
|
9374
|
+
};
|
|
9221
9375
|
sourceId: string;
|
|
9222
9376
|
frameId: string;
|
|
9377
|
+
frameReferenceId: string;
|
|
9223
9378
|
}>>;
|
|
9224
9379
|
}, "strip", z.ZodTypeAny, {
|
|
9225
9380
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -9230,8 +9385,13 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
9230
9385
|
height: number;
|
|
9231
9386
|
} | undefined;
|
|
9232
9387
|
figmaFile?: {
|
|
9388
|
+
origin: {
|
|
9389
|
+
title?: string | undefined;
|
|
9390
|
+
sourceFileName?: string | undefined;
|
|
9391
|
+
};
|
|
9233
9392
|
sourceId: string;
|
|
9234
9393
|
frameId: string;
|
|
9394
|
+
frameReferenceId: string;
|
|
9235
9395
|
} | undefined;
|
|
9236
9396
|
}, {
|
|
9237
9397
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -9242,12 +9402,18 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
9242
9402
|
height?: number | null | undefined;
|
|
9243
9403
|
} | undefined;
|
|
9244
9404
|
figmaFile?: {
|
|
9405
|
+
origin: {
|
|
9406
|
+
title?: string | undefined;
|
|
9407
|
+
sourceFileName?: string | undefined;
|
|
9408
|
+
};
|
|
9245
9409
|
sourceId: string;
|
|
9246
9410
|
frameId: string;
|
|
9411
|
+
frameReferenceId: string;
|
|
9247
9412
|
} | undefined;
|
|
9248
9413
|
}>>;
|
|
9249
9414
|
}, "strip", z.ZodTypeAny, {
|
|
9250
9415
|
type: "Image";
|
|
9416
|
+
caption?: string | undefined;
|
|
9251
9417
|
value?: {
|
|
9252
9418
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9253
9419
|
url: string;
|
|
@@ -9257,12 +9423,18 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
9257
9423
|
height: number;
|
|
9258
9424
|
} | undefined;
|
|
9259
9425
|
figmaFile?: {
|
|
9426
|
+
origin: {
|
|
9427
|
+
title?: string | undefined;
|
|
9428
|
+
sourceFileName?: string | undefined;
|
|
9429
|
+
};
|
|
9260
9430
|
sourceId: string;
|
|
9261
9431
|
frameId: string;
|
|
9432
|
+
frameReferenceId: string;
|
|
9262
9433
|
} | undefined;
|
|
9263
9434
|
} | undefined;
|
|
9264
9435
|
}, {
|
|
9265
9436
|
type: "Image";
|
|
9437
|
+
caption?: string | undefined;
|
|
9266
9438
|
value?: {
|
|
9267
9439
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9268
9440
|
url: string;
|
|
@@ -9272,8 +9444,13 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
9272
9444
|
height?: number | null | undefined;
|
|
9273
9445
|
} | undefined;
|
|
9274
9446
|
figmaFile?: {
|
|
9447
|
+
origin: {
|
|
9448
|
+
title?: string | undefined;
|
|
9449
|
+
sourceFileName?: string | undefined;
|
|
9450
|
+
};
|
|
9275
9451
|
sourceId: string;
|
|
9276
9452
|
frameId: string;
|
|
9453
|
+
frameReferenceId: string;
|
|
9277
9454
|
} | undefined;
|
|
9278
9455
|
} | undefined;
|
|
9279
9456
|
}>;
|
|
@@ -9363,93 +9540,9 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
9363
9540
|
}[];
|
|
9364
9541
|
}[];
|
|
9365
9542
|
};
|
|
9366
|
-
}>, z.ZodObject<{
|
|
9367
|
-
type: z.ZodLiteral<"MultiRichText">;
|
|
9368
|
-
value: z.ZodArray<z.ZodObject<{
|
|
9369
|
-
spans: z.ZodArray<z.ZodObject<{
|
|
9370
|
-
text: z.ZodString;
|
|
9371
|
-
attributes: z.ZodArray<z.ZodObject<{
|
|
9372
|
-
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
9373
|
-
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9374
|
-
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9375
|
-
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
9376
|
-
}, "strip", z.ZodTypeAny, {
|
|
9377
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9378
|
-
link?: string | undefined;
|
|
9379
|
-
documentationItemId?: string | undefined;
|
|
9380
|
-
openInNewWindow?: boolean | undefined;
|
|
9381
|
-
}, {
|
|
9382
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9383
|
-
link?: string | null | undefined;
|
|
9384
|
-
documentationItemId?: string | null | undefined;
|
|
9385
|
-
openInNewWindow?: boolean | null | undefined;
|
|
9386
|
-
}>, "many">;
|
|
9387
|
-
}, "strip", z.ZodTypeAny, {
|
|
9388
|
-
text: string;
|
|
9389
|
-
attributes: {
|
|
9390
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9391
|
-
link?: string | undefined;
|
|
9392
|
-
documentationItemId?: string | undefined;
|
|
9393
|
-
openInNewWindow?: boolean | undefined;
|
|
9394
|
-
}[];
|
|
9395
|
-
}, {
|
|
9396
|
-
text: string;
|
|
9397
|
-
attributes: {
|
|
9398
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9399
|
-
link?: string | null | undefined;
|
|
9400
|
-
documentationItemId?: string | null | undefined;
|
|
9401
|
-
openInNewWindow?: boolean | null | undefined;
|
|
9402
|
-
}[];
|
|
9403
|
-
}>, "many">;
|
|
9404
|
-
}, "strip", z.ZodTypeAny, {
|
|
9405
|
-
spans: {
|
|
9406
|
-
text: string;
|
|
9407
|
-
attributes: {
|
|
9408
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9409
|
-
link?: string | undefined;
|
|
9410
|
-
documentationItemId?: string | undefined;
|
|
9411
|
-
openInNewWindow?: boolean | undefined;
|
|
9412
|
-
}[];
|
|
9413
|
-
}[];
|
|
9414
|
-
}, {
|
|
9415
|
-
spans: {
|
|
9416
|
-
text: string;
|
|
9417
|
-
attributes: {
|
|
9418
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9419
|
-
link?: string | null | undefined;
|
|
9420
|
-
documentationItemId?: string | null | undefined;
|
|
9421
|
-
openInNewWindow?: boolean | null | undefined;
|
|
9422
|
-
}[];
|
|
9423
|
-
}[];
|
|
9424
|
-
}>, "many">;
|
|
9425
|
-
}, "strip", z.ZodTypeAny, {
|
|
9426
|
-
type: "MultiRichText";
|
|
9427
|
-
value: {
|
|
9428
|
-
spans: {
|
|
9429
|
-
text: string;
|
|
9430
|
-
attributes: {
|
|
9431
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9432
|
-
link?: string | undefined;
|
|
9433
|
-
documentationItemId?: string | undefined;
|
|
9434
|
-
openInNewWindow?: boolean | undefined;
|
|
9435
|
-
}[];
|
|
9436
|
-
}[];
|
|
9437
|
-
}[];
|
|
9438
|
-
}, {
|
|
9439
|
-
type: "MultiRichText";
|
|
9440
|
-
value: {
|
|
9441
|
-
spans: {
|
|
9442
|
-
text: string;
|
|
9443
|
-
attributes: {
|
|
9444
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9445
|
-
link?: string | null | undefined;
|
|
9446
|
-
documentationItemId?: string | null | undefined;
|
|
9447
|
-
openInNewWindow?: boolean | null | undefined;
|
|
9448
|
-
}[];
|
|
9449
|
-
}[];
|
|
9450
|
-
}[];
|
|
9451
9543
|
}>, z.ZodObject<{
|
|
9452
9544
|
type: z.ZodLiteral<"Image">;
|
|
9545
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
9453
9546
|
value: z.ZodOptional<z.ZodObject<{
|
|
9454
9547
|
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
9455
9548
|
url: z.ZodString;
|
|
@@ -9467,12 +9560,33 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
9467
9560
|
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
9468
9561
|
sourceId: z.ZodString;
|
|
9469
9562
|
frameId: z.ZodString;
|
|
9563
|
+
frameReferenceId: z.ZodString;
|
|
9564
|
+
origin: z.ZodObject<{
|
|
9565
|
+
title: z.ZodOptional<z.ZodString>;
|
|
9566
|
+
sourceFileName: z.ZodOptional<z.ZodString>;
|
|
9567
|
+
}, "strip", z.ZodTypeAny, {
|
|
9568
|
+
title?: string | undefined;
|
|
9569
|
+
sourceFileName?: string | undefined;
|
|
9570
|
+
}, {
|
|
9571
|
+
title?: string | undefined;
|
|
9572
|
+
sourceFileName?: string | undefined;
|
|
9573
|
+
}>;
|
|
9470
9574
|
}, "strip", z.ZodTypeAny, {
|
|
9575
|
+
origin: {
|
|
9576
|
+
title?: string | undefined;
|
|
9577
|
+
sourceFileName?: string | undefined;
|
|
9578
|
+
};
|
|
9471
9579
|
sourceId: string;
|
|
9472
9580
|
frameId: string;
|
|
9581
|
+
frameReferenceId: string;
|
|
9473
9582
|
}, {
|
|
9583
|
+
origin: {
|
|
9584
|
+
title?: string | undefined;
|
|
9585
|
+
sourceFileName?: string | undefined;
|
|
9586
|
+
};
|
|
9474
9587
|
sourceId: string;
|
|
9475
9588
|
frameId: string;
|
|
9589
|
+
frameReferenceId: string;
|
|
9476
9590
|
}>>;
|
|
9477
9591
|
}, "strip", z.ZodTypeAny, {
|
|
9478
9592
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -9483,8 +9597,13 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
9483
9597
|
height: number;
|
|
9484
9598
|
} | undefined;
|
|
9485
9599
|
figmaFile?: {
|
|
9600
|
+
origin: {
|
|
9601
|
+
title?: string | undefined;
|
|
9602
|
+
sourceFileName?: string | undefined;
|
|
9603
|
+
};
|
|
9486
9604
|
sourceId: string;
|
|
9487
9605
|
frameId: string;
|
|
9606
|
+
frameReferenceId: string;
|
|
9488
9607
|
} | undefined;
|
|
9489
9608
|
}, {
|
|
9490
9609
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -9495,12 +9614,18 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
9495
9614
|
height?: number | null | undefined;
|
|
9496
9615
|
} | undefined;
|
|
9497
9616
|
figmaFile?: {
|
|
9617
|
+
origin: {
|
|
9618
|
+
title?: string | undefined;
|
|
9619
|
+
sourceFileName?: string | undefined;
|
|
9620
|
+
};
|
|
9498
9621
|
sourceId: string;
|
|
9499
9622
|
frameId: string;
|
|
9623
|
+
frameReferenceId: string;
|
|
9500
9624
|
} | undefined;
|
|
9501
9625
|
}>>;
|
|
9502
9626
|
}, "strip", z.ZodTypeAny, {
|
|
9503
9627
|
type: "Image";
|
|
9628
|
+
caption?: string | undefined;
|
|
9504
9629
|
value?: {
|
|
9505
9630
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9506
9631
|
url: string;
|
|
@@ -9510,12 +9635,18 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
9510
9635
|
height: number;
|
|
9511
9636
|
} | undefined;
|
|
9512
9637
|
figmaFile?: {
|
|
9638
|
+
origin: {
|
|
9639
|
+
title?: string | undefined;
|
|
9640
|
+
sourceFileName?: string | undefined;
|
|
9641
|
+
};
|
|
9513
9642
|
sourceId: string;
|
|
9514
9643
|
frameId: string;
|
|
9644
|
+
frameReferenceId: string;
|
|
9515
9645
|
} | undefined;
|
|
9516
9646
|
} | undefined;
|
|
9517
9647
|
}, {
|
|
9518
9648
|
type: "Image";
|
|
9649
|
+
caption?: string | undefined;
|
|
9519
9650
|
value?: {
|
|
9520
9651
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9521
9652
|
url: string;
|
|
@@ -9525,8 +9656,13 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
9525
9656
|
height?: number | null | undefined;
|
|
9526
9657
|
} | undefined;
|
|
9527
9658
|
figmaFile?: {
|
|
9659
|
+
origin: {
|
|
9660
|
+
title?: string | undefined;
|
|
9661
|
+
sourceFileName?: string | undefined;
|
|
9662
|
+
};
|
|
9528
9663
|
sourceId: string;
|
|
9529
9664
|
frameId: string;
|
|
9665
|
+
frameReferenceId: string;
|
|
9530
9666
|
} | undefined;
|
|
9531
9667
|
} | undefined;
|
|
9532
9668
|
}>]>;
|
|
@@ -9618,93 +9754,9 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9618
9754
|
}[];
|
|
9619
9755
|
}[];
|
|
9620
9756
|
};
|
|
9621
|
-
}>, z.ZodObject<{
|
|
9622
|
-
type: z.ZodLiteral<"MultiRichText">;
|
|
9623
|
-
value: z.ZodArray<z.ZodObject<{
|
|
9624
|
-
spans: z.ZodArray<z.ZodObject<{
|
|
9625
|
-
text: z.ZodString;
|
|
9626
|
-
attributes: z.ZodArray<z.ZodObject<{
|
|
9627
|
-
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
9628
|
-
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9629
|
-
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9630
|
-
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
9631
|
-
}, "strip", z.ZodTypeAny, {
|
|
9632
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9633
|
-
link?: string | undefined;
|
|
9634
|
-
documentationItemId?: string | undefined;
|
|
9635
|
-
openInNewWindow?: boolean | undefined;
|
|
9636
|
-
}, {
|
|
9637
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9638
|
-
link?: string | null | undefined;
|
|
9639
|
-
documentationItemId?: string | null | undefined;
|
|
9640
|
-
openInNewWindow?: boolean | null | undefined;
|
|
9641
|
-
}>, "many">;
|
|
9642
|
-
}, "strip", z.ZodTypeAny, {
|
|
9643
|
-
text: string;
|
|
9644
|
-
attributes: {
|
|
9645
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9646
|
-
link?: string | undefined;
|
|
9647
|
-
documentationItemId?: string | undefined;
|
|
9648
|
-
openInNewWindow?: boolean | undefined;
|
|
9649
|
-
}[];
|
|
9650
|
-
}, {
|
|
9651
|
-
text: string;
|
|
9652
|
-
attributes: {
|
|
9653
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9654
|
-
link?: string | null | undefined;
|
|
9655
|
-
documentationItemId?: string | null | undefined;
|
|
9656
|
-
openInNewWindow?: boolean | null | undefined;
|
|
9657
|
-
}[];
|
|
9658
|
-
}>, "many">;
|
|
9659
|
-
}, "strip", z.ZodTypeAny, {
|
|
9660
|
-
spans: {
|
|
9661
|
-
text: string;
|
|
9662
|
-
attributes: {
|
|
9663
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9664
|
-
link?: string | undefined;
|
|
9665
|
-
documentationItemId?: string | undefined;
|
|
9666
|
-
openInNewWindow?: boolean | undefined;
|
|
9667
|
-
}[];
|
|
9668
|
-
}[];
|
|
9669
|
-
}, {
|
|
9670
|
-
spans: {
|
|
9671
|
-
text: string;
|
|
9672
|
-
attributes: {
|
|
9673
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9674
|
-
link?: string | null | undefined;
|
|
9675
|
-
documentationItemId?: string | null | undefined;
|
|
9676
|
-
openInNewWindow?: boolean | null | undefined;
|
|
9677
|
-
}[];
|
|
9678
|
-
}[];
|
|
9679
|
-
}>, "many">;
|
|
9680
|
-
}, "strip", z.ZodTypeAny, {
|
|
9681
|
-
type: "MultiRichText";
|
|
9682
|
-
value: {
|
|
9683
|
-
spans: {
|
|
9684
|
-
text: string;
|
|
9685
|
-
attributes: {
|
|
9686
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9687
|
-
link?: string | undefined;
|
|
9688
|
-
documentationItemId?: string | undefined;
|
|
9689
|
-
openInNewWindow?: boolean | undefined;
|
|
9690
|
-
}[];
|
|
9691
|
-
}[];
|
|
9692
|
-
}[];
|
|
9693
|
-
}, {
|
|
9694
|
-
type: "MultiRichText";
|
|
9695
|
-
value: {
|
|
9696
|
-
spans: {
|
|
9697
|
-
text: string;
|
|
9698
|
-
attributes: {
|
|
9699
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9700
|
-
link?: string | null | undefined;
|
|
9701
|
-
documentationItemId?: string | null | undefined;
|
|
9702
|
-
openInNewWindow?: boolean | null | undefined;
|
|
9703
|
-
}[];
|
|
9704
|
-
}[];
|
|
9705
|
-
}[];
|
|
9706
9757
|
}>, z.ZodObject<{
|
|
9707
9758
|
type: z.ZodLiteral<"Image">;
|
|
9759
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
9708
9760
|
value: z.ZodOptional<z.ZodObject<{
|
|
9709
9761
|
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
9710
9762
|
url: z.ZodString;
|
|
@@ -9722,12 +9774,33 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9722
9774
|
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
9723
9775
|
sourceId: z.ZodString;
|
|
9724
9776
|
frameId: z.ZodString;
|
|
9777
|
+
frameReferenceId: z.ZodString;
|
|
9778
|
+
origin: z.ZodObject<{
|
|
9779
|
+
title: z.ZodOptional<z.ZodString>;
|
|
9780
|
+
sourceFileName: z.ZodOptional<z.ZodString>;
|
|
9781
|
+
}, "strip", z.ZodTypeAny, {
|
|
9782
|
+
title?: string | undefined;
|
|
9783
|
+
sourceFileName?: string | undefined;
|
|
9784
|
+
}, {
|
|
9785
|
+
title?: string | undefined;
|
|
9786
|
+
sourceFileName?: string | undefined;
|
|
9787
|
+
}>;
|
|
9725
9788
|
}, "strip", z.ZodTypeAny, {
|
|
9789
|
+
origin: {
|
|
9790
|
+
title?: string | undefined;
|
|
9791
|
+
sourceFileName?: string | undefined;
|
|
9792
|
+
};
|
|
9726
9793
|
sourceId: string;
|
|
9727
9794
|
frameId: string;
|
|
9795
|
+
frameReferenceId: string;
|
|
9728
9796
|
}, {
|
|
9797
|
+
origin: {
|
|
9798
|
+
title?: string | undefined;
|
|
9799
|
+
sourceFileName?: string | undefined;
|
|
9800
|
+
};
|
|
9729
9801
|
sourceId: string;
|
|
9730
9802
|
frameId: string;
|
|
9803
|
+
frameReferenceId: string;
|
|
9731
9804
|
}>>;
|
|
9732
9805
|
}, "strip", z.ZodTypeAny, {
|
|
9733
9806
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -9738,8 +9811,13 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9738
9811
|
height: number;
|
|
9739
9812
|
} | undefined;
|
|
9740
9813
|
figmaFile?: {
|
|
9814
|
+
origin: {
|
|
9815
|
+
title?: string | undefined;
|
|
9816
|
+
sourceFileName?: string | undefined;
|
|
9817
|
+
};
|
|
9741
9818
|
sourceId: string;
|
|
9742
9819
|
frameId: string;
|
|
9820
|
+
frameReferenceId: string;
|
|
9743
9821
|
} | undefined;
|
|
9744
9822
|
}, {
|
|
9745
9823
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -9750,12 +9828,18 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9750
9828
|
height?: number | null | undefined;
|
|
9751
9829
|
} | undefined;
|
|
9752
9830
|
figmaFile?: {
|
|
9831
|
+
origin: {
|
|
9832
|
+
title?: string | undefined;
|
|
9833
|
+
sourceFileName?: string | undefined;
|
|
9834
|
+
};
|
|
9753
9835
|
sourceId: string;
|
|
9754
9836
|
frameId: string;
|
|
9837
|
+
frameReferenceId: string;
|
|
9755
9838
|
} | undefined;
|
|
9756
9839
|
}>>;
|
|
9757
9840
|
}, "strip", z.ZodTypeAny, {
|
|
9758
9841
|
type: "Image";
|
|
9842
|
+
caption?: string | undefined;
|
|
9759
9843
|
value?: {
|
|
9760
9844
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9761
9845
|
url: string;
|
|
@@ -9765,12 +9849,18 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9765
9849
|
height: number;
|
|
9766
9850
|
} | undefined;
|
|
9767
9851
|
figmaFile?: {
|
|
9852
|
+
origin: {
|
|
9853
|
+
title?: string | undefined;
|
|
9854
|
+
sourceFileName?: string | undefined;
|
|
9855
|
+
};
|
|
9768
9856
|
sourceId: string;
|
|
9769
9857
|
frameId: string;
|
|
9858
|
+
frameReferenceId: string;
|
|
9770
9859
|
} | undefined;
|
|
9771
9860
|
} | undefined;
|
|
9772
9861
|
}, {
|
|
9773
9862
|
type: "Image";
|
|
9863
|
+
caption?: string | undefined;
|
|
9774
9864
|
value?: {
|
|
9775
9865
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9776
9866
|
url: string;
|
|
@@ -9780,8 +9870,13 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9780
9870
|
height?: number | null | undefined;
|
|
9781
9871
|
} | undefined;
|
|
9782
9872
|
figmaFile?: {
|
|
9873
|
+
origin: {
|
|
9874
|
+
title?: string | undefined;
|
|
9875
|
+
sourceFileName?: string | undefined;
|
|
9876
|
+
};
|
|
9783
9877
|
sourceId: string;
|
|
9784
9878
|
frameId: string;
|
|
9879
|
+
frameReferenceId: string;
|
|
9785
9880
|
} | undefined;
|
|
9786
9881
|
} | undefined;
|
|
9787
9882
|
}>]>, "many">;
|
|
@@ -9803,21 +9898,9 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9803
9898
|
}[];
|
|
9804
9899
|
}[];
|
|
9805
9900
|
};
|
|
9806
|
-
} | {
|
|
9807
|
-
type: "MultiRichText";
|
|
9808
|
-
value: {
|
|
9809
|
-
spans: {
|
|
9810
|
-
text: string;
|
|
9811
|
-
attributes: {
|
|
9812
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9813
|
-
link?: string | undefined;
|
|
9814
|
-
documentationItemId?: string | undefined;
|
|
9815
|
-
openInNewWindow?: boolean | undefined;
|
|
9816
|
-
}[];
|
|
9817
|
-
}[];
|
|
9818
|
-
}[];
|
|
9819
9901
|
} | {
|
|
9820
9902
|
type: "Image";
|
|
9903
|
+
caption?: string | undefined;
|
|
9821
9904
|
value?: {
|
|
9822
9905
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9823
9906
|
url: string;
|
|
@@ -9827,8 +9910,13 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9827
9910
|
height: number;
|
|
9828
9911
|
} | undefined;
|
|
9829
9912
|
figmaFile?: {
|
|
9913
|
+
origin: {
|
|
9914
|
+
title?: string | undefined;
|
|
9915
|
+
sourceFileName?: string | undefined;
|
|
9916
|
+
};
|
|
9830
9917
|
sourceId: string;
|
|
9831
9918
|
frameId: string;
|
|
9919
|
+
frameReferenceId: string;
|
|
9832
9920
|
} | undefined;
|
|
9833
9921
|
} | undefined;
|
|
9834
9922
|
})[];
|
|
@@ -9849,21 +9937,9 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9849
9937
|
}[];
|
|
9850
9938
|
}[];
|
|
9851
9939
|
};
|
|
9852
|
-
} | {
|
|
9853
|
-
type: "MultiRichText";
|
|
9854
|
-
value: {
|
|
9855
|
-
spans: {
|
|
9856
|
-
text: string;
|
|
9857
|
-
attributes: {
|
|
9858
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9859
|
-
link?: string | null | undefined;
|
|
9860
|
-
documentationItemId?: string | null | undefined;
|
|
9861
|
-
openInNewWindow?: boolean | null | undefined;
|
|
9862
|
-
}[];
|
|
9863
|
-
}[];
|
|
9864
|
-
}[];
|
|
9865
9940
|
} | {
|
|
9866
9941
|
type: "Image";
|
|
9942
|
+
caption?: string | undefined;
|
|
9867
9943
|
value?: {
|
|
9868
9944
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9869
9945
|
url: string;
|
|
@@ -9873,8 +9949,13 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9873
9949
|
height?: number | null | undefined;
|
|
9874
9950
|
} | undefined;
|
|
9875
9951
|
figmaFile?: {
|
|
9952
|
+
origin: {
|
|
9953
|
+
title?: string | undefined;
|
|
9954
|
+
sourceFileName?: string | undefined;
|
|
9955
|
+
};
|
|
9876
9956
|
sourceId: string;
|
|
9877
9957
|
frameId: string;
|
|
9958
|
+
frameReferenceId: string;
|
|
9878
9959
|
} | undefined;
|
|
9879
9960
|
} | undefined;
|
|
9880
9961
|
})[];
|
|
@@ -9969,93 +10050,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
9969
10050
|
}[];
|
|
9970
10051
|
}[];
|
|
9971
10052
|
};
|
|
9972
|
-
}>, z.ZodObject<{
|
|
9973
|
-
type: z.ZodLiteral<"MultiRichText">;
|
|
9974
|
-
value: z.ZodArray<z.ZodObject<{
|
|
9975
|
-
spans: z.ZodArray<z.ZodObject<{
|
|
9976
|
-
text: z.ZodString;
|
|
9977
|
-
attributes: z.ZodArray<z.ZodObject<{
|
|
9978
|
-
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
9979
|
-
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9980
|
-
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9981
|
-
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
9982
|
-
}, "strip", z.ZodTypeAny, {
|
|
9983
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9984
|
-
link?: string | undefined;
|
|
9985
|
-
documentationItemId?: string | undefined;
|
|
9986
|
-
openInNewWindow?: boolean | undefined;
|
|
9987
|
-
}, {
|
|
9988
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9989
|
-
link?: string | null | undefined;
|
|
9990
|
-
documentationItemId?: string | null | undefined;
|
|
9991
|
-
openInNewWindow?: boolean | null | undefined;
|
|
9992
|
-
}>, "many">;
|
|
9993
|
-
}, "strip", z.ZodTypeAny, {
|
|
9994
|
-
text: string;
|
|
9995
|
-
attributes: {
|
|
9996
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9997
|
-
link?: string | undefined;
|
|
9998
|
-
documentationItemId?: string | undefined;
|
|
9999
|
-
openInNewWindow?: boolean | undefined;
|
|
10000
|
-
}[];
|
|
10001
|
-
}, {
|
|
10002
|
-
text: string;
|
|
10003
|
-
attributes: {
|
|
10004
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10005
|
-
link?: string | null | undefined;
|
|
10006
|
-
documentationItemId?: string | null | undefined;
|
|
10007
|
-
openInNewWindow?: boolean | null | undefined;
|
|
10008
|
-
}[];
|
|
10009
|
-
}>, "many">;
|
|
10010
|
-
}, "strip", z.ZodTypeAny, {
|
|
10011
|
-
spans: {
|
|
10012
|
-
text: string;
|
|
10013
|
-
attributes: {
|
|
10014
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10015
|
-
link?: string | undefined;
|
|
10016
|
-
documentationItemId?: string | undefined;
|
|
10017
|
-
openInNewWindow?: boolean | undefined;
|
|
10018
|
-
}[];
|
|
10019
|
-
}[];
|
|
10020
|
-
}, {
|
|
10021
|
-
spans: {
|
|
10022
|
-
text: string;
|
|
10023
|
-
attributes: {
|
|
10024
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10025
|
-
link?: string | null | undefined;
|
|
10026
|
-
documentationItemId?: string | null | undefined;
|
|
10027
|
-
openInNewWindow?: boolean | null | undefined;
|
|
10028
|
-
}[];
|
|
10029
|
-
}[];
|
|
10030
|
-
}>, "many">;
|
|
10031
|
-
}, "strip", z.ZodTypeAny, {
|
|
10032
|
-
type: "MultiRichText";
|
|
10033
|
-
value: {
|
|
10034
|
-
spans: {
|
|
10035
|
-
text: string;
|
|
10036
|
-
attributes: {
|
|
10037
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10038
|
-
link?: string | undefined;
|
|
10039
|
-
documentationItemId?: string | undefined;
|
|
10040
|
-
openInNewWindow?: boolean | undefined;
|
|
10041
|
-
}[];
|
|
10042
|
-
}[];
|
|
10043
|
-
}[];
|
|
10044
|
-
}, {
|
|
10045
|
-
type: "MultiRichText";
|
|
10046
|
-
value: {
|
|
10047
|
-
spans: {
|
|
10048
|
-
text: string;
|
|
10049
|
-
attributes: {
|
|
10050
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10051
|
-
link?: string | null | undefined;
|
|
10052
|
-
documentationItemId?: string | null | undefined;
|
|
10053
|
-
openInNewWindow?: boolean | null | undefined;
|
|
10054
|
-
}[];
|
|
10055
|
-
}[];
|
|
10056
|
-
}[];
|
|
10057
10053
|
}>, z.ZodObject<{
|
|
10058
10054
|
type: z.ZodLiteral<"Image">;
|
|
10055
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
10059
10056
|
value: z.ZodOptional<z.ZodObject<{
|
|
10060
10057
|
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
10061
10058
|
url: z.ZodString;
|
|
@@ -10073,12 +10070,33 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10073
10070
|
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
10074
10071
|
sourceId: z.ZodString;
|
|
10075
10072
|
frameId: z.ZodString;
|
|
10073
|
+
frameReferenceId: z.ZodString;
|
|
10074
|
+
origin: z.ZodObject<{
|
|
10075
|
+
title: z.ZodOptional<z.ZodString>;
|
|
10076
|
+
sourceFileName: z.ZodOptional<z.ZodString>;
|
|
10077
|
+
}, "strip", z.ZodTypeAny, {
|
|
10078
|
+
title?: string | undefined;
|
|
10079
|
+
sourceFileName?: string | undefined;
|
|
10080
|
+
}, {
|
|
10081
|
+
title?: string | undefined;
|
|
10082
|
+
sourceFileName?: string | undefined;
|
|
10083
|
+
}>;
|
|
10076
10084
|
}, "strip", z.ZodTypeAny, {
|
|
10085
|
+
origin: {
|
|
10086
|
+
title?: string | undefined;
|
|
10087
|
+
sourceFileName?: string | undefined;
|
|
10088
|
+
};
|
|
10077
10089
|
sourceId: string;
|
|
10078
10090
|
frameId: string;
|
|
10091
|
+
frameReferenceId: string;
|
|
10079
10092
|
}, {
|
|
10093
|
+
origin: {
|
|
10094
|
+
title?: string | undefined;
|
|
10095
|
+
sourceFileName?: string | undefined;
|
|
10096
|
+
};
|
|
10080
10097
|
sourceId: string;
|
|
10081
10098
|
frameId: string;
|
|
10099
|
+
frameReferenceId: string;
|
|
10082
10100
|
}>>;
|
|
10083
10101
|
}, "strip", z.ZodTypeAny, {
|
|
10084
10102
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -10089,8 +10107,13 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10089
10107
|
height: number;
|
|
10090
10108
|
} | undefined;
|
|
10091
10109
|
figmaFile?: {
|
|
10110
|
+
origin: {
|
|
10111
|
+
title?: string | undefined;
|
|
10112
|
+
sourceFileName?: string | undefined;
|
|
10113
|
+
};
|
|
10092
10114
|
sourceId: string;
|
|
10093
10115
|
frameId: string;
|
|
10116
|
+
frameReferenceId: string;
|
|
10094
10117
|
} | undefined;
|
|
10095
10118
|
}, {
|
|
10096
10119
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -10101,12 +10124,18 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10101
10124
|
height?: number | null | undefined;
|
|
10102
10125
|
} | undefined;
|
|
10103
10126
|
figmaFile?: {
|
|
10127
|
+
origin: {
|
|
10128
|
+
title?: string | undefined;
|
|
10129
|
+
sourceFileName?: string | undefined;
|
|
10130
|
+
};
|
|
10104
10131
|
sourceId: string;
|
|
10105
10132
|
frameId: string;
|
|
10133
|
+
frameReferenceId: string;
|
|
10106
10134
|
} | undefined;
|
|
10107
10135
|
}>>;
|
|
10108
10136
|
}, "strip", z.ZodTypeAny, {
|
|
10109
10137
|
type: "Image";
|
|
10138
|
+
caption?: string | undefined;
|
|
10110
10139
|
value?: {
|
|
10111
10140
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10112
10141
|
url: string;
|
|
@@ -10116,12 +10145,18 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10116
10145
|
height: number;
|
|
10117
10146
|
} | undefined;
|
|
10118
10147
|
figmaFile?: {
|
|
10148
|
+
origin: {
|
|
10149
|
+
title?: string | undefined;
|
|
10150
|
+
sourceFileName?: string | undefined;
|
|
10151
|
+
};
|
|
10119
10152
|
sourceId: string;
|
|
10120
10153
|
frameId: string;
|
|
10154
|
+
frameReferenceId: string;
|
|
10121
10155
|
} | undefined;
|
|
10122
10156
|
} | undefined;
|
|
10123
10157
|
}, {
|
|
10124
10158
|
type: "Image";
|
|
10159
|
+
caption?: string | undefined;
|
|
10125
10160
|
value?: {
|
|
10126
10161
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10127
10162
|
url: string;
|
|
@@ -10131,8 +10166,13 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10131
10166
|
height?: number | null | undefined;
|
|
10132
10167
|
} | undefined;
|
|
10133
10168
|
figmaFile?: {
|
|
10169
|
+
origin: {
|
|
10170
|
+
title?: string | undefined;
|
|
10171
|
+
sourceFileName?: string | undefined;
|
|
10172
|
+
};
|
|
10134
10173
|
sourceId: string;
|
|
10135
10174
|
frameId: string;
|
|
10175
|
+
frameReferenceId: string;
|
|
10136
10176
|
} | undefined;
|
|
10137
10177
|
} | undefined;
|
|
10138
10178
|
}>]>, "many">;
|
|
@@ -10154,21 +10194,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10154
10194
|
}[];
|
|
10155
10195
|
}[];
|
|
10156
10196
|
};
|
|
10157
|
-
} | {
|
|
10158
|
-
type: "MultiRichText";
|
|
10159
|
-
value: {
|
|
10160
|
-
spans: {
|
|
10161
|
-
text: string;
|
|
10162
|
-
attributes: {
|
|
10163
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10164
|
-
link?: string | undefined;
|
|
10165
|
-
documentationItemId?: string | undefined;
|
|
10166
|
-
openInNewWindow?: boolean | undefined;
|
|
10167
|
-
}[];
|
|
10168
|
-
}[];
|
|
10169
|
-
}[];
|
|
10170
10197
|
} | {
|
|
10171
10198
|
type: "Image";
|
|
10199
|
+
caption?: string | undefined;
|
|
10172
10200
|
value?: {
|
|
10173
10201
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10174
10202
|
url: string;
|
|
@@ -10178,8 +10206,13 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10178
10206
|
height: number;
|
|
10179
10207
|
} | undefined;
|
|
10180
10208
|
figmaFile?: {
|
|
10209
|
+
origin: {
|
|
10210
|
+
title?: string | undefined;
|
|
10211
|
+
sourceFileName?: string | undefined;
|
|
10212
|
+
};
|
|
10181
10213
|
sourceId: string;
|
|
10182
10214
|
frameId: string;
|
|
10215
|
+
frameReferenceId: string;
|
|
10183
10216
|
} | undefined;
|
|
10184
10217
|
} | undefined;
|
|
10185
10218
|
})[];
|
|
@@ -10200,21 +10233,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10200
10233
|
}[];
|
|
10201
10234
|
}[];
|
|
10202
10235
|
};
|
|
10203
|
-
} | {
|
|
10204
|
-
type: "MultiRichText";
|
|
10205
|
-
value: {
|
|
10206
|
-
spans: {
|
|
10207
|
-
text: string;
|
|
10208
|
-
attributes: {
|
|
10209
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10210
|
-
link?: string | null | undefined;
|
|
10211
|
-
documentationItemId?: string | null | undefined;
|
|
10212
|
-
openInNewWindow?: boolean | null | undefined;
|
|
10213
|
-
}[];
|
|
10214
|
-
}[];
|
|
10215
|
-
}[];
|
|
10216
10236
|
} | {
|
|
10217
10237
|
type: "Image";
|
|
10238
|
+
caption?: string | undefined;
|
|
10218
10239
|
value?: {
|
|
10219
10240
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10220
10241
|
url: string;
|
|
@@ -10224,8 +10245,13 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10224
10245
|
height?: number | null | undefined;
|
|
10225
10246
|
} | undefined;
|
|
10226
10247
|
figmaFile?: {
|
|
10248
|
+
origin: {
|
|
10249
|
+
title?: string | undefined;
|
|
10250
|
+
sourceFileName?: string | undefined;
|
|
10251
|
+
};
|
|
10227
10252
|
sourceId: string;
|
|
10228
10253
|
frameId: string;
|
|
10254
|
+
frameReferenceId: string;
|
|
10229
10255
|
} | undefined;
|
|
10230
10256
|
} | undefined;
|
|
10231
10257
|
})[];
|
|
@@ -10248,21 +10274,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10248
10274
|
}[];
|
|
10249
10275
|
}[];
|
|
10250
10276
|
};
|
|
10251
|
-
} | {
|
|
10252
|
-
type: "MultiRichText";
|
|
10253
|
-
value: {
|
|
10254
|
-
spans: {
|
|
10255
|
-
text: string;
|
|
10256
|
-
attributes: {
|
|
10257
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10258
|
-
link?: string | undefined;
|
|
10259
|
-
documentationItemId?: string | undefined;
|
|
10260
|
-
openInNewWindow?: boolean | undefined;
|
|
10261
|
-
}[];
|
|
10262
|
-
}[];
|
|
10263
|
-
}[];
|
|
10264
10277
|
} | {
|
|
10265
10278
|
type: "Image";
|
|
10279
|
+
caption?: string | undefined;
|
|
10266
10280
|
value?: {
|
|
10267
10281
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10268
10282
|
url: string;
|
|
@@ -10272,8 +10286,13 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10272
10286
|
height: number;
|
|
10273
10287
|
} | undefined;
|
|
10274
10288
|
figmaFile?: {
|
|
10289
|
+
origin: {
|
|
10290
|
+
title?: string | undefined;
|
|
10291
|
+
sourceFileName?: string | undefined;
|
|
10292
|
+
};
|
|
10275
10293
|
sourceId: string;
|
|
10276
10294
|
frameId: string;
|
|
10295
|
+
frameReferenceId: string;
|
|
10277
10296
|
} | undefined;
|
|
10278
10297
|
} | undefined;
|
|
10279
10298
|
})[];
|
|
@@ -10296,21 +10315,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10296
10315
|
}[];
|
|
10297
10316
|
}[];
|
|
10298
10317
|
};
|
|
10299
|
-
} | {
|
|
10300
|
-
type: "MultiRichText";
|
|
10301
|
-
value: {
|
|
10302
|
-
spans: {
|
|
10303
|
-
text: string;
|
|
10304
|
-
attributes: {
|
|
10305
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10306
|
-
link?: string | null | undefined;
|
|
10307
|
-
documentationItemId?: string | null | undefined;
|
|
10308
|
-
openInNewWindow?: boolean | null | undefined;
|
|
10309
|
-
}[];
|
|
10310
|
-
}[];
|
|
10311
|
-
}[];
|
|
10312
10318
|
} | {
|
|
10313
10319
|
type: "Image";
|
|
10320
|
+
caption?: string | undefined;
|
|
10314
10321
|
value?: {
|
|
10315
10322
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10316
10323
|
url: string;
|
|
@@ -10320,8 +10327,13 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10320
10327
|
height?: number | null | undefined;
|
|
10321
10328
|
} | undefined;
|
|
10322
10329
|
figmaFile?: {
|
|
10330
|
+
origin: {
|
|
10331
|
+
title?: string | undefined;
|
|
10332
|
+
sourceFileName?: string | undefined;
|
|
10333
|
+
};
|
|
10323
10334
|
sourceId: string;
|
|
10324
10335
|
frameId: string;
|
|
10336
|
+
frameReferenceId: string;
|
|
10325
10337
|
} | undefined;
|
|
10326
10338
|
} | undefined;
|
|
10327
10339
|
})[];
|
|
@@ -10421,93 +10433,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10421
10433
|
}[];
|
|
10422
10434
|
}[];
|
|
10423
10435
|
};
|
|
10424
|
-
}>, z.ZodObject<{
|
|
10425
|
-
type: z.ZodLiteral<"MultiRichText">;
|
|
10426
|
-
value: z.ZodArray<z.ZodObject<{
|
|
10427
|
-
spans: z.ZodArray<z.ZodObject<{
|
|
10428
|
-
text: z.ZodString;
|
|
10429
|
-
attributes: z.ZodArray<z.ZodObject<{
|
|
10430
|
-
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
10431
|
-
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10432
|
-
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10433
|
-
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
10434
|
-
}, "strip", z.ZodTypeAny, {
|
|
10435
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10436
|
-
link?: string | undefined;
|
|
10437
|
-
documentationItemId?: string | undefined;
|
|
10438
|
-
openInNewWindow?: boolean | undefined;
|
|
10439
|
-
}, {
|
|
10440
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10441
|
-
link?: string | null | undefined;
|
|
10442
|
-
documentationItemId?: string | null | undefined;
|
|
10443
|
-
openInNewWindow?: boolean | null | undefined;
|
|
10444
|
-
}>, "many">;
|
|
10445
|
-
}, "strip", z.ZodTypeAny, {
|
|
10446
|
-
text: string;
|
|
10447
|
-
attributes: {
|
|
10448
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10449
|
-
link?: string | undefined;
|
|
10450
|
-
documentationItemId?: string | undefined;
|
|
10451
|
-
openInNewWindow?: boolean | undefined;
|
|
10452
|
-
}[];
|
|
10453
|
-
}, {
|
|
10454
|
-
text: string;
|
|
10455
|
-
attributes: {
|
|
10456
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10457
|
-
link?: string | null | undefined;
|
|
10458
|
-
documentationItemId?: string | null | undefined;
|
|
10459
|
-
openInNewWindow?: boolean | null | undefined;
|
|
10460
|
-
}[];
|
|
10461
|
-
}>, "many">;
|
|
10462
|
-
}, "strip", z.ZodTypeAny, {
|
|
10463
|
-
spans: {
|
|
10464
|
-
text: string;
|
|
10465
|
-
attributes: {
|
|
10466
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10467
|
-
link?: string | undefined;
|
|
10468
|
-
documentationItemId?: string | undefined;
|
|
10469
|
-
openInNewWindow?: boolean | undefined;
|
|
10470
|
-
}[];
|
|
10471
|
-
}[];
|
|
10472
|
-
}, {
|
|
10473
|
-
spans: {
|
|
10474
|
-
text: string;
|
|
10475
|
-
attributes: {
|
|
10476
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10477
|
-
link?: string | null | undefined;
|
|
10478
|
-
documentationItemId?: string | null | undefined;
|
|
10479
|
-
openInNewWindow?: boolean | null | undefined;
|
|
10480
|
-
}[];
|
|
10481
|
-
}[];
|
|
10482
|
-
}>, "many">;
|
|
10483
|
-
}, "strip", z.ZodTypeAny, {
|
|
10484
|
-
type: "MultiRichText";
|
|
10485
|
-
value: {
|
|
10486
|
-
spans: {
|
|
10487
|
-
text: string;
|
|
10488
|
-
attributes: {
|
|
10489
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10490
|
-
link?: string | undefined;
|
|
10491
|
-
documentationItemId?: string | undefined;
|
|
10492
|
-
openInNewWindow?: boolean | undefined;
|
|
10493
|
-
}[];
|
|
10494
|
-
}[];
|
|
10495
|
-
}[];
|
|
10496
|
-
}, {
|
|
10497
|
-
type: "MultiRichText";
|
|
10498
|
-
value: {
|
|
10499
|
-
spans: {
|
|
10500
|
-
text: string;
|
|
10501
|
-
attributes: {
|
|
10502
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10503
|
-
link?: string | null | undefined;
|
|
10504
|
-
documentationItemId?: string | null | undefined;
|
|
10505
|
-
openInNewWindow?: boolean | null | undefined;
|
|
10506
|
-
}[];
|
|
10507
|
-
}[];
|
|
10508
|
-
}[];
|
|
10509
10436
|
}>, z.ZodObject<{
|
|
10510
10437
|
type: z.ZodLiteral<"Image">;
|
|
10438
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
10511
10439
|
value: z.ZodOptional<z.ZodObject<{
|
|
10512
10440
|
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
10513
10441
|
url: z.ZodString;
|
|
@@ -10525,12 +10453,33 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10525
10453
|
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
10526
10454
|
sourceId: z.ZodString;
|
|
10527
10455
|
frameId: z.ZodString;
|
|
10456
|
+
frameReferenceId: z.ZodString;
|
|
10457
|
+
origin: z.ZodObject<{
|
|
10458
|
+
title: z.ZodOptional<z.ZodString>;
|
|
10459
|
+
sourceFileName: z.ZodOptional<z.ZodString>;
|
|
10460
|
+
}, "strip", z.ZodTypeAny, {
|
|
10461
|
+
title?: string | undefined;
|
|
10462
|
+
sourceFileName?: string | undefined;
|
|
10463
|
+
}, {
|
|
10464
|
+
title?: string | undefined;
|
|
10465
|
+
sourceFileName?: string | undefined;
|
|
10466
|
+
}>;
|
|
10528
10467
|
}, "strip", z.ZodTypeAny, {
|
|
10468
|
+
origin: {
|
|
10469
|
+
title?: string | undefined;
|
|
10470
|
+
sourceFileName?: string | undefined;
|
|
10471
|
+
};
|
|
10529
10472
|
sourceId: string;
|
|
10530
10473
|
frameId: string;
|
|
10474
|
+
frameReferenceId: string;
|
|
10531
10475
|
}, {
|
|
10476
|
+
origin: {
|
|
10477
|
+
title?: string | undefined;
|
|
10478
|
+
sourceFileName?: string | undefined;
|
|
10479
|
+
};
|
|
10532
10480
|
sourceId: string;
|
|
10533
10481
|
frameId: string;
|
|
10482
|
+
frameReferenceId: string;
|
|
10534
10483
|
}>>;
|
|
10535
10484
|
}, "strip", z.ZodTypeAny, {
|
|
10536
10485
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -10541,8 +10490,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10541
10490
|
height: number;
|
|
10542
10491
|
} | undefined;
|
|
10543
10492
|
figmaFile?: {
|
|
10493
|
+
origin: {
|
|
10494
|
+
title?: string | undefined;
|
|
10495
|
+
sourceFileName?: string | undefined;
|
|
10496
|
+
};
|
|
10544
10497
|
sourceId: string;
|
|
10545
10498
|
frameId: string;
|
|
10499
|
+
frameReferenceId: string;
|
|
10546
10500
|
} | undefined;
|
|
10547
10501
|
}, {
|
|
10548
10502
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -10553,12 +10507,18 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10553
10507
|
height?: number | null | undefined;
|
|
10554
10508
|
} | undefined;
|
|
10555
10509
|
figmaFile?: {
|
|
10510
|
+
origin: {
|
|
10511
|
+
title?: string | undefined;
|
|
10512
|
+
sourceFileName?: string | undefined;
|
|
10513
|
+
};
|
|
10556
10514
|
sourceId: string;
|
|
10557
10515
|
frameId: string;
|
|
10516
|
+
frameReferenceId: string;
|
|
10558
10517
|
} | undefined;
|
|
10559
10518
|
}>>;
|
|
10560
10519
|
}, "strip", z.ZodTypeAny, {
|
|
10561
10520
|
type: "Image";
|
|
10521
|
+
caption?: string | undefined;
|
|
10562
10522
|
value?: {
|
|
10563
10523
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10564
10524
|
url: string;
|
|
@@ -10568,12 +10528,18 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10568
10528
|
height: number;
|
|
10569
10529
|
} | undefined;
|
|
10570
10530
|
figmaFile?: {
|
|
10531
|
+
origin: {
|
|
10532
|
+
title?: string | undefined;
|
|
10533
|
+
sourceFileName?: string | undefined;
|
|
10534
|
+
};
|
|
10571
10535
|
sourceId: string;
|
|
10572
10536
|
frameId: string;
|
|
10537
|
+
frameReferenceId: string;
|
|
10573
10538
|
} | undefined;
|
|
10574
10539
|
} | undefined;
|
|
10575
10540
|
}, {
|
|
10576
10541
|
type: "Image";
|
|
10542
|
+
caption?: string | undefined;
|
|
10577
10543
|
value?: {
|
|
10578
10544
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10579
10545
|
url: string;
|
|
@@ -10583,8 +10549,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10583
10549
|
height?: number | null | undefined;
|
|
10584
10550
|
} | undefined;
|
|
10585
10551
|
figmaFile?: {
|
|
10552
|
+
origin: {
|
|
10553
|
+
title?: string | undefined;
|
|
10554
|
+
sourceFileName?: string | undefined;
|
|
10555
|
+
};
|
|
10586
10556
|
sourceId: string;
|
|
10587
10557
|
frameId: string;
|
|
10558
|
+
frameReferenceId: string;
|
|
10588
10559
|
} | undefined;
|
|
10589
10560
|
} | undefined;
|
|
10590
10561
|
}>]>, "many">;
|
|
@@ -10606,21 +10577,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10606
10577
|
}[];
|
|
10607
10578
|
}[];
|
|
10608
10579
|
};
|
|
10609
|
-
} | {
|
|
10610
|
-
type: "MultiRichText";
|
|
10611
|
-
value: {
|
|
10612
|
-
spans: {
|
|
10613
|
-
text: string;
|
|
10614
|
-
attributes: {
|
|
10615
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10616
|
-
link?: string | undefined;
|
|
10617
|
-
documentationItemId?: string | undefined;
|
|
10618
|
-
openInNewWindow?: boolean | undefined;
|
|
10619
|
-
}[];
|
|
10620
|
-
}[];
|
|
10621
|
-
}[];
|
|
10622
10580
|
} | {
|
|
10623
10581
|
type: "Image";
|
|
10582
|
+
caption?: string | undefined;
|
|
10624
10583
|
value?: {
|
|
10625
10584
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10626
10585
|
url: string;
|
|
@@ -10630,8 +10589,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10630
10589
|
height: number;
|
|
10631
10590
|
} | undefined;
|
|
10632
10591
|
figmaFile?: {
|
|
10592
|
+
origin: {
|
|
10593
|
+
title?: string | undefined;
|
|
10594
|
+
sourceFileName?: string | undefined;
|
|
10595
|
+
};
|
|
10633
10596
|
sourceId: string;
|
|
10634
10597
|
frameId: string;
|
|
10598
|
+
frameReferenceId: string;
|
|
10635
10599
|
} | undefined;
|
|
10636
10600
|
} | undefined;
|
|
10637
10601
|
})[];
|
|
@@ -10652,21 +10616,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10652
10616
|
}[];
|
|
10653
10617
|
}[];
|
|
10654
10618
|
};
|
|
10655
|
-
} | {
|
|
10656
|
-
type: "MultiRichText";
|
|
10657
|
-
value: {
|
|
10658
|
-
spans: {
|
|
10659
|
-
text: string;
|
|
10660
|
-
attributes: {
|
|
10661
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10662
|
-
link?: string | null | undefined;
|
|
10663
|
-
documentationItemId?: string | null | undefined;
|
|
10664
|
-
openInNewWindow?: boolean | null | undefined;
|
|
10665
|
-
}[];
|
|
10666
|
-
}[];
|
|
10667
|
-
}[];
|
|
10668
10619
|
} | {
|
|
10669
10620
|
type: "Image";
|
|
10621
|
+
caption?: string | undefined;
|
|
10670
10622
|
value?: {
|
|
10671
10623
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10672
10624
|
url: string;
|
|
@@ -10676,8 +10628,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10676
10628
|
height?: number | null | undefined;
|
|
10677
10629
|
} | undefined;
|
|
10678
10630
|
figmaFile?: {
|
|
10631
|
+
origin: {
|
|
10632
|
+
title?: string | undefined;
|
|
10633
|
+
sourceFileName?: string | undefined;
|
|
10634
|
+
};
|
|
10679
10635
|
sourceId: string;
|
|
10680
10636
|
frameId: string;
|
|
10637
|
+
frameReferenceId: string;
|
|
10681
10638
|
} | undefined;
|
|
10682
10639
|
} | undefined;
|
|
10683
10640
|
})[];
|
|
@@ -10700,21 +10657,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10700
10657
|
}[];
|
|
10701
10658
|
}[];
|
|
10702
10659
|
};
|
|
10703
|
-
} | {
|
|
10704
|
-
type: "MultiRichText";
|
|
10705
|
-
value: {
|
|
10706
|
-
spans: {
|
|
10707
|
-
text: string;
|
|
10708
|
-
attributes: {
|
|
10709
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10710
|
-
link?: string | undefined;
|
|
10711
|
-
documentationItemId?: string | undefined;
|
|
10712
|
-
openInNewWindow?: boolean | undefined;
|
|
10713
|
-
}[];
|
|
10714
|
-
}[];
|
|
10715
|
-
}[];
|
|
10716
10660
|
} | {
|
|
10717
10661
|
type: "Image";
|
|
10662
|
+
caption?: string | undefined;
|
|
10718
10663
|
value?: {
|
|
10719
10664
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10720
10665
|
url: string;
|
|
@@ -10724,8 +10669,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10724
10669
|
height: number;
|
|
10725
10670
|
} | undefined;
|
|
10726
10671
|
figmaFile?: {
|
|
10672
|
+
origin: {
|
|
10673
|
+
title?: string | undefined;
|
|
10674
|
+
sourceFileName?: string | undefined;
|
|
10675
|
+
};
|
|
10727
10676
|
sourceId: string;
|
|
10728
10677
|
frameId: string;
|
|
10678
|
+
frameReferenceId: string;
|
|
10729
10679
|
} | undefined;
|
|
10730
10680
|
} | undefined;
|
|
10731
10681
|
})[];
|
|
@@ -10748,21 +10698,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10748
10698
|
}[];
|
|
10749
10699
|
}[];
|
|
10750
10700
|
};
|
|
10751
|
-
} | {
|
|
10752
|
-
type: "MultiRichText";
|
|
10753
|
-
value: {
|
|
10754
|
-
spans: {
|
|
10755
|
-
text: string;
|
|
10756
|
-
attributes: {
|
|
10757
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10758
|
-
link?: string | null | undefined;
|
|
10759
|
-
documentationItemId?: string | null | undefined;
|
|
10760
|
-
openInNewWindow?: boolean | null | undefined;
|
|
10761
|
-
}[];
|
|
10762
|
-
}[];
|
|
10763
|
-
}[];
|
|
10764
10701
|
} | {
|
|
10765
10702
|
type: "Image";
|
|
10703
|
+
caption?: string | undefined;
|
|
10766
10704
|
value?: {
|
|
10767
10705
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10768
10706
|
url: string;
|
|
@@ -10772,8 +10710,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10772
10710
|
height?: number | null | undefined;
|
|
10773
10711
|
} | undefined;
|
|
10774
10712
|
figmaFile?: {
|
|
10713
|
+
origin: {
|
|
10714
|
+
title?: string | undefined;
|
|
10715
|
+
sourceFileName?: string | undefined;
|
|
10716
|
+
};
|
|
10775
10717
|
sourceId: string;
|
|
10776
10718
|
frameId: string;
|
|
10719
|
+
frameReferenceId: string;
|
|
10777
10720
|
} | undefined;
|
|
10778
10721
|
} | undefined;
|
|
10779
10722
|
})[];
|
|
@@ -10798,21 +10741,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10798
10741
|
}[];
|
|
10799
10742
|
}[];
|
|
10800
10743
|
};
|
|
10801
|
-
} | {
|
|
10802
|
-
type: "MultiRichText";
|
|
10803
|
-
value: {
|
|
10804
|
-
spans: {
|
|
10805
|
-
text: string;
|
|
10806
|
-
attributes: {
|
|
10807
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10808
|
-
link?: string | undefined;
|
|
10809
|
-
documentationItemId?: string | undefined;
|
|
10810
|
-
openInNewWindow?: boolean | undefined;
|
|
10811
|
-
}[];
|
|
10812
|
-
}[];
|
|
10813
|
-
}[];
|
|
10814
10744
|
} | {
|
|
10815
10745
|
type: "Image";
|
|
10746
|
+
caption?: string | undefined;
|
|
10816
10747
|
value?: {
|
|
10817
10748
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10818
10749
|
url: string;
|
|
@@ -10822,8 +10753,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10822
10753
|
height: number;
|
|
10823
10754
|
} | undefined;
|
|
10824
10755
|
figmaFile?: {
|
|
10756
|
+
origin: {
|
|
10757
|
+
title?: string | undefined;
|
|
10758
|
+
sourceFileName?: string | undefined;
|
|
10759
|
+
};
|
|
10825
10760
|
sourceId: string;
|
|
10826
10761
|
frameId: string;
|
|
10762
|
+
frameReferenceId: string;
|
|
10827
10763
|
} | undefined;
|
|
10828
10764
|
} | undefined;
|
|
10829
10765
|
})[];
|
|
@@ -10851,21 +10787,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10851
10787
|
}[];
|
|
10852
10788
|
}[];
|
|
10853
10789
|
};
|
|
10854
|
-
} | {
|
|
10855
|
-
type: "MultiRichText";
|
|
10856
|
-
value: {
|
|
10857
|
-
spans: {
|
|
10858
|
-
text: string;
|
|
10859
|
-
attributes: {
|
|
10860
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10861
|
-
link?: string | null | undefined;
|
|
10862
|
-
documentationItemId?: string | null | undefined;
|
|
10863
|
-
openInNewWindow?: boolean | null | undefined;
|
|
10864
|
-
}[];
|
|
10865
|
-
}[];
|
|
10866
|
-
}[];
|
|
10867
10790
|
} | {
|
|
10868
10791
|
type: "Image";
|
|
10792
|
+
caption?: string | undefined;
|
|
10869
10793
|
value?: {
|
|
10870
10794
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10871
10795
|
url: string;
|
|
@@ -10875,8 +10799,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10875
10799
|
height?: number | null | undefined;
|
|
10876
10800
|
} | undefined;
|
|
10877
10801
|
figmaFile?: {
|
|
10802
|
+
origin: {
|
|
10803
|
+
title?: string | undefined;
|
|
10804
|
+
sourceFileName?: string | undefined;
|
|
10805
|
+
};
|
|
10878
10806
|
sourceId: string;
|
|
10879
10807
|
frameId: string;
|
|
10808
|
+
frameReferenceId: string;
|
|
10880
10809
|
} | undefined;
|
|
10881
10810
|
} | undefined;
|
|
10882
10811
|
})[];
|
|
@@ -10999,6 +10928,9 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
10999
10928
|
alignment: "Center" | "FrameHeight";
|
|
11000
10929
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
11001
10930
|
showTitles: boolean;
|
|
10931
|
+
color?: {
|
|
10932
|
+
value: string;
|
|
10933
|
+
} | null | undefined;
|
|
11002
10934
|
backgroundColor?: {
|
|
11003
10935
|
value: string;
|
|
11004
10936
|
} | null | undefined;
|
|
@@ -11175,6 +11107,9 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
11175
11107
|
alignment: "Center" | "FrameHeight";
|
|
11176
11108
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
11177
11109
|
showTitles: boolean;
|
|
11110
|
+
color?: {
|
|
11111
|
+
value: string;
|
|
11112
|
+
} | null | undefined;
|
|
11178
11113
|
backgroundColor?: {
|
|
11179
11114
|
value: string;
|
|
11180
11115
|
} | null | undefined;
|
|
@@ -11722,6 +11657,9 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
11722
11657
|
alignment: "Center" | "FrameHeight";
|
|
11723
11658
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
11724
11659
|
showTitles: boolean;
|
|
11660
|
+
color?: {
|
|
11661
|
+
value: string;
|
|
11662
|
+
} | null | undefined;
|
|
11725
11663
|
backgroundColor?: {
|
|
11726
11664
|
value: string;
|
|
11727
11665
|
} | null | undefined;
|
|
@@ -11898,6 +11836,9 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
11898
11836
|
alignment: "Center" | "FrameHeight";
|
|
11899
11837
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
11900
11838
|
showTitles: boolean;
|
|
11839
|
+
color?: {
|
|
11840
|
+
value: string;
|
|
11841
|
+
} | null | undefined;
|
|
11901
11842
|
backgroundColor?: {
|
|
11902
11843
|
value: string;
|
|
11903
11844
|
} | null | undefined;
|
|
@@ -12152,6 +12093,9 @@ declare const DocumentationPageElementDataV1: z.ZodObject<{
|
|
|
12152
12093
|
alignment: "Center" | "FrameHeight";
|
|
12153
12094
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
12154
12095
|
showTitles: boolean;
|
|
12096
|
+
color?: {
|
|
12097
|
+
value: string;
|
|
12098
|
+
} | null | undefined;
|
|
12155
12099
|
backgroundColor?: {
|
|
12156
12100
|
value: string;
|
|
12157
12101
|
} | null | undefined;
|
|
@@ -12328,6 +12272,9 @@ declare const DocumentationPageElementDataV1: z.ZodObject<{
|
|
|
12328
12272
|
alignment: "Center" | "FrameHeight";
|
|
12329
12273
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
12330
12274
|
showTitles: boolean;
|
|
12275
|
+
color?: {
|
|
12276
|
+
value: string;
|
|
12277
|
+
} | null | undefined;
|
|
12331
12278
|
backgroundColor?: {
|
|
12332
12279
|
value: string;
|
|
12333
12280
|
} | null | undefined;
|
|
@@ -12875,6 +12822,9 @@ declare const DocumentationPageElementDataV1: z.ZodObject<{
|
|
|
12875
12822
|
alignment: "Center" | "FrameHeight";
|
|
12876
12823
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
12877
12824
|
showTitles: boolean;
|
|
12825
|
+
color?: {
|
|
12826
|
+
value: string;
|
|
12827
|
+
} | null | undefined;
|
|
12878
12828
|
backgroundColor?: {
|
|
12879
12829
|
value: string;
|
|
12880
12830
|
} | null | undefined;
|
|
@@ -13051,6 +13001,9 @@ declare const DocumentationPageElementDataV1: z.ZodObject<{
|
|
|
13051
13001
|
alignment: "Center" | "FrameHeight";
|
|
13052
13002
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
13053
13003
|
showTitles: boolean;
|
|
13004
|
+
color?: {
|
|
13005
|
+
value: string;
|
|
13006
|
+
} | null | undefined;
|
|
13054
13007
|
backgroundColor?: {
|
|
13055
13008
|
value: string;
|
|
13056
13009
|
} | null | undefined;
|
|
@@ -13383,6 +13336,9 @@ declare const DocumentationPageElementDataV1: z.ZodObject<{
|
|
|
13383
13336
|
alignment: "Center" | "FrameHeight";
|
|
13384
13337
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
13385
13338
|
showTitles: boolean;
|
|
13339
|
+
color?: {
|
|
13340
|
+
value: string;
|
|
13341
|
+
} | null | undefined;
|
|
13386
13342
|
backgroundColor?: {
|
|
13387
13343
|
value: string;
|
|
13388
13344
|
} | null | undefined;
|
|
@@ -13559,6 +13515,9 @@ declare const DocumentationPageElementDataV1: z.ZodObject<{
|
|
|
13559
13515
|
alignment: "Center" | "FrameHeight";
|
|
13560
13516
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
13561
13517
|
showTitles: boolean;
|
|
13518
|
+
color?: {
|
|
13519
|
+
value: string;
|
|
13520
|
+
} | null | undefined;
|
|
13562
13521
|
backgroundColor?: {
|
|
13563
13522
|
value: string;
|
|
13564
13523
|
} | null | undefined;
|
|
@@ -20574,6 +20533,9 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
20574
20533
|
alignment: "Center" | "FrameHeight";
|
|
20575
20534
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
20576
20535
|
showTitles: boolean;
|
|
20536
|
+
color?: {
|
|
20537
|
+
value: string;
|
|
20538
|
+
} | null | undefined;
|
|
20577
20539
|
backgroundColor?: {
|
|
20578
20540
|
value: string;
|
|
20579
20541
|
} | null | undefined;
|
|
@@ -20750,6 +20712,9 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
20750
20712
|
alignment: "Center" | "FrameHeight";
|
|
20751
20713
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
20752
20714
|
showTitles: boolean;
|
|
20715
|
+
color?: {
|
|
20716
|
+
value: string;
|
|
20717
|
+
} | null | undefined;
|
|
20753
20718
|
backgroundColor?: {
|
|
20754
20719
|
value: string;
|
|
20755
20720
|
} | null | undefined;
|
|
@@ -21297,6 +21262,9 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
21297
21262
|
alignment: "Center" | "FrameHeight";
|
|
21298
21263
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
21299
21264
|
showTitles: boolean;
|
|
21265
|
+
color?: {
|
|
21266
|
+
value: string;
|
|
21267
|
+
} | null | undefined;
|
|
21300
21268
|
backgroundColor?: {
|
|
21301
21269
|
value: string;
|
|
21302
21270
|
} | null | undefined;
|
|
@@ -21473,6 +21441,9 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
21473
21441
|
alignment: "Center" | "FrameHeight";
|
|
21474
21442
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
21475
21443
|
showTitles: boolean;
|
|
21444
|
+
color?: {
|
|
21445
|
+
value: string;
|
|
21446
|
+
} | null | undefined;
|
|
21476
21447
|
backgroundColor?: {
|
|
21477
21448
|
value: string;
|
|
21478
21449
|
} | null | undefined;
|
|
@@ -21824,6 +21795,9 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
21824
21795
|
alignment: "Center" | "FrameHeight";
|
|
21825
21796
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
21826
21797
|
showTitles: boolean;
|
|
21798
|
+
color?: {
|
|
21799
|
+
value: string;
|
|
21800
|
+
} | null | undefined;
|
|
21827
21801
|
backgroundColor?: {
|
|
21828
21802
|
value: string;
|
|
21829
21803
|
} | null | undefined;
|
|
@@ -22000,6 +21974,9 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
22000
21974
|
alignment: "Center" | "FrameHeight";
|
|
22001
21975
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
22002
21976
|
showTitles: boolean;
|
|
21977
|
+
color?: {
|
|
21978
|
+
value: string;
|
|
21979
|
+
} | null | undefined;
|
|
22003
21980
|
backgroundColor?: {
|
|
22004
21981
|
value: string;
|
|
22005
21982
|
} | null | undefined;
|
|
@@ -23669,12 +23646,12 @@ declare const ElementGroup: z.ZodObject<{
|
|
|
23669
23646
|
updatedAt: Date;
|
|
23670
23647
|
persistentId: string;
|
|
23671
23648
|
designSystemVersionId: string;
|
|
23649
|
+
childType: "Image" | "Font" | "Documentation" | "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" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
23672
23650
|
sortOrder: number;
|
|
23673
23651
|
meta: {
|
|
23674
23652
|
name: string;
|
|
23675
23653
|
description?: string | undefined;
|
|
23676
23654
|
};
|
|
23677
|
-
childType: "Image" | "Font" | "Documentation" | "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" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
23678
23655
|
brandPersistentId?: string | undefined;
|
|
23679
23656
|
parentPersistentId?: string | undefined;
|
|
23680
23657
|
slug?: string | undefined;
|
|
@@ -23763,12 +23740,12 @@ declare const ElementGroup: z.ZodObject<{
|
|
|
23763
23740
|
updatedAt: Date;
|
|
23764
23741
|
persistentId: string;
|
|
23765
23742
|
designSystemVersionId: string;
|
|
23743
|
+
childType: "Image" | "Font" | "Documentation" | "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" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
23766
23744
|
sortOrder: number;
|
|
23767
23745
|
meta: {
|
|
23768
23746
|
name: string;
|
|
23769
23747
|
description?: string | undefined;
|
|
23770
23748
|
};
|
|
23771
|
-
childType: "Image" | "Font" | "Documentation" | "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" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
23772
23749
|
brandPersistentId?: string | undefined;
|
|
23773
23750
|
parentPersistentId?: string | undefined;
|
|
23774
23751
|
slug?: string | undefined;
|
|
@@ -24309,6 +24286,7 @@ declare const BrandedElementGroup: z.ZodObject<{
|
|
|
24309
24286
|
}>>;
|
|
24310
24287
|
parentPersistentId: z.ZodOptional<z.ZodString>;
|
|
24311
24288
|
shortPersistentId: z.ZodOptional<z.ZodString>;
|
|
24289
|
+
childType: z.ZodUnion<[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"]>, z.ZodEnum<["Component", "Theme", "Documentation", "DocumentationPage", "DesignSystemComponent", "ElementGroup", "FigmaNodeStructure", "FigmaNodeReference", "PageBlock"]>]>;
|
|
24312
24290
|
sortOrder: z.ZodNumber;
|
|
24313
24291
|
meta: z.ZodObject<{
|
|
24314
24292
|
name: z.ZodString;
|
|
@@ -24320,7 +24298,6 @@ declare const BrandedElementGroup: z.ZodObject<{
|
|
|
24320
24298
|
name: string;
|
|
24321
24299
|
description?: string | undefined;
|
|
24322
24300
|
}>;
|
|
24323
|
-
childType: z.ZodUnion<[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"]>, z.ZodEnum<["Component", "Theme", "Documentation", "DocumentationPage", "DesignSystemComponent", "ElementGroup", "FigmaNodeStructure", "FigmaNodeReference", "PageBlock"]>]>;
|
|
24324
24301
|
slug: z.ZodOptional<z.ZodString>;
|
|
24325
24302
|
userSlug: z.ZodOptional<z.ZodString>;
|
|
24326
24303
|
brandPersistentId: z.ZodString;
|
|
@@ -24331,12 +24308,12 @@ declare const BrandedElementGroup: z.ZodObject<{
|
|
|
24331
24308
|
persistentId: string;
|
|
24332
24309
|
designSystemVersionId: string;
|
|
24333
24310
|
brandPersistentId: string;
|
|
24311
|
+
childType: "Image" | "Font" | "Documentation" | "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" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
24334
24312
|
sortOrder: number;
|
|
24335
24313
|
meta: {
|
|
24336
24314
|
name: string;
|
|
24337
24315
|
description?: string | undefined;
|
|
24338
24316
|
};
|
|
24339
|
-
childType: "Image" | "Font" | "Documentation" | "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" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
24340
24317
|
data?: {
|
|
24341
24318
|
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
24342
24319
|
configuration?: {
|
|
@@ -24425,12 +24402,12 @@ declare const BrandedElementGroup: z.ZodObject<{
|
|
|
24425
24402
|
persistentId: string;
|
|
24426
24403
|
designSystemVersionId: string;
|
|
24427
24404
|
brandPersistentId: string;
|
|
24405
|
+
childType: "Image" | "Font" | "Documentation" | "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" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
24428
24406
|
sortOrder: number;
|
|
24429
24407
|
meta: {
|
|
24430
24408
|
name: string;
|
|
24431
24409
|
description?: string | undefined;
|
|
24432
24410
|
};
|
|
24433
|
-
childType: "Image" | "Font" | "Documentation" | "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" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
24434
24411
|
data?: {
|
|
24435
24412
|
behavior?: "Tabs" | "Group" | null | undefined;
|
|
24436
24413
|
configuration?: {
|
|
@@ -25196,6 +25173,7 @@ declare const ShallowDesignElement: z.ZodObject<{
|
|
|
25196
25173
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
25197
25174
|
parentPersistentId: z.ZodOptional<z.ZodString>;
|
|
25198
25175
|
shortPersistentId: z.ZodOptional<z.ZodString>;
|
|
25176
|
+
childType: z.ZodOptional<z.ZodUnion<[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"]>, z.ZodEnum<["Component", "Theme", "Documentation", "DocumentationPage", "DesignSystemComponent", "ElementGroup", "FigmaNodeStructure", "FigmaNodeReference", "PageBlock"]>]>>;
|
|
25199
25177
|
sortOrder: z.ZodNumber;
|
|
25200
25178
|
}, "strip", z.ZodTypeAny, {
|
|
25201
25179
|
id: string;
|
|
@@ -25206,6 +25184,7 @@ declare const ShallowDesignElement: z.ZodObject<{
|
|
|
25206
25184
|
brandPersistentId?: string | undefined;
|
|
25207
25185
|
parentPersistentId?: string | undefined;
|
|
25208
25186
|
shortPersistentId?: string | undefined;
|
|
25187
|
+
childType?: "Image" | "Font" | "Documentation" | "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" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock" | undefined;
|
|
25209
25188
|
}, {
|
|
25210
25189
|
id: string;
|
|
25211
25190
|
type: "Image" | "Font" | "Documentation" | "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" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
@@ -25215,6 +25194,7 @@ declare const ShallowDesignElement: z.ZodObject<{
|
|
|
25215
25194
|
brandPersistentId?: string | undefined;
|
|
25216
25195
|
parentPersistentId?: string | undefined;
|
|
25217
25196
|
shortPersistentId?: string | undefined;
|
|
25197
|
+
childType?: "Image" | "Font" | "Documentation" | "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" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock" | undefined;
|
|
25218
25198
|
}>;
|
|
25219
25199
|
type ShallowDesignElement = z.infer<typeof ShallowDesignElement>;
|
|
25220
25200
|
declare const DesignElement: z.ZodObject<{
|
|
@@ -25225,6 +25205,7 @@ declare const DesignElement: z.ZodObject<{
|
|
|
25225
25205
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
25226
25206
|
parentPersistentId: z.ZodOptional<z.ZodString>;
|
|
25227
25207
|
shortPersistentId: z.ZodOptional<z.ZodString>;
|
|
25208
|
+
childType: z.ZodOptional<z.ZodUnion<[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"]>, z.ZodEnum<["Component", "Theme", "Documentation", "DocumentationPage", "DesignSystemComponent", "ElementGroup", "FigmaNodeStructure", "FigmaNodeReference", "PageBlock"]>]>>;
|
|
25228
25209
|
sortOrder: z.ZodNumber;
|
|
25229
25210
|
meta: z.ZodObject<{
|
|
25230
25211
|
name: z.ZodString;
|
|
@@ -25236,7 +25217,6 @@ declare const DesignElement: z.ZodObject<{
|
|
|
25236
25217
|
name: string;
|
|
25237
25218
|
description?: string | undefined;
|
|
25238
25219
|
}>;
|
|
25239
|
-
childType: z.ZodOptional<z.ZodUnion<[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"]>, z.ZodEnum<["Component", "Theme", "Documentation", "DocumentationPage", "DesignSystemComponent", "ElementGroup", "FigmaNodeStructure", "FigmaNodeReference", "PageBlock"]>]>>;
|
|
25240
25220
|
slug: z.ZodOptional<z.ZodString>;
|
|
25241
25221
|
userSlug: z.ZodOptional<z.ZodString>;
|
|
25242
25222
|
createdAt: z.ZodDate;
|
|
@@ -25303,6 +25283,8 @@ declare const DesignElement: z.ZodObject<{
|
|
|
25303
25283
|
origin?: Record<string, any> | undefined;
|
|
25304
25284
|
}>;
|
|
25305
25285
|
type DesignElement = z.infer<typeof DesignElement>;
|
|
25286
|
+
declare const HierarchicalElements: z.ZodUnion<[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"]>, z.ZodEnum<["Component", "DesignSystemComponent", "DocumentationPage"]>]>;
|
|
25287
|
+
type HierarchicalElements = z.infer<typeof HierarchicalElements>;
|
|
25306
25288
|
|
|
25307
25289
|
declare const ThemeOverrideOriginPart: z.ZodObject<{
|
|
25308
25290
|
referenceOriginId: z.ZodOptional<z.ZodString>;
|
|
@@ -98277,4 +98259,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
98277
98259
|
}>;
|
|
98278
98260
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
98279
98261
|
|
|
98280
|
-
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, DocumentationItemConfiguration, DocumentationItemHeader, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, 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, NpmRegistryTypeWithoutAzure, 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, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, 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, UpdateMembershipRolesInput, 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, colorValueFormatDescription, colorValueRegex, defaultDocumentationItemConfiguration, defaultDocumentationItemHeader, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isTokenType, nullishToOptional, publishedDocEnvironments, slugRegex, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|
|
98262
|
+
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, DocumentationItemConfiguration, DocumentationItemHeader, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, 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, HierarchicalElements, 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, NpmRegistryTypeWithoutAzure, 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, PageBlockPreviewContainerSize, 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, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, 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, UpdateMembershipRolesInput, 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, colorValueFormatDescription, colorValueRegex, defaultDocumentationItemConfiguration, defaultDocumentationItemHeader, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isTokenType, nullishToOptional, publishedDocEnvironments, slugRegex, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|