@supernova-studio/client 1.6.2 → 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(),
@@ -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,
@@ -4622,8 +4650,7 @@ var DocumentationPageRoom = Entity.extend({
4622
4650
  isDirty: _zod.z.boolean()
4623
4651
  });
4624
4652
  var DocumentationPageRoomState = _zod.z.object({
4625
- pageItems: _zod.z.array(PageBlockEditorModelV2.or(PageSectionEditorModelV2)),
4626
- itemConfiguration: DocumentationItemConfigurationV2
4653
+ pageItems: _zod.z.array(PageBlockEditorModelV2.or(PageSectionEditorModelV2))
4627
4654
  });
4628
4655
  var DocumentationPageRoomRoomUpdate = _zod.z.object({
4629
4656
  page: DocumentationPageV2,
@@ -5687,12 +5714,23 @@ var DTOCodeComponentCreateInput = _zod.z.object({
5687
5714
  componentPath: _zod.z.string(),
5688
5715
  description: _zod.z.string(),
5689
5716
  properties: _zod.z.record(_zod.z.string(), DTOCodeComponentProperty),
5690
- tags: _zod.z.record(_zod.z.string(), _zod.z.string()).optional()
5717
+ tags: _zod.z.record(_zod.z.string(), _zod.z.string()).nullable()
5691
5718
  });
5692
5719
  var DTOCodeComponentsCreateInput = _zod.z.object({
5693
5720
  codeComponents: DTOCodeComponentCreateInput.array()
5694
5721
  });
5695
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
+ });
5696
5734
 
5697
5735
  // src/api/dto/design-systems/component.ts
5698
5736
 
@@ -5880,10 +5918,13 @@ var DTODataSourceStorybook = _zod.z.object({
5880
5918
  indexUrl: _zod.z.string(),
5881
5919
  userUrl: _zod.z.string(),
5882
5920
  lastImportedAt: _zod.z.coerce.date().optional(),
5921
+ lastImportedResult: SourceImportStorybookSummary.optional(),
5883
5922
  lastImportedSuccessfully: _zod.z.coerce.date().optional(),
5884
5923
  isFailed: _zod.z.boolean(),
5885
5924
  storiesCount: _zod.z.number(),
5886
- docsCount: _zod.z.number()
5925
+ docsCount: _zod.z.number(),
5926
+ description: _zod.z.string().optional(),
5927
+ isUsingVpn: _zod.z.boolean().optional()
5887
5928
  })
5888
5929
  });
