@supernova-studio/client 1.6.2 → 1.6.4

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,
@@ -5623,6 +5650,31 @@ function integrationCredentialToDto(credential) {
5623
5650
  };
5624
5651
  }
5625
5652
 
5653
+ // src/api/dto/access-tokens/access-token.ts
5654
+
5655
+ var DTOAccessToken = _zod.z.object({
5656
+ id: _zod.z.string(),
5657
+ createdAt: _zod.z.coerce.date(),
5658
+ name: _zod.z.string(),
5659
+ scope: _zod.z.string().optional()
5660
+ });
5661
+ var DTOAccessTokenFull = DTOAccessToken.extend({
5662
+ token: _zod.z.string()
5663
+ });
5664
+ var DTOAccessTokenListResponse = _zod.z.object({
5665
+ tokens: DTOAccessToken.array()
5666
+ });
5667
+ var DTOAccessTokenResponse = _zod.z.object({
5668
+ token: DTOAccessToken
5669
+ });
5670
+ var DTOAccessTokenFullResponse = _zod.z.object({
5671
+ token: DTOAccessTokenFull
5672
+ });
5673
+ var DTOAccessTokenCreatePayload = _zod.z.object({
5674
+ name: _zod.z.string(),
5675
+ scope: _zod.z.string().optional()
5676
+ });
5677
+
5626
5678
  // src/api/dto/aux/color.ts
5627
5679
 
5628
5680
  var DTOColorTokenInlineData = _zod.z.object({
@@ -5687,12 +5739,23 @@ var DTOCodeComponentCreateInput = _zod.z.object({
5687
5739
  componentPath: _zod.z.string(),
5688
5740
  description: _zod.z.string(),
5689
5741
  properties: _zod.z.record(_zod.z.string(), DTOCodeComponentProperty),
5690
- tags: _zod.z.record(_zod.z.string(), _zod.z.string()).optional()
5742
+ tags: _zod.z.record(_zod.z.string(), _zod.z.string()).nullable()
5691
5743
  });
5692
5744
  var DTOCodeComponentsCreateInput = _zod.z.object({
5693
5745
  codeComponents: DTOCodeComponentCreateInput.array()
5694
5746
  });
5695
5747
  var DTOCodeComponentUpsertResponse = CodeComponentUpsertResponse;
5748
+ var DTOAnalyzeCodeComponentsInPackage = AnalyzeCodeComponentsInPackage;
5749
+ var DTODependencyDefinition = DependencyDefinition;
5750
+ var DTORegistry = Registry;
5751
+ var DTOAnalyzeCodeComponentsInPackageResponse = _zod.z.object({
5752
+ ok: _zod.z.literal(true)
5753
+ });
5754
+ var DTOAnalyzeCodeComponentsInPackageInput = AnalyzeCodeComponentsInPackage.omit({
5755
+ designSystemId: true,
5756
+ versionId: true,
5757
+ userAccessToken: true
5758
+ });
5696
5759
 
5697
5760
  // src/api/dto/design-systems/component.ts
5698
5761
 
@@ -5880,10 +5943,13 @@ var DTODataSourceStorybook = _zod.z.object({
5880
5943
  indexUrl: _zod.z.string(),
5881
5944
  userUrl: _zod.z.string(),
5882
5945
  lastImportedAt: _zod.z.coerce.date().optional(),
5946
+ lastImportedResult: SourceImportStorybookSummary.optional(),
5883
5947
  lastImportedSuccessfully: _zod.z.coerce.date().optional(),
5884
5948
  isFailed: _zod.z.boolean(),
5885
5949
  storiesCount: _zod.z.number(),
5886
- docsCount: _zod.z.number()
5950
+ docsCount: _zod.z.number(),
5951
+ description: _zod.z.string().optional(),
5952
+ isUsingVpn: _zod.z.boolean().optional()
5887
5953
  })
5888
5954
  });
