@supernova-studio/client 1.6.1 → 1.6.3

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
@@ -683,13 +683,33 @@ var CodeComponent = _zod.z.object({
683
683
  componentPath: _zod.z.string(),
684
684
  description: _zod.z.string(),
685
685
  properties: _zod.z.record(_zod.z.string(), CodeComponentProperty),
686
- tags: _zod.z.record(_zod.z.string(), _zod.z.string()).optional()
686
+ tags: _zod.z.record(_zod.z.string(), _zod.z.string()).nullable()
687
687
  });
688
688
  var CodeComponentUpsertResponse = _zod.z.object({
689
689
  created: _zod.z.number().nonnegative(),
690
690
  updated: _zod.z.number().nonnegative(),
691
691
  deleted: _zod.z.number().nonnegative()
692
692
  });
693
+ var RegistryType = _zod.z.enum(["Npm", "Github", "Artifactory", "Azure", "Custom"]);
694
+ var Registry = _zod.z.object({
695
+ type: RegistryType,
696
+ url: _zod.z.string().optional(),
697
+ accessToken: _zod.z.string().optional(),
698
+ scope: _zod.z.string(),
699
+ authConfig: _zod.z.record(_zod.z.string()).optional()
700
+ });
701
+ var DependencyDefinition = _zod.z.object({
702
+ name: _zod.z.string(),
703
+ version: _zod.z.string().optional()
704
+ });
705
+ var AnalyzeCodeComponentsInPackage = _zod.z.object({
706
+ designSystemId: _zod.z.string(),
707
+ versionId: _zod.z.string(),
708
+ mainPackage: DependencyDefinition,
709
+ dependencies: _zod.z.array(DependencyDefinition).optional(),
710
+ registries: Registry.array(),
711
+ userAccessToken: _zod.z.string()
712
+ });
693
713
  var FigmaFileDownloadScope = _zod.z.object({
694
714
  styles: _zod.z.boolean(),
695
715
  components: _zod.z.boolean(),
@@ -945,8 +965,8 @@ function groupBy(items, keyFn) {
945
965
  }
946
966
  return result;
947
967
  }
948
- function nonNullFilter(item) {
949
- return item !== null;
968
+ function nonNullishFilter(item) {
969
+ return !!item;
950
970
  }
951
971
  function areShallowObjectsEqual(lhs, rhs) {
952
972
  if (lhs === void 0 !== (rhs === void 0)) return false;
@@ -3327,6 +3347,11 @@ var SourceImportComponentSummary = _zod.z.object({
3327
3347
  componentAssetsUpdated: zeroNumberByDefault(),
3328
3348
  componentAssetsDeleted: zeroNumberByDefault()
3329
3349
  });
3350
+ var SourceImportStorybookSummary = _zod.z.object({
3351
+ created: zeroNumberByDefault(),
3352
+ updated: zeroNumberByDefault(),
3353
+ deleted: zeroNumberByDefault()
3354
+ });
3330
3355
  var SourceImportFrameSummary = _zod.z.object({
3331
3356
  assetsInFile: nullishToOptional(FileStructureStats.optional()),
3332
3357
  invalidReferencesCount: nullishToOptional(_zod.z.number().optional())
@@ -3412,9 +3437,12 @@ var DataSourceStorybookRemote = _zod.z.object({
3412
3437
  ownerId: _zod.z.string().optional(),
3413
3438
  lastImportedAt: _zod.z.coerce.date().optional(),
3414
3439
  lastImportedSuccessfully: _zod.z.coerce.date().optional(),
3440
+ lastImportedResult: SourceImportStorybookSummary.optional(),
3415
3441
  isFailed: _zod.z.boolean(),
3416
3442
  storiesCount: _zod.z.number(),
3417
- docsCount: _zod.z.number()
3443
+ docsCount: _zod.z.number(),
3444
+ description: _zod.z.string().optional(),
3445
+ isUsingVpn: _zod.z.boolean().optional()
3418
3446
  });
3419
3447
  var DataSourceRemote = _zod.z.discriminatedUnion("type", [
3420
3448
  DataSourceFigmaRemote,
@@ -3846,7 +3874,8 @@ var DocumentationPageDependencies = _zod.z.object({
3846
3874
  groupPersistentIds: _zod.z.set(_zod.z.string()),
3847
3875
  propertyPersistentIds: _zod.z.set(_zod.z.string()),
3848
3876
  themePersistentIds: _zod.z.set(_zod.z.string()),
3849
- documentationPagePersistentIds: _zod.z.set(_zod.z.string())
3877
+ documentationPagePersistentIds: _zod.z.set(_zod.z.string()),
3878
+ storybookEntriesStoryIds: _zod.z.set(_zod.z.string())
3850
3879
  });
3851
3880
  var DocumentationPage = _zod.z.object({
3852
3881
  type: _zod.z.literal("DocumentationPage"),
@@ -4621,8 +4650,7 @@ var DocumentationPageRoom = Entity.extend({
4621
4650
  isDirty: _zod.z.boolean()
4622
4651
  });
4623
4652
  var DocumentationPageRoomState = _zod.z.object({
4624
- pageItems: _zod.z.array(PageBlockEditorModelV2.or(PageSectionEditorModelV2)),
4625
- itemConfiguration: DocumentationItemConfigurationV2
4653
+ pageItems: _zod.z.array(PageBlockEditorModelV2.or(PageSectionEditorModelV2))
4626
4654
  });
4627
4655
  var DocumentationPageRoomRoomUpdate = _zod.z.object({
4628
4656
  page: DocumentationPageV2,
@@ -5124,14 +5152,14 @@ function squashAndConvertToDto(entries) {
5124
5152
  );
5125
5153
  return Array.from(byDay.entries()).map(([startOfDay, dayEntries]) => {
5126
5154
  const firstEntry = dayEntries[0];
5127
- const uniqueSessions = new Set(dayEntries.map((e) => e.anonymousId).filter(nonNullFilter)).size;
5155
+ const uniqueSessions = new Set(dayEntries.map((e) => e.anonymousId).filter(nonNullishFilter)).size;
5128
5156
  const visitsSum = dayEntries.reduce((prev, curr) => prev + curr.visits, 0);
5129
5157
  return {
5130
5158
  versionId: firstEntry.versionId,
5131
- locale: firstEntry.locale,
5132
5159
  timestamp: new Date(startOfDay),
5133
5160
  sessions: uniqueSessions,
5134
- visits: visitsSum
5161
+ visits: visitsSum,
5162
+ ...firstEntry.locale && { locale: firstEntry.locale }
5135
5163
  };
5136
5164
  });
5137
5165
  }
@@ -5143,6 +5171,20 @@ function getStartOfUTCDay(date) {
5143
5171
  }
5144
5172
 
5145
5173
  // src/api/conversion/analytics/page-visits-to-comparison-dto.ts
5174
+ function documentationAnalyticsToPageComparisonDto(input) {
5175
+ const { pagePersistentId } = input;
5176
+ function validateDataPoint(dataPoint) {
5177
+ if (dataPoint.pagePersistentId !== pagePersistentId) {
5178
+ throw SupernovaException.shouldNotHappen(`Tried to include invalid analytics data point!`);
5179
+ }
5180
+ }
5181
+ input.priorDataPoints.forEach(validateDataPoint);
5182
+ input.currentDataPoints.forEach(validateDataPoint);
5183
+ return {
5184
+ ...documentationAnalyticsToComparisonDto(input),
5185
+ pagePersistentId
5186
+ };
5187
+ }
5146
5188
  function documentationAnalyticsToComparisonDto(input) {
5147
5189
  const { timeFrame } = input;
5148
5190
  const priorDataPoints = documentationAnalyticsToGlobalDto(input.priorDataPoints);
@@ -5672,12 +5714,23 @@ var DTOCodeComponentCreateInput = _zod.z.object({
5672
5714
  componentPath: _zod.z.string(),
5673
5715
  description: _zod.z.string(),
5674
5716
  properties: _zod.z.record(_zod.z.string(), DTOCodeComponentProperty),
5675
- tags: _zod.z.record(_zod.z.string(), _zod.z.string()).optional()
5717
+ tags: _zod.z.record(_zod.z.string(), _zod.z.string()).nullable()
5676
5718
  });
5677
5719
  var DTOCodeComponentsCreateInput = _zod.z.object({
5678
5720
  codeComponents: DTOCodeComponentCreateInput.array()
5679
5721
  });
5680
5722
  var DTOCodeComponentUpsertResponse = CodeComponentUpsertResponse;
5723
+ var DTOAnalyzeCodeComponentsInPackage = AnalyzeCodeComponentsInPackage;
5724
+ var DTODependencyDefinition = DependencyDefinition;
5725
+ var DTORegistry = Registry;
5726
+ var DTOAnalyzeCodeComponentsInPackageResponse = _zod.z.object({
5727
+ ok: _zod.z.literal(true)
5728
+ });
5729
+ var DTOAnalyzeCodeComponentsInPackageInput = AnalyzeCodeComponentsInPackage.omit({
5730
+ designSystemId: true,
5731
+ versionId: true,
5732
+ userAccessToken: true
5733
+ });
5681
5734
 
5682
5735
  // src/api/dto/design-systems/component.ts
5683
5736
 
@@ -5865,10 +5918,13 @@ var DTODataSourceStorybook = _zod.z.object({
5865
5918
  indexUrl: _zod.z.string(),
5866
5919
  userUrl: _zod.z.string(),
5867
5920
  lastImportedAt: _zod.z.coerce.date().optional(),
5921
+ lastImportedResult: SourceImportStorybookSummary.optional(),
5868
5922
  lastImportedSuccessfully: _zod.z.coerce.date().optional(),
5869
5923
  isFailed: _zod.z.boolean(),
5870
5924
  storiesCount: _zod.z.number(),
5871
- docsCount: _zod.z.number()
5925
+ docsCount: _zod.z.number(),
5926
+ description: _zod.z.string().optional(),
5927
+ isUsingVpn: _zod.z.boolean().optional()
5872
5928
  })
5873
5929
  });
5874
5930
  var DTODataSourcesStorybookResponse = _zod.z.object({
@@ -5902,15 +5958,23 @@ var DTODataSourceFigmaImportPayload = _zod.z.object({
5902
5958
  });
5903
5959
  var DTODataSourceStorybookCreatePayload = _zod.z.object({
5904
5960
  brandPersistentId: _zod.z.string(),
5961
+ fileName: _zod.z.string().optional(),
5905
5962
  userUrl: _zod.z.string(),
5906
5963
  indexUrl: _zod.z.string(),
5907
5964
  payload: _zod.z.unknown(),
5908
- type: _zod.z.literal(DataSourceRemoteType.Enum.Storybook)
5965
+ type: _zod.z.literal(DataSourceRemoteType.Enum.Storybook),
5966
+ description: _zod.z.string().optional(),
5967
+ isUsingVpn: _zod.z.boolean().optional()
5909
5968
  });
5910
5969
  var DTOStorybookImportPayload = _zod.z.object({
5911
5970
  sourceId: _zod.z.string(),
5912
5971
  payload: _zod.z.unknown()
5913
5972
  });
5973
+ var DTOStorybookSourceUpdatePayload = _zod.z.object({
5974
+ description: _zod.z.string().nullish().optional(),
5975
+ isUsingVpn: _zod.z.boolean().optional(),
5976
+ fileName: _zod.z.string().optional()
5977
+ });
5914
5978
 
5915
5979
  // src/api/dto/design-systems/design-system.ts
5916
5980
 
@@ -6163,6 +6227,24 @@ var DTODesignSystemVersionStatsQuery = _zod.z.object({
6163
6227
 
6164
6228
  // src/api/dto/design-systems/storybook.ts
6165
6229
 
6230
+ var DTOStorybookUploadUrlRequest = _zod.z.object({
6231
+ name: _zod.z.string()
6232
+ });
6233
+ var DTOStorybookUploadUrlResponse = _zod.z.object({
6234
+ signedUrl: _zod.z.string(),
6235
+ storybookUploadId: _zod.z.string()
6236
+ });
6237
+ var DTOStorybookAccessTokenResponse = _zod.z.object({
6238
+ accessToken: _zod.z.string()
6239
+ });
6240
+ var DTOStorybookAccessTokenPayload = _zod.z.object({
6241
+ designSystemId: _zod.z.string(),
6242
+ storybookUploadId: _zod.z.string()
6243
+ });
6244
+ var DTOStorybookUploadStatus = _zod.z.object({
6245
+ status: _zod.z.enum(["Failed", "InProgress", "Completed", "Unknown"]),
6246
+ timestamp: _zod.z.number().optional()
6247
+ });
6166
6248
  var DTOStorybookEntryOrigin = _zod.z.object({
6167
6249
  id: _zod.z.string(),
6168
6250
  type: _zod.z.enum(["story", "docs"]),
@@ -6187,6 +6269,191 @@ var DTOStorybookEntryReplaceAction = _zod.z.object({
6187
6269
  var DTOStorybookEntryListResponse = _zod.z.object({ entries: _zod.z.array(DTOStorybookEntry) });
6188
6270
  var DTOStorybookEntryResponse = _zod.z.object({ entry: DTOStorybookEntry });
6189
6271
 
6272
+ // src/api/dto/design-systems/user-design-systems.ts
6273
+
6274
+
6275
+ // src/api/dto/workspaces/git.ts
6276
+
6277
+ var DTOGitOrganization = _zod.z.object({
6278
+ id: _zod.z.string(),
6279
+ name: _zod.z.string(),
6280
+ url: _zod.z.string(),
6281
+ slug: _zod.z.string()
6282
+ });
6283
+ var DTOGitProject = _zod.z.object({
6284
+ id: _zod.z.string(),
6285
+ name: _zod.z.string(),
6286
+ url: _zod.z.string(),
6287
+ slug: _zod.z.string()
6288
+ });
6289
+ var DTOGitRepository = _zod.z.object({
6290
+ id: _zod.z.string(),
6291
+ name: _zod.z.string(),
6292
+ url: _zod.z.string(),
6293
+ slug: _zod.z.string(),
6294
+ defaultBranch: _zod.z.string().optional()
6295
+ });
6296
+ var DTOGitBranch = _zod.z.object({
6297
+ name: _zod.z.string(),
6298
+ lastCommitId: _zod.z.string()
6299
+ });
6300
+
6301
+ // src/api/dto/workspaces/integrations.ts
6302
+
6303
+ var DTOIntegrationCredentials = IntegrationCredentials.omit({
6304
+ accessToken: true,
6305
+ refreshToken: true
6306
+ });
6307
+ var DTOIntegration = _zod.z.object({
6308
+ id: _zod.z.string(),
6309
+ workspaceId: _zod.z.string(),
6310
+ type: ExtendedIntegrationType,
6311
+ createdAt: _zod.z.coerce.date(),
6312
+ integrationCredentials: _zod.z.array(DTOIntegrationCredentials).optional(),
6313
+ integrationDesignSystems: _zod.z.array(IntegrationDesignSystem).optional()
6314
+ });
6315
+ var DTOIntegrationOAuthGetResponse = _zod.z.object({
6316
+ url: _zod.z.string()
6317
+ });
6318
+ var DTOIntegrationPostResponse = _zod.z.object({
6319
+ integration: DTOIntegration
6320
+ });
6321
+ var DTOIntegrationsGetListResponse = _zod.z.object({
6322
+ integrations: DTOIntegration.array()
6323
+ });
6324
+
6325
+ // src/api/dto/workspaces/invitations.ts
6326
+
6327
+ var DTOWorkspaceInvitationInput = _zod.z.object({
6328
+ email: _zod.z.string().email(),
6329
+ role: WorkspaceRoleSchema
6330
+ });
6331
+ var DTOWorkspaceInvitationsListInput = _zod.z.object({
6332
+ invites: DTOWorkspaceInvitationInput.array().max(100),
6333
+ designSystemId: _zod.z.string().optional()
6334
+ });
6335
+ var DTOWorkspaceInvitationsResponse = _zod.z.object({
6336
+ invitations: WorkspaceInvitation.array()
6337
+ });
6338
+ var DTOWorkspaceInviteUpdate = _zod.z.object({
6339
+ role: WorkspaceRoleSchema
6340
+ });
6341
+ var DTOWorkspaceInvitationUpdateResponse = _zod.z.object({
6342
+ invitation: WorkspaceInvitation
6343
+ });
6344
+
6345
+ // src/api/dto/workspaces/membership.ts
6346
+
6347
+
6348
+ // src/api/dto/workspaces/workspace.ts
6349
+
6350
+
6351
+ // src/api/dto/workspaces/npm-registry.ts
6352
+
6353
+ var DTONpmRegistryConfigConstants = {
6354
+ passwordPlaceholder: "redacted"
6355
+ };
6356
+ var DTONpmRegistryConfig = _zod.z.object({
6357
+ // Registry basic configuration
6358
+ registryType: NpmRegistryType,
6359
+ registryUrl: _zod.z.string(),
6360
+ customRegistryUrl: _zod.z.string().optional(),
6361
+ // URL of Supernova NPM packages proxy
6362
+ proxyUrl: _zod.z.string(),
6363
+ // Auth configuration
6364
+ authType: NpmRegistryAuthType,
6365
+ accessToken: _zod.z.literal(DTONpmRegistryConfigConstants.passwordPlaceholder).optional(),
6366
+ username: _zod.z.string().optional(),
6367
+ password: _zod.z.literal(DTONpmRegistryConfigConstants.passwordPlaceholder).optional(),
6368
+ // NPM package scopes for whih the proxy should be enabled
6369
+ enabledScopes: _zod.z.array(_zod.z.string()),
6370
+ // True if client should bypass Supernova proxy and connect directly to the registry
6371
+ // (e.g. when the NPM registry is behind a VPN or firewall which prevents Supernova from accessing it)
6372
+ bypassProxy: _zod.z.boolean()
6373
+ });
6374
+ var DTONpmRegistryAccessTokenResponse = _zod.z.object({
6375
+ version: _zod.z.number(),
6376
+ accessToken: _zod.z.string().optional(),
6377
+ registryUrl: _zod.z.string()
6378
+ });
6379
+ var DTOUpdateRegistryInput = _zod.z.object({
6380
+ registryType: nullishToOptional(NpmRegistryType),
6381
+ authType: nullishToOptional(NpmRegistryAuthType),
6382
+ enabledScopes: nullishToOptional(_zod.z.array(_zod.z.string())),
6383
+ customRegistryUrl: nullishToOptional(_zod.z.string()),
6384
+ bypassProxy: nullishToOptional(_zod.z.boolean()),
6385
+ npmProxyVersion: nullishToOptional(_zod.z.number()),
6386
+ authHeaderName: nullishToOptional(_zod.z.string()),
6387
+ authHeaderValue: nullishToOptional(_zod.z.string()),
6388
+ accessToken: nullishToOptional(_zod.z.string()),
6389
+ username: nullishToOptional(_zod.z.string()),
6390
+ password: nullishToOptional(_zod.z.string())
6391
+ });
6392
+ var DTOUpdateRegistryOutput = _zod.z.object({
6393
+ npmRegistrySettings: DTONpmRegistryConfig
6394
+ });
6395
+
6396
+ // src/api/dto/workspaces/workspace.ts
6397
+ var DTOWorkspaceProfile = WorkspaceProfile;
6398
+ var DTOWorkspace = _zod.z.object({
6399
+ id: _zod.z.string(),
6400
+ profile: DTOWorkspaceProfile,
6401
+ subscription: Subscription,
6402
+ npmRegistry: DTONpmRegistryConfig.optional()
6403
+ });
6404
+ var DTOWorkspaceCreateInput = _zod.z.object({
6405
+ name: _zod.z.string()
6406
+ });
6407
+ var DTOWorkspaceResponse = _zod.z.object({
6408
+ workspace: DTOWorkspace
6409
+ });
6410
+
6411
+ // src/api/dto/workspaces/membership.ts
6412
+ var DTOWorkspaceRole = _zod.z.enum(["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]);
6413
+ var DTOUserWorkspaceMembership = _zod.z.object({
6414
+ // Workspace the user is a member of
6415
+ workspace: DTOWorkspace,
6416
+ // Assigned role the user has in the workspace
6417
+ role: DTOWorkspaceRole,
6418
+ // Role that determines actual permissions the user has in the workspace
6419
+ // E.g. this is different from the default role when editors are downgraded to viewers
6420
+ // when a workspace's subscription is downgraded to free tier
6421
+ effectiveRole: DTOWorkspaceRole
6422
+ });
6423
+ var DTOWorkspaceMember = _zod.z.object({
6424
+ user: User,
6425
+ role: WorkspaceRoleSchema,
6426
+ effectiveRole: WorkspaceRoleSchema
6427
+ });
6428
+ var DTOUserWorkspaceMembershipsResponse = _zod.z.object({
6429
+ membership: _zod.z.array(DTOUserWorkspaceMembership)
6430
+ });
6431
+ var DTOWorkspaceMembersListResponse = _zod.z.object({
6432
+ members: _zod.z.array(DTOWorkspaceMember)
6433
+ });
6434
+
6435
+ // src/api/dto/workspaces/untyped-data.ts
6436
+
6437
+ var DTOWorkspaceUntypedData = WorkspaceUntypedData;
6438
+ var DTOWorkspaceUntypedDataListResponse = _zod.z.object({
6439
+ data: DTOWorkspaceUntypedData.array()
6440
+ });
6441
+ var DTOWorkspaceUntypedDataResponse = _zod.z.object({
6442
+ data: DTOWorkspaceUntypedData
6443
+ });
6444
+ var DTOWorkspaceUntypedDataCreatePayload = _zod.z.object({
6445
+ value: _zod.z.unknown()
6446
+ });
6447
+ var DTOWorkspaceUntypedDataUpdatePayload = _zod.z.object({
6448
+ value: _zod.z.unknown()
6449
+ });
6450
+
6451
+ // src/api/dto/design-systems/user-design-systems.ts
6452
+ var DTOUserDesignSystemsResponse = _zod.z.object({
6453
+ designSystems: DTODesignSystem.array(),
6454
+ workspaces: DTOWorkspace.array()
6455
+ });
6456
+
6190
6457
  // src/api/dto/design-systems/version-room.ts
6191
6458
 
6192
6459
  var DTODesignSystemVersionRoom = _zod.z.object({
@@ -6580,161 +6847,6 @@ var DTOElementViewsListResponse = _zod.z.object({
6580
6847
  elementDataViews: _zod.z.array(DTOElementView)
6581
6848
  });
6582
6849
 
6583
- // src/api/dto/workspaces/git.ts
6584
-
6585
- var DTOGitOrganization = _zod.z.object({
6586
- id: _zod.z.string(),
6587
- name: _zod.z.string(),
6588
- url: _zod.z.string(),
6589
- slug: _zod.z.string()
6590
- });
6591
- var DTOGitProject = _zod.z.object({
6592
- id: _zod.z.string(),
6593
- name: _zod.z.string(),
6594
- url: _zod.z.string(),
6595
- slug: _zod.z.string()
6596
- });
6597
- var DTOGitRepository = _zod.z.object({
6598
- id: _zod.z.string(),
6599
- name: _zod.z.string(),
6600
- url: _zod.z.string(),
6601
- slug: _zod.z.string(),
6602
- defaultBranch: _zod.z.string().optional()
6603
- });
6604
- var DTOGitBranch = _zod.z.object({
6605
- name: _zod.z.string(),
6606
- lastCommitId: _zod.z.string()
6607
- });
6608
-
6609
- // src/api/dto/workspaces/integrations.ts
6610
-
6611
- var DTOIntegrationCredentials = IntegrationCredentials.omit({
6612
- accessToken: true,
6613
- refreshToken: true
6614
- });
6615
- var DTOIntegration = _zod.z.object({
6616
- id: _zod.z.string(),
6617
- workspaceId: _zod.z.string(),
6618
- type: ExtendedIntegrationType,
6619
- createdAt: _zod.z.coerce.date(),
6620
- integrationCredentials: _zod.z.array(DTOIntegrationCredentials).optional(),
6621
- integrationDesignSystems: _zod.z.array(IntegrationDesignSystem).optional()
6622
- });
6623
- var DTOIntegrationOAuthGetResponse = _zod.z.object({
6624
- url: _zod.z.string()
6625
- });
6626
- var DTOIntegrationPostResponse = _zod.z.object({
6627
- integration: DTOIntegration
6628
- });
6629
- var DTOIntegrationsGetListResponse = _zod.z.object({
6630
- integrations: DTOIntegration.array()
6631
- });
6632
-
6633
- // src/api/dto/workspaces/invitations.ts
6634
-
6635
- var DTOWorkspaceInvitationInput = _zod.z.object({
6636
- email: _zod.z.string().email(),
6637
- role: WorkspaceRoleSchema
6638
- });
6639
- var DTOWorkspaceInvitationsListInput = _zod.z.object({
6640
- invites: DTOWorkspaceInvitationInput.array().max(100),
6641
- designSystemId: _zod.z.string().optional()
6642
- });
6643
- var DTOWorkspaceInvitationsResponse = _zod.z.object({
6644
- invitations: WorkspaceInvitation.array()
6645
- });
6646
- var DTOWorkspaceInviteUpdate = _zod.z.object({
6647
- role: WorkspaceRoleSchema
6648
- });
6649
- var DTOWorkspaceInvitationUpdateResponse = _zod.z.object({
6650
- invitation: WorkspaceInvitation
6651
- });
6652
-
6653
- // src/api/dto/workspaces/membership.ts
6654
-
6655
-
6656
- // src/api/dto/workspaces/workspace.ts
6657
-
6658
-
6659
- // src/api/dto/workspaces/npm-registry.ts
6660
-
6661
- var DTONpmRegistryConfigConstants = {
6662
- passwordPlaceholder: "redacted"
6663
- };
6664
- var DTONpmRegistryConfig = _zod.z.object({
6665
- // Registry basic configuration
6666
- registryType: NpmRegistryType,
6667
- registryUrl: _zod.z.string(),
6668
- customRegistryUrl: _zod.z.string().optional(),
6669
- // URL of Supernova NPM packages proxy
6670
- proxyUrl: _zod.z.string(),
6671
- // Auth configuration
6672
- authType: NpmRegistryAuthType,
6673
- accessToken: _zod.z.literal(DTONpmRegistryConfigConstants.passwordPlaceholder).optional(),
6674
- username: _zod.z.string().optional(),
6675
- password: _zod.z.literal(DTONpmRegistryConfigConstants.passwordPlaceholder).optional(),
6676
- // NPM package scopes for whih the proxy should be enabled
6677
- enabledScopes: _zod.z.array(_zod.z.string()),
6678
- // True if client should bypass Supernova proxy and connect directly to the registry
6679
- // (e.g. when the NPM registry is behind a VPN or firewall which prevents Supernova from accessing it)
6680
- bypassProxy: _zod.z.boolean()
6681
- });
6682
-
6683
- // src/api/dto/workspaces/workspace.ts
6684
- var DTOWorkspaceProfile = WorkspaceProfile;
6685
- var DTOWorkspace = _zod.z.object({
6686
- id: _zod.z.string(),
6687
- profile: DTOWorkspaceProfile,
6688
- subscription: Subscription,
6689
- npmRegistry: DTONpmRegistryConfig.optional()
6690
- });
6691
- var DTOWorkspaceCreateInput = _zod.z.object({
6692
- name: _zod.z.string()
6693
- });
6694
- var DTOWorkspaceResponse = _zod.z.object({
6695
- workspace: DTOWorkspace
6696
- });
6697
-
6698
- // src/api/dto/workspaces/membership.ts
6699
- var DTOWorkspaceRole = _zod.z.enum(["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]);
6700
- var DTOUserWorkspaceMembership = _zod.z.object({
6701
- // Workspace the user is a member of
6702
- workspace: DTOWorkspace,
6703
- // Assigned role the user has in the workspace
6704
- role: DTOWorkspaceRole,
6705
- // Role that determines actual permissions the user has in the workspace
6706
- // E.g. this is different from the default role when editors are downgraded to viewers
6707
- // when a workspace's subscription is downgraded to free tier
6708
- effectiveRole: DTOWorkspaceRole
6709
- });
6710
- var DTOWorkspaceMember = _zod.z.object({
6711
- user: User,
6712
- role: WorkspaceRoleSchema,
6713
- effectiveRole: WorkspaceRoleSchema
6714
- });
6715
- var DTOUserWorkspaceMembershipsResponse = _zod.z.object({
6716
- membership: _zod.z.array(DTOUserWorkspaceMembership)
6717
- });
6718
- var DTOWorkspaceMembersListResponse = _zod.z.object({
6719
- members: _zod.z.array(DTOWorkspaceMember)
6720
- });
6721
-
6722
- // src/api/dto/workspaces/untyped-data.ts
6723
-
6724
- var DTOWorkspaceUntypedData = WorkspaceUntypedData;
6725
- var DTOWorkspaceUntypedDataListResponse = _zod.z.object({
6726
- data: DTOWorkspaceUntypedData.array()
6727
- });
6728
- var DTOWorkspaceUntypedDataResponse = _zod.z.object({
6729
- data: DTOWorkspaceUntypedData
6730
- });
6731
- var DTOWorkspaceUntypedDataCreatePayload = _zod.z.object({
6732
- value: _zod.z.unknown()
6733
- });
6734
- var DTOWorkspaceUntypedDataUpdatePayload = _zod.z.object({
6735
- value: _zod.z.unknown()
6736
- });
6737
-
6738
6850
  // src/api/dto/bff/app-bootstrap-data.ts
6739
6851
  var DTOAppBootstrapDataQuery = _zod.z.object({
6740
6852
  preferredWorkspaceId: _zod.z.string().optional(),
@@ -6848,7 +6960,7 @@ var DTOPublishedDocVisitHeatMapWeek = _zod.z.object({
6848
6960
  sat: DTOPublishedDocVisitHeatMapDay,
6849
6961
  sun: DTOPublishedDocVisitHeatMapDay
6850
6962
  });
6851
- var DTOPubishedDocAnalyticsComparisonData = _zod.z.object({
6963
+ var DTOPublishedDocAnalyticsComparisonData = _zod.z.object({
6852
6964
  /**
6853
6965
  * For which timeframe it was calculated
6854
6966
  */
@@ -6858,21 +6970,15 @@ var DTOPubishedDocAnalyticsComparisonData = _zod.z.object({
6858
6970
  currentVisitCount: _zod.z.number(),
6859
6971
  currentSessionCount: _zod.z.number()
6860
6972
  });
6973
+ var DTOPublishedDocPageAnalyticsComparisonData = DTOPublishedDocAnalyticsComparisonData.extend({
6974
+ pagePersistentId: _zod.z.string()
6975
+ });
6861
6976
  var DTODocumentationPageAnalyticsResponse = _zod.z.object({
6862
- // Old
6863
- /**
6864
- * @deprecated
6865
- */
6866
- analytics: _zod.z.array(DTOPublishedDocPageVisitData),
6867
- /**
6868
- * @deprecated
6869
- */
6870
- perPageAnalytics: DTOPublishedDocPageVisitData.array(),
6871
- // New
6872
6977
  globalAnalytics: DTOPublishedDocVisitData.array(),
6873
6978
  pageAnalytics: DTOPublishedDocPageVisitData.array(),
6874
6979
  heatMapData: DTOPublishedDocVisitHeatMapWeek.array(),
6875
- comparisonData: DTOPubishedDocAnalyticsComparisonData.array()
6980
+ comparisonData: DTOPublishedDocAnalyticsComparisonData.array(),
6981
+ pageComparisonData: DTOPublishedDocPageAnalyticsComparisonData.array()
6876
6982
  });
6877
6983
  var DTODocumentationAnalyticsRequest = _zod.z.object({
6878
6984
  timeFrames: _zod.z.array(DTODocumentationAnalyticsTimeFrame)
@@ -7601,6 +7707,28 @@ var DTODocumentationPageContentGetResponse = _zod.z.object({
7601
7707
  pageContent: DTODocumentationPageContent
7602
7708
  });
7603
7709
 
7710
+ // src/api/dto/elements/documentation/page-dependencies.ts
7711
+
7712
+ var DTODocumentationPageDependencies = _zod.z.object({
7713
+ id: _zod.z.string(),
7714
+ designSystemVersionId: _zod.z.string(),
7715
+ createdAt: _zod.z.coerce.date(),
7716
+ updatedAt: _zod.z.coerce.date(),
7717
+ documentationPageId: _zod.z.string(),
7718
+ tokenPersistentIds: _zod.z.array(_zod.z.string()),
7719
+ figmaComponentPersistentIds: _zod.z.array(_zod.z.string()),
7720
+ componentPersistentIds: _zod.z.array(_zod.z.string()),
7721
+ figmaNodePersistentIds: _zod.z.array(_zod.z.string()),
7722
+ groupPersistentIds: _zod.z.array(_zod.z.string()),
7723
+ propertyPersistentIds: _zod.z.array(_zod.z.string()),
7724
+ themePersistentIds: _zod.z.array(_zod.z.string()),
7725
+ documentationPagePersistentIds: _zod.z.array(_zod.z.string()),
7726
+ storybookEntriesStoryIds: _zod.z.array(_zod.z.string())
7727
+ });
7728
+ var DTODocumentationPageDependenciesGetResponse = _zod.z.object({
7729
+ dependencies: _zod.z.array(DTODocumentationPageDependencies)
7730
+ });
7731
+
7604
7732
  // src/api/dto/elements/documentation/page-v1.ts
7605
7733
 
7606
7734
  var DocumentationPageV1DTO = DocumentationPageV1.omit({
@@ -8385,6 +8513,16 @@ var CodeComponentsEndpoint = class {
8385
8513
  }
8386
8514
  );
8387
8515
  }
8516
+ async analyzePackage(dsId, vId, body) {
8517
+ return this.requestExecutor.json(
8518
+ `/design-systems/${dsId}/versions/${vId}/code-components/analyze-package`,
8519
+ DTOAnalyzeCodeComponentsInPackageResponse,
8520
+ {
8521
+ body,
8522
+ method: "POST"
8523
+ }
8524
+ );
8525
+ }
8388
8526
  };
8389
8527
 
8390
8528
  // src/api/endpoints/design-system/versions/documentation.ts
@@ -8943,10 +9081,24 @@ var DesignSystemSourcesEndpoint = class {
8943
9081
  });
8944
9082
  }
8945
9083
  storybookImport(dsId, payload) {
8946
- return this.requestExecutor.json(`/design-systems/${dsId}/versions/head/storybook-import`, DTODataSourcesStorybookResponse, {
8947
- method: "POST",
8948
- body: payload
8949
- });
9084
+ return this.requestExecutor.json(
9085
+ `/design-systems/${dsId}/versions/head/storybook-import`,
9086
+ DTODataSourcesStorybookResponse,
9087
+ {
9088
+ method: "POST",
9089
+ body: payload
9090
+ }
9091
+ );
9092
+ }
9093
+ updateStorybookImport(dsId, versionId, payload) {
9094
+ return this.requestExecutor.json(
9095
+ `/design-systems/${dsId}/versions/${versionId}/storybook-import`,
9096
+ DTODataSourcesStorybookResponse,
9097
+ {
9098
+ method: "POST",
9099
+ body: payload
9100
+ }
9101
+ );
8950
9102
  }
8951
9103
  };
8952
9104
 
@@ -8960,10 +9112,51 @@ var StorybookEntriesEndpoint = class {
8960
9112
  return this.requestExecutor.json(`/design-systems/${dsId}/versions/head/storybook`, DTOStorybookEntryListResponse);
8961
9113
  }
8962
9114
  replace(dsId, entryId) {
8963
- return this.requestExecutor.json(`/design-systems/${dsId}/versions/head/storybook/${entryId}`, DTOStorybookEntryReplaceAction, { method: "PUT" });
9115
+ return this.requestExecutor.json(
9116
+ `/design-systems/${dsId}/versions/head/storybook/${entryId}`,
9117
+ DTOStorybookEntryReplaceAction,
9118
+ { method: "PUT" }
9119
+ );
8964
9120
  }
8965
9121
  delete(dsId, entryId) {
8966
- return this.requestExecutor.json(`/design-systems/${dsId}/versions/head/storybook/${entryId}`, _zod.z.any(), { method: "DELETE" });
9122
+ return this.requestExecutor.json(`/design-systems/${dsId}/versions/head/storybook/${entryId}`, _zod.z.any(), {
9123
+ method: "DELETE"
9124
+ });
9125
+ }
9126
+ };
9127
+
9128
+ // src/api/endpoints/design-system/storybook-hosting.ts
9129
+
9130
+ var StorybookHostingEndpoint = class {
9131
+ constructor(requestExecutor) {
9132
+ this.requestExecutor = requestExecutor;
9133
+ }
9134
+ getSignedUploadUrl(dsId, body) {
9135
+ return this.requestExecutor.json(`/design-systems/${dsId}/storybook/upload`, DTOStorybookUploadUrlResponse, {
9136
+ body,
9137
+ method: "POST"
9138
+ });
9139
+ }
9140
+ delete(dsId, storybookUploadId) {
9141
+ return this.requestExecutor.json(
9142
+ `/design-systems/${dsId}/storybook/${storybookUploadId}`,
9143
+ _zod.z.object({ ok: _zod.z.boolean() }),
9144
+ {
9145
+ method: "DELETE"
9146
+ }
9147
+ );
9148
+ }
9149
+ getUploadStatus(dsId, storybookUploadId) {
9150
+ return this.requestExecutor.json(
9151
+ `/design-systems/${dsId}/storybook/${storybookUploadId}/status`,
9152
+ DTOStorybookUploadStatus
9153
+ );
9154
+ }
9155
+ getAccessToken(dsId, name) {
9156
+ return this.requestExecutor.json(
9157
+ `/design-systems/${dsId}/storybook/alias/${name}/access-token`,
9158
+ DTOStorybookAccessTokenResponse
9159
+ );
8967
9160
  }
8968
9161
  };
8969
9162
 
@@ -8976,6 +9169,7 @@ var DesignSystemsEndpoint = class {
8976
9169
  __publicField(this, "bff");
8977
9170
  __publicField(this, "sources");
8978
9171
  __publicField(this, "storybook");
9172
+ __publicField(this, "storybookHosting");
8979
9173
  __publicField(this, "contacts");
8980
9174
  __publicField(this, "redirects");
8981
9175
  __publicField(this, "figmaNodeStructures");
@@ -8985,6 +9179,7 @@ var DesignSystemsEndpoint = class {
8985
9179
  this.bff = new DesignSystemBffEndpoint(requestExecutor);
8986
9180
  this.sources = new DesignSystemSourcesEndpoint(requestExecutor);
8987
9181
  this.storybook = new StorybookEntriesEndpoint(requestExecutor);
9182
+ this.storybookHosting = new StorybookHostingEndpoint(requestExecutor);
8988
9183
  this.contacts = new DesignSystemContactsEndpoint(requestExecutor);
8989
9184
  this.redirects = new DesignSystemPageRedirectsEndpoint(requestExecutor);
8990
9185
  this.figmaNodeStructures = new FigmaNodeStructuresEndpoint(requestExecutor);
@@ -8996,6 +9191,9 @@ var DesignSystemsEndpoint = class {
8996
9191
  list(wsId) {
8997
9192
  return this.requestExecutor.json(`/workspaces/${wsId}/design-systems`, DTODesignSystemsListResponse);
8998
9193
  }
9194
+ listUserDesignSystems() {
9195
+ return this.requestExecutor.json("/design-systems", DTOUserDesignSystemsResponse);
9196
+ }
8999
9197
  get(dsId) {
9000
9198
  return this.requestExecutor.json(`/design-systems/${dsId}`, DTODesignSystemResponse);
9001
9199
  }
@@ -9084,6 +9282,25 @@ var WorkspaceMembersEndpoint = class {
9084
9282
  }
9085
9283
  };
9086
9284
 
9285
+ // src/api/endpoints/workspaces/npm-register.ts
9286
+ var WorkspaceNpmRegistryEndpoint = class {
9287
+ constructor(requestExecutor) {
9288
+ this.requestExecutor = requestExecutor;
9289
+ }
9290
+ getAccessToken(wsId) {
9291
+ return this.requestExecutor.json(
9292
+ `/workspaces/${wsId}/npm-registry/access-token`,
9293
+ DTONpmRegistryAccessTokenResponse
9294
+ );
9295
+ }
9296
+ update(wsId, body) {
9297
+ return this.requestExecutor.json(`/workspaces/${wsId}/npm-registry`, DTOUpdateRegistryOutput, {
9298
+ method: "PUT",
9299
+ body
9300
+ });
9301
+ }
9302
+ };
9303
+
9087
9304
  // src/api/endpoints/workspaces/workspaces.ts
9088
9305
 
9089
9306
  var WorkspacesEndpoint = class {
@@ -9091,10 +9308,12 @@ var WorkspacesEndpoint = class {
9091
9308
  this.requestExecutor = requestExecutor;
9092
9309
  __publicField(this, "members");
9093
9310
  __publicField(this, "invitations");
9311
+ __publicField(this, "npmRegistry");
9094
9312
  __publicField(this, "integrations");
9095
9313
  this.members = new WorkspaceMembersEndpoint(requestExecutor);
9096
9314
  this.invitations = new WorkspaceInvitationsEndpoint(requestExecutor);
9097
9315
  this.integrations = new WorkspaceIntegrationsEndpoint(requestExecutor);
9316
+ this.npmRegistry = new WorkspaceNpmRegistryEndpoint(requestExecutor);
9098
9317
  }
9099
9318
  create(body) {
9100
9319
  return this.requestExecutor.json("/workspaces", DTOWorkspaceResponse, {
@@ -9106,6 +9325,9 @@ var WorkspacesEndpoint = class {
9106
9325
  }
9107
9326
  });
9108
9327
  }
9328
+ list() {
9329
+ return this.requestExecutor.json(`/workspaces`, DTOUserWorkspaceMembershipsResponse, { method: "GET" });
9330
+ }
9109
9331
  get(workspaceId) {
9110
9332
  return this.requestExecutor.json(`/workspaces/${workspaceId}`, DTOWorkspaceResponse, { method: "GET" });
9111
9333
  }
@@ -9909,32 +10131,6 @@ function itemConfigurationToYjs(yDoc, item) {
9909
10131
  _optionalChain([configuration, 'optionalAccess', _46 => _46.isPrivate]) !== void 0 && configYMap.set("isPrivate", configuration.isPrivate);
9910
10132
  });
9911
10133
  }
9912
- function yjsToItemConfiguration(yDoc) {
9913
- const title = yDoc.getMap("itemTitle").get("title");
9914
- const headerYMap = yDoc.getMap("itemHeader");
9915
- const rawHeader = {
9916
- description: headerYMap.get("description"),
9917
- alignment: headerYMap.get("alignment"),
9918
- foregroundColor: headerYMap.get("foregroundColor"),
9919
- backgroundColor: headerYMap.get("backgroundColor"),
9920
- backgroundImageAsset: headerYMap.get("backgroundImageAsset"),
9921
- backgroundImageScaleType: headerYMap.get("backgroundImageScaleType"),
9922
- showBackgroundOverlay: headerYMap.get("showBackgroundOverlay"),
9923
- showCoverText: headerYMap.get("showCoverText"),
9924
- minHeight: headerYMap.get("minHeight")
9925
- };
9926
- const configYMap = yDoc.getMap("itemConfiguration");
9927
- const rawConfig = {
9928
- showSidebar: configYMap.get("showSidebar"),
9929
- isHidden: _nullishCoalesce(configYMap.get("isHidden"), () => ( false)),
9930
- isPrivate: _nullishCoalesce(configYMap.get("isPrivate"), () => ( false)),
9931
- header: rawHeader
9932
- };
9933
- return {
9934
- title: _zod.z.string().parse(title),
9935
- configuration: DTODocumentationItemConfigurationV2.parse(rawConfig)
9936
- };
9937
- }
9938
10134
 
9939
10135
  // src/yjs/docs-editor/model/block.ts
9940
10136
  var PageBlockEditorModel = PageBlockEditorModelV2;
@@ -13555,7 +13751,7 @@ function shallowProsemirrorNodeToBlock(prosemirrorNode, definition) {
13555
13751
  }
13556
13752
  function prosemirrorDocToRichTextPropertyValue(prosemirrorNode) {
13557
13753
  return {
13558
- value: (_nullishCoalesce(prosemirrorNode.content, () => ( []))).map((n) => prosemirrorNodeToRichTextEditorPropertyNode(n)).filter(nonNullFilter2)
13754
+ value: (_nullishCoalesce(prosemirrorNode.content, () => ( []))).map((n) => prosemirrorNodeToRichTextEditorPropertyNode(n)).filter(nonNullFilter)
13559
13755
  };
13560
13756
  }
13561
13757
  function prosemirrorNodeToRichTextEditorPropertyNode(prosemirrorNode) {
@@ -13579,7 +13775,7 @@ function parseAsListNode(prosemirrorNode) {
13579
13775
  return {
13580
13776
  type: "List",
13581
13777
  listType: prosemirrorNode.type === "orderedList" ? "OL" : "UL",
13582
- value: (_nullishCoalesce(prosemirrorNode.content, () => ( []))).map(parseAsListNodeItem).filter(nonNullFilter2)
13778
+ value: (_nullishCoalesce(prosemirrorNode.content, () => ( []))).map(parseAsListNodeItem).filter(nonNullFilter)
13583
13779
  };
13584
13780
  }
13585
13781
  function parseAsListNodeItem(prosemirrorNode) {
@@ -13604,7 +13800,7 @@ function internalProsemirrorNodeToSection(prosemirrorNode, definitionsMap) {
13604
13800
  contentExpandToEdges: true,
13605
13801
  expandToEdges: true
13606
13802
  },
13607
- items: (_nullishCoalesce(prosemirrorNode.content, () => ( []))).filter((c) => c.type === "sectionItem").map((c) => prosemirrorNodeToSectionItem(c, definitionsMap)).filter(nonNullFilter2)
13803
+ items: (_nullishCoalesce(prosemirrorNode.content, () => ( []))).filter((c) => c.type === "sectionItem").map((c) => prosemirrorNodeToSectionItem(c, definitionsMap)).filter(nonNullFilter)
13608
13804
  };
13609
13805
  }
13610
13806
  function prosemirrorNodeToSectionItem(prosemirrorNode, definitionsMap) {
@@ -13613,7 +13809,7 @@ function prosemirrorNodeToSectionItem(prosemirrorNode, definitionsMap) {
13613
13809
  return {
13614
13810
  id,
13615
13811
  title: _nullishCoalesce(getProsemirrorAttribute(prosemirrorNode, "title", _zod.z.string()), () => ( "")),
13616
- columns: (_nullishCoalesce(prosemirrorNode.content, () => ( []))).filter((c) => c.type === "sectionItemColumn").map((c) => prosemirrorNodeToSectionColumns(c, definitionsMap)).filter(nonNullFilter2)
13812
+ columns: (_nullishCoalesce(prosemirrorNode.content, () => ( []))).filter((c) => c.type === "sectionItemColumn").map((c) => prosemirrorNodeToSectionColumns(c, definitionsMap)).filter(nonNullFilter)
13617
13813
  };
13618
13814
  }
13619
13815
  function prosemirrorNodeToSectionColumns(prosemirrorNode, definitionsMap) {
@@ -13778,7 +13974,7 @@ function parseAsMultiRichText(prosemirrorNode, definition, property, definitions
13778
13974
  }
13779
13975
  function parseRichText(spans) {
13780
13976
  return {
13781
- spans: spans.map(parseRichTextSpan).filter(nonNullFilter2)
13977
+ spans: spans.map(parseRichTextSpan).filter(nonNullFilter)
13782
13978
  };
13783
13979
  }
13784
13980
  function parseRichTextSpan(span) {
@@ -13789,7 +13985,7 @@ function parseRichTextSpan(span) {
13789
13985
  const marks = _nullishCoalesce(span.marks, () => ( []));
13790
13986
  return {
13791
13987
  text: span.text,
13792
- attributes: marks.map(parseRichTextAttribute).filter(nonNullFilter2)
13988
+ attributes: marks.map(parseRichTextAttribute).filter(nonNullFilter)
13793
13989
  };
13794
13990
  }
13795
13991
  function parseRichTextAttribute(mark) {
@@ -13865,7 +14061,7 @@ function parseAsTable(prosemirrorNode, definition, property) {
13865
14061
  };
13866
14062
  tableValue.value = rows.map((row) => {
13867
14063
  return {
13868
- cells: (_nullishCoalesce(row.content, () => ( []))).map(parseAsTableCell).filter(nonNullFilter2)
14064
+ cells: (_nullishCoalesce(row.content, () => ( []))).map(parseAsTableCell).filter(nonNullFilter)
13869
14065
  };
13870
14066
  });
13871
14067
  return {
@@ -13896,7 +14092,7 @@ function parseAsTableCell(prosemirrorNode) {
13896
14092
  if (columnWidthArray) {
13897
14093
  columnWidth = roundDimension(columnWidthArray[0]);
13898
14094
  }
13899
- const tableNodes = (_nullishCoalesce(prosemirrorNode.content, () => ( []))).map(parseAsTableNode).filter(nonNullFilter2);
14095
+ const tableNodes = (_nullishCoalesce(prosemirrorNode.content, () => ( []))).map(parseAsTableNode).filter(nonNullFilter);
13900
14096
  return {
13901
14097
  id,
13902
14098
  alignment: parseTableCellAlignment(textAlign),
@@ -14049,7 +14245,7 @@ function parseBlockItems(prosemirrorNode, definition) {
14049
14245
  console.error("Block `items` property must be a json array");
14050
14246
  return null;
14051
14247
  }
14052
- return itemsJson.map((i) => parseItem(i, definition)).filter(nonNullFilter2);
14248
+ return itemsJson.map((i) => parseItem(i, definition)).filter(nonNullFilter);
14053
14249
  }
14054
14250
  function parseAppearance(prosemirrorNode) {
14055
14251
  let appearance = {};
@@ -14180,7 +14376,7 @@ function getProsemirrorAttribute(prosemirrorNode, attributeName, validationSchem
14180
14376
  return void 0;
14181
14377
  }
14182
14378
  }
14183
- function nonNullFilter2(item) {
14379
+ function nonNullFilter(item) {
14184
14380
  return item !== null;
14185
14381
  }
14186
14382
  function mapByUnique2(items, keyFn) {
@@ -15183,5 +15379,25 @@ var TransactionQueue = class {
15183
15379
 
15184
15380
 
15185
15381
 
15186
- exports.BackendVersionRoomYDoc = BackendVersionRoomYDoc; exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.BrandsEndpoint = BrandsEndpoint; exports.CodeComponentsEndpoint = CodeComponentsEndpoint; exports.CodegenEndpoint = CodegenEndpoint; exports.Collection = Collection2; exports.DTOAppBootstrapDataQuery = DTOAppBootstrapDataQuery; exports.DTOAppBootstrapDataResponse = DTOAppBootstrapDataResponse; exports.DTOAssetRenderConfiguration = DTOAssetRenderConfiguration; exports.DTOAuthenticatedUser = DTOAuthenticatedUser; exports.DTOAuthenticatedUserProfile = DTOAuthenticatedUserProfile; exports.DTOAuthenticatedUserResponse = DTOAuthenticatedUserResponse; exports.DTOBffFigmaImportRequestBody = DTOBffFigmaImportRequestBody; exports.DTOBffImportRequestBody = DTOBffImportRequestBody; exports.DTOBffUploadImportRequestBody = DTOBffUploadImportRequestBody; exports.DTOBrand = DTOBrand; exports.DTOBrandCreatePayload = DTOBrandCreatePayload; exports.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandUpdatePayload = DTOBrandUpdatePayload; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOCodeComponent = DTOCodeComponent; exports.DTOCodeComponentCreateInput = DTOCodeComponentCreateInput; exports.DTOCodeComponentListResponse = DTOCodeComponentListResponse; exports.DTOCodeComponentParentType = DTOCodeComponentParentType; exports.DTOCodeComponentProperty = DTOCodeComponentProperty; exports.DTOCodeComponentResolvedType = DTOCodeComponentResolvedType; exports.DTOCodeComponentResolvedTypeKind = DTOCodeComponentResolvedTypeKind; exports.DTOCodeComponentResponse = DTOCodeComponentResponse; exports.DTOCodeComponentUpsertResponse = DTOCodeComponentUpsertResponse; exports.DTOCodeComponentsCreateInput = DTOCodeComponentsCreateInput; exports.DTOColorTokenInlineData = DTOColorTokenInlineData; exports.DTOCreateDocumentationGroupInput = DTOCreateDocumentationGroupInput; exports.DTOCreateDocumentationPageInputV2 = DTOCreateDocumentationPageInputV2; exports.DTOCreateDocumentationTabInput = DTOCreateDocumentationTabInput; exports.DTOCreateVersionInput = DTOCreateVersionInput; exports.DTODataSource = DTODataSource; exports.DTODataSourceFigma = DTODataSourceFigma; exports.DTODataSourceFigmaCloud = DTODataSourceFigmaCloud; exports.DTODataSourceFigmaCreatePayload = DTODataSourceFigmaCreatePayload; exports.DTODataSourceFigmaImportPayload = DTODataSourceFigmaImportPayload; exports.DTODataSourceFigmaScope = DTODataSourceFigmaScope; exports.DTODataSourceFigmaVariablesPlugin = DTODataSourceFigmaVariablesPlugin; exports.DTODataSourceResponse = DTODataSourceResponse; exports.DTODataSourceStorybook = DTODataSourceStorybook; exports.DTODataSourceStorybookCreatePayload = DTODataSourceStorybookCreatePayload; exports.DTODataSourceTokenStudio = DTODataSourceTokenStudio; exports.DTODataSourcesListResponse = DTODataSourcesListResponse; exports.DTODataSourcesStorybookResponse = DTODataSourcesStorybookResponse; exports.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODesignElementsDataDiffResponse = DTODesignElementsDataDiffResponse; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemComponent = DTODesignSystemComponent; exports.DTODesignSystemComponentCreateInput = DTODesignSystemComponentCreateInput; exports.DTODesignSystemComponentListResponse = DTODesignSystemComponentListResponse; exports.DTODesignSystemComponentResponse = DTODesignSystemComponentResponse; exports.DTODesignSystemContactsResponse = DTODesignSystemContactsResponse; exports.DTODesignSystemCreateInput = DTODesignSystemCreateInput; exports.DTODesignSystemInvitation = DTODesignSystemInvitation; exports.DTODesignSystemMember = DTODesignSystemMember; exports.DTODesignSystemMemberListResponse = DTODesignSystemMemberListResponse; exports.DTODesignSystemMembersUpdatePayload = DTODesignSystemMembersUpdatePayload; exports.DTODesignSystemMembersUpdateResponse = DTODesignSystemMembersUpdateResponse; exports.DTODesignSystemResponse = DTODesignSystemResponse; exports.DTODesignSystemRole = DTODesignSystemRole; exports.DTODesignSystemUpdateAccessModeInput = DTODesignSystemUpdateAccessModeInput; exports.DTODesignSystemUpdateInput = DTODesignSystemUpdateInput; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionRoom = DTODesignSystemVersionRoom; exports.DTODesignSystemVersionRoomResponse = DTODesignSystemVersionRoomResponse; exports.DTODesignSystemVersionStats = DTODesignSystemVersionStats; exports.DTODesignSystemVersionStatsQuery = DTODesignSystemVersionStatsQuery; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODesignSystemsListResponse = DTODesignSystemsListResponse; exports.DTODesignToken = DTODesignToken; exports.DTODesignTokenCreatePayload = DTODesignTokenCreatePayload; exports.DTODesignTokenGroup = DTODesignTokenGroup; exports.DTODesignTokenGroupCreatePayload = DTODesignTokenGroupCreatePayload; exports.DTODesignTokenGroupListResponse = DTODesignTokenGroupListResponse; exports.DTODesignTokenGroupResponse = DTODesignTokenGroupResponse; exports.DTODesignTokenListResponse = DTODesignTokenListResponse; exports.DTODesignTokenResponse = DTODesignTokenResponse; exports.DTODiffCountBase = DTODiffCountBase; exports.DTODocumentationAnalyticsDiffPayload = DTODocumentationAnalyticsDiffPayload; exports.DTODocumentationAnalyticsRequest = DTODocumentationAnalyticsRequest; exports.DTODocumentationAnalyticsTimeFrame = DTODocumentationAnalyticsTimeFrame; exports.DTODocumentationAnalyticsTimeFrameComparison = DTODocumentationAnalyticsTimeFrameComparison; exports.DTODocumentationDraftChangeType = DTODocumentationDraftChangeType; exports.DTODocumentationDraftState = DTODocumentationDraftState; exports.DTODocumentationDraftStateCreated = DTODocumentationDraftStateCreated; exports.DTODocumentationDraftStateDeleted = DTODocumentationDraftStateDeleted; exports.DTODocumentationDraftStateUpdated = DTODocumentationDraftStateUpdated; exports.DTODocumentationGroupApprovalState = DTODocumentationGroupApprovalState; exports.DTODocumentationGroupCreateActionInputV2 = DTODocumentationGroupCreateActionInputV2; exports.DTODocumentationGroupCreateActionOutputV2 = DTODocumentationGroupCreateActionOutputV2; exports.DTODocumentationGroupDeleteActionInputV2 = DTODocumentationGroupDeleteActionInputV2; exports.DTODocumentationGroupDeleteActionOutputV2 = DTODocumentationGroupDeleteActionOutputV2; exports.DTODocumentationGroupDuplicateActionInputV2 = DTODocumentationGroupDuplicateActionInputV2; exports.DTODocumentationGroupDuplicateActionOutputV2 = DTODocumentationGroupDuplicateActionOutputV2; exports.DTODocumentationGroupMoveActionInputV2 = DTODocumentationGroupMoveActionInputV2; exports.DTODocumentationGroupMoveActionOutputV2 = DTODocumentationGroupMoveActionOutputV2; exports.DTODocumentationGroupRestoreActionInput = DTODocumentationGroupRestoreActionInput; exports.DTODocumentationGroupRestoreActionOutput = DTODocumentationGroupRestoreActionOutput; exports.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupUpdateActionInputV2 = DTODocumentationGroupUpdateActionInputV2; exports.DTODocumentationGroupUpdateActionOutputV2 = DTODocumentationGroupUpdateActionOutputV2; exports.DTODocumentationGroupV1 = DTODocumentationGroupV1; exports.DTODocumentationGroupV2 = DTODocumentationGroupV2; exports.DTODocumentationHierarchyV2 = DTODocumentationHierarchyV2; exports.DTODocumentationItemConfigurationV1 = DTODocumentationItemConfigurationV1; exports.DTODocumentationItemConfigurationV2 = DTODocumentationItemConfigurationV2; exports.DTODocumentationItemHeaderV2 = DTODocumentationItemHeaderV2; exports.DTODocumentationLinkPreviewRequest = DTODocumentationLinkPreviewRequest; exports.DTODocumentationLinkPreviewResponse = DTODocumentationLinkPreviewResponse; exports.DTODocumentationPageAnalyticsDifference = DTODocumentationPageAnalyticsDifference; exports.DTODocumentationPageAnalyticsResponse = DTODocumentationPageAnalyticsResponse; exports.DTODocumentationPageAnchor = DTODocumentationPageAnchor; exports.DTODocumentationPageApprovalState = DTODocumentationPageApprovalState; exports.DTODocumentationPageApprovalStateChangeActionInput = DTODocumentationPageApprovalStateChangeActionInput; exports.DTODocumentationPageApprovalStateChangeActionOutput = DTODocumentationPageApprovalStateChangeActionOutput; exports.DTODocumentationPageApprovalStateChangeInput = DTODocumentationPageApprovalStateChangeInput; exports.DTODocumentationPageContent = DTODocumentationPageContent; exports.DTODocumentationPageContentGetResponse = DTODocumentationPageContentGetResponse; exports.DTODocumentationPageCreateActionInputV2 = DTODocumentationPageCreateActionInputV2; exports.DTODocumentationPageCreateActionOutputV2 = DTODocumentationPageCreateActionOutputV2; exports.DTODocumentationPageDeleteActionInputV2 = DTODocumentationPageDeleteActionInputV2; exports.DTODocumentationPageDeleteActionOutputV2 = DTODocumentationPageDeleteActionOutputV2; exports.DTODocumentationPageDuplicateActionInputV2 = DTODocumentationPageDuplicateActionInputV2; exports.DTODocumentationPageDuplicateActionOutputV2 = DTODocumentationPageDuplicateActionOutputV2; exports.DTODocumentationPageIntervalDifferenceResponse = DTODocumentationPageIntervalDifferenceResponse; exports.DTODocumentationPageMoveActionInputV2 = DTODocumentationPageMoveActionInputV2; exports.DTODocumentationPageMoveActionOutputV2 = DTODocumentationPageMoveActionOutputV2; exports.DTODocumentationPageRestoreActionInput = DTODocumentationPageRestoreActionInput; exports.DTODocumentationPageRestoreActionOutput = DTODocumentationPageRestoreActionOutput; exports.DTODocumentationPageRoom = DTODocumentationPageRoom; exports.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageRoomResponse = DTODocumentationPageRoomResponse; exports.DTODocumentationPageSnapshot = DTODocumentationPageSnapshot; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageUpdateDocumentActionInputV2 = DTODocumentationPageUpdateDocumentActionInputV2; exports.DTODocumentationPageUpdateDocumentActionOutputV2 = DTODocumentationPageUpdateDocumentActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationPublishMetadata = DTODocumentationPublishMetadata; exports.DTODocumentationPublishTypeQueryParams = DTODocumentationPublishTypeQueryParams; exports.DTODocumentationSettings = DTODocumentationSettings; exports.DTODocumentationStructure = DTODocumentationStructure; exports.DTODocumentationStructureGroupItem = DTODocumentationStructureGroupItem; exports.DTODocumentationStructureItem = DTODocumentationStructureItem; exports.DTODocumentationStructurePageItem = DTODocumentationStructurePageItem; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; exports.DTODownloadAssetsRequest = DTODownloadAssetsRequest; exports.DTODownloadAssetsResponse = DTODownloadAssetsResponse; exports.DTODuplicateDocumentationGroupInput = DTODuplicateDocumentationGroupInput; exports.DTODuplicateDocumentationPageInputV2 = DTODuplicateDocumentationPageInputV2; exports.DTOElementActionInput = DTOElementActionInput; exports.DTOElementActionOutput = DTOElementActionOutput; exports.DTOElementPropertyDefinition = DTOElementPropertyDefinition; exports.DTOElementPropertyDefinitionCreatePayload = DTOElementPropertyDefinitionCreatePayload; exports.DTOElementPropertyDefinitionListResponse = DTOElementPropertyDefinitionListResponse; exports.DTOElementPropertyDefinitionOption = DTOElementPropertyDefinitionOption; exports.DTOElementPropertyDefinitionResponse = DTOElementPropertyDefinitionResponse; exports.DTOElementPropertyDefinitionUpdatePayload = DTOElementPropertyDefinitionUpdatePayload; exports.DTOElementPropertyValue = DTOElementPropertyValue; exports.DTOElementPropertyValueListResponse = DTOElementPropertyValueListResponse; exports.DTOElementPropertyValueResponse = DTOElementPropertyValueResponse; exports.DTOElementPropertyValueUpsertPaylod = DTOElementPropertyValueUpsertPaylod; exports.DTOElementPropertyValuesEditActionInput = DTOElementPropertyValuesEditActionInput; exports.DTOElementPropertyValuesEditActionOutput = DTOElementPropertyValuesEditActionOutput; 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.DTOElementsGetOutputV2 = DTOElementsGetOutputV2; exports.DTOElementsGetQuerySchema = DTOElementsGetQuerySchema; exports.DTOElementsGetTypeFilter = DTOElementsGetTypeFilter; exports.DTOEvent = DTOEvent; exports.DTOEventDataSourcesImported = DTOEventDataSourcesImported; exports.DTOEventFigmaNodesRendered = DTOEventFigmaNodesRendered; exports.DTOExportJob = DTOExportJob; exports.DTOExportJobCreateInput = DTOExportJobCreateInput; exports.DTOExportJobCreatedBy = DTOExportJobCreatedBy; exports.DTOExportJobDesignSystemPreview = DTOExportJobDesignSystemPreview; exports.DTOExportJobDesignSystemVersionPreview = DTOExportJobDesignSystemVersionPreview; exports.DTOExportJobDestinations = DTOExportJobDestinations; exports.DTOExportJobResponse = DTOExportJobResponse; exports.DTOExportJobResponseLegacy = DTOExportJobResponseLegacy; exports.DTOExportJobResult = DTOExportJobResult; exports.DTOExportJobsListFilter = DTOExportJobsListFilter; exports.DTOExporter = DTOExporter; exports.DTOExporterCreateInput = DTOExporterCreateInput; exports.DTOExporterDeprecationInput = DTOExporterDeprecationInput; exports.DTOExporterGitProviderEnum = DTOExporterGitProviderEnum; exports.DTOExporterListQuery = DTOExporterListQuery; exports.DTOExporterListResponse = DTOExporterListResponse; exports.DTOExporterMembership = DTOExporterMembership; exports.DTOExporterMembershipRole = DTOExporterMembershipRole; exports.DTOExporterPropertyDefinition = DTOExporterPropertyDefinition; exports.DTOExporterPropertyDefinitionArray = DTOExporterPropertyDefinitionArray; exports.DTOExporterPropertyDefinitionBoolean = DTOExporterPropertyDefinitionBoolean; exports.DTOExporterPropertyDefinitionCode = DTOExporterPropertyDefinitionCode; exports.DTOExporterPropertyDefinitionEnum = DTOExporterPropertyDefinitionEnum; exports.DTOExporterPropertyDefinitionEnumOption = DTOExporterPropertyDefinitionEnumOption; exports.DTOExporterPropertyDefinitionNumber = DTOExporterPropertyDefinitionNumber; exports.DTOExporterPropertyDefinitionObject = DTOExporterPropertyDefinitionObject; exports.DTOExporterPropertyDefinitionString = DTOExporterPropertyDefinitionString; exports.DTOExporterPropertyDefinitionsResponse = DTOExporterPropertyDefinitionsResponse; exports.DTOExporterPropertyType = DTOExporterPropertyType; exports.DTOExporterPropertyValue = DTOExporterPropertyValue; exports.DTOExporterPropertyValueMap = DTOExporterPropertyValueMap; exports.DTOExporterResponse = DTOExporterResponse; exports.DTOExporterSource = DTOExporterSource; exports.DTOExporterType = DTOExporterType; exports.DTOExporterUpdateInput = DTOExporterUpdateInput; exports.DTOFigmaComponent = DTOFigmaComponent; exports.DTOFigmaComponentGroup = DTOFigmaComponentGroup; exports.DTOFigmaComponentGroupListResponse = DTOFigmaComponentGroupListResponse; exports.DTOFigmaComponentListResponse = DTOFigmaComponentListResponse; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeDataV2 = DTOFigmaNodeDataV2; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderActionInput = DTOFigmaNodeRenderActionInput; exports.DTOFigmaNodeRenderActionOutput = DTOFigmaNodeRenderActionOutput; exports.DTOFigmaNodeRenderAsyncActionInput = DTOFigmaNodeRenderAsyncActionInput; exports.DTOFigmaNodeRenderAsyncActionOutput = DTOFigmaNodeRenderAsyncActionOutput; exports.DTOFigmaNodeRenderFormat = DTOFigmaNodeRenderFormat; exports.DTOFigmaNodeRenderIdInput = DTOFigmaNodeRenderIdInput; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOFigmaNodeRenderUrlInput = DTOFigmaNodeRenderUrlInput; exports.DTOFigmaNodeRerenderInput = DTOFigmaNodeRerenderInput; exports.DTOFigmaNodeStructure = DTOFigmaNodeStructure; exports.DTOFigmaNodeStructureDetail = DTOFigmaNodeStructureDetail; exports.DTOFigmaNodeStructureDetailResponse = DTOFigmaNodeStructureDetailResponse; exports.DTOFigmaNodeStructureListResponse = DTOFigmaNodeStructureListResponse; exports.DTOFigmaNodeV2 = DTOFigmaNodeV2; exports.DTOFrameNodeStructure = DTOFrameNodeStructure; exports.DTOFrameNodeStructureListResponse = DTOFrameNodeStructureListResponse; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOGitBranch = DTOGitBranch; exports.DTOGitOrganization = DTOGitOrganization; exports.DTOGitProject = DTOGitProject; exports.DTOGitRepository = DTOGitRepository; exports.DTOImportJob = DTOImportJob; exports.DTOImportJobResponse = DTOImportJobResponse; 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.DTOObjectMeta = DTOObjectMeta; exports.DTOPageBlockColorV2 = DTOPageBlockColorV2; exports.DTOPageBlockDefinition = DTOPageBlockDefinition; exports.DTOPageBlockDefinitionBehavior = DTOPageBlockDefinitionBehavior; exports.DTOPageBlockDefinitionItem = DTOPageBlockDefinitionItem; exports.DTOPageBlockDefinitionLayout = DTOPageBlockDefinitionLayout; exports.DTOPageBlockDefinitionProperty = DTOPageBlockDefinitionProperty; exports.DTOPageBlockDefinitionVariant = DTOPageBlockDefinitionVariant; exports.DTOPageBlockItemV2 = DTOPageBlockItemV2; exports.DTOPageRedirect = DTOPageRedirect; exports.DTOPageRedirectCreateBody = DTOPageRedirectCreateBody; exports.DTOPageRedirectDeleteResponse = DTOPageRedirectDeleteResponse; exports.DTOPageRedirectListResponse = DTOPageRedirectListResponse; exports.DTOPageRedirectResponse = DTOPageRedirectResponse; exports.DTOPageRedirectUpdateBody = DTOPageRedirectUpdateBody; exports.DTOPagination = DTOPagination; exports.DTOPipeline = DTOPipeline; exports.DTOPipelineCreateBody = DTOPipelineCreateBody; exports.DTOPipelineListQuery = DTOPipelineListQuery; exports.DTOPipelineListResponse = DTOPipelineListResponse; exports.DTOPipelineResponse = DTOPipelineResponse; exports.DTOPipelineTriggerBody = DTOPipelineTriggerBody; exports.DTOPipelineUpdateBody = DTOPipelineUpdateBody; exports.DTOPubishedDocAnalyticsComparisonData = DTOPubishedDocAnalyticsComparisonData; exports.DTOPublishDocumentationChanges = DTOPublishDocumentationChanges; exports.DTOPublishDocumentationRequest = DTOPublishDocumentationRequest; exports.DTOPublishDocumentationResponse = DTOPublishDocumentationResponse; exports.DTOPublishedDocPageVisitData = DTOPublishedDocPageVisitData; exports.DTOPublishedDocVisitData = DTOPublishedDocVisitData; exports.DTOPublishedDocVisitHeatMapWeek = DTOPublishedDocVisitHeatMapWeek; exports.DTORenderedAssetFile = DTORenderedAssetFile; exports.DTORestoreDocumentationGroupInput = DTORestoreDocumentationGroupInput; exports.DTORestoreDocumentationPageInput = DTORestoreDocumentationPageInput; exports.DTOStorybookEntry = DTOStorybookEntry; exports.DTOStorybookEntryListResponse = DTOStorybookEntryListResponse; exports.DTOStorybookEntryOrigin = DTOStorybookEntryOrigin; exports.DTOStorybookEntryReplaceAction = DTOStorybookEntryReplaceAction; exports.DTOStorybookEntryResponse = DTOStorybookEntryResponse; exports.DTOStorybookImportPayload = DTOStorybookImportPayload; exports.DTOTheme = DTOTheme; exports.DTOThemeCreatePayload = DTOThemeCreatePayload; exports.DTOThemeListResponse = DTOThemeListResponse; exports.DTOThemeOverride = DTOThemeOverride; exports.DTOThemeOverrideCreatePayload = DTOThemeOverrideCreatePayload; exports.DTOThemeResponse = DTOThemeResponse; exports.DTOTokenCollection = DTOTokenCollection; exports.DTOTokenCollectionsListReponse = DTOTokenCollectionsListReponse; exports.DTOTransferOwnershipPayload = DTOTransferOwnershipPayload; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageDocumentInputV2 = DTOUpdateDocumentationPageDocumentInputV2; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateUserNotificationSettingsPayload = DTOUpdateUserNotificationSettingsPayload; exports.DTOUpdateVersionInput = DTOUpdateVersionInput; exports.DTOUser = DTOUser; exports.DTOUserGetResponse = DTOUserGetResponse; exports.DTOUserNotificationSettingsResponse = DTOUserNotificationSettingsResponse; exports.DTOUserOnboarding = DTOUserOnboarding; exports.DTOUserOnboardingDepartment = DTOUserOnboardingDepartment; exports.DTOUserOnboardingJobLevel = DTOUserOnboardingJobLevel; exports.DTOUserProfile = DTOUserProfile; exports.DTOUserProfileUpdate = DTOUserProfileUpdate; exports.DTOUserProfileUpdatePayload = DTOUserProfileUpdatePayload; exports.DTOUserProfileUpdateResponse = DTOUserProfileUpdateResponse; exports.DTOUserSource = DTOUserSource; exports.DTOUserTheme = DTOUserTheme; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceCreateInput = DTOWorkspaceCreateInput; exports.DTOWorkspaceIntegrationGetGitObjectsInput = DTOWorkspaceIntegrationGetGitObjectsInput; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceInvitationInput = DTOWorkspaceInvitationInput; exports.DTOWorkspaceInvitationUpdateResponse = DTOWorkspaceInvitationUpdateResponse; exports.DTOWorkspaceInvitationsListInput = DTOWorkspaceInvitationsListInput; exports.DTOWorkspaceInvitationsResponse = DTOWorkspaceInvitationsResponse; exports.DTOWorkspaceInviteUpdate = DTOWorkspaceInviteUpdate; exports.DTOWorkspaceMember = DTOWorkspaceMember; exports.DTOWorkspaceMembersListResponse = DTOWorkspaceMembersListResponse; exports.DTOWorkspaceProfile = DTOWorkspaceProfile; exports.DTOWorkspaceResponse = DTOWorkspaceResponse; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DTOWorkspaceUntypedData = DTOWorkspaceUntypedData; exports.DTOWorkspaceUntypedDataCreatePayload = DTOWorkspaceUntypedDataCreatePayload; exports.DTOWorkspaceUntypedDataListResponse = DTOWorkspaceUntypedDataListResponse; exports.DTOWorkspaceUntypedDataResponse = DTOWorkspaceUntypedDataResponse; exports.DTOWorkspaceUntypedDataUpdatePayload = DTOWorkspaceUntypedDataUpdatePayload; exports.DesignSystemAnalyticsEndpoint = DesignSystemAnalyticsEndpoint; exports.DesignSystemBffEndpoint = DesignSystemBffEndpoint; exports.DesignSystemComponentEndpoint = DesignSystemComponentEndpoint; exports.DesignSystemContactsEndpoint = DesignSystemContactsEndpoint; exports.DesignSystemMembersEndpoint = DesignSystemMembersEndpoint; exports.DesignSystemPageRedirectsEndpoint = DesignSystemPageRedirectsEndpoint; exports.DesignSystemSourcesEndpoint = DesignSystemSourcesEndpoint; exports.DesignSystemVersionsEndpoint = DesignSystemVersionsEndpoint; exports.DesignSystemsEndpoint = DesignSystemsEndpoint; exports.DimensionsVariableScopeType = DimensionsVariableScopeType; exports.DocsStructureRepository = DocsStructureRepository; exports.DocumentationEndpoint = DocumentationEndpoint; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.ElementPropertyDefinitionsEndpoint = ElementPropertyDefinitionsEndpoint; exports.ElementPropertyValuesEndpoint = ElementPropertyValuesEndpoint; exports.ElementsActionEndpoint = ElementsActionEndpoint; exports.ElementsEndpoint = ElementsEndpoint; exports.ExporterJobsEndpoint = ExporterJobsEndpoint; exports.ExportersEndpoint = ExportersEndpoint; exports.FigmaComponentGroupsEndpoint = FigmaComponentGroupsEndpoint; exports.FigmaComponentsEndpoint = FigmaComponentsEndpoint; exports.FigmaFrameStructuresEndpoint = FigmaFrameStructuresEndpoint; exports.FigmaNodeStructuresEndpoint = FigmaNodeStructuresEndpoint; exports.FigmaUtils = FigmaUtils; exports.FormattedCollections = FormattedCollections; exports.FrontendVersionRoomYDoc = FrontendVersionRoomYDoc; exports.GitDestinationOptions = GitDestinationOptions; exports.ImportJobsEndpoint = ImportJobsEndpoint; exports.ListTreeBuilder = ListTreeBuilder; exports.LiveblocksEndpoint = LiveblocksEndpoint; exports.LocalDocsElementActionExecutor = LocalDocsElementActionExecutor; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.OverridesEndpoint = OverridesEndpoint; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.ParsedFigmaFileURLError = ParsedFigmaFileURLError; exports.PipelinesEndpoint = PipelinesEndpoint; exports.RGB = RGB; exports.RGBA = RGBA; exports.RequestExecutor = RequestExecutor; exports.RequestExecutorError = RequestExecutorError; exports.ResolvedVariableType = ResolvedVariableType; exports.StorybookEntriesEndpoint = StorybookEntriesEndpoint; exports.StringVariableScopeType = StringVariableScopeType; exports.SupernovaApiClient = SupernovaApiClient; exports.ThemesEndpoint = ThemesEndpoint; exports.TokenCollectionsEndpoint = TokenCollectionsEndpoint; exports.TokenGroupsEndpoint = TokenGroupsEndpoint; exports.TokensEndpoint = TokensEndpoint; exports.UsersEndpoint = UsersEndpoint; exports.Variable = Variable; exports.VariableAlias = VariableAlias; exports.VariableMode = VariableMode; exports.VariableValue = VariableValue; exports.VariablesMapping = VariablesMapping; exports.VersionRoomBaseYDoc = VersionRoomBaseYDoc; exports.VersionSQSPayload = VersionSQSPayload; exports.VersionStatsEndpoint = VersionStatsEndpoint; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.WorkspaceIntegrationsEndpoint = WorkspaceIntegrationsEndpoint; exports.WorkspaceInvitationsEndpoint = WorkspaceInvitationsEndpoint; exports.WorkspaceMembersEndpoint = WorkspaceMembersEndpoint; exports.WorkspacesEndpoint = WorkspacesEndpoint; exports.applyActionsLocally = applyActionsLocally; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.computeDocsHierarchy = computeDocsHierarchy; exports.documentationAnalyticsToComparisonDto = documentationAnalyticsToComparisonDto; exports.documentationAnalyticsToGlobalDto = documentationAnalyticsToGlobalDto; exports.documentationAnalyticsToHeatMapDto = documentationAnalyticsToHeatMapDto; exports.documentationAnalyticsToPageDto = documentationAnalyticsToPageDto; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPageToDTOV2 = documentationPageToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.exhaustiveInvalidUriPaths = exhaustiveInvalidUriPaths; exports.generateHash = generateHash; exports.generatePageContentHash = generatePageContentHash; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.gitBranchToDto = gitBranchToDto; exports.gitOrganizationToDto = gitOrganizationToDto; exports.gitProjectToDto = gitProjectToDto; exports.gitRepositoryToDto = gitRepositoryToDto; exports.innerEditorProsemirrorSchema = innerEditorProsemirrorSchema; exports.integrationCredentialToDto = integrationCredentialToDto; exports.integrationToDto = integrationToDto; exports.isValidRedirectPath = isValidRedirectPath; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.mainEditorProsemirrorSchema = mainEditorProsemirrorSchema; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYDoc = pageToYDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pipelineToDto = pipelineToDto; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorDocToRichTextPropertyValue = prosemirrorDocToRichTextPropertyValue; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.richTextPropertyValueToProsemirror = richTextPropertyValueToProsemirror; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.serializeQuery = serializeQuery; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.yjsToItemConfiguration = yjsToItemConfiguration;
15382
+
15383
+
15384
+
15385
+
15386
+
15387
+
15388
+
15389
+
15390
+
15391
+
15392
+
15393
+
15394
+
15395
+
15396
+
15397
+
15398
+
15399
+
15400
+
15401
+
15402
+ exports.BackendVersionRoomYDoc = BackendVersionRoomYDoc; exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.BrandsEndpoint = BrandsEndpoint; exports.CodeComponentsEndpoint = CodeComponentsEndpoint; exports.CodegenEndpoint = CodegenEndpoint; exports.Collection = Collection2; exports.DTOAnalyzeCodeComponentsInPackage = DTOAnalyzeCodeComponentsInPackage; exports.DTOAnalyzeCodeComponentsInPackageInput = DTOAnalyzeCodeComponentsInPackageInput; exports.DTOAnalyzeCodeComponentsInPackageResponse = DTOAnalyzeCodeComponentsInPackageResponse; exports.DTOAppBootstrapDataQuery = DTOAppBootstrapDataQuery; exports.DTOAppBootstrapDataResponse = DTOAppBootstrapDataResponse; exports.DTOAssetRenderConfiguration = DTOAssetRenderConfiguration; exports.DTOAuthenticatedUser = DTOAuthenticatedUser; exports.DTOAuthenticatedUserProfile = DTOAuthenticatedUserProfile; exports.DTOAuthenticatedUserResponse = DTOAuthenticatedUserResponse; exports.DTOBffFigmaImportRequestBody = DTOBffFigmaImportRequestBody; exports.DTOBffImportRequestBody = DTOBffImportRequestBody; exports.DTOBffUploadImportRequestBody = DTOBffUploadImportRequestBody; exports.DTOBrand = DTOBrand; exports.DTOBrandCreatePayload = DTOBrandCreatePayload; exports.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandUpdatePayload = DTOBrandUpdatePayload; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOCodeComponent = DTOCodeComponent; exports.DTOCodeComponentCreateInput = DTOCodeComponentCreateInput; exports.DTOCodeComponentListResponse = DTOCodeComponentListResponse; exports.DTOCodeComponentParentType = DTOCodeComponentParentType; exports.DTOCodeComponentProperty = DTOCodeComponentProperty; exports.DTOCodeComponentResolvedType = DTOCodeComponentResolvedType; exports.DTOCodeComponentResolvedTypeKind = DTOCodeComponentResolvedTypeKind; exports.DTOCodeComponentResponse = DTOCodeComponentResponse; exports.DTOCodeComponentUpsertResponse = DTOCodeComponentUpsertResponse; exports.DTOCodeComponentsCreateInput = DTOCodeComponentsCreateInput; exports.DTOColorTokenInlineData = DTOColorTokenInlineData; exports.DTOCreateDocumentationGroupInput = DTOCreateDocumentationGroupInput; exports.DTOCreateDocumentationPageInputV2 = DTOCreateDocumentationPageInputV2; exports.DTOCreateDocumentationTabInput = DTOCreateDocumentationTabInput; exports.DTOCreateVersionInput = DTOCreateVersionInput; exports.DTODataSource = DTODataSource; exports.DTODataSourceFigma = DTODataSourceFigma; exports.DTODataSourceFigmaCloud = DTODataSourceFigmaCloud; exports.DTODataSourceFigmaCreatePayload = DTODataSourceFigmaCreatePayload; exports.DTODataSourceFigmaImportPayload = DTODataSourceFigmaImportPayload; exports.DTODataSourceFigmaScope = DTODataSourceFigmaScope; exports.DTODataSourceFigmaVariablesPlugin = DTODataSourceFigmaVariablesPlugin; exports.DTODataSourceResponse = DTODataSourceResponse; exports.DTODataSourceStorybook = DTODataSourceStorybook; exports.DTODataSourceStorybookCreatePayload = DTODataSourceStorybookCreatePayload; exports.DTODataSourceTokenStudio = DTODataSourceTokenStudio; exports.DTODataSourcesListResponse = DTODataSourcesListResponse; exports.DTODataSourcesStorybookResponse = DTODataSourcesStorybookResponse; exports.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODependencyDefinition = DTODependencyDefinition; exports.DTODesignElementsDataDiffResponse = DTODesignElementsDataDiffResponse; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemComponent = DTODesignSystemComponent; exports.DTODesignSystemComponentCreateInput = DTODesignSystemComponentCreateInput; exports.DTODesignSystemComponentListResponse = DTODesignSystemComponentListResponse; exports.DTODesignSystemComponentResponse = DTODesignSystemComponentResponse; exports.DTODesignSystemContactsResponse = DTODesignSystemContactsResponse; exports.DTODesignSystemCreateInput = DTODesignSystemCreateInput; exports.DTODesignSystemInvitation = DTODesignSystemInvitation; exports.DTODesignSystemMember = DTODesignSystemMember; exports.DTODesignSystemMemberListResponse = DTODesignSystemMemberListResponse; exports.DTODesignSystemMembersUpdatePayload = DTODesignSystemMembersUpdatePayload; exports.DTODesignSystemMembersUpdateResponse = DTODesignSystemMembersUpdateResponse; exports.DTODesignSystemResponse = DTODesignSystemResponse; exports.DTODesignSystemRole = DTODesignSystemRole; exports.DTODesignSystemUpdateAccessModeInput = DTODesignSystemUpdateAccessModeInput; exports.DTODesignSystemUpdateInput = DTODesignSystemUpdateInput; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionRoom = DTODesignSystemVersionRoom; exports.DTODesignSystemVersionRoomResponse = DTODesignSystemVersionRoomResponse; exports.DTODesignSystemVersionStats = DTODesignSystemVersionStats; exports.DTODesignSystemVersionStatsQuery = DTODesignSystemVersionStatsQuery; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODesignSystemsListResponse = DTODesignSystemsListResponse; exports.DTODesignToken = DTODesignToken; exports.DTODesignTokenCreatePayload = DTODesignTokenCreatePayload; exports.DTODesignTokenGroup = DTODesignTokenGroup; exports.DTODesignTokenGroupCreatePayload = DTODesignTokenGroupCreatePayload; exports.DTODesignTokenGroupListResponse = DTODesignTokenGroupListResponse; exports.DTODesignTokenGroupResponse = DTODesignTokenGroupResponse; exports.DTODesignTokenListResponse = DTODesignTokenListResponse; exports.DTODesignTokenResponse = DTODesignTokenResponse; exports.DTODiffCountBase = DTODiffCountBase; exports.DTODocumentationAnalyticsDiffPayload = DTODocumentationAnalyticsDiffPayload; exports.DTODocumentationAnalyticsRequest = DTODocumentationAnalyticsRequest; exports.DTODocumentationAnalyticsTimeFrame = DTODocumentationAnalyticsTimeFrame; exports.DTODocumentationAnalyticsTimeFrameComparison = DTODocumentationAnalyticsTimeFrameComparison; exports.DTODocumentationDraftChangeType = DTODocumentationDraftChangeType; exports.DTODocumentationDraftState = DTODocumentationDraftState; exports.DTODocumentationDraftStateCreated = DTODocumentationDraftStateCreated; exports.DTODocumentationDraftStateDeleted = DTODocumentationDraftStateDeleted; exports.DTODocumentationDraftStateUpdated = DTODocumentationDraftStateUpdated; exports.DTODocumentationGroupApprovalState = DTODocumentationGroupApprovalState; exports.DTODocumentationGroupCreateActionInputV2 = DTODocumentationGroupCreateActionInputV2; exports.DTODocumentationGroupCreateActionOutputV2 = DTODocumentationGroupCreateActionOutputV2; exports.DTODocumentationGroupDeleteActionInputV2 = DTODocumentationGroupDeleteActionInputV2; exports.DTODocumentationGroupDeleteActionOutputV2 = DTODocumentationGroupDeleteActionOutputV2; exports.DTODocumentationGroupDuplicateActionInputV2 = DTODocumentationGroupDuplicateActionInputV2; exports.DTODocumentationGroupDuplicateActionOutputV2 = DTODocumentationGroupDuplicateActionOutputV2; exports.DTODocumentationGroupMoveActionInputV2 = DTODocumentationGroupMoveActionInputV2; exports.DTODocumentationGroupMoveActionOutputV2 = DTODocumentationGroupMoveActionOutputV2; exports.DTODocumentationGroupRestoreActionInput = DTODocumentationGroupRestoreActionInput; exports.DTODocumentationGroupRestoreActionOutput = DTODocumentationGroupRestoreActionOutput; exports.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupUpdateActionInputV2 = DTODocumentationGroupUpdateActionInputV2; exports.DTODocumentationGroupUpdateActionOutputV2 = DTODocumentationGroupUpdateActionOutputV2; exports.DTODocumentationGroupV1 = DTODocumentationGroupV1; exports.DTODocumentationGroupV2 = DTODocumentationGroupV2; exports.DTODocumentationHierarchyV2 = DTODocumentationHierarchyV2; exports.DTODocumentationItemConfigurationV1 = DTODocumentationItemConfigurationV1; exports.DTODocumentationItemConfigurationV2 = DTODocumentationItemConfigurationV2; exports.DTODocumentationItemHeaderV2 = DTODocumentationItemHeaderV2; exports.DTODocumentationLinkPreviewRequest = DTODocumentationLinkPreviewRequest; exports.DTODocumentationLinkPreviewResponse = DTODocumentationLinkPreviewResponse; exports.DTODocumentationPageAnalyticsDifference = DTODocumentationPageAnalyticsDifference; exports.DTODocumentationPageAnalyticsResponse = DTODocumentationPageAnalyticsResponse; exports.DTODocumentationPageAnchor = DTODocumentationPageAnchor; exports.DTODocumentationPageApprovalState = DTODocumentationPageApprovalState; exports.DTODocumentationPageApprovalStateChangeActionInput = DTODocumentationPageApprovalStateChangeActionInput; exports.DTODocumentationPageApprovalStateChangeActionOutput = DTODocumentationPageApprovalStateChangeActionOutput; exports.DTODocumentationPageApprovalStateChangeInput = DTODocumentationPageApprovalStateChangeInput; exports.DTODocumentationPageContent = DTODocumentationPageContent; exports.DTODocumentationPageContentGetResponse = DTODocumentationPageContentGetResponse; exports.DTODocumentationPageCreateActionInputV2 = DTODocumentationPageCreateActionInputV2; exports.DTODocumentationPageCreateActionOutputV2 = DTODocumentationPageCreateActionOutputV2; exports.DTODocumentationPageDeleteActionInputV2 = DTODocumentationPageDeleteActionInputV2; exports.DTODocumentationPageDeleteActionOutputV2 = DTODocumentationPageDeleteActionOutputV2; exports.DTODocumentationPageDependencies = DTODocumentationPageDependencies; exports.DTODocumentationPageDependenciesGetResponse = DTODocumentationPageDependenciesGetResponse; exports.DTODocumentationPageDuplicateActionInputV2 = DTODocumentationPageDuplicateActionInputV2; exports.DTODocumentationPageDuplicateActionOutputV2 = DTODocumentationPageDuplicateActionOutputV2; exports.DTODocumentationPageIntervalDifferenceResponse = DTODocumentationPageIntervalDifferenceResponse; exports.DTODocumentationPageMoveActionInputV2 = DTODocumentationPageMoveActionInputV2; exports.DTODocumentationPageMoveActionOutputV2 = DTODocumentationPageMoveActionOutputV2; exports.DTODocumentationPageRestoreActionInput = DTODocumentationPageRestoreActionInput; exports.DTODocumentationPageRestoreActionOutput = DTODocumentationPageRestoreActionOutput; exports.DTODocumentationPageRoom = DTODocumentationPageRoom; exports.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageRoomResponse = DTODocumentationPageRoomResponse; exports.DTODocumentationPageSnapshot = DTODocumentationPageSnapshot; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageUpdateDocumentActionInputV2 = DTODocumentationPageUpdateDocumentActionInputV2; exports.DTODocumentationPageUpdateDocumentActionOutputV2 = DTODocumentationPageUpdateDocumentActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationPublishMetadata = DTODocumentationPublishMetadata; exports.DTODocumentationPublishTypeQueryParams = DTODocumentationPublishTypeQueryParams; exports.DTODocumentationSettings = DTODocumentationSettings; exports.DTODocumentationStructure = DTODocumentationStructure; exports.DTODocumentationStructureGroupItem = DTODocumentationStructureGroupItem; exports.DTODocumentationStructureItem = DTODocumentationStructureItem; exports.DTODocumentationStructurePageItem = DTODocumentationStructurePageItem; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; exports.DTODownloadAssetsRequest = DTODownloadAssetsRequest; exports.DTODownloadAssetsResponse = DTODownloadAssetsResponse; exports.DTODuplicateDocumentationGroupInput = DTODuplicateDocumentationGroupInput; exports.DTODuplicateDocumentationPageInputV2 = DTODuplicateDocumentationPageInputV2; exports.DTOElementActionInput = DTOElementActionInput; exports.DTOElementActionOutput = DTOElementActionOutput; exports.DTOElementPropertyDefinition = DTOElementPropertyDefinition; exports.DTOElementPropertyDefinitionCreatePayload = DTOElementPropertyDefinitionCreatePayload; exports.DTOElementPropertyDefinitionListResponse = DTOElementPropertyDefinitionListResponse; exports.DTOElementPropertyDefinitionOption = DTOElementPropertyDefinitionOption; exports.DTOElementPropertyDefinitionResponse = DTOElementPropertyDefinitionResponse; exports.DTOElementPropertyDefinitionUpdatePayload = DTOElementPropertyDefinitionUpdatePayload; exports.DTOElementPropertyValue = DTOElementPropertyValue; exports.DTOElementPropertyValueListResponse = DTOElementPropertyValueListResponse; exports.DTOElementPropertyValueResponse = DTOElementPropertyValueResponse; exports.DTOElementPropertyValueUpsertPaylod = DTOElementPropertyValueUpsertPaylod; exports.DTOElementPropertyValuesEditActionInput = DTOElementPropertyValuesEditActionInput; exports.DTOElementPropertyValuesEditActionOutput = DTOElementPropertyValuesEditActionOutput; 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.DTOElementsGetOutputV2 = DTOElementsGetOutputV2; exports.DTOElementsGetQuerySchema = DTOElementsGetQuerySchema; exports.DTOElementsGetTypeFilter = DTOElementsGetTypeFilter; exports.DTOEvent = DTOEvent; exports.DTOEventDataSourcesImported = DTOEventDataSourcesImported; exports.DTOEventFigmaNodesRendered = DTOEventFigmaNodesRendered; exports.DTOExportJob = DTOExportJob; exports.DTOExportJobCreateInput = DTOExportJobCreateInput; exports.DTOExportJobCreatedBy = DTOExportJobCreatedBy; exports.DTOExportJobDesignSystemPreview = DTOExportJobDesignSystemPreview; exports.DTOExportJobDesignSystemVersionPreview = DTOExportJobDesignSystemVersionPreview; exports.DTOExportJobDestinations = DTOExportJobDestinations; exports.DTOExportJobResponse = DTOExportJobResponse; exports.DTOExportJobResponseLegacy = DTOExportJobResponseLegacy; exports.DTOExportJobResult = DTOExportJobResult; exports.DTOExportJobsListFilter = DTOExportJobsListFilter; exports.DTOExporter = DTOExporter; exports.DTOExporterCreateInput = DTOExporterCreateInput; exports.DTOExporterDeprecationInput = DTOExporterDeprecationInput; exports.DTOExporterGitProviderEnum = DTOExporterGitProviderEnum; exports.DTOExporterListQuery = DTOExporterListQuery; exports.DTOExporterListResponse = DTOExporterListResponse; exports.DTOExporterMembership = DTOExporterMembership; exports.DTOExporterMembershipRole = DTOExporterMembershipRole; exports.DTOExporterPropertyDefinition = DTOExporterPropertyDefinition; exports.DTOExporterPropertyDefinitionArray = DTOExporterPropertyDefinitionArray; exports.DTOExporterPropertyDefinitionBoolean = DTOExporterPropertyDefinitionBoolean; exports.DTOExporterPropertyDefinitionCode = DTOExporterPropertyDefinitionCode; exports.DTOExporterPropertyDefinitionEnum = DTOExporterPropertyDefinitionEnum; exports.DTOExporterPropertyDefinitionEnumOption = DTOExporterPropertyDefinitionEnumOption; exports.DTOExporterPropertyDefinitionNumber = DTOExporterPropertyDefinitionNumber; exports.DTOExporterPropertyDefinitionObject = DTOExporterPropertyDefinitionObject; exports.DTOExporterPropertyDefinitionString = DTOExporterPropertyDefinitionString; exports.DTOExporterPropertyDefinitionsResponse = DTOExporterPropertyDefinitionsResponse; exports.DTOExporterPropertyType = DTOExporterPropertyType; exports.DTOExporterPropertyValue = DTOExporterPropertyValue; exports.DTOExporterPropertyValueMap = DTOExporterPropertyValueMap; exports.DTOExporterResponse = DTOExporterResponse; exports.DTOExporterSource = DTOExporterSource; exports.DTOExporterType = DTOExporterType; exports.DTOExporterUpdateInput = DTOExporterUpdateInput; exports.DTOFigmaComponent = DTOFigmaComponent; exports.DTOFigmaComponentGroup = DTOFigmaComponentGroup; exports.DTOFigmaComponentGroupListResponse = DTOFigmaComponentGroupListResponse; exports.DTOFigmaComponentListResponse = DTOFigmaComponentListResponse; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeDataV2 = DTOFigmaNodeDataV2; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderActionInput = DTOFigmaNodeRenderActionInput; exports.DTOFigmaNodeRenderActionOutput = DTOFigmaNodeRenderActionOutput; exports.DTOFigmaNodeRenderAsyncActionInput = DTOFigmaNodeRenderAsyncActionInput; exports.DTOFigmaNodeRenderAsyncActionOutput = DTOFigmaNodeRenderAsyncActionOutput; exports.DTOFigmaNodeRenderFormat = DTOFigmaNodeRenderFormat; exports.DTOFigmaNodeRenderIdInput = DTOFigmaNodeRenderIdInput; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOFigmaNodeRenderUrlInput = DTOFigmaNodeRenderUrlInput; exports.DTOFigmaNodeRerenderInput = DTOFigmaNodeRerenderInput; exports.DTOFigmaNodeStructure = DTOFigmaNodeStructure; exports.DTOFigmaNodeStructureDetail = DTOFigmaNodeStructureDetail; exports.DTOFigmaNodeStructureDetailResponse = DTOFigmaNodeStructureDetailResponse; exports.DTOFigmaNodeStructureListResponse = DTOFigmaNodeStructureListResponse; exports.DTOFigmaNodeV2 = DTOFigmaNodeV2; exports.DTOFrameNodeStructure = DTOFrameNodeStructure; exports.DTOFrameNodeStructureListResponse = DTOFrameNodeStructureListResponse; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOGitBranch = DTOGitBranch; exports.DTOGitOrganization = DTOGitOrganization; exports.DTOGitProject = DTOGitProject; exports.DTOGitRepository = DTOGitRepository; exports.DTOImportJob = DTOImportJob; exports.DTOImportJobResponse = DTOImportJobResponse; 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.DTONpmRegistryAccessTokenResponse = DTONpmRegistryAccessTokenResponse; exports.DTONpmRegistryConfig = DTONpmRegistryConfig; exports.DTONpmRegistryConfigConstants = DTONpmRegistryConfigConstants; exports.DTOObjectMeta = DTOObjectMeta; exports.DTOPageBlockColorV2 = DTOPageBlockColorV2; exports.DTOPageBlockDefinition = DTOPageBlockDefinition; exports.DTOPageBlockDefinitionBehavior = DTOPageBlockDefinitionBehavior; exports.DTOPageBlockDefinitionItem = DTOPageBlockDefinitionItem; exports.DTOPageBlockDefinitionLayout = DTOPageBlockDefinitionLayout; exports.DTOPageBlockDefinitionProperty = DTOPageBlockDefinitionProperty; exports.DTOPageBlockDefinitionVariant = DTOPageBlockDefinitionVariant; exports.DTOPageBlockItemV2 = DTOPageBlockItemV2; exports.DTOPageRedirect = DTOPageRedirect; exports.DTOPageRedirectCreateBody = DTOPageRedirectCreateBody; exports.DTOPageRedirectDeleteResponse = DTOPageRedirectDeleteResponse; exports.DTOPageRedirectListResponse = DTOPageRedirectListResponse; exports.DTOPageRedirectResponse = DTOPageRedirectResponse; exports.DTOPageRedirectUpdateBody = DTOPageRedirectUpdateBody; exports.DTOPagination = DTOPagination; exports.DTOPipeline = DTOPipeline; exports.DTOPipelineCreateBody = DTOPipelineCreateBody; exports.DTOPipelineListQuery = DTOPipelineListQuery; exports.DTOPipelineListResponse = DTOPipelineListResponse; exports.DTOPipelineResponse = DTOPipelineResponse; exports.DTOPipelineTriggerBody = DTOPipelineTriggerBody; exports.DTOPipelineUpdateBody = DTOPipelineUpdateBody; exports.DTOPublishDocumentationChanges = DTOPublishDocumentationChanges; exports.DTOPublishDocumentationRequest = DTOPublishDocumentationRequest; exports.DTOPublishDocumentationResponse = DTOPublishDocumentationResponse; exports.DTOPublishedDocAnalyticsComparisonData = DTOPublishedDocAnalyticsComparisonData; exports.DTOPublishedDocPageAnalyticsComparisonData = DTOPublishedDocPageAnalyticsComparisonData; exports.DTOPublishedDocPageVisitData = DTOPublishedDocPageVisitData; exports.DTOPublishedDocVisitData = DTOPublishedDocVisitData; exports.DTOPublishedDocVisitHeatMapWeek = DTOPublishedDocVisitHeatMapWeek; exports.DTORegistry = DTORegistry; exports.DTORenderedAssetFile = DTORenderedAssetFile; exports.DTORestoreDocumentationGroupInput = DTORestoreDocumentationGroupInput; exports.DTORestoreDocumentationPageInput = DTORestoreDocumentationPageInput; exports.DTOStorybookAccessTokenPayload = DTOStorybookAccessTokenPayload; exports.DTOStorybookAccessTokenResponse = DTOStorybookAccessTokenResponse; exports.DTOStorybookEntry = DTOStorybookEntry; exports.DTOStorybookEntryListResponse = DTOStorybookEntryListResponse; exports.DTOStorybookEntryOrigin = DTOStorybookEntryOrigin; exports.DTOStorybookEntryReplaceAction = DTOStorybookEntryReplaceAction; exports.DTOStorybookEntryResponse = DTOStorybookEntryResponse; exports.DTOStorybookImportPayload = DTOStorybookImportPayload; exports.DTOStorybookSourceUpdatePayload = DTOStorybookSourceUpdatePayload; exports.DTOStorybookUploadStatus = DTOStorybookUploadStatus; exports.DTOStorybookUploadUrlRequest = DTOStorybookUploadUrlRequest; exports.DTOStorybookUploadUrlResponse = DTOStorybookUploadUrlResponse; exports.DTOTheme = DTOTheme; exports.DTOThemeCreatePayload = DTOThemeCreatePayload; exports.DTOThemeListResponse = DTOThemeListResponse; exports.DTOThemeOverride = DTOThemeOverride; exports.DTOThemeOverrideCreatePayload = DTOThemeOverrideCreatePayload; exports.DTOThemeResponse = DTOThemeResponse; exports.DTOTokenCollection = DTOTokenCollection; exports.DTOTokenCollectionsListReponse = DTOTokenCollectionsListReponse; exports.DTOTransferOwnershipPayload = DTOTransferOwnershipPayload; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageDocumentInputV2 = DTOUpdateDocumentationPageDocumentInputV2; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateRegistryInput = DTOUpdateRegistryInput; exports.DTOUpdateRegistryOutput = DTOUpdateRegistryOutput; exports.DTOUpdateUserNotificationSettingsPayload = DTOUpdateUserNotificationSettingsPayload; exports.DTOUpdateVersionInput = DTOUpdateVersionInput; exports.DTOUser = DTOUser; exports.DTOUserDesignSystemsResponse = DTOUserDesignSystemsResponse; exports.DTOUserGetResponse = DTOUserGetResponse; exports.DTOUserNotificationSettingsResponse = DTOUserNotificationSettingsResponse; exports.DTOUserOnboarding = DTOUserOnboarding; exports.DTOUserOnboardingDepartment = DTOUserOnboardingDepartment; exports.DTOUserOnboardingJobLevel = DTOUserOnboardingJobLevel; exports.DTOUserProfile = DTOUserProfile; exports.DTOUserProfileUpdate = DTOUserProfileUpdate; exports.DTOUserProfileUpdatePayload = DTOUserProfileUpdatePayload; exports.DTOUserProfileUpdateResponse = DTOUserProfileUpdateResponse; exports.DTOUserSource = DTOUserSource; exports.DTOUserTheme = DTOUserTheme; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceCreateInput = DTOWorkspaceCreateInput; exports.DTOWorkspaceIntegrationGetGitObjectsInput = DTOWorkspaceIntegrationGetGitObjectsInput; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceInvitationInput = DTOWorkspaceInvitationInput; exports.DTOWorkspaceInvitationUpdateResponse = DTOWorkspaceInvitationUpdateResponse; exports.DTOWorkspaceInvitationsListInput = DTOWorkspaceInvitationsListInput; exports.DTOWorkspaceInvitationsResponse = DTOWorkspaceInvitationsResponse; exports.DTOWorkspaceInviteUpdate = DTOWorkspaceInviteUpdate; exports.DTOWorkspaceMember = DTOWorkspaceMember; exports.DTOWorkspaceMembersListResponse = DTOWorkspaceMembersListResponse; exports.DTOWorkspaceProfile = DTOWorkspaceProfile; exports.DTOWorkspaceResponse = DTOWorkspaceResponse; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DTOWorkspaceUntypedData = DTOWorkspaceUntypedData; exports.DTOWorkspaceUntypedDataCreatePayload = DTOWorkspaceUntypedDataCreatePayload; exports.DTOWorkspaceUntypedDataListResponse = DTOWorkspaceUntypedDataListResponse; exports.DTOWorkspaceUntypedDataResponse = DTOWorkspaceUntypedDataResponse; exports.DTOWorkspaceUntypedDataUpdatePayload = DTOWorkspaceUntypedDataUpdatePayload; exports.DesignSystemAnalyticsEndpoint = DesignSystemAnalyticsEndpoint; exports.DesignSystemBffEndpoint = DesignSystemBffEndpoint; exports.DesignSystemComponentEndpoint = DesignSystemComponentEndpoint; exports.DesignSystemContactsEndpoint = DesignSystemContactsEndpoint; exports.DesignSystemMembersEndpoint = DesignSystemMembersEndpoint; exports.DesignSystemPageRedirectsEndpoint = DesignSystemPageRedirectsEndpoint; exports.DesignSystemSourcesEndpoint = DesignSystemSourcesEndpoint; exports.DesignSystemVersionsEndpoint = DesignSystemVersionsEndpoint; exports.DesignSystemsEndpoint = DesignSystemsEndpoint; exports.DimensionsVariableScopeType = DimensionsVariableScopeType; exports.DocsStructureRepository = DocsStructureRepository; exports.DocumentationEndpoint = DocumentationEndpoint; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.ElementPropertyDefinitionsEndpoint = ElementPropertyDefinitionsEndpoint; exports.ElementPropertyValuesEndpoint = ElementPropertyValuesEndpoint; exports.ElementsActionEndpoint = ElementsActionEndpoint; exports.ElementsEndpoint = ElementsEndpoint; exports.ExporterJobsEndpoint = ExporterJobsEndpoint; exports.ExportersEndpoint = ExportersEndpoint; exports.FigmaComponentGroupsEndpoint = FigmaComponentGroupsEndpoint; exports.FigmaComponentsEndpoint = FigmaComponentsEndpoint; exports.FigmaFrameStructuresEndpoint = FigmaFrameStructuresEndpoint; exports.FigmaNodeStructuresEndpoint = FigmaNodeStructuresEndpoint; exports.FigmaUtils = FigmaUtils; exports.FormattedCollections = FormattedCollections; exports.FrontendVersionRoomYDoc = FrontendVersionRoomYDoc; exports.GitDestinationOptions = GitDestinationOptions; exports.ImportJobsEndpoint = ImportJobsEndpoint; exports.ListTreeBuilder = ListTreeBuilder; exports.LiveblocksEndpoint = LiveblocksEndpoint; exports.LocalDocsElementActionExecutor = LocalDocsElementActionExecutor; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.OverridesEndpoint = OverridesEndpoint; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.ParsedFigmaFileURLError = ParsedFigmaFileURLError; exports.PipelinesEndpoint = PipelinesEndpoint; exports.RGB = RGB; exports.RGBA = RGBA; exports.RequestExecutor = RequestExecutor; exports.RequestExecutorError = RequestExecutorError; exports.ResolvedVariableType = ResolvedVariableType; exports.StorybookEntriesEndpoint = StorybookEntriesEndpoint; exports.StorybookHostingEndpoint = StorybookHostingEndpoint; exports.StringVariableScopeType = StringVariableScopeType; exports.SupernovaApiClient = SupernovaApiClient; exports.ThemesEndpoint = ThemesEndpoint; exports.TokenCollectionsEndpoint = TokenCollectionsEndpoint; exports.TokenGroupsEndpoint = TokenGroupsEndpoint; exports.TokensEndpoint = TokensEndpoint; exports.UsersEndpoint = UsersEndpoint; exports.Variable = Variable; exports.VariableAlias = VariableAlias; exports.VariableMode = VariableMode; exports.VariableValue = VariableValue; exports.VariablesMapping = VariablesMapping; exports.VersionRoomBaseYDoc = VersionRoomBaseYDoc; exports.VersionSQSPayload = VersionSQSPayload; exports.VersionStatsEndpoint = VersionStatsEndpoint; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.WorkspaceIntegrationsEndpoint = WorkspaceIntegrationsEndpoint; exports.WorkspaceInvitationsEndpoint = WorkspaceInvitationsEndpoint; exports.WorkspaceMembersEndpoint = WorkspaceMembersEndpoint; exports.WorkspaceNpmRegistryEndpoint = WorkspaceNpmRegistryEndpoint; exports.WorkspacesEndpoint = WorkspacesEndpoint; exports.applyActionsLocally = applyActionsLocally; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.computeDocsHierarchy = computeDocsHierarchy; exports.documentationAnalyticsToComparisonDto = documentationAnalyticsToComparisonDto; exports.documentationAnalyticsToGlobalDto = documentationAnalyticsToGlobalDto; exports.documentationAnalyticsToHeatMapDto = documentationAnalyticsToHeatMapDto; exports.documentationAnalyticsToPageComparisonDto = documentationAnalyticsToPageComparisonDto; exports.documentationAnalyticsToPageDto = documentationAnalyticsToPageDto; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPageToDTOV2 = documentationPageToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.exhaustiveInvalidUriPaths = exhaustiveInvalidUriPaths; exports.generateHash = generateHash; exports.generatePageContentHash = generatePageContentHash; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.gitBranchToDto = gitBranchToDto; exports.gitOrganizationToDto = gitOrganizationToDto; exports.gitProjectToDto = gitProjectToDto; exports.gitRepositoryToDto = gitRepositoryToDto; exports.innerEditorProsemirrorSchema = innerEditorProsemirrorSchema; exports.integrationCredentialToDto = integrationCredentialToDto; exports.integrationToDto = integrationToDto; exports.isValidRedirectPath = isValidRedirectPath; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.mainEditorProsemirrorSchema = mainEditorProsemirrorSchema; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYDoc = pageToYDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pipelineToDto = pipelineToDto; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorDocToRichTextPropertyValue = prosemirrorDocToRichTextPropertyValue; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.richTextPropertyValueToProsemirror = richTextPropertyValueToProsemirror; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.serializeQuery = serializeQuery; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy;
15187
15403
  //# sourceMappingURL=index.js.map