@supernova-studio/client 0.54.32 → 0.54.33

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.ts CHANGED
@@ -7745,6 +7745,17 @@ declare const DTODesignSystemMember: z.ZodObject<{
7745
7745
  userId: string;
7746
7746
  }>;
7747
7747
  type DTODesignSystemMember = z.infer<typeof DTODesignSystemMember>;
7748
+ declare const DTODesignSystemInvitation: z.ZodObject<{
7749
+ id: z.ZodString;
7750
+ workspaceInvitationId: z.ZodString;
7751
+ }, "strip", z.ZodTypeAny, {
7752
+ id: string;
7753
+ workspaceInvitationId: string;
7754
+ }, {
7755
+ id: string;
7756
+ workspaceInvitationId: string;
7757
+ }>;
7758
+ type DTODesignSystemInvitation = z.infer<typeof DTODesignSystemInvitation>;
7748
7759
  declare const DTODesignSystemMemberListResponse: z.ZodObject<{
7749
7760
  members: z.ZodArray<z.ZodObject<{
7750
7761
  userId: z.ZodString;
@@ -7753,14 +7764,32 @@ declare const DTODesignSystemMemberListResponse: z.ZodObject<{
7753
7764
  }, {
7754
7765
  userId: string;
7755
7766
  }>, "many">;
7767
+ invitations: z.ZodArray<z.ZodObject<{
7768
+ id: z.ZodString;
7769
+ workspaceInvitationId: z.ZodString;
7770
+ }, "strip", z.ZodTypeAny, {
7771
+ id: string;
7772
+ workspaceInvitationId: string;
7773
+ }, {
7774
+ id: string;
7775
+ workspaceInvitationId: string;
7776
+ }>, "many">;
7756
7777
  }, "strip", z.ZodTypeAny, {
7757
7778
  members: {
7758
7779
  userId: string;
7759
7780
  }[];
7781
+ invitations: {
7782
+ id: string;
7783
+ workspaceInvitationId: string;
7784
+ }[];
7760
7785
  }, {
7761
7786
  members: {
7762
7787
  userId: string;
7763
7788
  }[];
7789
+ invitations: {
7790
+ id: string;
7791
+ workspaceInvitationId: string;
7792
+ }[];
7764
7793
  }>;
7765
7794
  type DTODesignSystemMemberListResponse = z.infer<typeof DTODesignSystemMemberListResponse>;
7766
7795
  declare const DTODesignSystemMembersUpdateResponse: z.ZodObject<{
@@ -7772,14 +7801,58 @@ declare const DTODesignSystemMembersUpdateResponse: z.ZodObject<{
7772
7801
  }>;
7773
7802
  type DTODesignSystemMembersUpdateResponse = z.infer<typeof DTODesignSystemMembersUpdateResponse>;
7774
7803
  declare const DTODesignSystemMembersUpdatePayload: z.ZodObject<{
7775
- inviteUserIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7804
+ usersToInvite: z.ZodOptional<z.ZodArray<z.ZodObject<{
7805
+ userId: z.ZodString;
7806
+ }, "strip", z.ZodTypeAny, {
7807
+ userId: string;
7808
+ }, {
7809
+ userId: string;
7810
+ }>, "many">>;
7811
+ invitesToInvite: z.ZodOptional<z.ZodArray<z.ZodObject<{
7812
+ inviteId: z.ZodString;
7813
+ }, "strip", z.ZodTypeAny, {
7814
+ inviteId: string;
7815
+ }, {
7816
+ inviteId: string;
7817
+ }>, "many">>;
7818
+ emailsToInvite: z.ZodOptional<z.ZodArray<z.ZodObject<{
7819
+ email: z.ZodString;
7820
+ workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
7821
+ }, "strip", z.ZodTypeAny, {
7822
+ email: string;
7823
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
7824
+ }, {
7825
+ email: string;
7826
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
7827
+ }>, "many">>;
7776
7828
  removeUserIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7829
+ deleteInvitationIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7777
7830
  }, "strip", z.ZodTypeAny, {
7778
- inviteUserIds?: string[] | undefined;
7831
+ usersToInvite?: {
7832
+ userId: string;
7833
+ }[] | undefined;
7834
+ invitesToInvite?: {
7835
+ inviteId: string;
7836
+ }[] | undefined;
7837
+ emailsToInvite?: {
7838
+ email: string;
7839
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
7840
+ }[] | undefined;
7779
7841
  removeUserIds?: string[] | undefined;
7842
+ deleteInvitationIds?: string[] | undefined;
7780
7843
  }, {
7781
- inviteUserIds?: string[] | undefined;
7844
+ usersToInvite?: {
7845
+ userId: string;
7846
+ }[] | undefined;
7847
+ invitesToInvite?: {
7848
+ inviteId: string;
7849
+ }[] | undefined;
7850
+ emailsToInvite?: {
7851
+ email: string;
7852
+ workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
7853
+ }[] | undefined;
7782
7854
  removeUserIds?: string[] | undefined;
7855
+ deleteInvitationIds?: string[] | undefined;
7783
7856
  }>;
7784
7857
  type DTODesignSystemMembersUpdatePayload = z.infer<typeof DTODesignSystemMembersUpdatePayload>;
7785
7858
 
@@ -36294,16 +36367,16 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
36294
36367
  }, "strip", z.ZodTypeAny, {
36295
36368
  id: string;
36296
36369
  email?: string | undefined;
36370
+ authType?: "OAuth2" | "PAT" | undefined;
36297
36371
  handle?: string | undefined;
36298
36372
  avatarUrl?: string | undefined;
36299
- authType?: "OAuth2" | "PAT" | undefined;
36300
36373
  customUrl?: string | undefined;
36301
36374
  }, {
36302
36375
  id: string;
36303
36376
  email?: string | undefined;
36377
+ authType?: "OAuth2" | "PAT" | undefined;
36304
36378
  handle?: string | undefined;
36305
36379
  avatarUrl?: string | undefined;
36306
- authType?: "OAuth2" | "PAT" | undefined;
36307
36380
  customUrl?: string | undefined;
36308
36381
  }>>;
36309
36382
  github: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -36316,16 +36389,16 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
36316
36389
  }, "strip", z.ZodTypeAny, {
36317
36390
  id: string;
36318
36391
  email?: string | undefined;
36392
+ authType?: "OAuth2" | "PAT" | undefined;
36319
36393
  handle?: string | undefined;
36320
36394
  avatarUrl?: string | undefined;
36321
- authType?: "OAuth2" | "PAT" | undefined;
36322
36395
  customUrl?: string | undefined;
36323
36396
  }, {
36324
36397
  id: string;
36325
36398
  email?: string | undefined;
36399
+ authType?: "OAuth2" | "PAT" | undefined;
36326
36400
  handle?: string | undefined;
36327
36401
  avatarUrl?: string | undefined;
36328
- authType?: "OAuth2" | "PAT" | undefined;
36329
36402
  customUrl?: string | undefined;
36330
36403
  }>, "many">>;
