@supernova-studio/client 0.59.8 → 0.59.10

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.d.mts CHANGED
@@ -9892,6 +9892,107 @@ declare const DTODesignSystemMembersUpdatePayload: z.ZodObject<{
9892
9892
  }>;
9893
9893
  type DTODesignSystemMembersUpdatePayload = z.infer<typeof DTODesignSystemMembersUpdatePayload>;
9894
9894
 
9895
+ declare const DTOPageRedirectCreateBody: z.ZodObject<{
9896
+ pagePersistentId: z.ZodString;
9897
+ path: z.ZodString;
9898
+ }, "strip", z.ZodTypeAny, {
9899
+ path: string;
9900
+ pagePersistentId: string;
9901
+ }, {
9902
+ path: string;
9903
+ pagePersistentId: string;
9904
+ }>;
9905
+ type DTOPageRedirectCreateBody = z.infer<typeof DTOPageRedirectCreateBody>;
9906
+ declare const DTOPageRedirectUpdateBody: z.ZodObject<{
9907
+ pagePersistentId: z.ZodOptional<z.ZodString>;
9908
+ path: z.ZodOptional<z.ZodString>;
9909
+ }, "strip", z.ZodTypeAny, {
9910
+ path?: string | undefined;
9911
+ pagePersistentId?: string | undefined;
9912
+ }, {
9913
+ path?: string | undefined;
9914
+ pagePersistentId?: string | undefined;
9915
+ }>;
9916
+ type DTOPageRedirectUpdateBody = z.infer<typeof DTOPageRedirectUpdateBody>;
9917
+ declare const DTOPageRedirect: z.ZodObject<{
9918
+ id: z.ZodString;
9919
+ pagePersistentId: z.ZodString;
9920
+ path: z.ZodString;
9921
+ }, "strip", z.ZodTypeAny, {
9922
+ path: string;
9923
+ id: string;
9924
+ pagePersistentId: string;
9925
+ }, {
9926
+ path: string;
9927
+ id: string;
9928
+ pagePersistentId: string;
9929
+ }>;
9930
+ type DTOPageRedirect = z.infer<typeof DTOPageRedirect>;
9931
+ declare const DTOPageRedirectListResponse: z.ZodObject<{
9932
+ redirects: z.ZodArray<z.ZodObject<{
9933
+ id: z.ZodString;
9934
+ pagePersistentId: z.ZodString;
9935
+ path: z.ZodString;
9936
+ }, "strip", z.ZodTypeAny, {
9937
+ path: string;
9938
+ id: string;
9939
+ pagePersistentId: string;
9940
+ }, {
9941
+ path: string;
9942
+ id: string;
9943
+ pagePersistentId: string;
9944
+ }>, "many">;
9945
+ }, "strip", z.ZodTypeAny, {
9946
+ redirects: {
9947
+ path: string;
9948
+ id: string;
9949
+ pagePersistentId: string;
9950
+ }[];
9951
+ }, {
9952
+ redirects: {
9953
+ path: string;
9954
+ id: string;
9955
+ pagePersistentId: string;
9956
+ }[];
9957
+ }>;
9958
+ type DTOPageRedirectListResponse = z.infer<typeof DTOPageRedirectListResponse>;
9959
+ declare const DTOPageRedirectResponse: z.ZodObject<{
9960
+ redirect: z.ZodObject<{
9961
+ id: z.ZodString;
9962
+ pagePersistentId: z.ZodString;
9963
+ path: z.ZodString;
9964
+ }, "strip", z.ZodTypeAny, {
9965
+ path: string;
9966
+ id: string;
9967
+ pagePersistentId: string;
9968
+ }, {
9969
+ path: string;
9970
+ id: string;
9971
+ pagePersistentId: string;
9972
+ }>;
9973
+ }, "strip", z.ZodTypeAny, {
9974
+ redirect: {
9975
+ path: string;
9976
+ id: string;
9977
+ pagePersistentId: string;
9978
+ };
9979
+ }, {
9980
+ redirect: {
9981
+ path: string;
9982
+ id: string;
9983
+ pagePersistentId: string;
9984
+ };
9985
+ }>;
9986
+ type DTOPageRedirectResponse = z.infer<typeof DTOPageRedirectResponse>;
9987
+ declare const DTOPageRedirectDeleteResponse: z.ZodObject<{
9988
+ success: z.ZodBoolean;
9989
+ }, "strip", z.ZodTypeAny, {
9990
+ success: boolean;
9991
+ }, {
9992
+ success: boolean;
9993
+ }>;
9994
+ type DTOPageRedirectDeleteResponse = z.infer<typeof DTOPageRedirectDeleteResponse>;
9995
+
9895
9996
  declare const DTODesignSystemRole: z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>;
9896
9997
  type DTODesignSystemRole = z.infer<typeof DTODesignSystemRole>;
