@supernova-studio/client 0.52.17 → 0.52.19

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.js CHANGED
@@ -649,11 +649,7 @@ var FigmaComponentBooleanProperty = _zod.z.object({
649
649
  });
650
650
  var FigmaComponentInstanceSwapProperty = _zod.z.object({
651
651
  type: _zod.z.literal(FigmaComponentPropertyType.enum.InstanceSwap),
652
- defaultValue: _zod.z.string(),
653
- preferredValues: _zod.z.object({
654
- type: _zod.z.enum(["Component", "ComponentSet"]),
655
- key: _zod.z.string()
656
- }).array()
652
+ defaultValue: _zod.z.string()
657
653
  });
658
654
  var FigmaComponentVariantProperty = _zod.z.object({
659
655
  type: _zod.z.literal(FigmaComponentPropertyType.enum.Variant),
@@ -1920,6 +1916,191 @@ function sanitizeSpanAttribute(attribute) {
1920
1916
  };
1921
1917
  }
1922
1918
  }
1919
+ var PageBlockDefinitionAppearance = _zod.z.object({
1920
+ isBordered: _zod.z.boolean().optional(),
1921
+ hasBackground: _zod.z.boolean().optional(),
1922
+ isEditorPresentationDifferent: _zod.z.boolean().optional(),
1923
+ showBlockHeaderInEditor: _zod.z.boolean().optional()
1924
+ });
1925
+ var PageBlockDefinitionLayoutType = _zod.z.enum(["Column", "Row"]);
1926
+ var PageBlockDefinitionLayoutGap = _zod.z.enum(["Small", "Medium", "Large", "None"]);
1927
+ var PageBlockDefinitionLayoutAlign = _zod.z.enum(["Start", "Center", "End"]);
1928
+ var PageBlockDefinitionLayoutResizing = _zod.z.enum(["Fill", "Hug"]);
1929
+ var PageBlockDefinitionLayoutBase = _zod.z.object({
1930
+ type: PageBlockDefinitionLayoutType,
1931
+ gap: PageBlockDefinitionLayoutGap.optional(),
1932
+ columnAlign: PageBlockDefinitionLayoutAlign.optional(),
1933
+ columnResizing: PageBlockDefinitionLayoutResizing.optional()
1934
+ });
1935
+ var PageBlockDefinitionLayout = PageBlockDefinitionLayoutBase.extend({
1936
+ children: _zod.z.lazy(() => _zod.z.array(PageBlockDefinitionLayout.or(_zod.z.string())))
1937
+ });
1938
+ var PageBlockDefinitionVariant = _zod.z.object({
1939
+ id: _zod.z.string(),
1940
+ name: _zod.z.string(),
1941
+ image: _zod.z.string().optional(),
1942
+ description: _zod.z.string().optional(),
1943
+ documentationLink: _zod.z.string().optional(),
1944
+ layout: PageBlockDefinitionLayout,
1945
+ maxColumns: _zod.z.number().optional(),
1946
+ defaultColumns: _zod.z.number().optional(),
1947
+ appearance: PageBlockDefinitionAppearance.optional()
1948
+ });
1949
+ var PageBlockDefinitionPropertyType = _zod.z.enum([
1950
+ "RichText",
1951
+ "MultiRichText",
1952
+ "RichTextEditor",
1953
+ "Text",
1954
+ "Boolean",
1955
+ "Number",
1956
+ "SingleSelect",
1957
+ "MultiSelect",
1958
+ "Image",
1959
+ "Token",
1960
+ "TokenType",
1961
+ "TokenProperty",
1962
+ "Component",
1963
+ "ComponentProperty",
1964
+ "Asset",
1965
+ "AssetProperty",
1966
+ "FigmaNode",
1967
+ "EmbedURL",
1968
+ "URL",
1969
+ "Markdown",
1970
+ "Code",
1971
+ "CodeSandbox",
1972
+ "Table",
1973
+ "Divider",
1974
+ "Storybook",
1975
+ "Color",
1976
+ "FigmaComponent"
1977
+ ]);
1978
+ var PageBlockDefinitionRichTextPropertyStyle = _zod.z.enum([
1979
+ "Title1",
1980
+ "Title2",
1981
+ "Title3",
1982
+ "Title4",
1983
+ "Title5",
1984
+ "Quote",
1985
+ "Callout",
1986
+ "Default"
1987
+ ]);
1988
+ var PageBlockDefinitionMultiRichTextPropertyStyle = _zod.z.enum(["OL", "UL"]);
1989
+ var PageBlockDefinitionRichTextEditorPropertyStyle = _zod.z.enum([
1990
+ "OL",
1991
+ "UL",
1992
+ "Bold",
1993
+ "Italic",
1994
+ "Link",
1995
+ "Strikethrough",
1996
+ "InlineCode"
1997
+ ]);
1998
+ var PageBlockDefinitionTextPropertyStyle = _zod.z.enum([
1999
+ "Title1",
2000
+ "Title2",
2001
+ "Title3",
2002
+ "Title4",
2003
+ "Title5",
2004
+ "Default",
2005
+ "DefaultBold",
2006
+ "DefaultSemibold",
2007
+ "Small",
2008
+ "SmallBold",
2009
+ "SmallSemibold",
2010
+ "Custom"
2011
+ ]);
2012
+ var PageBlockDefinitionTextPropertyColor = _zod.z.enum(["Neutral", "NeutralFaded"]);
2013
+ var PageBlockDefinitionBooleanPropertyStyle = _zod.z.enum(["SegmentedControl", "ToggleButton", "Checkbox"]);
2014
+ var PageBlockDefinitionSingleSelectPropertyStyle = _zod.z.enum([
2015
+ "SegmentedControl",
2016
+ "ToggleButton",
2017
+ "Select",
2018
+ "Checkbox"
2019
+ ]);
2020
+ var PageBlockDefinitionSingleSelectPropertyColor = _zod.z.enum([
2021
+ "Green",
2022
+ "Red",
2023
+ "Yellow",
2024
+ "Blue",
2025
+ "Purple",
2026
+ "Orange",
2027
+ "Pink",
2028
+ "Teal",
2029
+ "Brown",
2030
+ "Grey",
2031
+ "LightGrey",
2032
+ "Cyan",
2033
+ "Fuchsia"
2034
+ ]);
2035
+ var IconSet = _zod.z.enum(["CheckCircle", "CrossCircle", "Alert"]);
2036
+ var PageBlockDefinitionMultiSelectPropertyStyle = _zod.z.enum(["SegmentedControl", "Select", "Checkbox"]);
2037
+ var PageBlockDefinitionImageAspectRatio = _zod.z.enum(["Auto", "Square", "Landscape", "Portrait", "Wide"]);
2038
+ var PageBlockDefinitionImageWidth = _zod.z.enum(["Full", "Icon", "Small", "Medium", "Large", "Poster"]);
2039
+ var PageBlockDefinitionSelectChoice = _zod.z.object({
2040
+ value: _zod.z.string(),
2041
+ name: _zod.z.string(),
2042
+ icon: IconSet.optional(),
2043
+ customIconUrl: _zod.z.string().optional(),
2044
+ color: PageBlockDefinitionSingleSelectPropertyColor.optional()
2045
+ });
2046
+ var PageBlockDefinitionUntypedPropertyOptions = _zod.z.record(_zod.z.any());
2047
+ var PageBlockDefinitionRichTextOptions = _zod.z.object({
2048
+ richTextStyle: PageBlockDefinitionRichTextPropertyStyle.optional()
2049
+ });
2050
+ var PageBlockDefinitionMutiRichTextOptions = _zod.z.object({
2051
+ multiRichTextStyle: PageBlockDefinitionMultiRichTextPropertyStyle.optional()
2052
+ });
2053
+ var PageBlockDefinitionRichTextEditorOptions = _zod.z.object({
2054
+ placeholder: _zod.z.string().optional(),
2055
+ allowedInlineStyles: _zod.z.array(PageBlockDefinitionRichTextEditorPropertyStyle).optional()
2056
+ });
2057
+ var PageBlockDefinitionTextOptions = _zod.z.object({
2058
+ placeholder: _zod.z.string().optional(),
2059
+ defaultValue: _zod.z.string().optional(),
2060
+ textStyle: PageBlockDefinitionTextPropertyStyle.optional(),
2061
+ color: PageBlockDefinitionTextPropertyColor.optional(),
2062
+ allowLineBreaks: _zod.z.boolean().optional()
2063
+ });
2064
+ var PageBlockDefinitionSelectOptions = _zod.z.object({
2065
+ singleSelectStyle: PageBlockDefinitionSingleSelectPropertyStyle.optional(),
2066
+ defaultChoice: _zod.z.string(),
2067
+ choices: _zod.z.array(PageBlockDefinitionSelectChoice)
2068
+ });
2069
+ var PageBlockDefinitionImageOptions = _zod.z.object({
2070
+ width: PageBlockDefinitionImageWidth.optional(),
2071
+ aspectRatio: PageBlockDefinitionImageAspectRatio.optional(),
2072
+ allowCaption: _zod.z.boolean().optional(),
2073
+ recommendation: _zod.z.string().optional()
2074
+ });
2075
+ var PageBlockDefinitionBooleanOptions = _zod.z.object({
2076
+ defaultvalue: _zod.z.boolean().optional(),
2077
+ booleanStyle: PageBlockDefinitionBooleanPropertyStyle.optional()
2078
+ });
2079
+ var PageBlockDefinitionNumberOptions = _zod.z.object({
2080
+ defaultValue: _zod.z.number(),
2081
+ min: _zod.z.number().optional(),
2082
+ max: _zod.z.number().optional(),
2083
+ step: _zod.z.number().optional(),
2084
+ placeholder: _zod.z.string().optional()
2085
+ });
2086
+ var PageBlockDefinitionComponentOptions = _zod.z.object({
2087
+ renderLayoutAs: _zod.z.enum(["List", "Table"]).optional(),
2088
+ allowPropertySelection: _zod.z.boolean().optional()
2089
+ });
2090
+ var PageBlockDefinitionProperty = _zod.z.object({
2091
+ id: _zod.z.string(),
2092
+ name: _zod.z.string(),
2093
+ type: PageBlockDefinitionPropertyType,
2094
+ description: _zod.z.string().optional(),
2095
+ options: PageBlockDefinitionUntypedPropertyOptions.optional(),
2096
+ variantOptions: _zod.z.record(PageBlockDefinitionUntypedPropertyOptions).optional()
2097
+ });
2098
+ var PageBlockDefinitionItem = _zod.z.object({
2099
+ properties: _zod.z.array(PageBlockDefinitionProperty),
2100
+ appearance: PageBlockDefinitionAppearance.optional(),
2101
+ variants: _zod.z.array(PageBlockDefinitionVariant),
2102
+ defaultVariantKey: _zod.z.string()
2103
+ });
1923
2104
  var PageBlockLinkType = _zod.z.enum(["DocumentationItem", "PageHeading", "Url"]);