36331
36404
  azure: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -36338,16 +36411,16 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
36338
36411
  }, "strip", z.ZodTypeAny, {
36339
36412
  id: string;
36340
36413
  email?: string | undefined;
36414
+ authType?: "OAuth2" | "PAT" | undefined;
36341
36415
  handle?: string | undefined;
36342
36416
  avatarUrl?: string | undefined;
36343
- authType?: "OAuth2" | "PAT" | undefined;
36344
36417
  customUrl?: string | undefined;
36345
36418
  }, {
36346
36419
  id: string;
36347
36420
  email?: string | undefined;
36421
+ authType?: "OAuth2" | "PAT" | undefined;
36348
36422
  handle?: string | undefined;
36349
36423
  avatarUrl?: string | undefined;
36350
- authType?: "OAuth2" | "PAT" | undefined;
36351
36424
  customUrl?: string | undefined;
36352
36425
  }>, "many">>;
36353
36426
  gitlab: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -36360,16 +36433,16 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
36360
36433
  }, "strip", z.ZodTypeAny, {
36361
36434
  id: string;
36362
36435
  email?: string | undefined;
36436
+ authType?: "OAuth2" | "PAT" | undefined;
36363
36437
  handle?: string | undefined;
36364
36438
  avatarUrl?: string | undefined;
36365
- authType?: "OAuth2" | "PAT" | undefined;
36366
36439
  customUrl?: string | undefined;
36367
36440
  }, {
36368
36441
  id: string;
36369
36442
  email?: string | undefined;
36443
+ authType?: "OAuth2" | "PAT" | undefined;
36370
36444
  handle?: string | undefined;
36371
36445
  avatarUrl?: string | undefined;
36372
- authType?: "OAuth2" | "PAT" | undefined;
36373
36446
  customUrl?: string | undefined;
36374
36447
  }>, "many">>;
