@supernova-studio/model 0.48.27 → 0.48.29
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 +571 -191
- package/dist/index.d.ts +571 -191
- package/dist/index.js +2604 -2509
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2609 -2514
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -2
- package/src/dsm/elements/data/documentation-block-v1.ts +115 -1
package/dist/index.d.mts
CHANGED
|
@@ -35794,68 +35794,84 @@ declare const PageBlockTilesAlignment: z.ZodEnum<["Center", "FrameHeight"]>;
|
|
|
35794
35794
|
type PageBlockTilesAlignment = z.infer<typeof PageBlockTilesAlignment>;
|
|
35795
35795
|
declare const PageBlockTilesLayout: z.ZodEnum<["C8", "C7", "C6", "C5", "C4", "C3", "C2", "C1", "C1_75"]>;
|
|
35796
35796
|
type PageBlockTilesLayout = z.infer<typeof PageBlockTilesLayout>;
|
|
35797
|
-
declare const PageBlockTextSpanAttributeType: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
35797
|
+
declare const PageBlockTextSpanAttributeType: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code", "Comment"]>;
|
|
35798
35798
|
type PageBlockTextSpanAttributeType = z.infer<typeof PageBlockTextSpanAttributeType>;
|
|
35799
35799
|
declare const PageBlockTypeV1: 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", "Guidelines"]>;
|
|
35800
35800
|
type PageBlockTypeV1 = z.infer<typeof PageBlockTypeV1>;
|
|
35801
35801
|
declare const PageBlockTextSpanAttribute: z.ZodObject<{
|
|
35802
|
-
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
35802
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code", "Comment"]>;
|
|
35803
35803
|
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
35804
35804
|
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
35805
35805
|
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
35806
35806
|
openInNewTab: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
35807
|
+
commentHighlightId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
35808
|
+
commentIsResolved: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
35807
35809
|
}, "strip", z.ZodTypeAny, {
|
|
35808
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
35810
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
35809
35811
|
link?: string | undefined;
|
|
35810
35812
|
documentationItemId?: string | undefined;
|
|
35811
35813
|
openInNewTab?: boolean | undefined;
|
|
35812
35814
|
openInNewWindow?: boolean | undefined;
|
|
35815
|
+
commentHighlightId?: string | undefined;
|
|
35816
|
+
commentIsResolved?: boolean | undefined;
|
|
35813
35817
|
}, {
|
|
35814
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
35818
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
35815
35819
|
link?: string | null | undefined;
|
|
35816
35820
|
documentationItemId?: string | null | undefined;
|
|
35817
35821
|
openInNewTab?: boolean | null | undefined;
|
|
35818
35822
|
openInNewWindow?: boolean | null | undefined;
|
|
35823
|
+
commentHighlightId?: string | null | undefined;
|
|
35824
|
+
commentIsResolved?: boolean | null | undefined;
|
|
35819
35825
|
}>;
|
|
35820
35826
|
type PageBlockTextSpanAttribute = z.infer<typeof PageBlockTextSpanAttribute>;
|
|
35821
35827
|
declare const PageBlockTextSpan: z.ZodObject<{
|
|
35822
35828
|
text: z.ZodString;
|
|
35823
35829
|
attributes: z.ZodArray<z.ZodObject<{
|
|
35824
|
-
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
35830
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code", "Comment"]>;
|
|
35825
35831
|
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
35826
35832
|
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
35827
35833
|
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
35828
35834
|
openInNewTab: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
35835
|
+
commentHighlightId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
35836
|
+
commentIsResolved: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
35829
35837
|
}, "strip", z.ZodTypeAny, {
|
|
35830
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
35838
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
35831
35839
|
link?: string | undefined;
|
|
35832
35840
|
documentationItemId?: string | undefined;
|
|
35833
35841
|
openInNewTab?: boolean | undefined;
|
|
35834
35842
|
openInNewWindow?: boolean | undefined;
|
|
35843
|
+
commentHighlightId?: string | undefined;
|
|
35844
|
+
commentIsResolved?: boolean | undefined;
|
|
35835
35845
|
}, {
|
|
35836
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
35846
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
35837
35847
|
link?: string | null | undefined;
|
|
35838
35848
|
documentationItemId?: string | null | undefined;
|
|
35839
35849
|
openInNewTab?: boolean | null | undefined;
|
|
35840
35850
|
openInNewWindow?: boolean | null | undefined;
|
|
35851
|
+
commentHighlightId?: string | null | undefined;
|
|
35852
|
+
commentIsResolved?: boolean | null | undefined;
|
|
35841
35853
|
}>, "many">;
|
|
35842
35854
|
}, "strip", z.ZodTypeAny, {
|
|
35843
35855
|
text: string;
|
|
35844
35856
|
attributes: {
|
|
35845
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
35857
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
35846
35858
|
link?: string | undefined;
|
|
35847
35859
|
documentationItemId?: string | undefined;
|
|
35848
35860
|
openInNewTab?: boolean | undefined;
|
|
35849
35861
|
openInNewWindow?: boolean | undefined;
|
|
35862
|
+
commentHighlightId?: string | undefined;
|
|
35863
|
+
commentIsResolved?: boolean | undefined;
|
|
35850
35864
|
}[];
|
|
35851
35865
|
}, {
|
|
35852
35866
|
text: string;
|
|
35853
35867
|
attributes: {
|
|
35854
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
35868
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
35855
35869
|
link?: string | null | undefined;
|
|
35856
35870
|
documentationItemId?: string | null | undefined;
|
|
35857
35871
|
openInNewTab?: boolean | null | undefined;
|
|
35858
35872
|
openInNewWindow?: boolean | null | undefined;
|
|
35873
|
+
commentHighlightId?: string | null | undefined;
|
|
35874
|
+
commentIsResolved?: boolean | null | undefined;
|
|
35859
35875
|
}[];
|
|
35860
35876
|
}>;
|
|
35861
35877
|
type PageBlockTextSpan = z.infer<typeof PageBlockTextSpan>;
|
|
@@ -35863,63 +35879,77 @@ declare const PageBlockText: z.ZodObject<{
|
|
|
35863
35879
|
spans: z.ZodArray<z.ZodObject<{
|
|
35864
35880
|
text: z.ZodString;
|
|
35865
35881
|
attributes: z.ZodArray<z.ZodObject<{
|
|
35866
|
-
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
35882
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code", "Comment"]>;
|
|
35867
35883
|
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
35868
35884
|
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
35869
35885
|
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
35870
35886
|
openInNewTab: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
35887
|
+
commentHighlightId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
35888
|
+
commentIsResolved: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
35871
35889
|
}, "strip", z.ZodTypeAny, {
|
|
35872
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
35890
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
35873
35891
|
link?: string | undefined;
|
|
35874
35892
|
documentationItemId?: string | undefined;
|
|
35875
35893
|
openInNewTab?: boolean | undefined;
|
|
35876
35894
|
openInNewWindow?: boolean | undefined;
|
|
35895
|
+
commentHighlightId?: string | undefined;
|
|
35896
|
+
commentIsResolved?: boolean | undefined;
|
|
35877
35897
|
}, {
|
|
35878
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
35898
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
35879
35899
|
link?: string | null | undefined;
|
|
35880
35900
|
documentationItemId?: string | null | undefined;
|
|
35881
35901
|
openInNewTab?: boolean | null | undefined;
|
|
35882
35902
|
openInNewWindow?: boolean | null | undefined;
|
|
35903
|
+
commentHighlightId?: string | null | undefined;
|
|
35904
|
+
commentIsResolved?: boolean | null | undefined;
|
|
35883
35905
|
}>, "many">;
|
|
35884
35906
|
}, "strip", z.ZodTypeAny, {
|
|
35885
35907
|
text: string;
|
|
35886
35908
|
attributes: {
|
|
35887
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
35909
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
35888
35910
|
link?: string | undefined;
|
|
35889
35911
|
documentationItemId?: string | undefined;
|
|
35890
35912
|
openInNewTab?: boolean | undefined;
|
|
35891
35913
|
openInNewWindow?: boolean | undefined;
|
|
35914
|
+
commentHighlightId?: string | undefined;
|
|
35915
|
+
commentIsResolved?: boolean | undefined;
|
|
35892
35916
|
}[];
|
|
35893
35917
|
}, {
|
|
35894
35918
|
text: string;
|
|
35895
35919
|
attributes: {
|
|
35896
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
35920
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
35897
35921
|
link?: string | null | undefined;
|
|
35898
35922
|
documentationItemId?: string | null | undefined;
|
|
35899
35923
|
openInNewTab?: boolean | null | undefined;
|
|
35900
35924
|
openInNewWindow?: boolean | null | undefined;
|
|
35925
|
+
commentHighlightId?: string | null | undefined;
|
|
35926
|
+
commentIsResolved?: boolean | null | undefined;
|
|
35901
35927
|
}[];
|
|
35902
35928
|
}>, "many">;
|
|
35903
35929
|
}, "strip", z.ZodTypeAny, {
|
|
35904
35930
|
spans: {
|
|
35905
35931
|
text: string;
|
|
35906
35932
|
attributes: {
|
|
35907
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
35933
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
35908
35934
|
link?: string | undefined;
|
|
35909
35935
|
documentationItemId?: string | undefined;
|
|
35910
35936
|
openInNewTab?: boolean | undefined;
|
|
35911
35937
|
openInNewWindow?: boolean | undefined;
|
|
35938
|
+
commentHighlightId?: string | undefined;
|
|
35939
|
+
commentIsResolved?: boolean | undefined;
|
|
35912
35940
|
}[];
|
|
35913
35941
|
}[];
|
|
35914
35942
|
}, {
|
|
35915
35943
|
spans: {
|
|
35916
35944
|
text: string;
|
|
35917
35945
|
attributes: {
|
|
35918
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
35946
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
35919
35947
|
link?: string | null | undefined;
|
|
35920
35948
|
documentationItemId?: string | null | undefined;
|
|
35921
35949
|
openInNewTab?: boolean | null | undefined;
|
|
35922
35950
|
openInNewWindow?: boolean | null | undefined;
|
|
35951
|
+
commentHighlightId?: string | null | undefined;
|
|
35952
|
+
commentIsResolved?: boolean | null | undefined;
|
|
35923
35953
|
}[];
|
|
35924
35954
|
}[];
|
|
35925
35955
|
}>;
|
|
@@ -36832,44 +36862,52 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
36832
36862
|
spans: {
|
|
36833
36863
|
text: string;
|
|
36834
36864
|
attributes: {
|
|
36835
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
36865
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
36836
36866
|
link?: string | undefined;
|
|
36837
36867
|
documentationItemId?: string | undefined;
|
|
36838
36868
|
openInNewTab?: boolean | undefined;
|
|
36839
36869
|
openInNewWindow?: boolean | undefined;
|
|
36870
|
+
commentHighlightId?: string | undefined;
|
|
36871
|
+
commentIsResolved?: boolean | undefined;
|
|
36840
36872
|
}[];
|
|
36841
36873
|
}[];
|
|
36842
36874
|
}, z.ZodTypeDef, {
|
|
36843
36875
|
spans: {
|
|
36844
36876
|
text: string;
|
|
36845
36877
|
attributes: {
|
|
36846
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
36878
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
36847
36879
|
link?: string | null | undefined;
|
|
36848
36880
|
documentationItemId?: string | null | undefined;
|
|
36849
36881
|
openInNewTab?: boolean | null | undefined;
|
|
36850
36882
|
openInNewWindow?: boolean | null | undefined;
|
|
36883
|
+
commentHighlightId?: string | null | undefined;
|
|
36884
|
+
commentIsResolved?: boolean | null | undefined;
|
|
36851
36885
|
}[];
|
|
36852
36886
|
}[];
|
|
36853
36887
|
}>>>, {
|
|
36854
36888
|
spans: {
|
|
36855
36889
|
text: string;
|
|
36856
36890
|
attributes: {
|
|
36857
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
36891
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
36858
36892
|
link?: string | undefined;
|
|
36859
36893
|
documentationItemId?: string | undefined;
|
|
36860
36894
|
openInNewTab?: boolean | undefined;
|
|
36861
36895
|
openInNewWindow?: boolean | undefined;
|
|
36896
|
+
commentHighlightId?: string | undefined;
|
|
36897
|
+
commentIsResolved?: boolean | undefined;
|
|
36862
36898
|
}[];
|
|
36863
36899
|
}[];
|
|
36864
36900
|
} | undefined, {
|
|
36865
36901
|
spans: {
|
|
36866
36902
|
text: string;
|
|
36867
36903
|
attributes: {
|
|
36868
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
36904
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
36869
36905
|
link?: string | null | undefined;
|
|
36870
36906
|
documentationItemId?: string | null | undefined;
|
|
36871
36907
|
openInNewTab?: boolean | null | undefined;
|
|
36872
36908
|
openInNewWindow?: boolean | null | undefined;
|
|
36909
|
+
commentHighlightId?: string | null | undefined;
|
|
36910
|
+
commentIsResolved?: boolean | null | undefined;
|
|
36873
36911
|
}[];
|
|
36874
36912
|
}[];
|
|
36875
36913
|
} | null | undefined>;
|
|
@@ -37614,11 +37652,13 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
37614
37652
|
spans: {
|
|
37615
37653
|
text: string;
|
|
37616
37654
|
attributes: {
|
|
37617
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
37655
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
37618
37656
|
link?: string | undefined;
|
|
37619
37657
|
documentationItemId?: string | undefined;
|
|
37620
37658
|
openInNewTab?: boolean | undefined;
|
|
37621
37659
|
openInNewWindow?: boolean | undefined;
|
|
37660
|
+
commentHighlightId?: string | undefined;
|
|
37661
|
+
commentIsResolved?: boolean | undefined;
|
|
37622
37662
|
}[];
|
|
37623
37663
|
}[];
|
|
37624
37664
|
} | undefined;
|
|
@@ -37827,11 +37867,13 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
37827
37867
|
spans: {
|
|
37828
37868
|
text: string;
|
|
37829
37869
|
attributes: {
|
|
37830
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
37870
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
37831
37871
|
link?: string | null | undefined;
|
|
37832
37872
|
documentationItemId?: string | null | undefined;
|
|
37833
37873
|
openInNewTab?: boolean | null | undefined;
|
|
37834
37874
|
openInNewWindow?: boolean | null | undefined;
|
|
37875
|
+
commentHighlightId?: string | null | undefined;
|
|
37876
|
+
commentIsResolved?: boolean | null | undefined;
|
|
37835
37877
|
}[];
|
|
37836
37878
|
}[];
|
|
37837
37879
|
} | null | undefined;
|
|
@@ -38001,6 +38043,8 @@ type PageBlockV1 = z.infer<typeof PageBlockBaseV1> & {
|
|
|
38001
38043
|
children: PageBlockV1[];
|
|
38002
38044
|
};
|
|
38003
38045
|
declare function traversePageBlocksV1(blocks: PageBlockV1[], action: (block: PageBlockV1) => void): void;
|
|
38046
|
+
declare function removeCommentSpans(text: PageBlockText): PageBlockText;
|
|
38047
|
+
declare function joinRepeatingSpans(text: PageBlockText): PageBlockText;
|
|
38004
38048
|
|
|
38005
38049
|
declare const PageBlockLinkType: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
|
|
38006
38050
|
type PageBlockLinkType = z.infer<typeof PageBlockLinkType>;
|
|
@@ -38975,63 +39019,77 @@ declare const PageBlockItemMultiRichTextValue: z.ZodObject<{
|
|
|
38975
39019
|
spans: z.ZodArray<z.ZodObject<{
|
|
38976
39020
|
text: z.ZodString;
|
|
38977
39021
|
attributes: z.ZodArray<z.ZodObject<{
|
|
38978
|
-
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
39022
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code", "Comment"]>;
|
|
38979
39023
|
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
38980
39024
|
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
38981
39025
|
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
38982
39026
|
openInNewTab: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
39027
|
+
commentHighlightId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39028
|
+
commentIsResolved: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
38983
39029
|
}, "strip", z.ZodTypeAny, {
|
|
38984
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39030
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
38985
39031
|
link?: string | undefined;
|
|
38986
39032
|
documentationItemId?: string | undefined;
|
|
38987
39033
|
openInNewTab?: boolean | undefined;
|
|
38988
39034
|
openInNewWindow?: boolean | undefined;
|
|
39035
|
+
commentHighlightId?: string | undefined;
|
|
39036
|
+
commentIsResolved?: boolean | undefined;
|
|
38989
39037
|
}, {
|
|
38990
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39038
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
38991
39039
|
link?: string | null | undefined;
|
|
38992
39040
|
documentationItemId?: string | null | undefined;
|
|
38993
39041
|
openInNewTab?: boolean | null | undefined;
|
|
38994
39042
|
openInNewWindow?: boolean | null | undefined;
|
|
39043
|
+
commentHighlightId?: string | null | undefined;
|
|
39044
|
+
commentIsResolved?: boolean | null | undefined;
|
|
38995
39045
|
}>, "many">;
|
|
38996
39046
|
}, "strip", z.ZodTypeAny, {
|
|
38997
39047
|
text: string;
|
|
38998
39048
|
attributes: {
|
|
38999
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39049
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39000
39050
|
link?: string | undefined;
|
|
39001
39051
|
documentationItemId?: string | undefined;
|
|
39002
39052
|
openInNewTab?: boolean | undefined;
|
|
39003
39053
|
openInNewWindow?: boolean | undefined;
|
|
39054
|
+
commentHighlightId?: string | undefined;
|
|
39055
|
+
commentIsResolved?: boolean | undefined;
|
|
39004
39056
|
}[];
|
|
39005
39057
|
}, {
|
|
39006
39058
|
text: string;
|
|
39007
39059
|
attributes: {
|
|
39008
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39060
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39009
39061
|
link?: string | null | undefined;
|
|
39010
39062
|
documentationItemId?: string | null | undefined;
|
|
39011
39063
|
openInNewTab?: boolean | null | undefined;
|
|
39012
39064
|
openInNewWindow?: boolean | null | undefined;
|
|
39065
|
+
commentHighlightId?: string | null | undefined;
|
|
39066
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39013
39067
|
}[];
|
|
39014
39068
|
}>, "many">;
|
|
39015
39069
|
}, "strip", z.ZodTypeAny, {
|
|
39016
39070
|
spans: {
|
|
39017
39071
|
text: string;
|
|
39018
39072
|
attributes: {
|
|
39019
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39073
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39020
39074
|
link?: string | undefined;
|
|
39021
39075
|
documentationItemId?: string | undefined;
|
|
39022
39076
|
openInNewTab?: boolean | undefined;
|
|
39023
39077
|
openInNewWindow?: boolean | undefined;
|
|
39078
|
+
commentHighlightId?: string | undefined;
|
|
39079
|
+
commentIsResolved?: boolean | undefined;
|
|
39024
39080
|
}[];
|
|
39025
39081
|
}[];
|
|
39026
39082
|
}, {
|
|
39027
39083
|
spans: {
|
|
39028
39084
|
text: string;
|
|
39029
39085
|
attributes: {
|
|
39030
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39086
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39031
39087
|
link?: string | null | undefined;
|
|
39032
39088
|
documentationItemId?: string | null | undefined;
|
|
39033
39089
|
openInNewTab?: boolean | null | undefined;
|
|
39034
39090
|
openInNewWindow?: boolean | null | undefined;
|
|
39091
|
+
commentHighlightId?: string | null | undefined;
|
|
39092
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39035
39093
|
}[];
|
|
39036
39094
|
}[];
|
|
39037
39095
|
}>, "many">;
|
|
@@ -39040,11 +39098,13 @@ declare const PageBlockItemMultiRichTextValue: z.ZodObject<{
|
|
|
39040
39098
|
spans: {
|
|
39041
39099
|
text: string;
|
|
39042
39100
|
attributes: {
|
|
39043
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39101
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39044
39102
|
link?: string | undefined;
|
|
39045
39103
|
documentationItemId?: string | undefined;
|
|
39046
39104
|
openInNewTab?: boolean | undefined;
|
|
39047
39105
|
openInNewWindow?: boolean | undefined;
|
|
39106
|
+
commentHighlightId?: string | undefined;
|
|
39107
|
+
commentIsResolved?: boolean | undefined;
|
|
39048
39108
|
}[];
|
|
39049
39109
|
}[];
|
|
39050
39110
|
}[];
|
|
@@ -39053,11 +39113,13 @@ declare const PageBlockItemMultiRichTextValue: z.ZodObject<{
|
|
|
39053
39113
|
spans: {
|
|
39054
39114
|
text: string;
|
|
39055
39115
|
attributes: {
|
|
39056
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39116
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39057
39117
|
link?: string | null | undefined;
|
|
39058
39118
|
documentationItemId?: string | null | undefined;
|
|
39059
39119
|
openInNewTab?: boolean | null | undefined;
|
|
39060
39120
|
openInNewWindow?: boolean | null | undefined;
|
|
39121
|
+
commentHighlightId?: string | null | undefined;
|
|
39122
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39061
39123
|
}[];
|
|
39062
39124
|
}[];
|
|
39063
39125
|
}[];
|
|
@@ -39084,63 +39146,77 @@ declare const PageBlockItemRichTextValue: z.ZodObject<{
|
|
|
39084
39146
|
spans: z.ZodArray<z.ZodObject<{
|
|
39085
39147
|
text: z.ZodString;
|
|
39086
39148
|
attributes: z.ZodArray<z.ZodObject<{
|
|
39087
|
-
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
39149
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code", "Comment"]>;
|
|
39088
39150
|
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39089
39151
|
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39090
39152
|
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
39091
39153
|
openInNewTab: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
39154
|
+
commentHighlightId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39155
|
+
commentIsResolved: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
39092
39156
|
}, "strip", z.ZodTypeAny, {
|
|
39093
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39157
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39094
39158
|
link?: string | undefined;
|
|
39095
39159
|
documentationItemId?: string | undefined;
|
|
39096
39160
|
openInNewTab?: boolean | undefined;
|
|
39097
39161
|
openInNewWindow?: boolean | undefined;
|
|
39162
|
+
commentHighlightId?: string | undefined;
|
|
39163
|
+
commentIsResolved?: boolean | undefined;
|
|
39098
39164
|
}, {
|
|
39099
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39165
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39100
39166
|
link?: string | null | undefined;
|
|
39101
39167
|
documentationItemId?: string | null | undefined;
|
|
39102
39168
|
openInNewTab?: boolean | null | undefined;
|
|
39103
39169
|
openInNewWindow?: boolean | null | undefined;
|
|
39170
|
+
commentHighlightId?: string | null | undefined;
|
|
39171
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39104
39172
|
}>, "many">;
|
|
39105
39173
|
}, "strip", z.ZodTypeAny, {
|
|
39106
39174
|
text: string;
|
|
39107
39175
|
attributes: {
|
|
39108
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39176
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39109
39177
|
link?: string | undefined;
|
|
39110
39178
|
documentationItemId?: string | undefined;
|
|
39111
39179
|
openInNewTab?: boolean | undefined;
|
|
39112
39180
|
openInNewWindow?: boolean | undefined;
|
|
39181
|
+
commentHighlightId?: string | undefined;
|
|
39182
|
+
commentIsResolved?: boolean | undefined;
|
|
39113
39183
|
}[];
|
|
39114
39184
|
}, {
|
|
39115
39185
|
text: string;
|
|
39116
39186
|
attributes: {
|
|
39117
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39187
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39118
39188
|
link?: string | null | undefined;
|
|
39119
39189
|
documentationItemId?: string | null | undefined;
|
|
39120
39190
|
openInNewTab?: boolean | null | undefined;
|
|
39121
39191
|
openInNewWindow?: boolean | null | undefined;
|
|
39192
|
+
commentHighlightId?: string | null | undefined;
|
|
39193
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39122
39194
|
}[];
|
|
39123
39195
|
}>, "many">;
|
|
39124
39196
|
}, "strip", z.ZodTypeAny, {
|
|
39125
39197
|
spans: {
|
|
39126
39198
|
text: string;
|
|
39127
39199
|
attributes: {
|
|
39128
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39200
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39129
39201
|
link?: string | undefined;
|
|
39130
39202
|
documentationItemId?: string | undefined;
|
|
39131
39203
|
openInNewTab?: boolean | undefined;
|
|
39132
39204
|
openInNewWindow?: boolean | undefined;
|
|
39205
|
+
commentHighlightId?: string | undefined;
|
|
39206
|
+
commentIsResolved?: boolean | undefined;
|
|
39133
39207
|
}[];
|
|
39134
39208
|
}[];
|
|
39135
39209
|
}, {
|
|
39136
39210
|
spans: {
|
|
39137
39211
|
text: string;
|
|
39138
39212
|
attributes: {
|
|
39139
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39213
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39140
39214
|
link?: string | null | undefined;
|
|
39141
39215
|
documentationItemId?: string | null | undefined;
|
|
39142
39216
|
openInNewTab?: boolean | null | undefined;
|
|
39143
39217
|
openInNewWindow?: boolean | null | undefined;
|
|
39218
|
+
commentHighlightId?: string | null | undefined;
|
|
39219
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39144
39220
|
}[];
|
|
39145
39221
|
}[];
|
|
39146
39222
|
}>;
|
|
@@ -39150,11 +39226,13 @@ declare const PageBlockItemRichTextValue: z.ZodObject<{
|
|
|
39150
39226
|
spans: {
|
|
39151
39227
|
text: string;
|
|
39152
39228
|
attributes: {
|
|
39153
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39229
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39154
39230
|
link?: string | undefined;
|
|
39155
39231
|
documentationItemId?: string | undefined;
|
|
39156
39232
|
openInNewTab?: boolean | undefined;
|
|
39157
39233
|
openInNewWindow?: boolean | undefined;
|
|
39234
|
+
commentHighlightId?: string | undefined;
|
|
39235
|
+
commentIsResolved?: boolean | undefined;
|
|
39158
39236
|
}[];
|
|
39159
39237
|
}[];
|
|
39160
39238
|
};
|
|
@@ -39164,11 +39242,13 @@ declare const PageBlockItemRichTextValue: z.ZodObject<{
|
|
|
39164
39242
|
spans: {
|
|
39165
39243
|
text: string;
|
|
39166
39244
|
attributes: {
|
|
39167
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39245
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39168
39246
|
link?: string | null | undefined;
|
|
39169
39247
|
documentationItemId?: string | null | undefined;
|
|
39170
39248
|
openInNewTab?: boolean | null | undefined;
|
|
39171
39249
|
openInNewWindow?: boolean | null | undefined;
|
|
39250
|
+
commentHighlightId?: string | null | undefined;
|
|
39251
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39172
39252
|
}[];
|
|
39173
39253
|
}[];
|
|
39174
39254
|
};
|
|
@@ -39296,63 +39376,77 @@ declare const PageBlockItemTableRichTextNode: z.ZodObject<{
|
|
|
39296
39376
|
spans: z.ZodArray<z.ZodObject<{
|
|
39297
39377
|
text: z.ZodString;
|
|
39298
39378
|
attributes: z.ZodArray<z.ZodObject<{
|
|
39299
|
-
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
39379
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code", "Comment"]>;
|
|
39300
39380
|
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39301
39381
|
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39302
39382
|
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
39303
39383
|
openInNewTab: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
39384
|
+
commentHighlightId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39385
|
+
commentIsResolved: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
39304
39386
|
}, "strip", z.ZodTypeAny, {
|
|
39305
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39387
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39306
39388
|
link?: string | undefined;
|
|
39307
39389
|
documentationItemId?: string | undefined;
|
|
39308
39390
|
openInNewTab?: boolean | undefined;
|
|
39309
39391
|
openInNewWindow?: boolean | undefined;
|
|
39392
|
+
commentHighlightId?: string | undefined;
|
|
39393
|
+
commentIsResolved?: boolean | undefined;
|
|
39310
39394
|
}, {
|
|
39311
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39395
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39312
39396
|
link?: string | null | undefined;
|
|
39313
39397
|
documentationItemId?: string | null | undefined;
|
|
39314
39398
|
openInNewTab?: boolean | null | undefined;
|
|
39315
39399
|
openInNewWindow?: boolean | null | undefined;
|
|
39400
|
+
commentHighlightId?: string | null | undefined;
|
|
39401
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39316
39402
|
}>, "many">;
|
|
39317
39403
|
}, "strip", z.ZodTypeAny, {
|
|
39318
39404
|
text: string;
|
|
39319
39405
|
attributes: {
|
|
39320
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39406
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39321
39407
|
link?: string | undefined;
|
|
39322
39408
|
documentationItemId?: string | undefined;
|
|
39323
39409
|
openInNewTab?: boolean | undefined;
|
|
39324
39410
|
openInNewWindow?: boolean | undefined;
|
|
39411
|
+
commentHighlightId?: string | undefined;
|
|
39412
|
+
commentIsResolved?: boolean | undefined;
|
|
39325
39413
|
}[];
|
|
39326
39414
|
}, {
|
|
39327
39415
|
text: string;
|
|
39328
39416
|
attributes: {
|
|
39329
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39417
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39330
39418
|
link?: string | null | undefined;
|
|
39331
39419
|
documentationItemId?: string | null | undefined;
|
|
39332
39420
|
openInNewTab?: boolean | null | undefined;
|
|
39333
39421
|
openInNewWindow?: boolean | null | undefined;
|
|
39422
|
+
commentHighlightId?: string | null | undefined;
|
|
39423
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39334
39424
|
}[];
|
|
39335
39425
|
}>, "many">;
|
|
39336
39426
|
}, "strip", z.ZodTypeAny, {
|
|
39337
39427
|
spans: {
|
|
39338
39428
|
text: string;
|
|
39339
39429
|
attributes: {
|
|
39340
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39430
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39341
39431
|
link?: string | undefined;
|
|
39342
39432
|
documentationItemId?: string | undefined;
|
|
39343
39433
|
openInNewTab?: boolean | undefined;
|
|
39344
39434
|
openInNewWindow?: boolean | undefined;
|
|
39435
|
+
commentHighlightId?: string | undefined;
|
|
39436
|
+
commentIsResolved?: boolean | undefined;
|
|
39345
39437
|
}[];
|
|
39346
39438
|
}[];
|
|
39347
39439
|
}, {
|
|
39348
39440
|
spans: {
|
|
39349
39441
|
text: string;
|
|
39350
39442
|
attributes: {
|
|
39351
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39443
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39352
39444
|
link?: string | null | undefined;
|
|
39353
39445
|
documentationItemId?: string | null | undefined;
|
|
39354
39446
|
openInNewTab?: boolean | null | undefined;
|
|
39355
39447
|
openInNewWindow?: boolean | null | undefined;
|
|
39448
|
+
commentHighlightId?: string | null | undefined;
|
|
39449
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39356
39450
|
}[];
|
|
39357
39451
|
}[];
|
|
39358
39452
|
}>;
|
|
@@ -39363,11 +39457,13 @@ declare const PageBlockItemTableRichTextNode: z.ZodObject<{
|
|
|
39363
39457
|
spans: {
|
|
39364
39458
|
text: string;
|
|
39365
39459
|
attributes: {
|
|
39366
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39460
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39367
39461
|
link?: string | undefined;
|
|
39368
39462
|
documentationItemId?: string | undefined;
|
|
39369
39463
|
openInNewTab?: boolean | undefined;
|
|
39370
39464
|
openInNewWindow?: boolean | undefined;
|
|
39465
|
+
commentHighlightId?: string | undefined;
|
|
39466
|
+
commentIsResolved?: boolean | undefined;
|
|
39371
39467
|
}[];
|
|
39372
39468
|
}[];
|
|
39373
39469
|
};
|
|
@@ -39378,11 +39474,13 @@ declare const PageBlockItemTableRichTextNode: z.ZodObject<{
|
|
|
39378
39474
|
spans: {
|
|
39379
39475
|
text: string;
|
|
39380
39476
|
attributes: {
|
|
39381
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39477
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39382
39478
|
link?: string | null | undefined;
|
|
39383
39479
|
documentationItemId?: string | null | undefined;
|
|
39384
39480
|
openInNewTab?: boolean | null | undefined;
|
|
39385
39481
|
openInNewWindow?: boolean | null | undefined;
|
|
39482
|
+
commentHighlightId?: string | null | undefined;
|
|
39483
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39386
39484
|
}[];
|
|
39387
39485
|
}[];
|
|
39388
39486
|
};
|
|
@@ -39394,63 +39492,77 @@ declare const PageBlockItemTableMultiRichTextNode: z.ZodObject<{
|
|
|
39394
39492
|
spans: z.ZodArray<z.ZodObject<{
|
|
39395
39493
|
text: z.ZodString;
|
|
39396
39494
|
attributes: z.ZodArray<z.ZodObject<{
|
|
39397
|
-
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
39495
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code", "Comment"]>;
|
|
39398
39496
|
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39399
39497
|
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39400
39498
|
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
39401
39499
|
openInNewTab: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
39500
|
+
commentHighlightId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39501
|
+
commentIsResolved: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
39402
39502
|
}, "strip", z.ZodTypeAny, {
|
|
39403
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39503
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39404
39504
|
link?: string | undefined;
|
|
39405
39505
|
documentationItemId?: string | undefined;
|
|
39406
39506
|
openInNewTab?: boolean | undefined;
|
|
39407
39507
|
openInNewWindow?: boolean | undefined;
|
|
39508
|
+
commentHighlightId?: string | undefined;
|
|
39509
|
+
commentIsResolved?: boolean | undefined;
|
|
39408
39510
|
}, {
|
|
39409
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39511
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39410
39512
|
link?: string | null | undefined;
|
|
39411
39513
|
documentationItemId?: string | null | undefined;
|
|
39412
39514
|
openInNewTab?: boolean | null | undefined;
|
|
39413
39515
|
openInNewWindow?: boolean | null | undefined;
|
|
39516
|
+
commentHighlightId?: string | null | undefined;
|
|
39517
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39414
39518
|
}>, "many">;
|
|
39415
39519
|
}, "strip", z.ZodTypeAny, {
|
|
39416
39520
|
text: string;
|
|
39417
39521
|
attributes: {
|
|
39418
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39522
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39419
39523
|
link?: string | undefined;
|
|
39420
39524
|
documentationItemId?: string | undefined;
|
|
39421
39525
|
openInNewTab?: boolean | undefined;
|
|
39422
39526
|
openInNewWindow?: boolean | undefined;
|
|
39527
|
+
commentHighlightId?: string | undefined;
|
|
39528
|
+
commentIsResolved?: boolean | undefined;
|
|
39423
39529
|
}[];
|
|
39424
39530
|
}, {
|
|
39425
39531
|
text: string;
|
|
39426
39532
|
attributes: {
|
|
39427
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39533
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39428
39534
|
link?: string | null | undefined;
|
|
39429
39535
|
documentationItemId?: string | null | undefined;
|
|
39430
39536
|
openInNewTab?: boolean | null | undefined;
|
|
39431
39537
|
openInNewWindow?: boolean | null | undefined;
|
|
39538
|
+
commentHighlightId?: string | null | undefined;
|
|
39539
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39432
39540
|
}[];
|
|
39433
39541
|
}>, "many">;
|
|
39434
39542
|
}, "strip", z.ZodTypeAny, {
|
|
39435
39543
|
spans: {
|
|
39436
39544
|
text: string;
|
|
39437
39545
|
attributes: {
|
|
39438
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39546
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39439
39547
|
link?: string | undefined;
|
|
39440
39548
|
documentationItemId?: string | undefined;
|
|
39441
39549
|
openInNewTab?: boolean | undefined;
|
|
39442
39550
|
openInNewWindow?: boolean | undefined;
|
|
39551
|
+
commentHighlightId?: string | undefined;
|
|
39552
|
+
commentIsResolved?: boolean | undefined;
|
|
39443
39553
|
}[];
|
|
39444
39554
|
}[];
|
|
39445
39555
|
}, {
|
|
39446
39556
|
spans: {
|
|
39447
39557
|
text: string;
|
|
39448
39558
|
attributes: {
|
|
39449
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39559
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39450
39560
|
link?: string | null | undefined;
|
|
39451
39561
|
documentationItemId?: string | null | undefined;
|
|
39452
39562
|
openInNewTab?: boolean | null | undefined;
|
|
39453
39563
|
openInNewWindow?: boolean | null | undefined;
|
|
39564
|
+
commentHighlightId?: string | null | undefined;
|
|
39565
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39454
39566
|
}[];
|
|
39455
39567
|
}[];
|
|
39456
39568
|
}>, "many">;
|
|
@@ -39460,11 +39572,13 @@ declare const PageBlockItemTableMultiRichTextNode: z.ZodObject<{
|
|
|
39460
39572
|
spans: {
|
|
39461
39573
|
text: string;
|
|
39462
39574
|
attributes: {
|
|
39463
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39575
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39464
39576
|
link?: string | undefined;
|
|
39465
39577
|
documentationItemId?: string | undefined;
|
|
39466
39578
|
openInNewTab?: boolean | undefined;
|
|
39467
39579
|
openInNewWindow?: boolean | undefined;
|
|
39580
|
+
commentHighlightId?: string | undefined;
|
|
39581
|
+
commentIsResolved?: boolean | undefined;
|
|
39468
39582
|
}[];
|
|
39469
39583
|
}[];
|
|
39470
39584
|
}[];
|
|
@@ -39474,11 +39588,13 @@ declare const PageBlockItemTableMultiRichTextNode: z.ZodObject<{
|
|
|
39474
39588
|
spans: {
|
|
39475
39589
|
text: string;
|
|
39476
39590
|
attributes: {
|
|
39477
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39591
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39478
39592
|
link?: string | null | undefined;
|
|
39479
39593
|
documentationItemId?: string | null | undefined;
|
|
39480
39594
|
openInNewTab?: boolean | null | undefined;
|
|
39481
39595
|
openInNewWindow?: boolean | null | undefined;
|
|
39596
|
+
commentHighlightId?: string | null | undefined;
|
|
39597
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39482
39598
|
}[];
|
|
39483
39599
|
}[];
|
|
39484
39600
|
}[];
|
|
@@ -39570,63 +39686,77 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
39570
39686
|
spans: z.ZodArray<z.ZodObject<{
|
|
39571
39687
|
text: z.ZodString;
|
|
39572
39688
|
attributes: z.ZodArray<z.ZodObject<{
|
|
39573
|
-
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
39689
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code", "Comment"]>;
|
|
39574
39690
|
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39575
39691
|
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39576
39692
|
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
39577
39693
|
openInNewTab: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
39694
|
+
commentHighlightId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39695
|
+
commentIsResolved: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
39578
39696
|
}, "strip", z.ZodTypeAny, {
|
|
39579
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39697
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39580
39698
|
link?: string | undefined;
|
|
39581
39699
|
documentationItemId?: string | undefined;
|
|
39582
39700
|
openInNewTab?: boolean | undefined;
|
|
39583
39701
|
openInNewWindow?: boolean | undefined;
|
|
39702
|
+
commentHighlightId?: string | undefined;
|
|
39703
|
+
commentIsResolved?: boolean | undefined;
|
|
39584
39704
|
}, {
|
|
39585
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39705
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39586
39706
|
link?: string | null | undefined;
|
|
39587
39707
|
documentationItemId?: string | null | undefined;
|
|
39588
39708
|
openInNewTab?: boolean | null | undefined;
|
|
39589
39709
|
openInNewWindow?: boolean | null | undefined;
|
|
39710
|
+
commentHighlightId?: string | null | undefined;
|
|
39711
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39590
39712
|
}>, "many">;
|
|
39591
39713
|
}, "strip", z.ZodTypeAny, {
|
|
39592
39714
|
text: string;
|
|
39593
39715
|
attributes: {
|
|
39594
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39716
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39595
39717
|
link?: string | undefined;
|
|
39596
39718
|
documentationItemId?: string | undefined;
|
|
39597
39719
|
openInNewTab?: boolean | undefined;
|
|
39598
39720
|
openInNewWindow?: boolean | undefined;
|
|
39721
|
+
commentHighlightId?: string | undefined;
|
|
39722
|
+
commentIsResolved?: boolean | undefined;
|
|
39599
39723
|
}[];
|
|
39600
39724
|
}, {
|
|
39601
39725
|
text: string;
|
|
39602
39726
|
attributes: {
|
|
39603
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39727
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39604
39728
|
link?: string | null | undefined;
|
|
39605
39729
|
documentationItemId?: string | null | undefined;
|
|
39606
39730
|
openInNewTab?: boolean | null | undefined;
|
|
39607
39731
|
openInNewWindow?: boolean | null | undefined;
|
|
39732
|
+
commentHighlightId?: string | null | undefined;
|
|
39733
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39608
39734
|
}[];
|
|
39609
39735
|
}>, "many">;
|
|
39610
39736
|
}, "strip", z.ZodTypeAny, {
|
|
39611
39737
|
spans: {
|
|
39612
39738
|
text: string;
|
|
39613
39739
|
attributes: {
|
|
39614
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39740
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39615
39741
|
link?: string | undefined;
|
|
39616
39742
|
documentationItemId?: string | undefined;
|
|
39617
39743
|
openInNewTab?: boolean | undefined;
|
|
39618
39744
|
openInNewWindow?: boolean | undefined;
|
|
39745
|
+
commentHighlightId?: string | undefined;
|
|
39746
|
+
commentIsResolved?: boolean | undefined;
|
|
39619
39747
|
}[];
|
|
39620
39748
|
}[];
|
|
39621
39749
|
}, {
|
|
39622
39750
|
spans: {
|
|
39623
39751
|
text: string;
|
|
39624
39752
|
attributes: {
|
|
39625
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39753
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39626
39754
|
link?: string | null | undefined;
|
|
39627
39755
|
documentationItemId?: string | null | undefined;
|
|
39628
39756
|
openInNewTab?: boolean | null | undefined;
|
|
39629
39757
|
openInNewWindow?: boolean | null | undefined;
|
|
39758
|
+
commentHighlightId?: string | null | undefined;
|
|
39759
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39630
39760
|
}[];
|
|
39631
39761
|
}[];
|
|
39632
39762
|
}>;
|
|
@@ -39637,11 +39767,13 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
39637
39767
|
spans: {
|
|
39638
39768
|
text: string;
|
|
39639
39769
|
attributes: {
|
|
39640
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39770
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39641
39771
|
link?: string | undefined;
|
|
39642
39772
|
documentationItemId?: string | undefined;
|
|
39643
39773
|
openInNewTab?: boolean | undefined;
|
|
39644
39774
|
openInNewWindow?: boolean | undefined;
|
|
39775
|
+
commentHighlightId?: string | undefined;
|
|
39776
|
+
commentIsResolved?: boolean | undefined;
|
|
39645
39777
|
}[];
|
|
39646
39778
|
}[];
|
|
39647
39779
|
};
|
|
@@ -39652,11 +39784,13 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
39652
39784
|
spans: {
|
|
39653
39785
|
text: string;
|
|
39654
39786
|
attributes: {
|
|
39655
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39787
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39656
39788
|
link?: string | null | undefined;
|
|
39657
39789
|
documentationItemId?: string | null | undefined;
|
|
39658
39790
|
openInNewTab?: boolean | null | undefined;
|
|
39659
39791
|
openInNewWindow?: boolean | null | undefined;
|
|
39792
|
+
commentHighlightId?: string | null | undefined;
|
|
39793
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39660
39794
|
}[];
|
|
39661
39795
|
}[];
|
|
39662
39796
|
};
|
|
@@ -39748,63 +39882,77 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
39748
39882
|
spans: z.ZodArray<z.ZodObject<{
|
|
39749
39883
|
text: z.ZodString;
|
|
39750
39884
|
attributes: z.ZodArray<z.ZodObject<{
|
|
39751
|
-
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
39885
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code", "Comment"]>;
|
|
39752
39886
|
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39753
39887
|
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39754
39888
|
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
39755
39889
|
openInNewTab: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
39890
|
+
commentHighlightId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
39891
|
+
commentIsResolved: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
39756
39892
|
}, "strip", z.ZodTypeAny, {
|
|
39757
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39893
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39758
39894
|
link?: string | undefined;
|
|
39759
39895
|
documentationItemId?: string | undefined;
|
|
39760
39896
|
openInNewTab?: boolean | undefined;
|
|
39761
39897
|
openInNewWindow?: boolean | undefined;
|
|
39898
|
+
commentHighlightId?: string | undefined;
|
|
39899
|
+
commentIsResolved?: boolean | undefined;
|
|
39762
39900
|
}, {
|
|
39763
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39901
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39764
39902
|
link?: string | null | undefined;
|
|
39765
39903
|
documentationItemId?: string | null | undefined;
|
|
39766
39904
|
openInNewTab?: boolean | null | undefined;
|
|
39767
39905
|
openInNewWindow?: boolean | null | undefined;
|
|
39906
|
+
commentHighlightId?: string | null | undefined;
|
|
39907
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39768
39908
|
}>, "many">;
|
|
39769
39909
|
}, "strip", z.ZodTypeAny, {
|
|
39770
39910
|
text: string;
|
|
39771
39911
|
attributes: {
|
|
39772
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39912
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39773
39913
|
link?: string | undefined;
|
|
39774
39914
|
documentationItemId?: string | undefined;
|
|
39775
39915
|
openInNewTab?: boolean | undefined;
|
|
39776
39916
|
openInNewWindow?: boolean | undefined;
|
|
39917
|
+
commentHighlightId?: string | undefined;
|
|
39918
|
+
commentIsResolved?: boolean | undefined;
|
|
39777
39919
|
}[];
|
|
39778
39920
|
}, {
|
|
39779
39921
|
text: string;
|
|
39780
39922
|
attributes: {
|
|
39781
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39923
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39782
39924
|
link?: string | null | undefined;
|
|
39783
39925
|
documentationItemId?: string | null | undefined;
|
|
39784
39926
|
openInNewTab?: boolean | null | undefined;
|
|
39785
39927
|
openInNewWindow?: boolean | null | undefined;
|
|
39928
|
+
commentHighlightId?: string | null | undefined;
|
|
39929
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39786
39930
|
}[];
|
|
39787
39931
|
}>, "many">;
|
|
39788
39932
|
}, "strip", z.ZodTypeAny, {
|
|
39789
39933
|
spans: {
|
|
39790
39934
|
text: string;
|
|
39791
39935
|
attributes: {
|
|
39792
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39936
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39793
39937
|
link?: string | undefined;
|
|
39794
39938
|
documentationItemId?: string | undefined;
|
|
39795
39939
|
openInNewTab?: boolean | undefined;
|
|
39796
39940
|
openInNewWindow?: boolean | undefined;
|
|
39941
|
+
commentHighlightId?: string | undefined;
|
|
39942
|
+
commentIsResolved?: boolean | undefined;
|
|
39797
39943
|
}[];
|
|
39798
39944
|
}[];
|
|
39799
39945
|
}, {
|
|
39800
39946
|
spans: {
|
|
39801
39947
|
text: string;
|
|
39802
39948
|
attributes: {
|
|
39803
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39949
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39804
39950
|
link?: string | null | undefined;
|
|
39805
39951
|
documentationItemId?: string | null | undefined;
|
|
39806
39952
|
openInNewTab?: boolean | null | undefined;
|
|
39807
39953
|
openInNewWindow?: boolean | null | undefined;
|
|
39954
|
+
commentHighlightId?: string | null | undefined;
|
|
39955
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39808
39956
|
}[];
|
|
39809
39957
|
}[];
|
|
39810
39958
|
}>;
|
|
@@ -39815,11 +39963,13 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
39815
39963
|
spans: {
|
|
39816
39964
|
text: string;
|
|
39817
39965
|
attributes: {
|
|
39818
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39966
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39819
39967
|
link?: string | undefined;
|
|
39820
39968
|
documentationItemId?: string | undefined;
|
|
39821
39969
|
openInNewTab?: boolean | undefined;
|
|
39822
39970
|
openInNewWindow?: boolean | undefined;
|
|
39971
|
+
commentHighlightId?: string | undefined;
|
|
39972
|
+
commentIsResolved?: boolean | undefined;
|
|
39823
39973
|
}[];
|
|
39824
39974
|
}[];
|
|
39825
39975
|
};
|
|
@@ -39830,11 +39980,13 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
39830
39980
|
spans: {
|
|
39831
39981
|
text: string;
|
|
39832
39982
|
attributes: {
|
|
39833
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
39983
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39834
39984
|
link?: string | null | undefined;
|
|
39835
39985
|
documentationItemId?: string | null | undefined;
|
|
39836
39986
|
openInNewTab?: boolean | null | undefined;
|
|
39837
39987
|
openInNewWindow?: boolean | null | undefined;
|
|
39988
|
+
commentHighlightId?: string | null | undefined;
|
|
39989
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39838
39990
|
}[];
|
|
39839
39991
|
}[];
|
|
39840
39992
|
};
|
|
@@ -39928,11 +40080,13 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
39928
40080
|
spans: {
|
|
39929
40081
|
text: string;
|
|
39930
40082
|
attributes: {
|
|
39931
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40083
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39932
40084
|
link?: string | undefined;
|
|
39933
40085
|
documentationItemId?: string | undefined;
|
|
39934
40086
|
openInNewTab?: boolean | undefined;
|
|
39935
40087
|
openInNewWindow?: boolean | undefined;
|
|
40088
|
+
commentHighlightId?: string | undefined;
|
|
40089
|
+
commentIsResolved?: boolean | undefined;
|
|
39936
40090
|
}[];
|
|
39937
40091
|
}[];
|
|
39938
40092
|
};
|
|
@@ -39963,11 +40117,13 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
39963
40117
|
spans: {
|
|
39964
40118
|
text: string;
|
|
39965
40119
|
attributes: {
|
|
39966
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40120
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
39967
40121
|
link?: string | null | undefined;
|
|
39968
40122
|
documentationItemId?: string | null | undefined;
|
|
39969
40123
|
openInNewTab?: boolean | null | undefined;
|
|
39970
40124
|
openInNewWindow?: boolean | null | undefined;
|
|
40125
|
+
commentHighlightId?: string | null | undefined;
|
|
40126
|
+
commentIsResolved?: boolean | null | undefined;
|
|
39971
40127
|
}[];
|
|
39972
40128
|
}[];
|
|
39973
40129
|
};
|
|
@@ -40000,63 +40156,77 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
40000
40156
|
spans: z.ZodArray<z.ZodObject<{
|
|
40001
40157
|
text: z.ZodString;
|
|
40002
40158
|
attributes: z.ZodArray<z.ZodObject<{
|
|
40003
|
-
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
40159
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code", "Comment"]>;
|
|
40004
40160
|
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
40005
40161
|
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
40006
40162
|
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
40007
40163
|
openInNewTab: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
40164
|
+
commentHighlightId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
40165
|
+
commentIsResolved: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
40008
40166
|
}, "strip", z.ZodTypeAny, {
|
|
40009
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40167
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40010
40168
|
link?: string | undefined;
|
|
40011
40169
|
documentationItemId?: string | undefined;
|
|
40012
40170
|
openInNewTab?: boolean | undefined;
|
|
40013
40171
|
openInNewWindow?: boolean | undefined;
|
|
40172
|
+
commentHighlightId?: string | undefined;
|
|
40173
|
+
commentIsResolved?: boolean | undefined;
|
|
40014
40174
|
}, {
|
|
40015
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40175
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40016
40176
|
link?: string | null | undefined;
|
|
40017
40177
|
documentationItemId?: string | null | undefined;
|
|
40018
40178
|
openInNewTab?: boolean | null | undefined;
|
|
40019
40179
|
openInNewWindow?: boolean | null | undefined;
|
|
40180
|
+
commentHighlightId?: string | null | undefined;
|
|
40181
|
+
commentIsResolved?: boolean | null | undefined;
|
|
40020
40182
|
}>, "many">;
|
|
40021
40183
|
}, "strip", z.ZodTypeAny, {
|
|
40022
40184
|
text: string;
|
|
40023
40185
|
attributes: {
|
|
40024
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40186
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40025
40187
|
link?: string | undefined;
|
|
40026
40188
|
documentationItemId?: string | undefined;
|
|
40027
40189
|
openInNewTab?: boolean | undefined;
|
|
40028
40190
|
openInNewWindow?: boolean | undefined;
|
|
40191
|
+
commentHighlightId?: string | undefined;
|
|
40192
|
+
commentIsResolved?: boolean | undefined;
|
|
40029
40193
|
}[];
|
|
40030
40194
|
}, {
|
|
40031
40195
|
text: string;
|
|
40032
40196
|
attributes: {
|
|
40033
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40197
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40034
40198
|
link?: string | null | undefined;
|
|
40035
40199
|
documentationItemId?: string | null | undefined;
|
|
40036
40200
|
openInNewTab?: boolean | null | undefined;
|
|
40037
40201
|
openInNewWindow?: boolean | null | undefined;
|
|
40202
|
+
commentHighlightId?: string | null | undefined;
|
|
40203
|
+
commentIsResolved?: boolean | null | undefined;
|
|
40038
40204
|
}[];
|
|
40039
40205
|
}>, "many">;
|
|
40040
40206
|
}, "strip", z.ZodTypeAny, {
|
|
40041
40207
|
spans: {
|
|
40042
40208
|
text: string;
|
|
40043
40209
|
attributes: {
|
|
40044
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40210
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40045
40211
|
link?: string | undefined;
|
|
40046
40212
|
documentationItemId?: string | undefined;
|
|
40047
40213
|
openInNewTab?: boolean | undefined;
|
|
40048
40214
|
openInNewWindow?: boolean | undefined;
|
|
40215
|
+
commentHighlightId?: string | undefined;
|
|
40216
|
+
commentIsResolved?: boolean | undefined;
|
|
40049
40217
|
}[];
|
|
40050
40218
|
}[];
|
|
40051
40219
|
}, {
|
|
40052
40220
|
spans: {
|
|
40053
40221
|
text: string;
|
|
40054
40222
|
attributes: {
|
|
40055
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40223
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40056
40224
|
link?: string | null | undefined;
|
|
40057
40225
|
documentationItemId?: string | null | undefined;
|
|
40058
40226
|
openInNewTab?: boolean | null | undefined;
|
|
40059
40227
|
openInNewWindow?: boolean | null | undefined;
|
|
40228
|
+
commentHighlightId?: string | null | undefined;
|
|
40229
|
+
commentIsResolved?: boolean | null | undefined;
|
|
40060
40230
|
}[];
|
|
40061
40231
|
}[];
|
|
40062
40232
|
}>;
|
|
@@ -40067,11 +40237,13 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
40067
40237
|
spans: {
|
|
40068
40238
|
text: string;
|
|
40069
40239
|
attributes: {
|
|
40070
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40240
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40071
40241
|
link?: string | undefined;
|
|
40072
40242
|
documentationItemId?: string | undefined;
|
|
40073
40243
|
openInNewTab?: boolean | undefined;
|
|
40074
40244
|
openInNewWindow?: boolean | undefined;
|
|
40245
|
+
commentHighlightId?: string | undefined;
|
|
40246
|
+
commentIsResolved?: boolean | undefined;
|
|
40075
40247
|
}[];
|
|
40076
40248
|
}[];
|
|
40077
40249
|
};
|
|
@@ -40082,11 +40254,13 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
40082
40254
|
spans: {
|
|
40083
40255
|
text: string;
|
|
40084
40256
|
attributes: {
|
|
40085
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40257
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40086
40258
|
link?: string | null | undefined;
|
|
40087
40259
|
documentationItemId?: string | null | undefined;
|
|
40088
40260
|
openInNewTab?: boolean | null | undefined;
|
|
40089
40261
|
openInNewWindow?: boolean | null | undefined;
|
|
40262
|
+
commentHighlightId?: string | null | undefined;
|
|
40263
|
+
commentIsResolved?: boolean | null | undefined;
|
|
40090
40264
|
}[];
|
|
40091
40265
|
}[];
|
|
40092
40266
|
};
|
|
@@ -40180,11 +40354,13 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
40180
40354
|
spans: {
|
|
40181
40355
|
text: string;
|
|
40182
40356
|
attributes: {
|
|
40183
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40357
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40184
40358
|
link?: string | undefined;
|
|
40185
40359
|
documentationItemId?: string | undefined;
|
|
40186
40360
|
openInNewTab?: boolean | undefined;
|
|
40187
40361
|
openInNewWindow?: boolean | undefined;
|
|
40362
|
+
commentHighlightId?: string | undefined;
|
|
40363
|
+
commentIsResolved?: boolean | undefined;
|
|
40188
40364
|
}[];
|
|
40189
40365
|
}[];
|
|
40190
40366
|
};
|
|
@@ -40215,11 +40391,13 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
40215
40391
|
spans: {
|
|
40216
40392
|
text: string;
|
|
40217
40393
|
attributes: {
|
|
40218
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40394
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40219
40395
|
link?: string | null | undefined;
|
|
40220
40396
|
documentationItemId?: string | null | undefined;
|
|
40221
40397
|
openInNewTab?: boolean | null | undefined;
|
|
40222
40398
|
openInNewWindow?: boolean | null | undefined;
|
|
40399
|
+
commentHighlightId?: string | null | undefined;
|
|
40400
|
+
commentIsResolved?: boolean | null | undefined;
|
|
40223
40401
|
}[];
|
|
40224
40402
|
}[];
|
|
40225
40403
|
};
|
|
@@ -40252,11 +40430,13 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
40252
40430
|
spans: {
|
|
40253
40431
|
text: string;
|
|
40254
40432
|
attributes: {
|
|
40255
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40433
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40256
40434
|
link?: string | undefined;
|
|
40257
40435
|
documentationItemId?: string | undefined;
|
|
40258
40436
|
openInNewTab?: boolean | undefined;
|
|
40259
40437
|
openInNewWindow?: boolean | undefined;
|
|
40438
|
+
commentHighlightId?: string | undefined;
|
|
40439
|
+
commentIsResolved?: boolean | undefined;
|
|
40260
40440
|
}[];
|
|
40261
40441
|
}[];
|
|
40262
40442
|
};
|
|
@@ -40289,11 +40469,13 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
40289
40469
|
spans: {
|
|
40290
40470
|
text: string;
|
|
40291
40471
|
attributes: {
|
|
40292
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40472
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40293
40473
|
link?: string | null | undefined;
|
|
40294
40474
|
documentationItemId?: string | null | undefined;
|
|
40295
40475
|
openInNewTab?: boolean | null | undefined;
|
|
40296
40476
|
openInNewWindow?: boolean | null | undefined;
|
|
40477
|
+
commentHighlightId?: string | null | undefined;
|
|
40478
|
+
commentIsResolved?: boolean | null | undefined;
|
|
40297
40479
|
}[];
|
|
40298
40480
|
}[];
|
|
40299
40481
|
};
|
|
@@ -40331,63 +40513,77 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
40331
40513
|
spans: z.ZodArray<z.ZodObject<{
|
|
40332
40514
|
text: z.ZodString;
|
|
40333
40515
|
attributes: z.ZodArray<z.ZodObject<{
|
|
40334
|
-
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
40516
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code", "Comment"]>;
|
|
40335
40517
|
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
40336
40518
|
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
40337
40519
|
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
40338
40520
|
openInNewTab: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
40521
|
+
commentHighlightId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
40522
|
+
commentIsResolved: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
40339
40523
|
}, "strip", z.ZodTypeAny, {
|
|
40340
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40524
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40341
40525
|
link?: string | undefined;
|
|
40342
40526
|
documentationItemId?: string | undefined;
|
|
40343
40527
|
openInNewTab?: boolean | undefined;
|
|
40344
40528
|
openInNewWindow?: boolean | undefined;
|
|
40529
|
+
commentHighlightId?: string | undefined;
|
|
40530
|
+
commentIsResolved?: boolean | undefined;
|
|
40345
40531
|
}, {
|
|
40346
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40532
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40347
40533
|
link?: string | null | undefined;
|
|
40348
40534
|
documentationItemId?: string | null | undefined;
|
|
40349
40535
|
openInNewTab?: boolean | null | undefined;
|
|
40350
40536
|
openInNewWindow?: boolean | null | undefined;
|
|
40537
|
+
commentHighlightId?: string | null | undefined;
|
|
40538
|
+
commentIsResolved?: boolean | null | undefined;
|
|
40351
40539
|
}>, "many">;
|
|
40352
40540
|
}, "strip", z.ZodTypeAny, {
|
|
40353
40541
|
text: string;
|
|
40354
40542
|
attributes: {
|
|
40355
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40543
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40356
40544
|
link?: string | undefined;
|
|
40357
40545
|
documentationItemId?: string | undefined;
|
|
40358
40546
|
openInNewTab?: boolean | undefined;
|
|
40359
40547
|
openInNewWindow?: boolean | undefined;
|
|
40548
|
+
commentHighlightId?: string | undefined;
|
|
40549
|
+
commentIsResolved?: boolean | undefined;
|
|
40360
40550
|
}[];
|
|
40361
40551
|
}, {
|
|
40362
40552
|
text: string;
|
|
40363
40553
|
attributes: {
|
|
40364
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40554
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40365
40555
|
link?: string | null | undefined;
|
|
40366
40556
|
documentationItemId?: string | null | undefined;
|
|
40367
40557
|
openInNewTab?: boolean | null | undefined;
|
|
40368
40558
|
openInNewWindow?: boolean | null | undefined;
|
|
40559
|
+
commentHighlightId?: string | null | undefined;
|
|
40560
|
+
commentIsResolved?: boolean | null | undefined;
|
|
40369
40561
|
}[];
|
|
40370
40562
|
}>, "many">;
|
|
40371
40563
|
}, "strip", z.ZodTypeAny, {
|
|
40372
40564
|
spans: {
|
|
40373
40565
|
text: string;
|
|
40374
40566
|
attributes: {
|
|
40375
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40567
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40376
40568
|
link?: string | undefined;
|
|
40377
40569
|
documentationItemId?: string | undefined;
|
|
40378
40570
|
openInNewTab?: boolean | undefined;
|
|
40379
40571
|
openInNewWindow?: boolean | undefined;
|
|
40572
|
+
commentHighlightId?: string | undefined;
|
|
40573
|
+
commentIsResolved?: boolean | undefined;
|
|
40380
40574
|
}[];
|
|
40381
40575
|
}[];
|
|
40382
40576
|
}, {
|
|
40383
40577
|
spans: {
|
|
40384
40578
|
text: string;
|
|
40385
40579
|
attributes: {
|
|
40386
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40580
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40387
40581
|
link?: string | null | undefined;
|
|
40388
40582
|
documentationItemId?: string | null | undefined;
|
|
40389
40583
|
openInNewTab?: boolean | null | undefined;
|
|
40390
40584
|
openInNewWindow?: boolean | null | undefined;
|
|
40585
|
+
commentHighlightId?: string | null | undefined;
|
|
40586
|
+
commentIsResolved?: boolean | null | undefined;
|
|
40391
40587
|
}[];
|
|
40392
40588
|
}[];
|
|
40393
40589
|
}>;
|
|
@@ -40398,11 +40594,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
40398
40594
|
spans: {
|
|
40399
40595
|
text: string;
|
|
40400
40596
|
attributes: {
|
|
40401
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40597
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40402
40598
|
link?: string | undefined;
|
|
40403
40599
|
documentationItemId?: string | undefined;
|
|
40404
40600
|
openInNewTab?: boolean | undefined;
|
|
40405
40601
|
openInNewWindow?: boolean | undefined;
|
|
40602
|
+
commentHighlightId?: string | undefined;
|
|
40603
|
+
commentIsResolved?: boolean | undefined;
|
|
40406
40604
|
}[];
|
|
40407
40605
|
}[];
|
|
40408
40606
|
};
|
|
@@ -40413,11 +40611,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
40413
40611
|
spans: {
|
|
40414
40612
|
text: string;
|
|
40415
40613
|
attributes: {
|
|
40416
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40614
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40417
40615
|
link?: string | null | undefined;
|
|
40418
40616
|
documentationItemId?: string | null | undefined;
|
|
40419
40617
|
openInNewTab?: boolean | null | undefined;
|
|
40420
40618
|
openInNewWindow?: boolean | null | undefined;
|
|
40619
|
+
commentHighlightId?: string | null | undefined;
|
|
40620
|
+
commentIsResolved?: boolean | null | undefined;
|
|
40421
40621
|
}[];
|
|
40422
40622
|
}[];
|
|
40423
40623
|
};
|
|
@@ -40511,11 +40711,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
40511
40711
|
spans: {
|
|
40512
40712
|
text: string;
|
|
40513
40713
|
attributes: {
|
|
40514
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40714
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40515
40715
|
link?: string | undefined;
|
|
40516
40716
|
documentationItemId?: string | undefined;
|
|
40517
40717
|
openInNewTab?: boolean | undefined;
|
|
40518
40718
|
openInNewWindow?: boolean | undefined;
|
|
40719
|
+
commentHighlightId?: string | undefined;
|
|
40720
|
+
commentIsResolved?: boolean | undefined;
|
|
40519
40721
|
}[];
|
|
40520
40722
|
}[];
|
|
40521
40723
|
};
|
|
@@ -40546,11 +40748,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
40546
40748
|
spans: {
|
|
40547
40749
|
text: string;
|
|
40548
40750
|
attributes: {
|
|
40549
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40751
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40550
40752
|
link?: string | null | undefined;
|
|
40551
40753
|
documentationItemId?: string | null | undefined;
|
|
40552
40754
|
openInNewTab?: boolean | null | undefined;
|
|
40553
40755
|
openInNewWindow?: boolean | null | undefined;
|
|
40756
|
+
commentHighlightId?: string | null | undefined;
|
|
40757
|
+
commentIsResolved?: boolean | null | undefined;
|
|
40554
40758
|
}[];
|
|
40555
40759
|
}[];
|
|
40556
40760
|
};
|
|
@@ -40583,11 +40787,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
40583
40787
|
spans: {
|
|
40584
40788
|
text: string;
|
|
40585
40789
|
attributes: {
|
|
40586
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40790
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40587
40791
|
link?: string | undefined;
|
|
40588
40792
|
documentationItemId?: string | undefined;
|
|
40589
40793
|
openInNewTab?: boolean | undefined;
|
|
40590
40794
|
openInNewWindow?: boolean | undefined;
|
|
40795
|
+
commentHighlightId?: string | undefined;
|
|
40796
|
+
commentIsResolved?: boolean | undefined;
|
|
40591
40797
|
}[];
|
|
40592
40798
|
}[];
|
|
40593
40799
|
};
|
|
@@ -40620,11 +40826,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
40620
40826
|
spans: {
|
|
40621
40827
|
text: string;
|
|
40622
40828
|
attributes: {
|
|
40623
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40829
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40624
40830
|
link?: string | null | undefined;
|
|
40625
40831
|
documentationItemId?: string | null | undefined;
|
|
40626
40832
|
openInNewTab?: boolean | null | undefined;
|
|
40627
40833
|
openInNewWindow?: boolean | null | undefined;
|
|
40834
|
+
commentHighlightId?: string | null | undefined;
|
|
40835
|
+
commentIsResolved?: boolean | null | undefined;
|
|
40628
40836
|
}[];
|
|
40629
40837
|
}[];
|
|
40630
40838
|
};
|
|
@@ -40659,11 +40867,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
40659
40867
|
spans: {
|
|
40660
40868
|
text: string;
|
|
40661
40869
|
attributes: {
|
|
40662
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40870
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40663
40871
|
link?: string | undefined;
|
|
40664
40872
|
documentationItemId?: string | undefined;
|
|
40665
40873
|
openInNewTab?: boolean | undefined;
|
|
40666
40874
|
openInNewWindow?: boolean | undefined;
|
|
40875
|
+
commentHighlightId?: string | undefined;
|
|
40876
|
+
commentIsResolved?: boolean | undefined;
|
|
40667
40877
|
}[];
|
|
40668
40878
|
}[];
|
|
40669
40879
|
};
|
|
@@ -40701,11 +40911,13 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
40701
40911
|
spans: {
|
|
40702
40912
|
text: string;
|
|
40703
40913
|
attributes: {
|
|
40704
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40914
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40705
40915
|
link?: string | null | undefined;
|
|
40706
40916
|
documentationItemId?: string | null | undefined;
|
|
40707
40917
|
openInNewTab?: boolean | null | undefined;
|
|
40708
40918
|
openInNewWindow?: boolean | null | undefined;
|
|
40919
|
+
commentHighlightId?: string | null | undefined;
|
|
40920
|
+
commentIsResolved?: boolean | null | undefined;
|
|
40709
40921
|
}[];
|
|
40710
40922
|
}[];
|
|
40711
40923
|
};
|
|
@@ -40783,11 +40995,13 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
40783
40995
|
spans: {
|
|
40784
40996
|
text: string;
|
|
40785
40997
|
attributes: {
|
|
40786
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
40998
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
40787
40999
|
link?: string | null | undefined;
|
|
40788
41000
|
documentationItemId?: string | null | undefined;
|
|
40789
41001
|
openInNewTab?: boolean | null | undefined;
|
|
40790
41002
|
openInNewWindow?: boolean | null | undefined;
|
|
41003
|
+
commentHighlightId?: string | null | undefined;
|
|
41004
|
+
commentIsResolved?: boolean | null | undefined;
|
|
40791
41005
|
}[];
|
|
40792
41006
|
}[];
|
|
40793
41007
|
} | null | undefined;
|
|
@@ -40997,11 +41211,13 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
40997
41211
|
spans: {
|
|
40998
41212
|
text: string;
|
|
40999
41213
|
attributes: {
|
|
41000
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
41214
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
41001
41215
|
link?: string | null | undefined;
|
|
41002
41216
|
documentationItemId?: string | null | undefined;
|
|
41003
41217
|
openInNewTab?: boolean | null | undefined;
|
|
41004
41218
|
openInNewWindow?: boolean | null | undefined;
|
|
41219
|
+
commentHighlightId?: string | null | undefined;
|
|
41220
|
+
commentIsResolved?: boolean | null | undefined;
|
|
41005
41221
|
}[];
|
|
41006
41222
|
}[];
|
|
41007
41223
|
} | null | undefined;
|
|
@@ -41557,11 +41773,13 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
41557
41773
|
spans: {
|
|
41558
41774
|
text: string;
|
|
41559
41775
|
attributes: {
|
|
41560
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
41776
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
41561
41777
|
link?: string | null | undefined;
|
|
41562
41778
|
documentationItemId?: string | null | undefined;
|
|
41563
41779
|
openInNewTab?: boolean | null | undefined;
|
|
41564
41780
|
openInNewWindow?: boolean | null | undefined;
|
|
41781
|
+
commentHighlightId?: string | null | undefined;
|
|
41782
|
+
commentIsResolved?: boolean | null | undefined;
|
|
41565
41783
|
}[];
|
|
41566
41784
|
}[];
|
|
41567
41785
|
} | null | undefined;
|
|
@@ -41771,11 +41989,13 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
41771
41989
|
spans: {
|
|
41772
41990
|
text: string;
|
|
41773
41991
|
attributes: {
|
|
41774
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
41992
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
41775
41993
|
link?: string | null | undefined;
|
|
41776
41994
|
documentationItemId?: string | null | undefined;
|
|
41777
41995
|
openInNewTab?: boolean | null | undefined;
|
|
41778
41996
|
openInNewWindow?: boolean | null | undefined;
|
|
41997
|
+
commentHighlightId?: string | null | undefined;
|
|
41998
|
+
commentIsResolved?: boolean | null | undefined;
|
|
41779
41999
|
}[];
|
|
41780
42000
|
}[];
|
|
41781
42001
|
} | null | undefined;
|
|
@@ -49065,11 +49285,13 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
49065
49285
|
spans: {
|
|
49066
49286
|
text: string;
|
|
49067
49287
|
attributes: {
|
|
49068
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
49288
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
49069
49289
|
link?: string | null | undefined;
|
|
49070
49290
|
documentationItemId?: string | null | undefined;
|
|
49071
49291
|
openInNewTab?: boolean | null | undefined;
|
|
49072
49292
|
openInNewWindow?: boolean | null | undefined;
|
|
49293
|
+
commentHighlightId?: string | null | undefined;
|
|
49294
|
+
commentIsResolved?: boolean | null | undefined;
|
|
49073
49295
|
}[];
|
|
49074
49296
|
}[];
|
|
49075
49297
|
} | null | undefined;
|
|
@@ -49279,11 +49501,13 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
49279
49501
|
spans: {
|
|
49280
49502
|
text: string;
|
|
49281
49503
|
attributes: {
|
|
49282
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
49504
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
49283
49505
|
link?: string | null | undefined;
|
|
49284
49506
|
documentationItemId?: string | null | undefined;
|
|
49285
49507
|
openInNewTab?: boolean | null | undefined;
|
|
49286
49508
|
openInNewWindow?: boolean | null | undefined;
|
|
49509
|
+
commentHighlightId?: string | null | undefined;
|
|
49510
|
+
commentIsResolved?: boolean | null | undefined;
|
|
49287
49511
|
}[];
|
|
49288
49512
|
}[];
|
|
49289
49513
|
} | null | undefined;
|
|
@@ -49839,11 +50063,13 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
49839
50063
|
spans: {
|
|
49840
50064
|
text: string;
|
|
49841
50065
|
attributes: {
|
|
49842
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
50066
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
49843
50067
|
link?: string | null | undefined;
|
|
49844
50068
|
documentationItemId?: string | null | undefined;
|
|
49845
50069
|
openInNewTab?: boolean | null | undefined;
|
|
49846
50070
|
openInNewWindow?: boolean | null | undefined;
|
|
50071
|
+
commentHighlightId?: string | null | undefined;
|
|
50072
|
+
commentIsResolved?: boolean | null | undefined;
|
|
49847
50073
|
}[];
|
|
49848
50074
|
}[];
|
|
49849
50075
|
} | null | undefined;
|
|
@@ -50053,11 +50279,13 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
50053
50279
|
spans: {
|
|
50054
50280
|
text: string;
|
|
50055
50281
|
attributes: {
|
|
50056
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
50282
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
50057
50283
|
link?: string | null | undefined;
|
|
50058
50284
|
documentationItemId?: string | null | undefined;
|
|
50059
50285
|
openInNewTab?: boolean | null | undefined;
|
|
50060
50286
|
openInNewWindow?: boolean | null | undefined;
|
|
50287
|
+
commentHighlightId?: string | null | undefined;
|
|
50288
|
+
commentIsResolved?: boolean | null | undefined;
|
|
50061
50289
|
}[];
|
|
50062
50290
|
}[];
|
|
50063
50291
|
} | null | undefined;
|
|
@@ -50432,11 +50660,13 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
50432
50660
|
spans: {
|
|
50433
50661
|
text: string;
|
|
50434
50662
|
attributes: {
|
|
50435
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
50663
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
50436
50664
|
link?: string | null | undefined;
|
|
50437
50665
|
documentationItemId?: string | null | undefined;
|
|
50438
50666
|
openInNewTab?: boolean | null | undefined;
|
|
50439
50667
|
openInNewWindow?: boolean | null | undefined;
|
|
50668
|
+
commentHighlightId?: string | null | undefined;
|
|
50669
|
+
commentIsResolved?: boolean | null | undefined;
|
|
50440
50670
|
}[];
|
|
50441
50671
|
}[];
|
|
50442
50672
|
} | null | undefined;
|
|
@@ -50646,11 +50876,13 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
50646
50876
|
spans: {
|
|
50647
50877
|
text: string;
|
|
50648
50878
|
attributes: {
|
|
50649
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
50879
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
50650
50880
|
link?: string | null | undefined;
|
|
50651
50881
|
documentationItemId?: string | null | undefined;
|
|
50652
50882
|
openInNewTab?: boolean | null | undefined;
|
|
50653
50883
|
openInNewWindow?: boolean | null | undefined;
|
|
50884
|
+
commentHighlightId?: string | null | undefined;
|
|
50885
|
+
commentIsResolved?: boolean | null | undefined;
|
|
50654
50886
|
}[];
|
|
50655
50887
|
}[];
|
|
50656
50888
|
} | null | undefined;
|
|
@@ -51920,11 +52152,13 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
51920
52152
|
spans: {
|
|
51921
52153
|
text: string;
|
|
51922
52154
|
attributes: {
|
|
51923
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
52155
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
51924
52156
|
link?: string | null | undefined;
|
|
51925
52157
|
documentationItemId?: string | null | undefined;
|
|
51926
52158
|
openInNewTab?: boolean | null | undefined;
|
|
51927
52159
|
openInNewWindow?: boolean | null | undefined;
|
|
52160
|
+
commentHighlightId?: string | null | undefined;
|
|
52161
|
+
commentIsResolved?: boolean | null | undefined;
|
|
51928
52162
|
}[];
|
|
51929
52163
|
}[];
|
|
51930
52164
|
} | null | undefined;
|
|
@@ -52134,11 +52368,13 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
52134
52368
|
spans: {
|
|
52135
52369
|
text: string;
|
|
52136
52370
|
attributes: {
|
|
52137
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
52371
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
52138
52372
|
link?: string | null | undefined;
|
|
52139
52373
|
documentationItemId?: string | null | undefined;
|
|
52140
52374
|
openInNewTab?: boolean | null | undefined;
|
|
52141
52375
|
openInNewWindow?: boolean | null | undefined;
|
|
52376
|
+
commentHighlightId?: string | null | undefined;
|
|
52377
|
+
commentIsResolved?: boolean | null | undefined;
|
|
52142
52378
|
}[];
|
|
52143
52379
|
}[];
|
|
52144
52380
|
} | null | undefined;
|
|
@@ -52416,11 +52652,13 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
52416
52652
|
spans: {
|
|
52417
52653
|
text: string;
|
|
52418
52654
|
attributes: {
|
|
52419
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
52655
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
52420
52656
|
link?: string | null | undefined;
|
|
52421
52657
|
documentationItemId?: string | null | undefined;
|
|
52422
52658
|
openInNewTab?: boolean | null | undefined;
|
|
52423
52659
|
openInNewWindow?: boolean | null | undefined;
|
|
52660
|
+
commentHighlightId?: string | null | undefined;
|
|
52661
|
+
commentIsResolved?: boolean | null | undefined;
|
|
52424
52662
|
}[];
|
|
52425
52663
|
}[];
|
|
52426
52664
|
} | null | undefined;
|
|
@@ -52630,11 +52868,13 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
52630
52868
|
spans: {
|
|
52631
52869
|
text: string;
|
|
52632
52870
|
attributes: {
|
|
52633
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
52871
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
52634
52872
|
link?: string | null | undefined;
|
|
52635
52873
|
documentationItemId?: string | null | undefined;
|
|
52636
52874
|
openInNewTab?: boolean | null | undefined;
|
|
52637
52875
|
openInNewWindow?: boolean | null | undefined;
|
|
52876
|
+
commentHighlightId?: string | null | undefined;
|
|
52877
|
+
commentIsResolved?: boolean | null | undefined;
|
|
52638
52878
|
}[];
|
|
52639
52879
|
}[];
|
|
52640
52880
|
} | null | undefined;
|
|
@@ -52935,11 +53175,13 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
52935
53175
|
spans: {
|
|
52936
53176
|
text: string;
|
|
52937
53177
|
attributes: {
|
|
52938
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
53178
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
52939
53179
|
link?: string | null | undefined;
|
|
52940
53180
|
documentationItemId?: string | null | undefined;
|
|
52941
53181
|
openInNewTab?: boolean | null | undefined;
|
|
52942
53182
|
openInNewWindow?: boolean | null | undefined;
|
|
53183
|
+
commentHighlightId?: string | null | undefined;
|
|
53184
|
+
commentIsResolved?: boolean | null | undefined;
|
|
52943
53185
|
}[];
|
|
52944
53186
|
}[];
|
|
52945
53187
|
} | null | undefined;
|
|
@@ -53149,11 +53391,13 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53149
53391
|
spans: {
|
|
53150
53392
|
text: string;
|
|
53151
53393
|
attributes: {
|
|
53152
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
53394
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
53153
53395
|
link?: string | null | undefined;
|
|
53154
53396
|
documentationItemId?: string | null | undefined;
|
|
53155
53397
|
openInNewTab?: boolean | null | undefined;
|
|
53156
53398
|
openInNewWindow?: boolean | null | undefined;
|
|
53399
|
+
commentHighlightId?: string | null | undefined;
|
|
53400
|
+
commentIsResolved?: boolean | null | undefined;
|
|
53157
53401
|
}[];
|
|
53158
53402
|
}[];
|
|
53159
53403
|
} | null | undefined;
|
|
@@ -71473,11 +71717,13 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
71473
71717
|
spans: {
|
|
71474
71718
|
text: string;
|
|
71475
71719
|
attributes: {
|
|
71476
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
71720
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
71477
71721
|
link?: string | null | undefined;
|
|
71478
71722
|
documentationItemId?: string | null | undefined;
|
|
71479
71723
|
openInNewTab?: boolean | null | undefined;
|
|
71480
71724
|
openInNewWindow?: boolean | null | undefined;
|
|
71725
|
+
commentHighlightId?: string | null | undefined;
|
|
71726
|
+
commentIsResolved?: boolean | null | undefined;
|
|
71481
71727
|
}[];
|
|
71482
71728
|
}[];
|
|
71483
71729
|
} | null | undefined;
|
|
@@ -71687,11 +71933,13 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
71687
71933
|
spans: {
|
|
71688
71934
|
text: string;
|
|
71689
71935
|
attributes: {
|
|
71690
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
71936
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
71691
71937
|
link?: string | null | undefined;
|
|
71692
71938
|
documentationItemId?: string | null | undefined;
|
|
71693
71939
|
openInNewTab?: boolean | null | undefined;
|
|
71694
71940
|
openInNewWindow?: boolean | null | undefined;
|
|
71941
|
+
commentHighlightId?: string | null | undefined;
|
|
71942
|
+
commentIsResolved?: boolean | null | undefined;
|
|
71695
71943
|
}[];
|
|
71696
71944
|
}[];
|
|
71697
71945
|
} | null | undefined;
|
|
@@ -71969,11 +72217,13 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
71969
72217
|
spans: {
|
|
71970
72218
|
text: string;
|
|
71971
72219
|
attributes: {
|
|
71972
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
72220
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
71973
72221
|
link?: string | null | undefined;
|
|
71974
72222
|
documentationItemId?: string | null | undefined;
|
|
71975
72223
|
openInNewTab?: boolean | null | undefined;
|
|
71976
72224
|
openInNewWindow?: boolean | null | undefined;
|
|
72225
|
+
commentHighlightId?: string | null | undefined;
|
|
72226
|
+
commentIsResolved?: boolean | null | undefined;
|
|
71977
72227
|
}[];
|
|
71978
72228
|
}[];
|
|
71979
72229
|
} | null | undefined;
|
|
@@ -72183,11 +72433,13 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
72183
72433
|
spans: {
|
|
72184
72434
|
text: string;
|
|
72185
72435
|
attributes: {
|
|
72186
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
72436
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
72187
72437
|
link?: string | null | undefined;
|
|
72188
72438
|
documentationItemId?: string | null | undefined;
|
|
72189
72439
|
openInNewTab?: boolean | null | undefined;
|
|
72190
72440
|
openInNewWindow?: boolean | null | undefined;
|
|
72441
|
+
commentHighlightId?: string | null | undefined;
|
|
72442
|
+
commentIsResolved?: boolean | null | undefined;
|
|
72191
72443
|
}[];
|
|
72192
72444
|
}[];
|
|
72193
72445
|
} | null | undefined;
|
|
@@ -72488,11 +72740,13 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
72488
72740
|
spans: {
|
|
72489
72741
|
text: string;
|
|
72490
72742
|
attributes: {
|
|
72491
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
72743
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
72492
72744
|
link?: string | null | undefined;
|
|
72493
72745
|
documentationItemId?: string | null | undefined;
|
|
72494
72746
|
openInNewTab?: boolean | null | undefined;
|
|
72495
72747
|
openInNewWindow?: boolean | null | undefined;
|
|
72748
|
+
commentHighlightId?: string | null | undefined;
|
|
72749
|
+
commentIsResolved?: boolean | null | undefined;
|
|
72496
72750
|
}[];
|
|
72497
72751
|
}[];
|
|
72498
72752
|
} | null | undefined;
|
|
@@ -72702,11 +72956,13 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
72702
72956
|
spans: {
|
|
72703
72957
|
text: string;
|
|
72704
72958
|
attributes: {
|
|
72705
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
72959
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
72706
72960
|
link?: string | null | undefined;
|
|
72707
72961
|
documentationItemId?: string | null | undefined;
|
|
72708
72962
|
openInNewTab?: boolean | null | undefined;
|
|
72709
72963
|
openInNewWindow?: boolean | null | undefined;
|
|
72964
|
+
commentHighlightId?: string | null | undefined;
|
|
72965
|
+
commentIsResolved?: boolean | null | undefined;
|
|
72710
72966
|
}[];
|
|
72711
72967
|
}[];
|
|
72712
72968
|
} | null | undefined;
|
|
@@ -73036,11 +73292,13 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73036
73292
|
spans: {
|
|
73037
73293
|
text: string;
|
|
73038
73294
|
attributes: {
|
|
73039
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
73295
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
73040
73296
|
link?: string | null | undefined;
|
|
73041
73297
|
documentationItemId?: string | null | undefined;
|
|
73042
73298
|
openInNewTab?: boolean | null | undefined;
|
|
73043
73299
|
openInNewWindow?: boolean | null | undefined;
|
|
73300
|
+
commentHighlightId?: string | null | undefined;
|
|
73301
|
+
commentIsResolved?: boolean | null | undefined;
|
|
73044
73302
|
}[];
|
|
73045
73303
|
}[];
|
|
73046
73304
|
} | null | undefined;
|
|
@@ -73250,11 +73508,13 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73250
73508
|
spans: {
|
|
73251
73509
|
text: string;
|
|
73252
73510
|
attributes: {
|
|
73253
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
73511
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
73254
73512
|
link?: string | null | undefined;
|
|
73255
73513
|
documentationItemId?: string | null | undefined;
|
|
73256
73514
|
openInNewTab?: boolean | null | undefined;
|
|
73257
73515
|
openInNewWindow?: boolean | null | undefined;
|
|
73516
|
+
commentHighlightId?: string | null | undefined;
|
|
73517
|
+
commentIsResolved?: boolean | null | undefined;
|
|
73258
73518
|
}[];
|
|
73259
73519
|
}[];
|
|
73260
73520
|
} | null | undefined;
|
|
@@ -133469,11 +133729,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
133469
133729
|
spans: {
|
|
133470
133730
|
text: string;
|
|
133471
133731
|
attributes: {
|
|
133472
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
133732
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
133473
133733
|
link?: string | null | undefined;
|
|
133474
133734
|
documentationItemId?: string | null | undefined;
|
|
133475
133735
|
openInNewTab?: boolean | null | undefined;
|
|
133476
133736
|
openInNewWindow?: boolean | null | undefined;
|
|
133737
|
+
commentHighlightId?: string | null | undefined;
|
|
133738
|
+
commentIsResolved?: boolean | null | undefined;
|
|
133477
133739
|
}[];
|
|
133478
133740
|
}[];
|
|
133479
133741
|
} | null | undefined;
|
|
@@ -133683,11 +133945,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
133683
133945
|
spans: {
|
|
133684
133946
|
text: string;
|
|
133685
133947
|
attributes: {
|
|
133686
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
133948
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
133687
133949
|
link?: string | null | undefined;
|
|
133688
133950
|
documentationItemId?: string | null | undefined;
|
|
133689
133951
|
openInNewTab?: boolean | null | undefined;
|
|
133690
133952
|
openInNewWindow?: boolean | null | undefined;
|
|
133953
|
+
commentHighlightId?: string | null | undefined;
|
|
133954
|
+
commentIsResolved?: boolean | null | undefined;
|
|
133691
133955
|
}[];
|
|
133692
133956
|
}[];
|
|
133693
133957
|
} | null | undefined;
|
|
@@ -133965,11 +134229,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
133965
134229
|
spans: {
|
|
133966
134230
|
text: string;
|
|
133967
134231
|
attributes: {
|
|
133968
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
134232
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
133969
134233
|
link?: string | null | undefined;
|
|
133970
134234
|
documentationItemId?: string | null | undefined;
|
|
133971
134235
|
openInNewTab?: boolean | null | undefined;
|
|
133972
134236
|
openInNewWindow?: boolean | null | undefined;
|
|
134237
|
+
commentHighlightId?: string | null | undefined;
|
|
134238
|
+
commentIsResolved?: boolean | null | undefined;
|
|
133973
134239
|
}[];
|
|
133974
134240
|
}[];
|
|
133975
134241
|
} | null | undefined;
|
|
@@ -134179,11 +134445,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
134179
134445
|
spans: {
|
|
134180
134446
|
text: string;
|
|
134181
134447
|
attributes: {
|
|
134182
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
134448
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
134183
134449
|
link?: string | null | undefined;
|
|
134184
134450
|
documentationItemId?: string | null | undefined;
|
|
134185
134451
|
openInNewTab?: boolean | null | undefined;
|
|
134186
134452
|
openInNewWindow?: boolean | null | undefined;
|
|
134453
|
+
commentHighlightId?: string | null | undefined;
|
|
134454
|
+
commentIsResolved?: boolean | null | undefined;
|
|
134187
134455
|
}[];
|
|
134188
134456
|
}[];
|
|
134189
134457
|
} | null | undefined;
|
|
@@ -134484,11 +134752,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
134484
134752
|
spans: {
|
|
134485
134753
|
text: string;
|
|
134486
134754
|
attributes: {
|
|
134487
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
134755
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
134488
134756
|
link?: string | null | undefined;
|
|
134489
134757
|
documentationItemId?: string | null | undefined;
|
|
134490
134758
|
openInNewTab?: boolean | null | undefined;
|
|
134491
134759
|
openInNewWindow?: boolean | null | undefined;
|
|
134760
|
+
commentHighlightId?: string | null | undefined;
|
|
134761
|
+
commentIsResolved?: boolean | null | undefined;
|
|
134492
134762
|
}[];
|
|
134493
134763
|
}[];
|
|
134494
134764
|
} | null | undefined;
|
|
@@ -134698,11 +134968,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
134698
134968
|
spans: {
|
|
134699
134969
|
text: string;
|
|
134700
134970
|
attributes: {
|
|
134701
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
134971
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
134702
134972
|
link?: string | null | undefined;
|
|
134703
134973
|
documentationItemId?: string | null | undefined;
|
|
134704
134974
|
openInNewTab?: boolean | null | undefined;
|
|
134705
134975
|
openInNewWindow?: boolean | null | undefined;
|
|
134976
|
+
commentHighlightId?: string | null | undefined;
|
|
134977
|
+
commentIsResolved?: boolean | null | undefined;
|
|
134706
134978
|
}[];
|
|
134707
134979
|
}[];
|
|
134708
134980
|
} | null | undefined;
|
|
@@ -135414,11 +135686,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
135414
135686
|
spans: {
|
|
135415
135687
|
text: string;
|
|
135416
135688
|
attributes: {
|
|
135417
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
135689
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
135418
135690
|
link?: string | null | undefined;
|
|
135419
135691
|
documentationItemId?: string | null | undefined;
|
|
135420
135692
|
openInNewTab?: boolean | null | undefined;
|
|
135421
135693
|
openInNewWindow?: boolean | null | undefined;
|
|
135694
|
+
commentHighlightId?: string | null | undefined;
|
|
135695
|
+
commentIsResolved?: boolean | null | undefined;
|
|
135422
135696
|
}[];
|
|
135423
135697
|
}[];
|
|
135424
135698
|
} | null | undefined;
|
|
@@ -135628,11 +135902,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
135628
135902
|
spans: {
|
|
135629
135903
|
text: string;
|
|
135630
135904
|
attributes: {
|
|
135631
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
135905
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
135632
135906
|
link?: string | null | undefined;
|
|
135633
135907
|
documentationItemId?: string | null | undefined;
|
|
135634
135908
|
openInNewTab?: boolean | null | undefined;
|
|
135635
135909
|
openInNewWindow?: boolean | null | undefined;
|
|
135910
|
+
commentHighlightId?: string | null | undefined;
|
|
135911
|
+
commentIsResolved?: boolean | null | undefined;
|
|
135636
135912
|
}[];
|
|
135637
135913
|
}[];
|
|
135638
135914
|
} | null | undefined;
|
|
@@ -135910,11 +136186,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
135910
136186
|
spans: {
|
|
135911
136187
|
text: string;
|
|
135912
136188
|
attributes: {
|
|
135913
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
136189
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
135914
136190
|
link?: string | null | undefined;
|
|
135915
136191
|
documentationItemId?: string | null | undefined;
|
|
135916
136192
|
openInNewTab?: boolean | null | undefined;
|
|
135917
136193
|
openInNewWindow?: boolean | null | undefined;
|
|
136194
|
+
commentHighlightId?: string | null | undefined;
|
|
136195
|
+
commentIsResolved?: boolean | null | undefined;
|
|
135918
136196
|
}[];
|
|
135919
136197
|
}[];
|
|
135920
136198
|
} | null | undefined;
|
|
@@ -136124,11 +136402,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136124
136402
|
spans: {
|
|
136125
136403
|
text: string;
|
|
136126
136404
|
attributes: {
|
|
136127
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
136405
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
136128
136406
|
link?: string | null | undefined;
|
|
136129
136407
|
documentationItemId?: string | null | undefined;
|
|
136130
136408
|
openInNewTab?: boolean | null | undefined;
|
|
136131
136409
|
openInNewWindow?: boolean | null | undefined;
|
|
136410
|
+
commentHighlightId?: string | null | undefined;
|
|
136411
|
+
commentIsResolved?: boolean | null | undefined;
|
|
136132
136412
|
}[];
|
|
136133
136413
|
}[];
|
|
136134
136414
|
} | null | undefined;
|
|
@@ -136429,11 +136709,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136429
136709
|
spans: {
|
|
136430
136710
|
text: string;
|
|
136431
136711
|
attributes: {
|
|
136432
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
136712
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
136433
136713
|
link?: string | null | undefined;
|
|
136434
136714
|
documentationItemId?: string | null | undefined;
|
|
136435
136715
|
openInNewTab?: boolean | null | undefined;
|
|
136436
136716
|
openInNewWindow?: boolean | null | undefined;
|
|
136717
|
+
commentHighlightId?: string | null | undefined;
|
|
136718
|
+
commentIsResolved?: boolean | null | undefined;
|
|
136437
136719
|
}[];
|
|
136438
136720
|
}[];
|
|
136439
136721
|
} | null | undefined;
|
|
@@ -136643,11 +136925,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136643
136925
|
spans: {
|
|
136644
136926
|
text: string;
|
|
136645
136927
|
attributes: {
|
|
136646
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
136928
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
136647
136929
|
link?: string | null | undefined;
|
|
136648
136930
|
documentationItemId?: string | null | undefined;
|
|
136649
136931
|
openInNewTab?: boolean | null | undefined;
|
|
136650
136932
|
openInNewWindow?: boolean | null | undefined;
|
|
136933
|
+
commentHighlightId?: string | null | undefined;
|
|
136934
|
+
commentIsResolved?: boolean | null | undefined;
|
|
136651
136935
|
}[];
|
|
136652
136936
|
}[];
|
|
136653
136937
|
} | null | undefined;
|
|
@@ -136977,11 +137261,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136977
137261
|
spans: {
|
|
136978
137262
|
text: string;
|
|
136979
137263
|
attributes: {
|
|
136980
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
137264
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
136981
137265
|
link?: string | null | undefined;
|
|
136982
137266
|
documentationItemId?: string | null | undefined;
|
|
136983
137267
|
openInNewTab?: boolean | null | undefined;
|
|
136984
137268
|
openInNewWindow?: boolean | null | undefined;
|
|
137269
|
+
commentHighlightId?: string | null | undefined;
|
|
137270
|
+
commentIsResolved?: boolean | null | undefined;
|
|
136985
137271
|
}[];
|
|
136986
137272
|
}[];
|
|
136987
137273
|
} | null | undefined;
|
|
@@ -137191,11 +137477,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
137191
137477
|
spans: {
|
|
137192
137478
|
text: string;
|
|
137193
137479
|
attributes: {
|
|
137194
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
137480
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
137195
137481
|
link?: string | null | undefined;
|
|
137196
137482
|
documentationItemId?: string | null | undefined;
|
|
137197
137483
|
openInNewTab?: boolean | null | undefined;
|
|
137198
137484
|
openInNewWindow?: boolean | null | undefined;
|
|
137485
|
+
commentHighlightId?: string | null | undefined;
|
|
137486
|
+
commentIsResolved?: boolean | null | undefined;
|
|
137199
137487
|
}[];
|
|
137200
137488
|
}[];
|
|
137201
137489
|
} | null | undefined;
|
|
@@ -138218,11 +138506,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138218
138506
|
spans: {
|
|
138219
138507
|
text: string;
|
|
138220
138508
|
attributes: {
|
|
138221
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
138509
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
138222
138510
|
link?: string | null | undefined;
|
|
138223
138511
|
documentationItemId?: string | null | undefined;
|
|
138224
138512
|
openInNewTab?: boolean | null | undefined;
|
|
138225
138513
|
openInNewWindow?: boolean | null | undefined;
|
|
138514
|
+
commentHighlightId?: string | null | undefined;
|
|
138515
|
+
commentIsResolved?: boolean | null | undefined;
|
|
138226
138516
|
}[];
|
|
138227
138517
|
}[];
|
|
138228
138518
|
} | null | undefined;
|
|
@@ -138432,11 +138722,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138432
138722
|
spans: {
|
|
138433
138723
|
text: string;
|
|
138434
138724
|
attributes: {
|
|
138435
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
138725
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
138436
138726
|
link?: string | null | undefined;
|
|
138437
138727
|
documentationItemId?: string | null | undefined;
|
|
138438
138728
|
openInNewTab?: boolean | null | undefined;
|
|
138439
138729
|
openInNewWindow?: boolean | null | undefined;
|
|
138730
|
+
commentHighlightId?: string | null | undefined;
|
|
138731
|
+
commentIsResolved?: boolean | null | undefined;
|
|
138440
138732
|
}[];
|
|
138441
138733
|
}[];
|
|
138442
138734
|
} | null | undefined;
|
|
@@ -138703,11 +138995,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138703
138995
|
spans: {
|
|
138704
138996
|
text: string;
|
|
138705
138997
|
attributes: {
|
|
138706
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
138998
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
138707
138999
|
link?: string | null | undefined;
|
|
138708
139000
|
documentationItemId?: string | null | undefined;
|
|
138709
139001
|
openInNewTab?: boolean | null | undefined;
|
|
138710
139002
|
openInNewWindow?: boolean | null | undefined;
|
|
139003
|
+
commentHighlightId?: string | null | undefined;
|
|
139004
|
+
commentIsResolved?: boolean | null | undefined;
|
|
138711
139005
|
}[];
|
|
138712
139006
|
}[];
|
|
138713
139007
|
} | null | undefined;
|
|
@@ -138917,11 +139211,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138917
139211
|
spans: {
|
|
138918
139212
|
text: string;
|
|
138919
139213
|
attributes: {
|
|
138920
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
139214
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
138921
139215
|
link?: string | null | undefined;
|
|
138922
139216
|
documentationItemId?: string | null | undefined;
|
|
138923
139217
|
openInNewTab?: boolean | null | undefined;
|
|
138924
139218
|
openInNewWindow?: boolean | null | undefined;
|
|
139219
|
+
commentHighlightId?: string | null | undefined;
|
|
139220
|
+
commentIsResolved?: boolean | null | undefined;
|
|
138925
139221
|
}[];
|
|
138926
139222
|
}[];
|
|
138927
139223
|
} | null | undefined;
|
|
@@ -139370,11 +139666,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
139370
139666
|
spans: {
|
|
139371
139667
|
text: string;
|
|
139372
139668
|
attributes: {
|
|
139373
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
139669
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
139374
139670
|
link?: string | null | undefined;
|
|
139375
139671
|
documentationItemId?: string | null | undefined;
|
|
139376
139672
|
openInNewTab?: boolean | null | undefined;
|
|
139377
139673
|
openInNewWindow?: boolean | null | undefined;
|
|
139674
|
+
commentHighlightId?: string | null | undefined;
|
|
139675
|
+
commentIsResolved?: boolean | null | undefined;
|
|
139378
139676
|
}[];
|
|
139379
139677
|
}[];
|
|
139380
139678
|
} | null | undefined;
|
|
@@ -139584,11 +139882,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
139584
139882
|
spans: {
|
|
139585
139883
|
text: string;
|
|
139586
139884
|
attributes: {
|
|
139587
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
139885
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
139588
139886
|
link?: string | null | undefined;
|
|
139589
139887
|
documentationItemId?: string | null | undefined;
|
|
139590
139888
|
openInNewTab?: boolean | null | undefined;
|
|
139591
139889
|
openInNewWindow?: boolean | null | undefined;
|
|
139890
|
+
commentHighlightId?: string | null | undefined;
|
|
139891
|
+
commentIsResolved?: boolean | null | undefined;
|
|
139592
139892
|
}[];
|
|
139593
139893
|
}[];
|
|
139594
139894
|
} | null | undefined;
|
|
@@ -139866,11 +140166,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
139866
140166
|
spans: {
|
|
139867
140167
|
text: string;
|
|
139868
140168
|
attributes: {
|
|
139869
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
140169
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
139870
140170
|
link?: string | null | undefined;
|
|
139871
140171
|
documentationItemId?: string | null | undefined;
|
|
139872
140172
|
openInNewTab?: boolean | null | undefined;
|
|
139873
140173
|
openInNewWindow?: boolean | null | undefined;
|
|
140174
|
+
commentHighlightId?: string | null | undefined;
|
|
140175
|
+
commentIsResolved?: boolean | null | undefined;
|
|
139874
140176
|
}[];
|
|
139875
140177
|
}[];
|
|
139876
140178
|
} | null | undefined;
|
|
@@ -140080,11 +140382,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
140080
140382
|
spans: {
|
|
140081
140383
|
text: string;
|
|
140082
140384
|
attributes: {
|
|
140083
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
140385
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
140084
140386
|
link?: string | null | undefined;
|
|
140085
140387
|
documentationItemId?: string | null | undefined;
|
|
140086
140388
|
openInNewTab?: boolean | null | undefined;
|
|
140087
140389
|
openInNewWindow?: boolean | null | undefined;
|
|
140390
|
+
commentHighlightId?: string | null | undefined;
|
|
140391
|
+
commentIsResolved?: boolean | null | undefined;
|
|
140088
140392
|
}[];
|
|
140089
140393
|
}[];
|
|
140090
140394
|
} | null | undefined;
|
|
@@ -140385,11 +140689,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
140385
140689
|
spans: {
|
|
140386
140690
|
text: string;
|
|
140387
140691
|
attributes: {
|
|
140388
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
140692
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
140389
140693
|
link?: string | null | undefined;
|
|
140390
140694
|
documentationItemId?: string | null | undefined;
|
|
140391
140695
|
openInNewTab?: boolean | null | undefined;
|
|
140392
140696
|
openInNewWindow?: boolean | null | undefined;
|
|
140697
|
+
commentHighlightId?: string | null | undefined;
|
|
140698
|
+
commentIsResolved?: boolean | null | undefined;
|
|
140393
140699
|
}[];
|
|
140394
140700
|
}[];
|
|
140395
140701
|
} | null | undefined;
|
|
@@ -140599,11 +140905,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
140599
140905
|
spans: {
|
|
140600
140906
|
text: string;
|
|
140601
140907
|
attributes: {
|
|
140602
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
140908
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
140603
140909
|
link?: string | null | undefined;
|
|
140604
140910
|
documentationItemId?: string | null | undefined;
|
|
140605
140911
|
openInNewTab?: boolean | null | undefined;
|
|
140606
140912
|
openInNewWindow?: boolean | null | undefined;
|
|
140913
|
+
commentHighlightId?: string | null | undefined;
|
|
140914
|
+
commentIsResolved?: boolean | null | undefined;
|
|
140607
140915
|
}[];
|
|
140608
140916
|
}[];
|
|
140609
140917
|
} | null | undefined;
|
|
@@ -141317,11 +141625,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
141317
141625
|
spans: {
|
|
141318
141626
|
text: string;
|
|
141319
141627
|
attributes: {
|
|
141320
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
141628
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
141321
141629
|
link?: string | null | undefined;
|
|
141322
141630
|
documentationItemId?: string | null | undefined;
|
|
141323
141631
|
openInNewTab?: boolean | null | undefined;
|
|
141324
141632
|
openInNewWindow?: boolean | null | undefined;
|
|
141633
|
+
commentHighlightId?: string | null | undefined;
|
|
141634
|
+
commentIsResolved?: boolean | null | undefined;
|
|
141325
141635
|
}[];
|
|
141326
141636
|
}[];
|
|
141327
141637
|
} | null | undefined;
|
|
@@ -141531,11 +141841,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
141531
141841
|
spans: {
|
|
141532
141842
|
text: string;
|
|
141533
141843
|
attributes: {
|
|
141534
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
141844
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
141535
141845
|
link?: string | null | undefined;
|
|
141536
141846
|
documentationItemId?: string | null | undefined;
|
|
141537
141847
|
openInNewTab?: boolean | null | undefined;
|
|
141538
141848
|
openInNewWindow?: boolean | null | undefined;
|
|
141849
|
+
commentHighlightId?: string | null | undefined;
|
|
141850
|
+
commentIsResolved?: boolean | null | undefined;
|
|
141539
141851
|
}[];
|
|
141540
141852
|
}[];
|
|
141541
141853
|
} | null | undefined;
|
|
@@ -141813,11 +142125,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
141813
142125
|
spans: {
|
|
141814
142126
|
text: string;
|
|
141815
142127
|
attributes: {
|
|
141816
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
142128
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
141817
142129
|
link?: string | null | undefined;
|
|
141818
142130
|
documentationItemId?: string | null | undefined;
|
|
141819
142131
|
openInNewTab?: boolean | null | undefined;
|
|
141820
142132
|
openInNewWindow?: boolean | null | undefined;
|
|
142133
|
+
commentHighlightId?: string | null | undefined;
|
|
142134
|
+
commentIsResolved?: boolean | null | undefined;
|
|
141821
142135
|
}[];
|
|
141822
142136
|
}[];
|
|
141823
142137
|
} | null | undefined;
|
|
@@ -142027,11 +142341,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142027
142341
|
spans: {
|
|
142028
142342
|
text: string;
|
|
142029
142343
|
attributes: {
|
|
142030
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
142344
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
142031
142345
|
link?: string | null | undefined;
|
|
142032
142346
|
documentationItemId?: string | null | undefined;
|
|
142033
142347
|
openInNewTab?: boolean | null | undefined;
|
|
142034
142348
|
openInNewWindow?: boolean | null | undefined;
|
|
142349
|
+
commentHighlightId?: string | null | undefined;
|
|
142350
|
+
commentIsResolved?: boolean | null | undefined;
|
|
142035
142351
|
}[];
|
|
142036
142352
|
}[];
|
|
142037
142353
|
} | null | undefined;
|
|
@@ -142332,11 +142648,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142332
142648
|
spans: {
|
|
142333
142649
|
text: string;
|
|
142334
142650
|
attributes: {
|
|
142335
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
142651
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
142336
142652
|
link?: string | null | undefined;
|
|
142337
142653
|
documentationItemId?: string | null | undefined;
|
|
142338
142654
|
openInNewTab?: boolean | null | undefined;
|
|
142339
142655
|
openInNewWindow?: boolean | null | undefined;
|
|
142656
|
+
commentHighlightId?: string | null | undefined;
|
|
142657
|
+
commentIsResolved?: boolean | null | undefined;
|
|
142340
142658
|
}[];
|
|
142341
142659
|
}[];
|
|
142342
142660
|
} | null | undefined;
|
|
@@ -142546,11 +142864,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142546
142864
|
spans: {
|
|
142547
142865
|
text: string;
|
|
142548
142866
|
attributes: {
|
|
142549
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
142867
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
142550
142868
|
link?: string | null | undefined;
|
|
142551
142869
|
documentationItemId?: string | null | undefined;
|
|
142552
142870
|
openInNewTab?: boolean | null | undefined;
|
|
142553
142871
|
openInNewWindow?: boolean | null | undefined;
|
|
142872
|
+
commentHighlightId?: string | null | undefined;
|
|
142873
|
+
commentIsResolved?: boolean | null | undefined;
|
|
142554
142874
|
}[];
|
|
142555
142875
|
}[];
|
|
142556
142876
|
} | null | undefined;
|
|
@@ -142880,11 +143200,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142880
143200
|
spans: {
|
|
142881
143201
|
text: string;
|
|
142882
143202
|
attributes: {
|
|
142883
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
143203
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
142884
143204
|
link?: string | null | undefined;
|
|
142885
143205
|
documentationItemId?: string | null | undefined;
|
|
142886
143206
|
openInNewTab?: boolean | null | undefined;
|
|
142887
143207
|
openInNewWindow?: boolean | null | undefined;
|
|
143208
|
+
commentHighlightId?: string | null | undefined;
|
|
143209
|
+
commentIsResolved?: boolean | null | undefined;
|
|
142888
143210
|
}[];
|
|
142889
143211
|
}[];
|
|
142890
143212
|
} | null | undefined;
|
|
@@ -143094,11 +143416,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
143094
143416
|
spans: {
|
|
143095
143417
|
text: string;
|
|
143096
143418
|
attributes: {
|
|
143097
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
143419
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
143098
143420
|
link?: string | null | undefined;
|
|
143099
143421
|
documentationItemId?: string | null | undefined;
|
|
143100
143422
|
openInNewTab?: boolean | null | undefined;
|
|
143101
143423
|
openInNewWindow?: boolean | null | undefined;
|
|
143424
|
+
commentHighlightId?: string | null | undefined;
|
|
143425
|
+
commentIsResolved?: boolean | null | undefined;
|
|
143102
143426
|
}[];
|
|
143103
143427
|
}[];
|
|
143104
143428
|
} | null | undefined;
|
|
@@ -144115,11 +144439,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144115
144439
|
spans: {
|
|
144116
144440
|
text: string;
|
|
144117
144441
|
attributes: {
|
|
144118
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
144442
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
144119
144443
|
link?: string | null | undefined;
|
|
144120
144444
|
documentationItemId?: string | null | undefined;
|
|
144121
144445
|
openInNewTab?: boolean | null | undefined;
|
|
144122
144446
|
openInNewWindow?: boolean | null | undefined;
|
|
144447
|
+
commentHighlightId?: string | null | undefined;
|
|
144448
|
+
commentIsResolved?: boolean | null | undefined;
|
|
144123
144449
|
}[];
|
|
144124
144450
|
}[];
|
|
144125
144451
|
} | null | undefined;
|
|
@@ -144329,11 +144655,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144329
144655
|
spans: {
|
|
144330
144656
|
text: string;
|
|
144331
144657
|
attributes: {
|
|
144332
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
144658
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
144333
144659
|
link?: string | null | undefined;
|
|
144334
144660
|
documentationItemId?: string | null | undefined;
|
|
144335
144661
|
openInNewTab?: boolean | null | undefined;
|
|
144336
144662
|
openInNewWindow?: boolean | null | undefined;
|
|
144663
|
+
commentHighlightId?: string | null | undefined;
|
|
144664
|
+
commentIsResolved?: boolean | null | undefined;
|
|
144337
144665
|
}[];
|
|
144338
144666
|
}[];
|
|
144339
144667
|
} | null | undefined;
|
|
@@ -144600,11 +144928,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144600
144928
|
spans: {
|
|
144601
144929
|
text: string;
|
|
144602
144930
|
attributes: {
|
|
144603
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
144931
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
144604
144932
|
link?: string | null | undefined;
|
|
144605
144933
|
documentationItemId?: string | null | undefined;
|
|
144606
144934
|
openInNewTab?: boolean | null | undefined;
|
|
144607
144935
|
openInNewWindow?: boolean | null | undefined;
|
|
144936
|
+
commentHighlightId?: string | null | undefined;
|
|
144937
|
+
commentIsResolved?: boolean | null | undefined;
|
|
144608
144938
|
}[];
|
|
144609
144939
|
}[];
|
|
144610
144940
|
} | null | undefined;
|
|
@@ -144814,11 +145144,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144814
145144
|
spans: {
|
|
144815
145145
|
text: string;
|
|
144816
145146
|
attributes: {
|
|
144817
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
145147
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
144818
145148
|
link?: string | null | undefined;
|
|
144819
145149
|
documentationItemId?: string | null | undefined;
|
|
144820
145150
|
openInNewTab?: boolean | null | undefined;
|
|
144821
145151
|
openInNewWindow?: boolean | null | undefined;
|
|
145152
|
+
commentHighlightId?: string | null | undefined;
|
|
145153
|
+
commentIsResolved?: boolean | null | undefined;
|
|
144822
145154
|
}[];
|
|
144823
145155
|
}[];
|
|
144824
145156
|
} | null | undefined;
|
|
@@ -146451,11 +146783,13 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
146451
146783
|
spans: {
|
|
146452
146784
|
text: string;
|
|
146453
146785
|
attributes: {
|
|
146454
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
146786
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
146455
146787
|
link?: string | null | undefined;
|
|
146456
146788
|
documentationItemId?: string | null | undefined;
|
|
146457
146789
|
openInNewTab?: boolean | null | undefined;
|
|
146458
146790
|
openInNewWindow?: boolean | null | undefined;
|
|
146791
|
+
commentHighlightId?: string | null | undefined;
|
|
146792
|
+
commentIsResolved?: boolean | null | undefined;
|
|
146459
146793
|
}[];
|
|
146460
146794
|
}[];
|
|
146461
146795
|
} | null | undefined;
|
|
@@ -146665,11 +146999,13 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
146665
146999
|
spans: {
|
|
146666
147000
|
text: string;
|
|
146667
147001
|
attributes: {
|
|
146668
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
147002
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
146669
147003
|
link?: string | null | undefined;
|
|
146670
147004
|
documentationItemId?: string | null | undefined;
|
|
146671
147005
|
openInNewTab?: boolean | null | undefined;
|
|
146672
147006
|
openInNewWindow?: boolean | null | undefined;
|
|
147007
|
+
commentHighlightId?: string | null | undefined;
|
|
147008
|
+
commentIsResolved?: boolean | null | undefined;
|
|
146673
147009
|
}[];
|
|
146674
147010
|
}[];
|
|
146675
147011
|
} | null | undefined;
|
|
@@ -146947,11 +147283,13 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
146947
147283
|
spans: {
|
|
146948
147284
|
text: string;
|
|
146949
147285
|
attributes: {
|
|
146950
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
147286
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
146951
147287
|
link?: string | null | undefined;
|
|
146952
147288
|
documentationItemId?: string | null | undefined;
|
|
146953
147289
|
openInNewTab?: boolean | null | undefined;
|
|
146954
147290
|
openInNewWindow?: boolean | null | undefined;
|
|
147291
|
+
commentHighlightId?: string | null | undefined;
|
|
147292
|
+
commentIsResolved?: boolean | null | undefined;
|
|
146955
147293
|
}[];
|
|
146956
147294
|
}[];
|
|
146957
147295
|
} | null | undefined;
|
|
@@ -147161,11 +147499,13 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
147161
147499
|
spans: {
|
|
147162
147500
|
text: string;
|
|
147163
147501
|
attributes: {
|
|
147164
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
147502
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
147165
147503
|
link?: string | null | undefined;
|
|
147166
147504
|
documentationItemId?: string | null | undefined;
|
|
147167
147505
|
openInNewTab?: boolean | null | undefined;
|
|
147168
147506
|
openInNewWindow?: boolean | null | undefined;
|
|
147507
|
+
commentHighlightId?: string | null | undefined;
|
|
147508
|
+
commentIsResolved?: boolean | null | undefined;
|
|
147169
147509
|
}[];
|
|
147170
147510
|
}[];
|
|
147171
147511
|
} | null | undefined;
|
|
@@ -147466,11 +147806,13 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
147466
147806
|
spans: {
|
|
147467
147807
|
text: string;
|
|
147468
147808
|
attributes: {
|
|
147469
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
147809
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
147470
147810
|
link?: string | null | undefined;
|
|
147471
147811
|
documentationItemId?: string | null | undefined;
|
|
147472
147812
|
openInNewTab?: boolean | null | undefined;
|
|
147473
147813
|
openInNewWindow?: boolean | null | undefined;
|
|
147814
|
+
commentHighlightId?: string | null | undefined;
|
|
147815
|
+
commentIsResolved?: boolean | null | undefined;
|
|
147474
147816
|
}[];
|
|
147475
147817
|
}[];
|
|
147476
147818
|
} | null | undefined;
|
|
@@ -147680,11 +148022,13 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
147680
148022
|
spans: {
|
|
147681
148023
|
text: string;
|
|
147682
148024
|
attributes: {
|
|
147683
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
148025
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
147684
148026
|
link?: string | null | undefined;
|
|
147685
148027
|
documentationItemId?: string | null | undefined;
|
|
147686
148028
|
openInNewTab?: boolean | null | undefined;
|
|
147687
148029
|
openInNewWindow?: boolean | null | undefined;
|
|
148030
|
+
commentHighlightId?: string | null | undefined;
|
|
148031
|
+
commentIsResolved?: boolean | null | undefined;
|
|
147688
148032
|
}[];
|
|
147689
148033
|
}[];
|
|
147690
148034
|
} | null | undefined;
|
|
@@ -148379,11 +148723,13 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
148379
148723
|
spans: {
|
|
148380
148724
|
text: string;
|
|
148381
148725
|
attributes: {
|
|
148382
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
148726
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
148383
148727
|
link?: string | null | undefined;
|
|
148384
148728
|
documentationItemId?: string | null | undefined;
|
|
148385
148729
|
openInNewTab?: boolean | null | undefined;
|
|
148386
148730
|
openInNewWindow?: boolean | null | undefined;
|
|
148731
|
+
commentHighlightId?: string | null | undefined;
|
|
148732
|
+
commentIsResolved?: boolean | null | undefined;
|
|
148387
148733
|
}[];
|
|
148388
148734
|
}[];
|
|
148389
148735
|
} | null | undefined;
|
|
@@ -148593,11 +148939,13 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
148593
148939
|
spans: {
|
|
148594
148940
|
text: string;
|
|
148595
148941
|
attributes: {
|
|
148596
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
148942
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
148597
148943
|
link?: string | null | undefined;
|
|
148598
148944
|
documentationItemId?: string | null | undefined;
|
|
148599
148945
|
openInNewTab?: boolean | null | undefined;
|
|
148600
148946
|
openInNewWindow?: boolean | null | undefined;
|
|
148947
|
+
commentHighlightId?: string | null | undefined;
|
|
148948
|
+
commentIsResolved?: boolean | null | undefined;
|
|
148601
148949
|
}[];
|
|
148602
148950
|
}[];
|
|
148603
148951
|
} | null | undefined;
|
|
@@ -149028,11 +149376,13 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
149028
149376
|
spans: {
|
|
149029
149377
|
text: string;
|
|
149030
149378
|
attributes: {
|
|
149031
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
149379
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
149032
149380
|
link?: string | null | undefined;
|
|
149033
149381
|
documentationItemId?: string | null | undefined;
|
|
149034
149382
|
openInNewTab?: boolean | null | undefined;
|
|
149035
149383
|
openInNewWindow?: boolean | null | undefined;
|
|
149384
|
+
commentHighlightId?: string | null | undefined;
|
|
149385
|
+
commentIsResolved?: boolean | null | undefined;
|
|
149036
149386
|
}[];
|
|
149037
149387
|
}[];
|
|
149038
149388
|
} | null | undefined;
|
|
@@ -149242,11 +149592,13 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
149242
149592
|
spans: {
|
|
149243
149593
|
text: string;
|
|
149244
149594
|
attributes: {
|
|
149245
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
149595
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
149246
149596
|
link?: string | null | undefined;
|
|
149247
149597
|
documentationItemId?: string | null | undefined;
|
|
149248
149598
|
openInNewTab?: boolean | null | undefined;
|
|
149249
149599
|
openInNewWindow?: boolean | null | undefined;
|
|
149600
|
+
commentHighlightId?: string | null | undefined;
|
|
149601
|
+
commentIsResolved?: boolean | null | undefined;
|
|
149250
149602
|
}[];
|
|
149251
149603
|
}[];
|
|
149252
149604
|
} | null | undefined;
|
|
@@ -149524,11 +149876,13 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
149524
149876
|
spans: {
|
|
149525
149877
|
text: string;
|
|
149526
149878
|
attributes: {
|
|
149527
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
149879
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
149528
149880
|
link?: string | null | undefined;
|
|
149529
149881
|
documentationItemId?: string | null | undefined;
|
|
149530
149882
|
openInNewTab?: boolean | null | undefined;
|
|
149531
149883
|
openInNewWindow?: boolean | null | undefined;
|
|
149884
|
+
commentHighlightId?: string | null | undefined;
|
|
149885
|
+
commentIsResolved?: boolean | null | undefined;
|
|
149532
149886
|
}[];
|
|
149533
149887
|
}[];
|
|
149534
149888
|
} | null | undefined;
|
|
@@ -149738,11 +150092,13 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
149738
150092
|
spans: {
|
|
149739
150093
|
text: string;
|
|
149740
150094
|
attributes: {
|
|
149741
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
150095
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
149742
150096
|
link?: string | null | undefined;
|
|
149743
150097
|
documentationItemId?: string | null | undefined;
|
|
149744
150098
|
openInNewTab?: boolean | null | undefined;
|
|
149745
150099
|
openInNewWindow?: boolean | null | undefined;
|
|
150100
|
+
commentHighlightId?: string | null | undefined;
|
|
150101
|
+
commentIsResolved?: boolean | null | undefined;
|
|
149746
150102
|
}[];
|
|
149747
150103
|
}[];
|
|
149748
150104
|
} | null | undefined;
|
|
@@ -150043,11 +150399,13 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
150043
150399
|
spans: {
|
|
150044
150400
|
text: string;
|
|
150045
150401
|
attributes: {
|
|
150046
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
150402
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
150047
150403
|
link?: string | null | undefined;
|
|
150048
150404
|
documentationItemId?: string | null | undefined;
|
|
150049
150405
|
openInNewTab?: boolean | null | undefined;
|
|
150050
150406
|
openInNewWindow?: boolean | null | undefined;
|
|
150407
|
+
commentHighlightId?: string | null | undefined;
|
|
150408
|
+
commentIsResolved?: boolean | null | undefined;
|
|
150051
150409
|
}[];
|
|
150052
150410
|
}[];
|
|
150053
150411
|
} | null | undefined;
|
|
@@ -150257,11 +150615,13 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
150257
150615
|
spans: {
|
|
150258
150616
|
text: string;
|
|
150259
150617
|
attributes: {
|
|
150260
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
150618
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
150261
150619
|
link?: string | null | undefined;
|
|
150262
150620
|
documentationItemId?: string | null | undefined;
|
|
150263
150621
|
openInNewTab?: boolean | null | undefined;
|
|
150264
150622
|
openInNewWindow?: boolean | null | undefined;
|
|
150623
|
+
commentHighlightId?: string | null | undefined;
|
|
150624
|
+
commentIsResolved?: boolean | null | undefined;
|
|
150265
150625
|
}[];
|
|
150266
150626
|
}[];
|
|
150267
150627
|
} | null | undefined;
|
|
@@ -152270,11 +152630,13 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
152270
152630
|
spans: {
|
|
152271
152631
|
text: string;
|
|
152272
152632
|
attributes: {
|
|
152273
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
152633
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
152274
152634
|
link?: string | null | undefined;
|
|
152275
152635
|
documentationItemId?: string | null | undefined;
|
|
152276
152636
|
openInNewTab?: boolean | null | undefined;
|
|
152277
152637
|
openInNewWindow?: boolean | null | undefined;
|
|
152638
|
+
commentHighlightId?: string | null | undefined;
|
|
152639
|
+
commentIsResolved?: boolean | null | undefined;
|
|
152278
152640
|
}[];
|
|
152279
152641
|
}[];
|
|
152280
152642
|
} | null | undefined;
|
|
@@ -152484,11 +152846,13 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
152484
152846
|
spans: {
|
|
152485
152847
|
text: string;
|
|
152486
152848
|
attributes: {
|
|
152487
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
152849
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
152488
152850
|
link?: string | null | undefined;
|
|
152489
152851
|
documentationItemId?: string | null | undefined;
|
|
152490
152852
|
openInNewTab?: boolean | null | undefined;
|
|
152491
152853
|
openInNewWindow?: boolean | null | undefined;
|
|
152854
|
+
commentHighlightId?: string | null | undefined;
|
|
152855
|
+
commentIsResolved?: boolean | null | undefined;
|
|
152492
152856
|
}[];
|
|
152493
152857
|
}[];
|
|
152494
152858
|
} | null | undefined;
|
|
@@ -153081,11 +153445,13 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
153081
153445
|
spans: {
|
|
153082
153446
|
text: string;
|
|
153083
153447
|
attributes: {
|
|
153084
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
153448
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
153085
153449
|
link?: string | null | undefined;
|
|
153086
153450
|
documentationItemId?: string | null | undefined;
|
|
153087
153451
|
openInNewTab?: boolean | null | undefined;
|
|
153088
153452
|
openInNewWindow?: boolean | null | undefined;
|
|
153453
|
+
commentHighlightId?: string | null | undefined;
|
|
153454
|
+
commentIsResolved?: boolean | null | undefined;
|
|
153089
153455
|
}[];
|
|
153090
153456
|
}[];
|
|
153091
153457
|
} | null | undefined;
|
|
@@ -153295,11 +153661,13 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
153295
153661
|
spans: {
|
|
153296
153662
|
text: string;
|
|
153297
153663
|
attributes: {
|
|
153298
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
153664
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
153299
153665
|
link?: string | null | undefined;
|
|
153300
153666
|
documentationItemId?: string | null | undefined;
|
|
153301
153667
|
openInNewTab?: boolean | null | undefined;
|
|
153302
153668
|
openInNewWindow?: boolean | null | undefined;
|
|
153669
|
+
commentHighlightId?: string | null | undefined;
|
|
153670
|
+
commentIsResolved?: boolean | null | undefined;
|
|
153303
153671
|
}[];
|
|
153304
153672
|
}[];
|
|
153305
153673
|
} | null | undefined;
|
|
@@ -153577,11 +153945,13 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
153577
153945
|
spans: {
|
|
153578
153946
|
text: string;
|
|
153579
153947
|
attributes: {
|
|
153580
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
153948
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
153581
153949
|
link?: string | null | undefined;
|
|
153582
153950
|
documentationItemId?: string | null | undefined;
|
|
153583
153951
|
openInNewTab?: boolean | null | undefined;
|
|
153584
153952
|
openInNewWindow?: boolean | null | undefined;
|
|
153953
|
+
commentHighlightId?: string | null | undefined;
|
|
153954
|
+
commentIsResolved?: boolean | null | undefined;
|
|
153585
153955
|
}[];
|
|
153586
153956
|
}[];
|
|
153587
153957
|
} | null | undefined;
|
|
@@ -153791,11 +154161,13 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
153791
154161
|
spans: {
|
|
153792
154162
|
text: string;
|
|
153793
154163
|
attributes: {
|
|
153794
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
154164
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
153795
154165
|
link?: string | null | undefined;
|
|
153796
154166
|
documentationItemId?: string | null | undefined;
|
|
153797
154167
|
openInNewTab?: boolean | null | undefined;
|
|
153798
154168
|
openInNewWindow?: boolean | null | undefined;
|
|
154169
|
+
commentHighlightId?: string | null | undefined;
|
|
154170
|
+
commentIsResolved?: boolean | null | undefined;
|
|
153799
154171
|
}[];
|
|
153800
154172
|
}[];
|
|
153801
154173
|
} | null | undefined;
|
|
@@ -154096,11 +154468,13 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
154096
154468
|
spans: {
|
|
154097
154469
|
text: string;
|
|
154098
154470
|
attributes: {
|
|
154099
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
154471
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
154100
154472
|
link?: string | null | undefined;
|
|
154101
154473
|
documentationItemId?: string | null | undefined;
|
|
154102
154474
|
openInNewTab?: boolean | null | undefined;
|
|
154103
154475
|
openInNewWindow?: boolean | null | undefined;
|
|
154476
|
+
commentHighlightId?: string | null | undefined;
|
|
154477
|
+
commentIsResolved?: boolean | null | undefined;
|
|
154104
154478
|
}[];
|
|
154105
154479
|
}[];
|
|
154106
154480
|
} | null | undefined;
|
|
@@ -154310,11 +154684,13 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
154310
154684
|
spans: {
|
|
154311
154685
|
text: string;
|
|
154312
154686
|
attributes: {
|
|
154313
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
154687
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
154314
154688
|
link?: string | null | undefined;
|
|
154315
154689
|
documentationItemId?: string | null | undefined;
|
|
154316
154690
|
openInNewTab?: boolean | null | undefined;
|
|
154317
154691
|
openInNewWindow?: boolean | null | undefined;
|
|
154692
|
+
commentHighlightId?: string | null | undefined;
|
|
154693
|
+
commentIsResolved?: boolean | null | undefined;
|
|
154318
154694
|
}[];
|
|
154319
154695
|
}[];
|
|
154320
154696
|
} | null | undefined;
|
|
@@ -156003,11 +156379,13 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
156003
156379
|
spans: {
|
|
156004
156380
|
text: string;
|
|
156005
156381
|
attributes: {
|
|
156006
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
156382
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
156007
156383
|
link?: string | null | undefined;
|
|
156008
156384
|
documentationItemId?: string | null | undefined;
|
|
156009
156385
|
openInNewTab?: boolean | null | undefined;
|
|
156010
156386
|
openInNewWindow?: boolean | null | undefined;
|
|
156387
|
+
commentHighlightId?: string | null | undefined;
|
|
156388
|
+
commentIsResolved?: boolean | null | undefined;
|
|
156011
156389
|
}[];
|
|
156012
156390
|
}[];
|
|
156013
156391
|
} | null | undefined;
|
|
@@ -156217,11 +156595,13 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
156217
156595
|
spans: {
|
|
156218
156596
|
text: string;
|
|
156219
156597
|
attributes: {
|
|
156220
|
-
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
156598
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough" | "Comment";
|
|
156221
156599
|
link?: string | null | undefined;
|
|
156222
156600
|
documentationItemId?: string | null | undefined;
|
|
156223
156601
|
openInNewTab?: boolean | null | undefined;
|
|
156224
156602
|
openInNewWindow?: boolean | null | undefined;
|
|
156603
|
+
commentHighlightId?: string | null | undefined;
|
|
156604
|
+
commentIsResolved?: boolean | null | undefined;
|
|
156225
156605
|
}[];
|
|
156226
156606
|
}[];
|
|
156227
156607
|
} | null | undefined;
|
|
@@ -163033,4 +163413,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
163033
163413
|
}>;
|
|
163034
163414
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
163035
163415
|
|
|
163036
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BaseComponent, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ComponentSet, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponentBooleanProperty, FigmaComponentInstanceSwapProperty, FigmaComponentProperties, FigmaComponentPropertyType, FigmaComponentSetProperties, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, 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, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|
|
163416
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BaseComponent, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ComponentSet, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponentBooleanProperty, FigmaComponentInstanceSwapProperty, FigmaComponentProperties, FigmaComponentPropertyType, FigmaComponentSetProperties, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, 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, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|