1924
2105
  var PageBlockImageType = _zod.z.enum(["Resource", "FigmaNode"]);
1925
2106
  var PageBlockImageAlignment = _zod.z.enum(["Left", "Center", "Stretch"]);
@@ -2090,9 +2271,6 @@ var PageBlockItemRichTextValue = _zod.z.object({
2090
2271
  value: PageBlockText,
2091
2272
  calloutType: PageBlockCalloutType.optional()
2092
2273
  });
2093
- var PageBlockItemRichTextEditorValue = _zod.z.object({
2094
- value: _zod.z.any()
2095
- });
2096
2274
  var PageBlockItemSingleSelectValue = _zod.z.object({
2097
2275
  value: _zod.z.string()
2098
2276
  });
@@ -2130,15 +2308,27 @@ var PageBlockItemTokenTypeValue = _zod.z.object({
2130
2308
  var PageBlockItemUrlValue = _zod.z.object({
2131
2309
  value: _zod.z.string()
2132
2310
  });
2311
+ var PageBlockItemRichTextEditorParagraphNode = _zod.z.object({
2312
+ type: _zod.z.literal("Paragraph"),
2313
+ value: PageBlockItemRichTextValue.shape.value
2314
+ });
2315
+ var PageBlockItemRichTextEditorListNode = _zod.z.object({
2316
+ type: _zod.z.literal("List"),
2317
+ listType: PageBlockDefinitionMultiRichTextPropertyStyle,
2318
+ value: PageBlockItemMultiRichTextValue.shape.value
2319
+ });
2320
+ var PageBlockItemRichTextEditorNode = _zod.z.discriminatedUnion("type", [
2321
+ PageBlockItemRichTextEditorParagraphNode,
2322
+ PageBlockItemRichTextEditorListNode
2323
+ ]);
2324
+ var PageBlockItemRichTextEditorValue = _zod.z.object({
2325
+ value: PageBlockItemRichTextEditorNode.array()
2326
+ });
2133
2327
  var PageBlockItemTableRichTextNode = _zod.z.object({
2134
2328
  type: _zod.z.literal("RichText"),
2135
2329
  id: _zod.z.string(),
2136
2330
  value: PageBlockItemRichTextValue.shape.value
2137
2331
  });
2138
- var PageBlockItemTableMultiRichTextNode = _zod.z.object({
2139
- type: _zod.z.literal("MultiRichText"),
2140
- value: PageBlockItemMultiRichTextValue.shape.value
2141
- });
2142
2332
  var PageBlockItemTableImageNode = _zod.z.object({
2143
2333
  type: _zod.z.literal("Image"),
2144
2334
  id: _zod.z.string(),
@@ -2147,7 +2337,6 @@ var PageBlockItemTableImageNode = _zod.z.object({
2147
2337
  });
2148
2338
  var PageBlockItemTableNode = _zod.z.discriminatedUnion("type", [
2149
2339
  PageBlockItemTableRichTextNode,
2150
- // PageBlockItemTableMultiRichTextNode,
2151
2340
  PageBlockItemTableImageNode
2152
2341
  ]);
2153
2342
  var PageBlockItemTableCell = _zod.z.object({
@@ -3090,240 +3279,55 @@ var DesignTokenImportModelPart = _zod.z.object({
3090
3279
  collection: _zod.z.string().optional(),
3091
3280
  codeSyntax: _zod.z.record(_zod.z.coerce.string()).optional()
3092
3281
  });
3093
- var DesignTokenImportModelBase = ImportModelBase.extend(DesignTokenImportModelPart.shape).extend({
3094
- origin: DesignTokenOrigin
3095
- });
3096
- var DesignTokenImportModelInputBase = ImportModelInputBase.extend(DesignTokenImportModelPart.shape).extend({
3097
- originMetadata: DesignTokenOriginPart
3098
- });
3099
- var DesignTokenImportModel = DesignTokenTypedData.and(DesignTokenImportModelBase);
3100
- var DesignTokenImportModelInput = DesignTokenTypedData.and(DesignTokenImportModelInputBase);
3101
- var ImportModelInputCollection = _zod.z.object({
3102
- source: DataSourceImportModel,
3103
- tokens: _zod.z.array(DesignTokenImportModelInput).default([]),
3104
- components: _zod.z.array(FigmaComponentImportModelInput).default([]),
3105
- assets: _zod.z.array(AssetImportModelInput).default([]),
3106
- themeUpdates: _zod.z.array(ThemeUpdateImportModelInput).default([]),
3107
- themes: _zod.z.array(ThemeImportModelInput).default([]),
3108
- figmaFileStructure: FigmaFileStructureImportModelInput.optional()
3109
- });
3110
- var ImportModelCollection = _zod.z.object({
3111
- sources: _zod.z.array(DataSourceImportModel),
3112
- tokens: _zod.z.array(DesignTokenImportModel).default([]),
3113
- components: _zod.z.array(FigmaComponentImportModel).default([]),
3114
- themeUpdates: _zod.z.array(ThemeUpdateImportModel).default([]),
3115
- themes: _zod.z.array(ThemeImportModel).default([]),
3116
- figmaFileStructures: _zod.z.array(FigmaFileStructureImportModel)
3117
- });
3118
- var AssetRenderConfiguration = _zod.z.object({
3119
- prefix: _zod.z.string().optional(),
3120
- suffix: _zod.z.string().optional(),
3121
- scale: _zod.z.number(),
3122
- format: FigmaRenderFormat
3123
- });
3124
- var RenderedAssetFile = _zod.z.object({
3125
- assetPersistentId: _zod.z.string(),
3126
- assetName: _zod.z.string(),
3127
- renderedImageFileName: _zod.z.string(),
3128
- renderedImageUrl: _zod.z.string(),
3129
- settings: AssetRenderConfiguration
3130
- });
3131
- var DocumentationPageApprovalState = _zod.z.enum(["ReadyForReview", "ChangesRequested", "Approved"]);
3132
- var DocumentationPageApproval = _zod.z.object({
3133
- id: _zod.z.string(),
3134
- approvalState: DocumentationPageApprovalState,
3135
- persistentId: _zod.z.string(),
3136
- pageId: _zod.z.string(),
3137
- pagePersistentId: _zod.z.string(),
3138
- updatedByUserId: _zod.z.string(),
3139
- designSystemVersionId: _zod.z.string(),
3140
- updatedAt: _zod.z.coerce.date(),
3141
- createdAt: _zod.z.coerce.date()
3142
- });
3143
- var PageBlockDefinitionAppearance = _zod.z.object({
3144
- isBordered: _zod.z.boolean().optional(),
3145
- hasBackground: _zod.z.boolean().optional(),
3146
- isEditorPresentationDifferent: _zod.z.boolean().optional(),
3147
- showBlockHeaderInEditor: _zod.z.boolean().optional()
3148
- });
3149
- var PageBlockDefinitionLayoutType = _zod.z.enum(["Column", "Row"]);
3150
- var PageBlockDefinitionLayoutGap = _zod.z.enum(["Small", "Medium", "Large", "None"]);
3151
- var PageBlockDefinitionLayoutAlign = _zod.z.enum(["Start", "Center", "End"]);
3152
- var PageBlockDefinitionLayoutResizing = _zod.z.enum(["Fill", "Hug"]);
3153
- var PageBlockDefinitionLayoutBase = _zod.z.object({
3154
- type: PageBlockDefinitionLayoutType,
3155
- gap: PageBlockDefinitionLayoutGap.optional(),
3156
- columnAlign: PageBlockDefinitionLayoutAlign.optional(),
3157
- columnResizing: PageBlockDefinitionLayoutResizing.optional()
3158
- });
3159
- var PageBlockDefinitionLayout = PageBlockDefinitionLayoutBase.extend({
3160
- children: _zod.z.lazy(() => _zod.z.array(PageBlockDefinitionLayout.or(_zod.z.string())))
3161
- });
3162
- var PageBlockDefinitionVariant = _zod.z.object({
3163
- id: _zod.z.string(),
3164
- name: _zod.z.string(),
3165
- image: _zod.z.string().optional(),
3166
- description: _zod.z.string().optional(),
3167
- documentationLink: _zod.z.string().optional(),
3168
- layout: PageBlockDefinitionLayout,
3169
- maxColumns: _zod.z.number().optional(),
3170
- defaultColumns: _zod.z.number().optional(),
3171
- appearance: PageBlockDefinitionAppearance.optional()
3172
- });
3173
- var PageBlockDefinitionPropertyType = _zod.z.enum([
3174
- "RichText",
3175
- "MultiRichText",
3176
- "RichTextEditor",
3177
- "Text",
3178
- "Boolean",
3179
- "Number",
3180
- "SingleSelect",
3181
- "MultiSelect",
3182
- "Image",
3183
- "Token",
3184
- "TokenType",
3185
- "TokenProperty",
3186
- "Component",
3187
- "ComponentProperty",
3188
- "Asset",
3189
- "AssetProperty",
3190
- "FigmaNode",
3191
- "EmbedURL",
3192
- "URL",
3193
- "Markdown",
3194
- "Code",
3195
- "CodeSandbox",
3196
- "Table",
3197
- "Divider",
3198
- "Storybook",
3199
- "Color",
3200
- "FigmaComponent"
3201
- ]);
3202
- var PageBlockDefinitionRichTextPropertyStyle = _zod.z.enum([
3203
- "Title1",
3204
- "Title2",
3205
- "Title3",
3206
- "Title4",
3207
- "Title5",
3208
- "Quote",
3209
- "Callout",
3210
- "Default"
3211
- ]);
3212
- var PageBlockDefinitionMultiRichTextPropertyStyle = _zod.z.enum(["OL", "UL", "Default"]);
3213
- var PageBlockDefinitionRichTextEditorPropertyStyle = _zod.z.enum([
3214
- "OL",
3215
- "UL",
3216
- "Bold",
3217
- "Italic",
3218
- "Link",
3219
- "Strikethrough",
3220
- "InlineCode"
3221
- ]);
3222
- var PageBlockDefinitionTextPropertyStyle = _zod.z.enum([
3223
- "Title1",
3224
- "Title2",
3225
- "Title3",
3226
- "Title4",
3227
- "Title5",
3228
- "Default",
3229
- "DefaultBold",
3230
- "DefaultSemibold",
3231
- "Small",
3232
- "SmallBold",
3233
- "SmallSemibold",
3234
- "Custom"
3235
- ]);
3236
- var PageBlockDefinitionTextPropertyColor = _zod.z.enum(["Neutral", "NeutralFaded"]);
3237
- var PageBlockDefinitionBooleanPropertyStyle = _zod.z.enum(["SegmentedControl", "ToggleButton", "Checkbox"]);
3238
- var PageBlockDefinitionSingleSelectPropertyStyle = _zod.z.enum([
3239
- "SegmentedControl",
3240
- "ToggleButton",
3241
- "Select",
3242
- "Checkbox"
3243
- ]);
3244
- var PageBlockDefinitionSingleSelectPropertyColor = _zod.z.enum([
3245
- "Green",
3246
- "Red",
3247
- "Yellow",
3248
- "Blue",
3249
- "Purple",
3250
- "Orange",
3251
- "Pink",
3252
- "Teal",
3253
- "Brown",
3254
- "Grey",
3255
- "LightGrey",
3256
- "Cyan",
3257
- "Fuchsia"
3258
- ]);
3259
- var IconSet = _zod.z.enum(["CheckCircle", "CrossCircle", "Alert"]);
3260
- var PageBlockDefinitionMultiSelectPropertyStyle = _zod.z.enum(["SegmentedControl", "Select", "Checkbox"]);
3261
- var PageBlockDefinitionImageAspectRatio = _zod.z.enum(["Auto", "Square", "Landscape", "Portrait", "Wide"]);
3262
- var PageBlockDefinitionImageWidth = _zod.z.enum(["Full", "Icon", "Small", "Medium", "Large", "Poster"]);
3263
- var PageBlockDefinitionSelectChoice = _zod.z.object({
3264
- value: _zod.z.string(),
3265
- name: _zod.z.string(),
3266
- icon: IconSet.optional(),
3267
- customIconUrl: _zod.z.string().optional(),
3268
- color: PageBlockDefinitionSingleSelectPropertyColor.optional()
3269
- });
3270
- var PageBlockDefinitionUntypedPropertyOptions = _zod.z.record(_zod.z.any());
3271
- var PageBlockDefinitionRichTextOptions = _zod.z.object({
3272
- richTextStyle: PageBlockDefinitionRichTextPropertyStyle.optional()
3273
- });
3274
- var PageBlockDefinitionMutiRichTextOptions = _zod.z.object({
3275
- multiRichTextStyle: PageBlockDefinitionMultiRichTextPropertyStyle.optional()
3276
- });
3277
- var PageBlockDefinitionRichTextEditorOptions = _zod.z.object({
3278
- placeholder: _zod.z.string().optional(),
3279
- allowedInlineStyles: _zod.z.array(PageBlockDefinitionRichTextEditorPropertyStyle).optional()
3280
- });
3281
- var PageBlockDefinitionTextOptions = _zod.z.object({
3282
- placeholder: _zod.z.string().optional(),
3283
- defaultValue: _zod.z.string().optional(),
3284
- textStyle: PageBlockDefinitionTextPropertyStyle.optional(),
3285
- color: PageBlockDefinitionTextPropertyColor.optional(),
3286
- allowLineBreaks: _zod.z.boolean().optional()
3282
+ var DesignTokenImportModelBase = ImportModelBase.extend(DesignTokenImportModelPart.shape).extend({
3283
+ origin: DesignTokenOrigin
3287
3284
  });
3288
- var PageBlockDefinitionSelectOptions = _zod.z.object({
3289
- singleSelectStyle: PageBlockDefinitionSingleSelectPropertyStyle.optional(),
3290
- defaultChoice: _zod.z.string(),
3291
- choices: _zod.z.array(PageBlockDefinitionSelectChoice)
3285
+ var DesignTokenImportModelInputBase = ImportModelInputBase.extend(DesignTokenImportModelPart.shape).extend({
3286
+ originMetadata: DesignTokenOriginPart
3292
3287
  });
3293
- var PageBlockDefinitionImageOptions = _zod.z.object({
3294
- width: PageBlockDefinitionImageWidth.optional(),
3295
- aspectRatio: PageBlockDefinitionImageAspectRatio.optional(),
3296
- allowCaption: _zod.z.boolean().optional(),
3297
- recommendation: _zod.z.string().optional()
3288
+ var DesignTokenImportModel = DesignTokenTypedData.and(DesignTokenImportModelBase);
3289
+ var DesignTokenImportModelInput = DesignTokenTypedData.and(DesignTokenImportModelInputBase);
3290
+ var ImportModelInputCollection = _zod.z.object({
3291
+ source: DataSourceImportModel,
3292
+ tokens: _zod.z.array(DesignTokenImportModelInput).default([]),
3293
+ components: _zod.z.array(FigmaComponentImportModelInput).default([]),
3294
+ assets: _zod.z.array(AssetImportModelInput).default([]),
3295
+ themeUpdates: _zod.z.array(ThemeUpdateImportModelInput).default([]),
3296
+ themes: _zod.z.array(ThemeImportModelInput).default([]),
3297
+ figmaFileStructure: FigmaFileStructureImportModelInput.optional()
3298
3298
  });
3299
- var PageBlockDefinitionBooleanOptions = _zod.z.object({
3300
- defaultvalue: _zod.z.boolean().optional(),
3301
- booleanStyle: PageBlockDefinitionBooleanPropertyStyle.optional()
3299
+ var ImportModelCollection = _zod.z.object({
3300
+ sources: _zod.z.array(DataSourceImportModel),
3301
+ tokens: _zod.z.array(DesignTokenImportModel).default([]),
3302
+ components: _zod.z.array(FigmaComponentImportModel).default([]),
3303
+ themeUpdates: _zod.z.array(ThemeUpdateImportModel).default([]),
3304
+ themes: _zod.z.array(ThemeImportModel).default([]),
3305
+ figmaFileStructures: _zod.z.array(FigmaFileStructureImportModel)
3302
3306
  });
3303
- var PageBlockDefinitionNumberOptions = _zod.z.object({
3304
- defaultValue: _zod.z.number(),
3305
- min: _zod.z.number().optional(),
3306
- max: _zod.z.number().optional(),
3307
- step: _zod.z.number().optional(),
3308
- placeholder: _zod.z.string().optional()
3307
+ var AssetRenderConfiguration = _zod.z.object({
3308
+ prefix: _zod.z.string().optional(),
3309
+ suffix: _zod.z.string().optional(),
3310
+ scale: _zod.z.number(),
3311
+ format: FigmaRenderFormat
3309
3312
  });
3310
- var PageBlockDefinitionComponentOptions = _zod.z.object({
3311
- renderLayoutAs: _zod.z.enum(["List", "Table"]).optional(),
3312
- allowPropertySelection: _zod.z.boolean().optional()
3313
+ var RenderedAssetFile = _zod.z.object({
3314
+ assetPersistentId: _zod.z.string(),
3315
+ assetName: _zod.z.string(),
3316
+ renderedImageFileName: _zod.z.string(),
3317
+ renderedImageUrl: _zod.z.string(),
3318
+ settings: AssetRenderConfiguration
3313
3319
  });
3314
- var PageBlockDefinitionProperty = _zod.z.object({
3320
+ var DocumentationPageApprovalState = _zod.z.enum(["ReadyForReview", "ChangesRequested", "Approved"]);
3321
+ var DocumentationPageApproval = _zod.z.object({
3315
3322
  id: _zod.z.string(),
3316
- name: _zod.z.string(),
3317
- type: PageBlockDefinitionPropertyType,
3318
- description: _zod.z.string().optional(),
3319
- options: PageBlockDefinitionUntypedPropertyOptions.optional(),
3320
- variantOptions: _zod.z.record(PageBlockDefinitionUntypedPropertyOptions).optional()
3321
- });
3322
- var PageBlockDefinitionItem = _zod.z.object({
3323
- properties: _zod.z.array(PageBlockDefinitionProperty),
3324
- appearance: PageBlockDefinitionAppearance.optional(),
3325
- variants: _zod.z.array(PageBlockDefinitionVariant),
3326
- defaultVariantKey: _zod.z.string()
3323
+ approvalState: DocumentationPageApprovalState,
3324
+ persistentId: _zod.z.string(),
3325
+ pageId: _zod.z.string(),
3326
+ pagePersistentId: _zod.z.string(),
3327
+ updatedByUserId: _zod.z.string(),
3328
+ designSystemVersionId: _zod.z.string(),
3329
+ updatedAt: _zod.z.coerce.date(),
3330
+ createdAt: _zod.z.coerce.date()
3327
3331
  });
3328
3332
  var PageBlockCategory = _zod.z.enum([
3329
3333
  "Text",
@@ -5635,7 +5639,8 @@ var DTOFigmaComponent = _zod.z.object({
5635
5639
  meta: ObjectMeta,
5636
5640
  originComponent: FigmaComponentOrigin.optional(),
5637
5641
  parentComponentPersistentId: _zod.z.string().optional(),
5638
- componentPropertyDefinitions: DTOFigmaComponentPropertyMap.optional()
5642
+ componentPropertyDefinitions: DTOFigmaComponentPropertyMap.optional(),
5643
+ childrenPersistentIds: _zod.z.string().array().optional()
5639
5644
  });
5640
5645
  var DTOFigmaComponentListResponse = _zod.z.object({
5641
5646
  components: DTOFigmaComponent.array()
@@ -6944,9 +6949,154 @@ var DocumentationPageEditorModel = _zod.z.object({
6944
6949
  blocks: _zod.z.array(DocumentationPageContentItem)
6945
6950
  });
6946
6951
 
6947
- // src/yjs/docs-editor/prosemirror/schema.ts
6952
+ // src/yjs/docs-editor/prosemirror/inner-editor-schema.ts
6948
6953
  var _prosemirrormodel = require('prosemirror-model');
6949
- var newSchema = {
6954
+ var pmSchemaJson = {
6955
+ topNode: "doc",
6956
+ nodes: {
6957
+ paragraph: {
6958
+ content: "inline*",
6959
+ group: "block",
6960
+ parseDOM: [
6961
+ {
6962
+ tag: "p"
6963
+ }
6964
+ ]
6965
+ },
6966
+ listItem: {
6967
+ content: "paragraph",
6968
+ defining: true,
6969
+ parseDOM: [
6970
+ {
6971
+ tag: "li"
6972
+ }
6973
+ ]
6974
+ },
6975
+ doc: {
6976
+ content: "block+"
6977
+ },
6978
+ hardBreak: {
6979
+ group: "inline",
6980
+ inline: true,
6981
+ selectable: false,
6982
+ parseDOM: [
6983
+ {
6984
+ tag: "br"
6985
+ }
6986
+ ]
6987
+ },
6988
+ text: {
6989
+ group: "inline"
6990
+ },
6991
+ bulletList: {
6992
+ content: "listItem+",
6993
+ group: "block list",
6994
+ parseDOM: [
6995
+ {
6996
+ tag: "ul"
6997
+ }
6998
+ ]
6999
+ },
7000
+ orderedList: {
7001
+ content: "listItem+",
7002
+ group: "block list",
7003
+ attrs: {
7004
+ start: {
7005
+ default: 1
7006
+ },
7007
+ type: {
7008
+ default: null
7009
+ }
7010
+ },
7011
+ parseDOM: [
7012
+ {
7013
+ tag: "ol"
7014
+ }
7015
+ ]
7016
+ }
7017
+ },
7018
+ marks: {
7019
+ link: {
7020
+ inclusive: false,
7021
+ attrs: {
7022
+ href: {
7023
+ default: null
7024
+ },
7025
+ target: {
7026
+ default: "_blank"
7027
+ },
7028
+ rel: {
7029
+ default: "noopener noreferrer nofollow"
7030
+ },
7031
+ class: {
7032
+ default: "tiptap-link"
7033
+ }
7034
+ },
7035
+ parseDOM: [
7036
+ {
7037
+ tag: "a[href]"
7038
+ }
7039
+ ]
7040
+ },
7041
+ bold: {
7042
+ parseDOM: [
7043
+ {
7044
+ tag: "strong"
7045
+ },
7046
+ {
7047
+ tag: "b"
7048
+ },
7049
+ {
7050
+ style: "font-weight"
7051
+ }
7052
+ ]
7053
+ },
7054
+ italic: {
7055
+ parseDOM: [
7056
+ {
7057
+ tag: "em"
7058
+ },
7059
+ {
7060
+ tag: "i"
7061
+ },
7062
+ {
7063
+ style: "font-style=italic"
7064
+ }
7065
+ ]
7066
+ },
7067
+ strike: {
7068
+ parseDOM: [
7069
+ {
7070
+ tag: "s"
7071
+ },
7072
+ {
7073
+ tag: "del"
7074
+ },
7075
+ {
7076
+ tag: "strike"
7077
+ },
7078
+ {
7079
+ style: "text-decoration",
7080
+ consuming: false
7081
+ }
7082
+ ]
7083
+ },
7084
+ code: {
7085
+ excludes: "bold code italic strike link",
7086
+ code: true,
7087
+ parseDOM: [
7088
+ {
7089
+ tag: "code"
7090
+ }
7091
+ ]
7092
+ }
7093
+ }
7094
+ };
7095
+ var innerEditorProsemirrorSchema = new (0, _prosemirrormodel.Schema)(pmSchemaJson);
7096
+
7097
+ // src/yjs/docs-editor/prosemirror/main-editor-schema.ts
7098
+
7099
+ var pmSchemaJson2 = {
6950
7100
  topNode: "doc",
6951
7101
  nodes: {
6952
7102
  paragraph: {
@@ -7519,7 +7669,7 @@ var newSchema = {
7519
7669
  }
7520
7670
  }
7521
7671
  };
7522
- var pmSchema = new (0, _prosemirrormodel.Schema)(newSchema);
7672
+ var mainEditorProsemirrorSchema = new (0, _prosemirrormodel.Schema)(pmSchemaJson2);
7523
7673
 
7524
7674
  // src/yjs/docs-editor/blocks-to-prosemirror.ts
7525
7675
  var _yprosemirror = require('y-prosemirror');
@@ -7688,7 +7838,7 @@ function pageToYDoc(doc, page, definitions) {
7688
7838
  }
7689
7839
  function pageToYXmlFragment(page, definitions, fragment) {
7690
7840
  const doc = pageToProsemirrorDoc(page, definitions);
7691
- return _yprosemirror.prosemirrorJSONToYXmlFragment.call(void 0, pmSchema, doc, fragment);
7841
+ return _yprosemirror.prosemirrorJSONToYXmlFragment.call(void 0, mainEditorProsemirrorSchema, doc, fragment);
7692
7842
  }
7693
7843
  function pageToProsemirrorDoc(page, definitions) {
7694
7844
  const definitionsMap = mapByUnique(definitions, (d) => d.id);
@@ -7718,6 +7868,50 @@ function blockToProsemirrorNode(block, definition) {
7718
7868
  const nodes = internalBlocksToProsemirrorNodes([block], definitionsMap);
7719
7869
  return _nullishCoalesce(nodes[0], () => ( null));
7720
7870
  }
7871
+ function richTextPropertyValueToProsemirror(richTextEditorValue) {
7872
+ return {
7873
+ type: "doc",
7874
+ content: richTextEditorValue.value.map((node) => {
7875
+ return serializeRichTextEditorNode(node);
7876
+ })
7877
+ };
7878
+ }
7879
+ function serializeRichTextEditorNode(node) {
7880
+ switch (node.type) {
7881
+ case "Paragraph":
7882
+ return serializeRichTextEditorParagraphNode(node);
7883
+ case "List":
7884
+ return serializeRichTextEditorListNode(node);
7885
+ }
7886
+ }
7887
+ function serializeRichTextEditorParagraphNode(node) {
7888
+ const content = serializeRichText(node.value);
7889
+ return {
7890
+ type: "paragraph",
7891
+ ...content.length && { content }
7892
+ };
7893
+ }
7894
+ function serializeRichTextEditorListNode(node) {
7895
+ const type = node.listType === "OL" ? "orderedList" : "bulletList";
7896
+ const attrs = node.listType === "OL" ? { start: 1 } : void 0;
7897
+ const richTexts = node.value.length ? node.value : [{ spans: [] }];
7898
+ return {
7899
+ type,
7900
+ ...attrs && { attrs },
7901
+ content: richTexts.map((n) => {
7902
+ const content = serializeRichText(n);
7903
+ return {
7904
+ type: "listItem",
7905
+ content: [
7906
+ {
7907
+ type: "paragraph",
7908
+ ...content.length && { content }
7909
+ }
7910
+ ]
7911
+ };
7912
+ })
7913
+ };
7914
+ }
7721
7915
  function internalSectionToProsemirrorNode(section, definitionsMap) {
7722
7916
  return {
7723
7917
  type: "tabsSection",
@@ -10631,6 +10825,43 @@ function prosemirrorDocToPage(prosemirrorDoc, definitions) {
10631
10825
  function shallowProsemirrorNodeToBlock(prosemirrorNode, definition) {
10632
10826
  return _nullishCoalesce(prosemirrorNodeAndDefinitionToBlock(prosemirrorNode, definition, /* @__PURE__ */ new Map([[definition.id, definition]]), 0)[0], () => ( null));
10633
10827
  }
10828
+ function prosemirrorDocToRichTextPropertyValue(prosemirrorNode) {
10829
+ return {
10830
+ value: (_nullishCoalesce(prosemirrorNode.content, () => ( []))).map((n) => prosemirrorNodeToRichTextEditorPropertyNode(n)).filter(nonNullFilter)
10831
+ };
10832
+ }
10833
+ function prosemirrorNodeToRichTextEditorPropertyNode(prosemirrorNode) {
10834
+ switch (prosemirrorNode.type) {
10835
+ case "paragraph":
10836
+ return parseAsParagraphNode(prosemirrorNode);
10837
+ case "orderedList":
10838
+ case "bulletList":
10839
+ return parseAsListNode(prosemirrorNode);
10840
+ default:
10841
+ return null;
10842
+ }
10843
+ }
10844
+ function parseAsParagraphNode(prosemirrorNode) {
10845
+ return {
10846
+ type: "Paragraph",
10847
+ value: parseRichText(_nullishCoalesce(prosemirrorNode.content, () => ( [])))
10848
+ };
10849
+ }
10850
+ function parseAsListNode(prosemirrorNode) {
10851
+ return {
10852
+ type: "List",
10853
+ listType: prosemirrorNode.type === "orderedList" ? "OL" : "UL",
10854
+ value: (_nullishCoalesce(prosemirrorNode.content, () => ( []))).map(parseAsListNodeItem).filter(nonNullFilter)
10855
+ };
10856
+ }
10857
+ function parseAsListNodeItem(prosemirrorNode) {
10858
+ if (prosemirrorNode.type !== "listItem")
10859
+ return null;
10860
+ const firstChild = _optionalChain([prosemirrorNode, 'access', _50 => _50.content, 'optionalAccess', _51 => _51[0]]);
10861
+ if (!firstChild || firstChild.type !== "paragraph")
10862
+ return null;
10863
+ return parseRichText(_nullishCoalesce(firstChild.content, () => ( [])));
10864
+ }
10634
10865
  function prosemirrorNodeToSection(prosemirrorNode, definitions) {
10635
10866
  const definitionsById = mapByUnique2(definitions, (d) => d.id);
10636
10867
  return internalProsemirrorNodeToSection(prosemirrorNode, definitionsById);
@@ -10781,10 +11012,10 @@ function parseAsMultiRichText(prosemirrorNode, definition, property, definitions
10781
11012
  const variantId = getProsemirrorBlockVariantId(prosemirrorNode);
10782
11013
  const result = [];
10783
11014
  const listItems = [];
10784
- _optionalChain([prosemirrorNode, 'access', _50 => _50.content, 'optionalAccess', _51 => _51.forEach, 'call', _52 => _52((c) => {
11015
+ _optionalChain([prosemirrorNode, 'access', _52 => _52.content, 'optionalAccess', _53 => _53.forEach, 'call', _54 => _54((c) => {
10785
11016
  if (c.type !== "listItem")
10786
11017
  return;
10787
- _optionalChain([c, 'access', _53 => _53.content, 'optionalAccess', _54 => _54.forEach, 'call', _55 => _55((cc) => {
11018
+ _optionalChain([c, 'access', _55 => _55.content, 'optionalAccess', _56 => _56.forEach, 'call', _57 => _57((cc) => {
10788
11019
  listItems.push(cc);
10789
11020
  })]);
10790
11021
  })]);
@@ -10900,17 +11131,17 @@ function parseAsTable(prosemirrorNode, definition, property) {
10900
11131
  return null;
10901
11132
  const variantId = getProsemirrorBlockVariantId(prosemirrorNode);
10902
11133
  const hasBorder = getProsemirrorAttribute(prosemirrorNode, "hasBorder", _zod.z.boolean().optional()) !== false;
10903
- const tableChild = _optionalChain([prosemirrorNode, 'access', _56 => _56.content, 'optionalAccess', _57 => _57.find, 'call', _58 => _58((c) => c.type === "table")]);
11134
+ const tableChild = _optionalChain([prosemirrorNode, 'access', _58 => _58.content, 'optionalAccess', _59 => _59.find, 'call', _60 => _60((c) => c.type === "table")]);
10904
11135
  if (!tableChild) {
10905
11136
  return emptyTable(id, variantId, 0);
10906
11137
  }
10907
- const rows = _nullishCoalesce(_optionalChain([tableChild, 'access', _59 => _59.content, 'optionalAccess', _60 => _60.filter, 'call', _61 => _61((c) => c.type === "tableRow" && !!_optionalChain([c, 'access', _62 => _62.content, 'optionalAccess', _63 => _63.length]))]), () => ( []));
11138
+ const rows = _nullishCoalesce(_optionalChain([tableChild, 'access', _61 => _61.content, 'optionalAccess', _62 => _62.filter, 'call', _63 => _63((c) => c.type === "tableRow" && !!_optionalChain([c, 'access', _64 => _64.content, 'optionalAccess', _65 => _65.length]))]), () => ( []));
10908
11139
  if (!rows.length) {
10909
11140
  return emptyTable(id, variantId, 0);
10910
11141
  }
10911
- const rowHeaderCells = _nullishCoalesce(_optionalChain([rows, 'access', _64 => _64[0], 'access', _65 => _65.content, 'optionalAccess', _66 => _66.filter, 'call', _67 => _67((c) => c.type === "tableHeader"), 'access', _68 => _68.length]), () => ( 0));
10912
- const columnHeaderCells = rows.filter((r) => _optionalChain([r, 'access', _69 => _69.content, 'optionalAccess', _70 => _70[0], 'optionalAccess', _71 => _71.type]) === "tableHeader").length;
10913
- const hasHeaderRow = _optionalChain([rows, 'access', _72 => _72[0], 'access', _73 => _73.content, 'optionalAccess', _74 => _74.length]) === rowHeaderCells;
11142
+ const rowHeaderCells = _nullishCoalesce(_optionalChain([rows, 'access', _66 => _66[0], 'access', _67 => _67.content, 'optionalAccess', _68 => _68.filter, 'call', _69 => _69((c) => c.type === "tableHeader"), 'access', _70 => _70.length]), () => ( 0));
11143
+ const columnHeaderCells = rows.filter((r) => _optionalChain([r, 'access', _71 => _71.content, 'optionalAccess', _72 => _72[0], 'optionalAccess', _73 => _73.type]) === "tableHeader").length;
11144
+ const hasHeaderRow = _optionalChain([rows, 'access', _74 => _74[0], 'access', _75 => _75.content, 'optionalAccess', _76 => _76.length]) === rowHeaderCells;
10914
11145
  const hasHeaderColumn = rows.length === columnHeaderCells;
10915
11146
  const tableValue = {
10916
11147
  showBorder: hasBorder,
@@ -10992,7 +11223,7 @@ function parseAsTableNode(prosemirrorNode) {
10992
11223
  const parsedItems = PageBlockItemV2.array().safeParse(JSON.parse(items));
10993
11224
  if (!parsedItems.success)
10994
11225
  return null;
10995
- const rawImagePropertyValue = _optionalChain([parsedItems, 'access', _75 => _75.data, 'access', _76 => _76[0], 'optionalAccess', _77 => _77.props, 'access', _78 => _78.image]);
11226
+ const rawImagePropertyValue = _optionalChain([parsedItems, 'access', _77 => _77.data, 'access', _78 => _78[0], 'optionalAccess', _79 => _79.props, 'access', _80 => _80.image]);
10996
11227
  if (!rawImagePropertyValue)
10997
11228
  return null;
10998
11229
  const imagePropertyValueParseResult = PageBlockItemImageValue.safeParse(rawImagePropertyValue);
@@ -11230,7 +11461,7 @@ function getProsemirrorBlockVariantId(prosemirrorNode) {
11230
11461
  return getProsemirrorAttribute(prosemirrorNode, "variantId", nullishToOptional(_zod.z.string()));
11231
11462
  }
11232
11463
  function getProsemirrorAttribute(prosemirrorNode, attributeName, validationSchema) {
11233
- const parsedAttr = validationSchema.safeParse(_optionalChain([prosemirrorNode, 'access', _79 => _79.attrs, 'optionalAccess', _80 => _80[attributeName]]));
11464
+ const parsedAttr = validationSchema.safeParse(_optionalChain([prosemirrorNode, 'access', _81 => _81.attrs, 'optionalAccess', _82 => _82[attributeName]]));
11234
11465
  if (parsedAttr.success) {
11235
11466
  return parsedAttr.data;
11236
11467
  } else {
@@ -11530,5 +11761,8 @@ var BackendVersionRoomYDoc = class {
11530
11761
 
11531
11762
 
11532
11763
 
11533
- exports.BackendVersionRoomYDoc = BackendVersionRoomYDoc; exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.DTOAssetRenderConfiguration = DTOAssetRenderConfiguration; exports.DTOBrand = DTOBrand; exports.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOCreateBrandInput = DTOCreateBrandInput; exports.DTOCreateDocumentationGroupInput = DTOCreateDocumentationGroupInput; exports.DTOCreateDocumentationPageInputV2 = DTOCreateDocumentationPageInputV2; exports.DTOCreateDocumentationTabInput = DTOCreateDocumentationTabInput; exports.DTOCreateElementPropertyDefinitionInputV2 = DTOCreateElementPropertyDefinitionInputV2; exports.DTOCreateVersionInput = DTOCreateVersionInput; exports.DTODataSource = DTODataSource; exports.DTODataSourceCreationResponse = DTODataSourceCreationResponse; exports.DTODataSourceFigma = DTODataSourceFigma; exports.DTODataSourceFigmaCloud = DTODataSourceFigmaCloud; exports.DTODataSourceFigmaVariablesPlugin = DTODataSourceFigmaVariablesPlugin; exports.DTODataSourceTokenStudio = DTODataSourceTokenStudio; exports.DTODataSourcesListResponse = DTODataSourcesListResponse; exports.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODeleteElementPropertyDefinitionInputV2 = DTODeleteElementPropertyDefinitionInputV2; exports.DTODesignElementsDataDiffResponse = DTODesignElementsDataDiffResponse; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemUpdateInput = DTODesignSystemUpdateInput; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODiffCountBase = DTODiffCountBase; exports.DTODocumentationDraftChangeType = DTODocumentationDraftChangeType; exports.DTODocumentationDraftState = DTODocumentationDraftState; exports.DTODocumentationDraftStateCreated = DTODocumentationDraftStateCreated; exports.DTODocumentationDraftStateDeleted = DTODocumentationDraftStateDeleted; exports.DTODocumentationDraftStateUpdated = DTODocumentationDraftStateUpdated; exports.DTODocumentationGroupApprovalState = DTODocumentationGroupApprovalState; exports.DTODocumentationGroupCreateActionInputV2 = DTODocumentationGroupCreateActionInputV2; exports.DTODocumentationGroupCreateActionOutputV2 = DTODocumentationGroupCreateActionOutputV2; exports.DTODocumentationGroupDeleteActionInputV2 = DTODocumentationGroupDeleteActionInputV2; exports.DTODocumentationGroupDeleteActionOutputV2 = DTODocumentationGroupDeleteActionOutputV2; exports.DTODocumentationGroupDuplicateActionInputV2 = DTODocumentationGroupDuplicateActionInputV2; exports.DTODocumentationGroupDuplicateActionOutputV2 = DTODocumentationGroupDuplicateActionOutputV2; exports.DTODocumentationGroupMoveActionInputV2 = DTODocumentationGroupMoveActionInputV2; exports.DTODocumentationGroupMoveActionOutputV2 = DTODocumentationGroupMoveActionOutputV2; exports.DTODocumentationGroupRestoreActionInput = DTODocumentationGroupRestoreActionInput; exports.DTODocumentationGroupRestoreActionOutput = DTODocumentationGroupRestoreActionOutput; exports.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupUpdateActionInputV2 = DTODocumentationGroupUpdateActionInputV2; exports.DTODocumentationGroupUpdateActionOutputV2 = DTODocumentationGroupUpdateActionOutputV2; exports.DTODocumentationGroupV1 = DTODocumentationGroupV1; exports.DTODocumentationGroupV2 = DTODocumentationGroupV2; exports.DTODocumentationHierarchyV2 = DTODocumentationHierarchyV2; exports.DTODocumentationItemConfigurationV1 = DTODocumentationItemConfigurationV1; exports.DTODocumentationItemConfigurationV2 = DTODocumentationItemConfigurationV2; exports.DTODocumentationItemHeaderV2 = DTODocumentationItemHeaderV2; exports.DTODocumentationLinkPreviewRequest = DTODocumentationLinkPreviewRequest; exports.DTODocumentationLinkPreviewResponse = DTODocumentationLinkPreviewResponse; exports.DTODocumentationPageAnchor = DTODocumentationPageAnchor; exports.DTODocumentationPageApprovalState = DTODocumentationPageApprovalState; exports.DTODocumentationPageApprovalStateChangeActionInput = DTODocumentationPageApprovalStateChangeActionInput; exports.DTODocumentationPageApprovalStateChangeActionOutput = DTODocumentationPageApprovalStateChangeActionOutput; exports.DTODocumentationPageApprovalStateChangeInput = DTODocumentationPageApprovalStateChangeInput; exports.DTODocumentationPageContent = DTODocumentationPageContent; exports.DTODocumentationPageContentGetResponse = DTODocumentationPageContentGetResponse; exports.DTODocumentationPageCreateActionInputV2 = DTODocumentationPageCreateActionInputV2; exports.DTODocumentationPageCreateActionOutputV2 = DTODocumentationPageCreateActionOutputV2; exports.DTODocumentationPageDeleteActionInputV2 = DTODocumentationPageDeleteActionInputV2; exports.DTODocumentationPageDeleteActionOutputV2 = DTODocumentationPageDeleteActionOutputV2; exports.DTODocumentationPageDuplicateActionInputV2 = DTODocumentationPageDuplicateActionInputV2; exports.DTODocumentationPageDuplicateActionOutputV2 = DTODocumentationPageDuplicateActionOutputV2; exports.DTODocumentationPageMoveActionInputV2 = DTODocumentationPageMoveActionInputV2; exports.DTODocumentationPageMoveActionOutputV2 = DTODocumentationPageMoveActionOutputV2; exports.DTODocumentationPageRestoreActionInput = DTODocumentationPageRestoreActionInput; exports.DTODocumentationPageRestoreActionOutput = DTODocumentationPageRestoreActionOutput; exports.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageSnapshot = DTODocumentationPageSnapshot; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationPublishMetadata = DTODocumentationPublishMetadata; exports.DTODocumentationPublishTypeQueryParams = DTODocumentationPublishTypeQueryParams; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; exports.DTODownloadAssetsRequest = DTODownloadAssetsRequest; exports.DTODownloadAssetsResponse = DTODownloadAssetsResponse; exports.DTODuplicateDocumentationGroupInput = DTODuplicateDocumentationGroupInput; exports.DTODuplicateDocumentationPageInputV2 = DTODuplicateDocumentationPageInputV2; exports.DTOElementActionInput = DTOElementActionInput; exports.DTOElementActionOutput = DTOElementActionOutput; exports.DTOElementPropertyDefinition = DTOElementPropertyDefinition; exports.DTOElementPropertyDefinitionsGetResponse = DTOElementPropertyDefinitionsGetResponse; exports.DTOElementPropertyValue = DTOElementPropertyValue; exports.DTOElementPropertyValuesGetResponse = DTOElementPropertyValuesGetResponse; exports.DTOElementView = DTOElementView; exports.DTOElementViewBasePropertyColumn = DTOElementViewBasePropertyColumn; exports.DTOElementViewColumn = DTOElementViewColumn; exports.DTOElementViewColumnSharedAttributes = DTOElementViewColumnSharedAttributes; exports.DTOElementViewPropertyDefinitionColumn = DTOElementViewPropertyDefinitionColumn; exports.DTOElementViewThemeColumn = DTOElementViewThemeColumn; exports.DTOElementViewsListResponse = DTOElementViewsListResponse; exports.DTOElementsGetOutput = DTOElementsGetOutput; exports.DTOElementsGetQuerySchema = DTOElementsGetQuerySchema; exports.DTOElementsGetTypeFilter = DTOElementsGetTypeFilter; exports.DTOExportJob = DTOExportJob; exports.DTOExportJobCreatedBy = DTOExportJobCreatedBy; exports.DTOExportJobDesignSystemPreview = DTOExportJobDesignSystemPreview; exports.DTOExportJobDesignSystemVersionPreview = DTOExportJobDesignSystemVersionPreview; exports.DTOExportJobDestinations = DTOExportJobDestinations; exports.DTOExportJobResponse = DTOExportJobResponse; exports.DTOExportJobResult = DTOExportJobResult; exports.DTOExportJobsListFilter = DTOExportJobsListFilter; exports.DTOExporter = DTOExporter; exports.DTOExporterCreateInput = DTOExporterCreateInput; exports.DTOExporterCreateOutput = DTOExporterCreateOutput; exports.DTOExporterGitProviderEnum = DTOExporterGitProviderEnum; exports.DTOExporterMembership = DTOExporterMembership; exports.DTOExporterMembershipRole = DTOExporterMembershipRole; exports.DTOExporterProperty = DTOExporterProperty; exports.DTOExporterPropertyListResponse = DTOExporterPropertyListResponse; exports.DTOExporterSource = DTOExporterSource; exports.DTOExporterType = DTOExporterType; exports.DTOExporterUpdateInput = DTOExporterUpdateInput; exports.DTOFigmaComponent = DTOFigmaComponent; exports.DTOFigmaComponentListResponse = DTOFigmaComponentListResponse; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderActionInput = DTOFigmaNodeRenderActionInput; exports.DTOFigmaNodeRenderActionOutput = DTOFigmaNodeRenderActionOutput; exports.DTOFigmaNodeRenderFormat = DTOFigmaNodeRenderFormat; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOGitBranch = DTOGitBranch; exports.DTOGitOrganization = DTOGitOrganization; exports.DTOGitProject = DTOGitProject; exports.DTOGitRepository = DTOGitRepository; exports.DTOIntegration = DTOIntegration; exports.DTOIntegrationCredentials = DTOIntegrationCredentials; exports.DTOIntegrationOAuthGetResponse = DTOIntegrationOAuthGetResponse; exports.DTOIntegrationPostResponse = DTOIntegrationPostResponse; exports.DTOIntegrationsGetListResponse = DTOIntegrationsGetListResponse; exports.DTOLiveblocksAuthRequest = DTOLiveblocksAuthRequest; exports.DTOLiveblocksAuthResponse = DTOLiveblocksAuthResponse; exports.DTOMoveDocumentationGroupInput = DTOMoveDocumentationGroupInput; exports.DTOMoveDocumentationPageInputV2 = DTOMoveDocumentationPageInputV2; exports.DTONpmRegistryConfig = DTONpmRegistryConfig; exports.DTONpmRegistryConfigConstants = DTONpmRegistryConfigConstants; exports.DTOPageBlockColorV2 = DTOPageBlockColorV2; exports.DTOPageBlockDefinition = DTOPageBlockDefinition; exports.DTOPageBlockDefinitionBehavior = DTOPageBlockDefinitionBehavior; exports.DTOPageBlockDefinitionItem = DTOPageBlockDefinitionItem; exports.DTOPageBlockDefinitionLayout = DTOPageBlockDefinitionLayout; exports.DTOPageBlockDefinitionProperty = DTOPageBlockDefinitionProperty; exports.DTOPageBlockDefinitionVariant = DTOPageBlockDefinitionVariant; exports.DTOPageBlockItemV2 = DTOPageBlockItemV2; exports.DTOPagination = DTOPagination; exports.DTOPipeline = DTOPipeline; exports.DTOPipelineCreateBody = DTOPipelineCreateBody; exports.DTOPipelineTriggerBody = DTOPipelineTriggerBody; exports.DTOPipelineUpdateBody = DTOPipelineUpdateBody; exports.DTOPropertyDefinitionCreateActionInputV2 = DTOPropertyDefinitionCreateActionInputV2; exports.DTOPropertyDefinitionCreateActionOutputV2 = DTOPropertyDefinitionCreateActionOutputV2; exports.DTOPropertyDefinitionDeleteActionInputV2 = DTOPropertyDefinitionDeleteActionInputV2; exports.DTOPropertyDefinitionDeleteActionOutputV2 = DTOPropertyDefinitionDeleteActionOutputV2; exports.DTOPropertyDefinitionUpdateActionInputV2 = DTOPropertyDefinitionUpdateActionInputV2; exports.DTOPropertyDefinitionUpdateActionOutputV2 = DTOPropertyDefinitionUpdateActionOutputV2; exports.DTOPublishDocumentationChanges = DTOPublishDocumentationChanges; exports.DTOPublishDocumentationRequest = DTOPublishDocumentationRequest; exports.DTOPublishDocumentationResponse = DTOPublishDocumentationResponse; exports.DTORenderedAssetFile = DTORenderedAssetFile; exports.DTORestoreDocumentationGroupInput = DTORestoreDocumentationGroupInput; exports.DTORestoreDocumentationPageInput = DTORestoreDocumentationPageInput; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateElementPropertyDefinitionInputV2 = DTOUpdateElementPropertyDefinitionInputV2; exports.DTOUpdateUserNotificationSettingsPayload = DTOUpdateUserNotificationSettingsPayload; exports.DTOUpdateVersionInput = DTOUpdateVersionInput; exports.DTOUserNotificationSettingsResponse = DTOUserNotificationSettingsResponse; exports.DTOUserProfileUpdatePayload = DTOUserProfileUpdatePayload; exports.DTOUserProfileUpdateResponse = DTOUserProfileUpdateResponse; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceIntegrationGetGitObjectsInput = DTOWorkspaceIntegrationGetGitObjectsInput; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.FrontendVersionRoomYDoc = FrontendVersionRoomYDoc; exports.ListTreeBuilder = ListTreeBuilder; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.VersionRoomBaseYDoc = VersionRoomBaseYDoc; exports.VersionSQSPayload = VersionSQSPayload; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPageToDTOV2 = documentationPageToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.generateHash = generateHash; exports.generatePageContentHash = generatePageContentHash; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.gitBranchToDto = gitBranchToDto; exports.gitOrganizationToDto = gitOrganizationToDto; exports.gitProjectToDto = gitProjectToDto; exports.gitRepositoryToDto = gitRepositoryToDto; exports.integrationCredentialToDto = integrationCredentialToDto; exports.integrationToDto = integrationToDto; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYDoc = pageToYDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pipelineToDto = pipelineToDto; exports.pmSchema = pmSchema; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.yjsToItemConfiguration = yjsToItemConfiguration;
11764
+
11765
+
11766
+
11767
+ exports.BackendVersionRoomYDoc = BackendVersionRoomYDoc; exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.DTOAssetRenderConfiguration = DTOAssetRenderConfiguration; exports.DTOBrand = DTOBrand; exports.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOCreateBrandInput = DTOCreateBrandInput; exports.DTOCreateDocumentationGroupInput = DTOCreateDocumentationGroupInput; exports.DTOCreateDocumentationPageInputV2 = DTOCreateDocumentationPageInputV2; exports.DTOCreateDocumentationTabInput = DTOCreateDocumentationTabInput; exports.DTOCreateElementPropertyDefinitionInputV2 = DTOCreateElementPropertyDefinitionInputV2; exports.DTOCreateVersionInput = DTOCreateVersionInput; exports.DTODataSource = DTODataSource; exports.DTODataSourceCreationResponse = DTODataSourceCreationResponse; exports.DTODataSourceFigma = DTODataSourceFigma; exports.DTODataSourceFigmaCloud = DTODataSourceFigmaCloud; exports.DTODataSourceFigmaVariablesPlugin = DTODataSourceFigmaVariablesPlugin; exports.DTODataSourceTokenStudio = DTODataSourceTokenStudio; exports.DTODataSourcesListResponse = DTODataSourcesListResponse; exports.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODeleteElementPropertyDefinitionInputV2 = DTODeleteElementPropertyDefinitionInputV2; exports.DTODesignElementsDataDiffResponse = DTODesignElementsDataDiffResponse; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemUpdateInput = DTODesignSystemUpdateInput; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODiffCountBase = DTODiffCountBase; exports.DTODocumentationDraftChangeType = DTODocumentationDraftChangeType; exports.DTODocumentationDraftState = DTODocumentationDraftState; exports.DTODocumentationDraftStateCreated = DTODocumentationDraftStateCreated; exports.DTODocumentationDraftStateDeleted = DTODocumentationDraftStateDeleted; exports.DTODocumentationDraftStateUpdated = DTODocumentationDraftStateUpdated; exports.DTODocumentationGroupApprovalState = DTODocumentationGroupApprovalState; exports.DTODocumentationGroupCreateActionInputV2 = DTODocumentationGroupCreateActionInputV2; exports.DTODocumentationGroupCreateActionOutputV2 = DTODocumentationGroupCreateActionOutputV2; exports.DTODocumentationGroupDeleteActionInputV2 = DTODocumentationGroupDeleteActionInputV2; exports.DTODocumentationGroupDeleteActionOutputV2 = DTODocumentationGroupDeleteActionOutputV2; exports.DTODocumentationGroupDuplicateActionInputV2 = DTODocumentationGroupDuplicateActionInputV2; exports.DTODocumentationGroupDuplicateActionOutputV2 = DTODocumentationGroupDuplicateActionOutputV2; exports.DTODocumentationGroupMoveActionInputV2 = DTODocumentationGroupMoveActionInputV2; exports.DTODocumentationGroupMoveActionOutputV2 = DTODocumentationGroupMoveActionOutputV2; exports.DTODocumentationGroupRestoreActionInput = DTODocumentationGroupRestoreActionInput; exports.DTODocumentationGroupRestoreActionOutput = DTODocumentationGroupRestoreActionOutput; exports.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupUpdateActionInputV2 = DTODocumentationGroupUpdateActionInputV2; exports.DTODocumentationGroupUpdateActionOutputV2 = DTODocumentationGroupUpdateActionOutputV2; exports.DTODocumentationGroupV1 = DTODocumentationGroupV1; exports.DTODocumentationGroupV2 = DTODocumentationGroupV2; exports.DTODocumentationHierarchyV2 = DTODocumentationHierarchyV2; exports.DTODocumentationItemConfigurationV1 = DTODocumentationItemConfigurationV1; exports.DTODocumentationItemConfigurationV2 = DTODocumentationItemConfigurationV2; exports.DTODocumentationItemHeaderV2 = DTODocumentationItemHeaderV2; exports.DTODocumentationLinkPreviewRequest = DTODocumentationLinkPreviewRequest; exports.DTODocumentationLinkPreviewResponse = DTODocumentationLinkPreviewResponse; exports.DTODocumentationPageAnchor = DTODocumentationPageAnchor; exports.DTODocumentationPageApprovalState = DTODocumentationPageApprovalState; exports.DTODocumentationPageApprovalStateChangeActionInput = DTODocumentationPageApprovalStateChangeActionInput; exports.DTODocumentationPageApprovalStateChangeActionOutput = DTODocumentationPageApprovalStateChangeActionOutput; exports.DTODocumentationPageApprovalStateChangeInput = DTODocumentationPageApprovalStateChangeInput; exports.DTODocumentationPageContent = DTODocumentationPageContent; exports.DTODocumentationPageContentGetResponse = DTODocumentationPageContentGetResponse; exports.DTODocumentationPageCreateActionInputV2 = DTODocumentationPageCreateActionInputV2; exports.DTODocumentationPageCreateActionOutputV2 = DTODocumentationPageCreateActionOutputV2; exports.DTODocumentationPageDeleteActionInputV2 = DTODocumentationPageDeleteActionInputV2; exports.DTODocumentationPageDeleteActionOutputV2 = DTODocumentationPageDeleteActionOutputV2; exports.DTODocumentationPageDuplicateActionInputV2 = DTODocumentationPageDuplicateActionInputV2; exports.DTODocumentationPageDuplicateActionOutputV2 = DTODocumentationPageDuplicateActionOutputV2; exports.DTODocumentationPageMoveActionInputV2 = DTODocumentationPageMoveActionInputV2; exports.DTODocumentationPageMoveActionOutputV2 = DTODocumentationPageMoveActionOutputV2; exports.DTODocumentationPageRestoreActionInput = DTODocumentationPageRestoreActionInput; exports.DTODocumentationPageRestoreActionOutput = DTODocumentationPageRestoreActionOutput; exports.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageSnapshot = DTODocumentationPageSnapshot; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationPublishMetadata = DTODocumentationPublishMetadata; exports.DTODocumentationPublishTypeQueryParams = DTODocumentationPublishTypeQueryParams; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; exports.DTODownloadAssetsRequest = DTODownloadAssetsRequest; exports.DTODownloadAssetsResponse = DTODownloadAssetsResponse; exports.DTODuplicateDocumentationGroupInput = DTODuplicateDocumentationGroupInput; exports.DTODuplicateDocumentationPageInputV2 = DTODuplicateDocumentationPageInputV2; exports.DTOElementActionInput = DTOElementActionInput; exports.DTOElementActionOutput = DTOElementActionOutput; exports.DTOElementPropertyDefinition = DTOElementPropertyDefinition; exports.DTOElementPropertyDefinitionsGetResponse = DTOElementPropertyDefinitionsGetResponse; exports.DTOElementPropertyValue = DTOElementPropertyValue; exports.DTOElementPropertyValuesGetResponse = DTOElementPropertyValuesGetResponse; exports.DTOElementView = DTOElementView; exports.DTOElementViewBasePropertyColumn = DTOElementViewBasePropertyColumn; exports.DTOElementViewColumn = DTOElementViewColumn; exports.DTOElementViewColumnSharedAttributes = DTOElementViewColumnSharedAttributes; exports.DTOElementViewPropertyDefinitionColumn = DTOElementViewPropertyDefinitionColumn; exports.DTOElementViewThemeColumn = DTOElementViewThemeColumn; exports.DTOElementViewsListResponse = DTOElementViewsListResponse; exports.DTOElementsGetOutput = DTOElementsGetOutput; exports.DTOElementsGetQuerySchema = DTOElementsGetQuerySchema; exports.DTOElementsGetTypeFilter = DTOElementsGetTypeFilter; exports.DTOExportJob = DTOExportJob; exports.DTOExportJobCreatedBy = DTOExportJobCreatedBy; exports.DTOExportJobDesignSystemPreview = DTOExportJobDesignSystemPreview; exports.DTOExportJobDesignSystemVersionPreview = DTOExportJobDesignSystemVersionPreview; exports.DTOExportJobDestinations = DTOExportJobDestinations; exports.DTOExportJobResponse = DTOExportJobResponse; exports.DTOExportJobResult = DTOExportJobResult; exports.DTOExportJobsListFilter = DTOExportJobsListFilter; exports.DTOExporter = DTOExporter; exports.DTOExporterCreateInput = DTOExporterCreateInput; exports.DTOExporterCreateOutput = DTOExporterCreateOutput; exports.DTOExporterGitProviderEnum = DTOExporterGitProviderEnum; exports.DTOExporterMembership = DTOExporterMembership; exports.DTOExporterMembershipRole = DTOExporterMembershipRole; exports.DTOExporterProperty = DTOExporterProperty; exports.DTOExporterPropertyListResponse = DTOExporterPropertyListResponse; exports.DTOExporterSource = DTOExporterSource; exports.DTOExporterType = DTOExporterType; exports.DTOExporterUpdateInput = DTOExporterUpdateInput; exports.DTOFigmaComponent = DTOFigmaComponent; exports.DTOFigmaComponentListResponse = DTOFigmaComponentListResponse; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderActionInput = DTOFigmaNodeRenderActionInput; exports.DTOFigmaNodeRenderActionOutput = DTOFigmaNodeRenderActionOutput; exports.DTOFigmaNodeRenderFormat = DTOFigmaNodeRenderFormat; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOGitBranch = DTOGitBranch; exports.DTOGitOrganization = DTOGitOrganization; exports.DTOGitProject = DTOGitProject; exports.DTOGitRepository = DTOGitRepository; exports.DTOIntegration = DTOIntegration; exports.DTOIntegrationCredentials = DTOIntegrationCredentials; exports.DTOIntegrationOAuthGetResponse = DTOIntegrationOAuthGetResponse; exports.DTOIntegrationPostResponse = DTOIntegrationPostResponse; exports.DTOIntegrationsGetListResponse = DTOIntegrationsGetListResponse; exports.DTOLiveblocksAuthRequest = DTOLiveblocksAuthRequest; exports.DTOLiveblocksAuthResponse = DTOLiveblocksAuthResponse; exports.DTOMoveDocumentationGroupInput = DTOMoveDocumentationGroupInput; exports.DTOMoveDocumentationPageInputV2 = DTOMoveDocumentationPageInputV2; exports.DTONpmRegistryConfig = DTONpmRegistryConfig; exports.DTONpmRegistryConfigConstants = DTONpmRegistryConfigConstants; exports.DTOPageBlockColorV2 = DTOPageBlockColorV2; exports.DTOPageBlockDefinition = DTOPageBlockDefinition; exports.DTOPageBlockDefinitionBehavior = DTOPageBlockDefinitionBehavior; exports.DTOPageBlockDefinitionItem = DTOPageBlockDefinitionItem; exports.DTOPageBlockDefinitionLayout = DTOPageBlockDefinitionLayout; exports.DTOPageBlockDefinitionProperty = DTOPageBlockDefinitionProperty; exports.DTOPageBlockDefinitionVariant = DTOPageBlockDefinitionVariant; exports.DTOPageBlockItemV2 = DTOPageBlockItemV2; exports.DTOPagination = DTOPagination; exports.DTOPipeline = DTOPipeline; exports.DTOPipelineCreateBody = DTOPipelineCreateBody; exports.DTOPipelineTriggerBody = DTOPipelineTriggerBody; exports.DTOPipelineUpdateBody = DTOPipelineUpdateBody; exports.DTOPropertyDefinitionCreateActionInputV2 = DTOPropertyDefinitionCreateActionInputV2; exports.DTOPropertyDefinitionCreateActionOutputV2 = DTOPropertyDefinitionCreateActionOutputV2; exports.DTOPropertyDefinitionDeleteActionInputV2 = DTOPropertyDefinitionDeleteActionInputV2; exports.DTOPropertyDefinitionDeleteActionOutputV2 = DTOPropertyDefinitionDeleteActionOutputV2; exports.DTOPropertyDefinitionUpdateActionInputV2 = DTOPropertyDefinitionUpdateActionInputV2; exports.DTOPropertyDefinitionUpdateActionOutputV2 = DTOPropertyDefinitionUpdateActionOutputV2; exports.DTOPublishDocumentationChanges = DTOPublishDocumentationChanges; exports.DTOPublishDocumentationRequest = DTOPublishDocumentationRequest; exports.DTOPublishDocumentationResponse = DTOPublishDocumentationResponse; exports.DTORenderedAssetFile = DTORenderedAssetFile; exports.DTORestoreDocumentationGroupInput = DTORestoreDocumentationGroupInput; exports.DTORestoreDocumentationPageInput = DTORestoreDocumentationPageInput; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateElementPropertyDefinitionInputV2 = DTOUpdateElementPropertyDefinitionInputV2; exports.DTOUpdateUserNotificationSettingsPayload = DTOUpdateUserNotificationSettingsPayload; exports.DTOUpdateVersionInput = DTOUpdateVersionInput; exports.DTOUserNotificationSettingsResponse = DTOUserNotificationSettingsResponse; exports.DTOUserProfileUpdatePayload = DTOUserProfileUpdatePayload; exports.DTOUserProfileUpdateResponse = DTOUserProfileUpdateResponse; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceIntegrationGetGitObjectsInput = DTOWorkspaceIntegrationGetGitObjectsInput; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.FrontendVersionRoomYDoc = FrontendVersionRoomYDoc; exports.ListTreeBuilder = ListTreeBuilder; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.VersionRoomBaseYDoc = VersionRoomBaseYDoc; exports.VersionSQSPayload = VersionSQSPayload; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPageToDTOV2 = documentationPageToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.generateHash = generateHash; exports.generatePageContentHash = generatePageContentHash; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.gitBranchToDto = gitBranchToDto; exports.gitOrganizationToDto = gitOrganizationToDto; exports.gitProjectToDto = gitProjectToDto; exports.gitRepositoryToDto = gitRepositoryToDto; exports.innerEditorProsemirrorSchema = innerEditorProsemirrorSchema; exports.integrationCredentialToDto = integrationCredentialToDto; exports.integrationToDto = integrationToDto; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.mainEditorProsemirrorSchema = mainEditorProsemirrorSchema; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYDoc = pageToYDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pipelineToDto = pipelineToDto; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorDocToRichTextPropertyValue = prosemirrorDocToRichTextPropertyValue; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.richTextPropertyValueToProsemirror = richTextPropertyValueToProsemirror; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.yjsToItemConfiguration = yjsToItemConfiguration;
11534
11768
  //# sourceMappingURL=index.js.map