36375
36448
  bitbucket: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -36382,98 +36455,98 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
36382
36455
  }, "strip", z.ZodTypeAny, {
36383
36456
  id: string;
36384
36457
  email?: string | undefined;
36458
+ authType?: "OAuth2" | "PAT" | undefined;
36385
36459
  handle?: string | undefined;
36386
36460
  avatarUrl?: string | undefined;
36387
- authType?: "OAuth2" | "PAT" | undefined;
36388
36461
  customUrl?: string | undefined;
36389
36462
  }, {
36390
36463
  id: string;
36391
36464
  email?: string | undefined;
36465
+ authType?: "OAuth2" | "PAT" | undefined;
36392
36466
  handle?: string | undefined;
36393
36467
  avatarUrl?: string | undefined;
36394
- authType?: "OAuth2" | "PAT" | undefined;
36395
36468
  customUrl?: string | undefined;
36396
36469
  }>, "many">>;
36397
36470
  }, "strip", z.ZodTypeAny, {
36398
36471
  azure?: {
36399
36472
  id: string;
36400
36473
  email?: string | undefined;
36474
+ authType?: "OAuth2" | "PAT" | undefined;
36401
36475
  handle?: string | undefined;
36402
36476
  avatarUrl?: string | undefined;
36403
- authType?: "OAuth2" | "PAT" | undefined;
36404
36477
  customUrl?: string | undefined;
36405
36478
  }[] | undefined;
36406
36479
  github?: {
36407
36480
  id: string;
36408
36481
  email?: string | undefined;
36482
+ authType?: "OAuth2" | "PAT" | undefined;
36409
36483
  handle?: string | undefined;
36410
36484
  avatarUrl?: string | undefined;
36411
- authType?: "OAuth2" | "PAT" | undefined;
36412
36485
  customUrl?: string | undefined;
36413
36486
  }[] | undefined;
36414
36487
  gitlab?: {
36415
36488
  id: string;
36416
36489
  email?: string | undefined;
36490
+ authType?: "OAuth2" | "PAT" | undefined;
36417
36491
  handle?: string | undefined;
36418
36492
  avatarUrl?: string | undefined;
36419
- authType?: "OAuth2" | "PAT" | undefined;
36420
36493
  customUrl?: string | undefined;
36421
36494
  }[] | undefined;
36422
36495
  bitbucket?: {
36423
36496
  id: string;
36424
36497
  email?: string | undefined;
36498
+ authType?: "OAuth2" | "PAT" | undefined;
36425
36499
  handle?: string | undefined;
36426
36500
  avatarUrl?: string | undefined;
36427
- authType?: "OAuth2" | "PAT" | undefined;
36428
36501
  customUrl?: string | undefined;
36429
36502
  }[] | undefined;
36430
36503
  figma?: {
36431
36504
  id: string;
36432
36505
  email?: string | undefined;
36506
+ authType?: "OAuth2" | "PAT" | undefined;
36433
36507
  handle?: string | undefined;
36434
36508
  avatarUrl?: string | undefined;
36435
- authType?: "OAuth2" | "PAT" | undefined;
36436
36509
  customUrl?: string | undefined;
36437
36510
  } | undefined;
36438
36511
  }, {
36439
36512
  azure?: {
36440
36513
  id: string;
36441
36514
  email?: string | undefined;
36515
+ authType?: "OAuth2" | "PAT" | undefined;
36442
36516
  handle?: string | undefined;
36443
36517
  avatarUrl?: string | undefined;
36444
- authType?: "OAuth2" | "PAT" | undefined;
36445
36518
  customUrl?: string | undefined;
36446
36519
  }[] | undefined;
36447
36520
  github?: {
36448
36521
  id: string;
36449
36522
  email?: string | undefined;
36523
+ authType?: "OAuth2" | "PAT" | undefined;
36450
36524
  handle?: string | undefined;
36451
36525
  avatarUrl?: string | undefined;
36452
- authType?: "OAuth2" | "PAT" | undefined;
36453
36526
  customUrl?: string | undefined;
36454
36527
  }[] | undefined;
36455
36528
  gitlab?: {
36456
36529
  id: string;
36457
36530
  email?: string | undefined;
36531
+ authType?: "OAuth2" | "PAT" | undefined;
36458
36532
  handle?: string | undefined;
36459
36533
  avatarUrl?: string | undefined;
36460
- authType?: "OAuth2" | "PAT" | undefined;
36461
36534
  customUrl?: string | undefined;
36462
36535
  }[] | undefined;
36463
36536
  bitbucket?: {
36464
36537
  id: string;
36465
36538
  email?: string | undefined;
36539
+ authType?: "OAuth2" | "PAT" | undefined;
36466
36540
  handle?: string | undefined;
36467
36541
  avatarUrl?: string | undefined;
36468
- authType?: "OAuth2" | "PAT" | undefined;
36469
36542
  customUrl?: string | undefined;
36470
36543
  }[] | undefined;
36471
36544
  figma?: {
36472
36545
  id: string;
36473
36546
  email?: string | undefined;
36547
+ authType?: "OAuth2" | "PAT" | undefined;
36474
36548
  handle?: string | undefined;
36475
36549
  avatarUrl?: string | undefined;
36476
- authType?: "OAuth2" | "PAT" | undefined;
36477
36550
  customUrl?: string | undefined;
36478
36551
  } | undefined;
36479
36552
  }>>;
