@supernova-studio/client 1.48.10 → 1.48.11

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
@@ -646,6 +646,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
646
646
  effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
647
647
  seatType: z.ZodEnum<["Full", "Builder", "None"]>;
648
648
  effectiveSeatType: z.ZodEnum<["Full", "Builder", "None"]>;
649
+ isDeactivated: z.ZodBoolean;
649
650
  }, "strip", z.ZodTypeAny, {
650
651
  workspace: {
651
652
  id: string;
@@ -725,6 +726,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
725
726
  } | undefined;
726
727
  aiCustomInstruction?: string | undefined;
727
728
  };
729
+ isDeactivated: boolean;
728
730
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
729
731
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
730
732
  seatType: "Full" | "Builder" | "None";
@@ -808,6 +810,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
808
810
  aiAskFeaturesEnabled?: boolean | undefined;
809
811
  aiCustomInstruction?: string | undefined;
810
812
  };
813
+ isDeactivated: boolean;
811
814
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
812
815
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
813
816
  seatType: "Full" | "Builder" | "None";
@@ -1122,6 +1125,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
1122
1125
  } | undefined;
1123
1126
  aiCustomInstruction?: string | undefined;
1124
1127
  };
1128
+ isDeactivated: boolean;
1125
1129
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
1126
1130
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
1127
1131
  seatType: "Full" | "Builder" | "None";
@@ -1258,6 +1262,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
1258
1262
  aiAskFeaturesEnabled?: boolean | undefined;
1259
1263
  aiCustomInstruction?: string | undefined;
1260
1264
  };
1265
+ isDeactivated: boolean;
1261
1266
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
1262
1267
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
1263
1268
  seatType: "Full" | "Builder" | "None";
@@ -9178,11 +9183,14 @@ declare const DTODesignSystemMember: z.ZodObject<{
9178
9183
  * undefined if set to inherit from workspace
9179
9184
  */
9180
9185
  designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
9186
+ isDeactivated: z.ZodBoolean;
9181
9187
  }, "strip", z.ZodTypeAny, {
9182
9188
  userId: string;
9189
+ isDeactivated: boolean;
9183
9190
  designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
9184
9191
  }, {
9185
9192
  userId: string;
9193
+ isDeactivated: boolean;
9186
9194
  designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
9187
9195
  }>;
9188
9196
  type DTODesignSystemMember = z.infer<typeof DTODesignSystemMember>;
@@ -9212,11 +9220,14 @@ declare const DTODesignSystemMemberListResponse: z.ZodObject<{
9212
9220
  * undefined if set to inherit from workspace
9213
9221
  */
9214
9222
  designSystemRole: z.ZodOptional<z.ZodEnum<["Admin", "Contributor", "Creator", "Viewer"]>>;
9223
+ isDeactivated: z.ZodBoolean;
9215
9224
  }, "strip", z.ZodTypeAny, {
9216
9225
  userId: string;
9226
+ isDeactivated: boolean;
9217
9227
  designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
9218
9228
  }, {
9219
9229
  userId: string;
9230
+ isDeactivated: boolean;
9220
9231
  designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
9221
9232
  }>, "many">;