9897
9998
 
@@ -88870,18 +88971,17 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
88870
88971
  destination?: "Documentation" | "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | undefined;
88871
88972
  }>;
88872
88973
  type DTOPipelineCreateBody = z.infer<typeof DTOPipelineCreateBody>;
88873
- declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
88874
- name: z.ZodString;
88875
- exporterId: z.ZodString;
88876
- designSystemId: z.ZodString;
88877
- isEnabled: z.ZodBoolean;
88878
- eventType: z.ZodEnum<["OnVersionReleased", "OnHeadChanged", "OnSourceUpdated", "None"]>;
88974
+ declare const DTOPipelineUpdateBody: z.ZodObject<{
88975
+ exporterId: z.ZodOptional<z.ZodString>;
88976
+ name: z.ZodOptional<z.ZodString>;
88977
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
88978
+ eventType: z.ZodOptional<z.ZodEnum<["OnVersionReleased", "OnHeadChanged", "OnSourceUpdated", "None"]>>;
88879
88979
  brandPersistentId: z.ZodOptional<z.ZodString>;
88880
88980
  themePersistentId: z.ZodOptional<z.ZodString>;
88881
88981
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
88882
88982
  exporterConfigurationProperties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
88883
88983
  destination: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["Github", "Gitlab", "Bitbucket", "Azure"]>, z.ZodEnum<["WebhookUrl", "S3", "Documentation"]>]>>;
88884
- gitQuery: z.ZodObject<{
88984
+ gitQuery: z.ZodOptional<z.ZodObject<{
88885
88985
  organization: z.ZodOptional<z.ZodString>;
88886
88986
  project: z.ZodOptional<z.ZodString>;
88887
88987
  repository: z.ZodOptional<z.ZodString>;
@@ -88899,8 +88999,8 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
88899
88999
  repository?: string | undefined;
88900
89000
  user?: string | undefined;
88901
89001
  branch?: string | undefined;
88902
- }>;
88903
- destinations: z.ZodObject<{
89002
+ }>>;
89003
+ destinations: z.ZodOptional<z.ZodObject<{
88904
89004
  s3: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>>;
88905
89005
  azure: z.ZodOptional<z.ZodNullable<z.ZodObject<{
88906
89006
  credentialId: z.ZodOptional<z.ZodString>;
@@ -89193,24 +89293,25 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
89193
89293
  } | null | undefined;
89194
89294
  } | null | undefined;
89195
89295
  webhookUrl?: string | null | undefined;
89196
- }>;
89197
- }, {
89198
- id: z.ZodString;
89199
- }>, "strip", z.ZodTypeAny, {
89200
- id: string;
89201
- name: string;
89202
- designSystemId: string;
89203
- exporterId: string;
89204
- isEnabled: boolean;
89205
- eventType: "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "None";
89206
- gitQuery: {
89296
+ }>>;
89297
+ }, "strip", z.ZodTypeAny, {
89298
+ brandPersistentId?: string | undefined;
89299
+ name?: string | undefined;
89300
+ exporterId?: string | undefined;
89301
+ isEnabled?: boolean | undefined;
89302
+ eventType?: "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "None" | undefined;
89303
+ themePersistentId?: string | undefined;
89304
+ themePersistentIds?: string[] | undefined;
89305
+ exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
89306
+ destination?: "Documentation" | "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | undefined;
89307
+ gitQuery?: {
89207
89308
  organization?: string | undefined;
89208
89309
  project?: string | undefined;
89209
89310
  repository?: string | undefined;
89210
89311
  user?: string | undefined;
89211
89312
  branch?: string | undefined;
89212
- };
89213
- destinations: {
89313
+ } | undefined;
89314
+ destinations?: {
89214
89315
  s3?: {} | null | undefined;
89215
89316
  azure?: {
89216
89317
  branch: string;
@@ -89270,27 +89371,25 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
89270
89371
  } | undefined;
89271
89372
  } | null | undefined;
89272
89373
  webhookUrl?: string | null | undefined;
89273
- };
89374
+ } | undefined;
89375
+ }, {
89274
89376
  brandPersistentId?: string | undefined;
89377
+ name?: string | undefined;
89378
+ exporterId?: string | undefined;
89379
+ isEnabled?: boolean | undefined;
89380
+ eventType?: "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "None" | undefined;
89275
89381
  themePersistentId?: string | undefined;
89276
89382
  themePersistentIds?: string[] | undefined;
89277
89383
  exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
89278
89384
  destination?: "Documentation" | "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | undefined;
89279
- }, {
89280
- id: string;
89281
- name: string;
89282
- designSystemId: string;
89283
- exporterId: string;
89284
- isEnabled: boolean;
89285
- eventType: "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "None";
89286
- gitQuery: {
89385
+ gitQuery?: {
89287
89386
  organization?: string | undefined;
89288
89387
  project?: string | undefined;
89289
89388
  repository?: string | undefined;
89290
89389
  user?: string | undefined;
89291
89390
  branch?: string | undefined;
89292
- };
89293
- destinations: {
89391
+ } | undefined;
89392
+ destinations?: {
89294
89393
  s3?: {} | null | undefined;
89295
89394
  azure?: {
89296
89395
  branch: string;
@@ -89350,12 +89449,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
89350
89449
  } | null | undefined;
89351
89450
  } | null | undefined;
89352
89451
  webhookUrl?: string | null | undefined;
89353
- };
89354
- brandPersistentId?: string | undefined;
89355
- themePersistentId?: string | undefined;
89356
- themePersistentIds?: string[] | undefined;
89357
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
89358
- destination?: "Documentation" | "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | undefined;
89452
+ } | undefined;
89359
89453
  }>;