@@ -36511,41 +36584,41 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
36511
36584
  azure?: {
36512
36585
  id: string;
36513
36586
  email?: string | undefined;
36587
+ authType?: "OAuth2" | "PAT" | undefined;
36514
36588
  handle?: string | undefined;
36515
36589
  avatarUrl?: string | undefined;
36516
- authType?: "OAuth2" | "PAT" | undefined;
36517
36590
  customUrl?: string | undefined;
36518
36591
  }[] | undefined;
36519
36592
  github?: {
36520
36593
  id: string;
36521
36594
  email?: string | undefined;
36595
+ authType?: "OAuth2" | "PAT" | undefined;
36522
36596
  handle?: string | undefined;
36523
36597
  avatarUrl?: string | undefined;
36524
- authType?: "OAuth2" | "PAT" | undefined;
36525
36598
  customUrl?: string | undefined;
36526
36599
  }[] | undefined;
36527
36600
  gitlab?: {
36528
36601
  id: string;
36529
36602
  email?: string | undefined;
36603
+ authType?: "OAuth2" | "PAT" | undefined;
36530
36604
  handle?: string | undefined;
36531
36605
  avatarUrl?: string | undefined;
36532
- authType?: "OAuth2" | "PAT" | undefined;
36533
36606
  customUrl?: string | undefined;
36534
36607
  }[] | undefined;
36535
36608
  bitbucket?: {
36536
36609
  id: string;
36537
36610
  email?: string | undefined;
36611
+ authType?: "OAuth2" | "PAT" | undefined;
36538
36612
  handle?: string | undefined;
36539
36613
  avatarUrl?: string | undefined;
36540
- authType?: "OAuth2" | "PAT" | undefined;
36541
36614
  customUrl?: string | undefined;
36542
36615
  }[] | undefined;
36543
36616
  figma?: {
36544
36617
  id: string;
36545
36618
  email?: string | undefined;
36619
+ authType?: "OAuth2" | "PAT" | undefined;
36546
36620
  handle?: string | undefined;
36547
36621
  avatarUrl?: string | undefined;
36548
- authType?: "OAuth2" | "PAT" | undefined;
36549
36622
  customUrl?: string | undefined;
36550
36623
  } | undefined;
