@supernova-studio/client 1.48.10 → 1.48.12
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 +114 -34
- package/dist/index.d.ts +114 -34
- package/dist/index.js +21 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +21 -14
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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: {
|
|
@@ -69507,16 +69520,16 @@ declare const DTOFeatureArtifact: z$1.ZodObject<{
|
|
|
69507
69520
|
type DTOFeatureArtifact = z$1.infer<typeof DTOFeatureArtifact>;
|
|
69508
69521
|
declare const DTOFeatureIterationState: z$1.ZodEnum<["InProgress", "Success", "Error", "Timeout"]>;
|
|
69509
69522
|
type DTOFeatureIterationState = z$1.infer<typeof DTOFeatureIterationState>;
|
|
69510
|
-
declare const DTOFeatureIterationErrorType: z$1.ZodEnum<["PackageInstall", "Build", "Unknown"]>;
|
|
69523
|
+
declare const DTOFeatureIterationErrorType: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown"]>;
|
|
69511
69524
|
type DTOFeatureIterationErrorType = z$1.infer<typeof DTOFeatureIterationErrorType>;
|
|
69512
69525
|
declare const DTOFeatureIterationError: z$1.ZodObject<{
|
|
69513
69526
|
description: z$1.ZodString;
|
|
69514
|
-
type: z$1.ZodEnum<["PackageInstall", "Build", "Unknown"]>;
|
|
69527
|
+
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown"]>;
|
|
69515
69528
|
}, "strip", z$1.ZodTypeAny, {
|
|
69516
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
69529
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
69517
69530
|
description: string;
|
|
69518
69531
|
}, {
|
|
69519
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
69532
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
69520
69533
|
description: string;
|
|
69521
69534
|
}>;
|
|
69522
69535
|
type DTOFeatureIterationError = z$1.infer<typeof DTOFeatureIterationError>;
|
|
@@ -69563,12 +69576,12 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
|
|
|
69563
69576
|
*/
|
|
69564
69577
|
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
69565
69578
|
description: z$1.ZodString;
|
|
69566
|
-
type: z$1.ZodEnum<["PackageInstall", "Build", "Unknown"]>;
|
|
69579
|
+
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown"]>;
|
|
69567
69580
|
}, "strip", z$1.ZodTypeAny, {
|
|
69568
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
69581
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
69569
69582
|
description: string;
|
|
69570
69583
|
}, {
|
|
69571
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
69584
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
69572
69585
|
description: string;
|
|
69573
69586
|
}>>;
|
|
69574
69587
|
/**
|
|
@@ -69663,7 +69676,7 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
|
|
|
69663
69676
|
updatedAt?: string | undefined;
|
|
69664
69677
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
69665
69678
|
error?: {
|
|
69666
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
69679
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
69667
69680
|
description: string;
|
|
69668
69681
|
} | undefined;
|
|
69669
69682
|
thumbnailUrl?: string | undefined;
|
|
@@ -69698,7 +69711,7 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
|
|
|
69698
69711
|
updatedAt?: string | undefined;
|
|
69699
69712
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
69700
69713
|
error?: {
|
|
69701
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
69714
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
69702
69715
|
description: string;
|
|
69703
69716
|
} | undefined;
|
|
69704
69717
|
thumbnailUrl?: string | undefined;
|
|
@@ -70019,12 +70032,12 @@ declare const DTOFeatureIterationCreateInput: z$1.ZodObject<Pick<{
|
|
|
70019
70032
|
*/
|
|
70020
70033
|
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
70021
70034
|
description: z$1.ZodString;
|
|
70022
|
-
type: z$1.ZodEnum<["PackageInstall", "Build", "Unknown"]>;
|
|
70035
|
+
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown"]>;
|
|
70023
70036
|
}, "strip", z$1.ZodTypeAny, {
|
|
70024
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
70037
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
70025
70038
|
description: string;
|
|
70026
70039
|
}, {
|
|
70027
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
70040
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
70028
70041
|
description: string;
|
|
70029
70042
|
}>>;
|
|
70030
70043
|
/**
|
|
@@ -71030,12 +71043,12 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
71030
71043
|
*/
|
|
71031
71044
|
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
71032
71045
|
description: z$1.ZodString;
|
|
71033
|
-
type: z$1.ZodEnum<["PackageInstall", "Build", "Unknown"]>;
|
|
71046
|
+
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown"]>;
|
|
71034
71047
|
}, "strip", z$1.ZodTypeAny, {
|
|
71035
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
71048
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
71036
71049
|
description: string;
|
|
71037
71050
|
}, {
|
|
71038
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
71051
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
71039
71052
|
description: string;
|
|
71040
71053
|
}>>;
|
|
71041
71054
|
/**
|
|
@@ -71130,7 +71143,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
71130
71143
|
updatedAt?: string | undefined;
|
|
71131
71144
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
71132
71145
|
error?: {
|
|
71133
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
71146
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
71134
71147
|
description: string;
|
|
71135
71148
|
} | undefined;
|
|
71136
71149
|
thumbnailUrl?: string | undefined;
|
|
@@ -71165,7 +71178,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
71165
71178
|
updatedAt?: string | undefined;
|
|
71166
71179
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
71167
71180
|
error?: {
|
|
71168
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
71181
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
71169
71182
|
description: string;
|
|
71170
71183
|
} | undefined;
|
|
71171
71184
|
thumbnailUrl?: string | undefined;
|
|
@@ -71202,7 +71215,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
71202
71215
|
updatedAt?: string | undefined;
|
|
71203
71216
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
71204
71217
|
error?: {
|
|
71205
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
71218
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
71206
71219
|
description: string;
|
|
71207
71220
|
} | undefined;
|
|
71208
71221
|
thumbnailUrl?: string | undefined;
|
|
@@ -71239,7 +71252,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
71239
71252
|
updatedAt?: string | undefined;
|
|
71240
71253
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
71241
71254
|
error?: {
|
|
71242
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
71255
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
71243
71256
|
description: string;
|
|
71244
71257
|
} | undefined;
|
|
71245
71258
|
thumbnailUrl?: string | undefined;
|
|
@@ -71279,24 +71292,24 @@ declare const DTOFeatureIterationValidateResponse: z$1.ZodDiscriminatedUnion<"su
|
|
|
71279
71292
|
success: z$1.ZodLiteral<false>;
|
|
71280
71293
|
error: z$1.ZodObject<{
|
|
71281
71294
|
description: z$1.ZodString;
|
|
71282
|
-
type: z$1.ZodEnum<["PackageInstall", "Build", "Unknown"]>;
|
|
71295
|
+
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown"]>;
|
|
71283
71296
|
}, "strip", z$1.ZodTypeAny, {
|
|
71284
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
71297
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
71285
71298
|
description: string;
|
|
71286
71299
|
}, {
|
|
71287
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
71300
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
71288
71301
|
description: string;
|
|
71289
71302
|
}>;
|
|
71290
71303
|
}, "strip", z$1.ZodTypeAny, {
|
|
71291
71304
|
success: false;
|
|
71292
71305
|
error: {
|
|
71293
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
71306
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
71294
71307
|
description: string;
|
|
71295
71308
|
};
|
|
71296
71309
|
}, {
|
|
71297
71310
|
success: false;
|
|
71298
71311
|
error: {
|
|
71299
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
71312
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
71300
71313
|
description: string;
|
|
71301
71314
|
};
|
|
71302
71315
|
}>]>;
|
|
@@ -71345,12 +71358,12 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
71345
71358
|
*/
|
|
71346
71359
|
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
71347
71360
|
description: z$1.ZodString;
|
|
71348
|
-
type: z$1.ZodEnum<["PackageInstall", "Build", "Unknown"]>;
|
|
71361
|
+
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown"]>;
|
|
71349
71362
|
}, "strip", z$1.ZodTypeAny, {
|
|
71350
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
71363
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
71351
71364
|
description: string;
|
|
71352
71365
|
}, {
|
|
71353
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
71366
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
71354
71367
|
description: string;
|
|
71355
71368
|
}>>;
|
|
71356
71369
|
/**
|
|
@@ -71445,7 +71458,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
71445
71458
|
updatedAt?: string | undefined;
|
|
71446
71459
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
71447
71460
|
error?: {
|
|
71448
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
71461
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
71449
71462
|
description: string;
|
|
71450
71463
|
} | undefined;
|
|
71451
71464
|
thumbnailUrl?: string | undefined;
|
|
@@ -71480,7 +71493,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
71480
71493
|
updatedAt?: string | undefined;
|
|
71481
71494
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
71482
71495
|
error?: {
|
|
71483
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
71496
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
71484
71497
|
description: string;
|
|
71485
71498
|
} | undefined;
|
|
71486
71499
|
thumbnailUrl?: string | undefined;
|
|
@@ -71517,7 +71530,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
71517
71530
|
updatedAt?: string | undefined;
|
|
71518
71531
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
71519
71532
|
error?: {
|
|
71520
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
71533
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
71521
71534
|
description: string;
|
|
71522
71535
|
} | undefined;
|
|
71523
71536
|
thumbnailUrl?: string | undefined;
|
|
@@ -71554,7 +71567,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
71554
71567
|
updatedAt?: string | undefined;
|
|
71555
71568
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
71556
71569
|
error?: {
|
|
71557
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
71570
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
71558
71571
|
description: string;
|
|
71559
71572
|
} | undefined;
|
|
71560
71573
|
thumbnailUrl?: string | undefined;
|
|
@@ -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: {
|
|
@@ -252840,7 +252912,7 @@ declare class ForgeFeatureArtifactsEndpoint {
|
|
|
252840
252912
|
updatedAt?: string | undefined;
|
|
252841
252913
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
252842
252914
|
error?: {
|
|
252843
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
252915
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
252844
252916
|
description: string;
|
|
252845
252917
|
} | undefined;
|
|
252846
252918
|
thumbnailUrl?: string | undefined;
|
|
@@ -252895,7 +252967,7 @@ declare class ForgeFeatureIterationsEndpoint {
|
|
|
252895
252967
|
updatedAt?: string | undefined;
|
|
252896
252968
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
252897
252969
|
error?: {
|
|
252898
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
252970
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
252899
252971
|
description: string;
|
|
252900
252972
|
} | undefined;
|
|
252901
252973
|
thumbnailUrl?: string | undefined;
|
|
@@ -253119,7 +253191,7 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
253119
253191
|
updatedAt?: string | undefined;
|
|
253120
253192
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
253121
253193
|
error?: {
|
|
253122
|
-
type: "Unknown" | "Build" | "PackageInstall";
|
|
253194
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
253123
253195
|
description: string;
|
|
253124
253196
|
} | undefined;
|
|
253125
253197
|
thumbnailUrl?: string | undefined;
|
|
@@ -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";
|