9222
9233
  invitations: z.ZodArray<z.ZodObject<{
@@ -9239,6 +9250,7 @@ declare const DTODesignSystemMemberListResponse: z.ZodObject<{
9239
9250
  }, "strip", z.ZodTypeAny, {
9240
9251
  members: {
9241
9252
  userId: string;
9253
+ isDeactivated: boolean;
9242
9254
  designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
9243
9255
  }[];
9244
9256
  invitations: {
@@ -9249,6 +9261,7 @@ declare const DTODesignSystemMemberListResponse: z.ZodObject<{
9249
9261
  }, {
9250
9262
  members: {
9251
9263
  userId: string;
9264
+ isDeactivated: boolean;
9252
9265
  designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
9253
9266
  }[];
9254
9267
  invitations: {
@@ -158349,6 +158362,7 @@ declare const DTOForgeProjectMember: z.ZodObject<{
158349
158362
  };
158350
158363
  }>;
158351
158364
  effectiveRole: z.ZodEnum<["Viewer", "Builder", "Admin"]>;
158365
+ isDeactivated: z.ZodBoolean;
158352
158366
  }, "strip", z.ZodTypeAny, {
158353
158367
  user: {
158354
158368
  id: string;
@@ -158360,6 +158374,7 @@ declare const DTOForgeProjectMember: z.ZodObject<{
158360
158374
  };
158361
158375
  };
158362
158376
  userId: string;
158377
+ isDeactivated: boolean;
158363
158378
  role: "Admin" | "Viewer" | "Builder";
158364
158379
  effectiveRole: "Admin" | "Viewer" | "Builder";
158365
158380
  forgeProjectId: string;
@@ -158376,6 +158391,7 @@ declare const DTOForgeProjectMember: z.ZodObject<{
158376
158391
  };
158377
158392
  };
158378
158393
  userId: string;
158394
+ isDeactivated: boolean;
158379
158395
  role: "Admin" | "Viewer" | "Builder";
158380
158396
  effectiveRole: "Admin" | "Viewer" | "Builder";
158381
158397
  forgeProjectId: string;
@@ -158424,6 +158440,7 @@ declare const DTOCreateForgeProjectMember: z.ZodObject<Pick<{
158424
158440
  };
158425
158441
  }>;
158426
158442
  effectiveRole: z.ZodEnum<["Viewer", "Builder", "Admin"]>;
158443
+ isDeactivated: z.ZodBoolean;
158427
158444
  }, "userId" | "role">, "strip", z.ZodTypeAny, {
158428
158445
  userId: string;
158429
158446
  role: "Admin" | "Viewer" | "Builder";
@@ -158473,6 +158490,7 @@ declare const DTOUpdateForgeProjectMember: z.ZodObject<Pick<{
158473
158490
  };
158474
158491
  }>;
158475
158492
  effectiveRole: z.ZodEnum<["Viewer", "Builder", "Admin"]>;
158493
+ isDeactivated: z.ZodBoolean;
158476
158494
  }, "userId" | "role">, "strip", z.ZodTypeAny, {
158477
158495
  userId: string;
158478
158496
  role: "Admin" | "Viewer" | "Builder";
@@ -158522,6 +158540,7 @@ declare const DTORemoveForgeProjectMember: z.ZodObject<Pick<{
158522
158540
  };
158523
158541
  }>;
158524
158542
  effectiveRole: z.ZodEnum<["Viewer", "Builder", "Admin"]>;
158543
+ isDeactivated: z.ZodBoolean;
158525
158544
  }, "userId">, "strip", z.ZodTypeAny, {
158526
158545
  userId: string;
158527
158546
  }, {
@@ -158570,6 +158589,7 @@ declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
158570
158589
  };
158571
158590
  }>;
158572
158591
  effectiveRole: z.ZodEnum<["Viewer", "Builder", "Admin"]>;
158592
+ isDeactivated: z.ZodBoolean;
158573
158593
  }, "strip", z.ZodTypeAny, {
158574
158594
  user: {
158575
158595
  id: string;
@@ -158581,6 +158601,7 @@ declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
158581
158601
  };
158582
158602
  };
158583
158603
  userId: string;
158604
+ isDeactivated: boolean;
158584
158605
  role: "Admin" | "Viewer" | "Builder";
158585
158606
  effectiveRole: "Admin" | "Viewer" | "Builder";
158586
158607
  forgeProjectId: string;
@@ -158597,6 +158618,7 @@ declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
158597
158618
  };
158598
158619
  };
158599
158620
  userId: string;
158621
+ isDeactivated: boolean;
158600
158622
  role: "Admin" | "Viewer" | "Builder";
158601
158623
  effectiveRole: "Admin" | "Viewer" | "Builder";
158602
158624
  forgeProjectId: string;
@@ -158640,6 +158662,7 @@ declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
158640
158662
  };
158641
158663
  };
158642
158664
  userId: string;
158665
+ isDeactivated: boolean;
158643
158666
  role: "Admin" | "Viewer" | "Builder";
158644
158667
  effectiveRole: "Admin" | "Viewer" | "Builder";
158645
158668
  forgeProjectId: string;
@@ -158667,6 +158690,7 @@ declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
158667
158690
  };
158668
158691
  };
158669
158692
  userId: string;
158693
+ isDeactivated: boolean;
158670
158694
  role: "Admin" | "Viewer" | "Builder";
158671
158695
  effectiveRole: "Admin" | "Viewer" | "Builder";
158672
158696
  forgeProjectId: string;
@@ -158726,6 +158750,7 @@ declare const DTOForgeProjectMemberGetResponse: z.ZodObject<{
158726
158750
  };
158727
158751
  }>;
158728
158752
  effectiveRole: z.ZodEnum<["Viewer", "Builder", "Admin"]>;