36551
36624
  } | undefined;
@@ -36581,41 +36654,41 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
36581
36654
  azure?: {
36582
36655
  id: string;
36583
36656
  email?: string | undefined;
36657
+ authType?: "OAuth2" | "PAT" | undefined;
36584
36658
  handle?: string | undefined;
36585
36659
  avatarUrl?: string | undefined;
36586
- authType?: "OAuth2" | "PAT" | undefined;
36587
36660
  customUrl?: string | undefined;
36588
36661
  }[] | undefined;
36589
36662
  github?: {
36590
36663
  id: string;
36591
36664
  email?: string | undefined;
36665
+ authType?: "OAuth2" | "PAT" | undefined;
36592
36666
  handle?: string | undefined;
36593
36667
  avatarUrl?: string | undefined;
36594
- authType?: "OAuth2" | "PAT" | undefined;
36595
36668
  customUrl?: string | undefined;
36596
36669
  }[] | undefined;
36597
36670
  gitlab?: {
36598
36671
  id: string;
36599
36672
  email?: string | undefined;
36673
+ authType?: "OAuth2" | "PAT" | undefined;
36600
36674
  handle?: string | undefined;
36601
36675
  avatarUrl?: string | undefined;
36602
- authType?: "OAuth2" | "PAT" | undefined;
36603
36676
  customUrl?: string | undefined;
36604
36677
  }[] | undefined;
36605
36678
  bitbucket?: {
36606
36679
  id: string;
36607
36680
  email?: string | undefined;
36681
+ authType?: "OAuth2" | "PAT" | undefined;
36608
36682
  handle?: string | undefined;
36609
36683
  avatarUrl?: string | undefined;
36610
- authType?: "OAuth2" | "PAT" | undefined;
36611
36684
  customUrl?: string | undefined;
36612
36685
  }[] | undefined;
36613
36686
  figma?: {
36614
36687
  id: string;
36615
36688
  email?: string | undefined;
36689
+ authType?: "OAuth2" | "PAT" | undefined;
36616
36690
  handle?: string | undefined;
36617
36691
  avatarUrl?: string | undefined;
36618
- authType?: "OAuth2" | "PAT" | undefined;
36619
36692
  customUrl?: string | undefined;
36620
36693
  } | undefined;
36621
36694
  } | undefined;
@@ -36653,41 +36726,41 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
36653
36726
  azure?: {
36654
36727
  id: string;
36655
36728
  email?: string | undefined;
36729
+ authType?: "OAuth2" | "PAT" | undefined;
36656
36730
  handle?: string | undefined;
36657
36731
  avatarUrl?: string | undefined;
36658
- authType?: "OAuth2" | "PAT" | undefined;
36659
36732
  customUrl?: string | undefined;
36660
36733
  }[] | undefined;
36661
36734
  github?: {
36662
36735
  id: string;
36663
36736
  email?: string | undefined;
36737
+ authType?: "OAuth2" | "PAT" | undefined;
36664
36738
  handle?: string | undefined;
36665
36739
  avatarUrl?: string | undefined;
36666
- authType?: "OAuth2" | "PAT" | undefined;
36667
36740
  customUrl?: string | undefined;
36668
36741
  }[] | undefined;
36669
36742
  gitlab?: {
36670
36743
  id: string;
36671
36744
  email?: string | undefined;
36745
+ authType?: "OAuth2" | "PAT" | undefined;
36672
36746
  handle?: string | undefined;
36673
36747
  avatarUrl?: string | undefined;
36674
- authType?: "OAuth2" | "PAT" | undefined;
36675
36748
  customUrl?: string | undefined;
36676
36749
  }[] | undefined;
36677
36750
  bitbucket?: {
36678
36751
  id: string;
36679
36752
  email?: string | undefined;
36753
+ authType?: "OAuth2" | "PAT" | undefined;
36680
36754
  handle?: string | undefined;
36681
36755
  avatarUrl?: string | undefined;
36682
- authType?: "OAuth2" | "PAT" | undefined;
36683
36756
  customUrl?: string | undefined;
36684
36757
  }[] | undefined;
