@supernova-studio/client 0.48.0 → 0.48.1
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 +813 -11
- package/dist/index.d.ts +813 -11
- package/dist/index.js +20 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/documentation/block-definition.ts +28 -0
- package/src/api/dto/documentation/index.ts +1 -0
- package/src/api/payloads/documentation/block-definitions.ts +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _supernova_studio_model from '@supernova-studio/model';
|
|
2
|
-
import { DocumentationGroupV1, DocumentationPageV1, DocumentationPageV2, PageBlockV1, ElementGroup, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, IntegrationCredentials, SsoProvider, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType, DocumentationPageSnapshot, ElementGroupSnapshot } from '@supernova-studio/model';
|
|
2
|
+
import { DocumentationGroupV1, DocumentationPageV1, DocumentationPageV2, PageBlockDefinitionLayout as PageBlockDefinitionLayout$1, PageBlockV1, ElementGroup, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, IntegrationCredentials, SsoProvider, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType, DocumentationPageSnapshot, ElementGroupSnapshot } from '@supernova-studio/model';
|
|
3
3
|
import * as zod from 'zod';
|
|
4
4
|
import { z, ZodTypeDef } from 'zod';
|
|
5
5
|
import * as Y from 'yjs';
|
|
@@ -5841,6 +5841,787 @@ declare const DTOGetDocumentationPageAnchorsResponse: z.ZodObject<{
|
|
|
5841
5841
|
}>;
|
|
5842
5842
|
type DTOGetDocumentationPageAnchorsResponse = z.infer<typeof DTOGetDocumentationPageAnchorsResponse>;
|
|
5843
5843
|
|
|
5844
|
+
declare const DTOPageBlockDefinitionBehavior: z.ZodObject<{
|
|
5845
|
+
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode", "FigmaComponent"]>;
|
|
5846
|
+
items: z.ZodOptional<z.ZodObject<{
|
|
5847
|
+
numberOfItems: z.ZodNumber;
|
|
5848
|
+
allowLinks: z.ZodBoolean;
|
|
5849
|
+
newItemLabel: z.ZodOptional<z.ZodString>;
|
|
5850
|
+
}, "strip", z.ZodTypeAny, {
|
|
5851
|
+
numberOfItems: number;
|
|
5852
|
+
allowLinks: boolean;
|
|
5853
|
+
newItemLabel?: string | undefined;
|
|
5854
|
+
}, {
|
|
5855
|
+
numberOfItems: number;
|
|
5856
|
+
allowLinks: boolean;
|
|
5857
|
+
newItemLabel?: string | undefined;
|
|
5858
|
+
}>>;
|
|
5859
|
+
entities: z.ZodOptional<z.ZodObject<{
|
|
5860
|
+
selectionType: z.ZodEnum<["Entity", "Group", "EntityAndGroup"]>;
|
|
5861
|
+
maxSelected: z.ZodNumber;
|
|
5862
|
+
}, "strip", z.ZodTypeAny, {
|
|
5863
|
+
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
5864
|
+
maxSelected: number;
|
|
5865
|
+
}, {
|
|
5866
|
+
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
5867
|
+
maxSelected: number;
|
|
5868
|
+
}>>;
|
|
5869
|
+
}, "strip", z.ZodTypeAny, {
|
|
5870
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "FigmaNode" | "Asset" | "Item";
|
|
5871
|
+
items?: {
|
|
5872
|
+
numberOfItems: number;
|
|
5873
|
+
allowLinks: boolean;
|
|
5874
|
+
newItemLabel?: string | undefined;
|
|
5875
|
+
} | undefined;
|
|
5876
|
+
entities?: {
|
|
5877
|
+
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
5878
|
+
maxSelected: number;
|
|
5879
|
+
} | undefined;
|
|
5880
|
+
}, {
|
|
5881
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "FigmaNode" | "Asset" | "Item";
|
|
5882
|
+
items?: {
|
|
5883
|
+
numberOfItems: number;
|
|
5884
|
+
allowLinks: boolean;
|
|
5885
|
+
newItemLabel?: string | undefined;
|
|
5886
|
+
} | undefined;
|
|
5887
|
+
entities?: {
|
|
5888
|
+
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
5889
|
+
maxSelected: number;
|
|
5890
|
+
} | undefined;
|
|
5891
|
+
}>;
|
|
5892
|
+
type DTOPageBlockDefinitionBehavior = z.infer<typeof DTOPageBlockDefinitionBehavior>;
|
|
5893
|
+
declare const DTOPageBlockDefinitionItem: z.ZodObject<{
|
|
5894
|
+
properties: z.ZodArray<z.ZodObject<{
|
|
5895
|
+
id: z.ZodString;
|
|
5896
|
+
name: z.ZodString;
|
|
5897
|
+
type: z.ZodEnum<["RichText", "MultiRichText", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent"]>;
|
|
5898
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5899
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
5900
|
+
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
5901
|
+
}, "strip", z.ZodTypeAny, {
|
|
5902
|
+
id: string;
|
|
5903
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
5904
|
+
name: string;
|
|
5905
|
+
options?: Record<string, any> | undefined;
|
|
5906
|
+
description?: string | undefined;
|
|
5907
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
5908
|
+
}, {
|
|
5909
|
+
id: string;
|
|
5910
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
5911
|
+
name: string;
|
|
5912
|
+
options?: Record<string, any> | undefined;
|
|
5913
|
+
description?: string | undefined;
|
|
5914
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
5915
|
+
}>, "many">;
|
|
5916
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
5917
|
+
isBordered: z.ZodOptional<z.ZodBoolean>;
|
|
5918
|
+
hasBackground: z.ZodOptional<z.ZodBoolean>;
|
|
5919
|
+
isEditorPresentationDifferent: z.ZodOptional<z.ZodBoolean>;
|
|
5920
|
+
showBlockHeaderInEditor: z.ZodOptional<z.ZodBoolean>;
|
|
5921
|
+
}, "strip", z.ZodTypeAny, {
|
|
5922
|
+
isBordered?: boolean | undefined;
|
|
5923
|
+
hasBackground?: boolean | undefined;
|
|
5924
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
5925
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
5926
|
+
}, {
|
|
5927
|
+
isBordered?: boolean | undefined;
|
|
5928
|
+
hasBackground?: boolean | undefined;
|
|
5929
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
5930
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
5931
|
+
}>>;
|
|
5932
|
+
variants: z.ZodArray<z.ZodObject<{
|
|
5933
|
+
id: z.ZodString;
|
|
5934
|
+
name: z.ZodString;
|
|
5935
|
+
image: z.ZodOptional<z.ZodString>;
|
|
5936
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5937
|
+
documentationLink: z.ZodOptional<z.ZodString>;
|
|
5938
|
+
layout: z.ZodType<PageBlockDefinitionLayout$1, z.ZodTypeDef, PageBlockDefinitionLayout$1>;
|
|
5939
|
+
maxColumns: z.ZodOptional<z.ZodNumber>;
|
|
5940
|
+
defaultColumns: z.ZodOptional<z.ZodNumber>;
|
|
5941
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
5942
|
+
isBordered: z.ZodOptional<z.ZodBoolean>;
|
|
5943
|
+
hasBackground: z.ZodOptional<z.ZodBoolean>;
|
|
5944
|
+
isEditorPresentationDifferent: z.ZodOptional<z.ZodBoolean>;
|
|
5945
|
+
showBlockHeaderInEditor: z.ZodOptional<z.ZodBoolean>;
|
|
5946
|
+
}, "strip", z.ZodTypeAny, {
|
|
5947
|
+
isBordered?: boolean | undefined;
|
|
5948
|
+
hasBackground?: boolean | undefined;
|
|
5949
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
5950
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
5951
|
+
}, {
|
|
5952
|
+
isBordered?: boolean | undefined;
|
|
5953
|
+
hasBackground?: boolean | undefined;
|
|
5954
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
5955
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
5956
|
+
}>>;
|
|
5957
|
+
}, "strip", z.ZodTypeAny, {
|
|
5958
|
+
id: string;
|
|
5959
|
+
name: string;
|
|
5960
|
+
layout: {
|
|
5961
|
+
type: "Column" | "Row";
|
|
5962
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
5963
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
5964
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
5965
|
+
} & {
|
|
5966
|
+
children: (string | PageBlockDefinitionLayout$1)[];
|
|
5967
|
+
};
|
|
5968
|
+
description?: string | undefined;
|
|
5969
|
+
image?: string | undefined;
|
|
5970
|
+
appearance?: {
|
|
5971
|
+
isBordered?: boolean | undefined;
|
|
5972
|
+
hasBackground?: boolean | undefined;
|
|
5973
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
5974
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
5975
|
+
} | undefined;
|
|
5976
|
+
documentationLink?: string | undefined;
|
|
5977
|
+
maxColumns?: number | undefined;
|
|
5978
|
+
defaultColumns?: number | undefined;
|
|
5979
|
+
}, {
|
|
5980
|
+
id: string;
|
|
5981
|
+
name: string;
|
|
5982
|
+
layout: {
|
|
5983
|
+
type: "Column" | "Row";
|
|
5984
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
5985
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
5986
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
5987
|
+
} & {
|
|
5988
|
+
children: (string | PageBlockDefinitionLayout$1)[];
|
|
5989
|
+
};
|
|
5990
|
+
description?: string | undefined;
|
|
5991
|
+
image?: string | undefined;
|
|
5992
|
+
appearance?: {
|
|
5993
|
+
isBordered?: boolean | undefined;
|
|
5994
|
+
hasBackground?: boolean | undefined;
|
|
5995
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
5996
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
5997
|
+
} | undefined;
|
|
5998
|
+
documentationLink?: string | undefined;
|
|
5999
|
+
maxColumns?: number | undefined;
|
|
6000
|
+
defaultColumns?: number | undefined;
|
|
6001
|
+
}>, "many">;
|
|
6002
|
+
defaultVariantKey: z.ZodString;
|
|
6003
|
+
}, "strip", z.ZodTypeAny, {
|
|
6004
|
+
properties: {
|
|
6005
|
+
id: string;
|
|
6006
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
6007
|
+
name: string;
|
|
6008
|
+
options?: Record<string, any> | undefined;
|
|
6009
|
+
description?: string | undefined;
|
|
6010
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
6011
|
+
}[];
|
|
6012
|
+
variants: {
|
|
6013
|
+
id: string;
|
|
6014
|
+
name: string;
|
|
6015
|
+
layout: {
|
|
6016
|
+
type: "Column" | "Row";
|
|
6017
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
6018
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
6019
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
6020
|
+
} & {
|
|
6021
|
+
children: (string | PageBlockDefinitionLayout$1)[];
|
|
6022
|
+
};
|
|
6023
|
+
description?: string | undefined;
|
|
6024
|
+
image?: string | undefined;
|
|
6025
|
+
appearance?: {
|
|
6026
|
+
isBordered?: boolean | undefined;
|
|
6027
|
+
hasBackground?: boolean | undefined;
|
|
6028
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6029
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6030
|
+
} | undefined;
|
|
6031
|
+
documentationLink?: string | undefined;
|
|
6032
|
+
maxColumns?: number | undefined;
|
|
6033
|
+
defaultColumns?: number | undefined;
|
|
6034
|
+
}[];
|
|
6035
|
+
defaultVariantKey: string;
|
|
6036
|
+
appearance?: {
|
|
6037
|
+
isBordered?: boolean | undefined;
|
|
6038
|
+
hasBackground?: boolean | undefined;
|
|
6039
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6040
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6041
|
+
} | undefined;
|
|
6042
|
+
}, {
|
|
6043
|
+
properties: {
|
|
6044
|
+
id: string;
|
|
6045
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
6046
|
+
name: string;
|
|
6047
|
+
options?: Record<string, any> | undefined;
|
|
6048
|
+
description?: string | undefined;
|
|
6049
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
6050
|
+
}[];
|
|
6051
|
+
variants: {
|
|
6052
|
+
id: string;
|
|
6053
|
+
name: string;
|
|
6054
|
+
layout: {
|
|
6055
|
+
type: "Column" | "Row";
|
|
6056
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
6057
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
6058
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
6059
|
+
} & {
|
|
6060
|
+
children: (string | PageBlockDefinitionLayout$1)[];
|
|
6061
|
+
};
|
|
6062
|
+
description?: string | undefined;
|
|
6063
|
+
image?: string | undefined;
|
|
6064
|
+
appearance?: {
|
|
6065
|
+
isBordered?: boolean | undefined;
|
|
6066
|
+
hasBackground?: boolean | undefined;
|
|
6067
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6068
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6069
|
+
} | undefined;
|
|
6070
|
+
documentationLink?: string | undefined;
|
|
6071
|
+
maxColumns?: number | undefined;
|
|
6072
|
+
defaultColumns?: number | undefined;
|
|
6073
|
+
}[];
|
|
6074
|
+
defaultVariantKey: string;
|
|
6075
|
+
appearance?: {
|
|
6076
|
+
isBordered?: boolean | undefined;
|
|
6077
|
+
hasBackground?: boolean | undefined;
|
|
6078
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6079
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6080
|
+
} | undefined;
|
|
6081
|
+
}>;
|
|
6082
|
+
type DTOPageBlockDefinitionItem = z.infer<typeof DTOPageBlockDefinitionItem>;
|
|
6083
|
+
declare const DTOPageBlockDefinitionLayout: z.ZodType<PageBlockDefinitionLayout$1, z.ZodTypeDef, PageBlockDefinitionLayout$1>;
|
|
6084
|
+
type DTOPageBlockDefinitionLayout = z.infer<typeof DTOPageBlockDefinitionLayout>;
|
|
6085
|
+
declare const DTOPageBlockDefinitionVariant: z.ZodObject<{
|
|
6086
|
+
id: z.ZodString;
|
|
6087
|
+
name: z.ZodString;
|
|
6088
|
+
image: z.ZodOptional<z.ZodString>;
|
|
6089
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6090
|
+
documentationLink: z.ZodOptional<z.ZodString>;
|
|
6091
|
+
layout: z.ZodType<PageBlockDefinitionLayout$1, z.ZodTypeDef, PageBlockDefinitionLayout$1>;
|
|
6092
|
+
maxColumns: z.ZodOptional<z.ZodNumber>;
|
|
6093
|
+
defaultColumns: z.ZodOptional<z.ZodNumber>;
|
|
6094
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
6095
|
+
isBordered: z.ZodOptional<z.ZodBoolean>;
|
|
6096
|
+
hasBackground: z.ZodOptional<z.ZodBoolean>;
|
|
6097
|
+
isEditorPresentationDifferent: z.ZodOptional<z.ZodBoolean>;
|
|
6098
|
+
showBlockHeaderInEditor: z.ZodOptional<z.ZodBoolean>;
|
|
6099
|
+
}, "strip", z.ZodTypeAny, {
|
|
6100
|
+
isBordered?: boolean | undefined;
|
|
6101
|
+
hasBackground?: boolean | undefined;
|
|
6102
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6103
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6104
|
+
}, {
|
|
6105
|
+
isBordered?: boolean | undefined;
|
|
6106
|
+
hasBackground?: boolean | undefined;
|
|
6107
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6108
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6109
|
+
}>>;
|
|
6110
|
+
}, "strip", z.ZodTypeAny, {
|
|
6111
|
+
id: string;
|
|
6112
|
+
name: string;
|
|
6113
|
+
layout: {
|
|
6114
|
+
type: "Column" | "Row";
|
|
6115
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
6116
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
6117
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
6118
|
+
} & {
|
|
6119
|
+
children: (string | PageBlockDefinitionLayout$1)[];
|
|
6120
|
+
};
|
|
6121
|
+
description?: string | undefined;
|
|
6122
|
+
image?: string | undefined;
|
|
6123
|
+
appearance?: {
|
|
6124
|
+
isBordered?: boolean | undefined;
|
|
6125
|
+
hasBackground?: boolean | undefined;
|
|
6126
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6127
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6128
|
+
} | undefined;
|
|
6129
|
+
documentationLink?: string | undefined;
|
|
6130
|
+
maxColumns?: number | undefined;
|
|
6131
|
+
defaultColumns?: number | undefined;
|
|
6132
|
+
}, {
|
|
6133
|
+
id: string;
|
|
6134
|
+
name: string;
|
|
6135
|
+
layout: {
|
|
6136
|
+
type: "Column" | "Row";
|
|
6137
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
6138
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
6139
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
6140
|
+
} & {
|
|
6141
|
+
children: (string | PageBlockDefinitionLayout$1)[];
|
|
6142
|
+
};
|
|
6143
|
+
description?: string | undefined;
|
|
6144
|
+
image?: string | undefined;
|
|
6145
|
+
appearance?: {
|
|
6146
|
+
isBordered?: boolean | undefined;
|
|
6147
|
+
hasBackground?: boolean | undefined;
|
|
6148
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6149
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6150
|
+
} | undefined;
|
|
6151
|
+
documentationLink?: string | undefined;
|
|
6152
|
+
maxColumns?: number | undefined;
|
|
6153
|
+
defaultColumns?: number | undefined;
|
|
6154
|
+
}>;
|
|
6155
|
+
type DTOPageBlockDefinitionVariant = z.infer<typeof DTOPageBlockDefinitionVariant>;
|
|
6156
|
+
declare const DTOPageBlockDefinitionProperty: z.ZodObject<{
|
|
6157
|
+
id: z.ZodString;
|
|
6158
|
+
name: z.ZodString;
|
|
6159
|
+
type: z.ZodEnum<["RichText", "MultiRichText", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent"]>;
|
|
6160
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6161
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
6162
|
+
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
6163
|
+
}, "strip", z.ZodTypeAny, {
|
|
6164
|
+
id: string;
|
|
6165
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
6166
|
+
name: string;
|
|
6167
|
+
options?: Record<string, any> | undefined;
|
|
6168
|
+
description?: string | undefined;
|
|
6169
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
6170
|
+
}, {
|
|
6171
|
+
id: string;
|
|
6172
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
6173
|
+
name: string;
|
|
6174
|
+
options?: Record<string, any> | undefined;
|
|
6175
|
+
description?: string | undefined;
|
|
6176
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
6177
|
+
}>;
|
|
6178
|
+
type DTOPageBlockDefinitionProperty = z.infer<typeof DTOPageBlockDefinitionProperty>;
|
|
6179
|
+
declare const DTOPageBlockColorV2: z.ZodObject<{
|
|
6180
|
+
value: z.ZodString;
|
|
6181
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
6182
|
+
}, "strip", z.ZodTypeAny, {
|
|
6183
|
+
value: string;
|
|
6184
|
+
referencedTokenId?: string | undefined;
|
|
6185
|
+
}, {
|
|
6186
|
+
value: string;
|
|
6187
|
+
referencedTokenId?: string | undefined;
|
|
6188
|
+
}>;
|
|
6189
|
+
type DTOPageBlockColorV2 = z.infer<typeof DTOPageBlockColorV2>;
|
|
6190
|
+
declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
6191
|
+
id: z.ZodString;
|
|
6192
|
+
name: z.ZodString;
|
|
6193
|
+
description: z.ZodString;
|
|
6194
|
+
category: z.ZodEnum<["Text", "Layout", "Media", "Embed", "Figma", "Code", "Guidelines", "Tokens", "Components", "Assets", "Data", "Other"]>;
|
|
6195
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
6196
|
+
documentationLink: z.ZodOptional<z.ZodString>;
|
|
6197
|
+
searchKeywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6198
|
+
item: z.ZodObject<{
|
|
6199
|
+
properties: z.ZodArray<z.ZodObject<{
|
|
6200
|
+
id: z.ZodString;
|
|
6201
|
+
name: z.ZodString;
|
|
6202
|
+
type: z.ZodEnum<["RichText", "MultiRichText", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent"]>;
|
|
6203
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6204
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
6205
|
+
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
6206
|
+
}, "strip", z.ZodTypeAny, {
|
|
6207
|
+
id: string;
|
|
6208
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
6209
|
+
name: string;
|
|
6210
|
+
options?: Record<string, any> | undefined;
|
|
6211
|
+
description?: string | undefined;
|
|
6212
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
6213
|
+
}, {
|
|
6214
|
+
id: string;
|
|
6215
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
6216
|
+
name: string;
|
|
6217
|
+
options?: Record<string, any> | undefined;
|
|
6218
|
+
description?: string | undefined;
|
|
6219
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
6220
|
+
}>, "many">;
|
|
6221
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
6222
|
+
isBordered: z.ZodOptional<z.ZodBoolean>;
|
|
6223
|
+
hasBackground: z.ZodOptional<z.ZodBoolean>;
|
|
6224
|
+
isEditorPresentationDifferent: z.ZodOptional<z.ZodBoolean>;
|
|
6225
|
+
showBlockHeaderInEditor: z.ZodOptional<z.ZodBoolean>;
|
|
6226
|
+
}, "strip", z.ZodTypeAny, {
|
|
6227
|
+
isBordered?: boolean | undefined;
|
|
6228
|
+
hasBackground?: boolean | undefined;
|
|
6229
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6230
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6231
|
+
}, {
|
|
6232
|
+
isBordered?: boolean | undefined;
|
|
6233
|
+
hasBackground?: boolean | undefined;
|
|
6234
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6235
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6236
|
+
}>>;
|
|
6237
|
+
variants: z.ZodArray<z.ZodObject<{
|
|
6238
|
+
id: z.ZodString;
|
|
6239
|
+
name: z.ZodString;
|
|
6240
|
+
image: z.ZodOptional<z.ZodString>;
|
|
6241
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6242
|
+
documentationLink: z.ZodOptional<z.ZodString>;
|
|
6243
|
+
layout: z.ZodType<PageBlockDefinitionLayout$1, z.ZodTypeDef, PageBlockDefinitionLayout$1>;
|
|
6244
|
+
maxColumns: z.ZodOptional<z.ZodNumber>;
|
|
6245
|
+
defaultColumns: z.ZodOptional<z.ZodNumber>;
|
|
6246
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
6247
|
+
isBordered: z.ZodOptional<z.ZodBoolean>;
|
|
6248
|
+
hasBackground: z.ZodOptional<z.ZodBoolean>;
|
|
6249
|
+
isEditorPresentationDifferent: z.ZodOptional<z.ZodBoolean>;
|
|
6250
|
+
showBlockHeaderInEditor: z.ZodOptional<z.ZodBoolean>;
|
|
6251
|
+
}, "strip", z.ZodTypeAny, {
|
|
6252
|
+
isBordered?: boolean | undefined;
|
|
6253
|
+
hasBackground?: boolean | undefined;
|
|
6254
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6255
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6256
|
+
}, {
|
|
6257
|
+
isBordered?: boolean | undefined;
|
|
6258
|
+
hasBackground?: boolean | undefined;
|
|
6259
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6260
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6261
|
+
}>>;
|
|
6262
|
+
}, "strip", z.ZodTypeAny, {
|
|
6263
|
+
id: string;
|
|
6264
|
+
name: string;
|
|
6265
|
+
layout: {
|
|
6266
|
+
type: "Column" | "Row";
|
|
6267
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
6268
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
6269
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
6270
|
+
} & {
|
|
6271
|
+
children: (string | PageBlockDefinitionLayout$1)[];
|
|
6272
|
+
};
|
|
6273
|
+
description?: string | undefined;
|
|
6274
|
+
image?: string | undefined;
|
|
6275
|
+
appearance?: {
|
|
6276
|
+
isBordered?: boolean | undefined;
|
|
6277
|
+
hasBackground?: boolean | undefined;
|
|
6278
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6279
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6280
|
+
} | undefined;
|
|
6281
|
+
documentationLink?: string | undefined;
|
|
6282
|
+
maxColumns?: number | undefined;
|
|
6283
|
+
defaultColumns?: number | undefined;
|
|
6284
|
+
}, {
|
|
6285
|
+
id: string;
|
|
6286
|
+
name: string;
|
|
6287
|
+
layout: {
|
|
6288
|
+
type: "Column" | "Row";
|
|
6289
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
6290
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
6291
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
6292
|
+
} & {
|
|
6293
|
+
children: (string | PageBlockDefinitionLayout$1)[];
|
|
6294
|
+
};
|
|
6295
|
+
description?: string | undefined;
|
|
6296
|
+
image?: string | undefined;
|
|
6297
|
+
appearance?: {
|
|
6298
|
+
isBordered?: boolean | undefined;
|
|
6299
|
+
hasBackground?: boolean | undefined;
|
|
6300
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6301
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6302
|
+
} | undefined;
|
|
6303
|
+
documentationLink?: string | undefined;
|
|
6304
|
+
maxColumns?: number | undefined;
|
|
6305
|
+
defaultColumns?: number | undefined;
|
|
6306
|
+
}>, "many">;
|
|
6307
|
+
defaultVariantKey: z.ZodString;
|
|
6308
|
+
}, "strip", z.ZodTypeAny, {
|
|
6309
|
+
properties: {
|
|
6310
|
+
id: string;
|
|
6311
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
6312
|
+
name: string;
|
|
6313
|
+
options?: Record<string, any> | undefined;
|
|
6314
|
+
description?: string | undefined;
|
|
6315
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
6316
|
+
}[];
|
|
6317
|
+
variants: {
|
|
6318
|
+
id: string;
|
|
6319
|
+
name: string;
|
|
6320
|
+
layout: {
|
|
6321
|
+
type: "Column" | "Row";
|
|
6322
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
6323
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
6324
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
6325
|
+
} & {
|
|
6326
|
+
children: (string | PageBlockDefinitionLayout$1)[];
|
|
6327
|
+
};
|
|
6328
|
+
description?: string | undefined;
|
|
6329
|
+
image?: string | undefined;
|
|
6330
|
+
appearance?: {
|
|
6331
|
+
isBordered?: boolean | undefined;
|
|
6332
|
+
hasBackground?: boolean | undefined;
|
|
6333
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6334
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6335
|
+
} | undefined;
|
|
6336
|
+
documentationLink?: string | undefined;
|
|
6337
|
+
maxColumns?: number | undefined;
|
|
6338
|
+
defaultColumns?: number | undefined;
|
|
6339
|
+
}[];
|
|
6340
|
+
defaultVariantKey: string;
|
|
6341
|
+
appearance?: {
|
|
6342
|
+
isBordered?: boolean | undefined;
|
|
6343
|
+
hasBackground?: boolean | undefined;
|
|
6344
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6345
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6346
|
+
} | undefined;
|
|
6347
|
+
}, {
|
|
6348
|
+
properties: {
|
|
6349
|
+
id: string;
|
|
6350
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
6351
|
+
name: string;
|
|
6352
|
+
options?: Record<string, any> | undefined;
|
|
6353
|
+
description?: string | undefined;
|
|
6354
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
6355
|
+
}[];
|
|
6356
|
+
variants: {
|
|
6357
|
+
id: string;
|
|
6358
|
+
name: string;
|
|
6359
|
+
layout: {
|
|
6360
|
+
type: "Column" | "Row";
|
|
6361
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
6362
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
6363
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
6364
|
+
} & {
|
|
6365
|
+
children: (string | PageBlockDefinitionLayout$1)[];
|
|
6366
|
+
};
|
|
6367
|
+
description?: string | undefined;
|
|
6368
|
+
image?: string | undefined;
|
|
6369
|
+
appearance?: {
|
|
6370
|
+
isBordered?: boolean | undefined;
|
|
6371
|
+
hasBackground?: boolean | undefined;
|
|
6372
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6373
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6374
|
+
} | undefined;
|
|
6375
|
+
documentationLink?: string | undefined;
|
|
6376
|
+
maxColumns?: number | undefined;
|
|
6377
|
+
defaultColumns?: number | undefined;
|
|
6378
|
+
}[];
|
|
6379
|
+
defaultVariantKey: string;
|
|
6380
|
+
appearance?: {
|
|
6381
|
+
isBordered?: boolean | undefined;
|
|
6382
|
+
hasBackground?: boolean | undefined;
|
|
6383
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6384
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6385
|
+
} | undefined;
|
|
6386
|
+
}>;
|
|
6387
|
+
behavior: z.ZodObject<{
|
|
6388
|
+
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode", "FigmaComponent"]>;
|
|
6389
|
+
items: z.ZodOptional<z.ZodObject<{
|
|
6390
|
+
numberOfItems: z.ZodNumber;
|
|
6391
|
+
allowLinks: z.ZodBoolean;
|
|
6392
|
+
newItemLabel: z.ZodOptional<z.ZodString>;
|
|
6393
|
+
}, "strip", z.ZodTypeAny, {
|
|
6394
|
+
numberOfItems: number;
|
|
6395
|
+
allowLinks: boolean;
|
|
6396
|
+
newItemLabel?: string | undefined;
|
|
6397
|
+
}, {
|
|
6398
|
+
numberOfItems: number;
|
|
6399
|
+
allowLinks: boolean;
|
|
6400
|
+
newItemLabel?: string | undefined;
|
|
6401
|
+
}>>;
|
|
6402
|
+
entities: z.ZodOptional<z.ZodObject<{
|
|
6403
|
+
selectionType: z.ZodEnum<["Entity", "Group", "EntityAndGroup"]>;
|
|
6404
|
+
maxSelected: z.ZodNumber;
|
|
6405
|
+
}, "strip", z.ZodTypeAny, {
|
|
6406
|
+
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
6407
|
+
maxSelected: number;
|
|
6408
|
+
}, {
|
|
6409
|
+
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
6410
|
+
maxSelected: number;
|
|
6411
|
+
}>>;
|
|
6412
|
+
}, "strip", z.ZodTypeAny, {
|
|
6413
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "FigmaNode" | "Asset" | "Item";
|
|
6414
|
+
items?: {
|
|
6415
|
+
numberOfItems: number;
|
|
6416
|
+
allowLinks: boolean;
|
|
6417
|
+
newItemLabel?: string | undefined;
|
|
6418
|
+
} | undefined;
|
|
6419
|
+
entities?: {
|
|
6420
|
+
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
6421
|
+
maxSelected: number;
|
|
6422
|
+
} | undefined;
|
|
6423
|
+
}, {
|
|
6424
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "FigmaNode" | "Asset" | "Item";
|
|
6425
|
+
items?: {
|
|
6426
|
+
numberOfItems: number;
|
|
6427
|
+
allowLinks: boolean;
|
|
6428
|
+
newItemLabel?: string | undefined;
|
|
6429
|
+
} | undefined;
|
|
6430
|
+
entities?: {
|
|
6431
|
+
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
6432
|
+
maxSelected: number;
|
|
6433
|
+
} | undefined;
|
|
6434
|
+
}>;
|
|
6435
|
+
editorOptions: z.ZodObject<{
|
|
6436
|
+
onboarding: z.ZodOptional<z.ZodObject<{
|
|
6437
|
+
helpText: z.ZodString;
|
|
6438
|
+
documentationLink: z.ZodOptional<z.ZodString>;
|
|
6439
|
+
}, "strip", z.ZodTypeAny, {
|
|
6440
|
+
helpText: string;
|
|
6441
|
+
documentationLink?: string | undefined;
|
|
6442
|
+
}, {
|
|
6443
|
+
helpText: string;
|
|
6444
|
+
documentationLink?: string | undefined;
|
|
6445
|
+
}>>;
|
|
6446
|
+
newItemLabel: z.ZodOptional<z.ZodString>;
|
|
6447
|
+
}, "strip", z.ZodTypeAny, {
|
|
6448
|
+
newItemLabel?: string | undefined;
|
|
6449
|
+
onboarding?: {
|
|
6450
|
+
helpText: string;
|
|
6451
|
+
documentationLink?: string | undefined;
|
|
6452
|
+
} | undefined;
|
|
6453
|
+
}, {
|
|
6454
|
+
newItemLabel?: string | undefined;
|
|
6455
|
+
onboarding?: {
|
|
6456
|
+
helpText: string;
|
|
6457
|
+
documentationLink?: string | undefined;
|
|
6458
|
+
} | undefined;
|
|
6459
|
+
}>;
|
|
6460
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
6461
|
+
isBordered: z.ZodOptional<z.ZodBoolean>;
|
|
6462
|
+
hasBackground: z.ZodOptional<z.ZodBoolean>;
|
|
6463
|
+
isEditorPresentationDifferent: z.ZodOptional<z.ZodBoolean>;
|
|
6464
|
+
showBlockHeaderInEditor: z.ZodOptional<z.ZodBoolean>;
|
|
6465
|
+
}, "strip", z.ZodTypeAny, {
|
|
6466
|
+
isBordered?: boolean | undefined;
|
|
6467
|
+
hasBackground?: boolean | undefined;
|
|
6468
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6469
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6470
|
+
}, {
|
|
6471
|
+
isBordered?: boolean | undefined;
|
|
6472
|
+
hasBackground?: boolean | undefined;
|
|
6473
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6474
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6475
|
+
}>>;
|
|
6476
|
+
}, "strip", z.ZodTypeAny, {
|
|
6477
|
+
id: string;
|
|
6478
|
+
name: string;
|
|
6479
|
+
description: string;
|
|
6480
|
+
category: "Figma" | "Text" | "Code" | "Embed" | "Guidelines" | "Layout" | "Media" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
|
|
6481
|
+
item: {
|
|
6482
|
+
properties: {
|
|
6483
|
+
id: string;
|
|
6484
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
6485
|
+
name: string;
|
|
6486
|
+
options?: Record<string, any> | undefined;
|
|
6487
|
+
description?: string | undefined;
|
|
6488
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
6489
|
+
}[];
|
|
6490
|
+
variants: {
|
|
6491
|
+
id: string;
|
|
6492
|
+
name: string;
|
|
6493
|
+
layout: {
|
|
6494
|
+
type: "Column" | "Row";
|
|
6495
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
6496
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
6497
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
6498
|
+
} & {
|
|
6499
|
+
children: (string | PageBlockDefinitionLayout$1)[];
|
|
6500
|
+
};
|
|
6501
|
+
description?: string | undefined;
|
|
6502
|
+
image?: string | undefined;
|
|
6503
|
+
appearance?: {
|
|
6504
|
+
isBordered?: boolean | undefined;
|
|
6505
|
+
hasBackground?: boolean | undefined;
|
|
6506
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6507
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6508
|
+
} | undefined;
|
|
6509
|
+
documentationLink?: string | undefined;
|
|
6510
|
+
maxColumns?: number | undefined;
|
|
6511
|
+
defaultColumns?: number | undefined;
|
|
6512
|
+
}[];
|
|
6513
|
+
defaultVariantKey: string;
|
|
6514
|
+
appearance?: {
|
|
6515
|
+
isBordered?: boolean | undefined;
|
|
6516
|
+
hasBackground?: boolean | undefined;
|
|
6517
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6518
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6519
|
+
} | undefined;
|
|
6520
|
+
};
|
|
6521
|
+
behavior: {
|
|
6522
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "FigmaNode" | "Asset" | "Item";
|
|
6523
|
+
items?: {
|
|
6524
|
+
numberOfItems: number;
|
|
6525
|
+
allowLinks: boolean;
|
|
6526
|
+
newItemLabel?: string | undefined;
|
|
6527
|
+
} | undefined;
|
|
6528
|
+
entities?: {
|
|
6529
|
+
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
6530
|
+
maxSelected: number;
|
|
6531
|
+
} | undefined;
|
|
6532
|
+
};
|
|
6533
|
+
editorOptions: {
|
|
6534
|
+
newItemLabel?: string | undefined;
|
|
6535
|
+
onboarding?: {
|
|
6536
|
+
helpText: string;
|
|
6537
|
+
documentationLink?: string | undefined;
|
|
6538
|
+
} | undefined;
|
|
6539
|
+
};
|
|
6540
|
+
icon?: string | undefined;
|
|
6541
|
+
appearance?: {
|
|
6542
|
+
isBordered?: boolean | undefined;
|
|
6543
|
+
hasBackground?: boolean | undefined;
|
|
6544
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6545
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6546
|
+
} | undefined;
|
|
6547
|
+
documentationLink?: string | undefined;
|
|
6548
|
+
searchKeywords?: string[] | undefined;
|
|
6549
|
+
}, {
|
|
6550
|
+
id: string;
|
|
6551
|
+
name: string;
|
|
6552
|
+
description: string;
|
|
6553
|
+
category: "Figma" | "Text" | "Code" | "Embed" | "Guidelines" | "Layout" | "Media" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
|
|
6554
|
+
item: {
|
|
6555
|
+
properties: {
|
|
6556
|
+
id: string;
|
|
6557
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
6558
|
+
name: string;
|
|
6559
|
+
options?: Record<string, any> | undefined;
|
|
6560
|
+
description?: string | undefined;
|
|
6561
|
+
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
6562
|
+
}[];
|
|
6563
|
+
variants: {
|
|
6564
|
+
id: string;
|
|
6565
|
+
name: string;
|
|
6566
|
+
layout: {
|
|
6567
|
+
type: "Column" | "Row";
|
|
6568
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
6569
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
6570
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
6571
|
+
} & {
|
|
6572
|
+
children: (string | PageBlockDefinitionLayout$1)[];
|
|
6573
|
+
};
|
|
6574
|
+
description?: string | undefined;
|
|
6575
|
+
image?: string | undefined;
|
|
6576
|
+
appearance?: {
|
|
6577
|
+
isBordered?: boolean | undefined;
|
|
6578
|
+
hasBackground?: boolean | undefined;
|
|
6579
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6580
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6581
|
+
} | undefined;
|
|
6582
|
+
documentationLink?: string | undefined;
|
|
6583
|
+
maxColumns?: number | undefined;
|
|
6584
|
+
defaultColumns?: number | undefined;
|
|
6585
|
+
}[];
|
|
6586
|
+
defaultVariantKey: string;
|
|
6587
|
+
appearance?: {
|
|
6588
|
+
isBordered?: boolean | undefined;
|
|
6589
|
+
hasBackground?: boolean | undefined;
|
|
6590
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6591
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6592
|
+
} | undefined;
|
|
6593
|
+
};
|
|
6594
|
+
behavior: {
|
|
6595
|
+
dataType: "Token" | "Component" | "FigmaComponent" | "FigmaNode" | "Asset" | "Item";
|
|
6596
|
+
items?: {
|
|
6597
|
+
numberOfItems: number;
|
|
6598
|
+
allowLinks: boolean;
|
|
6599
|
+
newItemLabel?: string | undefined;
|
|
6600
|
+
} | undefined;
|
|
6601
|
+
entities?: {
|
|
6602
|
+
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
6603
|
+
maxSelected: number;
|
|
6604
|
+
} | undefined;
|
|
6605
|
+
};
|
|
6606
|
+
editorOptions: {
|
|
6607
|
+
newItemLabel?: string | undefined;
|
|
6608
|
+
onboarding?: {
|
|
6609
|
+
helpText: string;
|
|
6610
|
+
documentationLink?: string | undefined;
|
|
6611
|
+
} | undefined;
|
|
6612
|
+
};
|
|
6613
|
+
icon?: string | undefined;
|
|
6614
|
+
appearance?: {
|
|
6615
|
+
isBordered?: boolean | undefined;
|
|
6616
|
+
hasBackground?: boolean | undefined;
|
|
6617
|
+
isEditorPresentationDifferent?: boolean | undefined;
|
|
6618
|
+
showBlockHeaderInEditor?: boolean | undefined;
|
|
6619
|
+
} | undefined;
|
|
6620
|
+
documentationLink?: string | undefined;
|
|
6621
|
+
searchKeywords?: string[] | undefined;
|
|
6622
|
+
}>;
|
|
6623
|
+
type DTOPageBlockDefinition = z.infer<typeof DTOPageBlockDefinition>;
|
|
6624
|
+
|
|
5844
6625
|
declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
5845
6626
|
id: z.ZodString;
|
|
5846
6627
|
designSystemVersionId: z.ZodString;
|
|
@@ -24706,6 +25487,27 @@ declare const DTOFigmaNodeRenderInput: z.ZodObject<{
|
|
|
24706
25487
|
}>;
|
|
24707
25488
|
type DTOFigmaNodeRenderInput = z.infer<typeof DTOFigmaNodeRenderInput>;
|
|
24708
25489
|
|
|
25490
|
+
declare const PageBlockDefinitionLayoutBase: z.ZodObject<{
|
|
25491
|
+
type: z.ZodEnum<["Column", "Row"]>;
|
|
25492
|
+
gap: z.ZodOptional<z.ZodEnum<["Small", "Medium", "Large", "None"]>>;
|
|
25493
|
+
columnAlign: z.ZodOptional<z.ZodEnum<["Start", "Center", "End"]>>;
|
|
25494
|
+
columnResizing: z.ZodOptional<z.ZodEnum<["Fill", "Hug"]>>;
|
|
25495
|
+
}, "strip", z.ZodTypeAny, {
|
|
25496
|
+
type: "Column" | "Row";
|
|
25497
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
25498
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
25499
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
25500
|
+
}, {
|
|
25501
|
+
type: "Column" | "Row";
|
|
25502
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
25503
|
+
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
25504
|
+
columnResizing?: "Fill" | "Hug" | undefined;
|
|
25505
|
+
}>;
|
|
25506
|
+
declare const PageBlockDefinitionLayout: z.ZodType<PageBlockDefinitionLayout, ZodTypeDef, PageBlockDefinitionLayout>;
|
|
25507
|
+
type PageBlockDefinitionLayout = z.infer<typeof PageBlockDefinitionLayoutBase> & {
|
|
25508
|
+
children: (PageBlockDefinitionLayout | string)[];
|
|
25509
|
+
};
|
|
25510
|
+
|
|
24709
25511
|
type FigmaFileStructureNodeBaseInput = z.input<typeof FigmaFileStructureNodeBase> & {
|
|
24710
25512
|
children: FigmaFileStructureNodeBaseInput[];
|
|
24711
25513
|
};
|
|
@@ -39129,7 +39931,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39129
39931
|
image: z.ZodOptional<z.ZodString>;
|
|
39130
39932
|
description: z.ZodOptional<z.ZodString>;
|
|
39131
39933
|
documentationLink: z.ZodOptional<z.ZodString>;
|
|
39132
|
-
layout: z.ZodType<
|
|
39934
|
+
layout: z.ZodType<PageBlockDefinitionLayout, z.ZodTypeDef, PageBlockDefinitionLayout>;
|
|
39133
39935
|
maxColumns: z.ZodOptional<z.ZodNumber>;
|
|
39134
39936
|
defaultColumns: z.ZodOptional<z.ZodNumber>;
|
|
39135
39937
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
@@ -39157,7 +39959,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39157
39959
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
39158
39960
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
39159
39961
|
} & {
|
|
39160
|
-
children: (string |
|
|
39962
|
+
children: (string | PageBlockDefinitionLayout)[];
|
|
39161
39963
|
};
|
|
39162
39964
|
description?: string | undefined;
|
|
39163
39965
|
image?: string | undefined;
|
|
@@ -39179,7 +39981,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39179
39981
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
39180
39982
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
39181
39983
|
} & {
|
|
39182
|
-
children: (string |
|
|
39984
|
+
children: (string | PageBlockDefinitionLayout)[];
|
|
39183
39985
|
};
|
|
39184
39986
|
description?: string | undefined;
|
|
39185
39987
|
image?: string | undefined;
|
|
@@ -39212,7 +40014,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39212
40014
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
39213
40015
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
39214
40016
|
} & {
|
|
39215
|
-
children: (string |
|
|
40017
|
+
children: (string | PageBlockDefinitionLayout)[];
|
|
39216
40018
|
};
|
|
39217
40019
|
description?: string | undefined;
|
|
39218
40020
|
image?: string | undefined;
|
|
@@ -39251,7 +40053,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39251
40053
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
39252
40054
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
39253
40055
|
} & {
|
|
39254
|
-
children: (string |
|
|
40056
|
+
children: (string | PageBlockDefinitionLayout)[];
|
|
39255
40057
|
};
|
|
39256
40058
|
description?: string | undefined;
|
|
39257
40059
|
image?: string | undefined;
|
|
@@ -39385,7 +40187,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39385
40187
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
39386
40188
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
39387
40189
|
} & {
|
|
39388
|
-
children: (string |
|
|
40190
|
+
children: (string | PageBlockDefinitionLayout)[];
|
|
39389
40191
|
};
|
|
39390
40192
|
description?: string | undefined;
|
|
39391
40193
|
image?: string | undefined;
|
|
@@ -39458,7 +40260,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39458
40260
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
39459
40261
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
39460
40262
|
} & {
|
|
39461
|
-
children: (string |
|
|
40263
|
+
children: (string | PageBlockDefinitionLayout)[];
|
|
39462
40264
|
};
|
|
39463
40265
|
description?: string | undefined;
|
|
39464
40266
|
image?: string | undefined;
|
|
@@ -39533,7 +40335,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39533
40335
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
39534
40336
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
39535
40337
|
} & {
|
|
39536
|
-
children: (string |
|
|
40338
|
+
children: (string | PageBlockDefinitionLayout)[];
|
|
39537
40339
|
};
|
|
39538
40340
|
description?: string | undefined;
|
|
39539
40341
|
image?: string | undefined;
|
|
@@ -39608,7 +40410,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39608
40410
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
39609
40411
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
39610
40412
|
} & {
|
|
39611
|
-
children: (string |
|
|
40413
|
+
children: (string | PageBlockDefinitionLayout)[];
|
|
39612
40414
|
};
|
|
39613
40415
|
description?: string | undefined;
|
|
39614
40416
|
image?: string | undefined;
|
|
@@ -43582,4 +44384,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
43582
44384
|
|
|
43583
44385
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, debug?: boolean): string;
|
|
43584
44386
|
|
|
43585
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAssetRenderConfiguration, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
44387
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAssetRenderConfiguration, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|