5889
5930
  var DTODataSourcesStorybookResponse = _zod.z.object({
@@ -5917,15 +5958,23 @@ var DTODataSourceFigmaImportPayload = _zod.z.object({
5917
5958
  });
5918
5959
  var DTODataSourceStorybookCreatePayload = _zod.z.object({
5919
5960
  brandPersistentId: _zod.z.string(),
5961
+ fileName: _zod.z.string().optional(),
5920
5962
  userUrl: _zod.z.string(),
5921
5963
  indexUrl: _zod.z.string(),
5922
5964
  payload: _zod.z.unknown(),
5923
- 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()
5924
5968
  });
5925
5969
  var DTOStorybookImportPayload = _zod.z.object({
5926
5970
  sourceId: _zod.z.string(),
5927
5971
  payload: _zod.z.unknown()
5928
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
+ });
5929
5978
 
5930
5979
  // src/api/dto/design-systems/design-system.ts
5931
5980
 
@@ -6178,6 +6227,24 @@ var DTODesignSystemVersionStatsQuery = _zod.z.object({
6178
6227
 
6179
6228
  // src/api/dto/design-systems/storybook.ts
6180
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
+ });
6181
6248
  var DTOStorybookEntryOrigin = _zod.z.object({
6182
6249
  id: _zod.z.string(),
6183
6250
  type: _zod.z.enum(["story", "docs"]),
@@ -6202,6 +6269,191 @@ var DTOStorybookEntryReplaceAction = _zod.z.object({
6202
6269
  var DTOStorybookEntryListResponse = _zod.z.object({ entries: _zod.z.array(DTOStorybookEntry) });
6203
6270
  var DTOStorybookEntryResponse = _zod.z.object({ entry: DTOStorybookEntry });
6204
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
+
6205
6457
  // src/api/dto/design-systems/version-room.ts
6206
6458
 
6207
6459
  var DTODesignSystemVersionRoom = _zod.z.object({
@@ -6595,161 +6847,6 @@ var DTOElementViewsListResponse = _zod.z.object({
6595
6847
  elementDataViews: _zod.z.array(DTOElementView)
6596
6848
  });
6597
6849
 
6598
- // src/api/dto/workspaces/git.ts
6599
-
6600
- var DTOGitOrganization = _zod.z.object({
6601
- id: _zod.z.string(),
6602
- name: _zod.z.string(),
6603
- url: _zod.z.string(),
6604
- slug: _zod.z.string()
6605
- });
6606
- var DTOGitProject = _zod.z.object({
6607
- id: _zod.z.string(),
6608
- name: _zod.z.string(),
6609
- url: _zod.z.string(),
6610
- slug: _zod.z.string()
6611
- });
6612
- var DTOGitRepository = _zod.z.object({
6613
- id: _zod.z.string(),
6614
- name: _zod.z.string(),
6615
- url: _zod.z.string(),
6616
- slug: _zod.z.string(),
6617
- defaultBranch: _zod.z.string().optional()
6618
- });
6619
- var DTOGitBranch = _zod.z.object({
6620
- name: _zod.z.string(),
6621
- lastCommitId: _zod.z.string()
6622
- });
6623
-
6624
- // src/api/dto/workspaces/integrations.ts
6625
-
6626
- var DTOIntegrationCredentials = IntegrationCredentials.omit({
6627
- accessToken: true,
6628
- refreshToken: true
6629
- });
6630
- var DTOIntegration = _zod.z.object({
6631
- id: _zod.z.string(),
6632
- workspaceId: _zod.z.string(),
6633
- type: ExtendedIntegrationType,
6634
- createdAt: _zod.z.coerce.date(),
6635
- integrationCredentials: _zod.z.array(DTOIntegrationCredentials).optional(),
6636
- integrationDesignSystems: _zod.z.array(IntegrationDesignSystem).optional()
6637
- });
6638
- var DTOIntegrationOAuthGetResponse = _zod.z.object({
6639
- url: _zod.z.string()
6640
- });
6641
- var DTOIntegrationPostResponse = _zod.z.object({
6642
- integration: DTOIntegration
6643
- });
6644
- var DTOIntegrationsGetListResponse = _zod.z.object({
6645
- integrations: DTOIntegration.array()
6646
- });
6647
-
6648
- // src/api/dto/workspaces/invitations.ts
6649
-
6650
- var DTOWorkspaceInvitationInput = _zod.z.object({
6651
- email: _zod.z.string().email(),
6652
- role: WorkspaceRoleSchema
6653
- });
6654
- var DTOWorkspaceInvitationsListInput = _zod.z.object({
6655
- invites: DTOWorkspaceInvitationInput.array().max(100),
6656
- designSystemId: _zod.z.string().optional()
6657
- });
6658
- var DTOWorkspaceInvitationsResponse = _zod.z.object({
6659
- invitations: WorkspaceInvitation.array()
6660
- });
6661
- var DTOWorkspaceInviteUpdate = _zod.z.object({
6662
- role: WorkspaceRoleSchema
6663
- });
6664
- var DTOWorkspaceInvitationUpdateResponse = _zod.z.object({
6665
- invitation: WorkspaceInvitation
6666
- });
6667
-
6668
- // src/api/dto/workspaces/membership.ts
6669
-
6670
-
6671
- // src/api/dto/workspaces/workspace.ts
6672
-
6673
-
6674
- // src/api/dto/workspaces/npm-registry.ts
6675
-
6676
- var DTONpmRegistryConfigConstants = {
6677
- passwordPlaceholder: "redacted"
6678
- };
6679
- var DTONpmRegistryConfig = _zod.z.object({
6680
- // Registry basic configuration
6681
- registryType: NpmRegistryType,
6682
- registryUrl: _zod.z.string(),
6683
- customRegistryUrl: _zod.z.string().optional(),
6684
- // URL of Supernova NPM packages proxy
6685
- proxyUrl: _zod.z.string(),
6686
- // Auth configuration
6687
- authType: NpmRegistryAuthType,
6688
- accessToken: _zod.z.literal(DTONpmRegistryConfigConstants.passwordPlaceholder).optional(),
6689
- username: _zod.z.string().optional(),
6690
- password: _zod.z.literal(DTONpmRegistryConfigConstants.passwordPlaceholder).optional(),
6691
- // NPM package scopes for whih the proxy should be enabled
6692
- enabledScopes: _zod.z.array(_zod.z.string()),
6693
- // True if client should bypass Supernova proxy and connect directly to the registry
6694
- // (e.g. when the NPM registry is behind a VPN or firewall which prevents Supernova from accessing it)
6695
- bypassProxy: _zod.z.boolean()
6696
- });
6697
-
6698
- // src/api/dto/workspaces/workspace.ts
6699
- var DTOWorkspaceProfile = WorkspaceProfile;
6700
- var DTOWorkspace = _zod.z.object({
6701
- id: _zod.z.string(),
6702
- profile: DTOWorkspaceProfile,
6703
- subscription: Subscription,
6704
- npmRegistry: DTONpmRegistryConfig.optional()
6705
- });
6706
- var DTOWorkspaceCreateInput = _zod.z.object({
6707
- name: _zod.z.string()
6708
- });
6709
- var DTOWorkspaceResponse = _zod.z.object({
6710
- workspace: DTOWorkspace
6711
- });
6712
-
6713
- // src/api/dto/workspaces/membership.ts
6714
- var DTOWorkspaceRole = _zod.z.enum(["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]);
6715
- var DTOUserWorkspaceMembership = _zod.z.object({
6716
- // Workspace the user is a member of
6717
- workspace: DTOWorkspace,
6718
- // Assigned role the user has in the workspace
6719
- role: DTOWorkspaceRole,
6720
- // Role that determines actual permissions the user has in the workspace
6721
- // E.g. this is different from the default role when editors are downgraded to viewers
6722
- // when a workspace's subscription is downgraded to free tier
6723
- effectiveRole: DTOWorkspaceRole
6724
- });
6725
- var DTOWorkspaceMember = _zod.z.object({
6726
- user: User,
6727
- role: WorkspaceRoleSchema,
6728
- effectiveRole: WorkspaceRoleSchema
6729
- });
6730
- var DTOUserWorkspaceMembershipsResponse = _zod.z.object({
6731
- membership: _zod.z.array(DTOUserWorkspaceMembership)
6732
- });
6733
- var DTOWorkspaceMembersListResponse = _zod.z.object({
6734
- members: _zod.z.array(DTOWorkspaceMember)
6735
- });
6736
-
6737
- // src/api/dto/workspaces/untyped-data.ts
6738
-
6739
- var DTOWorkspaceUntypedData = WorkspaceUntypedData;
6740
- var DTOWorkspaceUntypedDataListResponse = _zod.z.object({
6741
- data: DTOWorkspaceUntypedData.array()
6742
- });
6743
- var DTOWorkspaceUntypedDataResponse = _zod.z.object({
6744
- data: DTOWorkspaceUntypedData
6745
- });
6746
- var DTOWorkspaceUntypedDataCreatePayload = _zod.z.object({
6747
- value: _zod.z.unknown()
6748
- });
6749
- var DTOWorkspaceUntypedDataUpdatePayload = _zod.z.object({
6750
- value: _zod.z.unknown()
6751
- });
6752
-
6753
6850
  // src/api/dto/bff/app-bootstrap-data.ts
6754
6851
  var DTOAppBootstrapDataQuery = _zod.z.object({
6755
6852
  preferredWorkspaceId: _zod.z.string().optional(),
@@ -6877,16 +6974,6 @@ var DTOPublishedDocPageAnalyticsComparisonData = DTOPublishedDocAnalyticsCompari
6877
6974
  pagePersistentId: _zod.z.string()
6878
6975
  });
6879
6976
  var DTODocumentationPageAnalyticsResponse = _zod.z.object({
6880
- // Old
6881
- /**
6882
- * @deprecated
6883
- */
6884
- analytics: _zod.z.array(DTOPublishedDocPageVisitData),
6885
- /**
6886
- * @deprecated
6887
- */
6888
- perPageAnalytics: DTOPublishedDocPageVisitData.array(),
6889
- // New
6890
6977
  globalAnalytics: DTOPublishedDocVisitData.array(),
6891
6978
  pageAnalytics: DTOPublishedDocPageVisitData.array(),
6892
6979
  heatMapData: DTOPublishedDocVisitHeatMapWeek.array(),
@@ -8426,6 +8513,16 @@ var CodeComponentsEndpoint = class {
8426
8513
  }
8427
8514
  );
8428
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
+ }
8429
8526
  };
8430
8527
 
8431
8528
  // src/api/endpoints/design-system/versions/documentation.ts
@@ -8984,10 +9081,24 @@ var DesignSystemSourcesEndpoint = class {
8984
9081
  });
8985
9082
  }
8986
9083
  storybookImport(dsId, payload) {
8987
- return this.requestExecutor.json(`/design-systems/${dsId}/versions/head/storybook-import`, DTODataSourcesStorybookResponse, {
8988
- method: "POST",
8989
- body: payload
8990
- });
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
+ );
8991
9102
  }
8992
9103
  };
8993
9104
 
@@ -9001,10 +9112,51 @@ var StorybookEntriesEndpoint = class {
9001
9112
  return this.requestExecutor.json(`/design-systems/${dsId}/versions/head/storybook`, DTOStorybookEntryListResponse);
9002
9113
  }
9003
9114
  replace(dsId, entryId) {
9004
- 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
+ );
9005
9120
  }
9006
9121
  delete(dsId, entryId) {
9007
- 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
+ );
9008
9160
  }
9009
9161
  };
9010
9162
 
@@ -9017,6 +9169,7 @@ var DesignSystemsEndpoint = class {
9017
9169
  __publicField(this, "bff");
9018
9170
  __publicField(this, "sources");
9019
9171
  __publicField(this, "storybook");
9172
+ __publicField(this, "storybookHosting");
9020
9173
  __publicField(this, "contacts");
9021
9174
  __publicField(this, "redirects");
9022
9175
  __publicField(this, "figmaNodeStructures");
@@ -9026,6 +9179,7 @@ var DesignSystemsEndpoint = class {
9026
9179
  this.bff = new DesignSystemBffEndpoint(requestExecutor);
9027
9180
  this.sources = new DesignSystemSourcesEndpoint(requestExecutor);
9028
9181
  this.storybook = new StorybookEntriesEndpoint(requestExecutor);
9182
+ this.storybookHosting = new StorybookHostingEndpoint(requestExecutor);
9029
9183
  this.contacts = new DesignSystemContactsEndpoint(requestExecutor);
9030
9184
  this.redirects = new DesignSystemPageRedirectsEndpoint(requestExecutor);
9031
9185
  this.figmaNodeStructures = new FigmaNodeStructuresEndpoint(requestExecutor);
@@ -9037,6 +9191,9 @@ var DesignSystemsEndpoint = class {
9037
9191
  list(wsId) {
9038
9192
  return this.requestExecutor.json(`/workspaces/${wsId}/design-systems`, DTODesignSystemsListResponse);
9039
9193
  }
9194
+ listUserDesignSystems() {
9195
+ return this.requestExecutor.json("/design-systems", DTOUserDesignSystemsResponse);
9196
+ }
9040
9197
  get(dsId) {
9041
9198
  return this.requestExecutor.json(`/design-systems/${dsId}`, DTODesignSystemResponse);
9042
9199
  }
@@ -9125,6 +9282,25 @@ var WorkspaceMembersEndpoint = class {
9125
9282
  }
9126
9283
  };
9127
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
+
9128
9304
  // src/api/endpoints/workspaces/workspaces.ts
9129
9305
 
9130
9306
  var WorkspacesEndpoint = class {
@@ -9132,10 +9308,12 @@ var WorkspacesEndpoint = class {
9132
9308
  this.requestExecutor = requestExecutor;
9133
9309
  __publicField(this, "members");
9134
9310
  __publicField(this, "invitations");
9311
+ __publicField(this, "npmRegistry");
9135
9312
  __publicField(this, "integrations");
9136
9313
  this.members = new WorkspaceMembersEndpoint(requestExecutor);
9137
9314
  this.invitations = new WorkspaceInvitationsEndpoint(requestExecutor);
9138
9315
  this.integrations = new WorkspaceIntegrationsEndpoint(requestExecutor);
9316
+ this.npmRegistry = new WorkspaceNpmRegistryEndpoint(requestExecutor);
9139
9317
  }
9140
9318
  create(body) {
9141
9319
  return this.requestExecutor.json("/workspaces", DTOWorkspaceResponse, {
@@ -9147,6 +9325,9 @@ var WorkspacesEndpoint = class {
9147
9325
  }
9148
9326
  });
9149
9327
  }
9328
+ list() {
9329
+ return this.requestExecutor.json(`/workspaces`, DTOUserWorkspaceMembershipsResponse, { method: "GET" });
9330
+ }
9150
9331
  get(workspaceId) {
9151
9332
  return this.requestExecutor.json(`/workspaces/${workspaceId}`, DTOWorkspaceResponse, { method: "GET" });
9152
9333
  }
@@ -9950,32 +10131,6 @@ function itemConfigurationToYjs(yDoc, item) {
9950
10131
  _optionalChain([configuration, 'optionalAccess', _46 => _46.isPrivate]) !== void 0 && configYMap.set("isPrivate", configuration.isPrivate);
9951
10132
  });
9952
10133
  }
9953
- function yjsToItemConfiguration(yDoc) {
9954
- const title = yDoc.getMap("itemTitle").get("title");
9955
- const headerYMap = yDoc.getMap("itemHeader");
9956
- const rawHeader = {
9957
- description: headerYMap.get("description"),
9958
- alignment: headerYMap.get("alignment"),
9959
- foregroundColor: headerYMap.get("foregroundColor"),
9960
- backgroundColor: headerYMap.get("backgroundColor"),
9961
- backgroundImageAsset: headerYMap.get("backgroundImageAsset"),
9962
- backgroundImageScaleType: headerYMap.get("backgroundImageScaleType"),
9963
- showBackgroundOverlay: headerYMap.get("showBackgroundOverlay"),
9964
- showCoverText: headerYMap.get("showCoverText"),
9965
- minHeight: headerYMap.get("minHeight")
9966
- };
9967
- const configYMap = yDoc.getMap("itemConfiguration");
9968
- const rawConfig = {
9969
- showSidebar: configYMap.get("showSidebar"),
9970
- isHidden: _nullishCoalesce(configYMap.get("isHidden"), () => ( false)),
9971
- isPrivate: _nullishCoalesce(configYMap.get("isPrivate"), () => ( false)),
9972
- header: rawHeader
9973
- };
9974
- return {
9975
- title: _zod.z.string().parse(title),
9976
- configuration: DTODocumentationItemConfigurationV2.parse(rawConfig)
9977
- };
9978
- }
9979
10134
 
9980
10135
  // src/yjs/docs-editor/model/block.ts
9981
10136
  var PageBlockEditorModel = PageBlockEditorModelV2;
@@ -15228,5 +15383,21 @@ var TransactionQueue = class {
15228
15383
 
15229
15384
 
15230
15385
 
15231
- 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.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.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.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.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; exports.yjsToItemConfiguration = yjsToItemConfiguration;
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;
15232
15403
  //# sourceMappingURL=index.js.map