36685
36758
  figma?: {
36686
36759
  id: string;
36687
36760
  email?: string | undefined;
36761
+ authType?: "OAuth2" | "PAT" | undefined;
36688
36762
  handle?: string | undefined;
36689
36763
  avatarUrl?: string | undefined;
36690
- authType?: "OAuth2" | "PAT" | undefined;
36691
36764
  customUrl?: string | undefined;
36692
36765
  } | undefined;
36693
36766
  } | undefined;
@@ -36725,41 +36798,41 @@ declare const DTOUserProfileUpdateResponse: z.ZodObject<{
36725
36798
  azure?: {
36726
36799
  id: string;
36727
36800
  email?: string | undefined;
36801
+ authType?: "OAuth2" | "PAT" | undefined;
36728
36802
  handle?: string | undefined;
36729
36803
  avatarUrl?: string | undefined;
36730
- authType?: "OAuth2" | "PAT" | undefined;
36731
36804
  customUrl?: string | undefined;
36732
36805
  }[] | undefined;
36733
36806
  github?: {
36734
36807
  id: string;
36735
36808
  email?: string | undefined;
36809
+ authType?: "OAuth2" | "PAT" | undefined;
36736
36810
  handle?: string | undefined;
36737
36811
  avatarUrl?: string | undefined;
36738
- authType?: "OAuth2" | "PAT" | undefined;
36739
36812
  customUrl?: string | undefined;
36740
36813
  }[] | undefined;
36741
36814
  gitlab?: {
36742
36815
  id: string;
36743
36816
  email?: string | undefined;
36817
+ authType?: "OAuth2" | "PAT" | undefined;
36744
36818
  handle?: string | undefined;
36745
36819
  avatarUrl?: string | undefined;
36746
- authType?: "OAuth2" | "PAT" | undefined;
36747
36820
  customUrl?: string | undefined;
36748
36821
  }[] | undefined;
36749
36822
  bitbucket?: {
36750
36823
  id: string;
36751
36824
  email?: string | undefined;
36825
+ authType?: "OAuth2" | "PAT" | undefined;
36752
36826
  handle?: string | undefined;
36753
36827
  avatarUrl?: string | undefined;
36754
- authType?: "OAuth2" | "PAT" | undefined;
36755
36828
  customUrl?: string | undefined;
36756
36829
  }[] | undefined;
36757
36830
  figma?: {
36758
36831
  id: string;
36759
36832
  email?: string | undefined;
36833
+ authType?: "OAuth2" | "PAT" | undefined;
36760
36834
  handle?: string | undefined;
36761
36835
  avatarUrl?: string | undefined;
36762
- authType?: "OAuth2" | "PAT" | undefined;
36763
36836
  customUrl?: string | undefined;
36764
36837
  } | undefined;
36765
36838
  } | undefined;
@@ -37944,6 +38017,54 @@ declare const DTOWorkspaceInvitationsListInput: z.ZodObject<{
37944
38017
  designSystemId?: string | undefined;
37945
38018
  }>;
37946
38019
  type DTOWorkspaceInvitationsListInput = z.infer<typeof DTOWorkspaceInvitationsListInput>;
