@supernova-studio/model 0.7.1 → 0.9.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 +573 -515
- package/dist/index.d.ts +573 -515
- package/dist/index.js +71 -41
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +99 -69
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/documentation-block-v1.ts +6 -0
- package/src/dsm/elements/data/documentation-block-v2.ts +25 -3
- package/src/dsm/elements/raw-element.ts +7 -1
- package/src/workspace/workspace-context.ts +3 -1
package/dist/index.d.ts
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;
|
|
@@ -6063,16 +6063,6 @@ declare const DimensionTokenData: z.ZodObject<{
|
|
|
6063
6063
|
}>;
|
|
6064
6064
|
type DimensionTokenData = z.infer<typeof DimensionTokenData>;
|
|
6065
6065
|
|
|
6066
|
-
declare const PageBlockTheme: z.ZodObject<{
|
|
6067
|
-
themeIds: z.ZodArray<z.ZodString, "many">;
|
|
6068
|
-
type: z.ZodEnum<["Override", "Comparison"]>;
|
|
6069
|
-
}, "strip", z.ZodTypeAny, {
|
|
6070
|
-
type: "Override" | "Comparison";
|
|
6071
|
-
themeIds: string[];
|
|
6072
|
-
}, {
|
|
6073
|
-
type: "Override" | "Comparison";
|
|
6074
|
-
themeIds: string[];
|
|
6075
|
-
}>;
|
|
6076
6066
|
declare const PageBlockUrlPreview: z.ZodObject<{
|
|
6077
6067
|
title: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
6078
6068
|
description: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -6490,6 +6480,15 @@ declare const PageBlockCustomBlockPropertyValue: z.ZodObject<{
|
|
|
6490
6480
|
value?: any;
|
|
6491
6481
|
}>;
|
|
6492
6482
|
declare const PageBlockFigmaFrameProperties: z.ZodObject<{
|
|
6483
|
+
color: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
6484
|
+
value: string;
|
|
6485
|
+
}, z.ZodTypeDef, {
|
|
6486
|
+
value: string;
|
|
6487
|
+
}>>>, {
|
|
6488
|
+
value: string;
|
|
6489
|
+
} | undefined, {
|
|
6490
|
+
value: string;
|
|
6491
|
+
} | null | undefined>;
|
|
6493
6492
|
alignment: z.ZodEnum<["Center", "FrameHeight"]>;
|
|
6494
6493
|
layout: z.ZodEnum<["C8", "C7", "C6", "C5", "C4", "C3", "C2", "C1", "C1_75"]>;
|
|
6495
6494
|
backgroundColor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -6506,6 +6505,9 @@ declare const PageBlockFigmaFrameProperties: z.ZodObject<{
|
|
|
6506
6505
|
alignment: "Center" | "FrameHeight";
|
|
6507
6506
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
6508
6507
|
showTitles: boolean;
|
|
6508
|
+
color?: {
|
|
6509
|
+
value: string;
|
|
6510
|
+
} | undefined;
|
|
6509
6511
|
backgroundColor?: {
|
|
6510
6512
|
value: string;
|
|
6511
6513
|
} | undefined;
|
|
@@ -6513,6 +6515,9 @@ declare const PageBlockFigmaFrameProperties: z.ZodObject<{
|
|
|
6513
6515
|
alignment: "Center" | "FrameHeight";
|
|
6514
6516
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
6515
6517
|
showTitles: boolean;
|
|
6518
|
+
color?: {
|
|
6519
|
+
value: string;
|
|
6520
|
+
} | null | undefined;
|
|
6516
6521
|
backgroundColor?: {
|
|
6517
6522
|
value: string;
|
|
6518
6523
|
} | null | undefined;
|
|
@@ -7083,6 +7088,17 @@ declare const PageBlockTableColumn: z.ZodObject<{
|
|
|
7083
7088
|
};
|
|
7084
7089
|
}>;
|
|
7085
7090
|
type PageBlockTableColumn = z.infer<typeof PageBlockTableColumn>;
|
|
7091
|
+
declare const PageBlockTheme: z.ZodObject<{
|
|
7092
|
+
themeIds: z.ZodArray<z.ZodString, "many">;
|
|
7093
|
+
type: z.ZodEnum<["Override", "Comparison"]>;
|
|
7094
|
+
}, "strip", z.ZodTypeAny, {
|
|
7095
|
+
type: "Override" | "Comparison";
|
|
7096
|
+
themeIds: string[];
|
|
7097
|
+
}, {
|
|
7098
|
+
type: "Override" | "Comparison";
|
|
7099
|
+
themeIds: string[];
|
|
7100
|
+
}>;
|
|
7101
|
+
type PageBlockTheme = z.infer<typeof PageBlockTheme>;
|
|
7086
7102
|
declare const PageBlockBaseV1: z.ZodObject<{
|
|
7087
7103
|
persistentId: z.ZodString;
|
|
7088
7104
|
type: z.ZodEnum<["Text", "Heading", "Code", "UnorderedList", "OrderedList", "Quote", "Callout", "Divider", "Image", "Embed", "Link", "Shortcuts", "FigmaEmbed", "YoutubeEmbed", "StorybookEmbed", "Token", "TokenGroup", "TokenList", "Component", "ComponentGroup", "Theme", "ComponentSandbox", "Custom", "FigmaFrames", "ComponentAssets", "RenderCode", "Tabs", "TabItem", "Table", "TableRow", "TableCell"]>;
|
|
@@ -7441,6 +7457,9 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
7441
7457
|
alignment: "Center" | "FrameHeight";
|
|
7442
7458
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
7443
7459
|
showTitles: boolean;
|
|
7460
|
+
color?: {
|
|
7461
|
+
value: string;
|
|
7462
|
+
} | undefined;
|
|
7444
7463
|
backgroundColor?: {
|
|
7445
7464
|
value: string;
|
|
7446
7465
|
} | undefined;
|
|
@@ -7448,6 +7467,9 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
7448
7467
|
alignment: "Center" | "FrameHeight";
|
|
7449
7468
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
7450
7469
|
showTitles: boolean;
|
|
7470
|
+
color?: {
|
|
7471
|
+
value: string;
|
|
7472
|
+
} | null | undefined;
|
|
7451
7473
|
backgroundColor?: {
|
|
7452
7474
|
value: string;
|
|
7453
7475
|
} | null | undefined;
|
|
@@ -7455,6 +7477,9 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
7455
7477
|
alignment: "Center" | "FrameHeight";
|
|
7456
7478
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
7457
7479
|
showTitles: boolean;
|
|
7480
|
+
color?: {
|
|
7481
|
+
value: string;
|
|
7482
|
+
} | undefined;
|
|
7458
7483
|
backgroundColor?: {
|
|
7459
7484
|
value: string;
|
|
7460
7485
|
} | undefined;
|
|
@@ -7462,6 +7487,9 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
7462
7487
|
alignment: "Center" | "FrameHeight";
|
|
7463
7488
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
7464
7489
|
showTitles: boolean;
|
|
7490
|
+
color?: {
|
|
7491
|
+
value: string;
|
|
7492
|
+
} | null | undefined;
|
|
7465
7493
|
backgroundColor?: {
|
|
7466
7494
|
value: string;
|
|
7467
7495
|
} | null | undefined;
|
|
@@ -7793,6 +7821,9 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
7793
7821
|
alignment: "Center" | "FrameHeight";
|
|
7794
7822
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
7795
7823
|
showTitles: boolean;
|
|
7824
|
+
color?: {
|
|
7825
|
+
value: string;
|
|
7826
|
+
} | undefined;
|
|
7796
7827
|
backgroundColor?: {
|
|
7797
7828
|
value: string;
|
|
7798
7829
|
} | undefined;
|
|
@@ -7968,6 +7999,9 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
7968
7999
|
alignment: "Center" | "FrameHeight";
|
|
7969
8000
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
7970
8001
|
showTitles: boolean;
|
|
8002
|
+
color?: {
|
|
8003
|
+
value: string;
|
|
8004
|
+
} | null | undefined;
|
|
7971
8005
|
backgroundColor?: {
|
|
7972
8006
|
value: string;
|
|
7973
8007
|
} | null | undefined;
|
|
@@ -8052,6 +8086,10 @@ declare const PageBlockImageAlignment: z.ZodEnum<["Left", "Center", "Stretch"]>;
|
|
|
8052
8086
|
type PageBlockImageAlignment = z.infer<typeof PageBlockImageAlignment>;
|
|
8053
8087
|
declare const PageBlockTableCellAlignment: z.ZodEnum<["Left", "Center", "Right"]>;
|
|
8054
8088
|
type PageBlockTableCellAlignment = z.infer<typeof PageBlockTableCellAlignment>;
|
|
8089
|
+
declare const PageBlockPreviewContainerSize: z.ZodEnum<["Centered", "NaturalHeight"]>;
|
|
8090
|
+
type PageBlockPreviewContainerSize = z.infer<typeof PageBlockPreviewContainerSize>;
|
|
8091
|
+
declare const PageBlockThemeDisplayMode: z.ZodEnum<["Split", "Override"]>;
|
|
8092
|
+
type PageBlockThemeDisplayMode = z.infer<typeof PageBlockThemeDisplayMode>;
|
|
8055
8093
|
declare const PageBlockAppearanceV2: z.ZodObject<{
|
|
8056
8094
|
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
8057
8095
|
opacity: z.ZodObject<{
|
|
@@ -8475,12 +8513,33 @@ declare const PageBlockItemImageReference: z.ZodObject<{
|
|
|
8475
8513
|
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
8476
8514
|
sourceId: z.ZodString;
|
|
8477
8515
|
frameId: z.ZodString;
|
|
8516
|
+
frameReferenceId: z.ZodString;
|
|
8517
|
+
origin: z.ZodObject<{
|
|
8518
|
+
title: z.ZodOptional<z.ZodString>;
|
|
8519
|
+
sourceFileName: z.ZodOptional<z.ZodString>;
|
|
8520
|
+
}, "strip", z.ZodTypeAny, {
|
|
8521
|
+
title?: string | undefined;
|
|
8522
|
+
sourceFileName?: string | undefined;
|
|
8523
|
+
}, {
|
|
8524
|
+
title?: string | undefined;
|
|
8525
|
+
sourceFileName?: string | undefined;
|
|
8526
|
+
}>;
|
|
8478
8527
|
}, "strip", z.ZodTypeAny, {
|
|
8528
|
+
origin: {
|
|
8529
|
+
title?: string | undefined;
|
|
8530
|
+
sourceFileName?: string | undefined;
|
|
8531
|
+
};
|
|
8479
8532
|
sourceId: string;
|
|
8480
8533
|
frameId: string;
|
|
8534
|
+
frameReferenceId: string;
|
|
8481
8535
|
}, {
|
|
8536
|
+
origin: {
|
|
8537
|
+
title?: string | undefined;
|
|
8538
|
+
sourceFileName?: string | undefined;
|
|
8539
|
+
};
|
|
8482
8540
|
sourceId: string;
|
|
8483
8541
|
frameId: string;
|
|
8542
|
+
frameReferenceId: string;
|
|
8484
8543
|
}>>;
|
|
8485
8544
|
}, "strip", z.ZodTypeAny, {
|
|
8486
8545
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -8491,8 +8550,13 @@ declare const PageBlockItemImageReference: z.ZodObject<{
|
|
|
8491
8550
|
height: number;
|
|
8492
8551
|
} | undefined;
|
|
8493
8552
|
figmaFile?: {
|
|
8553
|
+
origin: {
|
|
8554
|
+
title?: string | undefined;
|
|
8555
|
+
sourceFileName?: string | undefined;
|
|
8556
|
+
};
|
|
8494
8557
|
sourceId: string;
|
|
8495
8558
|
frameId: string;
|
|
8559
|
+
frameReferenceId: string;
|
|
8496
8560
|
} | undefined;
|
|
8497
8561
|
}, {
|
|
8498
8562
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -8503,8 +8567,13 @@ declare const PageBlockItemImageReference: z.ZodObject<{
|
|
|
8503
8567
|
height?: number | null | undefined;
|
|
8504
8568
|
} | undefined;
|
|
8505
8569
|
figmaFile?: {
|
|
8570
|
+
origin: {
|
|
8571
|
+
title?: string | undefined;
|
|
8572
|
+
sourceFileName?: string | undefined;
|
|
8573
|
+
};
|
|
8506
8574
|
sourceId: string;
|
|
8507
8575
|
frameId: string;
|
|
8576
|
+
frameReferenceId: string;
|
|
8508
8577
|
} | undefined;
|
|
8509
8578
|
}>;
|
|
8510
8579
|
type PageBlockItemImageReference = z.infer<typeof PageBlockItemImageReference>;
|
|
@@ -8516,17 +8585,39 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
8516
8585
|
value: z.ZodArray<z.ZodObject<{
|
|
8517
8586
|
entityId: z.ZodString;
|
|
8518
8587
|
entityType: z.ZodEnum<["Asset", "AssetGroup"]>;
|
|
8588
|
+
entityMeta: z.ZodOptional<z.ZodObject<{
|
|
8589
|
+
title: z.ZodOptional<z.ZodString>;
|
|
8590
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8591
|
+
}, "strip", z.ZodTypeAny, {
|
|
8592
|
+
title?: string | undefined;
|
|
8593
|
+
description?: string | undefined;
|
|
8594
|
+
}, {
|
|
8595
|
+
title?: string | undefined;
|
|
8596
|
+
description?: string | undefined;
|
|
8597
|
+
}>>;
|
|
8519
8598
|
}, "strip", z.ZodTypeAny, {
|
|
8520
8599
|
entityId: string;
|
|
8521
8600
|
entityType: "Asset" | "AssetGroup";
|
|
8601
|
+
entityMeta?: {
|
|
8602
|
+
title?: string | undefined;
|
|
8603
|
+
description?: string | undefined;
|
|
8604
|
+
} | undefined;
|
|
8522
8605
|
}, {
|
|
8523
8606
|
entityId: string;
|
|
8524
8607
|
entityType: "Asset" | "AssetGroup";
|
|
8608
|
+
entityMeta?: {
|
|
8609
|
+
title?: string | undefined;
|
|
8610
|
+
description?: string | undefined;
|
|
8611
|
+
} | undefined;
|
|
8525
8612
|
}>, "many">;
|
|
8526
8613
|
}, "strip", z.ZodTypeAny, {
|
|
8527
8614
|
value: {
|
|
8528
8615
|
entityId: string;
|
|
8529
8616
|
entityType: "Asset" | "AssetGroup";
|
|
8617
|
+
entityMeta?: {
|
|
8618
|
+
title?: string | undefined;
|
|
8619
|
+
description?: string | undefined;
|
|
8620
|
+
} | undefined;
|
|
8530
8621
|
}[];
|
|
8531
8622
|
selectedPropertyIds?: string[] | undefined;
|
|
8532
8623
|
showSearch?: boolean | undefined;
|
|
@@ -8536,6 +8627,10 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
8536
8627
|
value: {
|
|
8537
8628
|
entityId: string;
|
|
8538
8629
|
entityType: "Asset" | "AssetGroup";
|
|
8630
|
+
entityMeta?: {
|
|
8631
|
+
title?: string | undefined;
|
|
8632
|
+
description?: string | undefined;
|
|
8633
|
+
} | undefined;
|
|
8539
8634
|
}[];
|
|
8540
8635
|
selectedPropertyIds?: string[] | undefined;
|
|
8541
8636
|
showSearch?: boolean | undefined;
|
|
@@ -8577,17 +8672,20 @@ declare const PageBlockItemSandboxValue: z.ZodObject<{
|
|
|
8577
8672
|
showCode: z.ZodOptional<z.ZodBoolean>;
|
|
8578
8673
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
8579
8674
|
alignPreview: z.ZodOptional<z.ZodEnum<["Left", "Center"]>>;
|
|
8675
|
+
previewHeight: z.ZodOptional<z.ZodNumber>;
|
|
8580
8676
|
value: z.ZodString;
|
|
8581
8677
|
}, "strip", z.ZodTypeAny, {
|
|
8582
8678
|
value: string;
|
|
8583
8679
|
showCode?: boolean | undefined;
|
|
8584
8680
|
backgroundColor?: string | undefined;
|
|
8585
8681
|
alignPreview?: "Center" | "Left" | undefined;
|
|
8682
|
+
previewHeight?: number | undefined;
|
|
8586
8683
|
}, {
|
|
8587
8684
|
value: string;
|
|
8588
8685
|
showCode?: boolean | undefined;
|
|
8589
8686
|
backgroundColor?: string | undefined;
|
|
8590
8687
|
alignPreview?: "Center" | "Left" | undefined;
|
|
8688
|
+
previewHeight?: number | undefined;
|
|
8591
8689
|
}>;
|
|
8592
8690
|
type PageBlockItemSandboxValue = z.infer<typeof PageBlockItemSandboxValue>;
|
|
8593
8691
|
declare const PageBlockItemColorValue: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
@@ -8663,12 +8761,33 @@ declare const PageBlockItemImageValue: z.ZodObject<{
|
|
|
8663
8761
|
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
8664
8762
|
sourceId: z.ZodString;
|
|
8665
8763
|
frameId: z.ZodString;
|
|
8764
|
+
frameReferenceId: z.ZodString;
|
|
8765
|
+
origin: z.ZodObject<{
|
|
8766
|
+
title: z.ZodOptional<z.ZodString>;
|
|
8767
|
+
sourceFileName: z.ZodOptional<z.ZodString>;
|
|
8768
|
+
}, "strip", z.ZodTypeAny, {
|
|
8769
|
+
title?: string | undefined;
|
|
8770
|
+
sourceFileName?: string | undefined;
|
|
8771
|
+
}, {
|
|
8772
|
+
title?: string | undefined;
|
|
8773
|
+
sourceFileName?: string | undefined;
|
|
8774
|
+
}>;
|
|
8666
8775
|
}, "strip", z.ZodTypeAny, {
|
|
8776
|
+
origin: {
|
|
8777
|
+
title?: string | undefined;
|
|
8778
|
+
sourceFileName?: string | undefined;
|
|
8779
|
+
};
|
|
8667
8780
|
sourceId: string;
|
|
8668
8781
|
frameId: string;
|
|
8782
|
+
frameReferenceId: string;
|
|
8669
8783
|
}, {
|
|
8784
|
+
origin: {
|
|
8785
|
+
title?: string | undefined;
|
|
8786
|
+
sourceFileName?: string | undefined;
|
|
8787
|
+
};
|
|
8670
8788
|
sourceId: string;
|
|
8671
8789
|
frameId: string;
|
|
8790
|
+
frameReferenceId: string;
|
|
8672
8791
|
}>>;
|
|
8673
8792
|
}, "strip", z.ZodTypeAny, {
|
|
8674
8793
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -8679,8 +8798,13 @@ declare const PageBlockItemImageValue: z.ZodObject<{
|
|
|
8679
8798
|
height: number;
|
|
8680
8799
|
} | undefined;
|
|
8681
8800
|
figmaFile?: {
|
|
8801
|
+
origin: {
|
|
8802
|
+
title?: string | undefined;
|
|
8803
|
+
sourceFileName?: string | undefined;
|
|
8804
|
+
};
|
|
8682
8805
|
sourceId: string;
|
|
8683
8806
|
frameId: string;
|
|
8807
|
+
frameReferenceId: string;
|
|
8684
8808
|
} | undefined;
|
|
8685
8809
|
}, {
|
|
8686
8810
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -8691,8 +8815,13 @@ declare const PageBlockItemImageValue: z.ZodObject<{
|
|
|
8691
8815
|
height?: number | null | undefined;
|
|
8692
8816
|
} | undefined;
|
|
8693
8817
|
figmaFile?: {
|
|
8818
|
+
origin: {
|
|
8819
|
+
title?: string | undefined;
|
|
8820
|
+
sourceFileName?: string | undefined;
|
|
8821
|
+
};
|
|
8694
8822
|
sourceId: string;
|
|
8695
8823
|
frameId: string;
|
|
8824
|
+
frameReferenceId: string;
|
|
8696
8825
|
} | undefined;
|
|
8697
8826
|
}>>;
|
|
8698
8827
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8708,8 +8837,13 @@ declare const PageBlockItemImageValue: z.ZodObject<{
|
|
|
8708
8837
|
height: number;
|
|
8709
8838
|
} | undefined;
|
|
8710
8839
|
figmaFile?: {
|
|
8840
|
+
origin: {
|
|
8841
|
+
title?: string | undefined;
|
|
8842
|
+
sourceFileName?: string | undefined;
|
|
8843
|
+
};
|
|
8711
8844
|
sourceId: string;
|
|
8712
8845
|
frameId: string;
|
|
8846
|
+
frameReferenceId: string;
|
|
8713
8847
|
} | undefined;
|
|
8714
8848
|
} | undefined;
|
|
8715
8849
|
}, {
|
|
@@ -8725,8 +8859,13 @@ declare const PageBlockItemImageValue: z.ZodObject<{
|
|
|
8725
8859
|
height?: number | null | undefined;
|
|
8726
8860
|
} | undefined;
|
|
8727
8861
|
figmaFile?: {
|
|
8862
|
+
origin: {
|
|
8863
|
+
title?: string | undefined;
|
|
8864
|
+
sourceFileName?: string | undefined;
|
|
8865
|
+
};
|
|
8728
8866
|
sourceId: string;
|
|
8729
8867
|
frameId: string;
|
|
8868
|
+
frameReferenceId: string;
|
|
8730
8869
|
} | undefined;
|
|
8731
8870
|
} | undefined;
|
|
8732
8871
|
}>;
|
|
@@ -8966,17 +9105,33 @@ declare const PageBlockItemTokenValue: z.ZodObject<{
|
|
|
8966
9105
|
value: z.ZodArray<z.ZodObject<{
|
|
8967
9106
|
entityId: z.ZodString;
|
|
8968
9107
|
entityType: z.ZodEnum<["Token", "TokenGroup"]>;
|
|
9108
|
+
entityMeta: z.ZodOptional<z.ZodObject<{
|
|
9109
|
+
showNestedGroups: z.ZodOptional<z.ZodBoolean>;
|
|
9110
|
+
}, "strip", z.ZodTypeAny, {
|
|
9111
|
+
showNestedGroups?: boolean | undefined;
|
|
9112
|
+
}, {
|
|
9113
|
+
showNestedGroups?: boolean | undefined;
|
|
9114
|
+
}>>;
|
|
8969
9115
|
}, "strip", z.ZodTypeAny, {
|
|
8970
9116
|
entityId: string;
|
|
8971
9117
|
entityType: "Token" | "TokenGroup";
|
|
9118
|
+
entityMeta?: {
|
|
9119
|
+
showNestedGroups?: boolean | undefined;
|
|
9120
|
+
} | undefined;
|
|
8972
9121
|
}, {
|
|
8973
9122
|
entityId: string;
|
|
8974
9123
|
entityType: "Token" | "TokenGroup";
|
|
9124
|
+
entityMeta?: {
|
|
9125
|
+
showNestedGroups?: boolean | undefined;
|
|
9126
|
+
} | undefined;
|
|
8975
9127
|
}>, "many">;
|
|
8976
9128
|
}, "strip", z.ZodTypeAny, {
|
|
8977
9129
|
value: {
|
|
8978
9130
|
entityId: string;
|
|
8979
9131
|
entityType: "Token" | "TokenGroup";
|
|
9132
|
+
entityMeta?: {
|
|
9133
|
+
showNestedGroups?: boolean | undefined;
|
|
9134
|
+
} | undefined;
|
|
8980
9135
|
}[];
|
|
8981
9136
|
selectedPropertyIds?: string[] | undefined;
|
|
8982
9137
|
selectedThemeIds?: string[] | undefined;
|
|
@@ -8985,6 +9140,9 @@ declare const PageBlockItemTokenValue: z.ZodObject<{
|
|
|
8985
9140
|
value: {
|
|
8986
9141
|
entityId: string;
|
|
8987
9142
|
entityType: "Token" | "TokenGroup";
|
|
9143
|
+
entityMeta?: {
|
|
9144
|
+
showNestedGroups?: boolean | undefined;
|
|
9145
|
+
} | undefined;
|
|
8988
9146
|
}[];
|
|
8989
9147
|
selectedPropertyIds?: string[] | undefined;
|
|
8990
9148
|
selectedThemeIds?: string[] | undefined;
|
|
@@ -9197,6 +9355,7 @@ declare const PageBlockItemTableMultiRichTextNode: z.ZodObject<{
|
|
|
9197
9355
|
type PageBlockItemTableMultiRichTextNode = z.infer<typeof PageBlockItemTableMultiRichTextNode>;
|
|
9198
9356
|
declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
9199
9357
|
type: z.ZodLiteral<"Image">;
|
|
9358
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
9200
9359
|
value: z.ZodOptional<z.ZodObject<{
|
|
9201
9360
|
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
9202
9361
|
url: z.ZodString;
|
|
@@ -9214,12 +9373,33 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
9214
9373
|
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
9215
9374
|
sourceId: z.ZodString;
|
|
9216
9375
|
frameId: z.ZodString;
|
|
9376
|
+
frameReferenceId: z.ZodString;
|
|
9377
|
+
origin: z.ZodObject<{
|
|
9378
|
+
title: z.ZodOptional<z.ZodString>;
|
|
9379
|
+
sourceFileName: z.ZodOptional<z.ZodString>;
|
|
9380
|
+
}, "strip", z.ZodTypeAny, {
|
|
9381
|
+
title?: string | undefined;
|
|
9382
|
+
sourceFileName?: string | undefined;
|
|
9383
|
+
}, {
|
|
9384
|
+
title?: string | undefined;
|
|
9385
|
+
sourceFileName?: string | undefined;
|
|
9386
|
+
}>;
|
|
9217
9387
|
}, "strip", z.ZodTypeAny, {
|
|
9388
|
+
origin: {
|
|
9389
|
+
title?: string | undefined;
|
|
9390
|
+
sourceFileName?: string | undefined;
|
|
9391
|
+
};
|
|
9218
9392
|
sourceId: string;
|
|
9219
9393
|
frameId: string;
|
|
9394
|
+
frameReferenceId: string;
|
|
9220
9395
|
}, {
|
|
9396
|
+
origin: {
|
|
9397
|
+
title?: string | undefined;
|
|
9398
|
+
sourceFileName?: string | undefined;
|
|
9399
|
+
};
|
|
9221
9400
|
sourceId: string;
|
|
9222
9401
|
frameId: string;
|
|
9402
|
+
frameReferenceId: string;
|
|
9223
9403
|
}>>;
|
|
9224
9404
|
}, "strip", z.ZodTypeAny, {
|
|
9225
9405
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -9230,8 +9410,13 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
9230
9410
|
height: number;
|
|
9231
9411
|
} | undefined;
|
|
9232
9412
|
figmaFile?: {
|
|
9413
|
+
origin: {
|
|
9414
|
+
title?: string | undefined;
|
|
9415
|
+
sourceFileName?: string | undefined;
|
|
9416
|
+
};
|
|
9233
9417
|
sourceId: string;
|
|
9234
9418
|
frameId: string;
|
|
9419
|
+
frameReferenceId: string;
|
|
9235
9420
|
} | undefined;
|
|
9236
9421
|
}, {
|
|
9237
9422
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -9242,12 +9427,18 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
9242
9427
|
height?: number | null | undefined;
|
|
9243
9428
|
} | undefined;
|
|
9244
9429
|
figmaFile?: {
|
|
9430
|
+
origin: {
|
|
9431
|
+
title?: string | undefined;
|
|
9432
|
+
sourceFileName?: string | undefined;
|
|
9433
|
+
};
|
|
9245
9434
|
sourceId: string;
|
|
9246
9435
|
frameId: string;
|
|
9436
|
+
frameReferenceId: string;
|
|
9247
9437
|
} | undefined;
|
|
9248
9438
|
}>>;
|
|
9249
9439
|
}, "strip", z.ZodTypeAny, {
|
|
9250
9440
|
type: "Image";
|
|
9441
|
+
caption?: string | undefined;
|
|
9251
9442
|
value?: {
|
|
9252
9443
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9253
9444
|
url: string;
|
|
@@ -9257,12 +9448,18 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
9257
9448
|
height: number;
|
|
9258
9449
|
} | undefined;
|
|
9259
9450
|
figmaFile?: {
|
|
9451
|
+
origin: {
|
|
9452
|
+
title?: string | undefined;
|
|
9453
|
+
sourceFileName?: string | undefined;
|
|
9454
|
+
};
|
|
9260
9455
|
sourceId: string;
|
|
9261
9456
|
frameId: string;
|
|
9457
|
+
frameReferenceId: string;
|
|
9262
9458
|
} | undefined;
|
|
9263
9459
|
} | undefined;
|
|
9264
9460
|
}, {
|
|
9265
9461
|
type: "Image";
|
|
9462
|
+
caption?: string | undefined;
|
|
9266
9463
|
value?: {
|
|
9267
9464
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9268
9465
|
url: string;
|
|
@@ -9272,8 +9469,13 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
9272
9469
|
height?: number | null | undefined;
|
|
9273
9470
|
} | undefined;
|
|
9274
9471
|
figmaFile?: {
|
|
9472
|
+
origin: {
|
|
9473
|
+
title?: string | undefined;
|
|
9474
|
+
sourceFileName?: string | undefined;
|
|
9475
|
+
};
|
|
9275
9476
|
sourceId: string;
|
|
9276
9477
|
frameId: string;
|
|
9478
|
+
frameReferenceId: string;
|
|
9277
9479
|
} | undefined;
|
|
9278
9480
|
} | undefined;
|
|
9279
9481
|
}>;
|
|
@@ -9363,93 +9565,9 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
9363
9565
|
}[];
|
|
9364
9566
|
}[];
|
|
9365
9567
|
};
|
|
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
9568
|
}>, z.ZodObject<{
|
|
9452
9569
|
type: z.ZodLiteral<"Image">;
|
|
9570
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
9453
9571
|
value: z.ZodOptional<z.ZodObject<{
|
|
9454
9572
|
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
9455
9573
|
url: z.ZodString;
|
|
@@ -9467,12 +9585,33 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
9467
9585
|
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
9468
9586
|
sourceId: z.ZodString;
|
|
9469
9587
|
frameId: z.ZodString;
|
|
9588
|
+
frameReferenceId: z.ZodString;
|
|
9589
|
+
origin: z.ZodObject<{
|
|
9590
|
+
title: z.ZodOptional<z.ZodString>;
|
|
9591
|
+
sourceFileName: z.ZodOptional<z.ZodString>;
|
|
9592
|
+
}, "strip", z.ZodTypeAny, {
|
|
9593
|
+
title?: string | undefined;
|
|
9594
|
+
sourceFileName?: string | undefined;
|
|
9595
|
+
}, {
|
|
9596
|
+
title?: string | undefined;
|
|
9597
|
+
sourceFileName?: string | undefined;
|
|
9598
|
+
}>;
|
|
9470
9599
|
}, "strip", z.ZodTypeAny, {
|
|
9600
|
+
origin: {
|
|
9601
|
+
title?: string | undefined;
|
|
9602
|
+
sourceFileName?: string | undefined;
|
|
9603
|
+
};
|
|
9471
9604
|
sourceId: string;
|
|
9472
9605
|
frameId: string;
|
|
9606
|
+
frameReferenceId: string;
|
|
9473
9607
|
}, {
|
|
9608
|
+
origin: {
|
|
9609
|
+
title?: string | undefined;
|
|
9610
|
+
sourceFileName?: string | undefined;
|
|
9611
|
+
};
|
|
9474
9612
|
sourceId: string;
|
|
9475
9613
|
frameId: string;
|
|
9614
|
+
frameReferenceId: string;
|
|
9476
9615
|
}>>;
|
|
9477
9616
|
}, "strip", z.ZodTypeAny, {
|
|
9478
9617
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -9483,8 +9622,13 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
9483
9622
|
height: number;
|
|
9484
9623
|
} | undefined;
|
|
9485
9624
|
figmaFile?: {
|
|
9625
|
+
origin: {
|
|
9626
|
+
title?: string | undefined;
|
|
9627
|
+
sourceFileName?: string | undefined;
|
|
9628
|
+
};
|
|
9486
9629
|
sourceId: string;
|
|
9487
9630
|
frameId: string;
|
|
9631
|
+
frameReferenceId: string;
|
|
9488
9632
|
} | undefined;
|
|
9489
9633
|
}, {
|
|
9490
9634
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -9495,12 +9639,18 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
9495
9639
|
height?: number | null | undefined;
|
|
9496
9640
|
} | undefined;
|
|
9497
9641
|
figmaFile?: {
|
|
9642
|
+
origin: {
|
|
9643
|
+
title?: string | undefined;
|
|
9644
|
+
sourceFileName?: string | undefined;
|
|
9645
|
+
};
|
|
9498
9646
|
sourceId: string;
|
|
9499
9647
|
frameId: string;
|
|
9648
|
+
frameReferenceId: string;
|
|
9500
9649
|
} | undefined;
|
|
9501
9650
|
}>>;
|
|
9502
9651
|
}, "strip", z.ZodTypeAny, {
|
|
9503
9652
|
type: "Image";
|
|
9653
|
+
caption?: string | undefined;
|
|
9504
9654
|
value?: {
|
|
9505
9655
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9506
9656
|
url: string;
|
|
@@ -9510,12 +9660,18 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
9510
9660
|
height: number;
|
|
9511
9661
|
} | undefined;
|
|
9512
9662
|
figmaFile?: {
|
|
9663
|
+
origin: {
|
|
9664
|
+
title?: string | undefined;
|
|
9665
|
+
sourceFileName?: string | undefined;
|
|
9666
|
+
};
|
|
9513
9667
|
sourceId: string;
|
|
9514
9668
|
frameId: string;
|
|
9669
|
+
frameReferenceId: string;
|
|
9515
9670
|
} | undefined;
|
|
9516
9671
|
} | undefined;
|
|
9517
9672
|
}, {
|
|
9518
9673
|
type: "Image";
|
|
9674
|
+
caption?: string | undefined;
|
|
9519
9675
|
value?: {
|
|
9520
9676
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9521
9677
|
url: string;
|
|
@@ -9525,8 +9681,13 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
9525
9681
|
height?: number | null | undefined;
|
|
9526
9682
|
} | undefined;
|
|
9527
9683
|
figmaFile?: {
|
|
9684
|
+
origin: {
|
|
9685
|
+
title?: string | undefined;
|
|
9686
|
+
sourceFileName?: string | undefined;
|
|
9687
|
+
};
|
|
9528
9688
|
sourceId: string;
|
|
9529
9689
|
frameId: string;
|
|
9690
|
+
frameReferenceId: string;
|
|
9530
9691
|
} | undefined;
|
|
9531
9692
|
} | undefined;
|
|
9532
9693
|
}>]>;
|
|
@@ -9618,93 +9779,9 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9618
9779
|
}[];
|
|
9619
9780
|
}[];
|
|
9620
9781
|
};
|
|
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
9782
|
}>, z.ZodObject<{
|
|
9707
9783
|
type: z.ZodLiteral<"Image">;
|
|
9784
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
9708
9785
|
value: z.ZodOptional<z.ZodObject<{
|
|
9709
9786
|
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
9710
9787
|
url: z.ZodString;
|
|
@@ -9722,12 +9799,33 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9722
9799
|
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
9723
9800
|
sourceId: z.ZodString;
|
|
9724
9801
|
frameId: z.ZodString;
|
|
9802
|
+
frameReferenceId: z.ZodString;
|
|
9803
|
+
origin: z.ZodObject<{
|
|
9804
|
+
title: z.ZodOptional<z.ZodString>;
|
|
9805
|
+
sourceFileName: z.ZodOptional<z.ZodString>;
|
|
9806
|
+
}, "strip", z.ZodTypeAny, {
|
|
9807
|
+
title?: string | undefined;
|
|
9808
|
+
sourceFileName?: string | undefined;
|
|
9809
|
+
}, {
|
|
9810
|
+
title?: string | undefined;
|
|
9811
|
+
sourceFileName?: string | undefined;
|
|
9812
|
+
}>;
|
|
9725
9813
|
}, "strip", z.ZodTypeAny, {
|
|
9814
|
+
origin: {
|
|
9815
|
+
title?: string | undefined;
|
|
9816
|
+
sourceFileName?: string | undefined;
|
|
9817
|
+
};
|
|
9726
9818
|
sourceId: string;
|
|
9727
9819
|
frameId: string;
|
|
9820
|
+
frameReferenceId: string;
|
|
9728
9821
|
}, {
|
|
9822
|
+
origin: {
|
|
9823
|
+
title?: string | undefined;
|
|
9824
|
+
sourceFileName?: string | undefined;
|
|
9825
|
+
};
|
|
9729
9826
|
sourceId: string;
|
|
9730
9827
|
frameId: string;
|
|
9828
|
+
frameReferenceId: string;
|
|
9731
9829
|
}>>;
|
|
9732
9830
|
}, "strip", z.ZodTypeAny, {
|
|
9733
9831
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -9738,8 +9836,13 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9738
9836
|
height: number;
|
|
9739
9837
|
} | undefined;
|
|
9740
9838
|
figmaFile?: {
|
|
9839
|
+
origin: {
|
|
9840
|
+
title?: string | undefined;
|
|
9841
|
+
sourceFileName?: string | undefined;
|
|
9842
|
+
};
|
|
9741
9843
|
sourceId: string;
|
|
9742
9844
|
frameId: string;
|
|
9845
|
+
frameReferenceId: string;
|
|
9743
9846
|
} | undefined;
|
|
9744
9847
|
}, {
|
|
9745
9848
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -9750,12 +9853,18 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9750
9853
|
height?: number | null | undefined;
|
|
9751
9854
|
} | undefined;
|
|
9752
9855
|
figmaFile?: {
|
|
9856
|
+
origin: {
|
|
9857
|
+
title?: string | undefined;
|
|
9858
|
+
sourceFileName?: string | undefined;
|
|
9859
|
+
};
|
|
9753
9860
|
sourceId: string;
|
|
9754
9861
|
frameId: string;
|
|
9862
|
+
frameReferenceId: string;
|
|
9755
9863
|
} | undefined;
|
|
9756
9864
|
}>>;
|
|
9757
9865
|
}, "strip", z.ZodTypeAny, {
|
|
9758
9866
|
type: "Image";
|
|
9867
|
+
caption?: string | undefined;
|
|
9759
9868
|
value?: {
|
|
9760
9869
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9761
9870
|
url: string;
|
|
@@ -9765,12 +9874,18 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9765
9874
|
height: number;
|
|
9766
9875
|
} | undefined;
|
|
9767
9876
|
figmaFile?: {
|
|
9877
|
+
origin: {
|
|
9878
|
+
title?: string | undefined;
|
|
9879
|
+
sourceFileName?: string | undefined;
|
|
9880
|
+
};
|
|
9768
9881
|
sourceId: string;
|
|
9769
9882
|
frameId: string;
|
|
9883
|
+
frameReferenceId: string;
|
|
9770
9884
|
} | undefined;
|
|
9771
9885
|
} | undefined;
|
|
9772
9886
|
}, {
|
|
9773
9887
|
type: "Image";
|
|
9888
|
+
caption?: string | undefined;
|
|
9774
9889
|
value?: {
|
|
9775
9890
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9776
9891
|
url: string;
|
|
@@ -9780,8 +9895,13 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9780
9895
|
height?: number | null | undefined;
|
|
9781
9896
|
} | undefined;
|
|
9782
9897
|
figmaFile?: {
|
|
9898
|
+
origin: {
|
|
9899
|
+
title?: string | undefined;
|
|
9900
|
+
sourceFileName?: string | undefined;
|
|
9901
|
+
};
|
|
9783
9902
|
sourceId: string;
|
|
9784
9903
|
frameId: string;
|
|
9904
|
+
frameReferenceId: string;
|
|
9785
9905
|
} | undefined;
|
|
9786
9906
|
} | undefined;
|
|
9787
9907
|
}>]>, "many">;
|
|
@@ -9803,21 +9923,9 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9803
9923
|
}[];
|
|
9804
9924
|
}[];
|
|
9805
9925
|
};
|
|
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
9926
|
} | {
|
|
9820
9927
|
type: "Image";
|
|
9928
|
+
caption?: string | undefined;
|
|
9821
9929
|
value?: {
|
|
9822
9930
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9823
9931
|
url: string;
|
|
@@ -9827,8 +9935,13 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9827
9935
|
height: number;
|
|
9828
9936
|
} | undefined;
|
|
9829
9937
|
figmaFile?: {
|
|
9938
|
+
origin: {
|
|
9939
|
+
title?: string | undefined;
|
|
9940
|
+
sourceFileName?: string | undefined;
|
|
9941
|
+
};
|
|
9830
9942
|
sourceId: string;
|
|
9831
9943
|
frameId: string;
|
|
9944
|
+
frameReferenceId: string;
|
|
9832
9945
|
} | undefined;
|
|
9833
9946
|
} | undefined;
|
|
9834
9947
|
})[];
|
|
@@ -9849,21 +9962,9 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9849
9962
|
}[];
|
|
9850
9963
|
}[];
|
|
9851
9964
|
};
|
|
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
9965
|
} | {
|
|
9866
9966
|
type: "Image";
|
|
9967
|
+
caption?: string | undefined;
|
|
9867
9968
|
value?: {
|
|
9868
9969
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9869
9970
|
url: string;
|
|
@@ -9873,8 +9974,13 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
9873
9974
|
height?: number | null | undefined;
|
|
9874
9975
|
} | undefined;
|
|
9875
9976
|
figmaFile?: {
|
|
9977
|
+
origin: {
|
|
9978
|
+
title?: string | undefined;
|
|
9979
|
+
sourceFileName?: string | undefined;
|
|
9980
|
+
};
|
|
9876
9981
|
sourceId: string;
|
|
9877
9982
|
frameId: string;
|
|
9983
|
+
frameReferenceId: string;
|
|
9878
9984
|
} | undefined;
|
|
9879
9985
|
} | undefined;
|
|
9880
9986
|
})[];
|
|
@@ -9969,93 +10075,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
9969
10075
|
}[];
|
|
9970
10076
|
}[];
|
|
9971
10077
|
};
|
|
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
10078
|
}>, z.ZodObject<{
|
|
10058
10079
|
type: z.ZodLiteral<"Image">;
|
|
10080
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
10059
10081
|
value: z.ZodOptional<z.ZodObject<{
|
|
10060
10082
|
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
10061
10083
|
url: z.ZodString;
|
|
@@ -10073,12 +10095,33 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10073
10095
|
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
10074
10096
|
sourceId: z.ZodString;
|
|
10075
10097
|
frameId: z.ZodString;
|
|
10098
|
+
frameReferenceId: z.ZodString;
|
|
10099
|
+
origin: z.ZodObject<{
|
|
10100
|
+
title: z.ZodOptional<z.ZodString>;
|
|
10101
|
+
sourceFileName: z.ZodOptional<z.ZodString>;
|
|
10102
|
+
}, "strip", z.ZodTypeAny, {
|
|
10103
|
+
title?: string | undefined;
|
|
10104
|
+
sourceFileName?: string | undefined;
|
|
10105
|
+
}, {
|
|
10106
|
+
title?: string | undefined;
|
|
10107
|
+
sourceFileName?: string | undefined;
|
|
10108
|
+
}>;
|
|
10076
10109
|
}, "strip", z.ZodTypeAny, {
|
|
10110
|
+
origin: {
|
|
10111
|
+
title?: string | undefined;
|
|
10112
|
+
sourceFileName?: string | undefined;
|
|
10113
|
+
};
|
|
10077
10114
|
sourceId: string;
|
|
10078
10115
|
frameId: string;
|
|
10116
|
+
frameReferenceId: string;
|
|
10079
10117
|
}, {
|
|
10118
|
+
origin: {
|
|
10119
|
+
title?: string | undefined;
|
|
10120
|
+
sourceFileName?: string | undefined;
|
|
10121
|
+
};
|
|
10080
10122
|
sourceId: string;
|
|
10081
10123
|
frameId: string;
|
|
10124
|
+
frameReferenceId: string;
|
|
10082
10125
|
}>>;
|
|
10083
10126
|
}, "strip", z.ZodTypeAny, {
|
|
10084
10127
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -10089,8 +10132,13 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10089
10132
|
height: number;
|
|
10090
10133
|
} | undefined;
|
|
10091
10134
|
figmaFile?: {
|
|
10135
|
+
origin: {
|
|
10136
|
+
title?: string | undefined;
|
|
10137
|
+
sourceFileName?: string | undefined;
|
|
10138
|
+
};
|
|
10092
10139
|
sourceId: string;
|
|
10093
10140
|
frameId: string;
|
|
10141
|
+
frameReferenceId: string;
|
|
10094
10142
|
} | undefined;
|
|
10095
10143
|
}, {
|
|
10096
10144
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -10101,12 +10149,18 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10101
10149
|
height?: number | null | undefined;
|
|
10102
10150
|
} | undefined;
|
|
10103
10151
|
figmaFile?: {
|
|
10152
|
+
origin: {
|
|
10153
|
+
title?: string | undefined;
|
|
10154
|
+
sourceFileName?: string | undefined;
|
|
10155
|
+
};
|
|
10104
10156
|
sourceId: string;
|
|
10105
10157
|
frameId: string;
|
|
10158
|
+
frameReferenceId: string;
|
|
10106
10159
|
} | undefined;
|
|
10107
10160
|
}>>;
|
|
10108
10161
|
}, "strip", z.ZodTypeAny, {
|
|
10109
10162
|
type: "Image";
|
|
10163
|
+
caption?: string | undefined;
|
|
10110
10164
|
value?: {
|
|
10111
10165
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10112
10166
|
url: string;
|
|
@@ -10116,12 +10170,18 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10116
10170
|
height: number;
|
|
10117
10171
|
} | undefined;
|
|
10118
10172
|
figmaFile?: {
|
|
10173
|
+
origin: {
|
|
10174
|
+
title?: string | undefined;
|
|
10175
|
+
sourceFileName?: string | undefined;
|
|
10176
|
+
};
|
|
10119
10177
|
sourceId: string;
|
|
10120
10178
|
frameId: string;
|
|
10179
|
+
frameReferenceId: string;
|
|
10121
10180
|
} | undefined;
|
|
10122
10181
|
} | undefined;
|
|
10123
10182
|
}, {
|
|
10124
10183
|
type: "Image";
|
|
10184
|
+
caption?: string | undefined;
|
|
10125
10185
|
value?: {
|
|
10126
10186
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10127
10187
|
url: string;
|
|
@@ -10131,8 +10191,13 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10131
10191
|
height?: number | null | undefined;
|
|
10132
10192
|
} | undefined;
|
|
10133
10193
|
figmaFile?: {
|
|
10194
|
+
origin: {
|
|
10195
|
+
title?: string | undefined;
|
|
10196
|
+
sourceFileName?: string | undefined;
|
|
10197
|
+
};
|
|
10134
10198
|
sourceId: string;
|
|
10135
10199
|
frameId: string;
|
|
10200
|
+
frameReferenceId: string;
|
|
10136
10201
|
} | undefined;
|
|
10137
10202
|
} | undefined;
|
|
10138
10203
|
}>]>, "many">;
|
|
@@ -10154,21 +10219,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10154
10219
|
}[];
|
|
10155
10220
|
}[];
|
|
10156
10221
|
};
|
|
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
10222
|
} | {
|
|
10171
10223
|
type: "Image";
|
|
10224
|
+
caption?: string | undefined;
|
|
10172
10225
|
value?: {
|
|
10173
10226
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10174
10227
|
url: string;
|
|
@@ -10178,8 +10231,13 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10178
10231
|
height: number;
|
|
10179
10232
|
} | undefined;
|
|
10180
10233
|
figmaFile?: {
|
|
10234
|
+
origin: {
|
|
10235
|
+
title?: string | undefined;
|
|
10236
|
+
sourceFileName?: string | undefined;
|
|
10237
|
+
};
|
|
10181
10238
|
sourceId: string;
|
|
10182
10239
|
frameId: string;
|
|
10240
|
+
frameReferenceId: string;
|
|
10183
10241
|
} | undefined;
|
|
10184
10242
|
} | undefined;
|
|
10185
10243
|
})[];
|
|
@@ -10200,21 +10258,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10200
10258
|
}[];
|
|
10201
10259
|
}[];
|
|
10202
10260
|
};
|
|
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
10261
|
} | {
|
|
10217
10262
|
type: "Image";
|
|
10263
|
+
caption?: string | undefined;
|
|
10218
10264
|
value?: {
|
|
10219
10265
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10220
10266
|
url: string;
|
|
@@ -10224,8 +10270,13 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10224
10270
|
height?: number | null | undefined;
|
|
10225
10271
|
} | undefined;
|
|
10226
10272
|
figmaFile?: {
|
|
10273
|
+
origin: {
|
|
10274
|
+
title?: string | undefined;
|
|
10275
|
+
sourceFileName?: string | undefined;
|
|
10276
|
+
};
|
|
10227
10277
|
sourceId: string;
|
|
10228
10278
|
frameId: string;
|
|
10279
|
+
frameReferenceId: string;
|
|
10229
10280
|
} | undefined;
|
|
10230
10281
|
} | undefined;
|
|
10231
10282
|
})[];
|
|
@@ -10248,21 +10299,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10248
10299
|
}[];
|
|
10249
10300
|
}[];
|
|
10250
10301
|
};
|
|
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
10302
|
} | {
|
|
10265
10303
|
type: "Image";
|
|
10304
|
+
caption?: string | undefined;
|
|
10266
10305
|
value?: {
|
|
10267
10306
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10268
10307
|
url: string;
|
|
@@ -10272,8 +10311,13 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10272
10311
|
height: number;
|
|
10273
10312
|
} | undefined;
|
|
10274
10313
|
figmaFile?: {
|
|
10314
|
+
origin: {
|
|
10315
|
+
title?: string | undefined;
|
|
10316
|
+
sourceFileName?: string | undefined;
|
|
10317
|
+
};
|
|
10275
10318
|
sourceId: string;
|
|
10276
10319
|
frameId: string;
|
|
10320
|
+
frameReferenceId: string;
|
|
10277
10321
|
} | undefined;
|
|
10278
10322
|
} | undefined;
|
|
10279
10323
|
})[];
|
|
@@ -10296,21 +10340,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10296
10340
|
}[];
|
|
10297
10341
|
}[];
|
|
10298
10342
|
};
|
|
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
10343
|
} | {
|
|
10313
10344
|
type: "Image";
|
|
10345
|
+
caption?: string | undefined;
|
|
10314
10346
|
value?: {
|
|
10315
10347
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10316
10348
|
url: string;
|
|
@@ -10320,8 +10352,13 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
10320
10352
|
height?: number | null | undefined;
|
|
10321
10353
|
} | undefined;
|
|
10322
10354
|
figmaFile?: {
|
|
10355
|
+
origin: {
|
|
10356
|
+
title?: string | undefined;
|
|
10357
|
+
sourceFileName?: string | undefined;
|
|
10358
|
+
};
|
|
10323
10359
|
sourceId: string;
|
|
10324
10360
|
frameId: string;
|
|
10361
|
+
frameReferenceId: string;
|
|
10325
10362
|
} | undefined;
|
|
10326
10363
|
} | undefined;
|
|
10327
10364
|
})[];
|
|
@@ -10421,93 +10458,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10421
10458
|
}[];
|
|
10422
10459
|
}[];
|
|
10423
10460
|
};
|
|
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
10461
|
}>, z.ZodObject<{
|
|
10510
10462
|
type: z.ZodLiteral<"Image">;
|
|
10463
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
10511
10464
|
value: z.ZodOptional<z.ZodObject<{
|
|
10512
10465
|
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
10513
10466
|
url: z.ZodString;
|
|
@@ -10525,12 +10478,33 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10525
10478
|
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
10526
10479
|
sourceId: z.ZodString;
|
|
10527
10480
|
frameId: z.ZodString;
|
|
10481
|
+
frameReferenceId: z.ZodString;
|
|
10482
|
+
origin: z.ZodObject<{
|
|
10483
|
+
title: z.ZodOptional<z.ZodString>;
|
|
10484
|
+
sourceFileName: z.ZodOptional<z.ZodString>;
|
|
10485
|
+
}, "strip", z.ZodTypeAny, {
|
|
10486
|
+
title?: string | undefined;
|
|
10487
|
+
sourceFileName?: string | undefined;
|
|
10488
|
+
}, {
|
|
10489
|
+
title?: string | undefined;
|
|
10490
|
+
sourceFileName?: string | undefined;
|
|
10491
|
+
}>;
|
|
10528
10492
|
}, "strip", z.ZodTypeAny, {
|
|
10493
|
+
origin: {
|
|
10494
|
+
title?: string | undefined;
|
|
10495
|
+
sourceFileName?: string | undefined;
|
|
10496
|
+
};
|
|
10529
10497
|
sourceId: string;
|
|
10530
10498
|
frameId: string;
|
|
10499
|
+
frameReferenceId: string;
|
|
10531
10500
|
}, {
|
|
10501
|
+
origin: {
|
|
10502
|
+
title?: string | undefined;
|
|
10503
|
+
sourceFileName?: string | undefined;
|
|
10504
|
+
};
|
|
10532
10505
|
sourceId: string;
|
|
10533
10506
|
frameId: string;
|
|
10507
|
+
frameReferenceId: string;
|
|
10534
10508
|
}>>;
|
|
10535
10509
|
}, "strip", z.ZodTypeAny, {
|
|
10536
10510
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -10541,8 +10515,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10541
10515
|
height: number;
|
|
10542
10516
|
} | undefined;
|
|
10543
10517
|
figmaFile?: {
|
|
10518
|
+
origin: {
|
|
10519
|
+
title?: string | undefined;
|
|
10520
|
+
sourceFileName?: string | undefined;
|
|
10521
|
+
};
|
|
10544
10522
|
sourceId: string;
|
|
10545
10523
|
frameId: string;
|
|
10524
|
+
frameReferenceId: string;
|
|
10546
10525
|
} | undefined;
|
|
10547
10526
|
}, {
|
|
10548
10527
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
@@ -10553,12 +10532,18 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10553
10532
|
height?: number | null | undefined;
|
|
10554
10533
|
} | undefined;
|
|
10555
10534
|
figmaFile?: {
|
|
10535
|
+
origin: {
|
|
10536
|
+
title?: string | undefined;
|
|
10537
|
+
sourceFileName?: string | undefined;
|
|
10538
|
+
};
|
|
10556
10539
|
sourceId: string;
|
|
10557
10540
|
frameId: string;
|
|
10541
|
+
frameReferenceId: string;
|
|
10558
10542
|
} | undefined;
|
|
10559
10543
|
}>>;
|
|
10560
10544
|
}, "strip", z.ZodTypeAny, {
|
|
10561
10545
|
type: "Image";
|
|
10546
|
+
caption?: string | undefined;
|
|
10562
10547
|
value?: {
|
|
10563
10548
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10564
10549
|
url: string;
|
|
@@ -10568,12 +10553,18 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10568
10553
|
height: number;
|
|
10569
10554
|
} | undefined;
|
|
10570
10555
|
figmaFile?: {
|
|
10556
|
+
origin: {
|
|
10557
|
+
title?: string | undefined;
|
|
10558
|
+
sourceFileName?: string | undefined;
|
|
10559
|
+
};
|
|
10571
10560
|
sourceId: string;
|
|
10572
10561
|
frameId: string;
|
|
10562
|
+
frameReferenceId: string;
|
|
10573
10563
|
} | undefined;
|
|
10574
10564
|
} | undefined;
|
|
10575
10565
|
}, {
|
|
10576
10566
|
type: "Image";
|
|
10567
|
+
caption?: string | undefined;
|
|
10577
10568
|
value?: {
|
|
10578
10569
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10579
10570
|
url: string;
|
|
@@ -10583,8 +10574,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10583
10574
|
height?: number | null | undefined;
|
|
10584
10575
|
} | undefined;
|
|
10585
10576
|
figmaFile?: {
|
|
10577
|
+
origin: {
|
|
10578
|
+
title?: string | undefined;
|
|
10579
|
+
sourceFileName?: string | undefined;
|
|
10580
|
+
};
|
|
10586
10581
|
sourceId: string;
|
|
10587
10582
|
frameId: string;
|
|
10583
|
+
frameReferenceId: string;
|
|
10588
10584
|
} | undefined;
|
|
10589
10585
|
} | undefined;
|
|
10590
10586
|
}>]>, "many">;
|
|
@@ -10606,21 +10602,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10606
10602
|
}[];
|
|
10607
10603
|
}[];
|
|
10608
10604
|
};
|
|
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
10605
|
} | {
|
|
10623
10606
|
type: "Image";
|
|
10607
|
+
caption?: string | undefined;
|
|
10624
10608
|
value?: {
|
|
10625
10609
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10626
10610
|
url: string;
|
|
@@ -10630,8 +10614,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10630
10614
|
height: number;
|
|
10631
10615
|
} | undefined;
|
|
10632
10616
|
figmaFile?: {
|
|
10617
|
+
origin: {
|
|
10618
|
+
title?: string | undefined;
|
|
10619
|
+
sourceFileName?: string | undefined;
|
|
10620
|
+
};
|
|
10633
10621
|
sourceId: string;
|
|
10634
10622
|
frameId: string;
|
|
10623
|
+
frameReferenceId: string;
|
|
10635
10624
|
} | undefined;
|
|
10636
10625
|
} | undefined;
|
|
10637
10626
|
})[];
|
|
@@ -10652,21 +10641,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10652
10641
|
}[];
|
|
10653
10642
|
}[];
|
|
10654
10643
|
};
|
|
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
10644
|
} | {
|
|
10669
10645
|
type: "Image";
|
|
10646
|
+
caption?: string | undefined;
|
|
10670
10647
|
value?: {
|
|
10671
10648
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10672
10649
|
url: string;
|
|
@@ -10676,8 +10653,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10676
10653
|
height?: number | null | undefined;
|
|
10677
10654
|
} | undefined;
|
|
10678
10655
|
figmaFile?: {
|
|
10656
|
+
origin: {
|
|
10657
|
+
title?: string | undefined;
|
|
10658
|
+
sourceFileName?: string | undefined;
|
|
10659
|
+
};
|
|
10679
10660
|
sourceId: string;
|
|
10680
10661
|
frameId: string;
|
|
10662
|
+
frameReferenceId: string;
|
|
10681
10663
|
} | undefined;
|
|
10682
10664
|
} | undefined;
|
|
10683
10665
|
})[];
|
|
@@ -10700,21 +10682,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10700
10682
|
}[];
|
|
10701
10683
|
}[];
|
|
10702
10684
|
};
|
|
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
10685
|
} | {
|
|
10717
10686
|
type: "Image";
|
|
10687
|
+
caption?: string | undefined;
|
|
10718
10688
|
value?: {
|
|
10719
10689
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10720
10690
|
url: string;
|
|
@@ -10724,8 +10694,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10724
10694
|
height: number;
|
|
10725
10695
|
} | undefined;
|
|
10726
10696
|
figmaFile?: {
|
|
10697
|
+
origin: {
|
|
10698
|
+
title?: string | undefined;
|
|
10699
|
+
sourceFileName?: string | undefined;
|
|
10700
|
+
};
|
|
10727
10701
|
sourceId: string;
|
|
10728
10702
|
frameId: string;
|
|
10703
|
+
frameReferenceId: string;
|
|
10729
10704
|
} | undefined;
|
|
10730
10705
|
} | undefined;
|
|
10731
10706
|
})[];
|
|
@@ -10748,21 +10723,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10748
10723
|
}[];
|
|
10749
10724
|
}[];
|
|
10750
10725
|
};
|
|
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
10726
|
} | {
|
|
10765
10727
|
type: "Image";
|
|
10728
|
+
caption?: string | undefined;
|
|
10766
10729
|
value?: {
|
|
10767
10730
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10768
10731
|
url: string;
|
|
@@ -10772,8 +10735,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10772
10735
|
height?: number | null | undefined;
|
|
10773
10736
|
} | undefined;
|
|
10774
10737
|
figmaFile?: {
|
|
10738
|
+
origin: {
|
|
10739
|
+
title?: string | undefined;
|
|
10740
|
+
sourceFileName?: string | undefined;
|
|
10741
|
+
};
|
|
10775
10742
|
sourceId: string;
|
|
10776
10743
|
frameId: string;
|
|
10744
|
+
frameReferenceId: string;
|
|
10777
10745
|
} | undefined;
|
|
10778
10746
|
} | undefined;
|
|
10779
10747
|
})[];
|
|
@@ -10798,21 +10766,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10798
10766
|
}[];
|
|
10799
10767
|
}[];
|
|
10800
10768
|
};
|
|
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
10769
|
} | {
|
|
10815
10770
|
type: "Image";
|
|
10771
|
+
caption?: string | undefined;
|
|
10816
10772
|
value?: {
|
|
10817
10773
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10818
10774
|
url: string;
|
|
@@ -10822,8 +10778,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10822
10778
|
height: number;
|
|
10823
10779
|
} | undefined;
|
|
10824
10780
|
figmaFile?: {
|
|
10781
|
+
origin: {
|
|
10782
|
+
title?: string | undefined;
|
|
10783
|
+
sourceFileName?: string | undefined;
|
|
10784
|
+
};
|
|
10825
10785
|
sourceId: string;
|
|
10826
10786
|
frameId: string;
|
|
10787
|
+
frameReferenceId: string;
|
|
10827
10788
|
} | undefined;
|
|
10828
10789
|
} | undefined;
|
|
10829
10790
|
})[];
|
|
@@ -10851,21 +10812,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10851
10812
|
}[];
|
|
10852
10813
|
}[];
|
|
10853
10814
|
};
|
|
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
10815
|
} | {
|
|
10868
10816
|
type: "Image";
|
|
10817
|
+
caption?: string | undefined;
|
|
10869
10818
|
value?: {
|
|
10870
10819
|
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10871
10820
|
url: string;
|
|
@@ -10875,8 +10824,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
10875
10824
|
height?: number | null | undefined;
|
|
10876
10825
|
} | undefined;
|
|
10877
10826
|
figmaFile?: {
|
|
10827
|
+
origin: {
|
|
10828
|
+
title?: string | undefined;
|
|
10829
|
+
sourceFileName?: string | undefined;
|
|
10830
|
+
};
|
|
10878
10831
|
sourceId: string;
|
|
10879
10832
|
frameId: string;
|
|
10833
|
+
frameReferenceId: string;
|
|
10880
10834
|
} | undefined;
|
|
10881
10835
|
} | undefined;
|
|
10882
10836
|
})[];
|
|
@@ -10999,6 +10953,9 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
10999
10953
|
alignment: "Center" | "FrameHeight";
|
|
11000
10954
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
11001
10955
|
showTitles: boolean;
|
|
10956
|
+
color?: {
|
|
10957
|
+
value: string;
|
|
10958
|
+
} | null | undefined;
|
|
11002
10959
|
backgroundColor?: {
|
|
11003
10960
|
value: string;
|
|
11004
10961
|
} | null | undefined;
|
|
@@ -11175,6 +11132,9 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
11175
11132
|
alignment: "Center" | "FrameHeight";
|
|
11176
11133
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
11177
11134
|
showTitles: boolean;
|
|
11135
|
+
color?: {
|
|
11136
|
+
value: string;
|
|
11137
|
+
} | null | undefined;
|
|
11178
11138
|
backgroundColor?: {
|
|
11179
11139
|
value: string;
|
|
11180
11140
|
} | null | undefined;
|
|
@@ -11722,6 +11682,9 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
11722
11682
|
alignment: "Center" | "FrameHeight";
|
|
11723
11683
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
11724
11684
|
showTitles: boolean;
|
|
11685
|
+
color?: {
|
|
11686
|
+
value: string;
|
|
11687
|
+
} | null | undefined;
|
|
11725
11688
|
backgroundColor?: {
|
|
11726
11689
|
value: string;
|
|
11727
11690
|
} | null | undefined;
|
|
@@ -11898,6 +11861,9 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
11898
11861
|
alignment: "Center" | "FrameHeight";
|
|
11899
11862
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
11900
11863
|
showTitles: boolean;
|
|
11864
|
+
color?: {
|
|
11865
|
+
value: string;
|
|
11866
|
+
} | null | undefined;
|
|
11901
11867
|
backgroundColor?: {
|
|
11902
11868
|
value: string;
|
|
11903
11869
|
} | null | undefined;
|
|
@@ -12152,6 +12118,9 @@ declare const DocumentationPageElementDataV1: z.ZodObject<{
|
|
|
12152
12118
|
alignment: "Center" | "FrameHeight";
|
|
12153
12119
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
12154
12120
|
showTitles: boolean;
|
|
12121
|
+
color?: {
|
|
12122
|
+
value: string;
|
|
12123
|
+
} | null | undefined;
|
|
12155
12124
|
backgroundColor?: {
|
|
12156
12125
|
value: string;
|
|
12157
12126
|
} | null | undefined;
|
|
@@ -12328,6 +12297,9 @@ declare const DocumentationPageElementDataV1: z.ZodObject<{
|
|
|
12328
12297
|
alignment: "Center" | "FrameHeight";
|
|
12329
12298
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
12330
12299
|
showTitles: boolean;
|
|
12300
|
+
color?: {
|
|
12301
|
+
value: string;
|
|
12302
|
+
} | null | undefined;
|
|
12331
12303
|
backgroundColor?: {
|
|
12332
12304
|
value: string;
|
|
12333
12305
|
} | null | undefined;
|
|
@@ -12875,6 +12847,9 @@ declare const DocumentationPageElementDataV1: z.ZodObject<{
|
|
|
12875
12847
|
alignment: "Center" | "FrameHeight";
|
|
12876
12848
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
12877
12849
|
showTitles: boolean;
|
|
12850
|
+
color?: {
|
|
12851
|
+
value: string;
|
|
12852
|
+
} | null | undefined;
|
|
12878
12853
|
backgroundColor?: {
|
|
12879
12854
|
value: string;
|
|
12880
12855
|
} | null | undefined;
|
|
@@ -13051,6 +13026,9 @@ declare const DocumentationPageElementDataV1: z.ZodObject<{
|
|
|
13051
13026
|
alignment: "Center" | "FrameHeight";
|
|
13052
13027
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
13053
13028
|
showTitles: boolean;
|
|
13029
|
+
color?: {
|
|
13030
|
+
value: string;
|
|
13031
|
+
} | null | undefined;
|
|
13054
13032
|
backgroundColor?: {
|
|
13055
13033
|
value: string;
|
|
13056
13034
|
} | null | undefined;
|
|
@@ -13383,6 +13361,9 @@ declare const DocumentationPageElementDataV1: z.ZodObject<{
|
|
|
13383
13361
|
alignment: "Center" | "FrameHeight";
|
|
13384
13362
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
13385
13363
|
showTitles: boolean;
|
|
13364
|
+
color?: {
|
|
13365
|
+
value: string;
|
|
13366
|
+
} | null | undefined;
|
|
13386
13367
|
backgroundColor?: {
|
|
13387
13368
|
value: string;
|
|
13388
13369
|
} | null | undefined;
|
|
@@ -13559,6 +13540,9 @@ declare const DocumentationPageElementDataV1: z.ZodObject<{
|
|
|
13559
13540
|
alignment: "Center" | "FrameHeight";
|
|
13560
13541
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
13561
13542
|
showTitles: boolean;
|
|
13543
|
+
color?: {
|
|
13544
|
+
value: string;
|
|
13545
|
+
} | null | undefined;
|
|
13562
13546
|
backgroundColor?: {
|
|
13563
13547
|
value: string;
|
|
13564
13548
|
} | null | undefined;
|
|
@@ -20574,6 +20558,9 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
20574
20558
|
alignment: "Center" | "FrameHeight";
|
|
20575
20559
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
20576
20560
|
showTitles: boolean;
|
|
20561
|
+
color?: {
|
|
20562
|
+
value: string;
|
|
20563
|
+
} | null | undefined;
|
|
20577
20564
|
backgroundColor?: {
|
|
20578
20565
|
value: string;
|
|
20579
20566
|
} | null | undefined;
|
|
@@ -20750,6 +20737,9 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
20750
20737
|
alignment: "Center" | "FrameHeight";
|
|
20751
20738
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
20752
20739
|
showTitles: boolean;
|
|
20740
|
+
color?: {
|
|
20741
|
+
value: string;
|
|
20742
|
+
} | null | undefined;
|
|
20753
20743
|
backgroundColor?: {
|
|
20754
20744
|
value: string;
|
|
20755
20745
|
} | null | undefined;
|
|
@@ -21297,6 +21287,9 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
21297
21287
|
alignment: "Center" | "FrameHeight";
|
|
21298
21288
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
21299
21289
|
showTitles: boolean;
|
|
21290
|
+
color?: {
|
|
21291
|
+
value: string;
|
|
21292
|
+
} | null | undefined;
|
|
21300
21293
|
backgroundColor?: {
|
|
21301
21294
|
value: string;
|
|
21302
21295
|
} | null | undefined;
|
|
@@ -21473,6 +21466,9 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
21473
21466
|
alignment: "Center" | "FrameHeight";
|
|
21474
21467
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
21475
21468
|
showTitles: boolean;
|
|
21469
|
+
color?: {
|
|
21470
|
+
value: string;
|
|
21471
|
+
} | null | undefined;
|
|
21476
21472
|
backgroundColor?: {
|
|
21477
21473
|
value: string;
|
|
21478
21474
|
} | null | undefined;
|
|
@@ -21824,6 +21820,9 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
21824
21820
|
alignment: "Center" | "FrameHeight";
|
|
21825
21821
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
21826
21822
|
showTitles: boolean;
|
|
21823
|
+
color?: {
|
|
21824
|
+
value: string;
|
|
21825
|
+
} | null | undefined;
|
|
21827
21826
|
backgroundColor?: {
|
|
21828
21827
|
value: string;
|
|
21829
21828
|
} | null | undefined;
|
|
@@ -22000,6 +21999,9 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
22000
21999
|
alignment: "Center" | "FrameHeight";
|
|
22001
22000
|
layout: "C8" | "C7" | "C6" | "C5" | "C4" | "C3" | "C2" | "C1" | "C1_75";
|
|
22002
22001
|
showTitles: boolean;
|
|
22002
|
+
color?: {
|
|
22003
|
+
value: string;
|
|
22004
|
+
} | null | undefined;
|
|
22003
22005
|
backgroundColor?: {
|
|
22004
22006
|
value: string;
|
|
22005
22007
|
} | null | undefined;
|
|
@@ -23669,12 +23671,12 @@ declare const ElementGroup: z.ZodObject<{
|
|
|
23669
23671
|
updatedAt: Date;
|
|
23670
23672
|
persistentId: string;
|
|
23671
23673
|
designSystemVersionId: string;
|
|
23674
|
+
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
23675
|
sortOrder: number;
|
|
23673
23676
|
meta: {
|
|
23674
23677
|
name: string;
|
|
23675
23678
|
description?: string | undefined;
|
|
23676
23679
|
};
|
|
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
23680
|
brandPersistentId?: string | undefined;
|
|
23679
23681
|
parentPersistentId?: string | undefined;
|
|
23680
23682
|
slug?: string | undefined;
|
|
@@ -23763,12 +23765,12 @@ declare const ElementGroup: z.ZodObject<{
|
|
|
23763
23765
|
updatedAt: Date;
|
|
23764
23766
|
persistentId: string;
|
|
23765
23767
|
designSystemVersionId: string;
|
|
23768
|
+
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
23769
|
sortOrder: number;
|
|
23767
23770
|
meta: {
|
|
23768
23771
|
name: string;
|
|
23769
23772
|
description?: string | undefined;
|
|
23770
23773
|
};
|
|
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
23774
|
brandPersistentId?: string | undefined;
|
|
23773
23775
|
parentPersistentId?: string | undefined;
|
|
23774
23776
|
slug?: string | undefined;
|
|
@@ -24309,6 +24311,7 @@ declare const BrandedElementGroup: z.ZodObject<{
|
|
|
24309
24311
|
}>>;
|
|
24310
24312
|
parentPersistentId: z.ZodOptional<z.ZodString>;
|
|
24311
24313
|
shortPersistentId: z.ZodOptional<z.ZodString>;
|
|
24314
|
+
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
24315
|
sortOrder: z.ZodNumber;
|
|
24313
24316
|
meta: z.ZodObject<{
|
|
24314
24317
|
name: z.ZodString;
|
|
@@ -24320,7 +24323,6 @@ declare const BrandedElementGroup: z.ZodObject<{
|
|
|
24320
24323
|
name: string;
|
|
24321
24324
|
description?: string | undefined;
|
|
24322
24325
|
}>;
|
|
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
24326
|
slug: z.ZodOptional<z.ZodString>;
|
|
24325
24327
|
userSlug: z.ZodOptional<z.ZodString>;
|
|
24326
24328
|
brandPersistentId: z.ZodString;
|
|
@@ -24331,12 +24333,12 @@ declare const BrandedElementGroup: z.ZodObject<{
|
|
|
24331
24333
|
persistentId: string;
|
|
24332
24334
|
designSystemVersionId: string;
|
|
24333
24335
|
brandPersistentId: string;
|
|
24336
|
+
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
24337
|
sortOrder: number;
|
|
24335
24338
|
meta: {
|
|
24336
24339
|
name: string;
|
|
24337
24340
|
description?: string | undefined;
|
|
24338
24341
|
};
|
|
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
24342
|
data?: {
|
|
24341
24343
|
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
24342
24344
|
configuration?: {
|
|
@@ -24425,12 +24427,12 @@ declare const BrandedElementGroup: z.ZodObject<{
|
|
|
24425
24427
|
persistentId: string;
|
|
24426
24428
|
designSystemVersionId: string;
|
|
24427
24429
|
brandPersistentId: string;
|
|
24430
|
+
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
24431
|
sortOrder: number;
|
|
24429
24432
|
meta: {
|
|
24430
24433
|
name: string;
|
|
24431
24434
|
description?: string | undefined;
|
|
24432
24435
|
};
|
|
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
24436
|
data?: {
|
|
24435
24437
|
behavior?: "Tabs" | "Group" | null | undefined;
|
|
24436
24438
|
configuration?: {
|
|
@@ -25196,6 +25198,7 @@ declare const ShallowDesignElement: z.ZodObject<{
|
|
|
25196
25198
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
25197
25199
|
parentPersistentId: z.ZodOptional<z.ZodString>;
|
|
25198
25200
|
shortPersistentId: z.ZodOptional<z.ZodString>;
|
|
25201
|
+
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
25202
|
sortOrder: z.ZodNumber;
|
|
25200
25203
|
}, "strip", z.ZodTypeAny, {
|
|
25201
25204
|
id: string;
|
|
@@ -25206,6 +25209,7 @@ declare const ShallowDesignElement: z.ZodObject<{
|
|
|
25206
25209
|
brandPersistentId?: string | undefined;
|
|
25207
25210
|
parentPersistentId?: string | undefined;
|
|
25208
25211
|
shortPersistentId?: string | undefined;
|
|
25212
|
+
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
25213
|
}, {
|
|
25210
25214
|
id: string;
|
|
25211
25215
|
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 +25219,7 @@ declare const ShallowDesignElement: z.ZodObject<{
|
|
|
25215
25219
|
brandPersistentId?: string | undefined;
|
|
25216
25220
|
parentPersistentId?: string | undefined;
|
|
25217
25221
|
shortPersistentId?: string | undefined;
|
|
25222
|
+
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
25223
|
}>;
|
|
25219
25224
|
type ShallowDesignElement = z.infer<typeof ShallowDesignElement>;
|
|
25220
25225
|
declare const DesignElement: z.ZodObject<{
|
|
@@ -25225,6 +25230,7 @@ declare const DesignElement: z.ZodObject<{
|
|
|
25225
25230
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
25226
25231
|
parentPersistentId: z.ZodOptional<z.ZodString>;
|
|
25227
25232
|
shortPersistentId: z.ZodOptional<z.ZodString>;
|
|
25233
|
+
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
25234
|
sortOrder: z.ZodNumber;
|
|
25229
25235
|
meta: z.ZodObject<{
|
|
25230
25236
|
name: z.ZodString;
|
|
@@ -25236,7 +25242,6 @@ declare const DesignElement: z.ZodObject<{
|
|
|
25236
25242
|
name: string;
|
|
25237
25243
|
description?: string | undefined;
|
|
25238
25244
|
}>;
|
|
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
25245
|
slug: z.ZodOptional<z.ZodString>;
|
|
25241
25246
|
userSlug: z.ZodOptional<z.ZodString>;
|
|
25242
25247
|
createdAt: z.ZodDate;
|
|
@@ -25303,6 +25308,8 @@ declare const DesignElement: z.ZodObject<{
|
|
|
25303
25308
|
origin?: Record<string, any> | undefined;
|
|
25304
25309
|
}>;
|
|
25305
25310
|
type DesignElement = z.infer<typeof DesignElement>;
|
|
25311
|
+
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"]>]>;
|
|
25312
|
+
type HierarchicalElements = z.infer<typeof HierarchicalElements>;
|
|
25306
25313
|
|
|
25307
25314
|
declare const ThemeOverrideOriginPart: z.ZodObject<{
|
|
25308
25315
|
referenceOriginId: z.ZodOptional<z.ZodString>;
|
|
@@ -94889,14 +94896,65 @@ type UserInvites = z.infer<typeof UserInvites>;
|
|
|
94889
94896
|
declare const WorkspaceContext: z.ZodObject<{
|
|
94890
94897
|
workspaceId: z.ZodString;
|
|
94891
94898
|
product: z.ZodEnum<["free", "team", "team_test", "company", "enterprise"]>;
|
|
94899
|
+
ipWhitelist: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
94900
|
+
isEnabledForCloud: z.ZodBoolean;
|
|
94901
|
+
isEnabledForDocs: z.ZodBoolean;
|
|
94902
|
+
entries: z.ZodArray<z.ZodObject<{
|
|
94903
|
+
isEnabled: z.ZodBoolean;
|
|
94904
|
+
name: z.ZodString;
|
|
94905
|
+
range: z.ZodString;
|
|
94906
|
+
}, "strip", z.ZodTypeAny, {
|
|
94907
|
+
name: string;
|
|
94908
|
+
isEnabled: boolean;
|
|
94909
|
+
range: string;
|
|
94910
|
+
}, {
|
|
94911
|
+
name: string;
|
|
94912
|
+
isEnabled: boolean;
|
|
94913
|
+
range: string;
|
|
94914
|
+
}>, "many">;
|
|
94915
|
+
}, "strip", z.ZodTypeAny, {
|
|
94916
|
+
entries: {
|
|
94917
|
+
name: string;
|
|
94918
|
+
isEnabled: boolean;
|
|
94919
|
+
range: string;
|
|
94920
|
+
}[];
|
|
94921
|
+
isEnabledForCloud: boolean;
|
|
94922
|
+
isEnabledForDocs: boolean;
|
|
94923
|
+
}, {
|
|
94924
|
+
entries: {
|
|
94925
|
+
name: string;
|
|
94926
|
+
isEnabled: boolean;
|
|
94927
|
+
range: string;
|
|
94928
|
+
}[];
|
|
94929
|
+
isEnabledForCloud: boolean;
|
|
94930
|
+
isEnabledForDocs: boolean;
|
|
94931
|
+
}>>>;
|
|
94892
94932
|
publicDesignSystem: z.ZodOptional<z.ZodBoolean>;
|
|
94893
94933
|
}, "strip", z.ZodTypeAny, {
|
|
94894
94934
|
product: "free" | "team" | "team_test" | "company" | "enterprise";
|
|
94895
94935
|
workspaceId: string;
|
|
94936
|
+
ipWhitelist?: {
|
|
94937
|
+
entries: {
|
|
94938
|
+
name: string;
|
|
94939
|
+
isEnabled: boolean;
|
|
94940
|
+
range: string;
|
|
94941
|
+
}[];
|
|
94942
|
+
isEnabledForCloud: boolean;
|
|
94943
|
+
isEnabledForDocs: boolean;
|
|
94944
|
+
} | null | undefined;
|
|
94896
94945
|
publicDesignSystem?: boolean | undefined;
|
|
94897
94946
|
}, {
|
|
94898
94947
|
product: "free" | "team" | "team_test" | "company" | "enterprise";
|
|
94899
94948
|
workspaceId: string;
|
|
94949
|
+
ipWhitelist?: {
|
|
94950
|
+
entries: {
|
|
94951
|
+
name: string;
|
|
94952
|
+
isEnabled: boolean;
|
|
94953
|
+
range: string;
|
|
94954
|
+
}[];
|
|
94955
|
+
isEnabledForCloud: boolean;
|
|
94956
|
+
isEnabledForDocs: boolean;
|
|
94957
|
+
} | null | undefined;
|
|
94900
94958
|
publicDesignSystem?: boolean | undefined;
|
|
94901
94959
|
}>;
|
|
94902
94960
|
type WorkspaceContext = z.infer<typeof WorkspaceContext>;
|
|
@@ -98277,4 +98335,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
98277
98335
|
}>;
|
|
98278
98336
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
98279
98337
|
|
|
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 };
|
|
98338
|
+
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, PageBlockThemeDisplayMode, 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 };
|