5889
5955
  var DTODataSourcesStorybookResponse = _zod.z.object({
@@ -5917,15 +5983,23 @@ var DTODataSourceFigmaImportPayload = _zod.z.object({
5917
5983
  });
5918
5984
  var DTODataSourceStorybookCreatePayload = _zod.z.object({
5919
5985
  brandPersistentId: _zod.z.string(),
5986
+ fileName: _zod.z.string().optional(),
5920
5987
  userUrl: _zod.z.string(),
5921
5988
  indexUrl: _zod.z.string(),
5922
5989
  payload: _zod.z.unknown(),
5923
- type: _zod.z.literal(DataSourceRemoteType.Enum.Storybook)
5990
+ type: _zod.z.literal(DataSourceRemoteType.Enum.Storybook),
5991
+ description: _zod.z.string().optional(),
5992
+ isUsingVpn: _zod.z.boolean().optional()
5924
5993
  });
5925
5994
  var DTOStorybookImportPayload = _zod.z.object({
5926
5995
  sourceId: _zod.z.string(),
5927
5996
  payload: _zod.z.unknown()
5928
5997
  });
5998
+ var DTOStorybookSourceUpdatePayload = _zod.z.object({
5999
+ description: _zod.z.string().nullish().optional(),
6000
+ isUsingVpn: _zod.z.boolean().optional(),
6001
+ fileName: _zod.z.string().optional()
6002
+ });
5929
6003
 
5930
6004
  // src/api/dto/design-systems/design-system.ts
5931
6005
 
@@ -6178,6 +6252,25 @@ var DTODesignSystemVersionStatsQuery = _zod.z.object({
6178
6252
 
6179
6253
  // src/api/dto/design-systems/storybook.ts
6180
6254
 
6255
+ var DTOStorybookUploadUrlRequest = _zod.z.object({
6256
+ name: _zod.z.string()
6257
+ });
6258
+ var DTOStorybookUploadUrlResponse = _zod.z.object({
6259
+ signedUrl: _zod.z.string(),
6260
+ storybookUploadId: _zod.z.string()
6261
+ });
6262
+ var DTOStorybookAccessTokenResponse = _zod.z.object({
6263
+ accessToken: _zod.z.string()
6264
+ });
6265
+ var DTOStorybookAccessTokenPayload = _zod.z.object({
6266
+ designSystemId: _zod.z.string(),
6267
+ storybookUploadId: _zod.z.string()
6268
+ });
6269
+ var DTOStorybookUploadStatus = _zod.z.object({
6270
+ status: _zod.z.enum(["Failed", "InProgress", "Completed", "Unknown"]),
6271
+ timestamp: _zod.z.number().optional(),
6272
+ reason: _zod.z.string().optional()
6273
+ });
6181
6274
  var DTOStorybookEntryOrigin = _zod.z.object({
6182
6275
  id: _zod.z.string(),
6183
6276
  type: _zod.z.enum(["story", "docs"]),
@@ -6202,6 +6295,191 @@ var DTOStorybookEntryReplaceAction = _zod.z.object({
6202
6295
  var DTOStorybookEntryListResponse = _zod.z.object({ entries: _zod.z.array(DTOStorybookEntry) });
6203
6296
  var DTOStorybookEntryResponse = _zod.z.object({ entry: DTOStorybookEntry });
6204
6297
 
6298
+ // src/api/dto/design-systems/user-design-systems.ts
6299
+
6300
+
6301
+ // src/api/dto/workspaces/git.ts
6302
+
6303
+ var DTOGitOrganization = _zod.z.object({
6304
+ id: _zod.z.string(),
6305
+ name: _zod.z.string(),
6306
+ url: _zod.z.string(),
6307
+ slug: _zod.z.string()
6308
+ });
6309
+ var DTOGitProject = _zod.z.object({
6310
+ id: _zod.z.string(),
6311
+ name: _zod.z.string(),
6312
+ url: _zod.z.string(),
6313
+ slug: _zod.z.string()
6314
+ });
6315
+ var DTOGitRepository = _zod.z.object({
6316
+ id: _zod.z.string(),
6317
+ name: _zod.z.string(),
6318
+ url: _zod.z.string(),
6319
+ slug: _zod.z.string(),
6320
+ defaultBranch: _zod.z.string().optional()
6321
+ });
6322
+ var DTOGitBranch = _zod.z.object({
6323
+ name: _zod.z.string(),
6324
+ lastCommitId: _zod.z.string()
6325
+ });
6326
+
6327
+ // src/api/dto/workspaces/integrations.ts
6328
+
6329
+ var DTOIntegrationCredentials = IntegrationCredentials.omit({
6330
+ accessToken: true,
6331
+ refreshToken: true
6332
+ });
6333
+ var DTOIntegration = _zod.z.object({
6334
+ id: _zod.z.string(),
6335
+ workspaceId: _zod.z.string(),
6336
+ type: ExtendedIntegrationType,
6337
+ createdAt: _zod.z.coerce.date(),
6338
+ integrationCredentials: _zod.z.array(DTOIntegrationCredentials).optional(),
6339
+ integrationDesignSystems: _zod.z.array(IntegrationDesignSystem).optional()
6340
+ });
6341
+ var DTOIntegrationOAuthGetResponse = _zod.z.object({
6342
+ url: _zod.z.string()
6343
+ });
6344
+ var DTOIntegrationPostResponse = _zod.z.object({
6345
+ integration: DTOIntegration
6346
+ });
6347
+ var DTOIntegrationsGetListResponse = _zod.z.object({
6348
+ integrations: DTOIntegration.array()
6349
+ });
6350
+
6351
+ // src/api/dto/workspaces/invitations.ts
6352
+
6353
+ var DTOWorkspaceInvitationInput = _zod.z.object({
6354
+ email: _zod.z.string().email(),
6355
+ role: WorkspaceRoleSchema
6356
+ });
6357
+ var DTOWorkspaceInvitationsListInput = _zod.z.object({
6358
+ invites: DTOWorkspaceInvitationInput.array().max(100),
6359
+ designSystemId: _zod.z.string().optional()
6360
+ });
6361
+ var DTOWorkspaceInvitationsResponse = _zod.z.object({
6362
+ invitations: WorkspaceInvitation.array()
6363
+ });
6364
+ var DTOWorkspaceInviteUpdate = _zod.z.object({
6365
+ role: WorkspaceRoleSchema
6366
+ });
6367
+ var DTOWorkspaceInvitationUpdateResponse = _zod.z.object({
6368
+ invitation: WorkspaceInvitation
6369
+ });
6370
+
6371
+ // src/api/dto/workspaces/membership.ts
6372
+
6373
+
6374
+ // src/api/dto/workspaces/workspace.ts
6375
+
6376
+
6377
+ // src/api/dto/workspaces/npm-registry.ts
6378
+
6379
+ var DTONpmRegistryConfigConstants = {
6380
+ passwordPlaceholder: "redacted"
6381
+ };
6382
+ var DTONpmRegistryConfig = _zod.z.object({
6383
+ // Registry basic configuration
6384
+ registryType: NpmRegistryType,
6385
+ registryUrl: _zod.z.string(),
6386
+ customRegistryUrl: _zod.z.string().optional(),
6387
+ // URL of Supernova NPM packages proxy
6388
+ proxyUrl: _zod.z.string(),
6389
+ // Auth configuration
6390
+ authType: NpmRegistryAuthType,
6391
+ accessToken: _zod.z.literal(DTONpmRegistryConfigConstants.passwordPlaceholder).optional(),
6392
+ username: _zod.z.string().optional(),
6393
+ password: _zod.z.literal(DTONpmRegistryConfigConstants.passwordPlaceholder).optional(),
6394
+ // NPM package scopes for whih the proxy should be enabled
6395
+ enabledScopes: _zod.z.array(_zod.z.string()),
6396
+ // True if client should bypass Supernova proxy and connect directly to the registry
6397
+ // (e.g. when the NPM registry is behind a VPN or firewall which prevents Supernova from accessing it)
6398
+ bypassProxy: _zod.z.boolean()
6399
+ });
6400
+ var DTONpmRegistryAccessTokenResponse = _zod.z.object({
6401
+ version: _zod.z.number(),
6402
+ accessToken: _zod.z.string().optional(),
6403
+ registryUrl: _zod.z.string()
6404
+ });
6405
+ var DTOUpdateRegistryInput = _zod.z.object({
6406
+ registryType: nullishToOptional(NpmRegistryType),
6407
+ authType: nullishToOptional(NpmRegistryAuthType),
6408
+ enabledScopes: nullishToOptional(_zod.z.array(_zod.z.string())),
6409
+ customRegistryUrl: nullishToOptional(_zod.z.string()),
6410
+ bypassProxy: nullishToOptional(_zod.z.boolean()),
6411
+ npmProxyVersion: nullishToOptional(_zod.z.number()),
6412
+ authHeaderName: nullishToOptional(_zod.z.string()),
6413
+ authHeaderValue: nullishToOptional(_zod.z.string()),
6414
+ accessToken: nullishToOptional(_zod.z.string()),
6415
+ username: nullishToOptional(_zod.z.string()),
6416
+ password: nullishToOptional(_zod.z.string())
6417
+ });
6418
+ var DTOUpdateRegistryOutput = _zod.z.object({
6419
+ npmRegistrySettings: DTONpmRegistryConfig
6420
+ });
6421
+
6422
+ // src/api/dto/workspaces/workspace.ts
6423
+ var DTOWorkspaceProfile = WorkspaceProfile;
6424
+ var DTOWorkspace = _zod.z.object({
6425
+ id: _zod.z.string(),
6426
+ profile: DTOWorkspaceProfile,
6427
+ subscription: Subscription,
6428
+ npmRegistry: DTONpmRegistryConfig.optional()
6429
+ });
6430
+ var DTOWorkspaceCreateInput = _zod.z.object({
6431
+ name: _zod.z.string()
6432
+ });
6433
+ var DTOWorkspaceResponse = _zod.z.object({
6434
+ workspace: DTOWorkspace
6435
+ });
6436
+
6437
+ // src/api/dto/workspaces/membership.ts
6438
+ var DTOWorkspaceRole = _zod.z.enum(["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]);
6439
+ var DTOUserWorkspaceMembership = _zod.z.object({
6440
+ // Workspace the user is a member of
6441
+ workspace: DTOWorkspace,
6442
+ // Assigned role the user has in the workspace
6443
+ role: DTOWorkspaceRole,
6444
+ // Role that determines actual permissions the user has in the workspace
6445
+ // E.g. this is different from the default role when editors are downgraded to viewers
6446
+ // when a workspace's subscription is downgraded to free tier
6447
+ effectiveRole: DTOWorkspaceRole
6448
+ });
6449
+ var DTOWorkspaceMember = _zod.z.object({
6450
+ user: User,
6451
+ role: WorkspaceRoleSchema,
6452
+ effectiveRole: WorkspaceRoleSchema
6453
+ });
6454
+ var DTOUserWorkspaceMembershipsResponse = _zod.z.object({
6455
+ membership: _zod.z.array(DTOUserWorkspaceMembership)
6456
+ });
6457
+ var DTOWorkspaceMembersListResponse = _zod.z.object({
6458
+ members: _zod.z.array(DTOWorkspaceMember)
6459
+ });
6460
+
6461
+ // src/api/dto/workspaces/untyped-data.ts
6462
+
6463
+ var DTOWorkspaceUntypedData = WorkspaceUntypedData;
6464
+ var DTOWorkspaceUntypedDataListResponse = _zod.z.object({
6465
+ data: DTOWorkspaceUntypedData.array()
6466
+ });
6467
+ var DTOWorkspaceUntypedDataResponse = _zod.z.object({
6468
+ data: DTOWorkspaceUntypedData
6469
+ });
6470
+ var DTOWorkspaceUntypedDataCreatePayload = _zod.z.object({
6471
+ value: _zod.z.unknown()
6472
+ });
6473
+ var DTOWorkspaceUntypedDataUpdatePayload = _zod.z.object({
6474
+ value: _zod.z.unknown()
6475
+ });
6476
+
6477
+ // src/api/dto/design-systems/user-design-systems.ts
6478
+ var DTOUserDesignSystemsResponse = _zod.z.object({
6479
+ designSystems: DTODesignSystem.array(),
6480
+ workspaces: DTOWorkspace.array()
6481
+ });
6482
+
6205
6483
  // src/api/dto/design-systems/version-room.ts
6206
6484
 
6207
6485
  var DTODesignSystemVersionRoom = _zod.z.object({
@@ -6595,161 +6873,6 @@ var DTOElementViewsListResponse = _zod.z.object({
6595
6873
  elementDataViews: _zod.z.array(DTOElementView)
6596
6874
  });
6597
6875
 
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
6876
  // src/api/dto/bff/app-bootstrap-data.ts
6754
6877
  var DTOAppBootstrapDataQuery = _zod.z.object({
6755
6878
  preferredWorkspaceId: _zod.z.string().optional(),
@@ -6877,16 +7000,6 @@ var DTOPublishedDocPageAnalyticsComparisonData = DTOPublishedDocAnalyticsCompari
6877
7000
  pagePersistentId: _zod.z.string()
6878
7001
  });
6879
7002
  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
7003
  globalAnalytics: DTOPublishedDocVisitData.array(),
6891
7004
  pageAnalytics: DTOPublishedDocPageVisitData.array(),
6892
7005
  heatMapData: DTOPublishedDocVisitHeatMapWeek.array(),
@@ -8426,6 +8539,16 @@ var CodeComponentsEndpoint = class {
8426
8539
  }
8427
8540
  );
8428
8541
  }
8542
+ async analyzePackage(dsId, vId, body) {
8543
+ return this.requestExecutor.json(
8544
+ `/design-systems/${dsId}/versions/${vId}/code-components/analyze-package`,
8545
+ DTOAnalyzeCodeComponentsInPackageResponse,
8546
+ {
8547
+ body,
8548
+ method: "POST"
8549
+ }
8550
+ );
8551
+ }
8429
8552
  };
8430
8553
 
8431
8554
  // src/api/endpoints/design-system/versions/documentation.ts
@@ -8984,10 +9107,24 @@ var DesignSystemSourcesEndpoint = class {
8984
9107
  });
8985
9108
  }
8986
9109
  storybookImport(dsId, payload) {
8987
- return this.requestExecutor.json(`/design-systems/${dsId}/versions/head/storybook-import`, DTODataSourcesStorybookResponse, {
8988
- method: "POST",
8989
- body: payload
8990
- });
9110
+ return this.requestExecutor.json(
9111
+ `/design-systems/${dsId}/versions/head/storybook-import`,
9112
+ DTODataSourcesStorybookResponse,
9113
+ {
9114
+ method: "POST",
9115
+ body: payload
9116
+ }
9117
+ );
9118
+ }
9119
+ updateStorybookImport(dsId, versionId, payload) {
9120
+ return this.requestExecutor.json(
9121
+ `/design-systems/${dsId}/versions/${versionId}/storybook-import`,
9122
+ DTODataSourcesStorybookResponse,
9123
+ {
9124
+ method: "POST",
9125
+ body: payload
9126
+ }
9127
+ );
8991
9128
  }
8992
9129
  };
8993
9130
 
@@ -9001,10 +9138,51 @@ var StorybookEntriesEndpoint = class {
9001
9138
  return this.requestExecutor.json(`/design-systems/${dsId}/versions/head/storybook`, DTOStorybookEntryListResponse);
9002
9139
  }
9003
9140
  replace(dsId, entryId) {
9004
- return this.requestExecutor.json(`/design-systems/${dsId}/versions/head/storybook/${entryId}`, DTOStorybookEntryReplaceAction, { method: "PUT" });
9141
+ return this.requestExecutor.json(
9142
+ `/design-systems/${dsId}/versions/head/storybook/${entryId}`,
9143
+ DTOStorybookEntryReplaceAction,
9144
+ { method: "PUT" }
9145
+ );
9005
9146
  }
9006
9147
  delete(dsId, entryId) {
9007
- return this.requestExecutor.json(`/design-systems/${dsId}/versions/head/storybook/${entryId}`, _zod.z.any(), { method: "DELETE" });
9148
+ return this.requestExecutor.json(`/design-systems/${dsId}/versions/head/storybook/${entryId}`, _zod.z.any(), {
9149
+ method: "DELETE"
9150
+ });
9151
+ }
9152
+ };
9153
+
9154
+ // src/api/endpoints/design-system/storybook-hosting.ts
9155
+
9156
+ var StorybookHostingEndpoint = class {
9157
+ constructor(requestExecutor) {
9158
+ this.requestExecutor = requestExecutor;
9159
+ }
9160
+ getSignedUploadUrl(dsId, body) {
9161
+ return this.requestExecutor.json(`/design-systems/${dsId}/storybook/upload`, DTOStorybookUploadUrlResponse, {
9162
+ body,
9163
+ method: "POST"
9164
+ });
9165
+ }
9166
+ delete(dsId, storybookUploadId) {
9167
+ return this.requestExecutor.json(
9168
+ `/design-systems/${dsId}/storybook/${storybookUploadId}`,
9169
+ _zod.z.object({ ok: _zod.z.boolean() }),
9170
+ {
9171
+ method: "DELETE"
9172
+ }
9173
+ );
9174
+ }
9175
+ getUploadStatus(dsId, storybookUploadId) {
9176
+ return this.requestExecutor.json(
9177
+ `/design-systems/${dsId}/storybook/${storybookUploadId}/status`,
9178
+ DTOStorybookUploadStatus
9179
+ );
9180
+ }
9181
+ getAccessToken(dsId, name) {
9182
+ return this.requestExecutor.json(
9183
+ `/design-systems/${dsId}/storybook/alias/${name}/access-token`,
9184
+ DTOStorybookAccessTokenResponse
9185
+ );
9008
9186
  }
9009
9187
  };
9010
9188
 
@@ -9017,6 +9195,7 @@ var DesignSystemsEndpoint = class {
9017
9195
  __publicField(this, "bff");
9018
9196
  __publicField(this, "sources");
9019
9197
  __publicField(this, "storybook");
9198
+ __publicField(this, "storybookHosting");
9020
9199
  __publicField(this, "contacts");
9021
9200
  __publicField(this, "redirects");
9022
9201
  __publicField(this, "figmaNodeStructures");
@@ -9026,6 +9205,7 @@ var DesignSystemsEndpoint = class {
9026
9205
  this.bff = new DesignSystemBffEndpoint(requestExecutor);
9027
9206
  this.sources = new DesignSystemSourcesEndpoint(requestExecutor);
9028
9207
  this.storybook = new StorybookEntriesEndpoint(requestExecutor);
9208
+ this.storybookHosting = new StorybookHostingEndpoint(requestExecutor);
9029
9209
  this.contacts = new DesignSystemContactsEndpoint(requestExecutor);
9030
9210
  this.redirects = new DesignSystemPageRedirectsEndpoint(requestExecutor);
9031
9211
  this.figmaNodeStructures = new FigmaNodeStructuresEndpoint(requestExecutor);
@@ -9037,6 +9217,9 @@ var DesignSystemsEndpoint = class {
9037
9217
  list(wsId) {
9038
9218
  return this.requestExecutor.json(`/workspaces/${wsId}/design-systems`, DTODesignSystemsListResponse);
9039
9219
  }
9220
+ listUserDesignSystems() {
9221
+ return this.requestExecutor.json("/design-systems", DTOUserDesignSystemsResponse);
9222
+ }
9040
9223
  get(dsId) {
9041
9224
  return this.requestExecutor.json(`/design-systems/${dsId}`, DTODesignSystemResponse);
9042
9225
  }
@@ -9125,6 +9308,25 @@ var WorkspaceMembersEndpoint = class {
9125
9308
  }
9126
9309
  };
9127
9310
 
9311
+ // src/api/endpoints/workspaces/npm-register.ts
9312
+ var WorkspaceNpmRegistryEndpoint = class {
9313
+ constructor(requestExecutor) {
9314
+ this.requestExecutor = requestExecutor;
9315
+ }
9316
+ getAccessToken(wsId) {
9317
+ return this.requestExecutor.json(
9318
+ `/workspaces/${wsId}/npm-registry/access-token`,
9319
+ DTONpmRegistryAccessTokenResponse
9320
+ );
9321
+ }
9322
+ update(wsId, body) {
9323
+ return this.requestExecutor.json(`/workspaces/${wsId}/npm-registry`, DTOUpdateRegistryOutput, {
9324
+ method: "PUT",
9325
+ body
9326
+ });
9327
+ }
9328
+ };
9329
+
9128
9330
  // src/api/endpoints/workspaces/workspaces.ts
9129
9331
 
9130
9332
  var WorkspacesEndpoint = class {
@@ -9132,10 +9334,12 @@ var WorkspacesEndpoint = class {
9132
9334
  this.requestExecutor = requestExecutor;
9133
9335
  __publicField(this, "members");
9134
9336
  __publicField(this, "invitations");
9337
+ __publicField(this, "npmRegistry");
9135
9338
  __publicField(this, "integrations");
9136
9339
  this.members = new WorkspaceMembersEndpoint(requestExecutor);
9137
9340
  this.invitations = new WorkspaceInvitationsEndpoint(requestExecutor);
9138
9341
  this.integrations = new WorkspaceIntegrationsEndpoint(requestExecutor);
9342
+ this.npmRegistry = new WorkspaceNpmRegistryEndpoint(requestExecutor);
9139
9343
  }
9140
9344
  create(body) {
9141
9345
  return this.requestExecutor.json("/workspaces", DTOWorkspaceResponse, {
@@ -9147,6 +9351,9 @@ var WorkspacesEndpoint = class {
9147
9351
  }
9148
9352
  });
9149
9353
  }
9354
+ list() {
9355
+ return this.requestExecutor.json(`/workspaces`, DTOUserWorkspaceMembershipsResponse, { method: "GET" });
9356
+ }
9150
9357
  get(workspaceId) {
9151
9358
  return this.requestExecutor.json(`/workspaces/${workspaceId}`, DTOWorkspaceResponse, { method: "GET" });
9152
9359
  }
@@ -9950,32 +10157,6 @@ function itemConfigurationToYjs(yDoc, item) {
9950
10157
  _optionalChain([configuration, 'optionalAccess', _46 => _46.isPrivate]) !== void 0 && configYMap.set("isPrivate", configuration.isPrivate);
9951
10158
  });
9952
10159
  }
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
10160
 
9980
10161
  // src/yjs/docs-editor/model/block.ts
9981
10162
  var PageBlockEditorModel = PageBlockEditorModelV2;
@@ -15228,5 +15409,27 @@ var TransactionQueue = class {
15228
15409
 
15229
15410
 
15230
15411
 
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;
15412
+
15413
+
15414
+
15415
+
15416
+
15417
+
15418
+
15419
+
15420
+
15421
+
15422
+
15423
+
15424
+
15425
+
15426
+
15427
+
15428
+
15429
+
15430
+
15431
+
15432
+
15433
+
15434
+ exports.BackendVersionRoomYDoc = BackendVersionRoomYDoc; exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.BrandsEndpoint = BrandsEndpoint; exports.CodeComponentsEndpoint = CodeComponentsEndpoint; exports.CodegenEndpoint = CodegenEndpoint; exports.Collection = Collection2; exports.DTOAccessToken = DTOAccessToken; exports.DTOAccessTokenCreatePayload = DTOAccessTokenCreatePayload; exports.DTOAccessTokenFull = DTOAccessTokenFull; exports.DTOAccessTokenFullResponse = DTOAccessTokenFullResponse; exports.DTOAccessTokenListResponse = DTOAccessTokenListResponse; exports.DTOAccessTokenResponse = DTOAccessTokenResponse; 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
15435
  //# sourceMappingURL=index.js.map