158753
+ isDeactivated: z.ZodBoolean;
158729
158754
  }, "strip", z.ZodTypeAny, {
158730
158755
  user: {
158731
158756
  id: string;
@@ -158737,6 +158762,7 @@ declare const DTOForgeProjectMemberGetResponse: z.ZodObject<{
158737
158762
  };
158738
158763
  };
158739
158764
  userId: string;
158765
+ isDeactivated: boolean;
158740
158766
  role: "Admin" | "Viewer" | "Builder";
158741
158767
  effectiveRole: "Admin" | "Viewer" | "Builder";
158742
158768
  forgeProjectId: string;
@@ -158753,6 +158779,7 @@ declare const DTOForgeProjectMemberGetResponse: z.ZodObject<{
158753
158779
  };
158754
158780
  };
158755
158781
  userId: string;
158782
+ isDeactivated: boolean;
158756
158783
  role: "Admin" | "Viewer" | "Builder";
158757
158784
  effectiveRole: "Admin" | "Viewer" | "Builder";
158758
158785
  forgeProjectId: string;
@@ -158771,6 +158798,7 @@ declare const DTOForgeProjectMemberGetResponse: z.ZodObject<{
158771
158798
  };
158772
158799
  };
158773
158800
  userId: string;
158801
+ isDeactivated: boolean;
158774
158802
  role: "Admin" | "Viewer" | "Builder";
158775
158803
  effectiveRole: "Admin" | "Viewer" | "Builder";
158776
158804
  forgeProjectId: string;
@@ -158789,6 +158817,7 @@ declare const DTOForgeProjectMemberGetResponse: z.ZodObject<{
158789
158817
  };
158790
158818
  };
158791
158819
  userId: string;
158820
+ isDeactivated: boolean;
158792
158821
  role: "Admin" | "Viewer" | "Builder";
158793
158822
  effectiveRole: "Admin" | "Viewer" | "Builder";
158794
158823
  forgeProjectId: string;
@@ -158839,6 +158868,7 @@ declare const DTOForgeProjectMemberCreateResponse: z.ZodObject<{
158839
158868
  };
158840
158869
  }>;
158841
158870
  effectiveRole: z.ZodEnum<["Viewer", "Builder", "Admin"]>;
158871
+ isDeactivated: z.ZodBoolean;
158842
158872
  }, "strip", z.ZodTypeAny, {
158843
158873
  user: {
158844
158874
  id: string;
@@ -158850,6 +158880,7 @@ declare const DTOForgeProjectMemberCreateResponse: z.ZodObject<{
158850
158880
  };
158851
158881
  };
158852
158882
  userId: string;
158883
+ isDeactivated: boolean;
158853
158884
  role: "Admin" | "Viewer" | "Builder";
158854
158885
  effectiveRole: "Admin" | "Viewer" | "Builder";
158855
158886
  forgeProjectId: string;
@@ -158866,6 +158897,7 @@ declare const DTOForgeProjectMemberCreateResponse: z.ZodObject<{
158866
158897
  };
158867
158898
  };
158868
158899
  userId: string;
158900
+ isDeactivated: boolean;
158869
158901
  role: "Admin" | "Viewer" | "Builder";
158870
158902
  effectiveRole: "Admin" | "Viewer" | "Builder";
158871
158903
  forgeProjectId: string;
@@ -158884,6 +158916,7 @@ declare const DTOForgeProjectMemberCreateResponse: z.ZodObject<{
158884
158916
  };
158885
158917
  };
158886
158918
  userId: string;
158919
+ isDeactivated: boolean;
158887
158920
  role: "Admin" | "Viewer" | "Builder";
158888
158921
  effectiveRole: "Admin" | "Viewer" | "Builder";
158889
158922
  forgeProjectId: string;
@@ -158902,6 +158935,7 @@ declare const DTOForgeProjectMemberCreateResponse: z.ZodObject<{
158902
158935
  };
158903
158936
  };
158904
158937
  userId: string;
158938
+ isDeactivated: boolean;
158905
158939
  role: "Admin" | "Viewer" | "Builder";
158906
158940
  effectiveRole: "Admin" | "Viewer" | "Builder";
158907
158941
  forgeProjectId: string;
@@ -158952,6 +158986,7 @@ declare const DTOForgeProjectMemberUpdateResponse: z.ZodObject<{
158952
158986
  };
158953
158987
  }>;
158954
158988
  effectiveRole: z.ZodEnum<["Viewer", "Builder", "Admin"]>;