38020
+ declare const DTOWorkspaceInvitationsResponse: z.ZodObject<{
38021
+ invitations: z.ZodArray<z.ZodObject<{
38022
+ id: z.ZodString;
38023
+ email: z.ZodString;
38024
+ createdAt: z.ZodDate;
38025
+ resentAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
38026
+ role: z.ZodNativeEnum<z.Values<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>>;
38027
+ workspaceId: z.ZodString;
38028
+ invitedBy: z.ZodString;
38029
+ }, "strip", z.ZodTypeAny, {
38030
+ id: string;
38031
+ createdAt: Date;
38032
+ email: string;
38033
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
38034
+ workspaceId: string;
38035
+ invitedBy: string;
38036
+ resentAt?: Date | null | undefined;
38037
+ }, {
38038
+ id: string;
38039
+ createdAt: Date;
38040
+ email: string;
38041
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
38042
+ workspaceId: string;
38043
+ invitedBy: string;
38044
+ resentAt?: Date | null | undefined;
38045
+ }>, "many">;
38046
+ }, "strip", z.ZodTypeAny, {
38047
+ invitations: {
38048
+ id: string;
38049
+ createdAt: Date;
38050
+ email: string;
38051
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
38052
+ workspaceId: string;
38053
+ invitedBy: string;
38054
+ resentAt?: Date | null | undefined;
38055
+ }[];
38056
+ }, {
38057
+ invitations: {
38058
+ id: string;
38059
+ createdAt: Date;
38060
+ email: string;
38061
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
38062
+ workspaceId: string;
38063
+ invitedBy: string;
38064
+ resentAt?: Date | null | undefined;
38065
+ }[];
38066
+ }>;
38067
+ type DTOWorkspaceInvitationsResponse = z.infer<typeof DTOWorkspaceInvitationsResponse>;
37947
38068
 
37948
38069
  declare const DTOWorkspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
37949
38070
  type DTOWorkspaceRole = z.infer<typeof DTOWorkspaceRole>;
@@ -44892,6 +45013,10 @@ declare class DesignSystemMembersEndpoint {
44892
45013
  members: {
44893
45014
  userId: string;
44894
45015
  }[];
45016
+ invitations: {
45017
+ id: string;
45018
+ workspaceInvitationId: string;
45019
+ }[];
44895
45020
  }>;
44896
45021
  update(dsId: string, body: DTODesignSystemMembersUpdatePayload): Promise<{
44897
45022
  ok: true;
@@ -44957,7 +45082,7 @@ declare const DTODesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<O
44957
45082
  membersGenerated: z.ZodOptional<z.ZodBoolean>;
44958
45083
  createdAt: z.ZodOptional<z.ZodDate>;
44959
45084
  updatedAt: z.ZodOptional<z.ZodDate>;
44960
- }, "id" | "createdAt" | "updatedAt" | "workspaceId" | "docSlug" | "docViewUrl">, {
45085
+ }, "id" | "createdAt" | "updatedAt" | "workspaceId" | "docSlug" | "docViewUrl" | "accessMode">, {
44961
45086
  meta: z.ZodOptional<z.ZodObject<{
44962
45087
  name: z.ZodOptional<z.ZodString>;
44963
45088
  description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -44987,7 +45112,6 @@ declare const DTODesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<O
44987
45112
  } | undefined;
44988
45113
  isApprovalFeatureEnabled?: boolean | undefined;
44989
45114
  approvalRequiredForPublishing?: boolean | undefined;
44990
- accessMode?: "Open" | "InviteOnly" | undefined;
44991
45115
  membersGenerated?: boolean | undefined;
44992
45116
  }, {
44993
45117
  description?: string | undefined;
@@ -45008,10 +45132,35 @@ declare const DTODesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<O
45008
45132
  } | null | undefined;
45009
45133
  isApprovalFeatureEnabled?: boolean | undefined;
45010
45134
  approvalRequiredForPublishing?: boolean | undefined;
45011
- accessMode?: "Open" | "InviteOnly" | undefined;
45012
45135
  membersGenerated?: boolean | undefined;
45013
45136
  }>;
45014
45137
  type DTODesignSystemUpdateInput = z.infer<typeof DTODesignSystemUpdateInput>;
45138
+ declare const DTODesignSystemUpdateAccessModeInput: z.ZodObject<{
45139
+ accessMode: z.ZodEnum<["Open", "InviteOnly"]>;
45140
+ retain: z.ZodOptional<z.ZodObject<{
45141
+ userIds: z.ZodArray<z.ZodString, "many">;
45142
+ inviteIds: z.ZodArray<z.ZodString, "many">;
45143
+ }, "strip", z.ZodTypeAny, {
45144
+ userIds: string[];
45145
+ inviteIds: string[];
45146
+ }, {
45147
+ userIds: string[];
45148
+ inviteIds: string[];
45149
+ }>>;
45150
+ }, "strip", z.ZodTypeAny, {
45151
+ accessMode: "Open" | "InviteOnly";
45152
+ retain?: {
45153
+ userIds: string[];
45154
+ inviteIds: string[];
45155
+ } | undefined;
45156
+ }, {
45157
+ accessMode: "Open" | "InviteOnly";
45158
+ retain?: {
45159
+ userIds: string[];
45160
+ inviteIds: string[];
45161
+ } | undefined;
45162
+ }>;
45163
+ type DTODesignSystemUpdateAccessModeInput = z.infer<typeof DTODesignSystemUpdateAccessModeInput>;
45015
45164
 