89360
89454
  type DTOPipelineUpdateBody = z.infer<typeof DTOPipelineUpdateBody>;
89361
89455
  declare const DTOPipelineTriggerBody: z.ZodObject<{
@@ -90512,6 +90606,207 @@ declare class PipelinesEndpoint {
90512
90606
  } | undefined;
90513
90607
  };
90514
90608
  }>;
90609
+ update(designSystemId: string, pipelineId: string, payload: DTOPipelineUpdateBody): Promise<{
90610
+ pipeline: {
90611
+ id: string;
90612
+ name: string;
90613
+ workspaceId: string;
90614
+ designSystemId: string;
90615
+ exporterId: string;
90616
+ isEnabled: boolean;
90617
+ eventType: "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "None";
90618
+ latestJobs: {
90619
+ status: "InProgress" | "Failed" | "Success" | "Timeout";
90620
+ id: string;
90621
+ createdAt: Date;
90622
+ designSystem: {
90623
+ id: string;
90624
+ meta: {
90625
+ name: string;
90626
+ description?: string | undefined;
90627
+ };
90628
+ };
90629
+ exporterId: string;
90630
+ destinations: {
90631
+ s3?: {} | undefined;
90632
+ azure?: {
90633
+ branch: string;
90634
+ organizationId: string;
90635
+ projectId: string;
90636
+ repositoryId: string;
90637
+ url?: string | undefined;
90638
+ userId?: number | undefined;
90639
+ credentialId?: string | undefined;
90640
+ relativePath?: string | undefined;
90641
+ purgeDirectory?: boolean | undefined;
90642
+ commitAuthorName?: string | undefined;
90643
+ commitAuthorEmail?: string | undefined;
90644
+ connectionId?: string | undefined;
90645
+ } | undefined;
90646
+ bitbucket?: {
90647
+ branch: string;
90648
+ workspaceSlug: string;
90649
+ projectKey: string;
90650
+ repoSlug: string;
90651
+ userId?: number | undefined;
90652
+ credentialId?: string | undefined;
90653
+ relativePath?: string | undefined;
90654
+ purgeDirectory?: boolean | undefined;
90655
+ commitAuthorName?: string | undefined;
90656
+ commitAuthorEmail?: string | undefined;
90657
+ connectionId?: string | undefined;
90658
+ } | undefined;
90659
+ github?: {
90660
+ url: string;
90661
+ branch: string;
90662
+ userId?: number | undefined;
90663
+ credentialId?: string | undefined;
90664
+ relativePath?: string | undefined;
90665
+ purgeDirectory?: boolean | undefined;
90666
+ commitAuthorName?: string | undefined;
90667
+ commitAuthorEmail?: string | undefined;
90668
+ connectionId?: string | undefined;
90669
+ } | undefined;
90670
+ gitlab?: {
90671
+ branch: string;
90672
+ projectId: string;
90673
+ url?: string | undefined;
90674
+ userId?: number | undefined;
90675
+ credentialId?: string | undefined;
90676
+ relativePath?: string | undefined;
90677
+ purgeDirectory?: boolean | undefined;
90678
+ commitAuthorName?: string | undefined;
90679
+ commitAuthorEmail?: string | undefined;
90680
+ connectionId?: string | undefined;
90681
+ } | undefined;
90682
+ documentation?: {
90683
+ environment: "Live" | "Preview";
90684
+ changes?: {
90685
+ pagePersistentIds: string[];
90686
+ groupPersistentIds: string[];
90687
+ } | undefined;
90688
+ } | undefined;
90689
+ webhookUrl?: string | undefined;
90690
+ };
90691
+ designSystemVersion: {
90692
+ id: string;
90693
+ meta: {
90694
+ name: string;
90695
+ description?: string | undefined;
90696
+ };
90697
+ version: string;
90698
+ isReadonly: boolean;
90699
+ };
90700
+ brandPersistentId?: string | undefined;
90701
+ themePersistentId?: string | undefined;
90702
+ themePersistentIds?: string[] | undefined;
90703
+ exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
90704
+ finishedAt?: Date | undefined;
90705
+ index?: number | undefined;
90706
+ estimatedExecutionTime?: number | undefined;
90707
+ createdBy?: {
90708
+ userId: string;
90709
+ userName: string;
90710
+ } | undefined;
90711
+ scheduleId?: string | undefined;
90712
+ result?: {
90713
+ s3?: {
90714
+ path: string;
90715
+ files: string[];
90716
+ bucket: string;
90717
+ url?: string | undefined;
90718
+ urlPrefix?: string | undefined;
90719
+ urls?: string[] | undefined;
90720
+ } | undefined;
90721
+ azure?: {
90722
+ pullRequestUrl: string;
90723
+ } | undefined;
90724
+ bitbucket?: {
90725
+ pullRequestUrl: string;
90726
+ } | undefined;
90727
+ github?: {
90728
+ pullRequestUrl: string;
90729
+ } | undefined;
90730
+ gitlab?: {
90731
+ pullRequestUrl: string;
90732
+ } | undefined;
90733
+ documentation?: {
90734
+ url: string;
90735
+ } | undefined;
90736
+ error?: string | undefined;
90737
+ logs?: {
90738
+ message: string;
90739
+ type: "error" | "info" | "user" | "success" | "warning";
90740
+ time: Date;
90741
+ id?: string | undefined;
90742
+ }[] | undefined;
90743
+ } | undefined;
90744
+ }[];
90745
+ brandPersistentId?: string | undefined;
90746
+ themePersistentId?: string | undefined;
90747
+ themePersistentIds?: string[] | undefined;
90748
+ exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
90749
+ webhookUrl?: string | undefined;
90750
+ destinationSnDocs?: {
90751
+ environment: "Live" | "Preview";
90752
+ changes?: {
90753
+ pagePersistentIds: string[];
90754
+ groupPersistentIds: string[];
90755
+ } | undefined;
90756
+ } | undefined;
90757
+ destinationS3?: {} | undefined;
90758
+ destinationGithub?: {
90759
+ url: string;
90760
+ branch: string;
90761
+ userId?: number | undefined;
90762
+ credentialId?: string | undefined;
90763
+ relativePath?: string | undefined;
90764
+ purgeDirectory?: boolean | undefined;
90765
+ commitAuthorName?: string | undefined;
90766
+ commitAuthorEmail?: string | undefined;
90767
+ connectionId?: string | undefined;
90768
+ } | undefined;
90769
+ destinationAzure?: {
90770
+ branch: string;
90771
+ organizationId: string;
90772
+ projectId: string;
90773
+ repositoryId: string;
90774
+ url?: string | undefined;
90775
+ userId?: number | undefined;
90776
+ credentialId?: string | undefined;
90777
+ relativePath?: string | undefined;
90778
+ purgeDirectory?: boolean | undefined;
90779
+ commitAuthorName?: string | undefined;
90780
+ commitAuthorEmail?: string | undefined;
90781
+ connectionId?: string | undefined;
90782
+ } | undefined;
90783
+ destinationGitlab?: {
90784
+ branch: string;
90785
+ projectId: string;
90786
+ url?: string | undefined;
90787
+ userId?: number | undefined;
90788
+ credentialId?: string | undefined;
90789
+ relativePath?: string | undefined;
90790
+ purgeDirectory?: boolean | undefined;
90791
+ commitAuthorName?: string | undefined;
90792
+ commitAuthorEmail?: string | undefined;
90793
+ connectionId?: string | undefined;
90794
+ } | undefined;
90795
+ destinationBitbucket?: {
90796
+ branch: string;
90797
+ workspaceSlug: string;
90798
+ projectKey: string;
90799
+ repoSlug: string;
90800
+ userId?: number | undefined;
90801
+ credentialId?: string | undefined;
90802
+ relativePath?: string | undefined;
90803
+ purgeDirectory?: boolean | undefined;
90804
+ commitAuthorName?: string | undefined;
90805
+ commitAuthorEmail?: string | undefined;
90806
+ connectionId?: string | undefined;
90807
+ } | undefined;
90808
+ };
90809
+ }>;
90515
90810
  trigger(workspaceId: string, pipelineId: string, payload: DTOPipelineTriggerBody): Promise<{
90516
90811
  job: {
90517
90812
  status: "InProgress" | "Failed" | "Success" | "Timeout";
@@ -98564,4 +98859,4 @@ declare class FrontendVersionRoomYDoc {
98564
98859
 
98565
98860
  declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
98566
98861
 
98567
- export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionValueMap, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
98862
+ export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionValueMap, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };