@supernova-studio/client 0.47.19 → 0.47.22

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
@@ -2771,7 +2771,10 @@ var ExporterDestinationGithub = _zod.z.object({
2771
2771
  url: _zod.z.string(),
2772
2772
  // Location
2773
2773
  branch: _zod.z.string(),
2774
- relativePath: nullishToOptional(_zod.z.string())
2774
+ relativePath: nullishToOptional(_zod.z.string()),
2775
+ // Legacy deprecated fields. Use `credentialId` instead
2776
+ connectionId: _zod.z.string().optional(),
2777
+ userId: _zod.z.number().optional()
2775
2778
  });
2776
2779
  var ExporterDestinationAzure = _zod.z.object({
2777
2780
  credentialId: _zod.z.string().optional(),
@@ -2783,7 +2786,10 @@ var ExporterDestinationAzure = _zod.z.object({
2783
2786
  branch: _zod.z.string(),
2784
2787
  relativePath: nullishToOptional(_zod.z.string()),
2785
2788
  // Maybe not needed
2786
- url: nullishToOptional(_zod.z.string())
2789
+ url: nullishToOptional(_zod.z.string()),
2790
+ // Legacy deprecated fields. Use `credentialId` instead
2791
+ connectionId: _zod.z.string().optional(),
2792
+ userId: _zod.z.number().optional()
2787
2793
  });
2788
2794
  var ExporterDestinationGitlab = _zod.z.object({
2789
2795
  credentialId: _zod.z.string().optional(),
@@ -2793,7 +2799,10 @@ var ExporterDestinationGitlab = _zod.z.object({
2793
2799
  branch: _zod.z.string(),
2794
2800
  relativePath: nullishToOptional(_zod.z.string()),
2795
2801
  // Maybe not needed
2796
- url: nullishToOptional(_zod.z.string())
2802
+ url: nullishToOptional(_zod.z.string()),
2803
+ // Legacy deprecated fields. Use `credentialId` instead
2804
+ connectionId: _zod.z.string().optional(),
2805
+ userId: _zod.z.number().optional()
2797
2806
  });
2798
2807
  var ExporterDestinationBitbucket = _zod.z.object({
2799
2808
  credentialId: _zod.z.string().optional(),
@@ -2803,7 +2812,10 @@ var ExporterDestinationBitbucket = _zod.z.object({
2803
2812
  repoSlug: _zod.z.string().max(BITBUCKET_MAX_LENGTH).regex(BITBUCKET_SLUG),
2804
2813
  // Location
2805
2814
  branch: _zod.z.string(),
2806
- relativePath: nullishToOptional(_zod.z.string())
2815
+ relativePath: nullishToOptional(_zod.z.string()),
2816
+ // Legacy deprecated fields. Use `credentialId` instead
2817
+ connectionId: _zod.z.string().optional(),
2818
+ userId: _zod.z.number().optional()
2807
2819
  });
2808
2820
  var ExportDestinationsMap = _zod.z.object({
2809
2821
  webhookUrl: _zod.z.string().optional(),
@@ -3062,12 +3074,12 @@ var IntegrationDesignSystem = _zod.z.object({
3062
3074
  });
3063
3075
  var IntegrationCredentialsType = _zod.z.enum(["OAuth2", "PAT", "GithubApp"]);
3064
3076
  var IntegrationCredentialsProfile = _zod.z.object({
3065
- id: _zod.z.string(),
3066
- email: _zod.z.string().optional(),
3067
- handle: _zod.z.string().optional(),
3068
- type: _zod.z.string().optional(),
3069
- avatarUrl: _zod.z.string().optional(),
3070
- organization: _zod.z.string().optional()
3077
+ id: nullishToOptional(_zod.z.string()),
3078
+ email: nullishToOptional(_zod.z.string()),
3079
+ handle: nullishToOptional(_zod.z.string()),
3080
+ type: nullishToOptional(_zod.z.string()),
3081
+ avatarUrl: nullishToOptional(_zod.z.string()),
3082
+ organization: nullishToOptional(_zod.z.string())
3071
3083
  });
3072
3084
  var IntegrationCredentials = _zod.z.object({
3073
3085
  id: _zod.z.string(),
@@ -3081,6 +3093,7 @@ var IntegrationCredentials = _zod.z.object({
3081
3093
  expiresAt: _zod.z.coerce.date().optional(),
3082
3094
  refreshedAt: _zod.z.coerce.date().optional(),
3083
3095
  username: _zod.z.string().optional(),
3096
+ appInstallationId: _zod.z.string().optional(),
3084
3097
  profile: IntegrationCredentialsProfile.optional(),
3085
3098
  customUrl: _zod.z.string().optional(),
3086
3099
  user: UserMinified.optional()
@@ -3311,6 +3324,9 @@ var SupernovaException = class _SupernovaException extends Error {
3311
3324
  static missingCredentials(message) {
3312
3325
  return new _SupernovaException("MissingCredentials", message);
3313
3326
  }
3327
+ static thirdPartyError(message) {
3328
+ return new _SupernovaException("ThirdPartyError", message);
3329
+ }
3314
3330
  //
3315
3331
  // To refactor
3316
3332
  //
@@ -4335,7 +4351,8 @@ function pipelineToDto(pipeline) {
4335
4351
  destinationGithub: pipeline.destinationGithub,
4336
4352
  destinationGitlab: pipeline.destinationGitlab,
4337
4353
  destinationS3: pipeline.destinationS3,
4338
- webhookUrl: pipeline.webhookUrl
4354
+ webhookUrl: pipeline.webhookUrl,
4355
+ latestJobs: []
4339
4356
  };
4340
4357
  }
4341
4358
 
@@ -4371,21 +4388,32 @@ function gitBranchToDto(branch) {
4371
4388
 
4372
4389
  // src/api/conversion/integrations/integration.ts
4373
4390
  function integrationToDto(integration) {
4374
- if (integration.integrationCredentials) {
4375
- integration.integrationCredentials.forEach((credential) => {
4376
- credential.accessToken = "";
4377
- delete credential.refreshToken;
4378
- });
4379
- }
4380
4391
  return {
4381
4392
  id: integration.id,
4382
4393
  workspaceId: integration.workspaceId,
4383
4394
  type: integration.type,
4384
4395
  createdAt: integration.createdAt,
4385
- integrationCredentials: _nullishCoalesce(integration.integrationCredentials, () => ( void 0)),
4396
+ integrationCredentials: _optionalChain([integration, 'access', _30 => _30.integrationCredentials, 'optionalAccess', _31 => _31.map, 'call', _32 => _32(integrationCredentialToDto)]),
4386
4397
  integrationDesignSystems: _nullishCoalesce(integration.integrationDesignSystems, () => ( void 0))
4387
4398
  };
4388
4399
  }
4400
+ function integrationCredentialToDto(credential) {
4401
+ return {
4402
+ id: credential.id,
4403
+ createdAt: credential.createdAt,
4404
+ refreshedAt: credential.refreshedAt,
4405
+ expiresAt: credential.expiresAt,
4406
+ integrationId: credential.integrationId,
4407
+ type: credential.type,
4408
+ userId: credential.userId,
4409
+ user: credential.user,
4410
+ customUrl: credential.customUrl,
4411
+ profile: credential.profile,
4412
+ tokenName: credential.tokenName,
4413
+ username: credential.username,
4414
+ appInstallationId: credential.appInstallationId
4415
+ };
4416
+ }
4389
4417
 
4390
4418
  // src/api/dto/design-systems/brand.ts
4391
4419
 
@@ -5297,6 +5325,9 @@ var DTOExporterCreateInput = _zod.z.object({
5297
5325
  url: _zod.z.string(),
5298
5326
  provider: DTOExporterGitProviderEnum
5299
5327
  });
5328
+ var DTOExporterUpdateInput = _zod.z.object({
5329
+ url: _zod.z.string().optional()
5330
+ });
5300
5331
 
5301
5332
  // src/api/dto/export/job.ts
5302
5333
 
@@ -5354,7 +5385,8 @@ var DTOPipeline = _zod.z.object({
5354
5385
  exporterId: _zod.z.string(),
5355
5386
  brandPersistentId: _zod.z.string().optional(),
5356
5387
  themePersistentId: _zod.z.string().optional(),
5357
- ...ExportDestinationsMap.shape
5388
+ ...ExportDestinationsMap.shape,
5389
+ latestJobs: DTOExportJob.array()
5358
5390
  });
5359
5391
 
5360
5392
  // src/api/dto/liveblocks/auth-response.ts
@@ -5394,12 +5426,16 @@ var DTOGitBranch = _zod.z.object({
5394
5426
 
5395
5427
  // src/api/dto/workspaces/integrations.ts
5396
5428
 
5429
+ var DTOIntegrationCredentials = IntegrationCredentials.omit({
5430
+ accessToken: true,
5431
+ refreshToken: true
5432
+ });
5397
5433
  var DTOIntegration = _zod.z.object({
5398
5434
  id: _zod.z.string(),
5399
5435
  workspaceId: _zod.z.string(),
5400
5436
  type: ExtendedIntegrationType,
5401
5437
  createdAt: _zod.z.coerce.date(),
5402
- integrationCredentials: _zod.z.array(IntegrationCredentials).optional(),
5438
+ integrationCredentials: _zod.z.array(DTOIntegrationCredentials).optional(),
5403
5439
  integrationDesignSystems: _zod.z.array(IntegrationDesignSystem).optional()
5404
5440
  });
5405
5441
  var DTOIntegrationOAuthGetResponse = _zod.z.object({
@@ -5552,7 +5588,7 @@ var DTODocumentationPageRoomHeaderDataUpdate = _zod.z.object({
5552
5588
  function itemConfigurationToYjs(yDoc, item) {
5553
5589
  yDoc.transact((trx) => {
5554
5590
  const { title, configuration } = item;
5555
- const header = _optionalChain([configuration, 'optionalAccess', _30 => _30.header]);
5591
+ const header = _optionalChain([configuration, 'optionalAccess', _33 => _33.header]);
5556
5592
  if (title !== void 0) {
5557
5593
  const headerYMap = trx.doc.getMap("itemTitle");
5558
5594
  headerYMap.set("title", title);
@@ -5570,9 +5606,9 @@ function itemConfigurationToYjs(yDoc, item) {
5570
5606
  header.minHeight !== void 0 && headerYMap.set("minHeight", header.minHeight);
5571
5607
  }
5572
5608
  const configYMap = trx.doc.getMap("itemConfiguration");
5573
- _optionalChain([configuration, 'optionalAccess', _31 => _31.showSidebar]) !== void 0 && configYMap.set("showSidebar", configuration.showSidebar);
5574
- _optionalChain([configuration, 'optionalAccess', _32 => _32.isHidden]) !== void 0 && configYMap.set("isHidden", configuration.isHidden);
5575
- _optionalChain([configuration, 'optionalAccess', _33 => _33.isPrivate]) !== void 0 && configYMap.set("isPrivate", configuration.isPrivate);
5609
+ _optionalChain([configuration, 'optionalAccess', _34 => _34.showSidebar]) !== void 0 && configYMap.set("showSidebar", configuration.showSidebar);
5610
+ _optionalChain([configuration, 'optionalAccess', _35 => _35.isHidden]) !== void 0 && configYMap.set("isHidden", configuration.isHidden);
5611
+ _optionalChain([configuration, 'optionalAccess', _36 => _36.isPrivate]) !== void 0 && configYMap.set("isPrivate", configuration.isPrivate);
5576
5612
  });
5577
5613
  }
5578
5614
  function yjsToItemConfiguration(yDoc) {
@@ -6364,7 +6400,7 @@ var ListTreeBuilder = class {
6364
6400
  }
6365
6401
  addWithProperty(block, multiRichTextProperty) {
6366
6402
  const parsedOptions = PageBlockDefinitionMutiRichTextOptions.optional().parse(multiRichTextProperty.options);
6367
- return this.add(block, multiRichTextProperty.id, _optionalChain([parsedOptions, 'optionalAccess', _34 => _34.multiRichTextStyle]) || "OL");
6403
+ return this.add(block, multiRichTextProperty.id, _optionalChain([parsedOptions, 'optionalAccess', _37 => _37.multiRichTextStyle]) || "OL");
6368
6404
  }
6369
6405
  add(block, multiRichTextPropertyId, multiRichTextPropertyStyle) {
6370
6406
  const list = this.createList(block, multiRichTextPropertyId, multiRichTextPropertyStyle);
@@ -6384,7 +6420,7 @@ var ListTreeBuilder = class {
6384
6420
  }
6385
6421
  const listParent = this.getParentOfDepth(block.data.indentLevel);
6386
6422
  const lastChild = listParent.children[listParent.children.length - 1];
6387
- if (_optionalChain([lastChild, 'optionalAccess', _35 => _35.type]) === "List") {
6423
+ if (_optionalChain([lastChild, 'optionalAccess', _38 => _38.type]) === "List") {
6388
6424
  lastChild.children.push(...list.leadingChildren);
6389
6425
  return;
6390
6426
  } else {
@@ -6568,7 +6604,7 @@ function serializeAsRichTextBlock(input) {
6568
6604
  const textPropertyValue = BlockParsingUtils.richTextPropertyValue(blockItem, richTextProperty.id);
6569
6605
  const enrichedInput = { ...input, richTextPropertyValue: textPropertyValue };
6570
6606
  const parsedOptions = PageBlockDefinitionRichTextOptions.optional().parse(richTextProperty.options);
6571
- const style = _nullishCoalesce(_optionalChain([parsedOptions, 'optionalAccess', _36 => _36.richTextStyle]), () => ( "Default"));
6607
+ const style = _nullishCoalesce(_optionalChain([parsedOptions, 'optionalAccess', _39 => _39.richTextStyle]), () => ( "Default"));
6572
6608
  switch (style) {
6573
6609
  case "Callout":
6574
6610
  return serializeAsCallout(enrichedInput);
@@ -6789,7 +6825,7 @@ function serializeBlockNodeAttributes(block) {
6789
6825
  };
6790
6826
  }
6791
6827
  function richTextHeadingLevel(property) {
6792
- const style = _optionalChain([property, 'access', _37 => _37.options, 'optionalAccess', _38 => _38.richTextStyle]);
6828
+ const style = _optionalChain([property, 'access', _40 => _40.options, 'optionalAccess', _41 => _41.richTextStyle]);
6793
6829
  if (!style)
6794
6830
  return void 0;
6795
6831
  switch (style) {
@@ -6902,7 +6938,7 @@ function serializeAsCustomBlock(block, definition) {
6902
6938
  linksTo: i.linksTo
6903
6939
  };
6904
6940
  });
6905
- const columns = _optionalChain([block, 'access', _39 => _39.data, 'access', _40 => _40.appearance, 'optionalAccess', _41 => _41.numberOfColumns]);
6941
+ const columns = _optionalChain([block, 'access', _42 => _42.data, 'access', _43 => _43.appearance, 'optionalAccess', _44 => _44.numberOfColumns]);
6906
6942
  return {
6907
6943
  type: serializeCustomBlockNodeType(block, definition),
6908
6944
  attrs: {
@@ -8749,10 +8785,10 @@ function parseAsMultiRichText(prosemirrorNode, definition, property, definitions
8749
8785
  const variantId = getProsemirrorBlockVariantId(prosemirrorNode);
8750
8786
  const result = [];
8751
8787
  const listItems = [];
8752
- _optionalChain([prosemirrorNode, 'access', _42 => _42.content, 'optionalAccess', _43 => _43.forEach, 'call', _44 => _44((c) => {
8788
+ _optionalChain([prosemirrorNode, 'access', _45 => _45.content, 'optionalAccess', _46 => _46.forEach, 'call', _47 => _47((c) => {
8753
8789
  if (c.type !== "listItem")
8754
8790
  return;
8755
- _optionalChain([c, 'access', _45 => _45.content, 'optionalAccess', _46 => _46.forEach, 'call', _47 => _47((cc) => {
8791
+ _optionalChain([c, 'access', _48 => _48.content, 'optionalAccess', _49 => _49.forEach, 'call', _50 => _50((cc) => {
8756
8792
  listItems.push(cc);
8757
8793
  })]);
8758
8794
  })]);
@@ -8855,17 +8891,17 @@ function parseAsTable(prosemirrorNode, definition, property) {
8855
8891
  return null;
8856
8892
  const variantId = getProsemirrorBlockVariantId(prosemirrorNode);
8857
8893
  const hasBorder = getProsemirrorAttribute(prosemirrorNode, "hasBorder", _zod.z.boolean().optional()) !== false;
8858
- const tableChild = _optionalChain([prosemirrorNode, 'access', _48 => _48.content, 'optionalAccess', _49 => _49.find, 'call', _50 => _50((c) => c.type === "table")]);
8894
+ const tableChild = _optionalChain([prosemirrorNode, 'access', _51 => _51.content, 'optionalAccess', _52 => _52.find, 'call', _53 => _53((c) => c.type === "table")]);
8859
8895
  if (!tableChild) {
8860
8896
  return emptyTable(id, variantId, 0);
8861
8897
  }
8862
- const rows = _nullishCoalesce(_optionalChain([tableChild, 'access', _51 => _51.content, 'optionalAccess', _52 => _52.filter, 'call', _53 => _53((c) => c.type === "tableRow" && !!_optionalChain([c, 'access', _54 => _54.content, 'optionalAccess', _55 => _55.length]))]), () => ( []));
8898
+ const rows = _nullishCoalesce(_optionalChain([tableChild, 'access', _54 => _54.content, 'optionalAccess', _55 => _55.filter, 'call', _56 => _56((c) => c.type === "tableRow" && !!_optionalChain([c, 'access', _57 => _57.content, 'optionalAccess', _58 => _58.length]))]), () => ( []));
8863
8899
  if (!rows.length) {
8864
8900
  return emptyTable(id, variantId, 0);
8865
8901
  }
8866
- const rowHeaderCells = _nullishCoalesce(_optionalChain([rows, 'access', _56 => _56[0], 'access', _57 => _57.content, 'optionalAccess', _58 => _58.filter, 'call', _59 => _59((c) => c.type === "tableHeader"), 'access', _60 => _60.length]), () => ( 0));
8867
- const columnHeaderCells = rows.filter((r) => _optionalChain([r, 'access', _61 => _61.content, 'optionalAccess', _62 => _62[0], 'optionalAccess', _63 => _63.type]) === "tableHeader").length;
8868
- const hasHeaderRow = _optionalChain([rows, 'access', _64 => _64[0], 'access', _65 => _65.content, 'optionalAccess', _66 => _66.length]) === rowHeaderCells;
8902
+ const rowHeaderCells = _nullishCoalesce(_optionalChain([rows, 'access', _59 => _59[0], 'access', _60 => _60.content, 'optionalAccess', _61 => _61.filter, 'call', _62 => _62((c) => c.type === "tableHeader"), 'access', _63 => _63.length]), () => ( 0));
8903
+ const columnHeaderCells = rows.filter((r) => _optionalChain([r, 'access', _64 => _64.content, 'optionalAccess', _65 => _65[0], 'optionalAccess', _66 => _66.type]) === "tableHeader").length;
8904
+ const hasHeaderRow = _optionalChain([rows, 'access', _67 => _67[0], 'access', _68 => _68.content, 'optionalAccess', _69 => _69.length]) === rowHeaderCells;
8869
8905
  const hasHeaderColumn = rows.length === columnHeaderCells;
8870
8906
  const tableValue = {
8871
8907
  showBorder: hasBorder,
@@ -8947,7 +8983,7 @@ function parseAsTableNode(prosemirrorNode) {
8947
8983
  const parsedItems = PageBlockItemV2.array().safeParse(JSON.parse(items));
8948
8984
  if (!parsedItems.success)
8949
8985
  return null;
8950
- const rawImagePropertyValue = _optionalChain([parsedItems, 'access', _67 => _67.data, 'access', _68 => _68[0], 'optionalAccess', _69 => _69.props, 'access', _70 => _70.image]);
8986
+ const rawImagePropertyValue = _optionalChain([parsedItems, 'access', _70 => _70.data, 'access', _71 => _71[0], 'optionalAccess', _72 => _72.props, 'access', _73 => _73.image]);
8951
8987
  if (!rawImagePropertyValue)
8952
8988
  return null;
8953
8989
  const imagePropertyValueParseResult = PageBlockItemImageValue.safeParse(rawImagePropertyValue);
@@ -9169,7 +9205,7 @@ function getProsemirrorBlockVariantId(prosemirrorNode) {
9169
9205
  return getProsemirrorAttribute(prosemirrorNode, "variantId", nullishToOptional(_zod.z.string()));
9170
9206
  }
9171
9207
  function getProsemirrorAttribute(prosemirrorNode, attributeName, validationSchema) {
9172
- const parsedAttr = validationSchema.safeParse(_optionalChain([prosemirrorNode, 'access', _71 => _71.attrs, 'optionalAccess', _72 => _72[attributeName]]));
9208
+ const parsedAttr = validationSchema.safeParse(_optionalChain([prosemirrorNode, 'access', _74 => _74.attrs, 'optionalAccess', _75 => _75[attributeName]]));
9173
9209
  if (parsedAttr.success) {
9174
9210
  return parsedAttr.data;
9175
9211
  } else {
@@ -9394,5 +9430,8 @@ function mapByUnique2(items, keyFn) {
9394
9430
 
9395
9431
 
9396
9432
 
9397
- 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.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.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.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.gitBranchToDto = gitBranchToDto; exports.gitOrganizationToDto = gitOrganizationToDto; exports.gitProjectToDto = gitProjectToDto; exports.gitRepositoryToDto = gitRepositoryToDto; 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;
9433
+
9434
+
9435
+
9436
+ 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.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;
9398
9437
  //# sourceMappingURL=index.js.map