@supernova-studio/client 0.52.11 → 0.52.13

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
@@ -43,6 +43,7 @@ var _zod = require('zod');
43
43
 
44
44
 
45
45
 
46
+
46
47
 
47
48
 
48
49
  var _deepequal = require('deep-equal'); var _deepequal2 = _interopRequireDefault(_deepequal);
@@ -124,7 +125,6 @@ var _slugify = require('@sindresorhus/slugify'); var _slugify2 = _interopRequire
124
125
 
125
126
 
126
127
 
127
-
128
128
 
129
129
 
130
130
  var _ipcidr = require('ip-cidr'); var _ipcidr2 = _interopRequireDefault(_ipcidr);
@@ -557,6 +557,7 @@ var ResolvedAsset = Asset.extend({
557
557
  var FigmaFileDownloadScope = _zod.z.object({
558
558
  styles: _zod.z.boolean(),
559
559
  components: _zod.z.boolean(),
560
+ componentSets: _zod.z.boolean(),
560
561
  currentVersion: _zod.z.literal("__latest__").nullable(),
561
562
  publishedVersion: _zod.z.string().nullable(),
562
563
  downloadChunkSize: _zod.z.number().optional(),
@@ -641,6 +642,43 @@ var BorderValue = _zod.z.object({
641
642
  style: BorderStyle.optional()
642
643
  });
643
644
  var BorderTokenData = tokenAliasOrValue(BorderValue);
645
+ var FigmaComponentPropertyType = _zod.z.enum(["Boolean", "InstanceSwap", "Variant", "Text"]);
646
+ var FigmaComponentBooleanProperty = _zod.z.object({
647
+ type: _zod.z.literal(FigmaComponentPropertyType.enum.Boolean),
648
+ defaultValue: _zod.z.boolean()
649
+ });
650
+ var FigmaComponentInstanceSwapProperty = _zod.z.object({
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()
657
+ });
658
+ var FigmaComponentVariantProperty = _zod.z.object({
659
+ type: _zod.z.literal(FigmaComponentPropertyType.enum.Variant),
660
+ defaultValue: _zod.z.string(),
661
+ options: _zod.z.array(_zod.z.string())
662
+ });
663
+ var FigmaComponentTextProperty = _zod.z.object({
664
+ type: _zod.z.literal(FigmaComponentPropertyType.enum.Text),
665
+ defaultValue: _zod.z.string()
666
+ });
667
+ var FigmaComponentProperty = _zod.z.discriminatedUnion("type", [
668
+ FigmaComponentBooleanProperty,
669
+ FigmaComponentInstanceSwapProperty,
670
+ FigmaComponentTextProperty
671
+ ]);
672
+ var FigmaComponentPropertyMap = _zod.z.record(_zod.z.string(), FigmaComponentProperty);
673
+ var FigmaComponentSetProperties = _zod.z.record(
674
+ _zod.z.string(),
675
+ _zod.z.discriminatedUnion("type", [
676
+ FigmaComponentBooleanProperty,
677
+ FigmaComponentInstanceSwapProperty,
678
+ FigmaComponentTextProperty,
679
+ FigmaComponentVariantProperty
680
+ ])
681
+ );
644
682
  var ComponentElementData = _zod.z.object({
645
683
  value: _zod.z.object({
646
684
  thumbnailImage: _zod.z.object({
@@ -654,7 +692,9 @@ var ComponentElementData = _zod.z.object({
654
692
  url: _zod.z.string(),
655
693
  assetId: _zod.z.string()
656
694
  })
657
- }).optional()
695
+ }).optional(),
696
+ parentComponentPersistentId: nullishToOptional(_zod.z.string()),
697
+ componentPropertyDefinitions: nullishToOptional(FigmaComponentPropertyMap)
658
698
  })
659
699
  });
660
700
  var SupernovaException = class _SupernovaException extends Error {
@@ -2438,66 +2478,6 @@ var ZIndexValue = _zod.z.object({
2438
2478
  measure: _zod.z.number()
2439
2479
  });
2440
2480
  var ZIndexTokenData = tokenAliasOrValue(ZIndexValue);
2441
- var FigmaComponentPropertyType = _zod.z.enum(["Boolean", "InstanceSwap", "Variant", "Text"]);
2442
- var FigmaComponentBooleanProperty = _zod.z.object({
2443
- type: _zod.z.literal(FigmaComponentPropertyType.enum.Boolean),
2444
- value: _zod.z.boolean(),
2445
- defaultValue: _zod.z.boolean()
2446
- });
2447
- var FigmaComponentInstanceSwapProperty = _zod.z.object({
2448
- type: _zod.z.literal(FigmaComponentPropertyType.enum.InstanceSwap),
2449
- value: _zod.z.string()
2450
- // Persistent ID of a Component to swap??
2451
- });
2452
- var FigmaComponentVariantProperty = _zod.z.object({
2453
- type: _zod.z.literal(FigmaComponentPropertyType.enum.Variant),
2454
- value: _zod.z.string(),
2455
- options: _zod.z.array(_zod.z.string())
2456
- });
2457
- var FigmaComponentTextProperty = _zod.z.object({
2458
- type: _zod.z.literal(FigmaComponentPropertyType.enum.Text),
2459
- value: _zod.z.string()
2460
- });
2461
- var FigmaComponentProperties = _zod.z.record(
2462
- _zod.z.string(),
2463
- _zod.z.discriminatedUnion("type", [
2464
- FigmaComponentBooleanProperty,
2465
- FigmaComponentInstanceSwapProperty,
2466
- FigmaComponentTextProperty
2467
- ])
2468
- );
2469
- var FigmaComponentSetProperties = _zod.z.record(
2470
- _zod.z.string(),
2471
- _zod.z.discriminatedUnion("type", [
2472
- FigmaComponentBooleanProperty,
2473
- FigmaComponentInstanceSwapProperty,
2474
- FigmaComponentTextProperty,
2475
- FigmaComponentVariantProperty
2476
- ])
2477
- );
2478
- var ComponentOriginPart = _zod.z.object({
2479
- nodeId: _zod.z.string().optional(),
2480
- width: _zod.z.number().optional(),
2481
- height: _zod.z.number().optional()
2482
- });
2483
- var ComponentAsset = _zod.z.object({
2484
- assetId: _zod.z.string(),
2485
- assetPath: _zod.z.string()
2486
- });
2487
- var ComponentOrigin = DesignElementOrigin.extend(ComponentOriginPart.shape);
2488
- var BaseComponent = DesignElementBase.extend(DesignElementGroupableRequiredPart.shape).extend(DesignElementBrandedPart.shape).extend({
2489
- origin: ComponentOrigin.optional(),
2490
- thumbnail: ComponentAsset
2491
- });
2492
- var Component = BaseComponent.extend({
2493
- svg: ComponentAsset.optional(),
2494
- isAsset: _zod.z.boolean(),
2495
- componentSetId: _zod.z.string().optional(),
2496
- properties: FigmaComponentProperties.optional()
2497
- });
2498
- var ComponentSet = BaseComponent.extend({
2499
- properties: FigmaComponentSetProperties
2500
- });
2501
2481
  var ElementGroup = DesignElementBase.extend(DesignElementGroupablePart.shape).extend(DesignElementSlugPart.shape).extend(DesignElementBrandedPart.partial().shape).extend({
2502
2482
  shortPersistentId: _zod.z.string().optional(),
2503
2483
  childType: DesignElementType,
@@ -2519,6 +2499,24 @@ var DocumentationPageV2 = DesignElementBase.extend(DesignElementGroupableRequire
2519
2499
  oldBlocks: _zod.z.array(PageBlockV1).optional()
2520
2500
  })
2521
2501
  });
2502
+ var FigmaComponentOriginPart = _zod.z.object({
2503
+ nodeId: _zod.z.string().optional(),
2504
+ width: _zod.z.number().optional(),
2505
+ height: _zod.z.number().optional()
2506
+ });
2507
+ var FigmaComponentAsset = _zod.z.object({
2508
+ assetId: _zod.z.string(),
2509
+ assetPath: _zod.z.string()
2510
+ });
2511
+ var FigmaComponentOrigin = DesignElementOrigin.extend(FigmaComponentOriginPart.shape);
2512
+ var FigmaComponent = DesignElementBase.extend(DesignElementGroupableRequiredPart.shape).extend(DesignElementBrandedPart.shape).extend({
2513
+ origin: FigmaComponentOrigin.optional(),
2514
+ thumbnail: FigmaComponentAsset,
2515
+ componentPropertyDefinitions: FigmaComponentPropertyMap.optional(),
2516
+ svg: FigmaComponentAsset.optional(),
2517
+ isAsset: _zod.z.boolean(),
2518
+ parentComponentPersistentId: nullishToOptional(_zod.z.string())
2519
+ });
2522
2520
  var FigmaFileStructureOrigin = _zod.z.object({
2523
2521
  sourceId: _zod.z.string(),
2524
2522
  fileId: _zod.z.string().optional()
@@ -2972,6 +2970,21 @@ var FigmaImportContextWithDownloadScopes = FigmaImportContextWithSourcesState.ex
2972
2970
  */
2973
2971
  changedImportedSourceDataBySourceId: _zod.z.record(ChangedImportedFigmaSourceData)
2974
2972
  });
2973
+ var ImportModelBase = _zod.z.object({
2974
+ id: _zod.z.string(),
2975
+ meta: ObjectMeta,
2976
+ origin: DesignElementOrigin,
2977
+ brandPersistentId: _zod.z.string(),
2978
+ sortOrder: _zod.z.number()
2979
+ });
2980
+ var ImportModelInputBase = ImportModelBase.omit({
2981
+ brandPersistentId: true,
2982
+ origin: true,
2983
+ sortOrder: true
2984
+ }).extend({
2985
+ originId: _zod.z.string(),
2986
+ originMetadata: _zod.z.record(_zod.z.any())
2987
+ });
2975
2988
  var ImageImportModelType = _zod.z.enum(["Url", "FigmaRender"]);
2976
2989
  var ImageImportModelBase = _zod.z.object({
2977
2990
  scope: AssetScope
@@ -3002,35 +3015,48 @@ var FigmaRenderImportModel = _zod.z.discriminatedUnion("format", [
3002
3015
  FigmaSvgRenderImportModel
3003
3016
  ]);
3004
3017
  var ImageImportModel = _zod.z.union([UrlImageImportModel, FigmaRenderImportModel]);
3005
- var ImportModelBase = _zod.z.object({
3006
- id: _zod.z.string(),
3007
- meta: ObjectMeta,
3008
- origin: DesignElementOrigin,
3009
- brandPersistentId: _zod.z.string(),
3010
- sortOrder: _zod.z.number()
3018
+ var FigmaComponentImportModelPart = _zod.z.object({
3019
+ thumbnail: ImageImportModel,
3020
+ parentComponentId: _zod.z.string().optional(),
3021
+ componentPropertyDefinitions: FigmaComponentPropertyMap.optional()
3011
3022
  });
3012
- var ImportModelInputBase = ImportModelBase.omit({
3013
- brandPersistentId: true,
3014
- origin: true,
3015
- sortOrder: true
3016
- }).extend({
3017
- originId: _zod.z.string(),
3018
- originMetadata: _zod.z.record(_zod.z.any())
3019
- });
3020
- var ComponentImportModelPart = _zod.z.object({
3021
- thumbnail: ImageImportModel
3022
- });
3023
- var ComponentImportModel = ImportModelBase.extend(ComponentImportModelPart.shape).extend({
3023
+ var FigmaComponentImportModel = ImportModelBase.extend(FigmaComponentImportModelPart.shape).extend({
3024
3024
  isAsset: _zod.z.boolean(),
3025
3025
  svg: FigmaSvgRenderImportModel.optional(),
3026
- origin: ComponentOrigin
3026
+ origin: FigmaComponentOrigin
3027
3027
  });
3028
- var ComponentImportModelInput = ImportModelInputBase.extend(ComponentImportModelPart.shape).extend({
3029
- originMetadata: ComponentOriginPart
3028
+ var FigmaComponentImportModelInput = ImportModelInputBase.extend(FigmaComponentImportModelPart.shape).extend({
3029
+ originMetadata: FigmaComponentOriginPart
3030
3030
  });
3031
- var AssetImportModelInput = ImportModelInputBase.extend(ComponentImportModelPart.shape).extend({
3031
+ var AssetImportModelInput = ImportModelInputBase.extend(FigmaComponentImportModelPart.shape).extend({
3032
3032
  svg: FigmaSvgRenderImportModel,
3033
- originMetadata: ComponentOriginPart
3033
+ originMetadata: FigmaComponentOriginPart
3034
+ });
3035
+ var DataSourceImportModel = _zod.z.object({
3036
+ id: _zod.z.string(),
3037
+ fileName: _zod.z.string().optional(),
3038
+ thumbnailUrl: _zod.z.string().optional()
3039
+ });
3040
+ var FigmaFileStructureNodeImportModelBase = FigmaFileStructureNodeBase.extend({
3041
+ png: FigmaPngRenderImportModel,
3042
+ svg: FigmaSvgRenderImportModel
3043
+ });
3044
+ var FigmaFileStructureNodeImportModel = FigmaFileStructureNodeImportModelBase.extend({
3045
+ children: _zod.z.lazy(() => FigmaFileStructureNodeImportModel.array())
3046
+ });
3047
+ var FigmaFileStructureImportModelPart = _zod.z.object({
3048
+ data: _zod.z.object({
3049
+ rootNode: FigmaFileStructureNodeImportModel,
3050
+ assetsInFile: FigmaFileStructureStatistics
3051
+ })
3052
+ });
3053
+ var FigmaFileStructureImportModel = ImportModelBase.extend(FigmaFileStructureImportModelPart.shape).extend({
3054
+ origin: FigmaFileStructureOrigin
3055
+ });
3056
+ var FigmaFileStructureImportModelInput = ImportModelInputBase.extend(
3057
+ FigmaFileStructureImportModelPart.shape
3058
+ ).extend({
3059
+ fileVersionId: _zod.z.string()
3034
3060
  });
3035
3061
  var ThemeOverrideImportModelBase = DesignTokenTypedData.and(
3036
3062
  _zod.z.object({
@@ -3081,36 +3107,10 @@ var DesignTokenImportModelInputBase = ImportModelInputBase.extend(DesignTokenImp
3081
3107
  });
3082
3108
  var DesignTokenImportModel = DesignTokenTypedData.and(DesignTokenImportModelBase);
3083
3109
  var DesignTokenImportModelInput = DesignTokenTypedData.and(DesignTokenImportModelInputBase);
3084
- var FigmaFileStructureNodeImportModelBase = FigmaFileStructureNodeBase.extend({
3085
- png: FigmaPngRenderImportModel,
3086
- svg: FigmaSvgRenderImportModel
3087
- });
3088
- var FigmaFileStructureNodeImportModel = FigmaFileStructureNodeImportModelBase.extend({
3089
- children: _zod.z.lazy(() => FigmaFileStructureNodeImportModel.array())
3090
- });
3091
- var FigmaFileStructureImportModelPart = _zod.z.object({
3092
- data: _zod.z.object({
3093
- rootNode: FigmaFileStructureNodeImportModel,
3094
- assetsInFile: FigmaFileStructureStatistics
3095
- })
3096
- });
3097
- var FigmaFileStructureImportModel = ImportModelBase.extend(FigmaFileStructureImportModelPart.shape).extend({
3098
- origin: FigmaFileStructureOrigin
3099
- });
3100
- var FigmaFileStructureImportModelInput = ImportModelInputBase.extend(
3101
- FigmaFileStructureImportModelPart.shape
3102
- ).extend({
3103
- fileVersionId: _zod.z.string()
3104
- });
3105
- var DataSourceImportModel = _zod.z.object({
3106
- id: _zod.z.string(),
3107
- fileName: _zod.z.string().optional(),
3108
- thumbnailUrl: _zod.z.string().optional()
3109
- });
3110
3110
  var ImportModelInputCollection = _zod.z.object({
3111
3111
  source: DataSourceImportModel,
3112
3112
  tokens: _zod.z.array(DesignTokenImportModelInput).default([]),
3113
- components: _zod.z.array(ComponentImportModelInput).default([]),
3113
+ components: _zod.z.array(FigmaComponentImportModelInput).default([]),
3114
3114
  assets: _zod.z.array(AssetImportModelInput).default([]),
3115
3115
  themeUpdates: _zod.z.array(ThemeUpdateImportModelInput).default([]),
3116
3116
  themes: _zod.z.array(ThemeImportModelInput).default([]),
@@ -3119,7 +3119,7 @@ var ImportModelInputCollection = _zod.z.object({
3119
3119
  var ImportModelCollection = _zod.z.object({
3120
3120
  sources: _zod.z.array(DataSourceImportModel),
3121
3121
  tokens: _zod.z.array(DesignTokenImportModel).default([]),
3122
- components: _zod.z.array(ComponentImportModel).default([]),
3122
+ components: _zod.z.array(FigmaComponentImportModel).default([]),
3123
3123
  themeUpdates: _zod.z.array(ThemeUpdateImportModel).default([]),
3124
3124
  themes: _zod.z.array(ThemeImportModel).default([]),
3125
3125
  figmaFileStructures: _zod.z.array(FigmaFileStructureImportModel)
@@ -3219,7 +3219,15 @@ var PageBlockDefinitionRichTextPropertyStyle = _zod.z.enum([
3219
3219
  "Default"
3220
3220
  ]);
3221
3221
  var PageBlockDefinitionMultiRichTextPropertyStyle = _zod.z.enum(["OL", "UL", "Default"]);
3222
- var PageBlockDefinitionRichTextEditorPropertyStyle = _zod.z.enum(["OL", "UL", "Bold", "Italic", "Link", "Strikethrough", "InlineCode"]);
3222
+ var PageBlockDefinitionRichTextEditorPropertyStyle = _zod.z.enum([
3223
+ "OL",
3224
+ "UL",
3225
+ "Bold",
3226
+ "Italic",
3227
+ "Link",
3228
+ "Strikethrough",
3229
+ "InlineCode"
3230
+ ]);
3223
3231
  var PageBlockDefinitionTextPropertyStyle = _zod.z.enum([
3224
3232
  "Title1",
3225
3233
  "Title2",
@@ -3257,11 +3265,7 @@ var PageBlockDefinitionSingleSelectPropertyColor = _zod.z.enum([
3257
3265
  "Cyan",
3258
3266
  "Fuchsia"
3259
3267
  ]);
3260
- var IconSet = _zod.z.enum([
3261
- "CheckCircle",
3262
- "CrossCircle",
3263
- "Alert"
3264
- ]);
3268
+ var IconSet = _zod.z.enum(["CheckCircle", "CrossCircle", "Alert"]);
3265
3269
  var PageBlockDefinitionMultiSelectPropertyStyle = _zod.z.enum(["SegmentedControl", "Select", "Checkbox"]);
3266
3270
  var PageBlockDefinitionImageAspectRatio = _zod.z.enum(["Auto", "Square", "Landscape", "Portrait", "Wide"]);
3267
3271
  var PageBlockDefinitionImageWidth = _zod.z.enum(["Full", "Icon", "Small", "Medium", "Large", "Poster"]);
@@ -3753,7 +3757,7 @@ var PublishedDoc = _zod.z.object({
3753
3757
  var DesignSystemVersion = _zod.z.object({
3754
3758
  id: _zod.z.string(),
3755
3759
  version: _zod.z.string(),
3756
- createdAt: _zod.z.date(),
3760
+ createdAt: _zod.z.coerce.date(),
3757
3761
  designSystemId: _zod.z.string(),
3758
3762
  name: _zod.z.string(),
3759
3763
  comment: _zod.z.string(),
@@ -5621,6 +5625,26 @@ var DTOPublishDocumentationResponse = _zod.z.object({
5621
5625
  job: DTOExportJob
5622
5626
  });
5623
5627
 
5628
+ // src/api/dto/elements/components/figma-component.ts
5629
+
5630
+ var DTOFigmaComponent = _zod.z.object({
5631
+ id: _zod.z.string(),
5632
+ persistentId: _zod.z.string(),
5633
+ designSystemVersionId: _zod.z.string(),
5634
+ brandId: _zod.z.string(),
5635
+ parentComponentId: _zod.z.string().optional(),
5636
+ thumbnailUrl: _zod.z.string().optional(),
5637
+ svgUrl: _zod.z.string().optional(),
5638
+ exportProperties: _zod.z.object({
5639
+ isAsset: _zod.z.boolean()
5640
+ }),
5641
+ createdAt: _zod.z.coerce.date(),
5642
+ updatedAt: _zod.z.coerce.date(),
5643
+ meta: ObjectMeta,
5644
+ originComponent: FigmaComponentOrigin.optional(),
5645
+ componentPropertyDefinitions: FigmaComponentPropertyMap.optional()
5646
+ });
5647
+
5624
5648
  // src/api/dto/elements/documentation/group-action.ts
5625
5649
 
5626
5650
 
@@ -11508,5 +11532,6 @@ var BackendVersionRoomYDoc = class {
11508
11532
 
11509
11533
 
11510
11534
 
11511
- 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.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;
11535
+
11536
+ 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.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;
11512
11537
  //# sourceMappingURL=index.js.map