@supernova-studio/client 0.47.41 → 0.47.43

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
@@ -4353,11 +4353,13 @@ function documentationPageToStructureDTOV2(page, pagePathMap) {
4353
4353
  }
4354
4354
 
4355
4355
  // src/api/conversion/documentation/documentation-elements-to-hierarchy-v2-dto.ts
4356
- function documentationElementsToHierarchyDto(docPages, docGroups, publishedPagesSnapshots, routingVersion) {
4356
+ function documentationElementsToHierarchyDto(docPages, docGroups, routingVersion) {
4357
4357
  return {
4358
4358
  pages: documentationPagesToStructureDTOV2(docPages, docGroups, routingVersion),
4359
4359
  groups: elementGroupsToDocumentationGroupStructureDTOV2(docGroups, docPages),
4360
- publishedPagesSnapshots
4360
+ // TODO Artem
4361
+ deletedGroups: [],
4362
+ deletedPages: []
4361
4363
  };
4362
4364
  }
4363
4365
 
@@ -4964,10 +4966,7 @@ var DTODocumentationLinkPreviewRequest = _zod.z.object({
4964
4966
  documentationItemPersistentId: _zod.z.string().optional()
4965
4967
  });
4966
4968
 
4967
- // src/api/dto/elements/documentation/group-action.ts
4968
-
4969
-
4970
- // src/api/dto/elements/documentation/group-v2.ts
4969
+ // src/api/dto/elements/documentation/draft-state.ts
4971
4970
 
4972
4971
 
4973
4972
  // src/api/dto/elements/documentation/item-configuration-v2.ts
@@ -4980,7 +4979,22 @@ var DTODocumentationItemConfigurationV2 = _zod.z.object({
4980
4979
  header: DTODocumentationItemHeaderV2
4981
4980
  });
4982
4981
 
4982
+ // src/api/dto/elements/documentation/draft-state.ts
4983
+ var DTODocumentationDraftChangeType = _zod.z.enum(["Created", "Updated", "Deleted"]);
4984
+ var DTODocumentationDraftState = _zod.z.object({
4985
+ changeType: DTODocumentationDraftChangeType,
4986
+ changes: _zod.z.object({
4987
+ previousTitle: _zod.z.string().optional(),
4988
+ previousConfiguration: DTODocumentationItemConfigurationV2.optional(),
4989
+ previousContentHash: _zod.z.string().optional()
4990
+ })
4991
+ });
4992
+
4993
+ // src/api/dto/elements/documentation/group-action.ts
4994
+
4995
+
4983
4996
  // src/api/dto/elements/documentation/group-v2.ts
4997
+
4984
4998
  var DTODocumentationGroupV2 = ElementGroup.omit({
4985
4999
  sortOrder: true,
4986
5000
  parentPersistentId: true,
@@ -4996,7 +5010,9 @@ var DTODocumentationGroupV2 = ElementGroup.omit({
4996
5010
  groupBehavior: DocumentationGroupBehavior,
4997
5011
  shortPersistentId: _zod.z.string(),
4998
5012
  configuration: DTODocumentationItemConfigurationV2,
4999
- type: _zod.z.literal("Group")
5013
+ type: _zod.z.literal("Group"),
5014
+ /** Defined when a group has changed since last publish and can be included into a partial publish */
5015
+ draftState: DTODocumentationDraftState.optional()
5000
5016
  });
5001
5017
  var DTODocumentationGroupStructureV2 = DTODocumentationGroupV2;
5002
5018
  var DTOCreateDocumentationGroupInput = _zod.z.object({
@@ -5170,13 +5186,16 @@ var DTODocumentationPageV2 = DocumentationPageV2.omit({
5170
5186
  title: _zod.z.string(),
5171
5187
  path: _zod.z.string(),
5172
5188
  type: _zod.z.literal("Page"),
5173
- configuration: DTODocumentationItemConfigurationV2
5189
+ configuration: DTODocumentationItemConfigurationV2,
5190
+ /** Defined when a page has changed since last publish and can be included into a partial publish */
5191
+ draftState: DTODocumentationDraftState.optional()
5174
5192
  });
5175
5193
  var DTODocumentationPageStructureV2 = DTODocumentationPageV2;
5176
5194
  var DTODocumentationHierarchyV2 = _zod.z.object({
5177
5195
  pages: _zod.z.array(DTODocumentationPageStructureV2),
5178
5196
  groups: _zod.z.array(DTODocumentationGroupStructureV2),
5179
- publishedPagesSnapshots: DesignElementSnapshot.array()
5197
+ deletedPages: _zod.z.array(DTODocumentationPageStructureV2),
5198
+ deletedGroups: _zod.z.array(DTODocumentationGroupStructureV2)
5180
5199
  });
5181
5200
  var DTOCreateDocumentationPageInputV2 = _zod.z.object({
5182
5201
  // Identifier
@@ -5730,17 +5749,27 @@ function generateHash(input) {
5730
5749
 
5731
5750
  // src/yjs/design-system-content/documentation-hierarchy.ts
5732
5751
 
5733
- var DocumentationHierarchySettings = _zod.z.object({
5734
- routingVersion: _zod.z.string(),
5735
- isDraftFeatureAdopted: _zod.z.boolean()
5736
- });
5737
- function documentationHierarchyToYjs(doc, transaction) {
5738
- doc.transact((trx) => {
5739
- const pagesMap = getPagesYMap(trx.doc);
5740
- transaction.pageIdsToDelete.forEach((pageId) => {
5741
- pagesMap.delete(pageId);
5752
+
5753
+ // src/yjs/version-room/base.ts
5754
+ var VersionRoomBaseYDoc = class {
5755
+ constructor(yDoc) {
5756
+ __publicField(this, "yDoc");
5757
+ this.yDoc = yDoc;
5758
+ }
5759
+ //
5760
+ // Pages
5761
+ //
5762
+ getDocumentationPages() {
5763
+ const pagesMap = this.pagesYMap;
5764
+ const pages = [];
5765
+ pagesMap.forEach((page) => {
5766
+ pages.push(DocumentationPageV2.parse(page));
5742
5767
  });
5743
- transaction.pages.forEach((page) => {
5768
+ return pages;
5769
+ }
5770
+ updateDocumentationPages(pages) {
5771
+ const pagesMap = this.pagesYMap;
5772
+ pages.forEach((page) => {
5744
5773
  const sanitizedPage = {
5745
5774
  ...page,
5746
5775
  data: {
@@ -5749,79 +5778,175 @@ function documentationHierarchyToYjs(doc, transaction) {
5749
5778
  };
5750
5779
  pagesMap.set(page.id, JSON.parse(JSON.stringify(sanitizedPage)));
5751
5780
  });
5752
- const groupsMap = getGroupsYMap(trx.doc);
5753
- transaction.groupIdsToDelete.forEach((id) => {
5754
- groupsMap.delete(id);
5781
+ }
5782
+ deleteDocumentationPages(ids) {
5783
+ const pagesMap = this.pagesYMap;
5784
+ ids.forEach((id) => pagesMap.delete(id));
5785
+ }
5786
+ get pagesYMap() {
5787
+ return this.yDoc.getMap("documentationPages");
5788
+ }
5789
+ //
5790
+ // Groups
5791
+ //
5792
+ getDocumentationGroups() {
5793
+ const groupsMap = this.groupsYMap;
5794
+ const groups = [];
5795
+ groupsMap.forEach((group) => {
5796
+ groups.push(ElementGroup.parse(group));
5755
5797
  });
5756
- transaction.groups.forEach((group) => {
5798
+ return groups;
5799
+ }
5800
+ updateDocumentationGroups(groups) {
5801
+ const groupsMap = this.groupsYMap;
5802
+ groups.forEach((group) => {
5757
5803
  groupsMap.set(group.id, JSON.parse(JSON.stringify(group)));
5758
5804
  });
5759
- const publishedSnapshotsMap = getPublishedSnapshotsYMap(trx.doc);
5760
- transaction.publishedPageSnapshots.forEach((state) => {
5761
- publishedSnapshotsMap.set(state.id, JSON.parse(JSON.stringify(state)));
5762
- });
5763
- if (transaction.internalSettings) {
5764
- serializeDocumentationInternalSettings(trx.doc, transaction.internalSettings);
5765
- }
5766
- });
5767
- return doc;
5768
- }
5769
- function serializeDocumentationInternalSettings(doc, settings) {
5770
- const map = getInternalSettingsYMap(doc);
5771
- map.set("routingVersion", settings.routingVersion);
5772
- settings.isDraftFeatureAdopted !== void 0 && map.set("isDraftFeatureAdapted", settings.isDraftFeatureAdopted);
5773
- }
5774
- function yjsToDocumentationHierarchy(doc) {
5775
- const pagesMap = getPagesYMap(doc);
5776
- const groupsMap = getGroupsYMap(doc);
5777
- const publishedSnapshotsMap = getPublishedSnapshotsYMap(doc);
5778
- const pages = [];
5779
- pagesMap.forEach((page) => {
5780
- pages.push(DocumentationPageV2.parse(page));
5781
- });
5782
- const groups = [];
5783
- groupsMap.forEach((group) => {
5784
- groups.push(ElementGroup.parse(group));
5785
- });
5786
- const publishedSnapshots = [];
5787
- publishedSnapshotsMap.forEach((state) => {
5788
- publishedSnapshots.push(DesignElementSnapshot.parse(state));
5789
- });
5790
- const internalSettings = parseDocumentationInternalSettings(doc);
5791
- const hierarchy = documentationElementsToHierarchyDto(
5792
- pages,
5793
- groups,
5794
- publishedSnapshots,
5795
- _nullishCoalesce(internalSettings.routingVersion, () => ( "2"))
5796
- );
5797
- return hierarchy;
5798
- }
5799
- function parseDocumentationInternalSettings(doc) {
5800
- const map = getInternalSettingsYMap(doc);
5801
- const rawSettings = {
5802
- routingVersion: map.get("routingVersion"),
5803
- isDraftFeatureAdopted: _nullishCoalesce(map.get("isDraftFeatureAdapted"), () => ( false))
5804
- };
5805
- const settingsParseResult = DocumentationHierarchySettings.safeParse(rawSettings);
5806
- if (!settingsParseResult.success) {
5807
- return {
5808
- routingVersion: "2",
5809
- isDraftFeatureAdopted: false
5805
+ }
5806
+ deleteDocumentationGroups(ids) {
5807
+ const groupsMap = this.groupsYMap;
5808
+ ids.forEach((id) => groupsMap.delete(id));
5809
+ }
5810
+ get groupsYMap() {
5811
+ return this.yDoc.getMap("documentationGroups");
5812
+ }
5813
+ //
5814
+ // Documentation internal settings
5815
+ //
5816
+ getDocumentationInternalSettings() {
5817
+ const map = this.internalSettingsYMap;
5818
+ const rawSettings = {
5819
+ routingVersion: map.get("routingVersion"),
5820
+ isDraftFeatureAdopted: _nullishCoalesce(map.get("isDraftFeatureAdapted"), () => ( false))
5810
5821
  };
5822
+ const settingsParseResult = DocumentationHierarchySettings.safeParse(rawSettings);
5823
+ if (!settingsParseResult.success) {
5824
+ return {
5825
+ routingVersion: "2",
5826
+ isDraftFeatureAdopted: false
5827
+ };
5828
+ }
5829
+ return settingsParseResult.data;
5811
5830
  }
5812
- return settingsParseResult.data;
5813
- }
5814
- function getPagesYMap(doc) {
5815
- return doc.getMap("documentationPages");
5816
- }
5817
- function getGroupsYMap(doc) {
5818
- return doc.getMap("documentationGroups");
5819
- }
5820
- function getInternalSettingsYMap(doc) {
5821
- return doc.getMap("documentationInternalSettings");
5822
- }
5823
- function getPublishedSnapshotsYMap(doc) {
5824
- return doc.getMap("documentationPagePublishedSnapshots");
5831
+ updateDocumentationInternalSettings(settings) {
5832
+ const map = this.internalSettingsYMap;
5833
+ map.set("routingVersion", settings.routingVersion);
5834
+ }
5835
+ get internalSettingsYMap() {
5836
+ return this.yDoc.getMap("documentationInternalSettings");
5837
+ }
5838
+ //
5839
+ // Documentation page published snapshot
5840
+ //
5841
+ getDocumentationPagePublishedSnapshots() {
5842
+ return this.getSnapshots(this.documentationPagePublishedStatesYMap);
5843
+ }
5844
+ updateDocumentationPagePublishedSnapshots(snapshots) {
5845
+ this.setSnapshots(this.documentationPagePublishedStatesYMap, snapshots);
5846
+ }
5847
+ get documentationPagePublishedStatesYMap() {
5848
+ return this.yDoc.getMap("documentationPagePublishedSnapshots");
5849
+ }
5850
+ //
5851
+ // Documentation page deleted snapshot
5852
+ //
5853
+ getDocumentationPageDeletedSnapshots() {
5854
+ return this.getSnapshots(this.documentationPageDeletedStatesYMap);
5855
+ }
5856
+ updateDocumentationPageDeletedSnapshots(snapshots) {
5857
+ this.setSnapshots(this.documentationPageDeletedStatesYMap, snapshots);
5858
+ }
5859
+ get documentationPageDeletedStatesYMap() {
5860
+ return this.yDoc.getMap("documentationPageDeletedSnapshots");
5861
+ }
5862
+ //
5863
+ // Documentation group published snapshots
5864
+ //
5865
+ getDocumentationGroupPublishedSnapshots() {
5866
+ return this.getSnapshots(this.documentationGroupPublishedStatesYMap);
5867
+ }
5868
+ updateDocumentationGroupPublishedSnapshots(snapshots) {
5869
+ this.setSnapshots(this.documentationGroupPublishedStatesYMap, snapshots);
5870
+ }
5871
+ get documentationGroupPublishedStatesYMap() {
5872
+ return this.yDoc.getMap("documentationGroupPublishedSnapshots");
5873
+ }
5874
+ //
5875
+ // Documentation group deleted snapshots
5876
+ //
5877
+ getDocumentationGroupDeletedSnapshots() {
5878
+ return this.getSnapshots(this.documentationGroupDeletedStatesYMap);
5879
+ }
5880
+ updateDocumentationGroupDeletedSnapshots(snapshots) {
5881
+ this.setSnapshots(this.documentationGroupDeletedStatesYMap, snapshots);
5882
+ }
5883
+ get documentationGroupDeletedStatesYMap() {
5884
+ return this.yDoc.getMap("documentationGroupDeletedSnapshots");
5885
+ }
5886
+ //
5887
+ // Snapshot utils
5888
+ //
5889
+ getSnapshots(map) {
5890
+ const snapshots = [];
5891
+ map.forEach((snapshot) => {
5892
+ snapshots.push(DesignElementSnapshot.parse(snapshot));
5893
+ });
5894
+ return snapshots;
5895
+ }
5896
+ setSnapshots(map, snapshots) {
5897
+ snapshots.forEach((snapshot) => {
5898
+ map.set(snapshot.id, JSON.parse(JSON.stringify(snapshot)));
5899
+ });
5900
+ }
5901
+ //
5902
+ // Documentation page content hashes
5903
+ //
5904
+ getDocumentationPageContentHashes() {
5905
+ const map = this.documentationPageContentHashesYMap;
5906
+ const result = {};
5907
+ map.forEach((hash2, key) => {
5908
+ result[key] = hash2;
5909
+ });
5910
+ return result;
5911
+ }
5912
+ updateDocumentationPageContentHashes(hashes) {
5913
+ const map = this.documentationPageContentHashesYMap;
5914
+ Object.entries(hashes).forEach(([key, hash2]) => map.set(key, hash2));
5915
+ }
5916
+ get documentationPageContentHashesYMap() {
5917
+ return this.yDoc.getMap("documentationPageHashes");
5918
+ }
5919
+ };
5920
+
5921
+ // src/yjs/version-room/frontend.ts
5922
+ var FrontendVersionRoomYDoc = class {
5923
+ constructor(yDoc) {
5924
+ __publicField(this, "yDoc");
5925
+ this.yDoc = yDoc;
5926
+ }
5927
+ getDocumentationHierarchy() {
5928
+ const doc = new VersionRoomBaseYDoc(this.yDoc);
5929
+ const pages = doc.getDocumentationPages();
5930
+ const groups = doc.getDocumentationGroups();
5931
+ const settings = doc.getDocumentationInternalSettings();
5932
+ const hierarchy = documentationElementsToHierarchyDto(pages, groups, settings.routingVersion);
5933
+ return hierarchy;
5934
+ }
5935
+ notifyDocumentationPageContentUpdated(pageId, content) {
5936
+ const pageContentHash = generateHash(content);
5937
+ new VersionRoomBaseYDoc(this.yDoc).updateDocumentationPageContentHashes({
5938
+ [pageId]: pageContentHash
5939
+ });
5940
+ }
5941
+ };
5942
+
5943
+ // src/yjs/design-system-content/documentation-hierarchy.ts
5944
+ var DocumentationHierarchySettings = _zod.z.object({
5945
+ routingVersion: _zod.z.string(),
5946
+ isDraftFeatureAdopted: _zod.z.boolean()
5947
+ });
5948
+ function yjsToDocumentationHierarchy(doc) {
5949
+ return new FrontendVersionRoomYDoc(doc).getDocumentationHierarchy();
5825
5950
  }
5826
5951
 
5827
5952
  // src/yjs/design-system-content/item-configuration.ts
@@ -7051,6 +7176,7 @@ function serializeTableNode(node) {
7051
7176
  id: node.id,
7052
7177
  props: {
7053
7178
  image: {
7179
+ caption: node.caption,
7054
7180
  value: node.value
7055
7181
  }
7056
7182
  }
@@ -9240,7 +9366,8 @@ function parseAsTableNode(prosemirrorNode) {
9240
9366
  return {
9241
9367
  type: "Image",
9242
9368
  id,
9243
- value: imagePropertyValueParseResult.data.value
9369
+ value: imagePropertyValueParseResult.data.value,
9370
+ caption: imagePropertyValueParseResult.data.caption
9244
9371
  };
9245
9372
  default:
9246
9373
  return null;
@@ -9486,6 +9613,28 @@ function mapByUnique2(items, keyFn) {
9486
9613
  return result;
9487
9614
  }
9488
9615
 
9616
+ // src/yjs/version-room/backend.ts
9617
+ var BackendVersionRoomYDoc = class {
9618
+ constructor(yDoc) {
9619
+ __publicField(this, "yDoc");
9620
+ this.yDoc = yDoc;
9621
+ }
9622
+ updateDocumentationHierarchy(transaction) {
9623
+ this.yDoc.transact((trx) => {
9624
+ const yDoc = new VersionRoomBaseYDoc(trx.doc);
9625
+ transaction.pageIdsToDelete.length && yDoc.deleteDocumentationPages(transaction.pageIdsToDelete);
9626
+ transaction.pages.length && yDoc.updateDocumentationPages(transaction.pages);
9627
+ transaction.groupIdsToDelete.length && yDoc.deleteDocumentationGroups(transaction.groupIdsToDelete);
9628
+ transaction.groups.length && yDoc.updateDocumentationGroups(transaction.groups);
9629
+ transaction.internalSettings && yDoc.updateDocumentationInternalSettings(transaction.internalSettings);
9630
+ });
9631
+ }
9632
+ };
9633
+
9634
+
9635
+
9636
+
9637
+
9489
9638
 
9490
9639
 
9491
9640
 
@@ -9695,5 +9844,5 @@ function mapByUnique2(items, keyFn) {
9695
9844
 
9696
9845
 
9697
9846
 
9698
- exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; 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.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; 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.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupStructureV2 = DTODocumentationGroupStructureV2; 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.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.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageStructureV2 = DTODocumentationPageStructureV2; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; 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.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.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.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.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.ListTreeBuilder = ListTreeBuilder; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.VersionSQSPayload = VersionSQSPayload; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.documentationElementsToHierarchyDto = documentationElementsToHierarchyDto; exports.documentationHierarchyToYjs = documentationHierarchyToYjs; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.documentationPagesToStructureDTOV2 = documentationPagesToStructureDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.elementGroupsToDocumentationGroupStructureDTOV2 = elementGroupsToDocumentationGroupStructureDTOV2; exports.generateHash = generateHash; 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.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;
9847
+ exports.BackendVersionRoomYDoc = BackendVersionRoomYDoc; exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; 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.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODocumentationDraftChangeType = DTODocumentationDraftChangeType; exports.DTODocumentationDraftState = DTODocumentationDraftState; 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.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupStructureV2 = DTODocumentationGroupStructureV2; 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.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.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageStructureV2 = DTODocumentationPageStructureV2; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; 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.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.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.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.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.documentationElementsToHierarchyDto = documentationElementsToHierarchyDto; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.documentationPagesToStructureDTOV2 = documentationPagesToStructureDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.elementGroupsToDocumentationGroupStructureDTOV2 = elementGroupsToDocumentationGroupStructureDTOV2; exports.generateHash = generateHash; 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.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;
9699
9848
  //# sourceMappingURL=index.js.map