158989
+ isDeactivated: z.ZodBoolean;
158955
158990
  }, "strip", z.ZodTypeAny, {
158956
158991
  user: {
158957
158992
  id: string;
@@ -158963,6 +158998,7 @@ declare const DTOForgeProjectMemberUpdateResponse: z.ZodObject<{
158963
158998
  };
158964
158999
  };
158965
159000
  userId: string;
159001
+ isDeactivated: boolean;
158966
159002
  role: "Admin" | "Viewer" | "Builder";
158967
159003
  effectiveRole: "Admin" | "Viewer" | "Builder";
158968
159004
  forgeProjectId: string;
@@ -158979,6 +159015,7 @@ declare const DTOForgeProjectMemberUpdateResponse: z.ZodObject<{
158979
159015
  };
158980
159016
  };
158981
159017
  userId: string;
159018
+ isDeactivated: boolean;
158982
159019
  role: "Admin" | "Viewer" | "Builder";
158983
159020
  effectiveRole: "Admin" | "Viewer" | "Builder";
158984
159021
  forgeProjectId: string;
@@ -158997,6 +159034,7 @@ declare const DTOForgeProjectMemberUpdateResponse: z.ZodObject<{
158997
159034
  };
158998
159035
  };
158999
159036
  userId: string;
159037
+ isDeactivated: boolean;
159000
159038
  role: "Admin" | "Viewer" | "Builder";
159001
159039
  effectiveRole: "Admin" | "Viewer" | "Builder";
159002
159040
  forgeProjectId: string;
@@ -159015,6 +159053,7 @@ declare const DTOForgeProjectMemberUpdateResponse: z.ZodObject<{
159015
159053
  };
159016
159054
  };
159017
159055
  userId: string;
159056
+ isDeactivated: boolean;
159018
159057
  role: "Admin" | "Viewer" | "Builder";
159019
159058
  effectiveRole: "Admin" | "Viewer" | "Builder";
159020
159059
  forgeProjectId: string;