45016
45165
  declare const ObjectMeta: z.ZodObject<{
45017
45166
  name: z.ZodOptional<z.ZodString>;
@@ -47398,6 +47547,36 @@ declare class DesignSystemsEndpoint {
47398
47547
  role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
47399
47548
  };
47400
47549
  }>;
47550
+ updateAccessMode(dsId: string, body: DTODesignSystemUpdateAccessModeInput): Promise<{
47551
+ designSystem: {
47552
+ id: string;
47553
+ meta: {
47554
+ name: string;
47555
+ description?: string | undefined;
47556
+ };
47557
+ createdAt: Date;
47558
+ updatedAt: Date;
47559
+ sources: any[];
47560
+ workspaceId: string;
47561
+ docExporterId: string;
47562
+ docSlug: string;
47563
+ docSlugDeprecated: string;
47564
+ isPublic: boolean;
47565
+ isMultibrand: boolean;
47566
+ basePrefixes: string[];
47567
+ isApprovalFeatureEnabled: boolean;
47568
+ approvalRequiredForPublishing: boolean;
47569
+ accessMode: "Open" | "InviteOnly";
47570
+ membersGenerated: boolean;
47571
+ docUserSlug?: string | undefined;
47572
+ docViewUrl?: string | undefined;
47573
+ designSystemSwitcher?: {
47574
+ isEnabled: boolean;
47575
+ designSystemIds: string[];
47576
+ } | undefined;
47577
+ role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
47578
+ };
47579
+ }>;
47401
47580
  }
47402
47581
 
47403
47582
  declare class UsersEndpoint {
@@ -47651,6 +47830,22 @@ declare class RequestExecutorError extends Error {
47651
47830
  private constructor();
47652
47831
  }
47653
47832
 
47833
+ declare class WorkspaceInvitationsEndpoint {
47834
+ private readonly requestExecutor;
47835
+ constructor(requestExecutor: RequestExecutor);
47836
+ list(workspaceId: string): Promise<{
47837
+ invitations: {
47838
+ id: string;
47839
+ createdAt: Date;
47840
+ email: string;
47841
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
47842
+ workspaceId: string;
47843
+ invitedBy: string;
47844
+ resentAt?: Date | null | undefined;
47845
+ }[];
47846
+ }>;
47847
+ }
47848
+
47654
47849
  declare class WorkspaceMembersEndpoint {
47655
47850
  private readonly requestExecutor;
47656
47851
  constructor(requestExecutor: RequestExecutor);
@@ -48210,6 +48405,7 @@ declare class WorkspaceMembersEndpoint {
48210
48405
  declare class WorkspacesEndpoint {
48211
48406
  private readonly requestExecutor;
48212
48407
  members: WorkspaceMembersEndpoint;
48408
+ invitations: WorkspaceInvitationsEndpoint;
48213
48409
  constructor(requestExecutor: RequestExecutor);
48214
48410
  create(body: DTOWorkspaceCreateInput): Promise<{
48215
48411
  workspace: {
@@ -50958,4 +51154,4 @@ declare class FrontendVersionRoomYDoc {
50958
51154
 
50959
51155
  declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
50960
51156
 
50961
- export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemCreateInput, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, 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, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationsListInput, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemMembersEndpoint, DesignSystemsEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, SupernovaApiClient, UsersEndpoint, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, 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, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
51157
+ export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, 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, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemMembersEndpoint, DesignSystemsEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, SupernovaApiClient, UsersEndpoint, VersionRoomBaseYDoc, VersionSQSPayload, 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, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };