@supernova-studio/client 1.9.4 → 1.9.6
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 +198 -56
- package/dist/index.d.ts +198 -56
- package/dist/index.js +139 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +138 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -10321,6 +10321,82 @@ declare const DTOFileUploadFinalizeResponse: z.ZodObject<{
|
|
|
10321
10321
|
ok: true;
|
|
10322
10322
|
}>;
|
|
10323
10323
|
type DTOFileUploadFinalizeResponse = z.infer<typeof DTOFileUploadFinalizeResponse>;
|
|
10324
|
+
declare const DTOFileResponseItem: z.ZodObject<Omit<{
|
|
10325
|
+
fileId: z.ZodString;
|
|
10326
|
+
referencePersistentId: z.ZodString;
|
|
10327
|
+
name: z.ZodString;
|
|
10328
|
+
checksum: z.ZodString;
|
|
10329
|
+
pendingUpload: z.ZodOptional<z.ZodBoolean>;
|
|
10330
|
+
url: z.ZodString;
|
|
10331
|
+
size: z.ZodNumber;
|
|
10332
|
+
}, "pendingUpload">, "strip", z.ZodTypeAny, {
|
|
10333
|
+
name: string;
|
|
10334
|
+
url: string;
|
|
10335
|
+
fileId: string;
|
|
10336
|
+
size: number;
|
|
10337
|
+
checksum: string;
|
|
10338
|
+
referencePersistentId: string;
|
|
10339
|
+
}, {
|
|
10340
|
+
name: string;
|
|
10341
|
+
url: string;
|
|
10342
|
+
fileId: string;
|
|
10343
|
+
size: number;
|
|
10344
|
+
checksum: string;
|
|
10345
|
+
referencePersistentId: string;
|
|
10346
|
+
}>;
|
|
10347
|
+
type DTOFileResponseItem = z.infer<typeof DTOFileResponseItem>;
|
|
10348
|
+
declare const DTOFilesGetPayload: z.ZodObject<{
|
|
10349
|
+
persistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10350
|
+
}, "strip", z.ZodTypeAny, {
|
|
10351
|
+
persistentIds?: string[] | undefined;
|
|
10352
|
+
}, {
|
|
10353
|
+
persistentIds?: string[] | undefined;
|
|
10354
|
+
}>;
|
|
10355
|
+
type DTOFilesGetPayload = z.infer<typeof DTOFilesGetPayload>;
|
|
10356
|
+
declare const DTOFilesResponse: z.ZodObject<{
|
|
10357
|
+
files: z.ZodArray<z.ZodObject<Omit<{
|
|
10358
|
+
fileId: z.ZodString;
|
|
10359
|
+
referencePersistentId: z.ZodString;
|
|
10360
|
+
name: z.ZodString;
|
|
10361
|
+
checksum: z.ZodString;
|
|
10362
|
+
pendingUpload: z.ZodOptional<z.ZodBoolean>;
|
|
10363
|
+
url: z.ZodString;
|
|
10364
|
+
size: z.ZodNumber;
|
|
10365
|
+
}, "pendingUpload">, "strip", z.ZodTypeAny, {
|
|
10366
|
+
name: string;
|
|
10367
|
+
url: string;
|
|
10368
|
+
fileId: string;
|
|
10369
|
+
size: number;
|
|
10370
|
+
checksum: string;
|
|
10371
|
+
referencePersistentId: string;
|
|
10372
|
+
}, {
|
|
10373
|
+
name: string;
|
|
10374
|
+
url: string;
|
|
10375
|
+
fileId: string;
|
|
10376
|
+
size: number;
|
|
10377
|
+
checksum: string;
|
|
10378
|
+
referencePersistentId: string;
|
|
10379
|
+
}>, "many">;
|
|
10380
|
+
}, "strip", z.ZodTypeAny, {
|
|
10381
|
+
files: {
|
|
10382
|
+
name: string;
|
|
10383
|
+
url: string;
|
|
10384
|
+
fileId: string;
|
|
10385
|
+
size: number;
|
|
10386
|
+
checksum: string;
|
|
10387
|
+
referencePersistentId: string;
|
|
10388
|
+
}[];
|
|
10389
|
+
}, {
|
|
10390
|
+
files: {
|
|
10391
|
+
name: string;
|
|
10392
|
+
url: string;
|
|
10393
|
+
fileId: string;
|
|
10394
|
+
size: number;
|
|
10395
|
+
checksum: string;
|
|
10396
|
+
referencePersistentId: string;
|
|
10397
|
+
}[];
|
|
10398
|
+
}>;
|
|
10399
|
+
type DTOFilesResponse = z.infer<typeof DTOFilesResponse>;
|
|
10324
10400
|
|
|
10325
10401
|
declare const DTOImportJob: z.ZodObject<{
|
|
10326
10402
|
id: z.ZodString;
|
|
@@ -25688,7 +25764,7 @@ declare const DTODocumentationGroupApprovalState: z.ZodObject<{
|
|
|
25688
25764
|
type DTODocumentationGroupApprovalState = z.infer<typeof DTODocumentationGroupApprovalState>;
|
|
25689
25765
|
|
|
25690
25766
|
declare const DTOPageBlockDefinitionBehavior: z.ZodObject<{
|
|
25691
|
-
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode", "FigmaComponent"]>;
|
|
25767
|
+
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode", "FigmaComponent", "File"]>;
|
|
25692
25768
|
items: z.ZodOptional<z.ZodObject<{
|
|
25693
25769
|
numberOfItems: z.ZodNumber;
|
|
25694
25770
|
allowLinks: z.ZodBoolean;
|
|
@@ -25713,7 +25789,7 @@ declare const DTOPageBlockDefinitionBehavior: z.ZodObject<{
|
|
|
25713
25789
|
maxSelected: number;
|
|
25714
25790
|
}>>;
|
|
25715
25791
|
}, "strip", z.ZodTypeAny, {
|
|
25716
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "Item";
|
|
25792
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "File" | "Asset" | "FigmaNode" | "Item";
|
|
25717
25793
|
items?: {
|
|
25718
25794
|
numberOfItems: number;
|
|
25719
25795
|
allowLinks: boolean;
|
|
@@ -25724,7 +25800,7 @@ declare const DTOPageBlockDefinitionBehavior: z.ZodObject<{
|
|
|
25724
25800
|
maxSelected: number;
|
|
25725
25801
|
} | undefined;
|
|
25726
25802
|
}, {
|
|
25727
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "Item";
|
|
25803
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "File" | "Asset" | "FigmaNode" | "Item";
|
|
25728
25804
|
items?: {
|
|
25729
25805
|
numberOfItems: number;
|
|
25730
25806
|
allowLinks: boolean;
|
|
@@ -25740,19 +25816,19 @@ declare const DTOPageBlockDefinitionItem: z.ZodObject<{
|
|
|
25740
25816
|
properties: z.ZodArray<z.ZodObject<{
|
|
25741
25817
|
id: z.ZodString;
|
|
25742
25818
|
name: z.ZodString;
|
|
25743
|
-
type: z.ZodEnum<["RichText", "MultiRichText", "RichTextEditor", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent"]>;
|
|
25819
|
+
type: z.ZodEnum<["RichText", "MultiRichText", "RichTextEditor", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent", "File"]>;
|
|
25744
25820
|
description: z.ZodOptional<z.ZodString>;
|
|
25745
25821
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
25746
25822
|
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
25747
25823
|
}, "strip", z.ZodTypeAny, {
|
|
25748
|
-
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";
|
|
25824
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
25749
25825
|
id: string;
|
|
25750
25826
|
name: string;
|
|
25751
25827
|
options?: Record<string, any> | undefined;
|
|
25752
25828
|
description?: string | undefined;
|
|
25753
25829
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
25754
25830
|
}, {
|
|
25755
|
-
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";
|
|
25831
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
25756
25832
|
id: string;
|
|
25757
25833
|
name: string;
|
|
25758
25834
|
options?: Record<string, any> | undefined;
|
|
@@ -25848,7 +25924,7 @@ declare const DTOPageBlockDefinitionItem: z.ZodObject<{
|
|
|
25848
25924
|
defaultVariantKey: z.ZodString;
|
|
25849
25925
|
}, "strip", z.ZodTypeAny, {
|
|
25850
25926
|
properties: {
|
|
25851
|
-
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";
|
|
25927
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
25852
25928
|
id: string;
|
|
25853
25929
|
name: string;
|
|
25854
25930
|
options?: Record<string, any> | undefined;
|
|
@@ -25887,7 +25963,7 @@ declare const DTOPageBlockDefinitionItem: z.ZodObject<{
|
|
|
25887
25963
|
} | undefined;
|
|
25888
25964
|
}, {
|
|
25889
25965
|
properties: {
|
|
25890
|
-
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";
|
|
25966
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
25891
25967
|
id: string;
|
|
25892
25968
|
name: string;
|
|
25893
25969
|
options?: Record<string, any> | undefined;
|
|
@@ -26002,19 +26078,19 @@ type DTOPageBlockDefinitionVariant = z.infer<typeof DTOPageBlockDefinitionVarian
|
|
|
26002
26078
|
declare const DTOPageBlockDefinitionProperty: z.ZodObject<{
|
|
26003
26079
|
id: z.ZodString;
|
|
26004
26080
|
name: z.ZodString;
|
|
26005
|
-
type: z.ZodEnum<["RichText", "MultiRichText", "RichTextEditor", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent"]>;
|
|
26081
|
+
type: z.ZodEnum<["RichText", "MultiRichText", "RichTextEditor", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent", "File"]>;
|
|
26006
26082
|
description: z.ZodOptional<z.ZodString>;
|
|
26007
26083
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
26008
26084
|
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
26009
26085
|
}, "strip", z.ZodTypeAny, {
|
|
26010
|
-
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";
|
|
26086
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
26011
26087
|
id: string;
|
|
26012
26088
|
name: string;
|
|
26013
26089
|
options?: Record<string, any> | undefined;
|
|
26014
26090
|
description?: string | undefined;
|
|
26015
26091
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
26016
26092
|
}, {
|
|
26017
|
-
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";
|
|
26093
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
26018
26094
|
id: string;
|
|
26019
26095
|
name: string;
|
|
26020
26096
|
options?: Record<string, any> | undefined;
|
|
@@ -26045,19 +26121,19 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
26045
26121
|
properties: z.ZodArray<z.ZodObject<{
|
|
26046
26122
|
id: z.ZodString;
|
|
26047
26123
|
name: z.ZodString;
|
|
26048
|
-
type: z.ZodEnum<["RichText", "MultiRichText", "RichTextEditor", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent"]>;
|
|
26124
|
+
type: z.ZodEnum<["RichText", "MultiRichText", "RichTextEditor", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent", "File"]>;
|
|
26049
26125
|
description: z.ZodOptional<z.ZodString>;
|
|
26050
26126
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
26051
26127
|
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
26052
26128
|
}, "strip", z.ZodTypeAny, {
|
|
26053
|
-
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";
|
|
26129
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
26054
26130
|
id: string;
|
|
26055
26131
|
name: string;
|
|
26056
26132
|
options?: Record<string, any> | undefined;
|
|
26057
26133
|
description?: string | undefined;
|
|
26058
26134
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
26059
26135
|
}, {
|
|
26060
|
-
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";
|
|
26136
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
26061
26137
|
id: string;
|
|
26062
26138
|
name: string;
|
|
26063
26139
|
options?: Record<string, any> | undefined;
|
|
@@ -26153,7 +26229,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
26153
26229
|
defaultVariantKey: z.ZodString;
|
|
26154
26230
|
}, "strip", z.ZodTypeAny, {
|
|
26155
26231
|
properties: {
|
|
26156
|
-
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";
|
|
26232
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
26157
26233
|
id: string;
|
|
26158
26234
|
name: string;
|
|
26159
26235
|
options?: Record<string, any> | undefined;
|
|
@@ -26192,7 +26268,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
26192
26268
|
} | undefined;
|
|
26193
26269
|
}, {
|
|
26194
26270
|
properties: {
|
|
26195
|
-
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";
|
|
26271
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
26196
26272
|
id: string;
|
|
26197
26273
|
name: string;
|
|
26198
26274
|
options?: Record<string, any> | undefined;
|
|
@@ -26231,7 +26307,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
26231
26307
|
} | undefined;
|
|
26232
26308
|
}>;
|
|
26233
26309
|
behavior: z.ZodObject<{
|
|
26234
|
-
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode", "FigmaComponent"]>;
|
|
26310
|
+
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode", "FigmaComponent", "File"]>;
|
|
26235
26311
|
items: z.ZodOptional<z.ZodObject<{
|
|
26236
26312
|
numberOfItems: z.ZodNumber;
|
|
26237
26313
|
allowLinks: z.ZodBoolean;
|
|
@@ -26256,7 +26332,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
26256
26332
|
maxSelected: number;
|
|
26257
26333
|
}>>;
|
|
26258
26334
|
}, "strip", z.ZodTypeAny, {
|
|
26259
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "Item";
|
|
26335
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "File" | "Asset" | "FigmaNode" | "Item";
|
|
26260
26336
|
items?: {
|
|
26261
26337
|
numberOfItems: number;
|
|
26262
26338
|
allowLinks: boolean;
|
|
@@ -26267,7 +26343,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
26267
26343
|
maxSelected: number;
|
|
26268
26344
|
} | undefined;
|
|
26269
26345
|
}, {
|
|
26270
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "Item";
|
|
26346
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "File" | "Asset" | "FigmaNode" | "Item";
|
|
26271
26347
|
items?: {
|
|
26272
26348
|
numberOfItems: number;
|
|
26273
26349
|
allowLinks: boolean;
|
|
@@ -26322,7 +26398,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
26322
26398
|
}, "strip", z.ZodTypeAny, {
|
|
26323
26399
|
item: {
|
|
26324
26400
|
properties: {
|
|
26325
|
-
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";
|
|
26401
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
26326
26402
|
id: string;
|
|
26327
26403
|
name: string;
|
|
26328
26404
|
options?: Record<string, any> | undefined;
|
|
@@ -26365,7 +26441,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
26365
26441
|
name: string;
|
|
26366
26442
|
description: string;
|
|
26367
26443
|
behavior: {
|
|
26368
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "Item";
|
|
26444
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "File" | "Asset" | "FigmaNode" | "Item";
|
|
26369
26445
|
items?: {
|
|
26370
26446
|
numberOfItems: number;
|
|
26371
26447
|
allowLinks: boolean;
|
|
@@ -26395,7 +26471,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
26395
26471
|
}, {
|
|
26396
26472
|
item: {
|
|
26397
26473
|
properties: {
|
|
26398
|
-
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";
|
|
26474
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
26399
26475
|
id: string;
|
|
26400
26476
|
name: string;
|
|
26401
26477
|
options?: Record<string, any> | undefined;
|
|
@@ -26438,7 +26514,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
26438
26514
|
name: string;
|
|
26439
26515
|
description: string;
|
|
26440
26516
|
behavior: {
|
|
26441
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "Item";
|
|
26517
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "File" | "Asset" | "FigmaNode" | "Item";
|
|
26442
26518
|
items?: {
|
|
26443
26519
|
numberOfItems: number;
|
|
26444
26520
|
allowLinks: boolean;
|
|
@@ -42875,7 +42951,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
42875
42951
|
shortPersistentId: z.ZodString;
|
|
42876
42952
|
data: z.ZodObject<{
|
|
42877
42953
|
blocks: z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
42878
|
-
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";
|
|
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" | "File";
|
|
42879
42955
|
persistentId: string;
|
|
42880
42956
|
asset?: {
|
|
42881
42957
|
type: "image" | "figmaFrame";
|
|
@@ -42903,6 +42979,13 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
42903
42979
|
} | null | undefined;
|
|
42904
42980
|
} | null | undefined;
|
|
42905
42981
|
} | null | undefined;
|
|
42982
|
+
files?: {
|
|
42983
|
+
entityId: string;
|
|
42984
|
+
entityMeta?: {
|
|
42985
|
+
description?: string | undefined;
|
|
42986
|
+
title?: string | undefined;
|
|
42987
|
+
} | undefined;
|
|
42988
|
+
}[] | null | undefined;
|
|
42906
42989
|
theme?: {
|
|
42907
42990
|
type: "Override" | "Comparison";
|
|
42908
42991
|
themeIds: string[];
|
|
@@ -43156,7 +43239,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
43156
43239
|
} | null | undefined;
|
|
43157
43240
|
} & {
|
|
43158
43241
|
children: ({
|
|
43159
|
-
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";
|
|
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" | "File";
|
|
43160
43243
|
persistentId: string;
|
|
43161
43244
|
asset?: {
|
|
43162
43245
|
type: "image" | "figmaFrame";
|
|
@@ -43184,6 +43267,13 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
43184
43267
|
} | null | undefined;
|
|
43185
43268
|
} | null | undefined;
|
|
43186
43269
|
} | null | undefined;
|
|
43270
|
+
files?: {
|
|
43271
|
+
entityId: string;
|
|
43272
|
+
entityMeta?: {
|
|
43273
|
+
description?: string | undefined;
|
|
43274
|
+
title?: string | undefined;
|
|
43275
|
+
} | undefined;
|
|
43276
|
+
}[] | null | undefined;
|
|
43187
43277
|
theme?: {
|
|
43188
43278
|
type: "Override" | "Comparison";
|
|
43189
43279
|
themeIds: string[];
|
|
@@ -43783,7 +43873,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
43783
43873
|
} | undefined;
|
|
43784
43874
|
}, {
|
|
43785
43875
|
blocks: ({
|
|
43786
|
-
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";
|
|
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" | "File";
|
|
43787
43877
|
persistentId: string;
|
|
43788
43878
|
asset?: {
|
|
43789
43879
|
type: "image" | "figmaFrame";
|
|
@@ -43811,6 +43901,13 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
43811
43901
|
} | null | undefined;
|
|
43812
43902
|
} | null | undefined;
|
|
43813
43903
|
} | null | undefined;
|
|
43904
|
+
files?: {
|
|
43905
|
+
entityId: string;
|
|
43906
|
+
entityMeta?: {
|
|
43907
|
+
description?: string | undefined;
|
|
43908
|
+
title?: string | undefined;
|
|
43909
|
+
} | undefined;
|
|
43910
|
+
}[] | null | undefined;
|
|
43814
43911
|
theme?: {
|
|
43815
43912
|
type: "Override" | "Comparison";
|
|
43816
43913
|
themeIds: string[];
|
|
@@ -44064,7 +44161,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
44064
44161
|
} | null | undefined;
|
|
44065
44162
|
} & {
|
|
44066
44163
|
children: ({
|
|
44067
|
-
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";
|
|
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" | "File";
|
|
44068
44165
|
persistentId: string;
|
|
44069
44166
|
asset?: {
|
|
44070
44167
|
type: "image" | "figmaFrame";
|
|
@@ -44092,6 +44189,13 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
44092
44189
|
} | null | undefined;
|
|
44093
44190
|
} | null | undefined;
|
|
44094
44191
|
} | null | undefined;
|
|
44192
|
+
files?: {
|
|
44193
|
+
entityId: string;
|
|
44194
|
+
entityMeta?: {
|
|
44195
|
+
description?: string | undefined;
|
|
44196
|
+
title?: string | undefined;
|
|
44197
|
+
} | undefined;
|
|
44198
|
+
}[] | null | undefined;
|
|
44095
44199
|
theme?: {
|
|
44096
44200
|
type: "Override" | "Comparison";
|
|
44097
44201
|
themeIds: string[];
|
|
@@ -44915,7 +45019,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
44915
45019
|
};
|
|
44916
45020
|
}>;
|
|
44917
45021
|
blocks: z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
44918
|
-
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";
|
|
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" | "File";
|
|
44919
45023
|
persistentId: string;
|
|
44920
45024
|
asset?: {
|
|
44921
45025
|
type: "image" | "figmaFrame";
|
|
@@ -44943,6 +45047,13 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
44943
45047
|
} | null | undefined;
|
|
44944
45048
|
} | null | undefined;
|
|
44945
45049
|
} | null | undefined;
|
|
45050
|
+
files?: {
|
|
45051
|
+
entityId: string;
|
|
45052
|
+
entityMeta?: {
|
|
45053
|
+
description?: string | undefined;
|
|
45054
|
+
title?: string | undefined;
|
|
45055
|
+
} | undefined;
|
|
45056
|
+
}[] | null | undefined;
|
|
44946
45057
|
theme?: {
|
|
44947
45058
|
type: "Override" | "Comparison";
|
|
44948
45059
|
themeIds: string[];
|
|
@@ -45196,7 +45307,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
45196
45307
|
} | null | undefined;
|
|
45197
45308
|
} & {
|
|
45198
45309
|
children: ({
|
|
45199
|
-
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";
|
|
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" | "File";
|
|
45200
45311
|
persistentId: string;
|
|
45201
45312
|
asset?: {
|
|
45202
45313
|
type: "image" | "figmaFrame";
|
|
@@ -45224,6 +45335,13 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
45224
45335
|
} | null | undefined;
|
|
45225
45336
|
} | null | undefined;
|
|
45226
45337
|
} | null | undefined;
|
|
45338
|
+
files?: {
|
|
45339
|
+
entityId: string;
|
|
45340
|
+
entityMeta?: {
|
|
45341
|
+
description?: string | undefined;
|
|
45342
|
+
title?: string | undefined;
|
|
45343
|
+
} | undefined;
|
|
45344
|
+
}[] | null | undefined;
|
|
45227
45345
|
theme?: {
|
|
45228
45346
|
type: "Override" | "Comparison";
|
|
45229
45347
|
themeIds: string[];
|
|
@@ -45595,7 +45713,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
45595
45713
|
};
|
|
45596
45714
|
shortPersistentId: string;
|
|
45597
45715
|
blocks: ({
|
|
45598
|
-
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";
|
|
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" | "File";
|
|
45599
45717
|
persistentId: string;
|
|
45600
45718
|
asset?: {
|
|
45601
45719
|
type: "image" | "figmaFrame";
|
|
@@ -45623,6 +45741,13 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
45623
45741
|
} | null | undefined;
|
|
45624
45742
|
} | null | undefined;
|
|
45625
45743
|
} | null | undefined;
|
|
45744
|
+
files?: {
|
|
45745
|
+
entityId: string;
|
|
45746
|
+
entityMeta?: {
|
|
45747
|
+
description?: string | undefined;
|
|
45748
|
+
title?: string | undefined;
|
|
45749
|
+
} | undefined;
|
|
45750
|
+
}[] | null | undefined;
|
|
45626
45751
|
theme?: {
|
|
45627
45752
|
type: "Override" | "Comparison";
|
|
45628
45753
|
themeIds: string[];
|
|
@@ -45876,7 +46001,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
45876
46001
|
} | null | undefined;
|
|
45877
46002
|
} & {
|
|
45878
46003
|
children: ({
|
|
45879
|
-
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";
|
|
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" | "File";
|
|
45880
46005
|
persistentId: string;
|
|
45881
46006
|
asset?: {
|
|
45882
46007
|
type: "image" | "figmaFrame";
|
|
@@ -45904,6 +46029,13 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
|
|
|
45904
46029
|
} | null | undefined;
|
|
45905
46030
|
} | null | undefined;
|
|
45906
46031
|
} | null | undefined;
|
|
46032
|
+
files?: {
|
|
46033
|
+
entityId: string;
|
|
46034
|
+
entityMeta?: {
|
|
46035
|
+
description?: string | undefined;
|
|
46036
|
+
title?: string | undefined;
|
|
46037
|
+
} | undefined;
|
|
46038
|
+
}[] | null | undefined;
|
|
45907
46039
|
theme?: {
|
|
45908
46040
|
type: "Override" | "Comparison";
|
|
45909
46041
|
themeIds: string[];
|
|
@@ -106783,19 +106915,19 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
106783
106915
|
properties: z.ZodArray<z.ZodObject<{
|
|
106784
106916
|
id: z.ZodString;
|
|
106785
106917
|
name: z.ZodString;
|
|
106786
|
-
type: z.ZodEnum<["RichText", "MultiRichText", "RichTextEditor", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent"]>;
|
|
106918
|
+
type: z.ZodEnum<["RichText", "MultiRichText", "RichTextEditor", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent", "File"]>;
|
|
106787
106919
|
description: z.ZodOptional<z.ZodString>;
|
|
106788
106920
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
106789
106921
|
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
106790
106922
|
}, "strip", z.ZodTypeAny, {
|
|
106791
|
-
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";
|
|
106923
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
106792
106924
|
id: string;
|
|
106793
106925
|
name: string;
|
|
106794
106926
|
options?: Record<string, any> | undefined;
|
|
106795
106927
|
description?: string | undefined;
|
|
106796
106928
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
106797
106929
|
}, {
|
|
106798
|
-
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";
|
|
106930
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
106799
106931
|
id: string;
|
|
106800
106932
|
name: string;
|
|
106801
106933
|
options?: Record<string, any> | undefined;
|
|
@@ -106891,7 +107023,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
106891
107023
|
defaultVariantKey: z.ZodString;
|
|
106892
107024
|
}, "strip", z.ZodTypeAny, {
|
|
106893
107025
|
properties: {
|
|
106894
|
-
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";
|
|
107026
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
106895
107027
|
id: string;
|
|
106896
107028
|
name: string;
|
|
106897
107029
|
options?: Record<string, any> | undefined;
|
|
@@ -106930,7 +107062,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
106930
107062
|
} | undefined;
|
|
106931
107063
|
}, {
|
|
106932
107064
|
properties: {
|
|
106933
|
-
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";
|
|
107065
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
106934
107066
|
id: string;
|
|
106935
107067
|
name: string;
|
|
106936
107068
|
options?: Record<string, any> | undefined;
|
|
@@ -106969,7 +107101,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
106969
107101
|
} | undefined;
|
|
106970
107102
|
}>;
|
|
106971
107103
|
behavior: z.ZodObject<{
|
|
106972
|
-
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode", "FigmaComponent"]>;
|
|
107104
|
+
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode", "FigmaComponent", "File"]>;
|
|
106973
107105
|
items: z.ZodOptional<z.ZodObject<{
|
|
106974
107106
|
numberOfItems: z.ZodNumber;
|
|
106975
107107
|
allowLinks: z.ZodBoolean;
|
|
@@ -106994,7 +107126,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
106994
107126
|
maxSelected: number;
|
|
106995
107127
|
}>>;
|
|
106996
107128
|
}, "strip", z.ZodTypeAny, {
|
|
106997
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "Item";
|
|
107129
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "File" | "Asset" | "FigmaNode" | "Item";
|
|
106998
107130
|
items?: {
|
|
106999
107131
|
numberOfItems: number;
|
|
107000
107132
|
allowLinks: boolean;
|
|
@@ -107005,7 +107137,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107005
107137
|
maxSelected: number;
|
|
107006
107138
|
} | undefined;
|
|
107007
107139
|
}, {
|
|
107008
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "Item";
|
|
107140
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "File" | "Asset" | "FigmaNode" | "Item";
|
|
107009
107141
|
items?: {
|
|
107010
107142
|
numberOfItems: number;
|
|
107011
107143
|
allowLinks: boolean;
|
|
@@ -107060,7 +107192,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107060
107192
|
}, "strip", z.ZodTypeAny, {
|
|
107061
107193
|
item: {
|
|
107062
107194
|
properties: {
|
|
107063
|
-
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";
|
|
107195
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
107064
107196
|
id: string;
|
|
107065
107197
|
name: string;
|
|
107066
107198
|
options?: Record<string, any> | undefined;
|
|
@@ -107103,7 +107235,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107103
107235
|
name: string;
|
|
107104
107236
|
description: string;
|
|
107105
107237
|
behavior: {
|
|
107106
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "Item";
|
|
107238
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "File" | "Asset" | "FigmaNode" | "Item";
|
|
107107
107239
|
items?: {
|
|
107108
107240
|
numberOfItems: number;
|
|
107109
107241
|
allowLinks: boolean;
|
|
@@ -107133,7 +107265,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107133
107265
|
}, {
|
|
107134
107266
|
item: {
|
|
107135
107267
|
properties: {
|
|
107136
|
-
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";
|
|
107268
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
107137
107269
|
id: string;
|
|
107138
107270
|
name: string;
|
|
107139
107271
|
options?: Record<string, any> | undefined;
|
|
@@ -107176,7 +107308,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107176
107308
|
name: string;
|
|
107177
107309
|
description: string;
|
|
107178
107310
|
behavior: {
|
|
107179
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "Item";
|
|
107311
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "File" | "Asset" | "FigmaNode" | "Item";
|
|
107180
107312
|
items?: {
|
|
107181
107313
|
numberOfItems: number;
|
|
107182
107314
|
allowLinks: boolean;
|
|
@@ -107208,7 +107340,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107208
107340
|
definitions: {
|
|
107209
107341
|
item: {
|
|
107210
107342
|
properties: {
|
|
107211
|
-
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";
|
|
107343
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
107212
107344
|
id: string;
|
|
107213
107345
|
name: string;
|
|
107214
107346
|
options?: Record<string, any> | undefined;
|
|
@@ -107251,7 +107383,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107251
107383
|
name: string;
|
|
107252
107384
|
description: string;
|
|
107253
107385
|
behavior: {
|
|
107254
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "Item";
|
|
107386
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "File" | "Asset" | "FigmaNode" | "Item";
|
|
107255
107387
|
items?: {
|
|
107256
107388
|
numberOfItems: number;
|
|
107257
107389
|
allowLinks: boolean;
|
|
@@ -107283,7 +107415,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107283
107415
|
definitions: {
|
|
107284
107416
|
item: {
|
|
107285
107417
|
properties: {
|
|
107286
|
-
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";
|
|
107418
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
107287
107419
|
id: string;
|
|
107288
107420
|
name: string;
|
|
107289
107421
|
options?: Record<string, any> | undefined;
|
|
@@ -107326,7 +107458,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
107326
107458
|
name: string;
|
|
107327
107459
|
description: string;
|
|
107328
107460
|
behavior: {
|
|
107329
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "Item";
|
|
107461
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "File" | "Asset" | "FigmaNode" | "Item";
|
|
107330
107462
|
items?: {
|
|
107331
107463
|
numberOfItems: number;
|
|
107332
107464
|
allowLinks: boolean;
|
|
@@ -110358,7 +110490,7 @@ declare class DocumentationEndpoint {
|
|
|
110358
110490
|
definitions: {
|
|
110359
110491
|
item: {
|
|
110360
110492
|
properties: {
|
|
110361
|
-
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";
|
|
110493
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
110362
110494
|
id: string;
|
|
110363
110495
|
name: string;
|
|
110364
110496
|
options?: Record<string, any> | undefined;
|
|
@@ -110401,7 +110533,7 @@ declare class DocumentationEndpoint {
|
|
|
110401
110533
|
name: string;
|
|
110402
110534
|
description: string;
|
|
110403
110535
|
behavior: {
|
|
110404
|
-
dataType: "Token" | "Component" | "FigmaComponent" | "Asset" | "FigmaNode" | "Item";
|
|
110536
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "File" | "Asset" | "FigmaNode" | "Item";
|
|
110405
110537
|
items?: {
|
|
110406
110538
|
numberOfItems: number;
|
|
110407
110539
|
allowLinks: boolean;
|
|
@@ -112317,6 +112449,16 @@ declare class FilesEndpoint {
|
|
|
112317
112449
|
finalize(designSystemId: string, versionId: string, body: DTOFileUploadFinalizePayload): Promise<{
|
|
112318
112450
|
ok: true;
|
|
112319
112451
|
}>;
|
|
112452
|
+
get(designSystemId: string, versionId: string, body: DTOFilesGetPayload): Promise<{
|
|
112453
|
+
files: {
|
|
112454
|
+
name: string;
|
|
112455
|
+
url: string;
|
|
112456
|
+
fileId: string;
|
|
112457
|
+
size: number;
|
|
112458
|
+
checksum: string;
|
|
112459
|
+
referencePersistentId: string;
|
|
112460
|
+
}[];
|
|
112461
|
+
}>;
|
|
112320
112462
|
}
|
|
112321
112463
|
|
|
112322
112464
|
declare class ImportJobsEndpoint {
|
|
@@ -119164,7 +119306,7 @@ declare const BlockParsingUtils: {
|
|
|
119164
119306
|
};
|
|
119165
119307
|
declare const BlockDefinitionUtils: {
|
|
119166
119308
|
firstRichTextProperty(definition: PageBlockDefinition): {
|
|
119167
|
-
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";
|
|
119309
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
119168
119310
|
id: string;
|
|
119169
119311
|
name: string;
|
|
119170
119312
|
options?: Record<string, any> | undefined;
|
|
@@ -119172,7 +119314,7 @@ declare const BlockDefinitionUtils: {
|
|
|
119172
119314
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
119173
119315
|
} | undefined;
|
|
119174
119316
|
firstMultiRichTextProperty(definition: PageBlockDefinition): {
|
|
119175
|
-
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";
|
|
119317
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
119176
119318
|
id: string;
|
|
119177
119319
|
name: string;
|
|
119178
119320
|
options?: Record<string, any> | undefined;
|
|
@@ -119180,7 +119322,7 @@ declare const BlockDefinitionUtils: {
|
|
|
119180
119322
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
119181
119323
|
} | undefined;
|
|
119182
119324
|
firstTableProperty(definition: PageBlockDefinition): {
|
|
119183
|
-
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";
|
|
119325
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
119184
119326
|
id: string;
|
|
119185
119327
|
name: string;
|
|
119186
119328
|
options?: Record<string, any> | undefined;
|
|
@@ -119188,7 +119330,7 @@ declare const BlockDefinitionUtils: {
|
|
|
119188
119330
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
119189
119331
|
} | undefined;
|
|
119190
119332
|
firstEmbedProperty(definition: PageBlockDefinition): {
|
|
119191
|
-
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";
|
|
119333
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
119192
119334
|
id: string;
|
|
119193
119335
|
name: string;
|
|
119194
119336
|
options?: Record<string, any> | undefined;
|
|
@@ -119196,7 +119338,7 @@ declare const BlockDefinitionUtils: {
|
|
|
119196
119338
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
119197
119339
|
} | undefined;
|
|
119198
119340
|
richTextProperty(definition: PageBlockDefinition, propertyKey: string): {
|
|
119199
|
-
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";
|
|
119341
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
119200
119342
|
id: string;
|
|
119201
119343
|
name: string;
|
|
119202
119344
|
options?: Record<string, any> | undefined;
|
|
@@ -119204,7 +119346,7 @@ declare const BlockDefinitionUtils: {
|
|
|
119204
119346
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
119205
119347
|
};
|
|
119206
119348
|
property(definition: PageBlockDefinition, propertyKey: string, expectedPropertyType?: PageBlockDefinitionPropertyType): {
|
|
119207
|
-
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";
|
|
119349
|
+
type: "Boolean" | "Number" | "Code" | "Image" | "Text" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Divider" | "Table" | "File" | "Markdown" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "FigmaNode" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
119208
119350
|
id: string;
|
|
119209
119351
|
name: string;
|
|
119210
119352
|
options?: Record<string, any> | undefined;
|
|
@@ -119479,4 +119621,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
119479
119621
|
reason: ValidationErrorReason | undefined;
|
|
119480
119622
|
};
|
|
119481
119623
|
|
|
119482
|
-
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, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, 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 };
|
|
119624
|
+
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, 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 };
|