@@ -234272,6 +234311,7 @@ declare const DTOWorkspaceInvitationUpdateResponse: z.ZodObject<{
234272
234311
  type DTOWorkspaceInvitationUpdateResponse = z.infer<typeof DTOWorkspaceInvitationUpdateResponse>;
234273
234312
 
234274
234313
  declare const DTOUserWorkspaceMembership: z.ZodObject<{
234314
+ /** Workspace the user is a member of */
234275
234315
  workspace: z.ZodObject<{
234276
234316
  id: z.ZodString;
234277
234317
  profile: z.ZodObject<{
@@ -234702,10 +234742,18 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
234702
234742
  aiAskFeaturesEnabled?: boolean | undefined;
234703
234743
  aiCustomInstruction?: string | undefined;
234704
234744
  }>;
234745
+ /** Assigned and stored role the user has in the workspace */
234705
234746
  role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
234747
+ /** Role that determines actual permissions the user has in the workspace
234748
+ * E.g. this is different from the default role when editors are downgraded to viewers
234749
+ * when a workspace's subscription is downgraded to free tier
234750
+ */
234706
234751
  effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
234752
+ /** Assigned and stored seat type the user has in the workspace */
234707
234753
  seatType: z.ZodEnum<["Full", "Builder", "None"]>;
234754
+ /** Seat type that determines actual permissions the user has in the workspace. */
234708
234755
  effectiveSeatType: z.ZodEnum<["Full", "Builder", "None"]>;
234756
+ isDeactivated: z.ZodBoolean;
234709
234757
  }, "strip", z.ZodTypeAny, {
234710
234758
  workspace: {
234711
234759
  id: string;
@@ -234785,6 +234833,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
234785
234833
  } | undefined;
234786
234834
  aiCustomInstruction?: string | undefined;
234787
234835
  };
234836
+ isDeactivated: boolean;
234788
234837
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
234789
234838
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
234790
234839
  seatType: "Full" | "Builder" | "None";
@@ -234868,6 +234917,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
234868
234917
  aiAskFeaturesEnabled?: boolean | undefined;
234869
234918
  aiCustomInstruction?: string | undefined;
234870
234919
  };
234920
+ isDeactivated: boolean;
234871
234921
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
234872
234922
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
234873
234923
  seatType: "Full" | "Builder" | "None";
@@ -235201,6 +235251,7 @@ declare const DTOWorkspaceMember: z.ZodObject<{
235201
235251
  effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
235202
235252
  seatType: z.ZodEnum<["Full", "Builder", "None"]>;
235203
235253
  effectiveSeatType: z.ZodEnum<["Full", "Builder", "None"]>;
235254
+ isDeactivated: z.ZodBoolean;
235204
235255
  }, "strip", z.ZodTypeAny, {
235205
235256
  user: {
235206
235257
  email: string;
@@ -235252,6 +235303,7 @@ declare const DTOWorkspaceMember: z.ZodObject<{
235252
235303
  marketingEmails: boolean;
235253
235304
  } | undefined;
235254
235305
  };
235306
+ isDeactivated: boolean;
235255
235307
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
235256
235308
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
235257
235309
  seatType: "Full" | "Builder" | "None";
@@ -235308,6 +235360,7 @@ declare const DTOWorkspaceMember: z.ZodObject<{
235308
235360
  marketingEmails: boolean;
235309
235361
  } | undefined;
235310
235362
  };
235363
+ isDeactivated: boolean;
235311
235364
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
235312
235365
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
235313
235366
  seatType: "Full" | "Builder" | "None";
@@ -235317,6 +235370,7 @@ declare const DTOWorkspaceMember: z.ZodObject<{
235317
235370
  type DTOWorkspaceMember = z.infer<typeof DTOWorkspaceMember>;
235318
235371
  declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
235319
235372
  membership: z.ZodArray<z.ZodObject<{
235373
+ /** Workspace the user is a member of */
235320
235374
  workspace: z.ZodObject<{
235321
235375
  id: z.ZodString;
235322
235376
  profile: z.ZodObject<{
@@ -235747,10 +235801,18 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
235747
235801
  aiAskFeaturesEnabled?: boolean | undefined;
235748
235802
  aiCustomInstruction?: string | undefined;
235749
235803
  }>;
235804
+ /** Assigned and stored role the user has in the workspace */
235750
235805
  role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
235806
+ /** Role that determines actual permissions the user has in the workspace
235807
+ * E.g. this is different from the default role when editors are downgraded to viewers
235808
+ * when a workspace's subscription is downgraded to free tier
235809
+ */
235751
235810
  effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
235811
+ /** Assigned and stored seat type the user has in the workspace */
235752
235812
  seatType: z.ZodEnum<["Full", "Builder", "None"]>;
235813
+ /** Seat type that determines actual permissions the user has in the workspace. */
235753
235814
  effectiveSeatType: z.ZodEnum<["Full", "Builder", "None"]>;
235815
+ isDeactivated: z.ZodBoolean;
235754
235816
  }, "strip", z.ZodTypeAny, {
235755
235817
  workspace: {
235756
235818
  id: string;
@@ -235830,6 +235892,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
235830
235892
  } | undefined;
235831
235893
  aiCustomInstruction?: string | undefined;
235832
235894
  };
235895
+ isDeactivated: boolean;
235833
235896
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
235834
235897
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
235835
235898
  seatType: "Full" | "Builder" | "None";
@@ -235913,6 +235976,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
235913
235976
  aiAskFeaturesEnabled?: boolean | undefined;
235914
235977
  aiCustomInstruction?: string | undefined;
235915
235978
  };
235979
+ isDeactivated: boolean;
235916
235980
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
235917
235981
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
235918
235982
  seatType: "Full" | "Builder" | "None";
@@ -235998,6 +236062,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
235998
236062
  } | undefined;
235999
236063
  aiCustomInstruction?: string | undefined;
236000
236064
  };
236065
+ isDeactivated: boolean;
236001
236066
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
236002
236067
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
236003
236068
  seatType: "Full" | "Builder" | "None";
@@ -236083,6 +236148,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
236083
236148
  aiAskFeaturesEnabled?: boolean | undefined;
236084
236149
  aiCustomInstruction?: string | undefined;
236085
236150
  };
236151
+ isDeactivated: boolean;
236086
236152
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
236087
236153
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
236088
236154
  seatType: "Full" | "Builder" | "None";
@@ -236418,6 +236484,7 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
236418
236484
  effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
236419
236485
  seatType: z.ZodEnum<["Full", "Builder", "None"]>;
236420
236486
  effectiveSeatType: z.ZodEnum<["Full", "Builder", "None"]>;
236487
+ isDeactivated: z.ZodBoolean;
236421
236488
  }, "strip", z.ZodTypeAny, {
236422
236489
  user: {
236423
236490
  email: string;
@@ -236469,6 +236536,7 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
236469
236536
  marketingEmails: boolean;
236470
236537
  } | undefined;
236471
236538
  };
