@supernova-studio/client 1.9.8 → 1.9.10
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 +73 -54
- package/dist/index.d.ts +73 -54
- package/dist/index.js +18 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +17 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -10164,14 +10164,17 @@ declare const DTOFileUploadItem: z.ZodObject<{
|
|
|
10164
10164
|
size: z.ZodNumber;
|
|
10165
10165
|
name: z.ZodString;
|
|
10166
10166
|
checksum: z.ZodString;
|
|
10167
|
+
scope: z.ZodOptional<z.ZodEnum<["DesignSystem", "Documentation", "DocumentationEmbed"]>>;
|
|
10167
10168
|
}, "strip", z.ZodTypeAny, {
|
|
10168
10169
|
name: string;
|
|
10169
10170
|
size: number;
|
|
10170
10171
|
checksum: string;
|
|
10172
|
+
scope?: "DesignSystem" | "Documentation" | "DocumentationEmbed" | undefined;
|
|
10171
10173
|
}, {
|
|
10172
10174
|
name: string;
|
|
10173
10175
|
size: number;
|
|
10174
10176
|
checksum: string;
|
|
10177
|
+
scope?: "DesignSystem" | "Documentation" | "DocumentationEmbed" | undefined;
|
|
10175
10178
|
}>;
|
|
10176
10179
|
type DTOFileUploadItem = z.infer<typeof DTOFileUploadItem>;
|
|
10177
10180
|
declare const DTOFileUploadPayload: z.ZodObject<{
|
|
@@ -10179,26 +10182,31 @@ declare const DTOFileUploadPayload: z.ZodObject<{
|
|
|
10179
10182
|
size: z.ZodNumber;
|
|
10180
10183
|
name: z.ZodString;
|
|
10181
10184
|
checksum: z.ZodString;
|
|
10185
|
+
scope: z.ZodOptional<z.ZodEnum<["DesignSystem", "Documentation", "DocumentationEmbed"]>>;
|
|
10182
10186
|
}, "strip", z.ZodTypeAny, {
|
|
10183
10187
|
name: string;
|
|
10184
10188
|
size: number;
|
|
10185
10189
|
checksum: string;
|
|
10190
|
+
scope?: "DesignSystem" | "Documentation" | "DocumentationEmbed" | undefined;
|
|
10186
10191
|
}, {
|
|
10187
10192
|
name: string;
|
|
10188
10193
|
size: number;
|
|
10189
10194
|
checksum: string;
|
|
10195
|
+
scope?: "DesignSystem" | "Documentation" | "DocumentationEmbed" | undefined;
|
|
10190
10196
|
}>, "many">;
|
|
10191
10197
|
}, "strip", z.ZodTypeAny, {
|
|
10192
10198
|
files: {
|
|
10193
10199
|
name: string;
|
|
10194
10200
|
size: number;
|
|
10195
10201
|
checksum: string;
|
|
10202
|
+
scope?: "DesignSystem" | "Documentation" | "DocumentationEmbed" | undefined;
|
|
10196
10203
|
}[];
|
|
10197
10204
|
}, {
|
|
10198
10205
|
files: {
|
|
10199
10206
|
name: string;
|
|
10200
10207
|
size: number;
|
|
10201
10208
|
checksum: string;
|
|
10209
|
+
scope?: "DesignSystem" | "Documentation" | "DocumentationEmbed" | undefined;
|
|
10202
10210
|
}[];
|
|
10203
10211
|
}>;
|
|
10204
10212
|
type DTOFileUploadPayload = z.infer<typeof DTOFileUploadPayload>;
|
|
@@ -10345,6 +10353,9 @@ declare const DTOFileResponseItem: z.ZodObject<Omit<{
|
|
|
10345
10353
|
referencePersistentId: string;
|
|
10346
10354
|
}>;
|
|
10347
10355
|
type DTOFileResponseItem = z.infer<typeof DTOFileResponseItem>;
|
|
10356
|
+
/**
|
|
10357
|
+
* @deprecated Use GET method with DTOFilesGetQuery
|
|
10358
|
+
*/
|
|
10348
10359
|
declare const DTOFilesGetPayload: z.ZodObject<{
|
|
10349
10360
|
persistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10350
10361
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10397,6 +10408,14 @@ declare const DTOFilesResponse: z.ZodObject<{
|
|
|
10397
10408
|
}[];
|
|
10398
10409
|
}>;
|
|
10399
10410
|
type DTOFilesResponse = z.infer<typeof DTOFilesResponse>;
|
|
10411
|
+
declare const DTOFilesGetQuery: z.ZodObject<{
|
|
10412
|
+
includeScope: z.ZodOptional<z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation", "DocumentationEmbed"]>>;
|
|
10413
|
+
}, "strip", z.ZodTypeAny, {
|
|
10414
|
+
includeScope?: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation" | "DocumentationEmbed" | undefined;
|
|
10415
|
+
}, {
|
|
10416
|
+
includeScope?: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation" | "DocumentationEmbed" | undefined;
|
|
10417
|
+
}>;
|
|
10418
|
+
type DTOFilesGetQuery = z.infer<typeof DTOFilesGetQuery>;
|
|
10400
10419
|
|
|
10401
10420
|
declare const DTOImportJob: z.ZodObject<{
|
|
10402
10421
|
id: z.ZodString;
|
|
@@ -25789,7 +25808,7 @@ declare const DTOPageBlockDefinitionBehavior: z.ZodObject<{
|
|
|
25789
25808
|
maxSelected: number;
|
|
25790
25809
|
}>>;
|
|
25791
25810
|
}, "strip", z.ZodTypeAny, {
|
|
25792
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "
|
|
25811
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "File" | "Item";
|
|
25793
25812
|
items?: {
|
|
25794
25813
|
numberOfItems: number;
|
|
25795
25814
|
allowLinks: boolean;
|
|
@@ -25800,7 +25819,7 @@ declare const DTOPageBlockDefinitionBehavior: z.ZodObject<{
|
|
|
25800
25819
|
maxSelected: number;
|
|
25801
25820
|
} | undefined;
|
|
25802
25821
|
}, {
|
|
25803
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "
|
|
25822
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "File" | "Item";
|
|
25804
25823
|
items?: {
|
|
25805
25824
|
numberOfItems: number;
|
|
25806
25825
|
allowLinks: boolean;
|
|
@@ -25821,14 +25840,14 @@ declare const DTOPageBlockDefinitionItem: z.ZodObject<{
|
|
|
25821
25840
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
25822
25841
|
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
25823
25842
|
}, "strip", z.ZodTypeAny, {
|
|
25824
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
25843
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
25825
25844
|
id: string;
|
|
25826
25845
|
name: string;
|
|
25827
25846
|
options?: Record<string, any> | undefined;
|
|
25828
25847
|
description?: string | undefined;
|
|
25829
25848
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
25830
25849
|
}, {
|
|
25831
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
25850
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
25832
25851
|
id: string;
|
|
25833
25852
|
name: string;
|
|
25834
25853
|
options?: Record<string, any> | undefined;
|
|
@@ -25924,7 +25943,7 @@ declare const DTOPageBlockDefinitionItem: z.ZodObject<{
|
|
|
25924
25943
|
defaultVariantKey: z.ZodString;
|
|
25925
25944
|
}, "strip", z.ZodTypeAny, {
|
|
25926
25945
|
properties: {
|
|
25927
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
25946
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
25928
25947
|
id: string;
|
|
25929
25948
|
name: string;
|
|
25930
25949
|
options?: Record<string, any> | undefined;
|
|
@@ -25963,7 +25982,7 @@ declare const DTOPageBlockDefinitionItem: z.ZodObject<{
|
|
|
25963
25982
|
} | undefined;
|
|
25964
25983
|
}, {
|
|
25965
25984
|
properties: {
|
|
25966
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
25985
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
25967
25986
|
id: string;
|
|
25968
25987
|
name: string;
|
|
25969
25988
|
options?: Record<string, any> | undefined;
|
|
@@ -26083,14 +26102,14 @@ declare const DTOPageBlockDefinitionProperty: z.ZodObject<{
|
|
|
26083
26102
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
26084
26103
|
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
26085
26104
|
}, "strip", z.ZodTypeAny, {
|
|
26086
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
26105
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
26087
26106
|
id: string;
|
|
26088
26107
|
name: string;
|
|
26089
26108
|
options?: Record<string, any> | undefined;
|
|
26090
26109
|
description?: string | undefined;
|
|
26091
26110
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
26092
26111
|
}, {
|
|
26093
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
26112
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
26094
26113
|
id: string;
|
|
26095
26114
|
name: string;
|
|
26096
26115
|
options?: Record<string, any> | undefined;
|
|
@@ -26126,14 +26145,14 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
26126
26145
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
26127
26146
|
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
26128
26147
|
}, "strip", z.ZodTypeAny, {
|
|
26129
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
26148
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
26130
26149
|
id: string;
|
|
26131
26150
|
name: string;
|
|
26132
26151
|
options?: Record<string, any> | undefined;
|
|
26133
26152
|
description?: string | undefined;
|
|
26134
26153
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
26135
26154
|
}, {
|
|
26136
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
26155
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
26137
26156
|
id: string;
|
|
26138
26157
|
name: string;
|
|
26139
26158
|
options?: Record<string, any> | undefined;
|
|
@@ -26229,7 +26248,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
26229
26248
|
defaultVariantKey: z.ZodString;
|
|
26230
26249
|
}, "strip", z.ZodTypeAny, {
|
|
26231
26250
|
properties: {
|
|
26232
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
26251
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
26233
26252
|
id: string;
|
|
26234
26253
|
name: string;
|
|
26235
26254
|
options?: Record<string, any> | undefined;
|
|
@@ -26268,7 +26287,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
26268
26287
|
} | undefined;
|
|
26269
26288
|
}, {
|
|
26270
26289
|
properties: {
|
|
26271
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
26290
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
26272
26291
|
id: string;
|
|
26273
26292
|
name: string;
|
|
26274
26293
|
options?: Record<string, any> | undefined;
|
|
@@ -26332,7 +26351,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
26332
26351
|
maxSelected: number;
|
|
26333
26352
|
}>>;
|
|
26334
26353
|
}, "strip", z.ZodTypeAny, {
|
|
26335
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "
|
|
26354
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "File" | "Item";
|
|
26336
26355
|
items?: {
|
|
26337
26356
|
numberOfItems: number;
|
|
26338
26357
|
allowLinks: boolean;
|
|
@@ -26343,7 +26362,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
26343
26362
|
maxSelected: number;
|
|
26344
26363
|
} | undefined;
|
|
26345
26364
|
}, {
|
|
26346
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "
|
|
26365
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "File" | "Item";
|
|
26347
26366
|
items?: {
|
|
26348
26367
|
numberOfItems: number;
|
|
26349
26368
|
allowLinks: boolean;
|
|
@@ -26398,7 +26417,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
26398
26417
|
}, "strip", z.ZodTypeAny, {
|
|
26399
26418
|
item: {
|
|
26400
26419
|
properties: {
|
|
26401
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
26420
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
26402
26421
|
id: string;
|
|
26403
26422
|
name: string;
|
|
26404
26423
|
options?: Record<string, any> | undefined;
|
|
@@ -26441,7 +26460,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
26441
26460
|
name: string;
|
|
26442
26461
|
description: string;
|
|
26443
26462
|
behavior: {
|
|
26444
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "
|
|
26463
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "File" | "Item";
|
|
26445
26464
|
items?: {
|
|
26446
26465
|
numberOfItems: number;
|
|
26447
26466
|
allowLinks: boolean;
|
|
@@ -26471,7 +26490,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
26471
26490
|
}, {
|
|
26472
26491
|
item: {
|
|
26473
26492
|
properties: {
|
|
26474
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
26493
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
26475
26494
|
id: string;
|
|
26476
26495
|
name: string;
|
|
26477
26496
|
options?: Record<string, any> | undefined;
|
|
@@ -26514,7 +26533,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
26514
26533
|
name: string;
|
|
26515
26534
|
description: string;
|
|
26516
26535
|
behavior: {
|
|
26517
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "
|
|
26536
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "File" | "Item";
|
|
26518
26537
|
items?: {
|
|
26519
26538
|
numberOfItems: number;
|
|
26520
26539
|
allowLinks: boolean;
|
|
@@ -42951,7 +42970,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
42951
42970
|
shortPersistentId: z.ZodString;
|
|
42952
42971
|
data: z.ZodObject<{
|
|
42953
42972
|
blocks: z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
42954
|
-
type: "Code" | "Image" | "Custom" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable" | "
|
|
42973
|
+
type: "Code" | "Image" | "Custom" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable" | "Files";
|
|
42955
42974
|
persistentId: string;
|
|
42956
42975
|
asset?: {
|
|
42957
42976
|
type: "image" | "figmaFrame";
|
|
@@ -43239,7 +43258,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
43239
43258
|
} | null | undefined;
|
|
43240
43259
|
} & {
|
|
43241
43260
|
children: ({
|
|
43242
|
-
type: "Code" | "Image" | "Custom" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable" | "
|
|
43261
|
+
type: "Code" | "Image" | "Custom" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable" | "Files";
|
|
43243
43262
|
persistentId: string;
|
|
43244
43263
|
asset?: {
|
|
43245
43264
|
type: "image" | "figmaFrame";
|
|
@@ -43873,7 +43892,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
43873
43892
|
} | undefined;
|
|
43874
43893
|
}, {
|
|
43875
43894
|
blocks: ({
|
|
43876
|
-
type: "Code" | "Image" | "Custom" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable" | "
|
|
43895
|
+
type: "Code" | "Image" | "Custom" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable" | "Files";
|
|
43877
43896
|
persistentId: string;
|
|
43878
43897
|
asset?: {
|
|
43879
43898
|
type: "image" | "figmaFrame";
|
|
@@ -44161,7 +44180,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
44161
44180
|
} | null | undefined;
|
|
44162
44181
|
} & {
|
|
44163
44182
|
children: ({
|
|
44164
|
-
type: "Code" | "Image" | "Custom" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable" | "
|
|
44183
|
+
type: "Code" | "Image" | "Custom" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable" | "Files";
|
|
44165
44184
|
persistentId: string;
|
|
44166
44185
|
asset?: {
|
|
44167
44186
|
type: "image" | "figmaFrame";
|
|
@@ -45019,7 +45038,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
45019
45038
|
};
|
|
45020
45039
|
}>;
|
|
45021
45040
|
blocks: z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
45022
|
-
type: "Code" | "Image" | "Custom" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable" | "
|
|
45041
|
+
type: "Code" | "Image" | "Custom" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable" | "Files";
|
|
45023
45042
|
persistentId: string;
|
|
45024
45043
|
asset?: {
|
|
45025
45044
|
type: "image" | "figmaFrame";
|
|
@@ -45307,7 +45326,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
45307
45326
|
} | null | undefined;
|
|
45308
45327
|
} & {
|
|
45309
45328
|
children: ({
|
|
45310
|
-
type: "Code" | "Image" | "Custom" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable" | "
|
|
45329
|
+
type: "Code" | "Image" | "Custom" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable" | "Files";
|
|
45311
45330
|
persistentId: string;
|
|
45312
45331
|
asset?: {
|
|
45313
45332
|
type: "image" | "figmaFrame";
|
|
@@ -45713,7 +45732,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
45713
45732
|
};
|
|
45714
45733
|
shortPersistentId: string;
|
|
45715
45734
|
blocks: ({
|
|
45716
|
-
type: "Code" | "Image" | "Custom" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable" | "
|
|
45735
|
+
type: "Code" | "Image" | "Custom" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable" | "Files";
|
|
45717
45736
|
persistentId: string;
|
|
45718
45737
|
asset?: {
|
|
45719
45738
|
type: "image" | "figmaFrame";
|
|
@@ -46001,7 +46020,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
46001
46020
|
} | null | undefined;
|
|
46002
46021
|
} & {
|
|
46003
46022
|
children: ({
|
|
46004
|
-
type: "Code" | "Image" | "Custom" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable" | "
|
|
46023
|
+
type: "Code" | "Image" | "Custom" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable" | "Files";
|
|
46005
46024
|
persistentId: string;
|
|
46006
46025
|
asset?: {
|
|
46007
46026
|
type: "image" | "figmaFrame";
|
|
@@ -106920,14 +106939,14 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
106920
106939
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
106921
106940
|
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
106922
106941
|
}, "strip", z.ZodTypeAny, {
|
|
106923
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
106942
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
106924
106943
|
id: string;
|
|
106925
106944
|
name: string;
|
|
106926
106945
|
options?: Record<string, any> | undefined;
|
|
106927
106946
|
description?: string | undefined;
|
|
106928
106947
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
106929
106948
|
}, {
|
|
106930
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
106949
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
106931
106950
|
id: string;
|
|
106932
106951
|
name: string;
|
|
106933
106952
|
options?: Record<string, any> | undefined;
|
|
@@ -107023,7 +107042,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107023
107042
|
defaultVariantKey: z.ZodString;
|
|
107024
107043
|
}, "strip", z.ZodTypeAny, {
|
|
107025
107044
|
properties: {
|
|
107026
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
107045
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
107027
107046
|
id: string;
|
|
107028
107047
|
name: string;
|
|
107029
107048
|
options?: Record<string, any> | undefined;
|
|
@@ -107062,7 +107081,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107062
107081
|
} | undefined;
|
|
107063
107082
|
}, {
|
|
107064
107083
|
properties: {
|
|
107065
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
107084
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
107066
107085
|
id: string;
|
|
107067
107086
|
name: string;
|
|
107068
107087
|
options?: Record<string, any> | undefined;
|
|
@@ -107126,7 +107145,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107126
107145
|
maxSelected: number;
|
|
107127
107146
|
}>>;
|
|
107128
107147
|
}, "strip", z.ZodTypeAny, {
|
|
107129
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "
|
|
107148
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "File" | "Item";
|
|
107130
107149
|
items?: {
|
|
107131
107150
|
numberOfItems: number;
|
|
107132
107151
|
allowLinks: boolean;
|
|
@@ -107137,7 +107156,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107137
107156
|
maxSelected: number;
|
|
107138
107157
|
} | undefined;
|
|
107139
107158
|
}, {
|
|
107140
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "
|
|
107159
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "File" | "Item";
|
|
107141
107160
|
items?: {
|
|
107142
107161
|
numberOfItems: number;
|
|
107143
107162
|
allowLinks: boolean;
|
|
@@ -107192,7 +107211,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107192
107211
|
}, "strip", z.ZodTypeAny, {
|
|
107193
107212
|
item: {
|
|
107194
107213
|
properties: {
|
|
107195
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
107214
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
107196
107215
|
id: string;
|
|
107197
107216
|
name: string;
|
|
107198
107217
|
options?: Record<string, any> | undefined;
|
|
@@ -107235,7 +107254,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107235
107254
|
name: string;
|
|
107236
107255
|
description: string;
|
|
107237
107256
|
behavior: {
|
|
107238
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "
|
|
107257
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "File" | "Item";
|
|
107239
107258
|
items?: {
|
|
107240
107259
|
numberOfItems: number;
|
|
107241
107260
|
allowLinks: boolean;
|
|
@@ -107265,7 +107284,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107265
107284
|
}, {
|
|
107266
107285
|
item: {
|
|
107267
107286
|
properties: {
|
|
107268
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
107287
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
107269
107288
|
id: string;
|
|
107270
107289
|
name: string;
|
|
107271
107290
|
options?: Record<string, any> | undefined;
|
|
@@ -107308,7 +107327,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107308
107327
|
name: string;
|
|
107309
107328
|
description: string;
|
|
107310
107329
|
behavior: {
|
|
107311
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "
|
|
107330
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "File" | "Item";
|
|
107312
107331
|
items?: {
|
|
107313
107332
|
numberOfItems: number;
|
|
107314
107333
|
allowLinks: boolean;
|
|
@@ -107340,7 +107359,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107340
107359
|
definitions: {
|
|
107341
107360
|
item: {
|
|
107342
107361
|
properties: {
|
|
107343
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
107362
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
107344
107363
|
id: string;
|
|
107345
107364
|
name: string;
|
|
107346
107365
|
options?: Record<string, any> | undefined;
|
|
@@ -107383,7 +107402,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107383
107402
|
name: string;
|
|
107384
107403
|
description: string;
|
|
107385
107404
|
behavior: {
|
|
107386
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "
|
|
107405
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "File" | "Item";
|
|
107387
107406
|
items?: {
|
|
107388
107407
|
numberOfItems: number;
|
|
107389
107408
|
allowLinks: boolean;
|
|
@@ -107415,7 +107434,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107415
107434
|
definitions: {
|
|
107416
107435
|
item: {
|
|
107417
107436
|
properties: {
|
|
107418
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
107437
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
107419
107438
|
id: string;
|
|
107420
107439
|
name: string;
|
|
107421
107440
|
options?: Record<string, any> | undefined;
|
|
@@ -107458,7 +107477,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107458
107477
|
name: string;
|
|
107459
107478
|
description: string;
|
|
107460
107479
|
behavior: {
|
|
107461
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "
|
|
107480
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "File" | "Item";
|
|
107462
107481
|
items?: {
|
|
107463
107482
|
numberOfItems: number;
|
|
107464
107483
|
allowLinks: boolean;
|
|
@@ -108019,7 +108038,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
108019
108038
|
themePersistentId?: string | undefined;
|
|
108020
108039
|
themePersistentIds?: string[] | undefined;
|
|
108021
108040
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
108022
|
-
destination?: "Github" | "Azure" | "
|
|
108041
|
+
destination?: "Github" | "Azure" | "Documentation" | "Gitlab" | "Bitbucket" | "WebhookUrl" | "S3" | undefined;
|
|
108023
108042
|
}, {
|
|
108024
108043
|
name: string;
|
|
108025
108044
|
designSystemId: string;
|
|
@@ -108111,7 +108130,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
108111
108130
|
themePersistentId?: string | undefined;
|
|
108112
108131
|
themePersistentIds?: string[] | undefined;
|
|
108113
108132
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
108114
|
-
destination?: "Github" | "Azure" | "
|
|
108133
|
+
destination?: "Github" | "Azure" | "Documentation" | "Gitlab" | "Bitbucket" | "WebhookUrl" | "S3" | undefined;
|
|
108115
108134
|
}>;
|
|
108116
108135
|
type DTOPipelineCreateBody = z.infer<typeof DTOPipelineCreateBody>;
|
|
108117
108136
|
declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
@@ -108543,7 +108562,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
108543
108562
|
themePersistentId?: string | undefined;
|
|
108544
108563
|
themePersistentIds?: string[] | undefined;
|
|
108545
108564
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
108546
|
-
destination?: "Github" | "Azure" | "
|
|
108565
|
+
destination?: "Github" | "Azure" | "Documentation" | "Gitlab" | "Bitbucket" | "WebhookUrl" | "S3" | undefined;
|
|
108547
108566
|
gitQuery?: {
|
|
108548
108567
|
organization?: string | undefined;
|
|
108549
108568
|
project?: string | undefined;
|
|
@@ -108644,7 +108663,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
108644
108663
|
themePersistentId?: string | undefined;
|
|
108645
108664
|
themePersistentIds?: string[] | undefined;
|
|
108646
108665
|
exporterPropertyValues?: Record<string, string | number | boolean | Record<string, string> | string[]> | undefined;
|
|
108647
|
-
destination?: "Github" | "Azure" | "
|
|
108666
|
+
destination?: "Github" | "Azure" | "Documentation" | "Gitlab" | "Bitbucket" | "WebhookUrl" | "S3" | undefined;
|
|
108648
108667
|
gitQuery?: {
|
|
108649
108668
|
organization?: string | undefined;
|
|
108650
108669
|
project?: string | undefined;
|
|
@@ -110498,7 +110517,7 @@ declare class DocumentationEndpoint {
|
|
|
110498
110517
|
definitions: {
|
|
110499
110518
|
item: {
|
|
110500
110519
|
properties: {
|
|
110501
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
110520
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
110502
110521
|
id: string;
|
|
110503
110522
|
name: string;
|
|
110504
110523
|
options?: Record<string, any> | undefined;
|
|
@@ -110541,7 +110560,7 @@ declare class DocumentationEndpoint {
|
|
|
110541
110560
|
name: string;
|
|
110542
110561
|
description: string;
|
|
110543
110562
|
behavior: {
|
|
110544
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "
|
|
110563
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "File" | "Item";
|
|
110545
110564
|
items?: {
|
|
110546
110565
|
numberOfItems: number;
|
|
110547
110566
|
allowLinks: boolean;
|
|
@@ -112457,7 +112476,7 @@ declare class FilesEndpoint {
|
|
|
112457
112476
|
finalize(designSystemId: string, versionId: string, body: DTOFileUploadFinalizePayload): Promise<{
|
|
112458
112477
|
ok: true;
|
|
112459
112478
|
}>;
|
|
112460
|
-
get(designSystemId: string, versionId: string,
|
|
112479
|
+
get(designSystemId: string, versionId: string, query?: DTOFilesGetQuery): Promise<{
|
|
112461
112480
|
files: {
|
|
112462
112481
|
name: string;
|
|
112463
112482
|
url: string;
|
|
@@ -119314,7 +119333,7 @@ declare const BlockParsingUtils: {
|
|
|
119314
119333
|
};
|
|
119315
119334
|
declare const BlockDefinitionUtils: {
|
|
119316
119335
|
firstRichTextProperty(definition: PageBlockDefinition): {
|
|
119317
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
119336
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
119318
119337
|
id: string;
|
|
119319
119338
|
name: string;
|
|
119320
119339
|
options?: Record<string, any> | undefined;
|
|
@@ -119322,7 +119341,7 @@ declare const BlockDefinitionUtils: {
|
|
|
119322
119341
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
119323
119342
|
} | undefined;
|
|
119324
119343
|
firstMultiRichTextProperty(definition: PageBlockDefinition): {
|
|
119325
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
119344
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
119326
119345
|
id: string;
|
|
119327
119346
|
name: string;
|
|
119328
119347
|
options?: Record<string, any> | undefined;
|
|
@@ -119330,7 +119349,7 @@ declare const BlockDefinitionUtils: {
|
|
|
119330
119349
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
119331
119350
|
} | undefined;
|
|
119332
119351
|
firstTableProperty(definition: PageBlockDefinition): {
|
|
119333
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
119352
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
119334
119353
|
id: string;
|
|
119335
119354
|
name: string;
|
|
119336
119355
|
options?: Record<string, any> | undefined;
|
|
@@ -119338,7 +119357,7 @@ declare const BlockDefinitionUtils: {
|
|
|
119338
119357
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
119339
119358
|
} | undefined;
|
|
119340
119359
|
firstEmbedProperty(definition: PageBlockDefinition): {
|
|
119341
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
119360
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
119342
119361
|
id: string;
|
|
119343
119362
|
name: string;
|
|
119344
119363
|
options?: Record<string, any> | undefined;
|
|
@@ -119346,7 +119365,7 @@ declare const BlockDefinitionUtils: {
|
|
|
119346
119365
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
119347
119366
|
} | undefined;
|
|
119348
119367
|
richTextProperty(definition: PageBlockDefinition, propertyKey: string): {
|
|
119349
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
119368
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
119350
119369
|
id: string;
|
|
119351
119370
|
name: string;
|
|
119352
119371
|
options?: Record<string, any> | undefined;
|
|
@@ -119354,7 +119373,7 @@ declare const BlockDefinitionUtils: {
|
|
|
119354
119373
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
119355
119374
|
};
|
|
119356
119375
|
property(definition: PageBlockDefinition, propertyKey: string, expectedPropertyType?: PageBlockDefinitionPropertyType): {
|
|
119357
|
-
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "
|
|
119376
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook" | "File";
|
|
119358
119377
|
id: string;
|
|
119359
119378
|
name: string;
|
|
119360
119379
|
options?: Record<string, any> | undefined;
|
|
@@ -119629,4 +119648,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
119629
119648
|
reason: ValidationErrorReason | undefined;
|
|
119630
119649
|
};
|
|
119631
119650
|
|
|
119632
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesResponse, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
|
|
119651
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
|