236539
+ isDeactivated: boolean;
236472
236540
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
236473
236541
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
236474
236542
  seatType: "Full" | "Builder" | "None";
@@ -236525,6 +236593,7 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
236525
236593
  marketingEmails: boolean;
236526
236594
  } | undefined;
236527
236595
  };
236596
+ isDeactivated: boolean;
236528
236597
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
236529
236598
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
236530
236599
  seatType: "Full" | "Builder" | "None";
@@ -236583,6 +236652,7 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
236583
236652
  marketingEmails: boolean;
236584
236653
  } | undefined;
236585
236654
  };
236655
+ isDeactivated: boolean;
236586
236656
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
236587
236657
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
236588
236658
  seatType: "Full" | "Builder" | "None";
@@ -236641,6 +236711,7 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
236641
236711
  marketingEmails: boolean;
236642
236712
  } | undefined;
236643
236713
  };
236714
+ isDeactivated: boolean;
236644
236715
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
236645
236716
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
236646
236717
  seatType: "Full" | "Builder" | "None";
@@ -251381,6 +251452,7 @@ declare class DesignSystemMembersEndpoint {
251381
251452
  list(dsId: string): Promise<{
251382
251453
  members: {
251383
251454
  userId: string;
251455
+ isDeactivated: boolean;
251384
251456
  designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
251385
251457
  }[];
251386
251458
  invitations: {
@@ -256218,6 +256290,7 @@ declare class ForgeProjectInvitationsEndpoint {
256218
256290
  };
256219
256291
  };
256220
256292
  userId: string;
256293
+ isDeactivated: boolean;
256221
256294
  role: "Admin" | "Viewer" | "Builder";
256222
256295
  effectiveRole: "Admin" | "Viewer" | "Builder";
256223
256296
  forgeProjectId: string;
@@ -256246,6 +256319,7 @@ declare class ForgeProjectInvitationsEndpoint {
256246
256319
  };
256247
256320
  };
256248
256321
  userId: string;
256322
+ isDeactivated: boolean;
256249
256323
  role: "Admin" | "Viewer" | "Builder";
256250
256324
  effectiveRole: "Admin" | "Viewer" | "Builder";
256251
256325
  forgeProjectId: string;
@@ -256293,6 +256367,7 @@ declare class ForgeProjectMembersEndpoint {
256293
256367
  };
256294
256368
  };
256295
256369
  userId: string;
256370
+ isDeactivated: boolean;
256296
256371
  role: "Admin" | "Viewer" | "Builder";
256297
256372
  effectiveRole: "Admin" | "Viewer" | "Builder";
256298
256373
  forgeProjectId: string;
@@ -256321,6 +256396,7 @@ declare class ForgeProjectMembersEndpoint {
256321
256396
  };
256322
256397
  };
256323
256398
  userId: string;
256399
+ isDeactivated: boolean;
256324
256400
  role: "Admin" | "Viewer" | "Builder";
256325
256401
  effectiveRole: "Admin" | "Viewer" | "Builder";
256326
256402
  forgeProjectId: string;
@@ -256349,6 +256425,7 @@ declare class ForgeProjectMembersEndpoint {
256349
256425
  };
256350
256426
  };
256351
256427
  userId: string;
256428
+ isDeactivated: boolean;
256352
256429
  role: "Admin" | "Viewer" | "Builder";
256353
256430
  effectiveRole: "Admin" | "Viewer" | "Builder";
256354
256431
  forgeProjectId: string;
@@ -262389,6 +262466,7 @@ declare class WorkspaceMembersEndpoint {
262389
262466
  marketingEmails: boolean;
262390
262467
  } | undefined;
262391
262468
  };
262469
+ isDeactivated: boolean;
262392
262470
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
262393
262471
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
262394
262472
  seatType: "Full" | "Builder" | "None";
@@ -263009,6 +263087,7 @@ declare class WorkspacesEndpoint {
263009
263087
  } | undefined;
263010
263088
  aiCustomInstruction?: string | undefined;
263011
263089
  };
263090
+ isDeactivated: boolean;
263012
263091
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
263013
263092
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
263014
263093
  seatType: "Full" | "Builder" | "None";
@@ -263533,6 +263612,7 @@ declare class UsersEndpoint {
263533
263612
  } | undefined;
263534
263613
  aiCustomInstruction?: string | undefined;
263535
263614
  };
263615
+ isDeactivated: boolean;
263536
263616
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
263537
263617
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
263538
263618
  seatType: "Full" | "Builder" | "None";