vercel-api-js 1.10.0 → 1.12.0
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/{components-f5r2um56.js → components-eqgrkxe2.js} +100 -12
- package/dist/{components-k1idfow7.cjs → components-j923ydcw.cjs} +105 -13
- package/dist/components.cjs +7 -3
- package/dist/components.d.mts +80 -10
- package/dist/components.d.mts.map +1 -1
- package/dist/components.mjs +1 -1
- package/dist/effect.cjs +1 -1
- package/dist/effect.d.mts +13 -5
- package/dist/effect.d.mts.map +1 -1
- package/dist/effect.mjs +1 -1
- package/dist/index.cjs +89 -32
- package/dist/index.d.ts +1523 -156
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/{schemas-mq2xg0ty.cjs → schemas-i3c9gf4z.cjs} +633 -106
- package/dist/{schemas-j4m5o9a7.js → schemas-o2rt4pyr.js} +550 -77
- package/dist/schemas.cjs +85 -31
- package/dist/schemas.d.mts +600 -227
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +82 -28
- package/dist/types.d.mts +1034 -114
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +80 -29
- package/package.json +1 -1
package/dist/schemas.d.mts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as z from 'zod';
|
|
2
2
|
|
|
3
|
+
declare const aiGatewayProviderOptionBagSchema: z.ZodObject<{}, z.core.$catchall<z.ZodUnknown>>;
|
|
3
4
|
declare const aiGatewayVirtualModelConfigSchema: z.ZodObject<{
|
|
4
5
|
ownerId: z.ZodString;
|
|
5
6
|
virtualModelSlug: z.ZodString;
|
|
@@ -14,6 +15,7 @@ declare const aiGatewayVirtualModelConfigSchema: z.ZodObject<{
|
|
|
14
15
|
instanceId: z.ZodOptional<z.ZodString>;
|
|
15
16
|
providerOrder: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
16
17
|
providerOnly: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
18
|
+
providerOptions: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodUnknown>>>;
|
|
17
19
|
inferenceRegion: z.ZodOptional<z.ZodObject<{
|
|
18
20
|
providers: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodObject<{
|
|
19
21
|
scope: z.ZodOptional<z.ZodEnum<{
|
|
@@ -84,8 +86,8 @@ declare const aiGatewayRuleSchema: z.ZodObject<{
|
|
|
84
86
|
ownerId: z.ZodString;
|
|
85
87
|
ruleId: z.ZodString;
|
|
86
88
|
type: z.ZodEnum<{
|
|
87
|
-
deny: "deny";
|
|
88
89
|
rewrite: "rewrite";
|
|
90
|
+
deny: "deny";
|
|
89
91
|
}>;
|
|
90
92
|
match: z.ZodOptional<z.ZodObject<{
|
|
91
93
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -475,6 +477,15 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
475
477
|
"access-group-updated": "access-group-updated";
|
|
476
478
|
"access-group-user-added": "access-group-user-added";
|
|
477
479
|
"access-group-user-removed": "access-group-user-removed";
|
|
480
|
+
"admin-agentic-provisioning-account-unlinked": "admin-agentic-provisioning-account-unlinked";
|
|
481
|
+
"admin-plan-updated": "admin-plan-updated";
|
|
482
|
+
"admin-secondary-email-added": "admin-secondary-email-added";
|
|
483
|
+
"admin-secondary-email-removed": "admin-secondary-email-removed";
|
|
484
|
+
"admin-team-name-update": "admin-team-name-update";
|
|
485
|
+
"admin-team-slug-update": "admin-team-slug-update";
|
|
486
|
+
"admin-user-delete": "admin-user-delete";
|
|
487
|
+
"admin-user-primary-email-updated": "admin-user-primary-email-updated";
|
|
488
|
+
"admin-username-updated": "admin-username-updated";
|
|
478
489
|
"agentic-provisioning-account-blocked": "agentic-provisioning-account-blocked";
|
|
479
490
|
"agentic-provisioning-account-linked": "agentic-provisioning-account-linked";
|
|
480
491
|
"agentic-provisioning-account-relinked": "agentic-provisioning-account-relinked";
|
|
@@ -697,6 +708,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
697
708
|
"git-integration-repo-push": "git-integration-repo-push";
|
|
698
709
|
git_account_integration_link_added: "git_account_integration_link_added";
|
|
699
710
|
"instant-rollback-created": "instant-rollback-created";
|
|
711
|
+
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated";
|
|
700
712
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed";
|
|
701
713
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed";
|
|
702
714
|
"integration-configuration-transfer-in-success": "integration-configuration-transfer-in-success";
|
|
@@ -1036,6 +1048,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1036
1048
|
"user-emu-recovery-initiated": "user-emu-recovery-initiated";
|
|
1037
1049
|
"user-emu-toggled": "user-emu-toggled";
|
|
1038
1050
|
"user-mfa-challenge-failed": "user-mfa-challenge-failed";
|
|
1051
|
+
"user-mfa-challenge-initiated": "user-mfa-challenge-initiated";
|
|
1039
1052
|
"user-mfa-challenge-verified": "user-mfa-challenge-verified";
|
|
1040
1053
|
"user-mfa-change-failed": "user-mfa-change-failed";
|
|
1041
1054
|
"user-mfa-configuration-updated": "user-mfa-configuration-updated";
|
|
@@ -1048,6 +1061,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1048
1061
|
"user-phone-removed": "user-phone-removed";
|
|
1049
1062
|
"user-phone-updated": "user-phone-updated";
|
|
1050
1063
|
"user-primary-email-updated": "user-primary-email-updated";
|
|
1064
|
+
"user-provider-email-claim-evaluated": "user-provider-email-claim-evaluated";
|
|
1051
1065
|
"user-sudo-mode-removed": "user-sudo-mode-removed";
|
|
1052
1066
|
"user-token-created": "user-token-created";
|
|
1053
1067
|
"user-token-deleted": "user-token-deleted";
|
|
@@ -1094,11 +1108,13 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1094
1108
|
observability: "observability";
|
|
1095
1109
|
security: "security";
|
|
1096
1110
|
storage: "storage";
|
|
1111
|
+
v0: "v0";
|
|
1112
|
+
account: "account";
|
|
1113
|
+
project: "project";
|
|
1097
1114
|
integration: "integration";
|
|
1098
1115
|
deployment: "deployment";
|
|
1099
1116
|
domain: "domain";
|
|
1100
1117
|
team: "team";
|
|
1101
|
-
account: "account";
|
|
1102
1118
|
ai: "ai";
|
|
1103
1119
|
"ai-gateway": "ai-gateway";
|
|
1104
1120
|
edge: "edge";
|
|
@@ -1107,8 +1123,6 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1107
1123
|
firewall: "firewall";
|
|
1108
1124
|
network: "network";
|
|
1109
1125
|
other: "other";
|
|
1110
|
-
project: "project";
|
|
1111
|
-
v0: "v0";
|
|
1112
1126
|
"vercel-app": "vercel-app";
|
|
1113
1127
|
workflow: "workflow";
|
|
1114
1128
|
}>>>;
|
|
@@ -1179,8 +1193,8 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1179
1193
|
viaIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1180
1194
|
payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{}, z.core.$strict>, z.ZodObject<{
|
|
1181
1195
|
action: z.ZodEnum<{
|
|
1182
|
-
deleted: "deleted";
|
|
1183
1196
|
archived: "archived";
|
|
1197
|
+
deleted: "deleted";
|
|
1184
1198
|
created: "created";
|
|
1185
1199
|
unarchived: "unarchived";
|
|
1186
1200
|
updated: "updated";
|
|
@@ -1254,6 +1268,20 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1254
1268
|
stripeAccount: z.ZodOptional<z.ZodString>;
|
|
1255
1269
|
resourceId: z.ZodString;
|
|
1256
1270
|
projectName: z.ZodString;
|
|
1271
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1272
|
+
provider: z.ZodOptional<z.ZodEnum<{
|
|
1273
|
+
chatgpt: "chatgpt";
|
|
1274
|
+
stripe: "stripe";
|
|
1275
|
+
}>>;
|
|
1276
|
+
providerAccount: z.ZodOptional<z.ZodString>;
|
|
1277
|
+
stripeAccount: z.ZodOptional<z.ZodString>;
|
|
1278
|
+
stripeOrganisation: z.ZodOptional<z.ZodString>;
|
|
1279
|
+
teamId: z.ZodString;
|
|
1280
|
+
actorId: z.ZodString;
|
|
1281
|
+
actorType: z.ZodEnum<{
|
|
1282
|
+
admin: "admin";
|
|
1283
|
+
}>;
|
|
1284
|
+
actorName: z.ZodOptional<z.ZodString>;
|
|
1257
1285
|
}, z.core.$strict>, z.ZodObject<{
|
|
1258
1286
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
1259
1287
|
chatgpt: "chatgpt";
|
|
@@ -1280,9 +1308,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1280
1308
|
budget: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1281
1309
|
limitAmount: z.ZodNumber;
|
|
1282
1310
|
refreshPeriod: z.ZodEnum<{
|
|
1311
|
+
none: "none";
|
|
1283
1312
|
daily: "daily";
|
|
1284
1313
|
monthly: "monthly";
|
|
1285
|
-
none: "none";
|
|
1286
1314
|
weekly: "weekly";
|
|
1287
1315
|
}>;
|
|
1288
1316
|
}, z.core.$strip>>>;
|
|
@@ -1300,9 +1328,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1300
1328
|
budget: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1301
1329
|
limitAmount: z.ZodNumber;
|
|
1302
1330
|
refreshPeriod: z.ZodEnum<{
|
|
1331
|
+
none: "none";
|
|
1303
1332
|
daily: "daily";
|
|
1304
1333
|
monthly: "monthly";
|
|
1305
|
-
none: "none";
|
|
1306
1334
|
weekly: "weekly";
|
|
1307
1335
|
}>;
|
|
1308
1336
|
}, z.core.$strip>>>;
|
|
@@ -1314,16 +1342,16 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1314
1342
|
}>;
|
|
1315
1343
|
}, z.core.$strict>, z.ZodObject<{
|
|
1316
1344
|
scopeType: z.ZodEnum<{
|
|
1317
|
-
team: "team";
|
|
1318
1345
|
project: "project";
|
|
1346
|
+
team: "team";
|
|
1319
1347
|
"api-key": "api-key";
|
|
1320
1348
|
}>;
|
|
1321
1349
|
budget: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1322
1350
|
limitAmount: z.ZodNumber;
|
|
1323
1351
|
refreshPeriod: z.ZodEnum<{
|
|
1352
|
+
none: "none";
|
|
1324
1353
|
daily: "daily";
|
|
1325
1354
|
monthly: "monthly";
|
|
1326
|
-
none: "none";
|
|
1327
1355
|
weekly: "weekly";
|
|
1328
1356
|
}>;
|
|
1329
1357
|
}, z.core.$strip>>>;
|
|
@@ -1335,17 +1363,17 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1335
1363
|
}>;
|
|
1336
1364
|
}, z.core.$strict>, z.ZodObject<{
|
|
1337
1365
|
scopeType: z.ZodEnum<{
|
|
1338
|
-
team: "team";
|
|
1339
1366
|
project: "project";
|
|
1367
|
+
team: "team";
|
|
1340
1368
|
}>;
|
|
1341
1369
|
projectId: z.ZodOptional<z.ZodString>;
|
|
1342
1370
|
projectName: z.ZodOptional<z.ZodString>;
|
|
1343
1371
|
budget: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1344
1372
|
limitAmount: z.ZodNumber;
|
|
1345
1373
|
refreshPeriod: z.ZodEnum<{
|
|
1374
|
+
none: "none";
|
|
1346
1375
|
daily: "daily";
|
|
1347
1376
|
monthly: "monthly";
|
|
1348
|
-
none: "none";
|
|
1349
1377
|
weekly: "weekly";
|
|
1350
1378
|
}>;
|
|
1351
1379
|
}, z.core.$strip>>>;
|
|
@@ -2424,8 +2452,8 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2424
2452
|
withCache: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
2425
2453
|
provider: z.ZodEnum<{
|
|
2426
2454
|
github: "github";
|
|
2427
|
-
"github-custom-host": "github-custom-host";
|
|
2428
2455
|
"github-limited": "github-limited";
|
|
2456
|
+
"github-custom-host": "github-custom-host";
|
|
2429
2457
|
}>;
|
|
2430
2458
|
customHost: z.ZodOptional<z.ZodString>;
|
|
2431
2459
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -2499,8 +2527,8 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2499
2527
|
withCache: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
2500
2528
|
provider: z.ZodEnum<{
|
|
2501
2529
|
github: "github";
|
|
2502
|
-
"github-custom-host": "github-custom-host";
|
|
2503
2530
|
"github-limited": "github-limited";
|
|
2531
|
+
"github-custom-host": "github-custom-host";
|
|
2504
2532
|
}>;
|
|
2505
2533
|
customHost: z.ZodOptional<z.ZodString>;
|
|
2506
2534
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -2532,8 +2560,8 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2532
2560
|
}, z.core.$strip>>;
|
|
2533
2561
|
provider: z.ZodEnum<{
|
|
2534
2562
|
github: "github";
|
|
2535
|
-
"github-custom-host": "github-custom-host";
|
|
2536
2563
|
"github-limited": "github-limited";
|
|
2564
|
+
"github-custom-host": "github-custom-host";
|
|
2537
2565
|
}>;
|
|
2538
2566
|
customHost: z.ZodOptional<z.ZodString>;
|
|
2539
2567
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -2823,6 +2851,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2823
2851
|
projectName: z.ZodString;
|
|
2824
2852
|
gitCommitterName: z.ZodString;
|
|
2825
2853
|
source: z.ZodString;
|
|
2854
|
+
reason: z.ZodOptional<z.ZodEnum<{
|
|
2855
|
+
ip_allow_list: "ip_allow_list";
|
|
2856
|
+
}>>;
|
|
2826
2857
|
}, z.core.$strict>, z.ZodObject<{
|
|
2827
2858
|
deployment: z.ZodObject<{
|
|
2828
2859
|
id: z.ZodString;
|
|
@@ -2842,9 +2873,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2842
2873
|
gitSources: "gitSources";
|
|
2843
2874
|
}>;
|
|
2844
2875
|
ruleProvenance: z.ZodEnum<{
|
|
2876
|
+
project: "project";
|
|
2845
2877
|
default: "default";
|
|
2846
2878
|
team: "team";
|
|
2847
|
-
project: "project";
|
|
2848
2879
|
}>;
|
|
2849
2880
|
}, z.core.$strict>, z.ZodObject<{
|
|
2850
2881
|
deploymentId: z.ZodString;
|
|
@@ -2996,7 +3027,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2996
3027
|
}, z.core.$strict>, z.ZodObject<{
|
|
2997
3028
|
edgeConfigId: z.ZodString;
|
|
2998
3029
|
edgeConfigSlug: z.ZodString;
|
|
2999
|
-
|
|
3030
|
+
globalConfigSchema: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
|
|
3000
3031
|
}, z.core.$strict>, z.ZodObject<{
|
|
3001
3032
|
edgeConfigId: z.ZodString;
|
|
3002
3033
|
edgeConfigSlug: z.ZodString;
|
|
@@ -3108,9 +3139,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3108
3139
|
sensitive: "sensitive";
|
|
3109
3140
|
}>>;
|
|
3110
3141
|
target: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3111
|
-
development: "development";
|
|
3112
|
-
preview: "preview";
|
|
3113
3142
|
production: "production";
|
|
3143
|
+
preview: "preview";
|
|
3144
|
+
development: "development";
|
|
3114
3145
|
}>>>;
|
|
3115
3146
|
applyToAllCustomEnvironments: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
3116
3147
|
customEnvironmentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3140,9 +3171,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3140
3171
|
sensitive: "sensitive";
|
|
3141
3172
|
}>>;
|
|
3142
3173
|
target: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3143
|
-
development: "development";
|
|
3144
|
-
preview: "preview";
|
|
3145
3174
|
production: "production";
|
|
3175
|
+
preview: "preview";
|
|
3176
|
+
development: "development";
|
|
3146
3177
|
}>>>;
|
|
3147
3178
|
applyToAllCustomEnvironments: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
3148
3179
|
customEnvironmentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3170,9 +3201,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3170
3201
|
sensitive: "sensitive";
|
|
3171
3202
|
}>>;
|
|
3172
3203
|
target: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3173
|
-
development: "development";
|
|
3174
|
-
preview: "preview";
|
|
3175
3204
|
production: "production";
|
|
3205
|
+
preview: "preview";
|
|
3206
|
+
development: "development";
|
|
3176
3207
|
}>>>;
|
|
3177
3208
|
applyToAllCustomEnvironments: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
3178
3209
|
customEnvironmentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3185,14 +3216,14 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3185
3216
|
key: z.ZodOptional<z.ZodString>;
|
|
3186
3217
|
newKey: z.ZodOptional<z.ZodString>;
|
|
3187
3218
|
oldTarget: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3188
|
-
development: "development";
|
|
3189
|
-
preview: "preview";
|
|
3190
3219
|
production: "production";
|
|
3220
|
+
preview: "preview";
|
|
3221
|
+
development: "development";
|
|
3191
3222
|
}>>>;
|
|
3192
3223
|
newTarget: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3193
|
-
development: "development";
|
|
3194
|
-
preview: "preview";
|
|
3195
3224
|
production: "production";
|
|
3225
|
+
preview: "preview";
|
|
3226
|
+
development: "development";
|
|
3196
3227
|
}>>>;
|
|
3197
3228
|
oldType: z.ZodOptional<z.ZodString>;
|
|
3198
3229
|
newType: z.ZodOptional<z.ZodString>;
|
|
@@ -3265,9 +3296,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3265
3296
|
}>;
|
|
3266
3297
|
}, z.core.$strict>, z.ZodObject<{
|
|
3267
3298
|
provider: z.ZodEnum<{
|
|
3268
|
-
bitbucket: "bitbucket";
|
|
3269
3299
|
github: "github";
|
|
3270
3300
|
gitlab: "gitlab";
|
|
3301
|
+
bitbucket: "bitbucket";
|
|
3271
3302
|
}>;
|
|
3272
3303
|
actorLogin: z.ZodNullable<z.ZodString>;
|
|
3273
3304
|
actorAccountId: z.ZodNullable<z.ZodString>;
|
|
@@ -3296,6 +3327,11 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3296
3327
|
toDeploymentId: z.ZodString;
|
|
3297
3328
|
projectName: z.ZodString;
|
|
3298
3329
|
reason: z.ZodOptional<z.ZodString>;
|
|
3330
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3331
|
+
integrationId: z.ZodString;
|
|
3332
|
+
configurationId: z.ZodString;
|
|
3333
|
+
integrationSlug: z.ZodString;
|
|
3334
|
+
integrationName: z.ZodString;
|
|
3299
3335
|
}, z.core.$strict>, z.ZodObject<{
|
|
3300
3336
|
userId: z.ZodString;
|
|
3301
3337
|
integrationId: z.ZodString;
|
|
@@ -3360,9 +3396,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3360
3396
|
createdAt: z.ZodNumber;
|
|
3361
3397
|
credentials: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3362
3398
|
type: z.ZodEnum<{
|
|
3363
|
-
chatgpt: "chatgpt";
|
|
3364
|
-
bitbucket: "bitbucket";
|
|
3365
3399
|
gitlab: "gitlab";
|
|
3400
|
+
bitbucket: "bitbucket";
|
|
3401
|
+
chatgpt: "chatgpt";
|
|
3366
3402
|
vercel: "vercel";
|
|
3367
3403
|
apple: "apple";
|
|
3368
3404
|
"github-oauth": "github-oauth";
|
|
@@ -3401,13 +3437,13 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3401
3437
|
importFlowGitNamespace: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
3402
3438
|
importFlowGitNamespaceId: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
3403
3439
|
importFlowGitProvider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
3404
|
-
bitbucket: "bitbucket";
|
|
3405
3440
|
github: "github";
|
|
3406
|
-
"github-custom-host": "github-custom-host";
|
|
3407
3441
|
"github-limited": "github-limited";
|
|
3442
|
+
"github-custom-host": "github-custom-host";
|
|
3408
3443
|
gitlab: "gitlab";
|
|
3409
|
-
|
|
3444
|
+
bitbucket: "bitbucket";
|
|
3410
3445
|
"cursor-origin": "cursor-origin";
|
|
3446
|
+
vercel: "vercel";
|
|
3411
3447
|
}>>>;
|
|
3412
3448
|
preferredScopesAndGitNamespaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3413
3449
|
scopeId: z.ZodString;
|
|
@@ -3660,27 +3696,27 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3660
3696
|
teamId: z.ZodString;
|
|
3661
3697
|
createdAt: z.ZodNumber;
|
|
3662
3698
|
role: z.ZodEnum<{
|
|
3663
|
-
BILLING: "BILLING";
|
|
3664
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
3665
|
-
DEVELOPER: "DEVELOPER";
|
|
3666
|
-
MEMBER: "MEMBER";
|
|
3667
3699
|
OWNER: "OWNER";
|
|
3700
|
+
MEMBER: "MEMBER";
|
|
3701
|
+
DEVELOPER: "DEVELOPER";
|
|
3668
3702
|
SECURITY: "SECURITY";
|
|
3703
|
+
BILLING: "BILLING";
|
|
3669
3704
|
VIEWER: "VIEWER";
|
|
3670
3705
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
3706
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
3671
3707
|
}>;
|
|
3672
3708
|
confirmed: z.ZodLiteral<true>;
|
|
3673
3709
|
confirmedAt: z.ZodNumber;
|
|
3674
3710
|
accessRequestedAt: z.ZodOptional<z.ZodNumber>;
|
|
3675
3711
|
teamRoles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3676
|
-
BILLING: "BILLING";
|
|
3677
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
3678
|
-
DEVELOPER: "DEVELOPER";
|
|
3679
|
-
MEMBER: "MEMBER";
|
|
3680
3712
|
OWNER: "OWNER";
|
|
3713
|
+
MEMBER: "MEMBER";
|
|
3714
|
+
DEVELOPER: "DEVELOPER";
|
|
3681
3715
|
SECURITY: "SECURITY";
|
|
3716
|
+
BILLING: "BILLING";
|
|
3682
3717
|
VIEWER: "VIEWER";
|
|
3683
3718
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
3719
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
3684
3720
|
}>>>;
|
|
3685
3721
|
teamPermissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3686
3722
|
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf";
|
|
@@ -3699,15 +3735,16 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3699
3735
|
V0Builder: "V0Builder";
|
|
3700
3736
|
V0Chatter: "V0Chatter";
|
|
3701
3737
|
V0Viewer: "V0Viewer";
|
|
3738
|
+
WorkflowDecryptor: "WorkflowDecryptor";
|
|
3702
3739
|
}>>>;
|
|
3703
3740
|
created: z.ZodNumber;
|
|
3704
3741
|
joinedFrom: z.ZodOptional<z.ZodObject<{
|
|
3705
3742
|
origin: z.ZodEnum<{
|
|
3706
3743
|
teams: "teams";
|
|
3707
|
-
link: "link";
|
|
3708
|
-
bitbucket: "bitbucket";
|
|
3709
3744
|
github: "github";
|
|
3710
3745
|
gitlab: "gitlab";
|
|
3746
|
+
bitbucket: "bitbucket";
|
|
3747
|
+
link: "link";
|
|
3711
3748
|
"account-update": "account-update";
|
|
3712
3749
|
dsync: "dsync";
|
|
3713
3750
|
feedback: "feedback";
|
|
@@ -3950,6 +3987,10 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3950
3987
|
increasedOnDemandEmailSentAt: z.ZodOptional<z.ZodNumber>;
|
|
3951
3988
|
increasedOnDemandEmailAttemptedAt: z.ZodOptional<z.ZodNumber>;
|
|
3952
3989
|
}, z.core.$strip>>;
|
|
3990
|
+
speedInsightsFreeUsageAlert: z.ZodOptional<z.ZodObject<{
|
|
3991
|
+
currentThreshold: z.ZodNumber;
|
|
3992
|
+
notifiedAt: z.ZodNumber;
|
|
3993
|
+
}, z.core.$strip>>;
|
|
3953
3994
|
username: z.ZodString;
|
|
3954
3995
|
updatedAt: z.ZodNumber;
|
|
3955
3996
|
enablePreviewFeedback: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4261,6 +4302,16 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4261
4302
|
limits_exceeded: "limits_exceeded";
|
|
4262
4303
|
}>;
|
|
4263
4304
|
}, z.core.$strip>>;
|
|
4305
|
+
speedInsightsFree: z.ZodOptional<z.ZodObject<{
|
|
4306
|
+
updatedAt: z.ZodNumber;
|
|
4307
|
+
blockedFrom: z.ZodOptional<z.ZodNumber>;
|
|
4308
|
+
blockedUntil: z.ZodOptional<z.ZodNumber>;
|
|
4309
|
+
blockReason: z.ZodEnum<{
|
|
4310
|
+
admin_override: "admin_override";
|
|
4311
|
+
hard_blocked: "hard_blocked";
|
|
4312
|
+
limits_exceeded: "limits_exceeded";
|
|
4313
|
+
}>;
|
|
4314
|
+
}, z.core.$strip>>;
|
|
4264
4315
|
}, z.core.$strip>>;
|
|
4265
4316
|
defaultTeamId: z.ZodOptional<z.ZodString>;
|
|
4266
4317
|
version: z.ZodEnum<{
|
|
@@ -4472,12 +4523,12 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4472
4523
|
integrationName: z.ZodOptional<z.ZodString>;
|
|
4473
4524
|
}, z.core.$strict>, z.ZodObject<{
|
|
4474
4525
|
provider: z.ZodEnum<{
|
|
4475
|
-
chatgpt: "chatgpt";
|
|
4476
|
-
bitbucket: "bitbucket";
|
|
4477
4526
|
github: "github";
|
|
4478
|
-
"github-custom-host": "github-custom-host";
|
|
4479
4527
|
"github-limited": "github-limited";
|
|
4528
|
+
"github-custom-host": "github-custom-host";
|
|
4480
4529
|
gitlab: "gitlab";
|
|
4530
|
+
bitbucket: "bitbucket";
|
|
4531
|
+
chatgpt: "chatgpt";
|
|
4481
4532
|
apple: "apple";
|
|
4482
4533
|
google: "google";
|
|
4483
4534
|
saml: "saml";
|
|
@@ -4485,12 +4536,12 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4485
4536
|
login: z.ZodString;
|
|
4486
4537
|
}, z.core.$strict>, z.ZodObject<{
|
|
4487
4538
|
provider: z.ZodEnum<{
|
|
4488
|
-
chatgpt: "chatgpt";
|
|
4489
|
-
bitbucket: "bitbucket";
|
|
4490
4539
|
github: "github";
|
|
4491
|
-
"github-custom-host": "github-custom-host";
|
|
4492
4540
|
"github-limited": "github-limited";
|
|
4541
|
+
"github-custom-host": "github-custom-host";
|
|
4493
4542
|
gitlab: "gitlab";
|
|
4543
|
+
bitbucket: "bitbucket";
|
|
4544
|
+
chatgpt: "chatgpt";
|
|
4494
4545
|
apple: "apple";
|
|
4495
4546
|
google: "google";
|
|
4496
4547
|
saml: "saml";
|
|
@@ -4517,18 +4568,20 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4517
4568
|
}, z.core.$strip>>>;
|
|
4518
4569
|
env: z.ZodOptional<z.ZodString>;
|
|
4519
4570
|
os: z.ZodOptional<z.ZodString>;
|
|
4571
|
+
loginSessionId: z.ZodOptional<z.ZodString>;
|
|
4520
4572
|
username: z.ZodOptional<z.ZodString>;
|
|
4521
4573
|
ssoType: z.ZodOptional<z.ZodString>;
|
|
4522
4574
|
factors: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodObject<{
|
|
4523
4575
|
origin: z.ZodEnum<{
|
|
4524
|
-
email: "email";
|
|
4525
|
-
chatgpt: "chatgpt";
|
|
4526
|
-
bitbucket: "bitbucket";
|
|
4527
4576
|
github: "github";
|
|
4528
4577
|
gitlab: "gitlab";
|
|
4578
|
+
bitbucket: "bitbucket";
|
|
4579
|
+
email: "email";
|
|
4580
|
+
chatgpt: "chatgpt";
|
|
4529
4581
|
apple: "apple";
|
|
4530
4582
|
google: "google";
|
|
4531
4583
|
saml: "saml";
|
|
4584
|
+
"emu-recovery": "emu-recovery";
|
|
4532
4585
|
invite: "invite";
|
|
4533
4586
|
"magic-link": "magic-link";
|
|
4534
4587
|
otp: "otp";
|
|
@@ -4541,14 +4594,15 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4541
4594
|
ssoType: z.ZodOptional<z.ZodString>;
|
|
4542
4595
|
}, z.core.$strict>>, z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4543
4596
|
origin: z.ZodEnum<{
|
|
4544
|
-
email: "email";
|
|
4545
|
-
chatgpt: "chatgpt";
|
|
4546
|
-
bitbucket: "bitbucket";
|
|
4547
4597
|
github: "github";
|
|
4548
4598
|
gitlab: "gitlab";
|
|
4599
|
+
bitbucket: "bitbucket";
|
|
4600
|
+
email: "email";
|
|
4601
|
+
chatgpt: "chatgpt";
|
|
4549
4602
|
apple: "apple";
|
|
4550
4603
|
google: "google";
|
|
4551
4604
|
saml: "saml";
|
|
4605
|
+
"emu-recovery": "emu-recovery";
|
|
4552
4606
|
invite: "invite";
|
|
4553
4607
|
"magic-link": "magic-link";
|
|
4554
4608
|
otp: "otp";
|
|
@@ -4688,24 +4742,24 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4688
4742
|
groupName: z.ZodString;
|
|
4689
4743
|
next: z.ZodObject<{
|
|
4690
4744
|
default: z.ZodOptional<z.ZodEnum<{
|
|
4691
|
-
BILLING: "BILLING";
|
|
4692
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
4693
|
-
DEVELOPER: "DEVELOPER";
|
|
4694
|
-
MEMBER: "MEMBER";
|
|
4695
4745
|
OWNER: "OWNER";
|
|
4746
|
+
MEMBER: "MEMBER";
|
|
4747
|
+
DEVELOPER: "DEVELOPER";
|
|
4696
4748
|
SECURITY: "SECURITY";
|
|
4749
|
+
BILLING: "BILLING";
|
|
4697
4750
|
VIEWER: "VIEWER";
|
|
4698
4751
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
4752
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
4699
4753
|
}>>;
|
|
4700
4754
|
roles: z.ZodObject<{}, z.core.$catchall<z.ZodEnum<{
|
|
4701
|
-
BILLING: "BILLING";
|
|
4702
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
4703
|
-
DEVELOPER: "DEVELOPER";
|
|
4704
|
-
MEMBER: "MEMBER";
|
|
4705
4755
|
OWNER: "OWNER";
|
|
4756
|
+
MEMBER: "MEMBER";
|
|
4757
|
+
DEVELOPER: "DEVELOPER";
|
|
4706
4758
|
SECURITY: "SECURITY";
|
|
4759
|
+
BILLING: "BILLING";
|
|
4707
4760
|
VIEWER: "VIEWER";
|
|
4708
4761
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
4762
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
4709
4763
|
}>>>;
|
|
4710
4764
|
}, z.core.$strip>;
|
|
4711
4765
|
organizationId: z.ZodString;
|
|
@@ -4921,24 +4975,83 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4921
4975
|
plan: z.ZodString;
|
|
4922
4976
|
removedUsers: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodObject<{
|
|
4923
4977
|
role: z.ZodEnum<{
|
|
4978
|
+
OWNER: "OWNER";
|
|
4979
|
+
MEMBER: "MEMBER";
|
|
4980
|
+
DEVELOPER: "DEVELOPER";
|
|
4981
|
+
SECURITY: "SECURITY";
|
|
4924
4982
|
BILLING: "BILLING";
|
|
4983
|
+
VIEWER: "VIEWER";
|
|
4984
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
4925
4985
|
CONTRIBUTOR: "CONTRIBUTOR";
|
|
4926
|
-
|
|
4927
|
-
|
|
4986
|
+
}>;
|
|
4987
|
+
confirmed: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
4988
|
+
confirmedAt: z.ZodOptional<z.ZodNumber>;
|
|
4989
|
+
joinedFrom: z.ZodOptional<z.ZodObject<{
|
|
4990
|
+
origin: z.ZodEnum<{
|
|
4991
|
+
teams: "teams";
|
|
4992
|
+
github: "github";
|
|
4993
|
+
gitlab: "gitlab";
|
|
4994
|
+
bitbucket: "bitbucket";
|
|
4995
|
+
link: "link";
|
|
4996
|
+
"account-update": "account-update";
|
|
4997
|
+
dsync: "dsync";
|
|
4998
|
+
feedback: "feedback";
|
|
4999
|
+
import: "import";
|
|
5000
|
+
mail: "mail";
|
|
5001
|
+
"nsnb-auto-approve": "nsnb-auto-approve";
|
|
5002
|
+
"nsnb-hobby-upgrade": "nsnb-hobby-upgrade";
|
|
5003
|
+
"nsnb-invite": "nsnb-invite";
|
|
5004
|
+
"nsnb-redeploy": "nsnb-redeploy";
|
|
5005
|
+
"nsnb-redeploy-attribution-card": "nsnb-redeploy-attribution-card";
|
|
5006
|
+
"nsnb-request-access": "nsnb-request-access";
|
|
5007
|
+
"nsnb-viewer-upgrade": "nsnb-viewer-upgrade";
|
|
5008
|
+
"organization-teams": "organization-teams";
|
|
5009
|
+
saml: "saml";
|
|
5010
|
+
}>;
|
|
5011
|
+
commitId: z.ZodOptional<z.ZodString>;
|
|
5012
|
+
repoId: z.ZodOptional<z.ZodString>;
|
|
5013
|
+
repoPath: z.ZodOptional<z.ZodString>;
|
|
5014
|
+
gitUserId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
5015
|
+
gitUserLogin: z.ZodOptional<z.ZodString>;
|
|
5016
|
+
ssoUserId: z.ZodOptional<z.ZodString>;
|
|
5017
|
+
ssoConnectedAt: z.ZodOptional<z.ZodNumber>;
|
|
5018
|
+
idpUserId: z.ZodOptional<z.ZodString>;
|
|
5019
|
+
dsyncUserId: z.ZodOptional<z.ZodString>;
|
|
5020
|
+
dsyncConnectedAt: z.ZodOptional<z.ZodNumber>;
|
|
5021
|
+
}, z.core.$strip>>;
|
|
5022
|
+
}, z.core.$strip>>>>;
|
|
5023
|
+
prevPlan: z.ZodOptional<z.ZodString>;
|
|
5024
|
+
priorPlan: z.ZodOptional<z.ZodString>;
|
|
5025
|
+
isDowngrade: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
5026
|
+
userAgent: z.ZodOptional<z.ZodString>;
|
|
5027
|
+
isReactivate: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
5028
|
+
isTrialUpgrade: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
5029
|
+
automated: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
5030
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
5031
|
+
timestamp: z.ZodOptional<z.ZodNumber>;
|
|
5032
|
+
removedMemberCount: z.ZodOptional<z.ZodNumber>;
|
|
5033
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
5034
|
+
plan: z.ZodString;
|
|
5035
|
+
removedUsers: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodObject<{
|
|
5036
|
+
role: z.ZodEnum<{
|
|
4928
5037
|
OWNER: "OWNER";
|
|
5038
|
+
MEMBER: "MEMBER";
|
|
5039
|
+
DEVELOPER: "DEVELOPER";
|
|
4929
5040
|
SECURITY: "SECURITY";
|
|
5041
|
+
BILLING: "BILLING";
|
|
4930
5042
|
VIEWER: "VIEWER";
|
|
4931
5043
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
5044
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
4932
5045
|
}>;
|
|
4933
5046
|
confirmed: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
4934
5047
|
confirmedAt: z.ZodOptional<z.ZodNumber>;
|
|
4935
5048
|
joinedFrom: z.ZodOptional<z.ZodObject<{
|
|
4936
5049
|
origin: z.ZodEnum<{
|
|
4937
5050
|
teams: "teams";
|
|
4938
|
-
link: "link";
|
|
4939
|
-
bitbucket: "bitbucket";
|
|
4940
5051
|
github: "github";
|
|
4941
5052
|
gitlab: "gitlab";
|
|
5053
|
+
bitbucket: "bitbucket";
|
|
5054
|
+
link: "link";
|
|
4942
5055
|
"account-update": "account-update";
|
|
4943
5056
|
dsync: "dsync";
|
|
4944
5057
|
feedback: "feedback";
|
|
@@ -4976,6 +5089,11 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4976
5089
|
reason: z.ZodOptional<z.ZodString>;
|
|
4977
5090
|
timestamp: z.ZodOptional<z.ZodNumber>;
|
|
4978
5091
|
removedMemberCount: z.ZodOptional<z.ZodNumber>;
|
|
5092
|
+
actorId: z.ZodString;
|
|
5093
|
+
actorType: z.ZodEnum<{
|
|
5094
|
+
admin: "admin";
|
|
5095
|
+
}>;
|
|
5096
|
+
actorName: z.ZodOptional<z.ZodString>;
|
|
4979
5097
|
}, z.core.$strict>, z.ZodObject<{
|
|
4980
5098
|
price: z.ZodOptional<z.ZodNumber>;
|
|
4981
5099
|
currency: z.ZodOptional<z.ZodString>;
|
|
@@ -5289,26 +5407,26 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
5289
5407
|
projectName: z.ZodString;
|
|
5290
5408
|
previous: z.ZodOptional<z.ZodObject<{
|
|
5291
5409
|
gitProvider: z.ZodEnum<{
|
|
5292
|
-
bitbucket: "bitbucket";
|
|
5293
5410
|
github: "github";
|
|
5294
|
-
"github-custom-host": "github-custom-host";
|
|
5295
5411
|
"github-limited": "github-limited";
|
|
5412
|
+
"github-custom-host": "github-custom-host";
|
|
5296
5413
|
gitlab: "gitlab";
|
|
5297
|
-
|
|
5414
|
+
bitbucket: "bitbucket";
|
|
5298
5415
|
"cursor-origin": "cursor-origin";
|
|
5416
|
+
vercel: "vercel";
|
|
5299
5417
|
}>;
|
|
5300
5418
|
gitRepoId: z.ZodString;
|
|
5301
5419
|
gitRepositoryName: z.ZodString;
|
|
5302
5420
|
}, z.core.$strip>>;
|
|
5303
5421
|
next: z.ZodObject<{
|
|
5304
5422
|
gitProvider: z.ZodEnum<{
|
|
5305
|
-
bitbucket: "bitbucket";
|
|
5306
5423
|
github: "github";
|
|
5307
|
-
"github-custom-host": "github-custom-host";
|
|
5308
5424
|
"github-limited": "github-limited";
|
|
5425
|
+
"github-custom-host": "github-custom-host";
|
|
5309
5426
|
gitlab: "gitlab";
|
|
5310
|
-
|
|
5427
|
+
bitbucket: "bitbucket";
|
|
5311
5428
|
"cursor-origin": "cursor-origin";
|
|
5429
|
+
vercel: "vercel";
|
|
5312
5430
|
}>;
|
|
5313
5431
|
gitRepoId: z.ZodString;
|
|
5314
5432
|
gitRepositoryName: z.ZodString;
|
|
@@ -5317,13 +5435,13 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
5317
5435
|
projectId: z.ZodString;
|
|
5318
5436
|
projectName: z.ZodString;
|
|
5319
5437
|
gitProvider: z.ZodEnum<{
|
|
5320
|
-
bitbucket: "bitbucket";
|
|
5321
5438
|
github: "github";
|
|
5322
|
-
"github-custom-host": "github-custom-host";
|
|
5323
5439
|
"github-limited": "github-limited";
|
|
5440
|
+
"github-custom-host": "github-custom-host";
|
|
5324
5441
|
gitlab: "gitlab";
|
|
5325
|
-
|
|
5442
|
+
bitbucket: "bitbucket";
|
|
5326
5443
|
"cursor-origin": "cursor-origin";
|
|
5444
|
+
vercel: "vercel";
|
|
5327
5445
|
}>;
|
|
5328
5446
|
gitRepoId: z.ZodString;
|
|
5329
5447
|
gitRepositoryName: z.ZodString;
|
|
@@ -5781,15 +5899,15 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
5781
5899
|
projectId: z.ZodString;
|
|
5782
5900
|
projectName: z.ZodString;
|
|
5783
5901
|
trustedIps: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
5784
|
-
preview: "preview";
|
|
5785
5902
|
production: "production";
|
|
5903
|
+
preview: "preview";
|
|
5786
5904
|
all: "all";
|
|
5787
5905
|
all_except_custom_domains: "all_except_custom_domains";
|
|
5788
5906
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews";
|
|
5789
5907
|
}>>>;
|
|
5790
5908
|
oldTrustedIps: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
5791
|
-
preview: "preview";
|
|
5792
5909
|
production: "production";
|
|
5910
|
+
preview: "preview";
|
|
5793
5911
|
all: "all";
|
|
5794
5912
|
all_except_custom_domains: "all_except_custom_domains";
|
|
5795
5913
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews";
|
|
@@ -5860,6 +5978,14 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
5860
5978
|
}, z.core.$strict>, z.ZodObject<{
|
|
5861
5979
|
email: z.ZodString;
|
|
5862
5980
|
verified: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
5981
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
5982
|
+
email: z.ZodString;
|
|
5983
|
+
verified: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
5984
|
+
actorId: z.ZodString;
|
|
5985
|
+
actorType: z.ZodEnum<{
|
|
5986
|
+
admin: "admin";
|
|
5987
|
+
}>;
|
|
5988
|
+
actorName: z.ZodOptional<z.ZodString>;
|
|
5863
5989
|
}, z.core.$strict>, z.ZodObject<{
|
|
5864
5990
|
email: z.ZodString;
|
|
5865
5991
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -5913,11 +6039,11 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
5913
6039
|
ssoType: z.ZodOptional<z.ZodString>;
|
|
5914
6040
|
factors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5915
6041
|
origin: z.ZodEnum<{
|
|
5916
|
-
email: "email";
|
|
5917
|
-
chatgpt: "chatgpt";
|
|
5918
|
-
bitbucket: "bitbucket";
|
|
5919
6042
|
github: "github";
|
|
5920
6043
|
gitlab: "gitlab";
|
|
6044
|
+
bitbucket: "bitbucket";
|
|
6045
|
+
email: "email";
|
|
6046
|
+
chatgpt: "chatgpt";
|
|
5921
6047
|
apple: "apple";
|
|
5922
6048
|
google: "google";
|
|
5923
6049
|
saml: "saml";
|
|
@@ -6215,6 +6341,20 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6215
6341
|
standard: "standard";
|
|
6216
6342
|
turbo: "turbo";
|
|
6217
6343
|
}>>;
|
|
6344
|
+
isSystemInitiated: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
6345
|
+
reason: z.ZodOptional<z.ZodEnum<{
|
|
6346
|
+
"basic-floor": "basic-floor";
|
|
6347
|
+
"build-timeout-failure": "build-timeout-failure";
|
|
6348
|
+
"enospc-failure": "enospc-failure";
|
|
6349
|
+
"enterprise-floor": "enterprise-floor";
|
|
6350
|
+
"high-peak-disk": "high-peak-disk";
|
|
6351
|
+
"high-peak-memory": "high-peak-memory";
|
|
6352
|
+
"long-build-duration": "long-build-duration";
|
|
6353
|
+
"oom-failure": "oom-failure";
|
|
6354
|
+
"plan-change": "plan-change";
|
|
6355
|
+
"short-build-duration": "short-build-duration";
|
|
6356
|
+
"sustained-high-cpu": "sustained-high-cpu";
|
|
6357
|
+
}>>;
|
|
6218
6358
|
}, z.core.$strict>, z.ZodObject<{
|
|
6219
6359
|
slug: z.ZodString;
|
|
6220
6360
|
teamId: z.ZodString;
|
|
@@ -6226,14 +6366,14 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6226
6366
|
}, z.core.$strip>>>;
|
|
6227
6367
|
removedUsers: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodObject<{
|
|
6228
6368
|
role: z.ZodEnum<{
|
|
6229
|
-
BILLING: "BILLING";
|
|
6230
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6231
|
-
DEVELOPER: "DEVELOPER";
|
|
6232
|
-
MEMBER: "MEMBER";
|
|
6233
6369
|
OWNER: "OWNER";
|
|
6370
|
+
MEMBER: "MEMBER";
|
|
6371
|
+
DEVELOPER: "DEVELOPER";
|
|
6234
6372
|
SECURITY: "SECURITY";
|
|
6373
|
+
BILLING: "BILLING";
|
|
6235
6374
|
VIEWER: "VIEWER";
|
|
6236
6375
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
6376
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6237
6377
|
}>;
|
|
6238
6378
|
confirmed: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
6239
6379
|
confirmedAt: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6251,13 +6391,13 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6251
6391
|
projectName: z.ZodString;
|
|
6252
6392
|
enabled: z.ZodNullable<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
6253
6393
|
environment: z.ZodEnum<{
|
|
6254
|
-
preview: "preview";
|
|
6255
6394
|
production: "production";
|
|
6395
|
+
preview: "preview";
|
|
6256
6396
|
}>;
|
|
6257
6397
|
}, z.core.$strict>, z.ZodObject<{
|
|
6258
6398
|
environment: z.ZodEnum<{
|
|
6259
|
-
preview: "preview";
|
|
6260
6399
|
production: "production";
|
|
6400
|
+
preview: "preview";
|
|
6261
6401
|
}>;
|
|
6262
6402
|
enabled: z.ZodEnum<{
|
|
6263
6403
|
default: "default";
|
|
@@ -6312,14 +6452,14 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6312
6452
|
bitbucketUsername: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6313
6453
|
directoryType: z.ZodOptional<z.ZodString>;
|
|
6314
6454
|
role: z.ZodOptional<z.ZodEnum<{
|
|
6315
|
-
BILLING: "BILLING";
|
|
6316
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6317
|
-
DEVELOPER: "DEVELOPER";
|
|
6318
|
-
MEMBER: "MEMBER";
|
|
6319
6455
|
OWNER: "OWNER";
|
|
6456
|
+
MEMBER: "MEMBER";
|
|
6457
|
+
DEVELOPER: "DEVELOPER";
|
|
6320
6458
|
SECURITY: "SECURITY";
|
|
6459
|
+
BILLING: "BILLING";
|
|
6321
6460
|
VIEWER: "VIEWER";
|
|
6322
6461
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
6462
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6323
6463
|
}>>;
|
|
6324
6464
|
reason: z.ZodOptional<z.ZodString>;
|
|
6325
6465
|
previousPlan: z.ZodOptional<z.ZodEnum<{
|
|
@@ -6374,10 +6514,10 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6374
6514
|
bitbucketUsername: z.ZodOptional<z.ZodString>;
|
|
6375
6515
|
source: z.ZodOptional<z.ZodEnum<{
|
|
6376
6516
|
teams: "teams";
|
|
6377
|
-
link: "link";
|
|
6378
|
-
bitbucket: "bitbucket";
|
|
6379
6517
|
github: "github";
|
|
6380
6518
|
gitlab: "gitlab";
|
|
6519
|
+
bitbucket: "bitbucket";
|
|
6520
|
+
link: "link";
|
|
6381
6521
|
"account-update": "account-update";
|
|
6382
6522
|
dsync: "dsync";
|
|
6383
6523
|
feedback: "feedback";
|
|
@@ -6402,6 +6542,64 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6402
6542
|
}, z.core.$strip>>;
|
|
6403
6543
|
role: z.ZodOptional<z.ZodString>;
|
|
6404
6544
|
previousRole: z.ZodString;
|
|
6545
|
+
previousTeamRoles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6546
|
+
OWNER: "OWNER";
|
|
6547
|
+
MEMBER: "MEMBER";
|
|
6548
|
+
DEVELOPER: "DEVELOPER";
|
|
6549
|
+
SECURITY: "SECURITY";
|
|
6550
|
+
BILLING: "BILLING";
|
|
6551
|
+
VIEWER: "VIEWER";
|
|
6552
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
6553
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6554
|
+
}>>>;
|
|
6555
|
+
teamRoles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6556
|
+
OWNER: "OWNER";
|
|
6557
|
+
MEMBER: "MEMBER";
|
|
6558
|
+
DEVELOPER: "DEVELOPER";
|
|
6559
|
+
SECURITY: "SECURITY";
|
|
6560
|
+
BILLING: "BILLING";
|
|
6561
|
+
VIEWER: "VIEWER";
|
|
6562
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
6563
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6564
|
+
}>>>;
|
|
6565
|
+
previousTeamPermissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6566
|
+
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf";
|
|
6567
|
+
AiGatewayBudgetManager: "AiGatewayBudgetManager";
|
|
6568
|
+
AiGatewayCredits: "AiGatewayCredits";
|
|
6569
|
+
AiGatewaySettings: "AiGatewaySettings";
|
|
6570
|
+
ConnectorManager: "ConnectorManager";
|
|
6571
|
+
CreateProject: "CreateProject";
|
|
6572
|
+
EnvVariableManager: "EnvVariableManager";
|
|
6573
|
+
EnvironmentManager: "EnvironmentManager";
|
|
6574
|
+
FullProductionDeployment: "FullProductionDeployment";
|
|
6575
|
+
IntegrationManager: "IntegrationManager";
|
|
6576
|
+
OrgAdmin: "OrgAdmin";
|
|
6577
|
+
OrgViewer: "OrgViewer";
|
|
6578
|
+
UsageViewer: "UsageViewer";
|
|
6579
|
+
V0Builder: "V0Builder";
|
|
6580
|
+
V0Chatter: "V0Chatter";
|
|
6581
|
+
V0Viewer: "V0Viewer";
|
|
6582
|
+
WorkflowDecryptor: "WorkflowDecryptor";
|
|
6583
|
+
}>>>;
|
|
6584
|
+
teamPermissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6585
|
+
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf";
|
|
6586
|
+
AiGatewayBudgetManager: "AiGatewayBudgetManager";
|
|
6587
|
+
AiGatewayCredits: "AiGatewayCredits";
|
|
6588
|
+
AiGatewaySettings: "AiGatewaySettings";
|
|
6589
|
+
ConnectorManager: "ConnectorManager";
|
|
6590
|
+
CreateProject: "CreateProject";
|
|
6591
|
+
EnvVariableManager: "EnvVariableManager";
|
|
6592
|
+
EnvironmentManager: "EnvironmentManager";
|
|
6593
|
+
FullProductionDeployment: "FullProductionDeployment";
|
|
6594
|
+
IntegrationManager: "IntegrationManager";
|
|
6595
|
+
OrgAdmin: "OrgAdmin";
|
|
6596
|
+
OrgViewer: "OrgViewer";
|
|
6597
|
+
UsageViewer: "UsageViewer";
|
|
6598
|
+
V0Builder: "V0Builder";
|
|
6599
|
+
V0Chatter: "V0Chatter";
|
|
6600
|
+
V0Viewer: "V0Viewer";
|
|
6601
|
+
WorkflowDecryptor: "WorkflowDecryptor";
|
|
6602
|
+
}>>>;
|
|
6405
6603
|
updatedUid: z.ZodOptional<z.ZodString>;
|
|
6406
6604
|
origin: z.ZodOptional<z.ZodString>;
|
|
6407
6605
|
teamSlug: z.ZodOptional<z.ZodString>;
|
|
@@ -6445,6 +6643,13 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6445
6643
|
inviteCode: z.ZodOptional<z.ZodString>;
|
|
6446
6644
|
}, z.core.$strict>, z.ZodObject<{
|
|
6447
6645
|
name: z.ZodOptional<z.ZodString>;
|
|
6646
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
6647
|
+
name: z.ZodOptional<z.ZodString>;
|
|
6648
|
+
actorId: z.ZodString;
|
|
6649
|
+
actorType: z.ZodEnum<{
|
|
6650
|
+
admin: "admin";
|
|
6651
|
+
}>;
|
|
6652
|
+
actorName: z.ZodOptional<z.ZodString>;
|
|
6448
6653
|
}, z.core.$strict>, z.ZodObject<{
|
|
6449
6654
|
decision: z.ZodEnum<{
|
|
6450
6655
|
keep_on: "keep_on";
|
|
@@ -6475,29 +6680,29 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6475
6680
|
"log-drains": "log-drains";
|
|
6476
6681
|
}>;
|
|
6477
6682
|
}, z.core.$strict>, z.ZodObject<{
|
|
6478
|
-
previous: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodUnion<readonly [z.ZodObject<{
|
|
6479
|
-
accessGroupId: z.ZodString;
|
|
6480
|
-
}, z.core.$strict>, z.ZodEnum<{
|
|
6481
|
-
BILLING: "BILLING";
|
|
6482
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6483
|
-
DEVELOPER: "DEVELOPER";
|
|
6484
|
-
MEMBER: "MEMBER";
|
|
6683
|
+
previous: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodUnion<readonly [z.ZodObject<{
|
|
6684
|
+
accessGroupId: z.ZodString;
|
|
6685
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
6485
6686
|
OWNER: "OWNER";
|
|
6687
|
+
MEMBER: "MEMBER";
|
|
6688
|
+
DEVELOPER: "DEVELOPER";
|
|
6486
6689
|
SECURITY: "SECURITY";
|
|
6690
|
+
BILLING: "BILLING";
|
|
6487
6691
|
VIEWER: "VIEWER";
|
|
6488
6692
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
6693
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6489
6694
|
}>]>>>>;
|
|
6490
6695
|
next: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodUnion<readonly [z.ZodObject<{
|
|
6491
6696
|
accessGroupId: z.ZodString;
|
|
6492
6697
|
}, z.core.$strict>, z.ZodEnum<{
|
|
6493
|
-
BILLING: "BILLING";
|
|
6494
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6495
|
-
DEVELOPER: "DEVELOPER";
|
|
6496
|
-
MEMBER: "MEMBER";
|
|
6497
6698
|
OWNER: "OWNER";
|
|
6699
|
+
MEMBER: "MEMBER";
|
|
6700
|
+
DEVELOPER: "DEVELOPER";
|
|
6498
6701
|
SECURITY: "SECURITY";
|
|
6702
|
+
BILLING: "BILLING";
|
|
6499
6703
|
VIEWER: "VIEWER";
|
|
6500
6704
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
6705
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6501
6706
|
}>]>>>>;
|
|
6502
6707
|
}, z.core.$strict>, z.ZodObject<{
|
|
6503
6708
|
domain: z.ZodString;
|
|
@@ -6513,6 +6718,13 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6513
6718
|
fileId: z.ZodString;
|
|
6514
6719
|
}, z.core.$strict>, z.ZodObject<{
|
|
6515
6720
|
slug: z.ZodOptional<z.ZodString>;
|
|
6721
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
6722
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
6723
|
+
actorId: z.ZodString;
|
|
6724
|
+
actorType: z.ZodEnum<{
|
|
6725
|
+
admin: "admin";
|
|
6726
|
+
}>;
|
|
6727
|
+
actorName: z.ZodOptional<z.ZodString>;
|
|
6516
6728
|
}, z.core.$strict>, z.ZodObject<{
|
|
6517
6729
|
projectId: z.ZodString;
|
|
6518
6730
|
projectName: z.ZodString;
|
|
@@ -6522,8 +6734,8 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6522
6734
|
}>;
|
|
6523
6735
|
rate: z.ZodNumber;
|
|
6524
6736
|
env: z.ZodOptional<z.ZodEnum<{
|
|
6525
|
-
preview: "preview";
|
|
6526
6737
|
production: "production";
|
|
6738
|
+
preview: "preview";
|
|
6527
6739
|
}>>;
|
|
6528
6740
|
requestPath: z.ZodOptional<z.ZodString>;
|
|
6529
6741
|
}, z.core.$strip>>>;
|
|
@@ -6537,10 +6749,19 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6537
6749
|
user: "user";
|
|
6538
6750
|
admin: "admin";
|
|
6539
6751
|
}>>;
|
|
6752
|
+
actorName: z.ZodOptional<z.ZodString>;
|
|
6540
6753
|
reason: z.ZodOptional<z.ZodString>;
|
|
6541
6754
|
}, z.core.$strict>, z.ZodObject<{
|
|
6542
6755
|
deletedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6543
6756
|
username: z.ZodString;
|
|
6757
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
6758
|
+
deletedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6759
|
+
username: z.ZodString;
|
|
6760
|
+
actorId: z.ZodString;
|
|
6761
|
+
actorType: z.ZodEnum<{
|
|
6762
|
+
admin: "admin";
|
|
6763
|
+
}>;
|
|
6764
|
+
actorName: z.ZodOptional<z.ZodString>;
|
|
6544
6765
|
}, z.core.$strict>, z.ZodObject<{
|
|
6545
6766
|
username: z.ZodString;
|
|
6546
6767
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -6576,6 +6797,17 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6576
6797
|
"email-otp": "email-otp";
|
|
6577
6798
|
}>;
|
|
6578
6799
|
reason: z.ZodString;
|
|
6800
|
+
flowId: z.ZodOptional<z.ZodString>;
|
|
6801
|
+
loginSessionId: z.ZodOptional<z.ZodString>;
|
|
6802
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
6803
|
+
allowedMethods: z.ZodArray<z.ZodEnum<{
|
|
6804
|
+
totp: "totp";
|
|
6805
|
+
webauthn: "webauthn";
|
|
6806
|
+
"recovery-code": "recovery-code";
|
|
6807
|
+
}>>;
|
|
6808
|
+
firstFactor: z.ZodString;
|
|
6809
|
+
flowId: z.ZodString;
|
|
6810
|
+
loginSessionId: z.ZodOptional<z.ZodString>;
|
|
6579
6811
|
}, z.core.$strict>, z.ZodObject<{
|
|
6580
6812
|
action: z.ZodEnum<{
|
|
6581
6813
|
disable: "disable";
|
|
@@ -6596,8 +6828,18 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6596
6828
|
enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
6597
6829
|
totpVerified: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
6598
6830
|
}, z.core.$strip>;
|
|
6831
|
+
method: z.ZodOptional<z.ZodEnum<{
|
|
6832
|
+
totp: "totp";
|
|
6833
|
+
passkey: "passkey";
|
|
6834
|
+
self_serve_recovery: "self_serve_recovery";
|
|
6835
|
+
user_disabled: "user_disabled";
|
|
6836
|
+
}>>;
|
|
6599
6837
|
}, z.core.$strict>, z.ZodObject<{
|
|
6600
6838
|
remaining: z.ZodNumber;
|
|
6839
|
+
context: z.ZodOptional<z.ZodEnum<{
|
|
6840
|
+
login: "login";
|
|
6841
|
+
sudo: "sudo";
|
|
6842
|
+
}>>;
|
|
6601
6843
|
}, z.core.$strict>, z.ZodObject<{
|
|
6602
6844
|
mfaEnabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
6603
6845
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -6608,9 +6850,59 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6608
6850
|
}, z.core.$strict>, z.ZodObject<{
|
|
6609
6851
|
enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
6610
6852
|
totpVerified: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
6853
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
6854
|
+
previous: z.ZodObject<{
|
|
6855
|
+
enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
6856
|
+
totpVerified: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
6857
|
+
}, z.core.$strip>;
|
|
6858
|
+
next: z.ZodObject<{
|
|
6859
|
+
enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
6860
|
+
totpVerified: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
6861
|
+
}, z.core.$strip>;
|
|
6862
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
6863
|
+
provider: z.ZodEnum<{
|
|
6864
|
+
google: "google";
|
|
6865
|
+
}>;
|
|
6866
|
+
providerSubjectId: z.ZodString;
|
|
6867
|
+
outcome: z.ZodEnum<{
|
|
6868
|
+
"account-matched": "account-matched";
|
|
6869
|
+
"linking-required": "linking-required";
|
|
6870
|
+
}>;
|
|
6871
|
+
decision: z.ZodObject<{
|
|
6872
|
+
authoritative: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
6873
|
+
basis: z.ZodEnum<{
|
|
6874
|
+
none: "none";
|
|
6875
|
+
gmail: "gmail";
|
|
6876
|
+
"workspace-mx": "workspace-mx";
|
|
6877
|
+
}>;
|
|
6878
|
+
emailDomain: z.ZodString;
|
|
6879
|
+
emailVerified: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
6880
|
+
hostedDomainMatch: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
6881
|
+
mxOutcome: z.ZodEnum<{
|
|
6882
|
+
google: "google";
|
|
6883
|
+
"lookup-error": "lookup-error";
|
|
6884
|
+
"non-google": "non-google";
|
|
6885
|
+
"not-checked": "not-checked";
|
|
6886
|
+
}>;
|
|
6887
|
+
}, z.core.$strip>;
|
|
6888
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
6889
|
+
email: z.ZodString;
|
|
6890
|
+
prevEmail: z.ZodString;
|
|
6611
6891
|
}, z.core.$strict>, z.ZodObject<{
|
|
6612
6892
|
email: z.ZodString;
|
|
6613
6893
|
prevEmail: z.ZodString;
|
|
6894
|
+
actorId: z.ZodString;
|
|
6895
|
+
actorType: z.ZodEnum<{
|
|
6896
|
+
admin: "admin";
|
|
6897
|
+
}>;
|
|
6898
|
+
actorName: z.ZodOptional<z.ZodString>;
|
|
6899
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
6900
|
+
username: z.ZodString;
|
|
6901
|
+
actorId: z.ZodString;
|
|
6902
|
+
actorType: z.ZodEnum<{
|
|
6903
|
+
admin: "admin";
|
|
6904
|
+
}>;
|
|
6905
|
+
actorName: z.ZodOptional<z.ZodString>;
|
|
6614
6906
|
}, z.core.$strict>, z.ZodObject<{
|
|
6615
6907
|
projectId: z.ZodString;
|
|
6616
6908
|
projectName: z.ZodString;
|
|
@@ -6748,12 +7040,12 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6748
7040
|
rtTTL: z.ZodOptional<z.ZodNumber>;
|
|
6749
7041
|
scope: z.ZodString;
|
|
6750
7042
|
authMethod: z.ZodEnum<{
|
|
7043
|
+
github: "github";
|
|
7044
|
+
gitlab: "gitlab";
|
|
7045
|
+
bitbucket: "bitbucket";
|
|
6751
7046
|
email: "email";
|
|
6752
7047
|
app: "app";
|
|
6753
7048
|
chatgpt: "chatgpt";
|
|
6754
|
-
bitbucket: "bitbucket";
|
|
6755
|
-
github: "github";
|
|
6756
|
-
gitlab: "gitlab";
|
|
6757
7049
|
apple: "apple";
|
|
6758
7050
|
google: "google";
|
|
6759
7051
|
saml: "saml";
|
|
@@ -6888,12 +7180,12 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6888
7180
|
tokenSuffix: z.ZodOptional<z.ZodString>;
|
|
6889
7181
|
tokenName: z.ZodString;
|
|
6890
7182
|
origin: z.ZodEnum<{
|
|
7183
|
+
github: "github";
|
|
7184
|
+
gitlab: "gitlab";
|
|
7185
|
+
bitbucket: "bitbucket";
|
|
6891
7186
|
email: "email";
|
|
6892
7187
|
app: "app";
|
|
6893
7188
|
chatgpt: "chatgpt";
|
|
6894
|
-
bitbucket: "bitbucket";
|
|
6895
|
-
github: "github";
|
|
6896
|
-
gitlab: "gitlab";
|
|
6897
7189
|
apple: "apple";
|
|
6898
7190
|
google: "google";
|
|
6899
7191
|
saml: "saml";
|
|
@@ -6908,8 +7200,8 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6908
7200
|
}>;
|
|
6909
7201
|
scope: z.ZodEnum<{
|
|
6910
7202
|
user: "user";
|
|
6911
|
-
team: "team";
|
|
6912
7203
|
project: "project";
|
|
7204
|
+
team: "team";
|
|
6913
7205
|
}>;
|
|
6914
7206
|
teamId: z.ZodOptional<z.ZodString>;
|
|
6915
7207
|
teamSlug: z.ZodOptional<z.ZodString>;
|
|
@@ -6948,12 +7240,12 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6948
7240
|
tokenName: z.ZodString;
|
|
6949
7241
|
actorTokenId: z.ZodString;
|
|
6950
7242
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
7243
|
+
github: "github";
|
|
7244
|
+
gitlab: "gitlab";
|
|
7245
|
+
bitbucket: "bitbucket";
|
|
6951
7246
|
email: "email";
|
|
6952
7247
|
app: "app";
|
|
6953
7248
|
chatgpt: "chatgpt";
|
|
6954
|
-
bitbucket: "bitbucket";
|
|
6955
|
-
github: "github";
|
|
6956
|
-
gitlab: "gitlab";
|
|
6957
7249
|
apple: "apple";
|
|
6958
7250
|
google: "google";
|
|
6959
7251
|
saml: "saml";
|
|
@@ -7031,6 +7323,15 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
7031
7323
|
"access-group-updated": "access-group-updated";
|
|
7032
7324
|
"access-group-user-added": "access-group-user-added";
|
|
7033
7325
|
"access-group-user-removed": "access-group-user-removed";
|
|
7326
|
+
"admin-agentic-provisioning-account-unlinked": "admin-agentic-provisioning-account-unlinked";
|
|
7327
|
+
"admin-plan-updated": "admin-plan-updated";
|
|
7328
|
+
"admin-secondary-email-added": "admin-secondary-email-added";
|
|
7329
|
+
"admin-secondary-email-removed": "admin-secondary-email-removed";
|
|
7330
|
+
"admin-team-name-update": "admin-team-name-update";
|
|
7331
|
+
"admin-team-slug-update": "admin-team-slug-update";
|
|
7332
|
+
"admin-user-delete": "admin-user-delete";
|
|
7333
|
+
"admin-user-primary-email-updated": "admin-user-primary-email-updated";
|
|
7334
|
+
"admin-username-updated": "admin-username-updated";
|
|
7034
7335
|
"agentic-provisioning-account-blocked": "agentic-provisioning-account-blocked";
|
|
7035
7336
|
"agentic-provisioning-account-linked": "agentic-provisioning-account-linked";
|
|
7036
7337
|
"agentic-provisioning-account-relinked": "agentic-provisioning-account-relinked";
|
|
@@ -7253,6 +7554,7 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
7253
7554
|
"git-integration-repo-push": "git-integration-repo-push";
|
|
7254
7555
|
git_account_integration_link_added: "git_account_integration_link_added";
|
|
7255
7556
|
"instant-rollback-created": "instant-rollback-created";
|
|
7557
|
+
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated";
|
|
7256
7558
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed";
|
|
7257
7559
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed";
|
|
7258
7560
|
"integration-configuration-transfer-in-success": "integration-configuration-transfer-in-success";
|
|
@@ -7592,6 +7894,7 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
7592
7894
|
"user-emu-recovery-initiated": "user-emu-recovery-initiated";
|
|
7593
7895
|
"user-emu-toggled": "user-emu-toggled";
|
|
7594
7896
|
"user-mfa-challenge-failed": "user-mfa-challenge-failed";
|
|
7897
|
+
"user-mfa-challenge-initiated": "user-mfa-challenge-initiated";
|
|
7595
7898
|
"user-mfa-challenge-verified": "user-mfa-challenge-verified";
|
|
7596
7899
|
"user-mfa-change-failed": "user-mfa-change-failed";
|
|
7597
7900
|
"user-mfa-configuration-updated": "user-mfa-configuration-updated";
|
|
@@ -7604,6 +7907,7 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
7604
7907
|
"user-phone-removed": "user-phone-removed";
|
|
7605
7908
|
"user-phone-updated": "user-phone-updated";
|
|
7606
7909
|
"user-primary-email-updated": "user-primary-email-updated";
|
|
7910
|
+
"user-provider-email-claim-evaluated": "user-provider-email-claim-evaluated";
|
|
7607
7911
|
"user-sudo-mode-removed": "user-sudo-mode-removed";
|
|
7608
7912
|
"user-token-created": "user-token-created";
|
|
7609
7913
|
"user-token-deleted": "user-token-deleted";
|
|
@@ -7651,11 +7955,13 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
7651
7955
|
observability: "observability";
|
|
7652
7956
|
security: "security";
|
|
7653
7957
|
storage: "storage";
|
|
7958
|
+
v0: "v0";
|
|
7959
|
+
account: "account";
|
|
7960
|
+
project: "project";
|
|
7654
7961
|
integration: "integration";
|
|
7655
7962
|
deployment: "deployment";
|
|
7656
7963
|
domain: "domain";
|
|
7657
7964
|
team: "team";
|
|
7658
|
-
account: "account";
|
|
7659
7965
|
ai: "ai";
|
|
7660
7966
|
"ai-gateway": "ai-gateway";
|
|
7661
7967
|
edge: "edge";
|
|
@@ -7664,8 +7970,6 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
7664
7970
|
firewall: "firewall";
|
|
7665
7971
|
network: "network";
|
|
7666
7972
|
other: "other";
|
|
7667
|
-
project: "project";
|
|
7668
|
-
v0: "v0";
|
|
7669
7973
|
"vercel-app": "vercel-app";
|
|
7670
7974
|
workflow: "workflow";
|
|
7671
7975
|
}>>;
|
|
@@ -7681,6 +7985,15 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
7681
7985
|
"access-group-updated": "access-group-updated";
|
|
7682
7986
|
"access-group-user-added": "access-group-user-added";
|
|
7683
7987
|
"access-group-user-removed": "access-group-user-removed";
|
|
7988
|
+
"admin-agentic-provisioning-account-unlinked": "admin-agentic-provisioning-account-unlinked";
|
|
7989
|
+
"admin-plan-updated": "admin-plan-updated";
|
|
7990
|
+
"admin-secondary-email-added": "admin-secondary-email-added";
|
|
7991
|
+
"admin-secondary-email-removed": "admin-secondary-email-removed";
|
|
7992
|
+
"admin-team-name-update": "admin-team-name-update";
|
|
7993
|
+
"admin-team-slug-update": "admin-team-slug-update";
|
|
7994
|
+
"admin-user-delete": "admin-user-delete";
|
|
7995
|
+
"admin-user-primary-email-updated": "admin-user-primary-email-updated";
|
|
7996
|
+
"admin-username-updated": "admin-username-updated";
|
|
7684
7997
|
"agentic-provisioning-account-blocked": "agentic-provisioning-account-blocked";
|
|
7685
7998
|
"agentic-provisioning-account-linked": "agentic-provisioning-account-linked";
|
|
7686
7999
|
"agentic-provisioning-account-relinked": "agentic-provisioning-account-relinked";
|
|
@@ -7903,6 +8216,7 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
7903
8216
|
"git-integration-repo-push": "git-integration-repo-push";
|
|
7904
8217
|
git_account_integration_link_added: "git_account_integration_link_added";
|
|
7905
8218
|
"instant-rollback-created": "instant-rollback-created";
|
|
8219
|
+
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated";
|
|
7906
8220
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed";
|
|
7907
8221
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed";
|
|
7908
8222
|
"integration-configuration-transfer-in-success": "integration-configuration-transfer-in-success";
|
|
@@ -8242,6 +8556,7 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
8242
8556
|
"user-emu-recovery-initiated": "user-emu-recovery-initiated";
|
|
8243
8557
|
"user-emu-toggled": "user-emu-toggled";
|
|
8244
8558
|
"user-mfa-challenge-failed": "user-mfa-challenge-failed";
|
|
8559
|
+
"user-mfa-challenge-initiated": "user-mfa-challenge-initiated";
|
|
8245
8560
|
"user-mfa-challenge-verified": "user-mfa-challenge-verified";
|
|
8246
8561
|
"user-mfa-change-failed": "user-mfa-change-failed";
|
|
8247
8562
|
"user-mfa-configuration-updated": "user-mfa-configuration-updated";
|
|
@@ -8254,6 +8569,7 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
8254
8569
|
"user-phone-removed": "user-phone-removed";
|
|
8255
8570
|
"user-phone-updated": "user-phone-updated";
|
|
8256
8571
|
"user-primary-email-updated": "user-primary-email-updated";
|
|
8572
|
+
"user-provider-email-claim-evaluated": "user-provider-email-claim-evaluated";
|
|
8257
8573
|
"user-sudo-mode-removed": "user-sudo-mode-removed";
|
|
8258
8574
|
"user-token-created": "user-token-created";
|
|
8259
8575
|
"user-token-deleted": "user-token-deleted";
|
|
@@ -8304,11 +8620,13 @@ declare const listEventTypesResponseSchema: z.ZodObject<{
|
|
|
8304
8620
|
observability: "observability";
|
|
8305
8621
|
security: "security";
|
|
8306
8622
|
storage: "storage";
|
|
8623
|
+
v0: "v0";
|
|
8624
|
+
account: "account";
|
|
8625
|
+
project: "project";
|
|
8307
8626
|
integration: "integration";
|
|
8308
8627
|
deployment: "deployment";
|
|
8309
8628
|
domain: "domain";
|
|
8310
8629
|
team: "team";
|
|
8311
|
-
account: "account";
|
|
8312
8630
|
ai: "ai";
|
|
8313
8631
|
"ai-gateway": "ai-gateway";
|
|
8314
8632
|
edge: "edge";
|
|
@@ -8317,8 +8635,6 @@ declare const listEventTypesResponseSchema: z.ZodObject<{
|
|
|
8317
8635
|
firewall: "firewall";
|
|
8318
8636
|
network: "network";
|
|
8319
8637
|
other: "other";
|
|
8320
|
-
project: "project";
|
|
8321
|
-
v0: "v0";
|
|
8322
8638
|
"vercel-app": "vercel-app";
|
|
8323
8639
|
workflow: "workflow";
|
|
8324
8640
|
}>;
|
|
@@ -8399,10 +8715,10 @@ declare const flagSchema: z.ZodObject<{
|
|
|
8399
8715
|
}>;
|
|
8400
8716
|
}, z.core.$strip>>;
|
|
8401
8717
|
status: z.ZodEnum<{
|
|
8718
|
+
running: "running";
|
|
8402
8719
|
closed: "closed";
|
|
8403
8720
|
draft: "draft";
|
|
8404
8721
|
paused: "paused";
|
|
8405
|
-
running: "running";
|
|
8406
8722
|
}>;
|
|
8407
8723
|
}, z.core.$strip>>;
|
|
8408
8724
|
updatedBy: z.ZodOptional<z.ZodString>;
|
|
@@ -8569,8 +8885,8 @@ declare const flagSchema: z.ZodObject<{
|
|
|
8569
8885
|
revision: z.ZodNumber;
|
|
8570
8886
|
seed: z.ZodNumber;
|
|
8571
8887
|
state: z.ZodEnum<{
|
|
8572
|
-
archived: "archived";
|
|
8573
8888
|
active: "active";
|
|
8889
|
+
archived: "archived";
|
|
8574
8890
|
}>;
|
|
8575
8891
|
slug: z.ZodString;
|
|
8576
8892
|
createdAt: z.ZodNumber;
|
|
@@ -8601,8 +8917,8 @@ declare const marketplaceFlagSchema: z.ZodObject<{
|
|
|
8601
8917
|
resourceId: z.ZodString;
|
|
8602
8918
|
integrationConfigurationId: z.ZodString;
|
|
8603
8919
|
state: z.ZodEnum<{
|
|
8604
|
-
archived: "archived";
|
|
8605
8920
|
active: "active";
|
|
8921
|
+
archived: "archived";
|
|
8606
8922
|
}>;
|
|
8607
8923
|
name: z.ZodOptional<z.ZodString>;
|
|
8608
8924
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -8781,8 +9097,8 @@ declare const namedSandboxSchema: z.ZodObject<{
|
|
|
8781
9097
|
currentSessionId: z.ZodString;
|
|
8782
9098
|
status: z.ZodEnum<{
|
|
8783
9099
|
running: "running";
|
|
8784
|
-
stopped: "stopped";
|
|
8785
9100
|
stopping: "stopping";
|
|
9101
|
+
stopped: "stopped";
|
|
8786
9102
|
}>;
|
|
8787
9103
|
statusUpdatedAt: z.ZodNumber;
|
|
8788
9104
|
persistent: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
@@ -8853,8 +9169,8 @@ declare const sessionSchema: z.ZodObject<{
|
|
|
8853
9169
|
timeout: z.ZodNumber;
|
|
8854
9170
|
status: z.ZodEnum<{
|
|
8855
9171
|
running: "running";
|
|
8856
|
-
stopped: "stopped";
|
|
8857
9172
|
stopping: "stopping";
|
|
9173
|
+
stopped: "stopped";
|
|
8858
9174
|
aborted: "aborted";
|
|
8859
9175
|
failed: "failed";
|
|
8860
9176
|
pending: "pending";
|
|
@@ -8929,24 +9245,24 @@ declare const invitedTeamMemberSchema: z.ZodObject<{
|
|
|
8929
9245
|
username: z.ZodString;
|
|
8930
9246
|
email: z.ZodString;
|
|
8931
9247
|
role: z.ZodEnum<{
|
|
8932
|
-
BILLING: "BILLING";
|
|
8933
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
8934
|
-
DEVELOPER: "DEVELOPER";
|
|
8935
|
-
MEMBER: "MEMBER";
|
|
8936
9248
|
OWNER: "OWNER";
|
|
9249
|
+
MEMBER: "MEMBER";
|
|
9250
|
+
DEVELOPER: "DEVELOPER";
|
|
8937
9251
|
SECURITY: "SECURITY";
|
|
9252
|
+
BILLING: "BILLING";
|
|
8938
9253
|
VIEWER: "VIEWER";
|
|
8939
9254
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
9255
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
8940
9256
|
}>;
|
|
8941
9257
|
teamRoles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8942
|
-
BILLING: "BILLING";
|
|
8943
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
8944
|
-
DEVELOPER: "DEVELOPER";
|
|
8945
|
-
MEMBER: "MEMBER";
|
|
8946
9258
|
OWNER: "OWNER";
|
|
9259
|
+
MEMBER: "MEMBER";
|
|
9260
|
+
DEVELOPER: "DEVELOPER";
|
|
8947
9261
|
SECURITY: "SECURITY";
|
|
9262
|
+
BILLING: "BILLING";
|
|
8948
9263
|
VIEWER: "VIEWER";
|
|
8949
9264
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
9265
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
8950
9266
|
}>>>;
|
|
8951
9267
|
teamPermissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8952
9268
|
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf";
|
|
@@ -8965,6 +9281,7 @@ declare const invitedTeamMemberSchema: z.ZodObject<{
|
|
|
8965
9281
|
V0Builder: "V0Builder";
|
|
8966
9282
|
V0Chatter: "V0Chatter";
|
|
8967
9283
|
V0Viewer: "V0Viewer";
|
|
9284
|
+
WorkflowDecryptor: "WorkflowDecryptor";
|
|
8968
9285
|
}>>>;
|
|
8969
9286
|
}, z.core.$strip>;
|
|
8970
9287
|
declare const teamSchema: z.ZodObject<{
|
|
@@ -9007,14 +9324,14 @@ declare const teamSchema: z.ZodObject<{
|
|
|
9007
9324
|
roles: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodUnion<readonly [z.ZodObject<{
|
|
9008
9325
|
accessGroupId: z.ZodString;
|
|
9009
9326
|
}, z.core.$strict>, z.ZodEnum<{
|
|
9010
|
-
BILLING: "BILLING";
|
|
9011
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9012
|
-
DEVELOPER: "DEVELOPER";
|
|
9013
|
-
MEMBER: "MEMBER";
|
|
9014
9327
|
OWNER: "OWNER";
|
|
9328
|
+
MEMBER: "MEMBER";
|
|
9329
|
+
DEVELOPER: "DEVELOPER";
|
|
9015
9330
|
SECURITY: "SECURITY";
|
|
9331
|
+
BILLING: "BILLING";
|
|
9016
9332
|
VIEWER: "VIEWER";
|
|
9017
9333
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
9334
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9018
9335
|
}>]>>>>;
|
|
9019
9336
|
}, z.core.$strip>>;
|
|
9020
9337
|
inviteCode: z.ZodOptional<z.ZodString>;
|
|
@@ -9028,14 +9345,14 @@ declare const teamSchema: z.ZodObject<{
|
|
|
9028
9345
|
description: z.ZodNullable<z.ZodString>;
|
|
9029
9346
|
defaultRoles: z.ZodOptional<z.ZodObject<{
|
|
9030
9347
|
teamRoles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
9031
|
-
BILLING: "BILLING";
|
|
9032
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9033
|
-
DEVELOPER: "DEVELOPER";
|
|
9034
|
-
MEMBER: "MEMBER";
|
|
9035
9348
|
OWNER: "OWNER";
|
|
9349
|
+
MEMBER: "MEMBER";
|
|
9350
|
+
DEVELOPER: "DEVELOPER";
|
|
9036
9351
|
SECURITY: "SECURITY";
|
|
9352
|
+
BILLING: "BILLING";
|
|
9037
9353
|
VIEWER: "VIEWER";
|
|
9038
9354
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
9355
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9039
9356
|
}>>>;
|
|
9040
9357
|
teamPermissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
9041
9358
|
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf";
|
|
@@ -9054,6 +9371,7 @@ declare const teamSchema: z.ZodObject<{
|
|
|
9054
9371
|
V0Builder: "V0Builder";
|
|
9055
9372
|
V0Chatter: "V0Chatter";
|
|
9056
9373
|
V0Viewer: "V0Viewer";
|
|
9374
|
+
WorkflowDecryptor: "WorkflowDecryptor";
|
|
9057
9375
|
}>>>;
|
|
9058
9376
|
}, z.core.$strip>>;
|
|
9059
9377
|
stagingPrefix: z.ZodString;
|
|
@@ -9184,8 +9502,8 @@ declare const teamSchema: z.ZodObject<{
|
|
|
9184
9502
|
gitSources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9185
9503
|
sources: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
9186
9504
|
provider: z.ZodEnum<{
|
|
9187
|
-
bitbucket: "bitbucket";
|
|
9188
9505
|
github: "github";
|
|
9506
|
+
bitbucket: "bitbucket";
|
|
9189
9507
|
}>;
|
|
9190
9508
|
org: z.ZodString;
|
|
9191
9509
|
repo: z.ZodOptional<z.ZodString>;
|
|
@@ -9202,8 +9520,8 @@ declare const teamSchema: z.ZodObject<{
|
|
|
9202
9520
|
system: "system";
|
|
9203
9521
|
}>;
|
|
9204
9522
|
target: z.ZodEnum<{
|
|
9205
|
-
preview: "preview";
|
|
9206
9523
|
production: "production";
|
|
9524
|
+
preview: "preview";
|
|
9207
9525
|
}>;
|
|
9208
9526
|
}, z.core.$strict>, z.ZodObject<{
|
|
9209
9527
|
type: z.ZodEnum<{
|
|
@@ -9214,9 +9532,9 @@ declare const teamSchema: z.ZodObject<{
|
|
|
9214
9532
|
}, z.core.$strip>>>;
|
|
9215
9533
|
deploymentSources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9216
9534
|
sources: z.ZodArray<z.ZodEnum<{
|
|
9217
|
-
integration: "integration";
|
|
9218
9535
|
v0: "v0";
|
|
9219
9536
|
cli: "cli";
|
|
9537
|
+
integration: "integration";
|
|
9220
9538
|
"deploy-hook": "deploy-hook";
|
|
9221
9539
|
git: "git";
|
|
9222
9540
|
"rest-api": "rest-api";
|
|
@@ -9227,8 +9545,8 @@ declare const teamSchema: z.ZodObject<{
|
|
|
9227
9545
|
system: "system";
|
|
9228
9546
|
}>;
|
|
9229
9547
|
target: z.ZodEnum<{
|
|
9230
|
-
preview: "preview";
|
|
9231
9548
|
production: "production";
|
|
9549
|
+
preview: "preview";
|
|
9232
9550
|
}>;
|
|
9233
9551
|
}, z.core.$strict>, z.ZodObject<{
|
|
9234
9552
|
type: z.ZodEnum<{
|
|
@@ -9255,24 +9573,24 @@ declare const teamSchema: z.ZodObject<{
|
|
|
9255
9573
|
confirmed: z.ZodLiteral<true>;
|
|
9256
9574
|
accessRequestedAt: z.ZodOptional<z.ZodNumber>;
|
|
9257
9575
|
role: z.ZodEnum<{
|
|
9258
|
-
BILLING: "BILLING";
|
|
9259
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9260
|
-
DEVELOPER: "DEVELOPER";
|
|
9261
|
-
MEMBER: "MEMBER";
|
|
9262
9576
|
OWNER: "OWNER";
|
|
9577
|
+
MEMBER: "MEMBER";
|
|
9578
|
+
DEVELOPER: "DEVELOPER";
|
|
9263
9579
|
SECURITY: "SECURITY";
|
|
9580
|
+
BILLING: "BILLING";
|
|
9264
9581
|
VIEWER: "VIEWER";
|
|
9265
9582
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
9583
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9266
9584
|
}>;
|
|
9267
9585
|
teamRoles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
9268
|
-
BILLING: "BILLING";
|
|
9269
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9270
|
-
DEVELOPER: "DEVELOPER";
|
|
9271
|
-
MEMBER: "MEMBER";
|
|
9272
9586
|
OWNER: "OWNER";
|
|
9587
|
+
MEMBER: "MEMBER";
|
|
9588
|
+
DEVELOPER: "DEVELOPER";
|
|
9273
9589
|
SECURITY: "SECURITY";
|
|
9590
|
+
BILLING: "BILLING";
|
|
9274
9591
|
VIEWER: "VIEWER";
|
|
9275
9592
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
9593
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9276
9594
|
}>>>;
|
|
9277
9595
|
teamPermissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
9278
9596
|
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf";
|
|
@@ -9291,16 +9609,17 @@ declare const teamSchema: z.ZodObject<{
|
|
|
9291
9609
|
V0Builder: "V0Builder";
|
|
9292
9610
|
V0Chatter: "V0Chatter";
|
|
9293
9611
|
V0Viewer: "V0Viewer";
|
|
9612
|
+
WorkflowDecryptor: "WorkflowDecryptor";
|
|
9294
9613
|
}>>>;
|
|
9295
9614
|
createdAt: z.ZodNumber;
|
|
9296
9615
|
created: z.ZodNumber;
|
|
9297
9616
|
joinedFrom: z.ZodOptional<z.ZodObject<{
|
|
9298
9617
|
origin: z.ZodEnum<{
|
|
9299
9618
|
teams: "teams";
|
|
9300
|
-
link: "link";
|
|
9301
|
-
bitbucket: "bitbucket";
|
|
9302
9619
|
github: "github";
|
|
9303
9620
|
gitlab: "gitlab";
|
|
9621
|
+
bitbucket: "bitbucket";
|
|
9622
|
+
link: "link";
|
|
9304
9623
|
"account-update": "account-update";
|
|
9305
9624
|
dsync: "dsync";
|
|
9306
9625
|
feedback: "feedback";
|
|
@@ -9378,24 +9697,24 @@ declare const teamLimitedSchema: z.ZodObject<{
|
|
|
9378
9697
|
confirmed: z.ZodLiteral<true>;
|
|
9379
9698
|
accessRequestedAt: z.ZodOptional<z.ZodNumber>;
|
|
9380
9699
|
role: z.ZodEnum<{
|
|
9381
|
-
BILLING: "BILLING";
|
|
9382
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9383
|
-
DEVELOPER: "DEVELOPER";
|
|
9384
|
-
MEMBER: "MEMBER";
|
|
9385
9700
|
OWNER: "OWNER";
|
|
9701
|
+
MEMBER: "MEMBER";
|
|
9702
|
+
DEVELOPER: "DEVELOPER";
|
|
9386
9703
|
SECURITY: "SECURITY";
|
|
9704
|
+
BILLING: "BILLING";
|
|
9387
9705
|
VIEWER: "VIEWER";
|
|
9388
9706
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
9707
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9389
9708
|
}>;
|
|
9390
9709
|
teamRoles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
9391
|
-
BILLING: "BILLING";
|
|
9392
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9393
|
-
DEVELOPER: "DEVELOPER";
|
|
9394
|
-
MEMBER: "MEMBER";
|
|
9395
9710
|
OWNER: "OWNER";
|
|
9711
|
+
MEMBER: "MEMBER";
|
|
9712
|
+
DEVELOPER: "DEVELOPER";
|
|
9396
9713
|
SECURITY: "SECURITY";
|
|
9714
|
+
BILLING: "BILLING";
|
|
9397
9715
|
VIEWER: "VIEWER";
|
|
9398
9716
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
9717
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9399
9718
|
}>>>;
|
|
9400
9719
|
teamPermissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
9401
9720
|
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf";
|
|
@@ -9414,16 +9733,17 @@ declare const teamLimitedSchema: z.ZodObject<{
|
|
|
9414
9733
|
V0Builder: "V0Builder";
|
|
9415
9734
|
V0Chatter: "V0Chatter";
|
|
9416
9735
|
V0Viewer: "V0Viewer";
|
|
9736
|
+
WorkflowDecryptor: "WorkflowDecryptor";
|
|
9417
9737
|
}>>>;
|
|
9418
9738
|
createdAt: z.ZodNumber;
|
|
9419
9739
|
created: z.ZodNumber;
|
|
9420
9740
|
joinedFrom: z.ZodOptional<z.ZodObject<{
|
|
9421
9741
|
origin: z.ZodEnum<{
|
|
9422
9742
|
teams: "teams";
|
|
9423
|
-
link: "link";
|
|
9424
|
-
bitbucket: "bitbucket";
|
|
9425
9743
|
github: "github";
|
|
9426
9744
|
gitlab: "gitlab";
|
|
9745
|
+
bitbucket: "bitbucket";
|
|
9746
|
+
link: "link";
|
|
9427
9747
|
"account-update": "account-update";
|
|
9428
9748
|
dsync: "dsync";
|
|
9429
9749
|
feedback: "feedback";
|
|
@@ -9478,12 +9798,12 @@ declare const authTokenSchema: z.ZodObject<{
|
|
|
9478
9798
|
expiresAt: z.ZodNumber;
|
|
9479
9799
|
}, z.core.$strip>>;
|
|
9480
9800
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9801
|
+
github: "github";
|
|
9802
|
+
gitlab: "gitlab";
|
|
9803
|
+
bitbucket: "bitbucket";
|
|
9481
9804
|
email: "email";
|
|
9482
9805
|
app: "app";
|
|
9483
9806
|
chatgpt: "chatgpt";
|
|
9484
|
-
bitbucket: "bitbucket";
|
|
9485
|
-
github: "github";
|
|
9486
|
-
gitlab: "gitlab";
|
|
9487
9807
|
apple: "apple";
|
|
9488
9808
|
google: "google";
|
|
9489
9809
|
saml: "saml";
|
|
@@ -9504,12 +9824,12 @@ declare const authTokenSchema: z.ZodObject<{
|
|
|
9504
9824
|
}>;
|
|
9505
9825
|
teamId: z.ZodString;
|
|
9506
9826
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9827
|
+
github: "github";
|
|
9828
|
+
gitlab: "gitlab";
|
|
9829
|
+
bitbucket: "bitbucket";
|
|
9507
9830
|
email: "email";
|
|
9508
9831
|
app: "app";
|
|
9509
9832
|
chatgpt: "chatgpt";
|
|
9510
|
-
bitbucket: "bitbucket";
|
|
9511
|
-
github: "github";
|
|
9512
|
-
gitlab: "gitlab";
|
|
9513
9833
|
apple: "apple";
|
|
9514
9834
|
google: "google";
|
|
9515
9835
|
saml: "saml";
|
|
@@ -9700,13 +10020,13 @@ declare const authUserSchema: z.ZodObject<{
|
|
|
9700
10020
|
importFlowGitNamespace: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9701
10021
|
importFlowGitNamespaceId: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
9702
10022
|
importFlowGitProvider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
9703
|
-
bitbucket: "bitbucket";
|
|
9704
10023
|
github: "github";
|
|
9705
|
-
"github-custom-host": "github-custom-host";
|
|
9706
10024
|
"github-limited": "github-limited";
|
|
10025
|
+
"github-custom-host": "github-custom-host";
|
|
9707
10026
|
gitlab: "gitlab";
|
|
9708
|
-
|
|
10027
|
+
bitbucket: "bitbucket";
|
|
9709
10028
|
"cursor-origin": "cursor-origin";
|
|
10029
|
+
vercel: "vercel";
|
|
9710
10030
|
}>>>;
|
|
9711
10031
|
preferredScopesAndGitNamespaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9712
10032
|
scopeId: z.ZodString;
|
|
@@ -10390,8 +10710,8 @@ declare const getRedirectsQueryPageSchema: z.ZodOptional<z.ZodInt>;
|
|
|
10390
10710
|
declare const getRedirectsQueryPerPageSchema: z.ZodOptional<z.ZodInt>;
|
|
10391
10711
|
declare const getRedirectsQuerySortBySchema: z.ZodOptional<z.ZodEnum<{
|
|
10392
10712
|
source: "source";
|
|
10393
|
-
statusCode: "statusCode";
|
|
10394
10713
|
destination: "destination";
|
|
10714
|
+
statusCode: "statusCode";
|
|
10395
10715
|
}>>;
|
|
10396
10716
|
declare const getRedirectsQuerySortOrderSchema: z.ZodOptional<z.ZodEnum<{
|
|
10397
10717
|
asc: "asc";
|
|
@@ -10462,11 +10782,11 @@ declare const updateVersionStatus500Schema: z.ZodUnknown;
|
|
|
10462
10782
|
declare const updateVersionResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
10463
10783
|
declare const listProjectChecksPathProjectIdOrNameSchema: z.ZodString;
|
|
10464
10784
|
declare const listProjectChecksQueryBlocksSchema: z.ZodOptional<z.ZodEnum<{
|
|
10465
|
-
none: "none";
|
|
10466
10785
|
"build-start": "build-start";
|
|
10467
10786
|
"deployment-start": "deployment-start";
|
|
10468
10787
|
"deployment-alias": "deployment-alias";
|
|
10469
10788
|
"deployment-promotion": "deployment-promotion";
|
|
10789
|
+
none: "none";
|
|
10470
10790
|
}>>;
|
|
10471
10791
|
declare const listProjectChecksQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
10472
10792
|
declare const listProjectChecksQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
@@ -11563,8 +11883,8 @@ declare const listEventTypesStatus403Schema: z.ZodUnknown;
|
|
|
11563
11883
|
declare const listEventTypesStatus410Schema: z.ZodUnknown;
|
|
11564
11884
|
declare const listFlagsV2PathProjectIdOrNameSchema: z.ZodString;
|
|
11565
11885
|
declare const listFlagsV2QueryStateSchema: z.ZodOptional<z.ZodEnum<{
|
|
11566
|
-
archived: "archived";
|
|
11567
11886
|
active: "active";
|
|
11887
|
+
archived: "archived";
|
|
11568
11888
|
}>>;
|
|
11569
11889
|
declare const listFlagsV2QueryLimitSchema: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
11570
11890
|
declare const listFlagsV2QueryCursorSchema: z.ZodOptional<z.ZodString>;
|
|
@@ -11585,8 +11905,8 @@ declare const listFlagsV2Status410Schema: z.ZodUnknown;
|
|
|
11585
11905
|
declare const listFlagsV2ResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
11586
11906
|
declare const listFlagsPathProjectIdOrNameSchema: z.ZodString;
|
|
11587
11907
|
declare const listFlagsQueryStateSchema: z.ZodOptional<z.ZodEnum<{
|
|
11588
|
-
archived: "archived";
|
|
11589
11908
|
active: "active";
|
|
11909
|
+
archived: "archived";
|
|
11590
11910
|
}>>;
|
|
11591
11911
|
declare const listFlagsQueryWithMetadataSchema: z.ZodOptional<z.ZodBoolean>;
|
|
11592
11912
|
declare const listFlagsQueryLimitSchema: z.ZodOptional<z.ZodInt>;
|
|
@@ -11714,8 +12034,8 @@ declare const listTeamFlagSettingsStatus403Schema: z.ZodUnknown;
|
|
|
11714
12034
|
declare const listTeamFlagSettingsStatus410Schema: z.ZodUnknown;
|
|
11715
12035
|
declare const listTeamFlagSettingsResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
11716
12036
|
declare const listTeamFlagsV2QueryStateSchema: z.ZodOptional<z.ZodEnum<{
|
|
11717
|
-
archived: "archived";
|
|
11718
12037
|
active: "active";
|
|
12038
|
+
archived: "archived";
|
|
11719
12039
|
}>>;
|
|
11720
12040
|
declare const listTeamFlagsV2QueryLimitSchema: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
11721
12041
|
declare const listTeamFlagsV2QueryCursorSchema: z.ZodOptional<z.ZodString>;
|
|
@@ -11739,8 +12059,8 @@ declare const listTeamFlagsV2Status403Schema: z.ZodUnknown;
|
|
|
11739
12059
|
declare const listTeamFlagsV2Status410Schema: z.ZodUnknown;
|
|
11740
12060
|
declare const listTeamFlagsV2ResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
11741
12061
|
declare const listTeamFlagsQueryStateSchema: z.ZodOptional<z.ZodEnum<{
|
|
11742
|
-
archived: "archived";
|
|
11743
12062
|
active: "active";
|
|
12063
|
+
archived: "archived";
|
|
11744
12064
|
}>>;
|
|
11745
12065
|
declare const listTeamFlagsQueryWithMetadataSchema: z.ZodOptional<z.ZodBoolean>;
|
|
11746
12066
|
declare const listTeamFlagsQueryLimitSchema: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
@@ -11875,11 +12195,11 @@ declare const deleteSdkKeyStatus410Schema: z.ZodUnknown;
|
|
|
11875
12195
|
declare const deleteSdkKeyResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
11876
12196
|
declare const gitNamespacesQueryHostSchema: z.ZodOptional<z.ZodString>;
|
|
11877
12197
|
declare const gitNamespacesQueryProviderSchema: z.ZodOptional<z.ZodEnum<{
|
|
11878
|
-
bitbucket: "bitbucket";
|
|
11879
12198
|
github: "github";
|
|
11880
|
-
"github-custom-host": "github-custom-host";
|
|
11881
12199
|
"github-limited": "github-limited";
|
|
12200
|
+
"github-custom-host": "github-custom-host";
|
|
11882
12201
|
gitlab: "gitlab";
|
|
12202
|
+
bitbucket: "bitbucket";
|
|
11883
12203
|
}>>;
|
|
11884
12204
|
declare const gitNamespacesQueryViewerMetadataSchema: z.ZodOptional<z.ZodBoolean>;
|
|
11885
12205
|
declare const gitNamespacesStatus200Schema: z.ZodUnknown;
|
|
@@ -11894,11 +12214,11 @@ declare const gitNamespacesResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.
|
|
|
11894
12214
|
declare const searchRepoQueryQuerySchema: z.ZodOptional<z.ZodString>;
|
|
11895
12215
|
declare const searchRepoQueryNamespaceIdSchema: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
11896
12216
|
declare const searchRepoQueryProviderSchema: z.ZodOptional<z.ZodEnum<{
|
|
11897
|
-
bitbucket: "bitbucket";
|
|
11898
12217
|
github: "github";
|
|
11899
|
-
"github-custom-host": "github-custom-host";
|
|
11900
12218
|
"github-limited": "github-limited";
|
|
12219
|
+
"github-custom-host": "github-custom-host";
|
|
11901
12220
|
gitlab: "gitlab";
|
|
12221
|
+
bitbucket: "bitbucket";
|
|
11902
12222
|
"cursor-origin": "cursor-origin";
|
|
11903
12223
|
}>>;
|
|
11904
12224
|
declare const searchRepoQueryInstallationIdSchema: z.ZodOptional<z.ZodString>;
|
|
@@ -11921,11 +12241,11 @@ declare const getBillingPlansPathProductIdOrSlugSchema: z.ZodString;
|
|
|
11921
12241
|
declare const getBillingPlansQueryMetadataSchema: z.ZodOptional<z.ZodString>;
|
|
11922
12242
|
declare const getBillingPlansQuerySourceSchema: z.ZodOptional<z.ZodEnum<{
|
|
11923
12243
|
marketplace: "marketplace";
|
|
11924
|
-
v0: "v0";
|
|
11925
|
-
external: "external";
|
|
11926
|
-
cli: "cli";
|
|
11927
12244
|
"deploy-button": "deploy-button";
|
|
12245
|
+
external: "external";
|
|
12246
|
+
v0: "v0";
|
|
11928
12247
|
"resource-claims": "resource-claims";
|
|
12248
|
+
cli: "cli";
|
|
11929
12249
|
oauth: "oauth";
|
|
11930
12250
|
backoffice: "backoffice";
|
|
11931
12251
|
"import-recommended-integrations": "import-recommended-integrations";
|
|
@@ -11975,6 +12295,15 @@ declare const getMemberStatus403Schema: z.ZodUnknown;
|
|
|
11975
12295
|
declare const getMemberStatus404Schema: z.ZodUnknown;
|
|
11976
12296
|
declare const getMemberStatus410Schema: z.ZodUnknown;
|
|
11977
12297
|
declare const getMemberResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
12298
|
+
declare const rotateInstallationCredentialPathIntegrationConfigurationIdSchema: z.ZodString;
|
|
12299
|
+
declare const rotateInstallationCredentialStatus200Schema: z.ZodUnknown;
|
|
12300
|
+
declare const rotateInstallationCredentialStatus400Schema: z.ZodUnknown;
|
|
12301
|
+
declare const rotateInstallationCredentialStatus401Schema: z.ZodUnknown;
|
|
12302
|
+
declare const rotateInstallationCredentialStatus403Schema: z.ZodUnknown;
|
|
12303
|
+
declare const rotateInstallationCredentialStatus404Schema: z.ZodUnknown;
|
|
12304
|
+
declare const rotateInstallationCredentialStatus409Schema: z.ZodUnknown;
|
|
12305
|
+
declare const rotateInstallationCredentialStatus410Schema: z.ZodUnknown;
|
|
12306
|
+
declare const rotateInstallationCredentialResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
11978
12307
|
declare const createEventPathIntegrationConfigurationIdSchema: z.ZodString;
|
|
11979
12308
|
declare const createEventStatus201Schema: z.ZodUnknown;
|
|
11980
12309
|
declare const createEventStatus400Schema: z.ZodUnknown;
|
|
@@ -12384,10 +12713,10 @@ declare const getRoutesPathProjectIdSchema: z.ZodString;
|
|
|
12384
12713
|
declare const getRoutesQueryVersionIdSchema: z.ZodOptional<z.ZodString>;
|
|
12385
12714
|
declare const getRoutesQueryQSchema: z.ZodOptional<z.ZodString>;
|
|
12386
12715
|
declare const getRoutesQueryFilterSchema: z.ZodOptional<z.ZodEnum<{
|
|
12387
|
-
transform: "transform";
|
|
12388
12716
|
rewrite: "rewrite";
|
|
12389
12717
|
redirect: "redirect";
|
|
12390
12718
|
set_status: "set_status";
|
|
12719
|
+
transform: "transform";
|
|
12391
12720
|
}>>;
|
|
12392
12721
|
declare const getRoutesQueryDiffSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodEnum<{
|
|
12393
12722
|
only: "only";
|
|
@@ -12666,8 +12995,8 @@ declare const getProjectDomainsQueryProductionSchema: z.ZodDefault<z.ZodOptional
|
|
|
12666
12995
|
false: "false";
|
|
12667
12996
|
}>>>;
|
|
12668
12997
|
declare const getProjectDomainsQueryTargetSchema: z.ZodOptional<z.ZodEnum<{
|
|
12669
|
-
preview: "preview";
|
|
12670
12998
|
production: "production";
|
|
12999
|
+
preview: "preview";
|
|
12671
13000
|
}>>;
|
|
12672
13001
|
declare const getProjectDomainsQueryCustomEnvironmentIdSchema: z.ZodOptional<z.ZodString>;
|
|
12673
13002
|
declare const getProjectDomainsQueryGitBranchSchema: z.ZodOptional<z.ZodString>;
|
|
@@ -13045,8 +13374,8 @@ declare const listSandboxesQueryLimitSchema: z.ZodDefault<z.ZodOptional<z.ZodNum
|
|
|
13045
13374
|
declare const listSandboxesQuerySortBySchema: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
13046
13375
|
createdAt: "createdAt";
|
|
13047
13376
|
name: "name";
|
|
13048
|
-
currentSnapshotId: "currentSnapshotId";
|
|
13049
13377
|
statusUpdatedAt: "statusUpdatedAt";
|
|
13378
|
+
currentSnapshotId: "currentSnapshotId";
|
|
13050
13379
|
}>>>;
|
|
13051
13380
|
declare const listSandboxesQueryNamePrefixSchema: z.ZodOptional<z.ZodString>;
|
|
13052
13381
|
declare const listSandboxesQueryCursorSchema: z.ZodOptional<z.ZodString>;
|
|
@@ -13056,8 +13385,8 @@ declare const listSandboxesQuerySortOrderSchema: z.ZodDefault<z.ZodOptional<z.Zo
|
|
|
13056
13385
|
}>>>;
|
|
13057
13386
|
declare const listSandboxesQueryStatusSchema: z.ZodOptional<z.ZodEnum<{
|
|
13058
13387
|
running: "running";
|
|
13059
|
-
stopped: "stopped";
|
|
13060
13388
|
stopping: "stopping";
|
|
13389
|
+
stopped: "stopped";
|
|
13061
13390
|
}>>;
|
|
13062
13391
|
declare const listSandboxesQueryTagsSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
13063
13392
|
declare const listSandboxesQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
@@ -13089,8 +13418,8 @@ declare const listDrivesQueryLimitSchema: z.ZodDefault<z.ZodOptional<z.ZodNumber
|
|
|
13089
13418
|
declare const listDrivesQueryCursorSchema: z.ZodOptional<z.ZodString>;
|
|
13090
13419
|
declare const listDrivesQuerySortBySchema: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
13091
13420
|
createdAt: "createdAt";
|
|
13092
|
-
updatedAt: "updatedAt";
|
|
13093
13421
|
name: "name";
|
|
13422
|
+
updatedAt: "updatedAt";
|
|
13094
13423
|
}>>>;
|
|
13095
13424
|
declare const listDrivesQueryNamePrefixSchema: z.ZodOptional<z.ZodString>;
|
|
13096
13425
|
declare const listDrivesQuerySortOrderSchema: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
@@ -13400,36 +13729,36 @@ declare const writeSessionFilesStatus422Schema: z.ZodUnknown;
|
|
|
13400
13729
|
declare const writeSessionFilesStatus429Schema: z.ZodUnknown;
|
|
13401
13730
|
declare const writeSessionFilesStatus500Schema: z.ZodUnknown;
|
|
13402
13731
|
declare const writeSessionFilesResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
13403
|
-
declare const
|
|
13404
|
-
declare const
|
|
13405
|
-
declare const
|
|
13406
|
-
declare const
|
|
13407
|
-
declare const
|
|
13408
|
-
declare const
|
|
13409
|
-
declare const
|
|
13410
|
-
declare const
|
|
13411
|
-
declare const
|
|
13412
|
-
declare const
|
|
13413
|
-
declare const
|
|
13414
|
-
declare const
|
|
13415
|
-
declare const
|
|
13416
|
-
declare const
|
|
13417
|
-
declare const
|
|
13418
|
-
declare const
|
|
13419
|
-
declare const
|
|
13420
|
-
declare const
|
|
13421
|
-
declare const
|
|
13422
|
-
declare const
|
|
13423
|
-
declare const
|
|
13424
|
-
declare const
|
|
13425
|
-
declare const
|
|
13426
|
-
declare const
|
|
13427
|
-
declare const
|
|
13428
|
-
declare const
|
|
13429
|
-
declare const
|
|
13430
|
-
declare const
|
|
13431
|
-
declare const
|
|
13432
|
-
declare const
|
|
13732
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV2PathSessionIdSchema: z.ZodString;
|
|
13733
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV2QueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
13734
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV2QuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
13735
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV2Status201Schema: z.ZodUnknown;
|
|
13736
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV2Status400Schema: z.ZodUnknown;
|
|
13737
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV2Status401Schema: z.ZodUnknown;
|
|
13738
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV2Status402Schema: z.ZodUnknown;
|
|
13739
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV2Status403Schema: z.ZodUnknown;
|
|
13740
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV2Status404Schema: z.ZodUnknown;
|
|
13741
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV2Status410Schema: z.ZodUnknown;
|
|
13742
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV2Status422Schema: z.ZodUnknown;
|
|
13743
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV2Status429Schema: z.ZodUnknown;
|
|
13744
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV2Status500Schema: z.ZodUnknown;
|
|
13745
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV2ResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
13746
|
+
declare const createSandboxesByNameForkV2PathNameSchema: z.ZodString;
|
|
13747
|
+
declare const createSandboxesByNameForkV2QueryProjectIdSchema: z.ZodOptional<z.ZodString>;
|
|
13748
|
+
declare const createSandboxesByNameForkV2QueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
13749
|
+
declare const createSandboxesByNameForkV2QuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
13750
|
+
declare const createSandboxesByNameForkV2Status200Schema: z.ZodUnknown;
|
|
13751
|
+
declare const createSandboxesByNameForkV2Status400Schema: z.ZodUnknown;
|
|
13752
|
+
declare const createSandboxesByNameForkV2Status401Schema: z.ZodUnknown;
|
|
13753
|
+
declare const createSandboxesByNameForkV2Status402Schema: z.ZodUnknown;
|
|
13754
|
+
declare const createSandboxesByNameForkV2Status403Schema: z.ZodUnknown;
|
|
13755
|
+
declare const createSandboxesByNameForkV2Status404Schema: z.ZodUnknown;
|
|
13756
|
+
declare const createSandboxesByNameForkV2Status409Schema: z.ZodUnknown;
|
|
13757
|
+
declare const createSandboxesByNameForkV2Status410Schema: z.ZodUnknown;
|
|
13758
|
+
declare const createSandboxesByNameForkV2Status422Schema: z.ZodUnknown;
|
|
13759
|
+
declare const createSandboxesByNameForkV2Status429Schema: z.ZodUnknown;
|
|
13760
|
+
declare const createSandboxesByNameForkV2Status500Schema: z.ZodUnknown;
|
|
13761
|
+
declare const createSandboxesByNameForkV2ResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
13433
13762
|
declare const createSandboxesV3QueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
13434
13763
|
declare const createSandboxesV3QuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
13435
13764
|
declare const createSandboxesV3Status200Schema: z.ZodUnknown;
|
|
@@ -13444,6 +13773,50 @@ declare const createSandboxesV3Status422Schema: z.ZodUnknown;
|
|
|
13444
13773
|
declare const createSandboxesV3Status429Schema: z.ZodUnknown;
|
|
13445
13774
|
declare const createSandboxesV3Status500Schema: z.ZodUnknown;
|
|
13446
13775
|
declare const createSandboxesV3ResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
13776
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV3PathSessionIdSchema: z.ZodString;
|
|
13777
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV3QueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
13778
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV3QuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
13779
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV3Status201Schema: z.ZodUnknown;
|
|
13780
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV3Status400Schema: z.ZodUnknown;
|
|
13781
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV3Status401Schema: z.ZodUnknown;
|
|
13782
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV3Status402Schema: z.ZodUnknown;
|
|
13783
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV3Status403Schema: z.ZodUnknown;
|
|
13784
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV3Status404Schema: z.ZodUnknown;
|
|
13785
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV3Status410Schema: z.ZodUnknown;
|
|
13786
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV3Status422Schema: z.ZodUnknown;
|
|
13787
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV3Status429Schema: z.ZodUnknown;
|
|
13788
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV3Status500Schema: z.ZodUnknown;
|
|
13789
|
+
declare const createSandboxesSessionsBySessionIdSnapshotV3ResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
13790
|
+
declare const createSandboxesByNameForkV3PathNameSchema: z.ZodString;
|
|
13791
|
+
declare const createSandboxesByNameForkV3QueryProjectIdSchema: z.ZodOptional<z.ZodString>;
|
|
13792
|
+
declare const createSandboxesByNameForkV3QueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
13793
|
+
declare const createSandboxesByNameForkV3QuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
13794
|
+
declare const createSandboxesByNameForkV3Status200Schema: z.ZodUnknown;
|
|
13795
|
+
declare const createSandboxesByNameForkV3Status400Schema: z.ZodUnknown;
|
|
13796
|
+
declare const createSandboxesByNameForkV3Status401Schema: z.ZodUnknown;
|
|
13797
|
+
declare const createSandboxesByNameForkV3Status402Schema: z.ZodUnknown;
|
|
13798
|
+
declare const createSandboxesByNameForkV3Status403Schema: z.ZodUnknown;
|
|
13799
|
+
declare const createSandboxesByNameForkV3Status404Schema: z.ZodUnknown;
|
|
13800
|
+
declare const createSandboxesByNameForkV3Status409Schema: z.ZodUnknown;
|
|
13801
|
+
declare const createSandboxesByNameForkV3Status410Schema: z.ZodUnknown;
|
|
13802
|
+
declare const createSandboxesByNameForkV3Status422Schema: z.ZodUnknown;
|
|
13803
|
+
declare const createSandboxesByNameForkV3Status429Schema: z.ZodUnknown;
|
|
13804
|
+
declare const createSandboxesByNameForkV3Status500Schema: z.ZodUnknown;
|
|
13805
|
+
declare const createSandboxesByNameForkV3ResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
13806
|
+
declare const createSandboxesV4QueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
13807
|
+
declare const createSandboxesV4QuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
13808
|
+
declare const createSandboxesV4Status200Schema: z.ZodUnknown;
|
|
13809
|
+
declare const createSandboxesV4Status400Schema: z.ZodUnknown;
|
|
13810
|
+
declare const createSandboxesV4Status401Schema: z.ZodUnknown;
|
|
13811
|
+
declare const createSandboxesV4Status402Schema: z.ZodUnknown;
|
|
13812
|
+
declare const createSandboxesV4Status403Schema: z.ZodUnknown;
|
|
13813
|
+
declare const createSandboxesV4Status404Schema: z.ZodUnknown;
|
|
13814
|
+
declare const createSandboxesV4Status409Schema: z.ZodUnknown;
|
|
13815
|
+
declare const createSandboxesV4Status410Schema: z.ZodUnknown;
|
|
13816
|
+
declare const createSandboxesV4Status422Schema: z.ZodUnknown;
|
|
13817
|
+
declare const createSandboxesV4Status429Schema: z.ZodUnknown;
|
|
13818
|
+
declare const createSandboxesV4Status500Schema: z.ZodUnknown;
|
|
13819
|
+
declare const createSandboxesV4ResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
13447
13820
|
declare const updateAttackChallengeModeQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
13448
13821
|
declare const updateAttackChallengeModeQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
13449
13822
|
declare const updateAttackChallengeModeStatus200Schema: z.ZodUnknown;
|
|
@@ -13642,14 +14015,14 @@ declare const getTeamMembersQuerySinceSchema: z.ZodOptional<z.ZodNumber>;
|
|
|
13642
14015
|
declare const getTeamMembersQueryUntilSchema: z.ZodOptional<z.ZodNumber>;
|
|
13643
14016
|
declare const getTeamMembersQuerySearchSchema: z.ZodOptional<z.ZodString>;
|
|
13644
14017
|
declare const getTeamMembersQueryRoleSchema: z.ZodOptional<z.ZodEnum<{
|
|
13645
|
-
BILLING: "BILLING";
|
|
13646
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
13647
|
-
DEVELOPER: "DEVELOPER";
|
|
13648
|
-
MEMBER: "MEMBER";
|
|
13649
14018
|
OWNER: "OWNER";
|
|
14019
|
+
MEMBER: "MEMBER";
|
|
14020
|
+
DEVELOPER: "DEVELOPER";
|
|
13650
14021
|
SECURITY: "SECURITY";
|
|
14022
|
+
BILLING: "BILLING";
|
|
13651
14023
|
VIEWER: "VIEWER";
|
|
13652
14024
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
14025
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
13653
14026
|
}>>;
|
|
13654
14027
|
declare const getTeamMembersQueryExcludeProjectSchema: z.ZodOptional<z.ZodString>;
|
|
13655
14028
|
declare const getTeamMembersQueryEligibleMembersForProjectIdSchema: z.ZodOptional<z.ZodString>;
|
|
@@ -14453,5 +14826,5 @@ declare const deleteDeploymentStatus404Schema: z.ZodUnknown;
|
|
|
14453
14826
|
declare const deleteDeploymentStatus410Schema: z.ZodUnknown;
|
|
14454
14827
|
declare const deleteDeploymentResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
14455
14828
|
|
|
14456
|
-
export { aCLActionSchema, aPIKeyQuotaSchema, aPIKeySchema, acceptProjectTransferRequestPathCodeSchema, acceptProjectTransferRequestQuerySlugSchema, acceptProjectTransferRequestQueryTeamIdSchema, acceptProjectTransferRequestResponseSchema, acceptProjectTransferRequestStatus202Schema, acceptProjectTransferRequestStatus400Schema, acceptProjectTransferRequestStatus401Schema, acceptProjectTransferRequestStatus403Schema, acceptProjectTransferRequestStatus404Schema, acceptProjectTransferRequestStatus410Schema, acceptProjectTransferRequestStatus422Schema, addBypassIpQueryProjectIdSchema, addBypassIpQuerySlugSchema, addBypassIpQueryTeamIdSchema, addBypassIpResponseSchema, addBypassIpStatus200Schema, addBypassIpStatus400Schema, addBypassIpStatus401Schema, addBypassIpStatus403Schema, addBypassIpStatus404Schema, addBypassIpStatus410Schema, addBypassIpStatus500Schema, addProjectDomainPathIdOrNameSchema, addProjectDomainQuerySlugSchema, addProjectDomainQueryTeamIdSchema, addProjectDomainResponseSchema, addProjectDomainStatus200Schema, addProjectDomainStatus400Schema, addProjectDomainStatus401Schema, addProjectDomainStatus402Schema, addProjectDomainStatus403Schema, addProjectDomainStatus409Schema, addProjectDomainStatus410Schema, addProjectMemberPathIdOrNameSchema, addProjectMemberQuerySlugSchema, addProjectMemberQueryTeamIdSchema, addProjectMemberResponseSchema, addProjectMemberStatus200Schema, addProjectMemberStatus400Schema, addProjectMemberStatus401Schema, addProjectMemberStatus403Schema, addProjectMemberStatus410Schema, addProjectMemberStatus500Schema, addRepositoryPermissionPathIdOrNameSchema, addRepositoryPermissionQueryProjectIdSchema, addRepositoryPermissionQuerySlugSchema, addRepositoryPermissionQueryTeamIdSchema, addRepositoryPermissionResponseSchema, addRepositoryPermissionStatus200Schema, addRepositoryPermissionStatus400Schema, addRepositoryPermissionStatus401Schema, addRepositoryPermissionStatus403Schema, addRepositoryPermissionStatus404Schema, addRepositoryPermissionStatus410Schema, addRoutePathProjectIdSchema, addRouteQuerySlugSchema, addRouteQueryTeamIdSchema, addRouteResponseSchema, addRouteStatus200Schema, addRouteStatus400Schema, addRouteStatus401Schema, addRouteStatus403Schema, addRouteStatus409Schema, addRouteStatus410Schema, addRouteStatus500Schema, additionalContactInfoRequiredSchema, aggregateEventsQueryBySchema, aggregateEventsQueryFilterSchema, aggregateEventsQueryLimitSchema, aggregateEventsQueryProjectIdSchema, aggregateEventsQuerySinceSchema, aggregateEventsQuerySlugSchema, aggregateEventsQueryTeamIdSchema, aggregateEventsQueryUntilSchema, aggregateEventsResponseSchema, aggregateEventsStatus200Schema, aggregateEventsStatus400Schema, aggregateEventsStatus401Schema, aggregateEventsStatus402Schema, aggregateEventsStatus403Schema, aggregateEventsStatus410Schema, aggregatePageviewsQueryBySchema, aggregatePageviewsQueryFilterSchema, aggregatePageviewsQueryLimitSchema, aggregatePageviewsQueryProjectIdSchema, aggregatePageviewsQuerySinceSchema, aggregatePageviewsQuerySlugSchema, aggregatePageviewsQueryTeamIdSchema, aggregatePageviewsQueryUntilSchema, aggregatePageviewsResponseSchema, aggregatePageviewsStatus200Schema, aggregatePageviewsStatus400Schema, aggregatePageviewsStatus401Schema, aggregatePageviewsStatus402Schema, aggregatePageviewsStatus403Schema, aggregatePageviewsStatus410Schema, aiGatewayRuleListSchema, aiGatewayRuleSchema, aiGatewayVirtualModelConfigListSchema, aiGatewayVirtualModelConfigSchema, approveRollingReleaseStagePathIdOrNameSchema, approveRollingReleaseStageQuerySlugSchema, approveRollingReleaseStageQueryTeamIdSchema, approveRollingReleaseStageResponseSchema, approveRollingReleaseStageStatus200Schema, approveRollingReleaseStageStatus400Schema, approveRollingReleaseStageStatus401Schema, approveRollingReleaseStageStatus403Schema, approveRollingReleaseStageStatus404Schema, approveRollingReleaseStageStatus410Schema, approveRollingReleaseStageStatus500Schema, artifactQueryQuerySlugSchema, artifactQueryQueryTeamIdSchema, artifactQueryResponseSchema, artifactQueryStatus200Schema, artifactQueryStatus400Schema, artifactQueryStatus401Schema, artifactQueryStatus402Schema, artifactQueryStatus403Schema, artifactQueryStatus410Schema, assignAliasPathIdSchema, assignAliasQuerySlugSchema, assignAliasQueryTeamIdSchema, assignAliasResponseSchema, assignAliasStatus200Schema, assignAliasStatus400Schema, assignAliasStatus401Schema, assignAliasStatus402Schema, assignAliasStatus403Schema, assignAliasStatus404Schema, assignAliasStatus409Schema, assignAliasStatus410Schema, authTokenSchema, authUserLimitedSchema, authUserSchema, badRequestSchema, batchRemoveProjectEnvPathIdOrNameSchema, batchRemoveProjectEnvQuerySlugSchema, batchRemoveProjectEnvQueryTeamIdSchema, batchRemoveProjectEnvResponseSchema, batchRemoveProjectEnvStatus200Schema, batchRemoveProjectEnvStatus400Schema, batchRemoveProjectEnvStatus401Schema, batchRemoveProjectEnvStatus403Schema, batchRemoveProjectEnvStatus404Schema, batchRemoveProjectEnvStatus409Schema, batchRemoveProjectEnvStatus410Schema, boughtTooRecentlySchema, buyCreditsQuerySlugSchema, buyCreditsQuerySourceSchema, buyCreditsQueryTeamIdSchema, buyCreditsResponseSchema, buyCreditsStatus200Schema, buyCreditsStatus400Schema, buyCreditsStatus401Schema, buyCreditsStatus402Schema, buyCreditsStatus403Schema, buyCreditsStatus404Schema, buyCreditsStatus410Schema, buyCreditsStatus500Schema, buyDomainsQueryTeamIdSchema, buyDomainsResponseSchema, buyDomainsStatus200Schema, buyDomainsStatus400Schema, buyDomainsStatus401Schema, buyDomainsStatus403Schema, buyDomainsStatus429Schema, buyDomainsStatus500Schema, buySingleDomainPathDomainSchema, buySingleDomainQueryTeamIdSchema, buySingleDomainResponseSchema, buySingleDomainStatus200Schema, buySingleDomainStatus400Schema, buySingleDomainStatus401Schema, buySingleDomainStatus403Schema, buySingleDomainStatus429Schema, buySingleDomainStatus500Schema, cancelDeploymentPathIdSchema, cancelDeploymentQuerySlugSchema, cancelDeploymentQueryTeamIdSchema, cancelDeploymentResponseSchema, cancelDeploymentStatus200Schema, cancelDeploymentStatus400Schema, cancelDeploymentStatus401Schema, cancelDeploymentStatus403Schema, cancelDeploymentStatus404Schema, cancelDeploymentStatus410Schema, claimDomainOwnershipPathDomainSchema, claimDomainOwnershipQuerySlugSchema, claimDomainOwnershipQueryTeamIdSchema, claimDomainOwnershipResponseSchema, claimDomainOwnershipStatus200Schema, claimDomainOwnershipStatus400Schema, claimDomainOwnershipStatus401Schema, claimDomainOwnershipStatus403Schema, claimDomainOwnershipStatus404Schema, claimDomainOwnershipStatus410Schema, clearRepositoryPermissionsPathIdOrNameSchema, clearRepositoryPermissionsQueryProjectIdSchema, clearRepositoryPermissionsQuerySlugSchema, clearRepositoryPermissionsQueryTeamIdSchema, clearRepositoryPermissionsResponseSchema, clearRepositoryPermissionsStatus204Schema, clearRepositoryPermissionsStatus400Schema, clearRepositoryPermissionsStatus401Schema, clearRepositoryPermissionsStatus403Schema, clearRepositoryPermissionsStatus404Schema, clearRepositoryPermissionsStatus410Schema, completeRollingReleasePathIdOrNameSchema, completeRollingReleaseQuerySlugSchema, completeRollingReleaseQueryTeamIdSchema, completeRollingReleaseResponseSchema, completeRollingReleaseStatus200Schema, completeRollingReleaseStatus400Schema, completeRollingReleaseStatus401Schema, completeRollingReleaseStatus403Schema, completeRollingReleaseStatus404Schema, completeRollingReleaseStatus410Schema, connectIntegrationResourceToProjectPathIntegrationConfigurationIdSchema, connectIntegrationResourceToProjectPathResourceIdSchema, connectIntegrationResourceToProjectQuerySlugSchema, connectIntegrationResourceToProjectQueryTeamIdSchema, connectIntegrationResourceToProjectResponseSchema, connectIntegrationResourceToProjectStatus201Schema, connectIntegrationResourceToProjectStatus400Schema, connectIntegrationResourceToProjectStatus401Schema, connectIntegrationResourceToProjectStatus403Schema, connectIntegrationResourceToProjectStatus404Schema, connectIntegrationResourceToProjectStatus410Schema, contactPendingVerificationSchema, contactVerifiedSchema, countEventsQueryFilterSchema, countEventsQueryProjectIdSchema, countEventsQuerySinceSchema, countEventsQuerySlugSchema, countEventsQueryTeamIdSchema, countEventsQueryUntilSchema, countEventsResponseSchema, countEventsStatus200Schema, countEventsStatus400Schema, countEventsStatus401Schema, countEventsStatus402Schema, countEventsStatus403Schema, countEventsStatus410Schema, countPageviewsQueryFilterSchema, countPageviewsQueryProjectIdSchema, countPageviewsQuerySinceSchema, countPageviewsQuerySlugSchema, countPageviewsQueryTeamIdSchema, countPageviewsQueryUntilSchema, countPageviewsResponseSchema, countPageviewsStatus200Schema, countPageviewsStatus400Schema, countPageviewsStatus401Schema, countPageviewsStatus402Schema, countPageviewsStatus403Schema, countPageviewsStatus410Schema, countryCodeSchema, createAccessGroupProjectPathAccessGroupIdOrNameSchema, createAccessGroupProjectQuerySlugSchema, createAccessGroupProjectQueryTeamIdSchema, createAccessGroupProjectResponseSchema, createAccessGroupProjectStatus200Schema, createAccessGroupProjectStatus400Schema, createAccessGroupProjectStatus401Schema, createAccessGroupProjectStatus403Schema, createAccessGroupProjectStatus410Schema, createAccessGroupQuerySlugSchema, createAccessGroupQueryTeamIdSchema, createAccessGroupResponseSchema, createAccessGroupStatus200Schema, createAccessGroupStatus400Schema, createAccessGroupStatus401Schema, createAccessGroupStatus403Schema, createAccessGroupStatus410Schema, createAiGatewayRuleQuerySlugSchema, createAiGatewayRuleQueryTeamIdSchema, createAiGatewayRuleResponseSchema, createAiGatewayRuleStatus201Schema, createAiGatewayRuleStatus400Schema, createAiGatewayRuleStatus401Schema, createAiGatewayRuleStatus403Schema, createAiGatewayRuleStatus409Schema, createAiGatewayRuleStatus410Schema, createAiGatewayRuleStatus500Schema, createAiGatewayVirtualModelConfigQuerySlugSchema, createAiGatewayVirtualModelConfigQueryTeamIdSchema, createAiGatewayVirtualModelConfigResponseSchema, createAiGatewayVirtualModelConfigStatus201Schema, createAiGatewayVirtualModelConfigStatus400Schema, createAiGatewayVirtualModelConfigStatus401Schema, createAiGatewayVirtualModelConfigStatus403Schema, createAiGatewayVirtualModelConfigStatus409Schema, createAiGatewayVirtualModelConfigStatus410Schema, createAiGatewayVirtualModelConfigStatus429Schema, createAiGatewayVirtualModelConfigStatus500Schema, createApiKeysResponseSchema, createApiKeysStatus200Schema, createApiKeysStatus400Schema, createApiKeysStatus401Schema, createApiKeysStatus403Schema, createApiKeysStatus409Schema, createApiKeysStatus410Schema, createApiKeysStatus429Schema, createApiKeysStatus500Schema, createAuthTokenQuerySlugSchema, createAuthTokenQueryTeamIdSchema, createAuthTokenResponseSchema, createAuthTokenStatus200Schema, createAuthTokenStatus400Schema, createAuthTokenStatus401Schema, createAuthTokenStatus403Schema, createAuthTokenStatus404Schema, createAuthTokenStatus410Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathProjectSlugSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathRepositoryNameSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathTeamSlugSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryFromSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryMountSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsResponseSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus202Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus400Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus401Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus402Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus403Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus404Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus410Schema, createCheckPathDeploymentIdSchema, createCheckQuerySlugSchema, createCheckQueryTeamIdSchema, createCheckResponseSchema, createCheckStatus200Schema, createCheckStatus400Schema, createCheckStatus401Schema, createCheckStatus403Schema, createCheckStatus404Schema, createCheckStatus410Schema, createConfigurableLogDrainQuerySlugSchema, createConfigurableLogDrainQueryTeamIdSchema, createConfigurableLogDrainResponseSchema, createConfigurableLogDrainStatus200Schema, createConfigurableLogDrainStatus400Schema, createConfigurableLogDrainStatus401Schema, createConfigurableLogDrainStatus403Schema, createConfigurableLogDrainStatus410Schema, createConnectorAuthorizationRequestPathConnectorSchema, createConnectorAuthorizationRequestResponseSchema, createConnectorAuthorizationRequestStatus200Schema, createConnectorAuthorizationRequestStatus400Schema, createConnectorAuthorizationRequestStatus401Schema, createConnectorAuthorizationRequestStatus403Schema, createConnectorAuthorizationRequestStatus404Schema, createConnectorAuthorizationRequestStatus410Schema, createConnectorInstallationRequestPathConnectorSchema, createConnectorInstallationRequestResponseSchema, createConnectorInstallationRequestStatus200Schema, createConnectorInstallationRequestStatus400Schema, createConnectorInstallationRequestStatus401Schema, createConnectorInstallationRequestStatus403Schema, createConnectorInstallationRequestStatus404Schema, createConnectorInstallationRequestStatus410Schema, createConnectorInstallationRequestStatus422Schema, createConnectorResponseSchema, createConnectorStatus201Schema, createConnectorStatus400Schema, createConnectorStatus401Schema, createConnectorStatus403Schema, createConnectorStatus404Schema, createConnectorStatus409Schema, createConnectorStatus410Schema, createConnectorStatus422Schema, createConnectorStatus500Schema, createConnectorStatus502Schema, createCustomEnvironmentPathIdOrNameSchema, createCustomEnvironmentQuerySlugSchema, createCustomEnvironmentQueryTeamIdSchema, createCustomEnvironmentResponseSchema, createCustomEnvironmentStatus201Schema, createCustomEnvironmentStatus400Schema, createCustomEnvironmentStatus401Schema, createCustomEnvironmentStatus402Schema, createCustomEnvironmentStatus403Schema, createCustomEnvironmentStatus410Schema, createCustomEnvironmentStatus500Schema, createDeploymentCheckRunPathDeploymentIdSchema, createDeploymentCheckRunQuerySlugSchema, createDeploymentCheckRunQueryTeamIdSchema, createDeploymentCheckRunResponseSchema, createDeploymentCheckRunStatus200Schema, createDeploymentCheckRunStatus400Schema, createDeploymentCheckRunStatus401Schema, createDeploymentCheckRunStatus403Schema, createDeploymentCheckRunStatus404Schema, createDeploymentCheckRunStatus410Schema, createDeploymentCheckRunStatus500Schema, createDeploymentQueryForceNewSchema, createDeploymentQuerySkipAutoDetectionConfirmationSchema, createDeploymentQuerySlugSchema, createDeploymentQueryTeamIdSchema, createDeploymentResponseSchema, createDeploymentStatus200Schema, createDeploymentStatus400Schema, createDeploymentStatus401Schema, createDeploymentStatus402Schema, createDeploymentStatus403Schema, createDeploymentStatus404Schema, createDeploymentStatus409Schema, createDeploymentStatus410Schema, createDeploymentStatus426Schema, createDeploymentStatus429Schema, createDeploymentStatus500Schema, createDeploymentStatus503Schema, createDrainQuerySlugSchema, createDrainQueryTeamIdSchema, createDrainResponseSchema, createDrainStatus200Schema, createDrainStatus400Schema, createDrainStatus401Schema, createDrainStatus402Schema, createDrainStatus403Schema, createDrainStatus410Schema, createEdgeConfigQuerySlugSchema, createEdgeConfigQueryTeamIdSchema, createEdgeConfigResponseSchema, createEdgeConfigStatus201Schema, createEdgeConfigStatus400Schema, createEdgeConfigStatus401Schema, createEdgeConfigStatus402Schema, createEdgeConfigStatus403Schema, createEdgeConfigStatus410Schema, createEdgeConfigTokenPathEdgeConfigIdSchema, createEdgeConfigTokenQuerySlugSchema, createEdgeConfigTokenQueryTeamIdSchema, createEdgeConfigTokenResponseSchema, createEdgeConfigTokenStatus201Schema, createEdgeConfigTokenStatus400Schema, createEdgeConfigTokenStatus401Schema, createEdgeConfigTokenStatus402Schema, createEdgeConfigTokenStatus403Schema, createEdgeConfigTokenStatus404Schema, createEdgeConfigTokenStatus409Schema, createEdgeConfigTokenStatus410Schema, createEventPathIntegrationConfigurationIdSchema, createEventResponseSchema, createEventStatus201Schema, createEventStatus400Schema, createEventStatus401Schema, createEventStatus403Schema, createEventStatus404Schema, createEventStatus410Schema, createFlagPathProjectIdOrNameSchema, createFlagQuerySlugSchema, createFlagQueryTeamIdSchema, createFlagResponseSchema, createFlagSegmentPathProjectIdOrNameSchema, createFlagSegmentQuerySlugSchema, createFlagSegmentQueryTeamIdSchema, createFlagSegmentResponseSchema, createFlagSegmentStatus201Schema, createFlagSegmentStatus400Schema, createFlagSegmentStatus401Schema, createFlagSegmentStatus402Schema, createFlagSegmentStatus403Schema, createFlagSegmentStatus404Schema, createFlagSegmentStatus409Schema, createFlagSegmentStatus410Schema, createFlagStatus201Schema, createFlagStatus400Schema, createFlagStatus401Schema, createFlagStatus402Schema, createFlagStatus403Schema, createFlagStatus404Schema, createFlagStatus409Schema, createFlagStatus410Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsPathIntegrationConfigurationIdSchema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsPathResourceIdSchema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsResponseSchema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus204Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus400Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus401Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus403Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus404Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus410Schema, createIntegrationStoreDirectQuerySlugSchema, createIntegrationStoreDirectQueryTeamIdSchema, createIntegrationStoreDirectResponseSchema, createIntegrationStoreDirectStatus200Schema, createIntegrationStoreDirectStatus400Schema, createIntegrationStoreDirectStatus401Schema, createIntegrationStoreDirectStatus402Schema, createIntegrationStoreDirectStatus403Schema, createIntegrationStoreDirectStatus404Schema, createIntegrationStoreDirectStatus409Schema, createIntegrationStoreDirectStatus410Schema, createIntegrationStoreDirectStatus429Schema, createIntegrationStoreDirectStatus500Schema, createLogDrainQuerySlugSchema, createLogDrainQueryTeamIdSchema, createLogDrainResponseSchema, createLogDrainStatus200Schema, createLogDrainStatus400Schema, createLogDrainStatus401Schema, createLogDrainStatus403Schema, createLogDrainStatus410Schema, createMicrofrontendsGroupWithApplicationsQuerySlugSchema, createMicrofrontendsGroupWithApplicationsQueryTeamIdSchema, createMicrofrontendsGroupWithApplicationsResponseSchema, createMicrofrontendsGroupWithApplicationsStatus200Schema, createMicrofrontendsGroupWithApplicationsStatus400Schema, createMicrofrontendsGroupWithApplicationsStatus401Schema, createMicrofrontendsGroupWithApplicationsStatus403Schema, createMicrofrontendsGroupWithApplicationsStatus410Schema, createMicrofrontendsGroupWithApplicationsStatus500Schema, createNetworkQuerySlugSchema, createNetworkQueryTeamIdSchema, createNetworkResponseSchema, createNetworkStatus201Schema, createNetworkStatus400Schema, createNetworkStatus401Schema, createNetworkStatus402Schema, createNetworkStatus403Schema, createNetworkStatus409Schema, createNetworkStatus410Schema, createObservabilityQueryResponseSchema, createObservabilityQueryStatus200Schema, createObservabilityQueryStatus400Schema, createObservabilityQueryStatus401Schema, createObservabilityQueryStatus402Schema, createObservabilityQueryStatus403Schema, createObservabilityQueryStatus408Schema, createObservabilityQueryStatus410Schema, createOrTransferDomainQuerySlugSchema, createOrTransferDomainQueryTeamIdSchema, createOrTransferDomainResponseSchema, createOrTransferDomainStatus200Schema, createOrTransferDomainStatus400Schema, createOrTransferDomainStatus401Schema, createOrTransferDomainStatus402Schema, createOrTransferDomainStatus403Schema, createOrTransferDomainStatus404Schema, createOrTransferDomainStatus409Schema, createOrTransferDomainStatus410Schema, createProjectCheckPathProjectIdOrNameSchema, createProjectCheckQuerySlugSchema, createProjectCheckQueryTeamIdSchema, createProjectCheckResponseSchema, createProjectCheckStatus200Schema, createProjectCheckStatus400Schema, createProjectCheckStatus401Schema, createProjectCheckStatus403Schema, createProjectCheckStatus410Schema, createProjectCheckStatus500Schema, createProjectEnvPathIdOrNameSchema, createProjectEnvQuerySlugSchema, createProjectEnvQueryTeamIdSchema, createProjectEnvQueryUpsertSchema, createProjectEnvResponseSchema, createProjectEnvStatus201Schema, createProjectEnvStatus400Schema, createProjectEnvStatus401Schema, createProjectEnvStatus402Schema, createProjectEnvStatus403Schema, createProjectEnvStatus404Schema, createProjectEnvStatus409Schema, createProjectEnvStatus410Schema, createProjectEnvStatus429Schema, createProjectEnvStatus500Schema, createProjectQuerySlugSchema, createProjectQueryTeamIdSchema, createProjectResponseSchema, createProjectStatus200Schema, createProjectStatus400Schema, createProjectStatus401Schema, createProjectStatus402Schema, createProjectStatus403Schema, createProjectStatus404Schema, createProjectStatus409Schema, createProjectStatus410Schema, createProjectStatus428Schema, createProjectStatus429Schema, createProjectStatus500Schema, createProjectTransferRequestPathIdOrNameSchema, createProjectTransferRequestQuerySlugSchema, createProjectTransferRequestQueryTeamIdSchema, createProjectTransferRequestResponseSchema, createProjectTransferRequestStatus200Schema, createProjectTransferRequestStatus400Schema, createProjectTransferRequestStatus401Schema, createProjectTransferRequestStatus403Schema, createProjectTransferRequestStatus410Schema, createRecordPathDomainSchema, createRecordQuerySlugSchema, createRecordQueryTeamIdSchema, createRecordResponseSchema, createRecordStatus200Schema, createRecordStatus400Schema, createRecordStatus401Schema, createRecordStatus402Schema, createRecordStatus403Schema, createRecordStatus404Schema, createRecordStatus409Schema, createRecordStatus410Schema, createRepositoryQuerySlugSchema, createRepositoryQueryTeamIdSchema, createRepositoryResponseSchema, createRepositoryStatus200Schema, createRepositoryStatus400Schema, createRepositoryStatus401Schema, createRepositoryStatus402Schema, createRepositoryStatus403Schema, createRepositoryStatus404Schema, createRepositoryStatus409Schema, createRepositoryStatus410Schema, createSandboxesByNameForkPathNameSchema, createSandboxesByNameForkQueryProjectIdSchema, createSandboxesByNameForkQuerySlugSchema, createSandboxesByNameForkQueryTeamIdSchema, createSandboxesByNameForkResponseSchema, createSandboxesByNameForkStatus200Schema, createSandboxesByNameForkStatus400Schema, createSandboxesByNameForkStatus401Schema, createSandboxesByNameForkStatus402Schema, createSandboxesByNameForkStatus403Schema, createSandboxesByNameForkStatus404Schema, createSandboxesByNameForkStatus409Schema, createSandboxesByNameForkStatus410Schema, createSandboxesByNameForkStatus422Schema, createSandboxesByNameForkStatus429Schema, createSandboxesByNameForkStatus500Schema, createSandboxesV2QuerySlugSchema, createSandboxesV2QueryTeamIdSchema, createSandboxesV2ResponseSchema, createSandboxesV2Status200Schema, createSandboxesV2Status400Schema, createSandboxesV2Status401Schema, createSandboxesV2Status402Schema, createSandboxesV2Status403Schema, createSandboxesV2Status404Schema, createSandboxesV2Status409Schema, createSandboxesV2Status410Schema, createSandboxesV2Status422Schema, createSandboxesV2Status429Schema, createSandboxesV2Status500Schema, createSandboxesV3QuerySlugSchema, createSandboxesV3QueryTeamIdSchema, createSandboxesV3ResponseSchema, createSandboxesV3Status200Schema, createSandboxesV3Status400Schema, createSandboxesV3Status401Schema, createSandboxesV3Status402Schema, createSandboxesV3Status403Schema, createSandboxesV3Status404Schema, createSandboxesV3Status409Schema, createSandboxesV3Status410Schema, createSandboxesV3Status422Schema, createSandboxesV3Status429Schema, createSandboxesV3Status500Schema, createSdkKeyPathProjectIdOrNameSchema, createSdkKeyQuerySlugSchema, createSdkKeyQueryTeamIdSchema, createSdkKeyResponseSchema, createSdkKeyStatus200Schema, createSdkKeyStatus400Schema, createSdkKeyStatus401Schema, createSdkKeyStatus402Schema, createSdkKeyStatus403Schema, createSdkKeyStatus404Schema, createSdkKeyStatus409Schema, createSdkKeyStatus410Schema, createSecurityFirewallConfigByConfigVersionActivatePathConfigVersionSchema, createSecurityFirewallConfigByConfigVersionActivateResponseSchema, createSecurityFirewallConfigByConfigVersionActivateStatus200Schema, createSecurityFirewallConfigByConfigVersionActivateStatus400Schema, createSecurityFirewallConfigByConfigVersionActivateStatus401Schema, createSecurityFirewallConfigByConfigVersionActivateStatus402Schema, createSecurityFirewallConfigByConfigVersionActivateStatus403Schema, createSecurityFirewallConfigByConfigVersionActivateStatus404Schema, createSecurityFirewallConfigByConfigVersionActivateStatus410Schema, createSecurityFirewallConfigByConfigVersionActivateStatus500Schema, createSessionDirectoryPathSessionIdSchema, createSessionDirectoryQuerySlugSchema, createSessionDirectoryQueryTeamIdSchema, createSessionDirectoryResponseSchema, createSessionDirectoryStatus200Schema, createSessionDirectoryStatus400Schema, createSessionDirectoryStatus401Schema, createSessionDirectoryStatus403Schema, createSessionDirectoryStatus404Schema, createSessionDirectoryStatus410Schema, createSessionDirectoryStatus422Schema, createSessionDirectoryStatus429Schema, createSessionDirectoryStatus500Schema, createSessionSnapshotPathSessionIdSchema, createSessionSnapshotQuerySlugSchema, createSessionSnapshotQueryTeamIdSchema, createSessionSnapshotResponseSchema, createSessionSnapshotStatus201Schema, createSessionSnapshotStatus400Schema, createSessionSnapshotStatus401Schema, createSessionSnapshotStatus402Schema, createSessionSnapshotStatus403Schema, createSessionSnapshotStatus404Schema, createSessionSnapshotStatus410Schema, createSessionSnapshotStatus422Schema, createSessionSnapshotStatus429Schema, createSessionSnapshotStatus500Schema, createSharedEnvVariableQuerySlugSchema, createSharedEnvVariableQueryTeamIdSchema, createSharedEnvVariableResponseSchema, createSharedEnvVariableStatus201Schema, createSharedEnvVariableStatus400Schema, createSharedEnvVariableStatus401Schema, createSharedEnvVariableStatus402Schema, createSharedEnvVariableStatus403Schema, createSharedEnvVariableStatus410Schema, createSpeedInsightsToggleQueryProjectIdSchema, createSpeedInsightsToggleResponseSchema, createSpeedInsightsToggleStatus200Schema, createSpeedInsightsToggleStatus400Schema, createSpeedInsightsToggleStatus401Schema, createSpeedInsightsToggleStatus402Schema, createSpeedInsightsToggleStatus403Schema, createSpeedInsightsToggleStatus410Schema, createStorageStoresBlobResponseSchema, createStorageStoresBlobStatus200Schema, createStorageStoresBlobStatus400Schema, createStorageStoresBlobStatus401Schema, createStorageStoresBlobStatus402Schema, createStorageStoresBlobStatus403Schema, createStorageStoresBlobStatus404Schema, createStorageStoresBlobStatus409Schema, createStorageStoresBlobStatus410Schema, createStorageStoresBlobStatus429Schema, createTeamResponseSchema, createTeamStatus200Schema, createTeamStatus400Schema, createTeamStatus401Schema, createTeamStatus403Schema, createTeamStatus404Schema, createTeamStatus409Schema, createTeamStatus410Schema, createTraceSessionQuerySlugSchema, createTraceSessionQueryTeamIdSchema, createTraceSessionResponseSchema, createTraceSessionStatus200Schema, createTraceSessionStatus400Schema, createTraceSessionStatus401Schema, createTraceSessionStatus403Schema, createTraceSessionStatus410Schema, createTraceSessionStatus422Schema, createWebInsightsToggleQueryProjectIdSchema, createWebInsightsToggleResponseSchema, createWebInsightsToggleStatus200Schema, createWebInsightsToggleStatus400Schema, createWebInsightsToggleStatus401Schema, createWebInsightsToggleStatus403Schema, createWebInsightsToggleStatus410Schema, createWebhookQuerySlugSchema, createWebhookQueryTeamIdSchema, createWebhookResponseSchema, createWebhookStatus200Schema, createWebhookStatus400Schema, createWebhookStatus401Schema, createWebhookStatus403Schema, createWebhookStatus410Schema, dNSSECEnabledSchema, dangerouslyDeleteBySrcImagesQueryProjectIdOrNameSchema, dangerouslyDeleteBySrcImagesQuerySlugSchema, dangerouslyDeleteBySrcImagesQueryTeamIdSchema, dangerouslyDeleteBySrcImagesResponseSchema, dangerouslyDeleteBySrcImagesStatus200Schema, dangerouslyDeleteBySrcImagesStatus400Schema, dangerouslyDeleteBySrcImagesStatus401Schema, dangerouslyDeleteBySrcImagesStatus402Schema, dangerouslyDeleteBySrcImagesStatus403Schema, dangerouslyDeleteBySrcImagesStatus404Schema, dangerouslyDeleteBySrcImagesStatus410Schema, dangerouslyDeleteByTagsQueryProjectIdOrNameSchema, dangerouslyDeleteByTagsQuerySlugSchema, dangerouslyDeleteByTagsQueryTeamIdSchema, dangerouslyDeleteByTagsResponseSchema, dangerouslyDeleteByTagsStatus200Schema, dangerouslyDeleteByTagsStatus400Schema, dangerouslyDeleteByTagsStatus401Schema, dangerouslyDeleteByTagsStatus403Schema, dangerouslyDeleteByTagsStatus404Schema, dangerouslyDeleteByTagsStatus410Schema, dateFromStringSchema, deleteAccessGroupPathIdOrNameSchema, deleteAccessGroupProjectPathAccessGroupIdOrNameSchema, deleteAccessGroupProjectPathProjectIdSchema, deleteAccessGroupProjectQuerySlugSchema, deleteAccessGroupProjectQueryTeamIdSchema, deleteAccessGroupProjectResponseSchema, deleteAccessGroupProjectStatus200Schema, deleteAccessGroupProjectStatus400Schema, deleteAccessGroupProjectStatus401Schema, deleteAccessGroupProjectStatus403Schema, deleteAccessGroupProjectStatus410Schema, deleteAccessGroupQuerySlugSchema, deleteAccessGroupQueryTeamIdSchema, deleteAccessGroupResponseSchema, deleteAccessGroupStatus200Schema, deleteAccessGroupStatus400Schema, deleteAccessGroupStatus401Schema, deleteAccessGroupStatus403Schema, deleteAccessGroupStatus410Schema, deleteAiGatewayRuleQueryRuleIdSchema, deleteAiGatewayRuleQuerySlugSchema, deleteAiGatewayRuleQueryTeamIdSchema, deleteAiGatewayRuleResponseSchema, deleteAiGatewayRuleStatus204Schema, deleteAiGatewayRuleStatus400Schema, deleteAiGatewayRuleStatus401Schema, deleteAiGatewayRuleStatus403Schema, deleteAiGatewayRuleStatus404Schema, deleteAiGatewayRuleStatus410Schema, deleteAiGatewayRuleStatus500Schema, deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema, deleteAiGatewayVirtualModelConfigQuerySlugSchema, deleteAiGatewayVirtualModelConfigQueryTeamIdSchema, deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema, deleteAiGatewayVirtualModelConfigResponseSchema, deleteAiGatewayVirtualModelConfigStatus204Schema, deleteAiGatewayVirtualModelConfigStatus400Schema, deleteAiGatewayVirtualModelConfigStatus401Schema, deleteAiGatewayVirtualModelConfigStatus403Schema, deleteAiGatewayVirtualModelConfigStatus404Schema, deleteAiGatewayVirtualModelConfigStatus410Schema, deleteAiGatewayVirtualModelConfigStatus500Schema, deleteAliasPathAliasIdSchema, deleteAliasQuerySlugSchema, deleteAliasQueryTeamIdSchema, deleteAliasResponseSchema, deleteAliasStatus200Schema, deleteAliasStatus400Schema, deleteAliasStatus401Schema, deleteAliasStatus403Schema, deleteAliasStatus404Schema, deleteAliasStatus410Schema, deleteAllArtifactsQuerySlugSchema, deleteAllArtifactsQueryTeamIdSchema, deleteAllArtifactsResponseSchema, deleteAllArtifactsStatus200Schema, deleteAllArtifactsStatus400Schema, deleteAllArtifactsStatus401Schema, deleteAllArtifactsStatus403Schema, deleteAllArtifactsStatus410Schema, deleteAuthTokenPathTokenIdSchema, deleteAuthTokenResponseSchema, deleteAuthTokenStatus200Schema, deleteAuthTokenStatus400Schema, deleteAuthTokenStatus401Schema, deleteAuthTokenStatus403Schema, deleteAuthTokenStatus404Schema, deleteAuthTokenStatus410Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus405Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus202Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema, deleteConfigurableLogDrainPathIdSchema, deleteConfigurableLogDrainQuerySlugSchema, deleteConfigurableLogDrainQueryTeamIdSchema, deleteConfigurableLogDrainResponseSchema, deleteConfigurableLogDrainStatus204Schema, deleteConfigurableLogDrainStatus400Schema, deleteConfigurableLogDrainStatus401Schema, deleteConfigurableLogDrainStatus403Schema, deleteConfigurableLogDrainStatus404Schema, deleteConfigurableLogDrainStatus410Schema, deleteConfigurationPathIdSchema, deleteConfigurationQuerySlugSchema, deleteConfigurationQueryTeamIdSchema, deleteConfigurationResponseSchema, deleteConfigurationStatus204Schema, deleteConfigurationStatus400Schema, deleteConfigurationStatus401Schema, deleteConfigurationStatus403Schema, deleteConfigurationStatus404Schema, deleteConfigurationStatus410Schema, deleteDeploymentPathIdSchema, deleteDeploymentQuerySlugSchema, deleteDeploymentQueryTeamIdSchema, deleteDeploymentQueryUrlSchema, deleteDeploymentResponseSchema, deleteDeploymentStatus200Schema, deleteDeploymentStatus400Schema, deleteDeploymentStatus401Schema, deleteDeploymentStatus403Schema, deleteDeploymentStatus404Schema, deleteDeploymentStatus410Schema, deleteDomainPathDomainSchema, deleteDomainQuerySlugSchema, deleteDomainQueryTeamIdSchema, deleteDomainResponseSchema, deleteDomainStatus200Schema, deleteDomainStatus400Schema, deleteDomainStatus401Schema, deleteDomainStatus403Schema, deleteDomainStatus404Schema, deleteDomainStatus409Schema, deleteDomainStatus410Schema, deleteDrainPathIdSchema, deleteDrainQuerySlugSchema, deleteDrainQueryTeamIdSchema, deleteDrainResponseSchema, deleteDrainStatus204Schema, deleteDrainStatus400Schema, deleteDrainStatus401Schema, deleteDrainStatus403Schema, deleteDrainStatus404Schema, deleteDrainStatus410Schema, deleteDrivePathNameSchema, deleteDriveQueryProjectIdSchema, deleteDriveQuerySlugSchema, deleteDriveQueryTeamIdSchema, deleteDriveResponseSchema, deleteDriveStatus200Schema, deleteDriveStatus400Schema, deleteDriveStatus401Schema, deleteDriveStatus403Schema, deleteDriveStatus404Schema, deleteDriveStatus409Schema, deleteDriveStatus410Schema, deleteDriveStatus429Schema, deleteEdgeConfigPathEdgeConfigIdSchema, deleteEdgeConfigQuerySlugSchema, deleteEdgeConfigQueryTeamIdSchema, deleteEdgeConfigResponseSchema, deleteEdgeConfigSchemaPathEdgeConfigIdSchema, deleteEdgeConfigSchemaQuerySlugSchema, deleteEdgeConfigSchemaQueryTeamIdSchema, deleteEdgeConfigSchemaResponseSchema, deleteEdgeConfigSchemaStatus204Schema, deleteEdgeConfigSchemaStatus400Schema, deleteEdgeConfigSchemaStatus401Schema, deleteEdgeConfigSchemaStatus402Schema, deleteEdgeConfigSchemaStatus403Schema, deleteEdgeConfigSchemaStatus404Schema, deleteEdgeConfigSchemaStatus409Schema, deleteEdgeConfigSchemaStatus410Schema, deleteEdgeConfigStatus204Schema, deleteEdgeConfigStatus400Schema, deleteEdgeConfigStatus401Schema, deleteEdgeConfigStatus403Schema, deleteEdgeConfigStatus404Schema, deleteEdgeConfigStatus409Schema, deleteEdgeConfigStatus410Schema, deleteEdgeConfigTokensPathEdgeConfigIdSchema, deleteEdgeConfigTokensQuerySlugSchema, deleteEdgeConfigTokensQueryTeamIdSchema, deleteEdgeConfigTokensResponseSchema, deleteEdgeConfigTokensStatus204Schema, deleteEdgeConfigTokensStatus400Schema, deleteEdgeConfigTokensStatus401Schema, deleteEdgeConfigTokensStatus402Schema, deleteEdgeConfigTokensStatus403Schema, deleteEdgeConfigTokensStatus404Schema, deleteEdgeConfigTokensStatus409Schema, deleteEdgeConfigTokensStatus410Schema, deleteFlagPathFlagIdOrSlugSchema, deleteFlagPathProjectIdOrNameSchema, deleteFlagQueryIfMatchSchema, deleteFlagQuerySlugSchema, deleteFlagQueryTeamIdSchema, deleteFlagQueryWithMetadataSchema, deleteFlagResponseSchema, deleteFlagSegmentPathProjectIdOrNameSchema, deleteFlagSegmentPathSegmentIdOrSlugSchema, deleteFlagSegmentQuerySlugSchema, deleteFlagSegmentQueryTeamIdSchema, deleteFlagSegmentQueryWithMetadataSchema, deleteFlagSegmentResponseSchema, deleteFlagSegmentStatus204Schema, deleteFlagSegmentStatus304Schema, deleteFlagSegmentStatus400Schema, deleteFlagSegmentStatus401Schema, deleteFlagSegmentStatus402Schema, deleteFlagSegmentStatus403Schema, deleteFlagSegmentStatus404Schema, deleteFlagSegmentStatus409Schema, deleteFlagSegmentStatus410Schema, deleteFlagStatus204Schema, deleteFlagStatus304Schema, deleteFlagStatus400Schema, deleteFlagStatus401Schema, deleteFlagStatus402Schema, deleteFlagStatus403Schema, deleteFlagStatus404Schema, deleteFlagStatus409Schema, deleteFlagStatus410Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathIntegrationConfigurationIdSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathItemIdSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathResourceIdSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdResponseSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus204Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus400Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus401Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus403Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus404Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus410Schema, deleteIntegrationLogDrainPathIdSchema, deleteIntegrationLogDrainQuerySlugSchema, deleteIntegrationLogDrainQueryTeamIdSchema, deleteIntegrationLogDrainResponseSchema, deleteIntegrationLogDrainStatus204Schema, deleteIntegrationLogDrainStatus400Schema, deleteIntegrationLogDrainStatus401Schema, deleteIntegrationLogDrainStatus403Schema, deleteIntegrationLogDrainStatus404Schema, deleteIntegrationLogDrainStatus410Schema, deleteIntegrationResourcePathIntegrationConfigurationIdSchema, deleteIntegrationResourcePathResourceIdSchema, deleteIntegrationResourceResponseSchema, deleteIntegrationResourceStatus204Schema, deleteIntegrationResourceStatus400Schema, deleteIntegrationResourceStatus401Schema, deleteIntegrationResourceStatus403Schema, deleteIntegrationResourceStatus404Schema, deleteIntegrationResourceStatus410Schema, deleteMicrofrontendsGroupPathGroupIdSchema, deleteMicrofrontendsGroupPathTeamIdSchema, deleteMicrofrontendsGroupQuerySlugSchema, deleteMicrofrontendsGroupResponseSchema, deleteMicrofrontendsGroupStatus200Schema, deleteMicrofrontendsGroupStatus400Schema, deleteMicrofrontendsGroupStatus401Schema, deleteMicrofrontendsGroupStatus403Schema, deleteMicrofrontendsGroupStatus404Schema, deleteMicrofrontendsGroupStatus410Schema, deleteMicrofrontendsGroupStatus500Schema, deleteNetworkPathNetworkIdSchema, deleteNetworkQuerySlugSchema, deleteNetworkQueryTeamIdSchema, deleteNetworkResponseSchema, deleteNetworkStatus204Schema, deleteNetworkStatus400Schema, deleteNetworkStatus401Schema, deleteNetworkStatus402Schema, deleteNetworkStatus403Schema, deleteNetworkStatus409Schema, deleteNetworkStatus410Schema, deleteProjectCheckPathCheckIdSchema, deleteProjectCheckPathProjectIdOrNameSchema, deleteProjectCheckQuerySlugSchema, deleteProjectCheckQueryTeamIdSchema, deleteProjectCheckResponseSchema, deleteProjectCheckStatus200Schema, deleteProjectCheckStatus400Schema, deleteProjectCheckStatus401Schema, deleteProjectCheckStatus403Schema, deleteProjectCheckStatus404Schema, deleteProjectCheckStatus410Schema, deleteProjectCheckStatus500Schema, deleteProjectPathIdOrNameSchema, deleteProjectQuerySlugSchema, deleteProjectQueryTeamIdSchema, deleteProjectResponseSchema, deleteProjectStatus204Schema, deleteProjectStatus400Schema, deleteProjectStatus401Schema, deleteProjectStatus403Schema, deleteProjectStatus409Schema, deleteProjectStatus410Schema, deleteRedirectsQueryProjectIdSchema, deleteRedirectsQuerySlugSchema, deleteRedirectsQueryTeamIdSchema, deleteRedirectsResponseSchema, deleteRedirectsStatus200Schema, deleteRedirectsStatus400Schema, deleteRedirectsStatus401Schema, deleteRedirectsStatus403Schema, deleteRedirectsStatus404Schema, deleteRedirectsStatus410Schema, deleteRedirectsStatus500Schema, deleteRepositoryImagePathIdOrNameSchema, deleteRepositoryImagePathImageIdSchema, deleteRepositoryImageQueryProjectIdSchema, deleteRepositoryImageQuerySlugSchema, deleteRepositoryImageQueryTeamIdSchema, deleteRepositoryImageResponseSchema, deleteRepositoryImageStatus202Schema, deleteRepositoryImageStatus400Schema, deleteRepositoryImageStatus401Schema, deleteRepositoryImageStatus403Schema, deleteRepositoryImageStatus404Schema, deleteRepositoryImageStatus410Schema, deleteRepositoryPathIdOrNameSchema, deleteRepositoryQueryProjectIdSchema, deleteRepositoryQuerySlugSchema, deleteRepositoryQueryTeamIdSchema, deleteRepositoryResponseSchema, deleteRepositoryStatus202Schema, deleteRepositoryStatus400Schema, deleteRepositoryStatus401Schema, deleteRepositoryStatus403Schema, deleteRepositoryStatus404Schema, deleteRepositoryStatus410Schema, deleteRollingReleaseConfigPathIdOrNameSchema, deleteRollingReleaseConfigQuerySlugSchema, deleteRollingReleaseConfigQueryTeamIdSchema, deleteRollingReleaseConfigResponseSchema, deleteRollingReleaseConfigStatus200Schema, deleteRollingReleaseConfigStatus400Schema, deleteRollingReleaseConfigStatus401Schema, deleteRollingReleaseConfigStatus403Schema, deleteRollingReleaseConfigStatus404Schema, deleteRollingReleaseConfigStatus410Schema, deleteRoutesPathProjectIdSchema, deleteRoutesQuerySlugSchema, deleteRoutesQueryTeamIdSchema, deleteRoutesResponseSchema, deleteRoutesStatus200Schema, deleteRoutesStatus400Schema, deleteRoutesStatus401Schema, deleteRoutesStatus403Schema, deleteRoutesStatus404Schema, deleteRoutesStatus409Schema, deleteRoutesStatus410Schema, deleteRoutesStatus500Schema, deleteSandboxPathNameSchema, deleteSandboxQueryProjectIdSchema, deleteSandboxQuerySlugSchema, deleteSandboxQueryTeamIdSchema, deleteSandboxResponseSchema, deleteSandboxStatus200Schema, deleteSandboxStatus400Schema, deleteSandboxStatus401Schema, deleteSandboxStatus403Schema, deleteSandboxStatus404Schema, deleteSandboxStatus410Schema, deleteSandboxStatus429Schema, deleteSdkKeyPathHashKeySchema, deleteSdkKeyPathProjectIdOrNameSchema, deleteSdkKeyQuerySlugSchema, deleteSdkKeyQueryTeamIdSchema, deleteSdkKeyResponseSchema, deleteSdkKeyStatus204Schema, deleteSdkKeyStatus400Schema, deleteSdkKeyStatus401Schema, deleteSdkKeyStatus402Schema, deleteSdkKeyStatus403Schema, deleteSdkKeyStatus404Schema, deleteSdkKeyStatus409Schema, deleteSdkKeyStatus410Schema, deleteSecurityFirewallConfigByConfigVersionPathConfigVersionSchema, deleteSecurityFirewallConfigByConfigVersionResponseSchema, deleteSecurityFirewallConfigByConfigVersionStatus204Schema, deleteSecurityFirewallConfigByConfigVersionStatus400Schema, deleteSecurityFirewallConfigByConfigVersionStatus401Schema, deleteSecurityFirewallConfigByConfigVersionStatus403Schema, deleteSecurityFirewallConfigByConfigVersionStatus404Schema, deleteSecurityFirewallConfigByConfigVersionStatus410Schema, deleteSecurityFirewallConfigByConfigVersionStatus500Schema, deleteSessionSnapshotPathSnapshotIdSchema, deleteSessionSnapshotQuerySlugSchema, deleteSessionSnapshotQueryTeamIdSchema, deleteSessionSnapshotResponseSchema, deleteSessionSnapshotStatus200Schema, deleteSessionSnapshotStatus400Schema, deleteSessionSnapshotStatus401Schema, deleteSessionSnapshotStatus403Schema, deleteSessionSnapshotStatus404Schema, deleteSessionSnapshotStatus410Schema, deleteSessionSnapshotStatus429Schema, deleteSharedEnvVariableQuerySlugSchema, deleteSharedEnvVariableQueryTeamIdSchema, deleteSharedEnvVariableResponseSchema, deleteSharedEnvVariableStatus200Schema, deleteSharedEnvVariableStatus400Schema, deleteSharedEnvVariableStatus401Schema, deleteSharedEnvVariableStatus402Schema, deleteSharedEnvVariableStatus403Schema, deleteSharedEnvVariableStatus410Schema, deleteStorageStoresBlobByIdPathIdSchema, deleteStorageStoresBlobByIdResponseSchema, deleteStorageStoresBlobByIdStatus200Schema, deleteStorageStoresBlobByIdStatus400Schema, deleteStorageStoresBlobByIdStatus401Schema, deleteStorageStoresBlobByIdStatus403Schema, deleteStorageStoresBlobByIdStatus404Schema, deleteStorageStoresBlobByIdStatus409Schema, deleteStorageStoresBlobByIdStatus410Schema, deleteTeamInviteCodePathInviteIdSchema, deleteTeamInviteCodePathTeamIdSchema, deleteTeamInviteCodeResponseSchema, deleteTeamInviteCodeStatus200Schema, deleteTeamInviteCodeStatus400Schema, deleteTeamInviteCodeStatus401Schema, deleteTeamInviteCodeStatus403Schema, deleteTeamInviteCodeStatus404Schema, deleteTeamInviteCodeStatus410Schema, deleteTeamPathTeamIdSchema, deleteTeamQueryNewDefaultTeamIdSchema, deleteTeamQuerySlugSchema, deleteTeamResponseSchema, deleteTeamStatus200Schema, deleteTeamStatus400Schema, deleteTeamStatus401Schema, deleteTeamStatus402Schema, deleteTeamStatus403Schema, deleteTeamStatus409Schema, deleteTeamStatus410Schema, deleteWebhookPathIdSchema, deleteWebhookQuerySlugSchema, deleteWebhookQueryTeamIdSchema, deleteWebhookResponseSchema, deleteWebhookStatus204Schema, deleteWebhookStatus400Schema, deleteWebhookStatus401Schema, deleteWebhookStatus403Schema, deleteWebhookStatus410Schema, domainAlreadyOwnedSchema, domainAlreadyRenewingSchema, domainCannotBeTransferedOutUntilSchema, domainNameSchema, domainNotAvailableSchema, domainNotFoundSchema, domainNotRegisteredSchema, domainNotRenewableSchema, domainTooShortSchema, downloadArtifactHeaderxArtifactClientCiSchema, downloadArtifactHeaderxArtifactClientInteractiveSchema, downloadArtifactPathHashSchema, downloadArtifactQuerySlugSchema, downloadArtifactQueryTeamIdSchema, downloadArtifactResponseSchema, downloadArtifactStatus200Schema, downloadArtifactStatus400Schema, downloadArtifactStatus401Schema, downloadArtifactStatus402Schema, downloadArtifactStatus403Schema, downloadArtifactStatus404Schema, downloadArtifactStatus410Schema, driveSchema, duplicateDomainsSchema, e164PhoneNumberSchema, editProjectEnvPathIdOrNameSchema, editProjectEnvPathIdSchema, editProjectEnvQuerySlugSchema, editProjectEnvQueryTeamIdSchema, editProjectEnvResponseSchema, editProjectEnvStatus200Schema, editProjectEnvStatus400Schema, editProjectEnvStatus401Schema, editProjectEnvStatus403Schema, editProjectEnvStatus404Schema, editProjectEnvStatus409Schema, editProjectEnvStatus410Schema, editProjectEnvStatus429Schema, editProjectEnvStatus500Schema, editRedirectQueryProjectIdSchema, editRedirectQuerySlugSchema, editRedirectQueryTeamIdSchema, editRedirectResponseSchema, editRedirectStatus200Schema, editRedirectStatus400Schema, editRedirectStatus401Schema, editRedirectStatus403Schema, editRedirectStatus404Schema, editRedirectStatus410Schema, editRedirectStatus500Schema, editRoutePathProjectIdSchema, editRoutePathRouteIdSchema, editRouteQuerySlugSchema, editRouteQueryTeamIdSchema, editRouteResponseSchema, editRouteStatus200Schema, editRouteStatus400Schema, editRouteStatus401Schema, editRouteStatus403Schema, editRouteStatus404Schema, editRouteStatus409Schema, editRouteStatus410Schema, editRouteStatus500Schema, emailAddressSchema, exchangeSsoTokenResponseSchema, exchangeSsoTokenStatus200Schema, exchangeSsoTokenStatus400Schema, exchangeSsoTokenStatus403Schema, exchangeSsoTokenStatus500Schema, expectedPriceMismatchSchema, extendSessionTimeoutPathSessionIdSchema, extendSessionTimeoutQuerySlugSchema, extendSessionTimeoutQueryTeamIdSchema, extendSessionTimeoutResponseSchema, extendSessionTimeoutStatus200Schema, extendSessionTimeoutStatus400Schema, extendSessionTimeoutStatus401Schema, extendSessionTimeoutStatus403Schema, extendSessionTimeoutStatus404Schema, extendSessionTimeoutStatus410Schema, extendSessionTimeoutStatus422Schema, extendSessionTimeoutStatus429Schema, extendSessionTimeoutStatus500Schema, fileTreeSchema, filterProjectEnvsPathIdOrNameSchema, filterProjectEnvsQueryCustomEnvironmentIdSchema, filterProjectEnvsQueryCustomEnvironmentSlugSchema, filterProjectEnvsQueryDecryptSchema, filterProjectEnvsQueryGitBranchSchema, filterProjectEnvsQuerySlugSchema, filterProjectEnvsQuerySourceSchema, filterProjectEnvsQueryTeamIdSchema, filterProjectEnvsResponseSchema, filterProjectEnvsStatus200Schema, filterProjectEnvsStatus400Schema, filterProjectEnvsStatus401Schema, filterProjectEnvsStatus403Schema, filterProjectEnvsStatus410Schema, finalizeInstallationPathIntegrationConfigurationIdSchema, finalizeInstallationResponseSchema, finalizeInstallationStatus204Schema, finalizeInstallationStatus400Schema, finalizeInstallationStatus401Schema, finalizeInstallationStatus403Schema, finalizeInstallationStatus404Schema, finalizeInstallationStatus410Schema, flagJSONValueSchema, flagSchema, flagsSdkKeyWithSecretsSchema, forbiddenSchema, generateFirewallRuleQueryProjectIdSchema, generateFirewallRuleQuerySlugSchema, generateFirewallRuleQueryTeamIdSchema, generateFirewallRuleResponseSchema, generateFirewallRuleStatus200Schema, generateFirewallRuleStatus400Schema, generateFirewallRuleStatus401Schema, generateFirewallRuleStatus403Schema, generateFirewallRuleStatus404Schema, generateFirewallRuleStatus408Schema, generateFirewallRuleStatus410Schema, generateFirewallRuleStatus500Schema, generateRoutePathProjectIdSchema, generateRouteQuerySlugSchema, generateRouteQueryTeamIdSchema, generateRouteResponseSchema, generateRouteStatus200Schema, generateRouteStatus400Schema, generateRouteStatus401Schema, generateRouteStatus403Schema, generateRouteStatus408Schema, generateRouteStatus410Schema, generateRouteStatus500Schema, getAccountInfoPathIntegrationConfigurationIdSchema, getAccountInfoResponseSchema, getAccountInfoStatus200Schema, getAccountInfoStatus400Schema, getAccountInfoStatus401Schema, getAccountInfoStatus403Schema, getAccountInfoStatus404Schema, getAccountInfoStatus410Schema, getActiveAttackStatusQueryProjectIdSchema, getActiveAttackStatusQuerySinceSchema, getActiveAttackStatusQuerySlugSchema, getActiveAttackStatusQueryTeamIdSchema, getActiveAttackStatusResponseSchema, getActiveAttackStatusStatus200Schema, getActiveAttackStatusStatus400Schema, getActiveAttackStatusStatus401Schema, getActiveAttackStatusStatus403Schema, getActiveAttackStatusStatus404Schema, getActiveAttackStatusStatus410Schema, getAiGatewayVirtualModelConfigQueryOwnerIdSchema, getAiGatewayVirtualModelConfigQuerySlugSchema, getAiGatewayVirtualModelConfigQueryTeamIdSchema, getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema, getAiGatewayVirtualModelConfigResponseSchema, getAiGatewayVirtualModelConfigStatus200Schema, getAiGatewayVirtualModelConfigStatus400Schema, getAiGatewayVirtualModelConfigStatus401Schema, getAiGatewayVirtualModelConfigStatus403Schema, getAiGatewayVirtualModelConfigStatus404Schema, getAiGatewayVirtualModelConfigStatus410Schema, getAiGatewayVirtualModelConfigStatus500Schema, getAliasPathIdOrAliasSchema, getAliasQueryFromSchema, getAliasQueryProjectIdSchema, getAliasQuerySinceSchema, getAliasQuerySlugSchema, getAliasQueryTeamIdSchema, getAliasQueryUntilSchema, getAliasResponseSchema, getAliasStatus200Schema, getAliasStatus400Schema, getAliasStatus401Schema, getAliasStatus403Schema, getAliasStatus404Schema, getAliasStatus410Schema, getAllChecksPathDeploymentIdSchema, getAllChecksQuerySlugSchema, getAllChecksQueryTeamIdSchema, getAllChecksResponseSchema, getAllChecksStatus200Schema, getAllChecksStatus400Schema, getAllChecksStatus401Schema, getAllChecksStatus403Schema, getAllChecksStatus404Schema, getAllChecksStatus410Schema, getAllLogDrainsQueryIncludeMetadataSchema, getAllLogDrainsQueryProjectIdOrNameSchema, getAllLogDrainsQueryProjectIdSchema, getAllLogDrainsQuerySlugSchema, getAllLogDrainsQueryTeamIdSchema, getAllLogDrainsResponseSchema, getAllLogDrainsStatus200Schema, getAllLogDrainsStatus400Schema, getAllLogDrainsStatus401Schema, getAllLogDrainsStatus403Schema, getAllLogDrainsStatus404Schema, getAllLogDrainsStatus410Schema, getAuthTokenPathTokenIdSchema, getAuthTokenResponseSchema, getAuthTokenStatus200Schema, getAuthTokenStatus400Schema, getAuthTokenStatus401Schema, getAuthTokenStatus403Schema, getAuthTokenStatus404Schema, getAuthTokenStatus410Schema, getAuthUserResponseSchema, getAuthUserStatus200Schema, getAuthUserStatus302Schema, getAuthUserStatus400Schema, getAuthUserStatus401Schema, getAuthUserStatus403Schema, getAuthUserStatus409Schema, getAuthUserStatus410Schema, getBillingPlansPathIntegrationIdOrSlugSchema, getBillingPlansPathProductIdOrSlugSchema, getBillingPlansQueryIntegrationConfigurationIdSchema, getBillingPlansQueryMetadataSchema, getBillingPlansQuerySlugSchema, getBillingPlansQuerySourceSchema, getBillingPlansQueryTeamIdSchema, getBillingPlansResponseSchema, getBillingPlansStatus200Schema, getBillingPlansStatus400Schema, getBillingPlansStatus401Schema, getBillingPlansStatus403Schema, getBillingPlansStatus404Schema, getBillingPlansStatus410Schema, getBulkAvailabilityQueryTeamIdSchema, getBulkAvailabilityResponseSchema, getBulkAvailabilityStatus200Schema, getBulkAvailabilityStatus400Schema, getBulkAvailabilityStatus401Schema, getBulkAvailabilityStatus403Schema, getBulkAvailabilityStatus429Schema, getBulkAvailabilityStatus500Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus416Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathProjectSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathRepositoryNameSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathTeamSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryLastSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryNSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListResponseSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus200Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus400Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus401Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus402Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus403Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus404Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus410Schema, getBypassIpQueryDomainSchema, getBypassIpQueryLimitSchema, getBypassIpQueryOffsetSchema, getBypassIpQueryProjectIdSchema, getBypassIpQueryProjectScopeSchema, getBypassIpQuerySlugSchema, getBypassIpQuerySourceIpSchema, getBypassIpQueryTeamIdSchema, getBypassIpResponseSchema, getBypassIpStatus200Schema, getBypassIpStatus400Schema, getBypassIpStatus401Schema, getBypassIpStatus403Schema, getBypassIpStatus404Schema, getBypassIpStatus410Schema, getBypassIpStatus500Schema, getCertByIdPathIdSchema, getCertByIdQuerySlugSchema, getCertByIdQueryTeamIdSchema, getCertByIdResponseSchema, getCertByIdStatus200Schema, getCertByIdStatus400Schema, getCertByIdStatus401Schema, getCertByIdStatus403Schema, getCertByIdStatus404Schema, getCertByIdStatus410Schema, getCertsQuerySlugSchema, getCertsQueryTeamIdSchema, getCertsResponseSchema, getCertsStatus200Schema, getCertsStatus400Schema, getCertsStatus401Schema, getCertsStatus403Schema, getCertsStatus410Schema, getCheckPathCheckIdSchema, getCheckPathDeploymentIdSchema, getCheckQuerySlugSchema, getCheckQueryTeamIdSchema, getCheckResponseSchema, getCheckStatus200Schema, getCheckStatus400Schema, getCheckStatus401Schema, getCheckStatus403Schema, getCheckStatus404Schema, getCheckStatus410Schema, getConfigurableLogDrainPathIdSchema, getConfigurableLogDrainQuerySlugSchema, getConfigurableLogDrainQueryTeamIdSchema, getConfigurableLogDrainResponseSchema, getConfigurableLogDrainStatus200Schema, getConfigurableLogDrainStatus400Schema, getConfigurableLogDrainStatus401Schema, getConfigurableLogDrainStatus403Schema, getConfigurableLogDrainStatus404Schema, getConfigurableLogDrainStatus410Schema, getConfigurationPathIdSchema, getConfigurationProductsPathIdSchema, getConfigurationProductsQuerySlugSchema, getConfigurationProductsQueryTeamIdSchema, getConfigurationProductsResponseSchema, getConfigurationProductsStatus200Schema, getConfigurationProductsStatus400Schema, getConfigurationProductsStatus401Schema, getConfigurationProductsStatus403Schema, getConfigurationProductsStatus404Schema, getConfigurationProductsStatus410Schema, getConfigurationProductsStatus500Schema, getConfigurationQuerySlugSchema, getConfigurationQueryTeamIdSchema, getConfigurationResponseSchema, getConfigurationStatus200Schema, getConfigurationStatus400Schema, getConfigurationStatus401Schema, getConfigurationStatus403Schema, getConfigurationStatus404Schema, getConfigurationStatus410Schema, getConfigurationsQueryInstallationTypeSchema, getConfigurationsQueryIntegrationIdOrSlugSchema, getConfigurationsQuerySlugSchema, getConfigurationsQueryTeamIdSchema, getConfigurationsQueryViewSchema, getConfigurationsResponseSchema, getConfigurationsStatus200Schema, getConfigurationsStatus400Schema, getConfigurationsStatus401Schema, getConfigurationsStatus403Schema, getConfigurationsStatus410Schema, getConnectorTokenPathConnectorSchema, getConnectorTokenResponseSchema, getConnectorTokenStatus200Schema, getConnectorTokenStatus400Schema, getConnectorTokenStatus401Schema, getConnectorTokenStatus403Schema, getConnectorTokenStatus404Schema, getConnectorTokenStatus410Schema, getConnectorTokenStatus422Schema, getConnectorTokenStatus429Schema, getContactInfoSchemaPathDomainSchema, getContactInfoSchemaQueryTeamIdSchema, getContactInfoSchemaResponseSchema, getContactInfoSchemaStatus200Schema, getContactInfoSchemaStatus400Schema, getContactInfoSchemaStatus401Schema, getContactInfoSchemaStatus403Schema, getContactInfoSchemaStatus429Schema, getContactInfoSchemaStatus500Schema, getCustomEnvironmentPathEnvironmentSlugOrIdSchema, getCustomEnvironmentPathIdOrNameSchema, getCustomEnvironmentQuerySlugSchema, getCustomEnvironmentQueryTeamIdSchema, getCustomEnvironmentResponseSchema, getCustomEnvironmentStatus200Schema, getCustomEnvironmentStatus400Schema, getCustomEnvironmentStatus401Schema, getCustomEnvironmentStatus403Schema, getCustomEnvironmentStatus404Schema, getCustomEnvironmentStatus410Schema, getDeploymentCheckRunPathCheckRunIdSchema, getDeploymentCheckRunPathDeploymentIdSchema, getDeploymentCheckRunQuerySlugSchema, getDeploymentCheckRunQueryTeamIdSchema, getDeploymentCheckRunResponseSchema, getDeploymentCheckRunStatus200Schema, getDeploymentCheckRunStatus400Schema, getDeploymentCheckRunStatus401Schema, getDeploymentCheckRunStatus403Schema, getDeploymentCheckRunStatus404Schema, getDeploymentCheckRunStatus410Schema, getDeploymentCheckRunStatus500Schema, getDeploymentEventsPathIdOrUrlSchema, getDeploymentEventsQueryBuildsSchema, getDeploymentEventsQueryDelimiterSchema, getDeploymentEventsQueryDirectionSchema, getDeploymentEventsQueryFollowSchema, getDeploymentEventsQueryLimitSchema, getDeploymentEventsQueryNameSchema, getDeploymentEventsQuerySinceSchema, getDeploymentEventsQuerySlugSchema, getDeploymentEventsQueryStatusCodeSchema, getDeploymentEventsQueryTeamIdSchema, getDeploymentEventsQueryUntilSchema, getDeploymentEventsResponseSchema, getDeploymentEventsStatus200Schema, getDeploymentEventsStatus400Schema, getDeploymentEventsStatus401Schema, getDeploymentEventsStatus403Schema, getDeploymentEventsStatus410Schema, getDeploymentEventsStatus500Schema, getDeploymentFeatureFlagsPathDeploymentIdSchema, getDeploymentFeatureFlagsQuerySlugSchema, getDeploymentFeatureFlagsQueryTeamIdSchema, getDeploymentFeatureFlagsResponseSchema, getDeploymentFeatureFlagsStatus200Schema, getDeploymentFeatureFlagsStatus400Schema, getDeploymentFeatureFlagsStatus401Schema, getDeploymentFeatureFlagsStatus403Schema, getDeploymentFeatureFlagsStatus404Schema, getDeploymentFeatureFlagsStatus410Schema, getDeploymentFileContentsPathFileIdSchema, getDeploymentFileContentsPathIdSchema, getDeploymentFileContentsQueryPathSchema, getDeploymentFileContentsQuerySlugSchema, getDeploymentFileContentsQueryTeamIdSchema, getDeploymentFileContentsResponseSchema, getDeploymentFileContentsStatus400Schema, getDeploymentFileContentsStatus401Schema, getDeploymentFileContentsStatus403Schema, getDeploymentFileContentsStatus404Schema, getDeploymentFileContentsStatus410Schema, getDeploymentPathIdOrUrlSchema, getDeploymentQuerySlugSchema, getDeploymentQueryTeamIdSchema, getDeploymentQueryWithGitRepoInfoSchema, getDeploymentResponseSchema, getDeploymentStatus200Schema, getDeploymentStatus400Schema, getDeploymentStatus403Schema, getDeploymentStatus404Schema, getDeploymentStatus410Schema, getDeploymentStatus429Schema, getDeploymentsQueryAppSchema, getDeploymentsQueryBranchSchema, getDeploymentsQueryFromSchema, getDeploymentsQueryLimitSchema, getDeploymentsQueryProjectIdSchema, getDeploymentsQueryProjectIdsSchema, getDeploymentsQueryRollbackCandidateSchema, getDeploymentsQueryShaSchema, getDeploymentsQuerySinceSchema, getDeploymentsQuerySlugSchema, getDeploymentsQueryStateSchema, getDeploymentsQueryTargetSchema, getDeploymentsQueryTeamIdSchema, getDeploymentsQueryToSchema, getDeploymentsQueryUntilSchema, getDeploymentsQueryUsersSchema, getDeploymentsResponseSchema, getDeploymentsStatus200Schema, getDeploymentsStatus400Schema, getDeploymentsStatus401Schema, getDeploymentsStatus403Schema, getDeploymentsStatus404Schema, getDeploymentsStatus410Schema, getDeploymentsStatus422Schema, getDomainAuthCodePathDomainSchema, getDomainAuthCodeQueryTeamIdSchema, getDomainAuthCodeResponseSchema, getDomainAuthCodeStatus200Schema, getDomainAuthCodeStatus400Schema, getDomainAuthCodeStatus401Schema, getDomainAuthCodeStatus403Schema, getDomainAuthCodeStatus404Schema, getDomainAuthCodeStatus409Schema, getDomainAuthCodeStatus429Schema, getDomainAuthCodeStatus500Schema, getDomainAvailabilityPathDomainSchema, getDomainAvailabilityQueryTeamIdSchema, getDomainAvailabilityResponseSchema, getDomainAvailabilityStatus200Schema, getDomainAvailabilityStatus400Schema, getDomainAvailabilityStatus401Schema, getDomainAvailabilityStatus403Schema, getDomainAvailabilityStatus404Schema, getDomainAvailabilityStatus429Schema, getDomainAvailabilityStatus500Schema, getDomainConfigPathDomainSchema, getDomainConfigQueryProjectIdOrNameSchema, getDomainConfigQuerySlugSchema, getDomainConfigQueryStrictSchema, getDomainConfigQueryTeamIdSchema, getDomainConfigResponseSchema, getDomainConfigStatus200Schema, getDomainConfigStatus400Schema, getDomainConfigStatus401Schema, getDomainConfigStatus403Schema, getDomainConfigStatus410Schema, getDomainContactVerificationPathDomainSchema, getDomainContactVerificationQueryTeamIdSchema, getDomainContactVerificationResponseSchema, getDomainContactVerificationStatus200Schema, getDomainContactVerificationStatus400Schema, getDomainContactVerificationStatus401Schema, getDomainContactVerificationStatus403Schema, getDomainContactVerificationStatus404Schema, getDomainContactVerificationStatus429Schema, getDomainContactVerificationStatus500Schema, getDomainPathDomainSchema, getDomainPricePathDomainSchema, getDomainPriceQueryTeamIdSchema, getDomainPriceQueryYearsSchema, getDomainPriceResponseSchema, getDomainPriceStatus200Schema, getDomainPriceStatus400Schema, getDomainPriceStatus401Schema, getDomainPriceStatus403Schema, getDomainPriceStatus429Schema, getDomainPriceStatus500Schema, getDomainProjectDomainsPathDomainSchema, getDomainProjectDomainsQueryLimitSchema, getDomainProjectDomainsQuerySinceSchema, getDomainProjectDomainsQuerySlugSchema, getDomainProjectDomainsQueryTeamIdSchema, getDomainProjectDomainsQueryUntilSchema, getDomainProjectDomainsResponseSchema, getDomainProjectDomainsStatus200Schema, getDomainProjectDomainsStatus400Schema, getDomainProjectDomainsStatus401Schema, getDomainProjectDomainsStatus403Schema, getDomainProjectDomainsStatus404Schema, getDomainProjectDomainsStatus410Schema, getDomainQuerySlugSchema, getDomainQueryTeamIdSchema, getDomainResponseSchema, getDomainStatus200Schema, getDomainStatus400Schema, getDomainStatus401Schema, getDomainStatus403Schema, getDomainStatus404Schema, getDomainStatus410Schema, getDomainTransferInPathDomainSchema, getDomainTransferInQueryTeamIdSchema, getDomainTransferInResponseSchema, getDomainTransferInStatus200Schema, getDomainTransferInStatus400Schema, getDomainTransferInStatus401Schema, getDomainTransferInStatus403Schema, getDomainTransferInStatus404Schema, getDomainTransferInStatus429Schema, getDomainTransferInStatus500Schema, getDomainVerificationRecordPathDomainSchema, getDomainVerificationRecordQuerySlugSchema, getDomainVerificationRecordQueryTeamIdSchema, getDomainVerificationRecordResponseSchema, getDomainVerificationRecordStatus200Schema, getDomainVerificationRecordStatus400Schema, getDomainVerificationRecordStatus401Schema, getDomainVerificationRecordStatus403Schema, getDomainVerificationRecordStatus404Schema, getDomainVerificationRecordStatus410Schema, getDomainsQueryLimitSchema, getDomainsQuerySinceSchema, getDomainsQuerySlugSchema, getDomainsQueryTeamIdSchema, getDomainsQueryUntilSchema, getDomainsRecordsByRecordIdPathRecordIdSchema, getDomainsRecordsByRecordIdResponseSchema, getDomainsRecordsByRecordIdStatus200Schema, getDomainsRecordsByRecordIdStatus400Schema, getDomainsRecordsByRecordIdStatus401Schema, getDomainsRecordsByRecordIdStatus403Schema, getDomainsRecordsByRecordIdStatus404Schema, getDomainsRecordsByRecordIdStatus410Schema, getDomainsResponseSchema, getDomainsStatus200Schema, getDomainsStatus400Schema, getDomainsStatus401Schema, getDomainsStatus403Schema, getDomainsStatus409Schema, getDomainsStatus410Schema, getDrainPathIdSchema, getDrainQuerySlugSchema, getDrainQueryTeamIdSchema, getDrainResponseSchema, getDrainStatus200Schema, getDrainStatus400Schema, getDrainStatus401Schema, getDrainStatus403Schema, getDrainStatus404Schema, getDrainStatus410Schema, getDrainsQueryIncludeMetadataSchema, getDrainsQueryProjectIdSchema, getDrainsQuerySlugSchema, getDrainsQueryTeamIdSchema, getDrainsResponseSchema, getDrainsStatus200Schema, getDrainsStatus400Schema, getDrainsStatus401Schema, getDrainsStatus403Schema, getDrainsStatus404Schema, getDrainsStatus410Schema, getEdgeConfigBackupPathEdgeConfigBackupVersionIdSchema, getEdgeConfigBackupPathEdgeConfigIdSchema, getEdgeConfigBackupQuerySlugSchema, getEdgeConfigBackupQueryTeamIdSchema, getEdgeConfigBackupResponseSchema, getEdgeConfigBackupStatus200Schema, getEdgeConfigBackupStatus400Schema, getEdgeConfigBackupStatus401Schema, getEdgeConfigBackupStatus403Schema, getEdgeConfigBackupStatus404Schema, getEdgeConfigBackupStatus410Schema, getEdgeConfigBackupsPathEdgeConfigIdSchema, getEdgeConfigBackupsQueryLimitSchema, getEdgeConfigBackupsQueryMetadataSchema, getEdgeConfigBackupsQueryNextSchema, getEdgeConfigBackupsQuerySlugSchema, getEdgeConfigBackupsQueryTeamIdSchema, getEdgeConfigBackupsResponseSchema, getEdgeConfigBackupsStatus200Schema, getEdgeConfigBackupsStatus400Schema, getEdgeConfigBackupsStatus401Schema, getEdgeConfigBackupsStatus403Schema, getEdgeConfigBackupsStatus404Schema, getEdgeConfigBackupsStatus410Schema, getEdgeConfigItemPathEdgeConfigIdSchema, getEdgeConfigItemPathEdgeConfigItemKeySchema, getEdgeConfigItemQuerySlugSchema, getEdgeConfigItemQueryTeamIdSchema, getEdgeConfigItemResponseSchema, getEdgeConfigItemStatus200Schema, getEdgeConfigItemStatus400Schema, getEdgeConfigItemStatus401Schema, getEdgeConfigItemStatus403Schema, getEdgeConfigItemStatus404Schema, getEdgeConfigItemStatus410Schema, getEdgeConfigItemsPathEdgeConfigIdSchema, getEdgeConfigItemsQuerySlugSchema, getEdgeConfigItemsQueryTeamIdSchema, getEdgeConfigItemsResponseSchema, getEdgeConfigItemsStatus200Schema, getEdgeConfigItemsStatus400Schema, getEdgeConfigItemsStatus401Schema, getEdgeConfigItemsStatus403Schema, getEdgeConfigItemsStatus404Schema, getEdgeConfigItemsStatus410Schema, getEdgeConfigPathEdgeConfigIdSchema, getEdgeConfigQuerySlugSchema, getEdgeConfigQueryTeamIdSchema, getEdgeConfigResponseSchema, getEdgeConfigSchemaPathEdgeConfigIdSchema, getEdgeConfigSchemaQuerySlugSchema, getEdgeConfigSchemaQueryTeamIdSchema, getEdgeConfigSchemaResponseSchema, getEdgeConfigSchemaStatus200Schema, getEdgeConfigSchemaStatus400Schema, getEdgeConfigSchemaStatus401Schema, getEdgeConfigSchemaStatus403Schema, getEdgeConfigSchemaStatus404Schema, getEdgeConfigSchemaStatus410Schema, getEdgeConfigStatus200Schema, getEdgeConfigStatus400Schema, getEdgeConfigStatus401Schema, getEdgeConfigStatus403Schema, getEdgeConfigStatus404Schema, getEdgeConfigStatus410Schema, getEdgeConfigTokenPathEdgeConfigIdSchema, getEdgeConfigTokenPathTokenSchema, getEdgeConfigTokenQuerySlugSchema, getEdgeConfigTokenQueryTeamIdSchema, getEdgeConfigTokenResponseSchema, getEdgeConfigTokenStatus200Schema, getEdgeConfigTokenStatus400Schema, getEdgeConfigTokenStatus401Schema, getEdgeConfigTokenStatus403Schema, getEdgeConfigTokenStatus404Schema, getEdgeConfigTokenStatus410Schema, getEdgeConfigTokensPathEdgeConfigIdSchema, getEdgeConfigTokensQuerySlugSchema, getEdgeConfigTokensQueryTeamIdSchema, getEdgeConfigTokensResponseSchema, getEdgeConfigTokensStatus200Schema, getEdgeConfigTokensStatus400Schema, getEdgeConfigTokensStatus401Schema, getEdgeConfigTokensStatus403Schema, getEdgeConfigTokensStatus404Schema, getEdgeConfigTokensStatus410Schema, getEdgeConfigsQuerySlugSchema, getEdgeConfigsQueryTeamIdSchema, getEdgeConfigsResponseSchema, getEdgeConfigsStatus200Schema, getEdgeConfigsStatus400Schema, getEdgeConfigsStatus401Schema, getEdgeConfigsStatus403Schema, getEdgeConfigsStatus410Schema, getFirewallConfigPathConfigVersionSchema, getFirewallConfigQueryProjectIdSchema, getFirewallConfigQuerySlugSchema, getFirewallConfigQueryTeamIdSchema, getFirewallConfigResponseSchema, getFirewallConfigStatus200Schema, getFirewallConfigStatus400Schema, getFirewallConfigStatus401Schema, getFirewallConfigStatus403Schema, getFirewallConfigStatus404Schema, getFirewallConfigStatus410Schema, getFlagPathFlagIdOrSlugSchema, getFlagPathProjectIdOrNameSchema, getFlagQueryIfMatchSchema, getFlagQuerySlugSchema, getFlagQueryTeamIdSchema, getFlagQueryWithMetadataSchema, getFlagResponseSchema, getFlagSegmentPathProjectIdOrNameSchema, getFlagSegmentPathSegmentIdOrSlugSchema, getFlagSegmentQuerySlugSchema, getFlagSegmentQueryTeamIdSchema, getFlagSegmentQueryWithMetadataSchema, getFlagSegmentResponseSchema, getFlagSegmentStatus200Schema, getFlagSegmentStatus400Schema, getFlagSegmentStatus401Schema, getFlagSegmentStatus402Schema, getFlagSegmentStatus403Schema, getFlagSegmentStatus404Schema, getFlagSegmentStatus410Schema, getFlagSettingsPathProjectIdOrNameSchema, getFlagSettingsQuerySlugSchema, getFlagSettingsQueryTeamIdSchema, getFlagSettingsResponseSchema, getFlagSettingsStatus200Schema, getFlagSettingsStatus400Schema, getFlagSettingsStatus401Schema, getFlagSettingsStatus402Schema, getFlagSettingsStatus403Schema, getFlagSettingsStatus404Schema, getFlagSettingsStatus410Schema, getFlagStatus200Schema, getFlagStatus304Schema, getFlagStatus400Schema, getFlagStatus401Schema, getFlagStatus402Schema, getFlagStatus403Schema, getFlagStatus404Schema, getFlagStatus410Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema, getIntegrationLogDrainsQuerySlugSchema, getIntegrationLogDrainsQueryTeamIdSchema, getIntegrationLogDrainsResponseSchema, getIntegrationLogDrainsStatus200Schema, getIntegrationLogDrainsStatus400Schema, getIntegrationLogDrainsStatus401Schema, getIntegrationLogDrainsStatus403Schema, getIntegrationLogDrainsStatus410Schema, getIntegrationResourcePathIntegrationConfigurationIdSchema, getIntegrationResourcePathResourceIdSchema, getIntegrationResourceResponseSchema, getIntegrationResourceStatus200Schema, getIntegrationResourceStatus400Schema, getIntegrationResourceStatus401Schema, getIntegrationResourceStatus403Schema, getIntegrationResourceStatus404Schema, getIntegrationResourceStatus410Schema, getIntegrationResourcesPathIntegrationConfigurationIdSchema, getIntegrationResourcesResponseSchema, getIntegrationResourcesStatus200Schema, getIntegrationResourcesStatus400Schema, getIntegrationResourcesStatus401Schema, getIntegrationResourcesStatus403Schema, getIntegrationResourcesStatus404Schema, getIntegrationResourcesStatus410Schema, getInvoicePathIntegrationConfigurationIdSchema, getInvoicePathInvoiceIdSchema, getInvoiceResponseSchema, getInvoiceStatus200Schema, getInvoiceStatus400Schema, getInvoiceStatus401Schema, getInvoiceStatus403Schema, getInvoiceStatus404Schema, getInvoiceStatus410Schema, getInvoiceStatus429Schema, getMemberPathIntegrationConfigurationIdSchema, getMemberPathMemberIdSchema, getMemberResponseSchema, getMemberStatus200Schema, getMemberStatus400Schema, getMemberStatus401Schema, getMemberStatus403Schema, getMemberStatus404Schema, getMemberStatus410Schema, getMicrofrontendsConfigForProjectPathProjectIdOrNameSchema, getMicrofrontendsConfigForProjectQuerySlugSchema, getMicrofrontendsConfigForProjectQueryTeamIdSchema, getMicrofrontendsConfigForProjectResponseSchema, getMicrofrontendsConfigForProjectStatus200Schema, getMicrofrontendsConfigForProjectStatus400Schema, getMicrofrontendsConfigForProjectStatus401Schema, getMicrofrontendsConfigForProjectStatus403Schema, getMicrofrontendsConfigForProjectStatus404Schema, getMicrofrontendsConfigForProjectStatus410Schema, getMicrofrontendsConfigForProjectStatus500Schema, getMicrofrontendsConfigPathDeploymentIdSchema, getMicrofrontendsConfigQuerySlugSchema, getMicrofrontendsConfigQueryTeamIdSchema, getMicrofrontendsConfigResponseSchema, getMicrofrontendsConfigStatus200Schema, getMicrofrontendsConfigStatus400Schema, getMicrofrontendsConfigStatus401Schema, getMicrofrontendsConfigStatus403Schema, getMicrofrontendsConfigStatus404Schema, getMicrofrontendsConfigStatus410Schema, getMicrofrontendsConfigStatus500Schema, getMicrofrontendsGroupsQuerySlugSchema, getMicrofrontendsGroupsQueryTeamIdSchema, getMicrofrontendsGroupsResponseSchema, getMicrofrontendsGroupsStatus200Schema, getMicrofrontendsGroupsStatus400Schema, getMicrofrontendsGroupsStatus401Schema, getMicrofrontendsGroupsStatus403Schema, getMicrofrontendsGroupsStatus410Schema, getMicrofrontendsGroupsStatus500Schema, getMicrofrontendsInGroupPathGroupIdSchema, getMicrofrontendsInGroupQuerySlugSchema, getMicrofrontendsInGroupQueryTeamIdSchema, getMicrofrontendsInGroupResponseSchema, getMicrofrontendsInGroupStatus200Schema, getMicrofrontendsInGroupStatus400Schema, getMicrofrontendsInGroupStatus401Schema, getMicrofrontendsInGroupStatus403Schema, getMicrofrontendsInGroupStatus410Schema, getNamedSandboxPathNameSchema, getNamedSandboxQueryProjectIdSchema, getNamedSandboxQueryResumeSchema, getNamedSandboxQuerySlugSchema, getNamedSandboxQueryTeamIdSchema, getNamedSandboxResponseSchema, getNamedSandboxStatus200Schema, getNamedSandboxStatus400Schema, getNamedSandboxStatus401Schema, getNamedSandboxStatus402Schema, getNamedSandboxStatus403Schema, getNamedSandboxStatus404Schema, getNamedSandboxStatus409Schema, getNamedSandboxStatus410Schema, getNamedSandboxStatus429Schema, getNamedSandboxStatus500Schema, getObservabilityConfigurationProjectsQuerySlugSchema, getObservabilityConfigurationProjectsQueryTeamIdSchema, getObservabilityConfigurationProjectsResponseSchema, getObservabilityConfigurationProjectsStatus200Schema, getObservabilityConfigurationProjectsStatus400Schema, getObservabilityConfigurationProjectsStatus401Schema, getObservabilityConfigurationProjectsStatus403Schema, getObservabilityConfigurationProjectsStatus404Schema, getObservabilityConfigurationProjectsStatus410Schema, getObservabilitySchemaByMetricIdPathMetricIdSchema, getObservabilitySchemaByMetricIdResponseSchema, getObservabilitySchemaByMetricIdStatus200Schema, getObservabilitySchemaByMetricIdStatus400Schema, getObservabilitySchemaByMetricIdStatus401Schema, getObservabilitySchemaByMetricIdStatus403Schema, getObservabilitySchemaByMetricIdStatus410Schema, getObservabilitySchemaResponseSchema, getObservabilitySchemaStatus200Schema, getObservabilitySchemaStatus400Schema, getObservabilitySchemaStatus401Schema, getObservabilitySchemaStatus403Schema, getObservabilitySchemaStatus410Schema, getOrCreateDrivePathNameSchema, getOrCreateDriveQuerySlugSchema, getOrCreateDriveQueryTeamIdSchema, getOrCreateDriveResponseSchema, getOrCreateDriveStatus200Schema, getOrCreateDriveStatus201Schema, getOrCreateDriveStatus400Schema, getOrCreateDriveStatus401Schema, getOrCreateDriveStatus402Schema, getOrCreateDriveStatus403Schema, getOrCreateDriveStatus404Schema, getOrCreateDriveStatus409Schema, getOrCreateDriveStatus410Schema, getOrCreateDriveStatus429Schema, getOrderPathOrderIdSchema, getOrderQueryTeamIdSchema, getOrderResponseSchema, getOrderStatus200Schema, getOrderStatus400Schema, getOrderStatus401Schema, getOrderStatus403Schema, getOrderStatus404Schema, getOrderStatus429Schema, getOrderStatus500Schema, getProjectCheckPathCheckIdSchema, getProjectCheckPathProjectIdOrNameSchema, getProjectCheckQuerySlugSchema, getProjectCheckQueryTeamIdSchema, getProjectCheckResponseSchema, getProjectCheckStatus200Schema, getProjectCheckStatus400Schema, getProjectCheckStatus401Schema, getProjectCheckStatus403Schema, getProjectCheckStatus410Schema, getProjectCheckStatus500Schema, getProjectDomainPathDomainSchema, getProjectDomainPathIdOrNameSchema, getProjectDomainQuerySlugSchema, getProjectDomainQueryTeamIdSchema, getProjectDomainResponseSchema, getProjectDomainStatus200Schema, getProjectDomainStatus400Schema, getProjectDomainStatus401Schema, getProjectDomainStatus403Schema, getProjectDomainStatus410Schema, getProjectDomainsPathIdOrNameSchema, getProjectDomainsQueryCustomEnvironmentIdSchema, getProjectDomainsQueryGitBranchSchema, getProjectDomainsQueryLimitSchema, getProjectDomainsQueryOrderSchema, getProjectDomainsQueryProductionSchema, getProjectDomainsQueryRedirectSchema, getProjectDomainsQueryRedirectsSchema, getProjectDomainsQuerySinceSchema, getProjectDomainsQuerySlugSchema, getProjectDomainsQueryTargetSchema, getProjectDomainsQueryTeamIdSchema, getProjectDomainsQueryUntilSchema, getProjectDomainsQueryVerifiedSchema, getProjectDomainsResponseSchema, getProjectDomainsStatus200Schema, getProjectDomainsStatus400Schema, getProjectDomainsStatus401Schema, getProjectDomainsStatus403Schema, getProjectDomainsStatus410Schema, getProjectEnvPathIdOrNameSchema, getProjectEnvPathIdSchema, getProjectEnvQuerySlugSchema, getProjectEnvQueryTeamIdSchema, getProjectEnvResponseSchema, getProjectEnvStatus200Schema, getProjectEnvStatus400Schema, getProjectEnvStatus401Schema, getProjectEnvStatus403Schema, getProjectEnvStatus410Schema, getProjectMembersPathIdOrNameSchema, getProjectMembersQueryLimitSchema, getProjectMembersQuerySearchSchema, getProjectMembersQuerySinceSchema, getProjectMembersQuerySlugSchema, getProjectMembersQueryTeamIdSchema, getProjectMembersQueryUntilSchema, getProjectMembersResponseSchema, getProjectMembersStatus200Schema, getProjectMembersStatus400Schema, getProjectMembersStatus401Schema, getProjectMembersStatus403Schema, getProjectMembersStatus410Schema, getProjectPathIdOrNameSchema, getProjectQuerySlugSchema, getProjectQueryTeamIdSchema, getProjectResponseSchema, getProjectStatus200Schema, getProjectStatus400Schema, getProjectStatus401Schema, getProjectStatus403Schema, getProjectStatus410Schema, getProjectTokenPathIdOrNameSchema, getProjectTokenQuerySlugSchema, getProjectTokenQueryTeamIdSchema, getProjectTokenResponseSchema, getProjectTokenStatus200Schema, getProjectTokenStatus400Schema, getProjectTokenStatus401Schema, getProjectTokenStatus403Schema, getProjectTokenStatus404Schema, getProjectTokenStatus410Schema, getProjectTraceQueryProjectIdSchema, getProjectTraceQueryRequestIdSchema, getProjectTraceQuerySlugSchema, getProjectTraceQueryTeamIdSchema, getProjectTraceResponseSchema, getProjectTraceStatus200Schema, getProjectTraceStatus400Schema, getProjectTraceStatus401Schema, getProjectTraceStatus403Schema, getProjectTraceStatus404Schema, getProjectTraceStatus410Schema, getProjectsByIdOrNameCustomEnvironmentsPathIdOrNameSchema, getProjectsByIdOrNameCustomEnvironmentsQueryGitBranchSchema, getProjectsByIdOrNameCustomEnvironmentsQuerySlugSchema, getProjectsByIdOrNameCustomEnvironmentsQueryTeamIdSchema, getProjectsByIdOrNameCustomEnvironmentsResponseSchema, getProjectsByIdOrNameCustomEnvironmentsStatus200Schema, getProjectsByIdOrNameCustomEnvironmentsStatus400Schema, getProjectsByIdOrNameCustomEnvironmentsStatus401Schema, getProjectsByIdOrNameCustomEnvironmentsStatus403Schema, getProjectsByIdOrNameCustomEnvironmentsStatus410Schema, getProjectsQueryBuildMachineTypesSchema, getProjectsQueryBuildQueueConfigurationSchema, getProjectsQueryDeprecatedSchema, getProjectsQueryEdgeConfigIdSchema, getProjectsQueryEdgeConfigTokenIdSchema, getProjectsQueryElasticConcurrencyEnabledSchema, getProjectsQueryExcludeReposSchema, getProjectsQueryFromSchema, getProjectsQueryGitForkProtectionSchema, getProjectsQueryLimitSchema, getProjectsQueryRepoIdSchema, getProjectsQueryRepoSchema, getProjectsQueryRepoUrlSchema, getProjectsQuerySearchSchema, getProjectsQuerySlugSchema, getProjectsQueryStaticIpsEnabledSchema, getProjectsQueryTeamIdSchema, getProjectsResponseSchema, getProjectsStatus200Schema, getProjectsStatus400Schema, getProjectsStatus401Schema, getProjectsStatus403Schema, getProjectsStatus410Schema, getRecordsPathDomainSchema, getRecordsQueryLimitSchema, getRecordsQuerySinceSchema, getRecordsQuerySlugSchema, getRecordsQueryTeamIdSchema, getRecordsQueryUntilSchema, getRecordsResponseSchema, getRecordsStatus200Schema, getRecordsStatus400Schema, getRecordsStatus401Schema, getRecordsStatus403Schema, getRecordsStatus404Schema, getRecordsStatus410Schema, getRedirectsQueryDiffSchema, getRedirectsQueryPageSchema, getRedirectsQueryPerPageSchema, getRedirectsQueryProjectIdSchema, getRedirectsQueryQSchema, getRedirectsQuerySlugSchema, getRedirectsQuerySortBySchema, getRedirectsQuerySortOrderSchema, getRedirectsQueryTeamIdSchema, getRedirectsQueryVersionIdSchema, getRedirectsResponseSchema, getRedirectsStatus200Schema, getRedirectsStatus400Schema, getRedirectsStatus401Schema, getRedirectsStatus403Schema, getRedirectsStatus404Schema, getRedirectsStatus410Schema, getRepositoryImagePathIdOrNameSchema, getRepositoryImagePathImageIdOrDigestSchema, getRepositoryImageQueryProjectIdSchema, getRepositoryImageQuerySlugSchema, getRepositoryImageQueryTeamIdSchema, getRepositoryImageResponseSchema, getRepositoryImageStatus200Schema, getRepositoryImageStatus400Schema, getRepositoryImageStatus401Schema, getRepositoryImageStatus403Schema, getRepositoryImageStatus404Schema, getRepositoryImageStatus410Schema, getRepositoryPathIdOrNameSchema, getRepositoryQueryProjectIdSchema, getRepositoryQuerySlugSchema, getRepositoryQueryTeamIdSchema, getRepositoryResponseSchema, getRepositoryStatus200Schema, getRepositoryStatus400Schema, getRepositoryStatus401Schema, getRepositoryStatus403Schema, getRepositoryStatus404Schema, getRepositoryStatus410Schema, getRepositoryTagPathIdOrNameSchema, getRepositoryTagPathTagSchema, getRepositoryTagQueryProjectIdSchema, getRepositoryTagQuerySlugSchema, getRepositoryTagQueryTeamIdSchema, getRepositoryTagResponseSchema, getRepositoryTagStatus200Schema, getRepositoryTagStatus400Schema, getRepositoryTagStatus401Schema, getRepositoryTagStatus403Schema, getRepositoryTagStatus404Schema, getRepositoryTagStatus410Schema, getRollingReleaseBillingStatusPathIdOrNameSchema, getRollingReleaseBillingStatusQuerySlugSchema, getRollingReleaseBillingStatusQueryTeamIdSchema, getRollingReleaseBillingStatusResponseSchema, getRollingReleaseBillingStatusStatus200Schema, getRollingReleaseBillingStatusStatus400Schema, getRollingReleaseBillingStatusStatus401Schema, getRollingReleaseBillingStatusStatus403Schema, getRollingReleaseBillingStatusStatus404Schema, getRollingReleaseBillingStatusStatus410Schema, getRollingReleaseConfigPathIdOrNameSchema, getRollingReleaseConfigQuerySlugSchema, getRollingReleaseConfigQueryTeamIdSchema, getRollingReleaseConfigResponseSchema, getRollingReleaseConfigStatus200Schema, getRollingReleaseConfigStatus400Schema, getRollingReleaseConfigStatus401Schema, getRollingReleaseConfigStatus403Schema, getRollingReleaseConfigStatus404Schema, getRollingReleaseConfigStatus410Schema, getRollingReleasePathIdOrNameSchema, getRollingReleaseQuerySlugSchema, getRollingReleaseQueryStateSchema, getRollingReleaseQueryTeamIdSchema, getRollingReleaseResponseSchema, getRollingReleaseStatus200Schema, getRollingReleaseStatus400Schema, getRollingReleaseStatus401Schema, getRollingReleaseStatus403Schema, getRollingReleaseStatus404Schema, getRollingReleaseStatus410Schema, getRootResponseSchema, getRootStatus200Schema, getRootStatus400Schema, getRootStatus401Schema, getRootStatus402Schema, getRootStatus403Schema, getRootStatus404Schema, getRootStatus410Schema, getRouteVersionsPathProjectIdSchema, getRouteVersionsQuerySlugSchema, getRouteVersionsQueryTeamIdSchema, getRouteVersionsResponseSchema, getRouteVersionsStatus200Schema, getRouteVersionsStatus400Schema, getRouteVersionsStatus401Schema, getRouteVersionsStatus403Schema, getRouteVersionsStatus410Schema, getRoutesPathProjectIdSchema, getRoutesQueryDiffSchema, getRoutesQueryFilterSchema, getRoutesQueryQSchema, getRoutesQuerySlugSchema, getRoutesQueryTeamIdSchema, getRoutesQueryVersionIdSchema, getRoutesResponseSchema, getRoutesStatus200Schema, getRoutesStatus400Schema, getRoutesStatus401Schema, getRoutesStatus403Schema, getRoutesStatus404Schema, getRoutesStatus410Schema, getRuntimeLogsPathDeploymentIdSchema, getRuntimeLogsPathProjectIdSchema, getRuntimeLogsQuerySlugSchema, getRuntimeLogsQueryTeamIdSchema, getRuntimeLogsResponseSchema, getRuntimeLogsStatus200Schema, getRuntimeLogsStatus400Schema, getRuntimeLogsStatus401Schema, getRuntimeLogsStatus403Schema, getRuntimeLogsStatus410Schema, getSdkKeysPathProjectIdOrNameSchema, getSdkKeysQuerySlugSchema, getSdkKeysQueryTeamIdSchema, getSdkKeysResponseSchema, getSdkKeysStatus200Schema, getSdkKeysStatus400Schema, getSdkKeysStatus401Schema, getSdkKeysStatus402Schema, getSdkKeysStatus403Schema, getSdkKeysStatus404Schema, getSdkKeysStatus410Schema, getSecurityFirewallConfigResponseSchema, getSecurityFirewallConfigStatus200Schema, getSecurityFirewallConfigStatus400Schema, getSecurityFirewallConfigStatus401Schema, getSecurityFirewallConfigStatus403Schema, getSecurityFirewallConfigStatus404Schema, getSecurityFirewallConfigStatus410Schema, getSecurityFirewallEventsQueryEndTimestampSchema, getSecurityFirewallEventsQueryHostsSchema, getSecurityFirewallEventsQueryProjectIdSchema, getSecurityFirewallEventsQueryStartTimestampSchema, getSecurityFirewallEventsResponseSchema, getSecurityFirewallEventsStatus200Schema, getSecurityFirewallEventsStatus400Schema, getSecurityFirewallEventsStatus401Schema, getSecurityFirewallEventsStatus403Schema, getSecurityFirewallEventsStatus404Schema, getSecurityFirewallEventsStatus410Schema, getSecurityFirewallEventsStatus500Schema, getSessionCommandLogsPathCmdIdSchema, getSessionCommandLogsPathSessionIdSchema, getSessionCommandLogsQuerySlugSchema, getSessionCommandLogsQueryTeamIdSchema, getSessionCommandLogsResponseSchema, getSessionCommandLogsStatus200Schema, getSessionCommandLogsStatus400Schema, getSessionCommandLogsStatus401Schema, getSessionCommandLogsStatus403Schema, getSessionCommandLogsStatus404Schema, getSessionCommandLogsStatus410Schema, getSessionCommandLogsStatus422Schema, getSessionCommandLogsStatus429Schema, getSessionCommandLogsStatus500Schema, getSessionCommandPathCmdIdSchema, getSessionCommandPathSessionIdSchema, getSessionCommandQuerySlugSchema, getSessionCommandQueryTeamIdSchema, getSessionCommandQueryWaitSchema, getSessionCommandResponseSchema, getSessionCommandStatus200Schema, getSessionCommandStatus400Schema, getSessionCommandStatus401Schema, getSessionCommandStatus403Schema, getSessionCommandStatus404Schema, getSessionCommandStatus410Schema, getSessionCommandStatus422Schema, getSessionCommandStatus429Schema, getSessionCommandStatus500Schema, getSessionPathSessionIdSchema, getSessionQuerySlugSchema, getSessionQueryTeamIdSchema, getSessionResponseSchema, getSessionSnapshotPathSnapshotIdSchema, getSessionSnapshotQuerySlugSchema, getSessionSnapshotQueryTeamIdSchema, getSessionSnapshotResponseSchema, getSessionSnapshotStatus200Schema, getSessionSnapshotStatus400Schema, getSessionSnapshotStatus401Schema, getSessionSnapshotStatus403Schema, getSessionSnapshotStatus404Schema, getSessionSnapshotStatus410Schema, getSessionSnapshotStatus429Schema, getSessionStatus200Schema, getSessionStatus400Schema, getSessionStatus401Schema, getSessionStatus403Schema, getSessionStatus404Schema, getSessionStatus410Schema, getSessionStatus429Schema, getSessionStatus500Schema, getSharedEnvVarPathIdSchema, getSharedEnvVarQuerySlugSchema, getSharedEnvVarQueryTeamIdSchema, getSharedEnvVarResponseSchema, getSharedEnvVarStatus200Schema, getSharedEnvVarStatus400Schema, getSharedEnvVarStatus401Schema, getSharedEnvVarStatus403Schema, getSharedEnvVarStatus410Schema, getStorageStoresByIdPathIdSchema, getStorageStoresByIdQueryincludeGuidesSchema, getStorageStoresByIdQueryskipMetadataSchema, getStorageStoresByIdResponseSchema, getStorageStoresByIdStatus200Schema, getStorageStoresByIdStatus400Schema, getStorageStoresByIdStatus401Schema, getStorageStoresByIdStatus403Schema, getStorageStoresByIdStatus404Schema, getStorageStoresByIdStatus410Schema, getSupportedTldsQueryTeamIdSchema, getSupportedTldsResponseSchema, getSupportedTldsStatus200Schema, getSupportedTldsStatus400Schema, getSupportedTldsStatus401Schema, getSupportedTldsStatus403Schema, getSupportedTldsStatus429Schema, getSupportedTldsStatus500Schema, getTeamAccessRequestPathTeamIdSchema, getTeamAccessRequestPathUserIdSchema, getTeamAccessRequestResponseSchema, getTeamAccessRequestStatus200Schema, getTeamAccessRequestStatus400Schema, getTeamAccessRequestStatus401Schema, getTeamAccessRequestStatus403Schema, getTeamAccessRequestStatus404Schema, getTeamAccessRequestStatus410Schema, getTeamMembersPathTeamIdSchema, getTeamMembersQueryEligibleMembersForProjectIdSchema, getTeamMembersQueryExcludeProjectSchema, getTeamMembersQueryLimitSchema, getTeamMembersQueryRoleSchema, getTeamMembersQuerySearchSchema, getTeamMembersQuerySinceSchema, getTeamMembersQuerySlugSchema, getTeamMembersQueryUntilSchema, getTeamMembersResponseSchema, getTeamMembersStatus200Schema, getTeamMembersStatus400Schema, getTeamMembersStatus401Schema, getTeamMembersStatus403Schema, getTeamMembersStatus404Schema, getTeamMembersStatus410Schema, getTeamPathTeamIdSchema, getTeamQuerySlugSchema, getTeamResponseSchema, getTeamStatus200Schema, getTeamStatus400Schema, getTeamStatus401Schema, getTeamStatus403Schema, getTeamStatus404Schema, getTeamStatus410Schema, getTeamsQueryLimitSchema, getTeamsQuerySinceSchema, getTeamsQueryUntilSchema, getTeamsResponseSchema, getTeamsStatus200Schema, getTeamsStatus400Schema, getTeamsStatus401Schema, getTeamsStatus403Schema, getTeamsStatus410Schema, getTeamsStatus500Schema, getTldPathTldSchema, getTldPricePathTldSchema, getTldPriceQueryTeamIdSchema, getTldPriceQueryYearsSchema, getTldPriceResponseSchema, getTldPriceStatus200Schema, getTldPriceStatus400Schema, getTldPriceStatus401Schema, getTldPriceStatus403Schema, getTldPriceStatus429Schema, getTldPriceStatus500Schema, getTldQueryTeamIdSchema, getTldResponseSchema, getTldStatus200Schema, getTldStatus400Schema, getTldStatus401Schema, getTldStatus403Schema, getTldStatus429Schema, getTldStatus500Schema, getVersionsQueryProjectIdSchema, getVersionsQuerySlugSchema, getVersionsQueryTeamIdSchema, getVersionsResponseSchema, getVersionsStatus200Schema, getVersionsStatus400Schema, getVersionsStatus401Schema, getVersionsStatus403Schema, getVersionsStatus410Schema, getVersionsStatus500Schema, getWebhookPathIdSchema, getWebhookQuerySlugSchema, getWebhookQueryTeamIdSchema, getWebhookResponseSchema, getWebhookStatus200Schema, getWebhookStatus400Schema, getWebhookStatus401Schema, getWebhookStatus403Schema, getWebhookStatus410Schema, getWebhooksQueryProjectIdSchema, getWebhooksQuerySlugSchema, getWebhooksQueryTeamIdSchema, getWebhooksResponseSchema, getWebhooksStatus200Schema, getWebhooksStatus400Schema, getWebhooksStatus401Schema, getWebhooksStatus403Schema, getWebhooksStatus410Schema, gitNamespacesQueryHostSchema, gitNamespacesQueryProviderSchema, gitNamespacesQueryViewerMetadataSchema, gitNamespacesResponseSchema, gitNamespacesStatus200Schema, gitNamespacesStatus400Schema, gitNamespacesStatus401Schema, gitNamespacesStatus403Schema, gitNamespacesStatus404Schema, gitNamespacesStatus410Schema, gitNamespacesStatus429Schema, gitNamespacesStatus500Schema, globalConfigItemSchema, globalConfigItemValueSchema, globalConfigTokenSchema, httpApiDecodeErrorSchema, importConnectorTokensPathConnectorSchema, importConnectorTokensResponseSchema, importConnectorTokensStatus200Schema, importConnectorTokensStatus400Schema, importConnectorTokensStatus401Schema, importConnectorTokensStatus403Schema, importConnectorTokensStatus404Schema, importConnectorTokensStatus410Schema, importConnectorTokensStatus422Schema, importResourcePathIntegrationConfigurationIdSchema, importResourcePathResourceIdSchema, importResourceResponseSchema, importResourceStatus200Schema, importResourceStatus400Schema, importResourceStatus401Schema, importResourceStatus403Schema, importResourceStatus404Schema, importResourceStatus409Schema, importResourceStatus410Schema, importResourceStatus422Schema, importResourceStatus429Schema, internalServerErrorSchema, invalidAdditionalContactInfoSchema, invalidateBySrcImagesQueryProjectIdOrNameSchema, invalidateBySrcImagesQuerySlugSchema, invalidateBySrcImagesQueryTeamIdSchema, invalidateBySrcImagesResponseSchema, invalidateBySrcImagesStatus200Schema, invalidateBySrcImagesStatus400Schema, invalidateBySrcImagesStatus401Schema, invalidateBySrcImagesStatus402Schema, invalidateBySrcImagesStatus403Schema, invalidateBySrcImagesStatus404Schema, invalidateBySrcImagesStatus410Schema, invalidateByTagsQueryProjectIdOrNameSchema, invalidateByTagsQuerySlugSchema, invalidateByTagsQueryTeamIdSchema, invalidateByTagsResponseSchema, invalidateByTagsStatus200Schema, invalidateByTagsStatus400Schema, invalidateByTagsStatus401Schema, invalidateByTagsStatus403Schema, invalidateByTagsStatus404Schema, invalidateByTagsStatus410Schema, inviteUserToTeamPathTeamIdSchema, inviteUserToTeamQuerySlugSchema, inviteUserToTeamResponseSchema, inviteUserToTeamStatus200Schema, inviteUserToTeamStatus400Schema, inviteUserToTeamStatus401Schema, inviteUserToTeamStatus403Schema, inviteUserToTeamStatus410Schema, inviteUserToTeamStatus503Schema, invitedTeamMemberSchema, issueCertQuerySlugSchema, issueCertQueryTeamIdSchema, issueCertResponseSchema, issueCertStatus200Schema, issueCertStatus400Schema, issueCertStatus401Schema, issueCertStatus402Schema, issueCertStatus403Schema, issueCertStatus404Schema, issueCertStatus410Schema, issueCertStatus449Schema, issueCertStatus500Schema, issueSchema, joinTeamPathTeamIdSchema, joinTeamResponseSchema, joinTeamStatus200Schema, joinTeamStatus400Schema, joinTeamStatus401Schema, joinTeamStatus402Schema, joinTeamStatus403Schema, joinTeamStatus404Schema, joinTeamStatus410Schema, joinTeamStatus503Schema, killSessionCommandPathCmdIdSchema, killSessionCommandPathSessionIdSchema, killSessionCommandQuerySlugSchema, killSessionCommandQueryTeamIdSchema, killSessionCommandResponseSchema, killSessionCommandStatus200Schema, killSessionCommandStatus400Schema, killSessionCommandStatus401Schema, killSessionCommandStatus403Schema, killSessionCommandStatus404Schema, killSessionCommandStatus410Schema, killSessionCommandStatus422Schema, killSessionCommandStatus429Schema, killSessionCommandStatus500Schema, languageCodeRequiredSchema, listAccessGroupMembersPathIdOrNameSchema, listAccessGroupMembersQueryLimitSchema, listAccessGroupMembersQueryNextSchema, listAccessGroupMembersQuerySearchSchema, listAccessGroupMembersQuerySlugSchema, listAccessGroupMembersQueryTeamIdSchema, listAccessGroupMembersResponseSchema, listAccessGroupMembersStatus200Schema, listAccessGroupMembersStatus400Schema, listAccessGroupMembersStatus401Schema, listAccessGroupMembersStatus403Schema, listAccessGroupMembersStatus410Schema, listAccessGroupProjectsPathIdOrNameSchema, listAccessGroupProjectsQueryLimitSchema, listAccessGroupProjectsQueryNextSchema, listAccessGroupProjectsQuerySlugSchema, listAccessGroupProjectsQueryTeamIdSchema, listAccessGroupProjectsResponseSchema, listAccessGroupProjectsStatus200Schema, listAccessGroupProjectsStatus400Schema, listAccessGroupProjectsStatus401Schema, listAccessGroupProjectsStatus403Schema, listAccessGroupProjectsStatus410Schema, listAccessGroupsQueryLimitSchema, listAccessGroupsQueryMembersLimitSchema, listAccessGroupsQueryNextSchema, listAccessGroupsQueryProjectIdSchema, listAccessGroupsQueryProjectsLimitSchema, listAccessGroupsQuerySearchSchema, listAccessGroupsQuerySlugSchema, listAccessGroupsQueryTeamIdSchema, listAccessGroupsResponseSchema, listAccessGroupsStatus200Schema, listAccessGroupsStatus400Schema, listAccessGroupsStatus401Schema, listAccessGroupsStatus403Schema, listAccessGroupsStatus410Schema, listAiGatewayRulesQueryIncludeDisabledSchema, listAiGatewayRulesQuerySlugSchema, listAiGatewayRulesQueryTeamIdSchema, listAiGatewayRulesResponseSchema, listAiGatewayRulesStatus200Schema, listAiGatewayRulesStatus400Schema, listAiGatewayRulesStatus401Schema, listAiGatewayRulesStatus403Schema, listAiGatewayRulesStatus410Schema, listAiGatewayRulesStatus500Schema, listAiGatewayVirtualModelConfigsQueryCursorSchema, listAiGatewayVirtualModelConfigsQueryLimitSchema, listAiGatewayVirtualModelConfigsQueryOwnerIdSchema, listAiGatewayVirtualModelConfigsQuerySlugSchema, listAiGatewayVirtualModelConfigsQueryTeamIdSchema, listAiGatewayVirtualModelConfigsResponseSchema, listAiGatewayVirtualModelConfigsStatus200Schema, listAiGatewayVirtualModelConfigsStatus400Schema, listAiGatewayVirtualModelConfigsStatus401Schema, listAiGatewayVirtualModelConfigsStatus403Schema, listAiGatewayVirtualModelConfigsStatus410Schema, listAiGatewayVirtualModelConfigsStatus500Schema, listAliasesQueryDomainSchema, listAliasesQueryFromSchema, listAliasesQueryLimitSchema, listAliasesQueryProjectIdSchema, listAliasesQueryRollbackDeploymentIdSchema, listAliasesQuerySinceSchema, listAliasesQuerySlugSchema, listAliasesQueryTeamIdSchema, listAliasesQueryUntilSchema, listAliasesResponseSchema, listAliasesStatus200Schema, listAliasesStatus400Schema, listAliasesStatus401Schema, listAliasesStatus403Schema, listAliasesStatus404Schema, listAliasesStatus410Schema, listAuthTokensResponseSchema, listAuthTokensStatus200Schema, listAuthTokensStatus400Schema, listAuthTokensStatus401Schema, listAuthTokensStatus403Schema, listAuthTokensStatus410Schema, listBillingChargesQueryFromSchema, listBillingChargesQuerySlugSchema, listBillingChargesQueryTeamIdSchema, listBillingChargesQueryToSchema, listBillingChargesResponseSchema, listBillingChargesStatus200Schema, listBillingChargesStatus400Schema, listBillingChargesStatus401Schema, listBillingChargesStatus403Schema, listBillingChargesStatus404Schema, listBillingChargesStatus410Schema, listBillingChargesStatus500Schema, listBillingChargesStatus503Schema, listCheckRunsPathCheckIdSchema, listCheckRunsPathProjectIdOrNameSchema, listCheckRunsQuerySlugSchema, listCheckRunsQueryTeamIdSchema, listCheckRunsResponseSchema, listCheckRunsStatus200Schema, listCheckRunsStatus400Schema, listCheckRunsStatus401Schema, listCheckRunsStatus403Schema, listCheckRunsStatus410Schema, listCheckRunsStatus500Schema, listContractCommitmentsQuerySlugSchema, listContractCommitmentsQueryTeamIdSchema, listContractCommitmentsResponseSchema, listContractCommitmentsStatus200Schema, listContractCommitmentsStatus400Schema, listContractCommitmentsStatus401Schema, listContractCommitmentsStatus403Schema, listContractCommitmentsStatus404Schema, listContractCommitmentsStatus410Schema, listDeploymentAliasesPathIdSchema, listDeploymentAliasesQuerySlugSchema, listDeploymentAliasesQueryTeamIdSchema, listDeploymentAliasesResponseSchema, listDeploymentAliasesStatus200Schema, listDeploymentAliasesStatus400Schema, listDeploymentAliasesStatus401Schema, listDeploymentAliasesStatus403Schema, listDeploymentAliasesStatus404Schema, listDeploymentAliasesStatus410Schema, listDeploymentCheckRunsPathDeploymentIdSchema, listDeploymentCheckRunsQuerySlugSchema, listDeploymentCheckRunsQueryTeamIdSchema, listDeploymentCheckRunsResponseSchema, listDeploymentCheckRunsStatus200Schema, listDeploymentCheckRunsStatus400Schema, listDeploymentCheckRunsStatus401Schema, listDeploymentCheckRunsStatus403Schema, listDeploymentCheckRunsStatus410Schema, listDeploymentCheckRunsStatus500Schema, listDeploymentFilesPathIdSchema, listDeploymentFilesQuerySlugSchema, listDeploymentFilesQueryTeamIdSchema, listDeploymentFilesResponseSchema, listDeploymentFilesStatus200Schema, listDeploymentFilesStatus400Schema, listDeploymentFilesStatus401Schema, listDeploymentFilesStatus403Schema, listDeploymentFilesStatus404Schema, listDeploymentFilesStatus410Schema, listDrivesQueryCursorSchema, listDrivesQueryLimitSchema, listDrivesQueryNamePrefixSchema, listDrivesQueryProjectIdSchema, listDrivesQuerySlugSchema, listDrivesQuerySortBySchema, listDrivesQuerySortOrderSchema, listDrivesQueryTeamIdSchema, listDrivesResponseSchema, listDrivesStatus200Schema, listDrivesStatus400Schema, listDrivesStatus401Schema, listDrivesStatus403Schema, listDrivesStatus404Schema, listDrivesStatus410Schema, listDrivesStatus429Schema, listEventTypeSchema, listEventTypesQuerySlugSchema, listEventTypesQueryTeamIdSchema, listEventTypesResponseSchema, listEventTypesStatus200Schema, listEventTypesStatus400Schema, listEventTypesStatus401Schema, listEventTypesStatus403Schema, listEventTypesStatus410Schema, listFlagSegmentsPathProjectIdOrNameSchema, listFlagSegmentsQuerySlugSchema, listFlagSegmentsQueryTeamIdSchema, listFlagSegmentsQueryWithMetadataSchema, listFlagSegmentsResponseSchema, listFlagSegmentsStatus200Schema, listFlagSegmentsStatus400Schema, listFlagSegmentsStatus401Schema, listFlagSegmentsStatus402Schema, listFlagSegmentsStatus403Schema, listFlagSegmentsStatus404Schema, listFlagSegmentsStatus410Schema, listFlagVersionsPathFlagIdOrSlugSchema, listFlagVersionsPathProjectIdOrNameSchema, listFlagVersionsQueryCursorSchema, listFlagVersionsQueryEnvironmentSchema, listFlagVersionsQueryLimitSchema, listFlagVersionsQuerySlugSchema, listFlagVersionsQueryTeamIdSchema, listFlagVersionsQueryWithMetadataSchema, listFlagVersionsResponseSchema, listFlagVersionsStatus200Schema, listFlagVersionsStatus304Schema, listFlagVersionsStatus400Schema, listFlagVersionsStatus401Schema, listFlagVersionsStatus402Schema, listFlagVersionsStatus403Schema, listFlagVersionsStatus404Schema, listFlagVersionsStatus410Schema, listFlagsPathProjectIdOrNameSchema, listFlagsQueryCursorSchema, listFlagsQueryLimitSchema, listFlagsQuerySearchSchema, listFlagsQuerySlugSchema, listFlagsQueryStateSchema, listFlagsQueryTagsSchema, listFlagsQueryTeamIdSchema, listFlagsQueryWithMetadataSchema, listFlagsResponseSchema, listFlagsStatus200Schema, listFlagsStatus400Schema, listFlagsStatus401Schema, listFlagsStatus402Schema, listFlagsStatus403Schema, listFlagsStatus404Schema, listFlagsStatus410Schema, listFlagsV2PathProjectIdOrNameSchema, listFlagsV2QueryCreatedBySchema, listFlagsV2QueryCursorSchema, listFlagsV2QueryIncludeMarketplaceFlagsSchema, listFlagsV2QueryLimitSchema, listFlagsV2QueryMaintainerIdsSchema, listFlagsV2QuerySearchSchema, listFlagsV2QuerySlugSchema, listFlagsV2QueryStateSchema, listFlagsV2QueryTagsSchema, listFlagsV2QueryTeamIdSchema, listFlagsV2ResponseSchema, listFlagsV2Status200Schema, listFlagsV2Status400Schema, listFlagsV2Status401Schema, listFlagsV2Status402Schema, listFlagsV2Status403Schema, listFlagsV2Status404Schema, listFlagsV2Status410Schema, listNetworksQueryIncludeHostedZonesSchema, listNetworksQueryIncludePeeringConnectionsSchema, listNetworksQueryIncludeProjectsSchema, listNetworksQuerySearchSchema, listNetworksQuerySlugSchema, listNetworksQueryTeamIdSchema, listNetworksResponseSchema, listNetworksStatus200Schema, listNetworksStatus400Schema, listNetworksStatus401Schema, listNetworksStatus403Schema, listNetworksStatus410Schema, listProjectChecksPathProjectIdOrNameSchema, listProjectChecksQueryBlocksSchema, listProjectChecksQuerySlugSchema, listProjectChecksQueryTeamIdSchema, listProjectChecksResponseSchema, listProjectChecksStatus200Schema, listProjectChecksStatus400Schema, listProjectChecksStatus401Schema, listProjectChecksStatus403Schema, listProjectChecksStatus410Schema, listProjectChecksStatus500Schema, listPromoteAliasesPathProjectIdSchema, listPromoteAliasesQueryFailedOnlySchema, listPromoteAliasesQueryLimitSchema, listPromoteAliasesQuerySinceSchema, listPromoteAliasesQuerySlugSchema, listPromoteAliasesQueryTeamIdSchema, listPromoteAliasesQueryUntilSchema, listPromoteAliasesResponseSchema, listPromoteAliasesStatus200Schema, listPromoteAliasesStatus400Schema, listPromoteAliasesStatus401Schema, listPromoteAliasesStatus403Schema, listPromoteAliasesStatus404Schema, listPromoteAliasesStatus410Schema, listRepositoriesQueryCursorSchema, listRepositoriesQueryLimitSchema, listRepositoriesQueryProjectIdSchema, listRepositoriesQuerySlugSchema, listRepositoriesQueryTeamIdSchema, listRepositoriesResponseSchema, listRepositoriesStatus200Schema, listRepositoriesStatus400Schema, listRepositoriesStatus401Schema, listRepositoriesStatus403Schema, listRepositoriesStatus404Schema, listRepositoriesStatus410Schema, listRepositoryImagesPathIdOrNameSchema, listRepositoryImagesQueryCursorSchema, listRepositoryImagesQueryLimitSchema, listRepositoryImagesQueryProjectIdSchema, listRepositoryImagesQuerySlugSchema, listRepositoryImagesQueryTeamIdSchema, listRepositoryImagesQueryUntaggedSchema, listRepositoryImagesResponseSchema, listRepositoryImagesStatus200Schema, listRepositoryImagesStatus400Schema, listRepositoryImagesStatus401Schema, listRepositoryImagesStatus403Schema, listRepositoryImagesStatus404Schema, listRepositoryImagesStatus410Schema, listRepositoryPermissionsPathIdOrNameSchema, listRepositoryPermissionsQueryCursorSchema, listRepositoryPermissionsQueryLimitSchema, listRepositoryPermissionsQueryProjectIdSchema, listRepositoryPermissionsQuerySlugSchema, listRepositoryPermissionsQueryTeamIdSchema, listRepositoryPermissionsResponseSchema, listRepositoryPermissionsStatus200Schema, listRepositoryPermissionsStatus400Schema, listRepositoryPermissionsStatus401Schema, listRepositoryPermissionsStatus403Schema, listRepositoryPermissionsStatus404Schema, listRepositoryPermissionsStatus410Schema, listRepositoryTagsPathIdOrNameSchema, listRepositoryTagsQueryCursorSchema, listRepositoryTagsQueryLimitSchema, listRepositoryTagsQueryProjectIdSchema, listRepositoryTagsQuerySlugSchema, listRepositoryTagsQuerySortBySchema, listRepositoryTagsQuerySortOrderSchema, listRepositoryTagsQueryTeamIdSchema, listRepositoryTagsResponseSchema, listRepositoryTagsStatus200Schema, listRepositoryTagsStatus400Schema, listRepositoryTagsStatus401Schema, listRepositoryTagsStatus403Schema, listRepositoryTagsStatus404Schema, listRepositoryTagsStatus410Schema, listSandboxesQueryCursorSchema, listSandboxesQueryLimitSchema, listSandboxesQueryNamePrefixSchema, listSandboxesQueryProjectSchema, listSandboxesQuerySlugSchema, listSandboxesQuerySortBySchema, listSandboxesQuerySortOrderSchema, listSandboxesQueryStatusSchema, listSandboxesQueryTagsSchema, listSandboxesQueryTeamIdSchema, listSandboxesResponseSchema, listSandboxesStatus200Schema, listSandboxesStatus400Schema, listSandboxesStatus401Schema, listSandboxesStatus403Schema, listSandboxesStatus404Schema, listSandboxesStatus410Schema, listSandboxesStatus429Schema, listSessionCommandsPathSessionIdSchema, listSessionCommandsQuerySlugSchema, listSessionCommandsQueryTeamIdSchema, listSessionCommandsResponseSchema, listSessionCommandsStatus200Schema, listSessionCommandsStatus400Schema, listSessionCommandsStatus401Schema, listSessionCommandsStatus403Schema, listSessionCommandsStatus404Schema, listSessionCommandsStatus410Schema, listSessionCommandsStatus429Schema, listSessionSnapshotsQueryCursorSchema, listSessionSnapshotsQueryLimitSchema, listSessionSnapshotsQueryNameSchema, listSessionSnapshotsQueryProjectSchema, listSessionSnapshotsQuerySlugSchema, listSessionSnapshotsQuerySortOrderSchema, listSessionSnapshotsQueryTeamIdSchema, listSessionSnapshotsResponseSchema, listSessionSnapshotsStatus200Schema, listSessionSnapshotsStatus400Schema, listSessionSnapshotsStatus401Schema, listSessionSnapshotsStatus403Schema, listSessionSnapshotsStatus404Schema, listSessionSnapshotsStatus410Schema, listSessionSnapshotsStatus429Schema, listSessionsQueryCursorSchema, listSessionsQueryLimitSchema, listSessionsQueryNameSchema, listSessionsQueryProjectSchema, listSessionsQuerySlugSchema, listSessionsQuerySortOrderSchema, listSessionsQueryTeamIdSchema, listSessionsResponseSchema, listSessionsStatus200Schema, listSessionsStatus400Schema, listSessionsStatus401Schema, listSessionsStatus403Schema, listSessionsStatus404Schema, listSessionsStatus410Schema, listSessionsStatus429Schema, listSessionsStatus500Schema, listSharedEnvVariableQueryExcludeIdsSchema, listSharedEnvVariableQueryExcludeProjectIdSchema, listSharedEnvVariableQueryIdsSchema, listSharedEnvVariableQueryProjectIdSchema, listSharedEnvVariableQuerySearchSchema, listSharedEnvVariableQuerySlugSchema, listSharedEnvVariableQueryTeamIdSchema, listSharedEnvVariableQueryexcludeIdsSchema, listSharedEnvVariableQueryexcludeProjectIdSchema, listSharedEnvVariableResponseSchema, listSharedEnvVariableStatus200Schema, listSharedEnvVariableStatus400Schema, listSharedEnvVariableStatus401Schema, listSharedEnvVariableStatus403Schema, listSharedEnvVariableStatus404Schema, listSharedEnvVariableStatus410Schema, listTeamFlagSettingsPathTeamIdSchema, listTeamFlagSettingsQueryCursorSchema, listTeamFlagSettingsQueryLimitSchema, listTeamFlagSettingsQuerySlugSchema, listTeamFlagSettingsResponseSchema, listTeamFlagSettingsStatus200Schema, listTeamFlagSettingsStatus400Schema, listTeamFlagSettingsStatus401Schema, listTeamFlagSettingsStatus403Schema, listTeamFlagSettingsStatus410Schema, listTeamFlagsPathTeamIdSchema, listTeamFlagsQueryCursorSchema, listTeamFlagsQueryKindSchema, listTeamFlagsQueryLimitSchema, listTeamFlagsQuerySearchSchema, listTeamFlagsQuerySlugSchema, listTeamFlagsQueryStateSchema, listTeamFlagsQueryTagsSchema, listTeamFlagsQueryWithMetadataSchema, listTeamFlagsResponseSchema, listTeamFlagsStatus200Schema, listTeamFlagsStatus400Schema, listTeamFlagsStatus401Schema, listTeamFlagsStatus403Schema, listTeamFlagsStatus410Schema, listTeamFlagsV2PathTeamIdSchema, listTeamFlagsV2QueryCreatedBySchema, listTeamFlagsV2QueryCursorSchema, listTeamFlagsV2QueryIncludeMarketplaceFlagsSchema, listTeamFlagsV2QueryKindSchema, listTeamFlagsV2QueryLimitSchema, listTeamFlagsV2QueryMaintainerIdsSchema, listTeamFlagsV2QuerySearchSchema, listTeamFlagsV2QuerySlugSchema, listTeamFlagsV2QueryStateSchema, listTeamFlagsV2QueryTagsSchema, listTeamFlagsV2ResponseSchema, listTeamFlagsV2Status200Schema, listTeamFlagsV2Status400Schema, listTeamFlagsV2Status401Schema, listTeamFlagsV2Status403Schema, listTeamFlagsV2Status410Schema, listUserEventsQueryEntityIdSchema, listUserEventsQueryLimitSchema, listUserEventsQueryPrincipalIdSchema, listUserEventsQueryProjectIdsSchema, listUserEventsQuerySinceSchema, listUserEventsQuerySlugSchema, listUserEventsQueryTeamIdSchema, listUserEventsQueryTypesSchema, listUserEventsQueryUntilSchema, listUserEventsQueryUserIdSchema, listUserEventsQueryWithPayloadSchema, listUserEventsResponseSchema, listUserEventsStatus200Schema, listUserEventsStatus400Schema, listUserEventsStatus401Schema, listUserEventsStatus403Schema, listUserEventsStatus410Schema, marketplaceFlagSchema, moveProjectDomainPathDomainSchema, moveProjectDomainPathIdOrNameSchema, moveProjectDomainQuerySlugSchema, moveProjectDomainQueryTeamIdSchema, moveProjectDomainResponseSchema, moveProjectDomainStatus200Schema, moveProjectDomainStatus400Schema, moveProjectDomainStatus401Schema, moveProjectDomainStatus403Schema, moveProjectDomainStatus409Schema, moveProjectDomainStatus410Schema, namedSandboxSchema, nameserverSchema, networkSchema, nonEmptyTrimmedStringSchema, notAuthorizedForScopeSchema, notFoundSchema, orderIdSchema, orderTooExpensiveSchema, paginationSchema, patchDomainPathDomainSchema, patchDomainQuerySlugSchema, patchDomainQueryTeamIdSchema, patchDomainResponseSchema, patchDomainStatus200Schema, patchDomainStatus400Schema, patchDomainStatus401Schema, patchDomainStatus403Schema, patchDomainStatus404Schema, patchDomainStatus409Schema, patchDomainStatus410Schema, patchDomainStatus500Schema, patchEdgeConfigItemsPathEdgeConfigIdSchema, patchEdgeConfigItemsQuerySlugSchema, patchEdgeConfigItemsQueryTeamIdSchema, patchEdgeConfigItemsResponseSchema, patchEdgeConfigItemsStatus200Schema, patchEdgeConfigItemsStatus400Schema, patchEdgeConfigItemsStatus401Schema, patchEdgeConfigItemsStatus402Schema, patchEdgeConfigItemsStatus403Schema, patchEdgeConfigItemsStatus404Schema, patchEdgeConfigItemsStatus409Schema, patchEdgeConfigItemsStatus410Schema, patchEdgeConfigItemsStatus412Schema, patchEdgeConfigSchemaPathEdgeConfigIdSchema, patchEdgeConfigSchemaQueryDryRunSchema, patchEdgeConfigSchemaQuerySlugSchema, patchEdgeConfigSchemaQueryTeamIdSchema, patchEdgeConfigSchemaResponseSchema, patchEdgeConfigSchemaStatus200Schema, patchEdgeConfigSchemaStatus400Schema, patchEdgeConfigSchemaStatus401Schema, patchEdgeConfigSchemaStatus402Schema, patchEdgeConfigSchemaStatus403Schema, patchEdgeConfigSchemaStatus404Schema, patchEdgeConfigSchemaStatus409Schema, patchEdgeConfigSchemaStatus410Schema, patchTeamPathTeamIdSchema, patchTeamQuerySlugSchema, patchTeamResponseSchema, patchTeamStatus200Schema, patchTeamStatus400Schema, patchTeamStatus401Schema, patchTeamStatus402Schema, patchTeamStatus403Schema, patchTeamStatus410Schema, patchTeamStatus428Schema, patchUrlProtectionBypassPathIdSchema, patchUrlProtectionBypassQuerySlugSchema, patchUrlProtectionBypassQueryTeamIdSchema, patchUrlProtectionBypassResponseSchema, patchUrlProtectionBypassStatus200Schema, patchUrlProtectionBypassStatus400Schema, patchUrlProtectionBypassStatus401Schema, patchUrlProtectionBypassStatus403Schema, patchUrlProtectionBypassStatus404Schema, patchUrlProtectionBypassStatus409Schema, patchUrlProtectionBypassStatus410Schema, patchUrlProtectionBypassStatus428Schema, pauseProjectPathProjectIdSchema, pauseProjectQuerySlugSchema, pauseProjectQueryTeamIdSchema, pauseProjectResponseSchema, pauseProjectStatus200Schema, pauseProjectStatus400Schema, pauseProjectStatus401Schema, pauseProjectStatus403Schema, pauseProjectStatus410Schema, pauseProjectStatus500Schema, postTeamDsyncRolesPathTeamIdSchema, postTeamDsyncRolesQuerySlugSchema, postTeamDsyncRolesResponseSchema, postTeamDsyncRolesStatus200Schema, postTeamDsyncRolesStatus400Schema, postTeamDsyncRolesStatus401Schema, postTeamDsyncRolesStatus403Schema, postTeamDsyncRolesStatus410Schema, propertyKeySchema, putFirewallConfigQueryProjectIdSchema, putFirewallConfigQuerySlugSchema, putFirewallConfigQueryTeamIdSchema, putFirewallConfigResponseSchema, putFirewallConfigStatus200Schema, putFirewallConfigStatus400Schema, putFirewallConfigStatus401Schema, putFirewallConfigStatus402Schema, putFirewallConfigStatus403Schema, putFirewallConfigStatus404Schema, putFirewallConfigStatus410Schema, putFirewallConfigStatus500Schema, rateLimitNoticeSchema, readAccessGroupPathIdOrNameSchema, readAccessGroupProjectPathAccessGroupIdOrNameSchema, readAccessGroupProjectPathProjectIdSchema, readAccessGroupProjectQuerySlugSchema, readAccessGroupProjectQueryTeamIdSchema, readAccessGroupProjectResponseSchema, readAccessGroupProjectStatus200Schema, readAccessGroupProjectStatus400Schema, readAccessGroupProjectStatus401Schema, readAccessGroupProjectStatus403Schema, readAccessGroupProjectStatus410Schema, readAccessGroupQuerySlugSchema, readAccessGroupQueryTeamIdSchema, readAccessGroupResponseSchema, readAccessGroupStatus200Schema, readAccessGroupStatus400Schema, readAccessGroupStatus401Schema, readAccessGroupStatus403Schema, readAccessGroupStatus410Schema, readNetworkPathNetworkIdSchema, readNetworkQuerySlugSchema, readNetworkQueryTeamIdSchema, readNetworkResponseSchema, readNetworkStatus200Schema, readNetworkStatus400Schema, readNetworkStatus401Schema, readNetworkStatus403Schema, readNetworkStatus410Schema, readSessionFilePathSessionIdSchema, readSessionFileQuerySlugSchema, readSessionFileQueryTeamIdSchema, readSessionFileResponseSchema, readSessionFileStatus200Schema, readSessionFileStatus400Schema, readSessionFileStatus401Schema, readSessionFileStatus403Schema, readSessionFileStatus404Schema, readSessionFileStatus410Schema, readSessionFileStatus422Schema, readSessionFileStatus429Schema, readSessionFileStatus500Schema, recordEventsHeaderxArtifactClientCiSchema, recordEventsHeaderxArtifactClientInteractiveSchema, recordEventsQuerySlugSchema, recordEventsQueryTeamIdSchema, recordEventsResponseSchema, recordEventsStatus200Schema, recordEventsStatus400Schema, recordEventsStatus401Schema, recordEventsStatus402Schema, recordEventsStatus403Schema, recordEventsStatus410Schema, registrantFieldSchema, removeBypassIpQueryProjectIdSchema, removeBypassIpQuerySlugSchema, removeBypassIpQueryTeamIdSchema, removeBypassIpResponseSchema, removeBypassIpStatus200Schema, removeBypassIpStatus400Schema, removeBypassIpStatus401Schema, removeBypassIpStatus403Schema, removeBypassIpStatus404Schema, removeBypassIpStatus410Schema, removeBypassIpStatus500Schema, removeCertPathIdSchema, removeCertQuerySlugSchema, removeCertQueryTeamIdSchema, removeCertResponseSchema, removeCertStatus200Schema, removeCertStatus400Schema, removeCertStatus401Schema, removeCertStatus403Schema, removeCertStatus404Schema, removeCertStatus410Schema, removeCustomEnvironmentPathEnvironmentSlugOrIdSchema, removeCustomEnvironmentPathIdOrNameSchema, removeCustomEnvironmentQuerySlugSchema, removeCustomEnvironmentQueryTeamIdSchema, removeCustomEnvironmentResponseSchema, removeCustomEnvironmentStatus200Schema, removeCustomEnvironmentStatus400Schema, removeCustomEnvironmentStatus401Schema, removeCustomEnvironmentStatus403Schema, removeCustomEnvironmentStatus410Schema, removeProjectDomainPathDomainSchema, removeProjectDomainPathIdOrNameSchema, removeProjectDomainQuerySlugSchema, removeProjectDomainQueryTeamIdSchema, removeProjectDomainResponseSchema, removeProjectDomainStatus200Schema, removeProjectDomainStatus400Schema, removeProjectDomainStatus401Schema, removeProjectDomainStatus403Schema, removeProjectDomainStatus404Schema, removeProjectDomainStatus409Schema, removeProjectDomainStatus410Schema, removeProjectEnvPathIdOrNameSchema, removeProjectEnvPathIdSchema, removeProjectEnvQueryCustomEnvironmentIdSchema, removeProjectEnvQuerySlugSchema, removeProjectEnvQueryTeamIdSchema, removeProjectEnvResponseSchema, removeProjectEnvStatus200Schema, removeProjectEnvStatus400Schema, removeProjectEnvStatus401Schema, removeProjectEnvStatus403Schema, removeProjectEnvStatus404Schema, removeProjectEnvStatus409Schema, removeProjectEnvStatus410Schema, removeProjectMemberPathIdOrNameSchema, removeProjectMemberPathUidSchema, removeProjectMemberQuerySlugSchema, removeProjectMemberQueryTeamIdSchema, removeProjectMemberResponseSchema, removeProjectMemberStatus200Schema, removeProjectMemberStatus400Schema, removeProjectMemberStatus401Schema, removeProjectMemberStatus403Schema, removeProjectMemberStatus410Schema, removeRecordPathDomainSchema, removeRecordPathRecordIdSchema, removeRecordQuerySlugSchema, removeRecordQueryTeamIdSchema, removeRecordResponseSchema, removeRecordStatus200Schema, removeRecordStatus400Schema, removeRecordStatus401Schema, removeRecordStatus403Schema, removeRecordStatus404Schema, removeRecordStatus410Schema, removeRepositoryPermissionPathIdOrNameSchema, removeRepositoryPermissionQueryProjectIdSchema, removeRepositoryPermissionQuerySlugSchema, removeRepositoryPermissionQueryTeamIdSchema, removeRepositoryPermissionResponseSchema, removeRepositoryPermissionStatus204Schema, removeRepositoryPermissionStatus400Schema, removeRepositoryPermissionStatus401Schema, removeRepositoryPermissionStatus403Schema, removeRepositoryPermissionStatus404Schema, removeRepositoryPermissionStatus410Schema, removeTeamMemberPathTeamIdSchema, removeTeamMemberPathUidSchema, removeTeamMemberQueryNewDefaultTeamIdSchema, removeTeamMemberResponseSchema, removeTeamMemberStatus200Schema, removeTeamMemberStatus400Schema, removeTeamMemberStatus401Schema, removeTeamMemberStatus403Schema, removeTeamMemberStatus404Schema, removeTeamMemberStatus410Schema, removeTeamMemberStatus503Schema, renewDomainPathDomainSchema, renewDomainQueryTeamIdSchema, renewDomainResponseSchema, renewDomainStatus200Schema, renewDomainStatus400Schema, renewDomainStatus401Schema, renewDomainStatus403Schema, renewDomainStatus404Schema, renewDomainStatus429Schema, renewDomainStatus500Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidQueryDigestSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus201Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus201Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus413Schema, replaceDomainsByDomainRecordsPathDomainSchema, replaceDomainsByDomainRecordsResponseSchema, replaceDomainsByDomainRecordsStatus200Schema, replaceDomainsByDomainRecordsStatus400Schema, replaceDomainsByDomainRecordsStatus401Schema, replaceDomainsByDomainRecordsStatus403Schema, replaceDomainsByDomainRecordsStatus404Schema, replaceDomainsByDomainRecordsStatus409Schema, replaceDomainsByDomainRecordsStatus410Schema, replaceDomainsByDomainRecordsStatus415Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema, requestAccessToTeamPathTeamIdSchema, requestAccessToTeamResponseSchema, requestAccessToTeamStatus200Schema, requestAccessToTeamStatus400Schema, requestAccessToTeamStatus401Schema, requestAccessToTeamStatus403Schema, requestAccessToTeamStatus404Schema, requestAccessToTeamStatus410Schema, requestAccessToTeamStatus429Schema, requestAccessToTeamStatus503Schema, requestDeleteResponseSchema, requestDeleteStatus202Schema, requestDeleteStatus400Schema, requestDeleteStatus401Schema, requestDeleteStatus402Schema, requestDeleteStatus403Schema, requestDeleteStatus410Schema, requestPromotePathDeploymentIdSchema, requestPromotePathProjectIdSchema, requestPromoteQuerySlugSchema, requestPromoteQueryTeamIdSchema, requestPromoteResponseSchema, requestPromoteStatus201Schema, requestPromoteStatus202Schema, requestPromoteStatus400Schema, requestPromoteStatus401Schema, requestPromoteStatus403Schema, requestPromoteStatus409Schema, requestPromoteStatus410Schema, requestRollbackPathDeploymentIdSchema, requestRollbackPathProjectIdSchema, requestRollbackQueryDescriptionSchema, requestRollbackQuerySlugSchema, requestRollbackQueryTeamIdSchema, requestRollbackResponseSchema, requestRollbackStatus201Schema, requestRollbackStatus400Schema, requestRollbackStatus401Schema, requestRollbackStatus402Schema, requestRollbackStatus403Schema, requestRollbackStatus409Schema, requestRollbackStatus410Schema, requestRollbackStatus422Schema, rerequestCheckPathCheckIdSchema, rerequestCheckPathDeploymentIdSchema, rerequestCheckQueryAutoUpdateSchema, rerequestCheckQuerySlugSchema, rerequestCheckQueryTeamIdSchema, rerequestCheckResponseSchema, rerequestCheckStatus200Schema, rerequestCheckStatus400Schema, rerequestCheckStatus401Schema, rerequestCheckStatus403Schema, rerequestCheckStatus404Schema, rerequestCheckStatus410Schema, restoreEdgeConfigBackupPathEdgeConfigBackupVersionIdSchema, restoreEdgeConfigBackupPathEdgeConfigIdSchema, restoreEdgeConfigBackupQuerySlugSchema, restoreEdgeConfigBackupQueryTeamIdSchema, restoreEdgeConfigBackupResponseSchema, restoreEdgeConfigBackupStatus200Schema, restoreEdgeConfigBackupStatus400Schema, restoreEdgeConfigBackupStatus401Schema, restoreEdgeConfigBackupStatus402Schema, restoreEdgeConfigBackupStatus403Schema, restoreEdgeConfigBackupStatus404Schema, restoreEdgeConfigBackupStatus409Schema, restoreEdgeConfigBackupStatus410Schema, restoreEdgeConfigBackupStatus412Schema, restoreRedirectsQueryProjectIdSchema, restoreRedirectsQuerySlugSchema, restoreRedirectsQueryTeamIdSchema, restoreRedirectsResponseSchema, restoreRedirectsStatus200Schema, restoreRedirectsStatus400Schema, restoreRedirectsStatus401Schema, restoreRedirectsStatus403Schema, restoreRedirectsStatus404Schema, restoreRedirectsStatus410Schema, restoreRedirectsStatus500Schema, runSessionCommandPathSessionIdSchema, runSessionCommandQueryCmdIdSchema, runSessionCommandQuerySlugSchema, runSessionCommandQueryTeamIdSchema, runSessionCommandResponseSchema, runSessionCommandStatus200Schema, runSessionCommandStatus400Schema, runSessionCommandStatus401Schema, runSessionCommandStatus403Schema, runSessionCommandStatus404Schema, runSessionCommandStatus410Schema, runSessionCommandStatus422Schema, runSessionCommandStatus429Schema, runSessionCommandStatus500Schema, sandboxInjectionRuleSchema, sandboxNetworkPolicySchema, sandboxPublicRouteSchema, searchRepoQueryHostSchema, searchRepoQueryInstallationIdSchema, searchRepoQueryNamespaceIdSchema, searchRepoQueryProviderSchema, searchRepoQueryQuerySchema, searchRepoQuerySlugSchema, searchRepoQueryTeamIdSchema, searchRepoResponseSchema, searchRepoStatus200Schema, searchRepoStatus400Schema, searchRepoStatus401Schema, searchRepoStatus403Schema, searchRepoStatus404Schema, searchRepoStatus410Schema, searchRepoStatus429Schema, searchRepoStatus500Schema, searchRepoStatus502Schema, segmentSchema, sessionCommandSchema, sessionSchema, snapshotSchema, stageRedirectsQuerySlugSchema, stageRedirectsQueryTeamIdSchema, stageRedirectsResponseSchema, stageRedirectsStatus200Schema, stageRedirectsStatus400Schema, stageRedirectsStatus401Schema, stageRedirectsStatus403Schema, stageRedirectsStatus410Schema, stageRedirectsStatus500Schema, stageRoutesPathProjectIdSchema, stageRoutesQuerySlugSchema, stageRoutesQueryTeamIdSchema, stageRoutesResponseSchema, stageRoutesStatus200Schema, stageRoutesStatus400Schema, stageRoutesStatus401Schema, stageRoutesStatus403Schema, stageRoutesStatus409Schema, stageRoutesStatus410Schema, stageRoutesStatus500Schema, startRollingReleasePathIdOrNameSchema, startRollingReleaseQuerySlugSchema, startRollingReleaseQueryTeamIdSchema, startRollingReleaseResponseSchema, startRollingReleaseStatus200Schema, startRollingReleaseStatus400Schema, startRollingReleaseStatus401Schema, startRollingReleaseStatus403Schema, startRollingReleaseStatus404Schema, startRollingReleaseStatus409Schema, startRollingReleaseStatus410Schema, startRollingReleaseStatus422Schema, statusQuerySlugSchema, statusQueryTeamIdSchema, statusResponseSchema, statusStatus200Schema, statusStatus400Schema, statusStatus401Schema, statusStatus402Schema, statusStatus403Schema, statusStatus410Schema, stopSessionPathSessionIdSchema, stopSessionQuerySlugSchema, stopSessionQueryTeamIdSchema, stopSessionResponseSchema, stopSessionStatus200Schema, stopSessionStatus400Schema, stopSessionStatus401Schema, stopSessionStatus403Schema, stopSessionStatus404Schema, stopSessionStatus410Schema, stopSessionStatus422Schema, stopSessionStatus429Schema, stopSessionStatus500Schema, submitBillingDataPathIntegrationConfigurationIdSchema, submitBillingDataResponseSchema, submitBillingDataStatus201Schema, submitBillingDataStatus400Schema, submitBillingDataStatus401Schema, submitBillingDataStatus403Schema, submitBillingDataStatus404Schema, submitBillingDataStatus410Schema, submitInvoicePathIntegrationConfigurationIdSchema, submitInvoiceResponseSchema, submitInvoiceStatus200Schema, submitInvoiceStatus400Schema, submitInvoiceStatus401Schema, submitInvoiceStatus403Schema, submitInvoiceStatus404Schema, submitInvoiceStatus409Schema, submitInvoiceStatus410Schema, submitPrepaymentBalancesPathIntegrationConfigurationIdSchema, submitPrepaymentBalancesResponseSchema, submitPrepaymentBalancesStatus201Schema, submitPrepaymentBalancesStatus400Schema, submitPrepaymentBalancesStatus401Schema, submitPrepaymentBalancesStatus403Schema, submitPrepaymentBalancesStatus404Schema, submitPrepaymentBalancesStatus410Schema, teamLimitedSchema, teamSchema, testDrainQuerySlugSchema, testDrainQueryTeamIdSchema, testDrainResponseSchema, testDrainStatus200Schema, testDrainStatus400Schema, testDrainStatus401Schema, testDrainStatus402Schema, testDrainStatus403Schema, testDrainStatus410Schema, tldNameSchema, tldNotSupportedSchema, tooManyDomainsSchema, tooManyRequestsSchema, transferInDomainPathDomainSchema, transferInDomainQueryTeamIdSchema, transferInDomainResponseSchema, transferInDomainStatus200Schema, transferInDomainStatus400Schema, transferInDomainStatus401Schema, transferInDomainStatus403Schema, transferInDomainStatus429Schema, transferInDomainStatus500Schema, unauthorizedSchema, unlinkSharedEnvVariablePathIdSchema, unlinkSharedEnvVariablePathProjectIdSchema, unlinkSharedEnvVariableQuerySlugSchema, unlinkSharedEnvVariableQueryTeamIdSchema, unlinkSharedEnvVariableResponseSchema, unlinkSharedEnvVariableStatus200Schema, unlinkSharedEnvVariableStatus400Schema, unlinkSharedEnvVariableStatus401Schema, unlinkSharedEnvVariableStatus403Schema, unlinkSharedEnvVariableStatus410Schema, unpauseProjectPathProjectIdSchema, unpauseProjectQuerySlugSchema, unpauseProjectQueryTeamIdSchema, unpauseProjectResponseSchema, unpauseProjectStatus200Schema, unpauseProjectStatus400Schema, unpauseProjectStatus401Schema, unpauseProjectStatus403Schema, unpauseProjectStatus410Schema, unpauseProjectStatus500Schema, updateAccessGroupPathIdOrNameSchema, updateAccessGroupProjectPathAccessGroupIdOrNameSchema, updateAccessGroupProjectPathProjectIdSchema, updateAccessGroupProjectQuerySlugSchema, updateAccessGroupProjectQueryTeamIdSchema, updateAccessGroupProjectResponseSchema, updateAccessGroupProjectStatus200Schema, updateAccessGroupProjectStatus400Schema, updateAccessGroupProjectStatus401Schema, updateAccessGroupProjectStatus403Schema, updateAccessGroupProjectStatus410Schema, updateAccessGroupQuerySlugSchema, updateAccessGroupQueryTeamIdSchema, updateAccessGroupResponseSchema, updateAccessGroupStatus200Schema, updateAccessGroupStatus400Schema, updateAccessGroupStatus401Schema, updateAccessGroupStatus403Schema, updateAccessGroupStatus410Schema, updateAiGatewayRuleQuerySlugSchema, updateAiGatewayRuleQueryTeamIdSchema, updateAiGatewayRuleResponseSchema, updateAiGatewayRuleStatus200Schema, updateAiGatewayRuleStatus400Schema, updateAiGatewayRuleStatus401Schema, updateAiGatewayRuleStatus403Schema, updateAiGatewayRuleStatus404Schema, updateAiGatewayRuleStatus410Schema, updateAiGatewayRuleStatus500Schema, updateAiGatewayVirtualModelConfigQuerySlugSchema, updateAiGatewayVirtualModelConfigQueryTeamIdSchema, updateAiGatewayVirtualModelConfigResponseSchema, updateAiGatewayVirtualModelConfigStatus200Schema, updateAiGatewayVirtualModelConfigStatus400Schema, updateAiGatewayVirtualModelConfigStatus401Schema, updateAiGatewayVirtualModelConfigStatus403Schema, updateAiGatewayVirtualModelConfigStatus404Schema, updateAiGatewayVirtualModelConfigStatus410Schema, updateAiGatewayVirtualModelConfigStatus500Schema, updateAttackChallengeModeQuerySlugSchema, updateAttackChallengeModeQueryTeamIdSchema, updateAttackChallengeModeResponseSchema, updateAttackChallengeModeStatus200Schema, updateAttackChallengeModeStatus400Schema, updateAttackChallengeModeStatus401Schema, updateAttackChallengeModeStatus403Schema, updateAttackChallengeModeStatus404Schema, updateAttackChallengeModeStatus410Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus202Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema, updateCheckPathCheckIdSchema, updateCheckPathDeploymentIdSchema, updateCheckQuerySlugSchema, updateCheckQueryTeamIdSchema, updateCheckResponseSchema, updateCheckStatus200Schema, updateCheckStatus400Schema, updateCheckStatus401Schema, updateCheckStatus403Schema, updateCheckStatus404Schema, updateCheckStatus410Schema, updateCheckStatus413Schema, updateCustomEnvironmentPathEnvironmentSlugOrIdSchema, updateCustomEnvironmentPathIdOrNameSchema, updateCustomEnvironmentQuerySlugSchema, updateCustomEnvironmentQueryTeamIdSchema, updateCustomEnvironmentResponseSchema, updateCustomEnvironmentStatus200Schema, updateCustomEnvironmentStatus400Schema, updateCustomEnvironmentStatus401Schema, updateCustomEnvironmentStatus402Schema, updateCustomEnvironmentStatus403Schema, updateCustomEnvironmentStatus410Schema, updateCustomEnvironmentStatus500Schema, updateDeploymentCheckRunPathCheckRunIdSchema, updateDeploymentCheckRunPathDeploymentIdSchema, updateDeploymentCheckRunQuerySlugSchema, updateDeploymentCheckRunQueryTeamIdSchema, updateDeploymentCheckRunResponseSchema, updateDeploymentCheckRunStatus200Schema, updateDeploymentCheckRunStatus400Schema, updateDeploymentCheckRunStatus401Schema, updateDeploymentCheckRunStatus403Schema, updateDeploymentCheckRunStatus410Schema, updateDeploymentCheckRunStatus413Schema, updateDeploymentCheckRunStatus500Schema, updateDomainAutoRenewPathDomainSchema, updateDomainAutoRenewQueryTeamIdSchema, updateDomainAutoRenewResponseSchema, updateDomainAutoRenewStatus204Schema, updateDomainAutoRenewStatus400Schema, updateDomainAutoRenewStatus401Schema, updateDomainAutoRenewStatus403Schema, updateDomainAutoRenewStatus404Schema, updateDomainAutoRenewStatus429Schema, updateDomainAutoRenewStatus500Schema, updateDomainNameserversPathDomainSchema, updateDomainNameserversQueryTeamIdSchema, updateDomainNameserversResponseSchema, updateDomainNameserversStatus204Schema, updateDomainNameserversStatus400Schema, updateDomainNameserversStatus401Schema, updateDomainNameserversStatus403Schema, updateDomainNameserversStatus404Schema, updateDomainNameserversStatus429Schema, updateDomainNameserversStatus500Schema, updateDrainPathIdSchema, updateDrainQuerySlugSchema, updateDrainQueryTeamIdSchema, updateDrainResponseSchema, updateDrainStatus200Schema, updateDrainStatus400Schema, updateDrainStatus401Schema, updateDrainStatus402Schema, updateDrainStatus403Schema, updateDrainStatus404Schema, updateDrainStatus410Schema, updateEdgeConfigPathEdgeConfigIdSchema, updateEdgeConfigQuerySlugSchema, updateEdgeConfigQueryTeamIdSchema, updateEdgeConfigResponseSchema, updateEdgeConfigStatus200Schema, updateEdgeConfigStatus400Schema, updateEdgeConfigStatus401Schema, updateEdgeConfigStatus402Schema, updateEdgeConfigStatus403Schema, updateEdgeConfigStatus404Schema, updateEdgeConfigStatus409Schema, updateEdgeConfigStatus410Schema, updateFirewallConfigQueryProjectIdSchema, updateFirewallConfigQuerySlugSchema, updateFirewallConfigQueryTeamIdSchema, updateFirewallConfigResponseSchema, updateFirewallConfigStatus200Schema, updateFirewallConfigStatus400Schema, updateFirewallConfigStatus401Schema, updateFirewallConfigStatus402Schema, updateFirewallConfigStatus403Schema, updateFirewallConfigStatus404Schema, updateFirewallConfigStatus410Schema, updateFirewallConfigStatus500Schema, updateFlagPathFlagIdOrSlugSchema, updateFlagPathProjectIdOrNameSchema, updateFlagQueryIfMatchSchema, updateFlagQuerySlugSchema, updateFlagQueryTeamIdSchema, updateFlagQueryWithMetadataSchema, updateFlagResponseSchema, updateFlagSegmentPathProjectIdOrNameSchema, updateFlagSegmentPathSegmentIdOrSlugSchema, updateFlagSegmentQuerySlugSchema, updateFlagSegmentQueryTeamIdSchema, updateFlagSegmentQueryWithMetadataSchema, updateFlagSegmentResponseSchema, updateFlagSegmentStatus200Schema, updateFlagSegmentStatus400Schema, updateFlagSegmentStatus401Schema, updateFlagSegmentStatus402Schema, updateFlagSegmentStatus403Schema, updateFlagSegmentStatus404Schema, updateFlagSegmentStatus409Schema, updateFlagSegmentStatus410Schema, updateFlagSettingsPathProjectIdOrNameSchema, updateFlagSettingsQuerySlugSchema, updateFlagSettingsQueryTeamIdSchema, updateFlagSettingsResponseSchema, updateFlagSettingsStatus200Schema, updateFlagSettingsStatus201Schema, updateFlagSettingsStatus400Schema, updateFlagSettingsStatus401Schema, updateFlagSettingsStatus402Schema, updateFlagSettingsStatus403Schema, updateFlagSettingsStatus404Schema, updateFlagSettingsStatus409Schema, updateFlagSettingsStatus410Schema, updateFlagStatus200Schema, updateFlagStatus304Schema, updateFlagStatus400Schema, updateFlagStatus401Schema, updateFlagStatus402Schema, updateFlagStatus403Schema, updateFlagStatus404Schema, updateFlagStatus409Schema, updateFlagStatus410Schema, updateInstallationPathIntegrationConfigurationIdSchema, updateInstallationResponseSchema, updateInstallationStatus204Schema, updateInstallationStatus400Schema, updateInstallationStatus401Schema, updateInstallationStatus403Schema, updateInstallationStatus404Schema, updateInstallationStatus410Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathIntegrationConfigurationIdSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathItemIdSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathResourceIdSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdResponseSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus204Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus400Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus401Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus403Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus404Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus410Schema, updateIntegrationDeploymentActionPathActionSchema, updateIntegrationDeploymentActionPathDeploymentIdSchema, updateIntegrationDeploymentActionPathIntegrationConfigurationIdSchema, updateIntegrationDeploymentActionPathResourceIdSchema, updateIntegrationDeploymentActionResponseSchema, updateIntegrationDeploymentActionStatus202Schema, updateIntegrationDeploymentActionStatus400Schema, updateIntegrationDeploymentActionStatus401Schema, updateIntegrationDeploymentActionStatus403Schema, updateIntegrationDeploymentActionStatus410Schema, updateInvoicePathIntegrationConfigurationIdSchema, updateInvoicePathInvoiceIdSchema, updateInvoiceResponseSchema, updateInvoiceStatus204Schema, updateInvoiceStatus400Schema, updateInvoiceStatus401Schema, updateInvoiceStatus403Schema, updateInvoiceStatus404Schema, updateInvoiceStatus409Schema, updateInvoiceStatus410Schema, updateMicrofrontendsGroupPathGroupIdSchema, updateMicrofrontendsGroupPathTeamIdSchema, updateMicrofrontendsGroupQuerySlugSchema, updateMicrofrontendsGroupResponseSchema, updateMicrofrontendsGroupStatus200Schema, updateMicrofrontendsGroupStatus400Schema, updateMicrofrontendsGroupStatus401Schema, updateMicrofrontendsGroupStatus403Schema, updateMicrofrontendsGroupStatus404Schema, updateMicrofrontendsGroupStatus410Schema, updateMicrofrontendsPathProjectIdSchema, updateMicrofrontendsQuerySlugSchema, updateMicrofrontendsQueryTeamIdSchema, updateMicrofrontendsResponseSchema, updateMicrofrontendsStatus200Schema, updateMicrofrontendsStatus400Schema, updateMicrofrontendsStatus401Schema, updateMicrofrontendsStatus403Schema, updateMicrofrontendsStatus409Schema, updateMicrofrontendsStatus410Schema, updateMicrofrontendsStatus500Schema, updateNetworkPathNetworkIdSchema, updateNetworkQuerySlugSchema, updateNetworkQueryTeamIdSchema, updateNetworkResponseSchema, updateNetworkStatus200Schema, updateNetworkStatus400Schema, updateNetworkStatus401Schema, updateNetworkStatus403Schema, updateNetworkStatus410Schema, updateObservabilityConfigurationProjectPathProjectIdOrNameSchema, updateObservabilityConfigurationProjectQuerySlugSchema, updateObservabilityConfigurationProjectQueryTeamIdSchema, updateObservabilityConfigurationProjectResponseSchema, updateObservabilityConfigurationProjectStatus200Schema, updateObservabilityConfigurationProjectStatus400Schema, updateObservabilityConfigurationProjectStatus401Schema, updateObservabilityConfigurationProjectStatus403Schema, updateObservabilityConfigurationProjectStatus404Schema, updateObservabilityConfigurationProjectStatus410Schema, updateObservabilityConfigurationProjectStatus429Schema, updateProjectCheckPathCheckIdSchema, updateProjectCheckPathProjectIdOrNameSchema, updateProjectCheckQuerySlugSchema, updateProjectCheckQueryTeamIdSchema, updateProjectCheckResponseSchema, updateProjectCheckStatus200Schema, updateProjectCheckStatus400Schema, updateProjectCheckStatus401Schema, updateProjectCheckStatus403Schema, updateProjectCheckStatus404Schema, updateProjectCheckStatus410Schema, updateProjectCheckStatus500Schema, updateProjectDomainPathDomainSchema, updateProjectDomainPathIdOrNameSchema, updateProjectDomainQuerySlugSchema, updateProjectDomainQueryTeamIdSchema, updateProjectDomainResponseSchema, updateProjectDomainStatus200Schema, updateProjectDomainStatus400Schema, updateProjectDomainStatus401Schema, updateProjectDomainStatus403Schema, updateProjectDomainStatus409Schema, updateProjectDomainStatus410Schema, updateProjectPathIdOrNameSchema, updateProjectProtectionBypassPathIdOrNameSchema, updateProjectProtectionBypassQuerySlugSchema, updateProjectProtectionBypassQueryTeamIdSchema, updateProjectProtectionBypassResponseSchema, updateProjectProtectionBypassStatus200Schema, updateProjectProtectionBypassStatus400Schema, updateProjectProtectionBypassStatus401Schema, updateProjectProtectionBypassStatus403Schema, updateProjectProtectionBypassStatus404Schema, updateProjectProtectionBypassStatus409Schema, updateProjectProtectionBypassStatus410Schema, updateProjectQuerySlugSchema, updateProjectQueryTeamIdSchema, updateProjectResponseSchema, updateProjectStatus200Schema, updateProjectStatus400Schema, updateProjectStatus401Schema, updateProjectStatus402Schema, updateProjectStatus403Schema, updateProjectStatus404Schema, updateProjectStatus409Schema, updateProjectStatus410Schema, updateProjectStatus428Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathDeploymentIdSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathProjectIdSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionResponseSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus200Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus400Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus401Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus403Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus409Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus410Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus422Schema, updateRecordPathRecordIdSchema, updateRecordQuerySlugSchema, updateRecordQueryTeamIdSchema, updateRecordResponseSchema, updateRecordStatus200Schema, updateRecordStatus400Schema, updateRecordStatus401Schema, updateRecordStatus402Schema, updateRecordStatus403Schema, updateRecordStatus404Schema, updateRecordStatus409Schema, updateRecordStatus410Schema, updateResourcePathIntegrationConfigurationIdSchema, updateResourcePathResourceIdSchema, updateResourceResponseSchema, updateResourceSecretsByIdPathIntegrationConfigurationIdSchema, updateResourceSecretsByIdPathResourceIdSchema, updateResourceSecretsByIdResponseSchema, updateResourceSecretsByIdStatus201Schema, updateResourceSecretsByIdStatus400Schema, updateResourceSecretsByIdStatus401Schema, updateResourceSecretsByIdStatus403Schema, updateResourceSecretsByIdStatus404Schema, updateResourceSecretsByIdStatus409Schema, updateResourceSecretsByIdStatus410Schema, updateResourceSecretsByIdStatus422Schema, updateResourceSecretsPathIntegrationConfigurationIdSchema, updateResourceSecretsPathIntegrationProductIdOrSlugSchema, updateResourceSecretsPathResourceIdSchema, updateResourceSecretsResponseSchema, updateResourceSecretsStatus201Schema, updateResourceSecretsStatus400Schema, updateResourceSecretsStatus401Schema, updateResourceSecretsStatus403Schema, updateResourceSecretsStatus404Schema, updateResourceSecretsStatus409Schema, updateResourceSecretsStatus410Schema, updateResourceSecretsStatus422Schema, updateResourceStatus200Schema, updateResourceStatus400Schema, updateResourceStatus401Schema, updateResourceStatus403Schema, updateResourceStatus404Schema, updateResourceStatus409Schema, updateResourceStatus410Schema, updateResourceStatus422Schema, updateRollingReleaseConfigPathIdOrNameSchema, updateRollingReleaseConfigQuerySlugSchema, updateRollingReleaseConfigQueryTeamIdSchema, updateRollingReleaseConfigResponseSchema, updateRollingReleaseConfigStatus200Schema, updateRollingReleaseConfigStatus400Schema, updateRollingReleaseConfigStatus401Schema, updateRollingReleaseConfigStatus403Schema, updateRollingReleaseConfigStatus404Schema, updateRollingReleaseConfigStatus410Schema, updateRouteVersionsPathProjectIdSchema, updateRouteVersionsQuerySlugSchema, updateRouteVersionsQueryTeamIdSchema, updateRouteVersionsResponseSchema, updateRouteVersionsStatus200Schema, updateRouteVersionsStatus400Schema, updateRouteVersionsStatus401Schema, updateRouteVersionsStatus403Schema, updateRouteVersionsStatus404Schema, updateRouteVersionsStatus409Schema, updateRouteVersionsStatus410Schema, updateRouteVersionsStatus500Schema, updateSandboxPathNameSchema, updateSandboxQueryProjectIdSchema, updateSandboxQueryResumeSchema, updateSandboxQuerySlugSchema, updateSandboxQueryTeamIdSchema, updateSandboxResponseSchema, updateSandboxStatus200Schema, updateSandboxStatus400Schema, updateSandboxStatus401Schema, updateSandboxStatus402Schema, updateSandboxStatus403Schema, updateSandboxStatus404Schema, updateSandboxStatus409Schema, updateSandboxStatus410Schema, updateSandboxStatus422Schema, updateSandboxStatus429Schema, updateSandboxStatus500Schema, updateSessionNetworkPolicyPathSessionIdSchema, updateSessionNetworkPolicyQuerySlugSchema, updateSessionNetworkPolicyQueryTeamIdSchema, updateSessionNetworkPolicyResponseSchema, updateSessionNetworkPolicyStatus200Schema, updateSessionNetworkPolicyStatus400Schema, updateSessionNetworkPolicyStatus401Schema, updateSessionNetworkPolicyStatus403Schema, updateSessionNetworkPolicyStatus404Schema, updateSessionNetworkPolicyStatus410Schema, updateSessionNetworkPolicyStatus422Schema, updateSessionNetworkPolicyStatus429Schema, updateSessionNetworkPolicyStatus500Schema, updateSharedEnvVariableQuerySlugSchema, updateSharedEnvVariableQueryTeamIdSchema, updateSharedEnvVariableResponseSchema, updateSharedEnvVariableStatus200Schema, updateSharedEnvVariableStatus400Schema, updateSharedEnvVariableStatus401Schema, updateSharedEnvVariableStatus402Schema, updateSharedEnvVariableStatus403Schema, updateSharedEnvVariableStatus410Schema, updateStaticIpsPathIdOrNameSchema, updateStaticIpsQuerySlugSchema, updateStaticIpsQueryTeamIdSchema, updateStaticIpsResponseSchema, updateStaticIpsStatus200Schema, updateStaticIpsStatus400Schema, updateStaticIpsStatus401Schema, updateStaticIpsStatus402Schema, updateStaticIpsStatus403Schema, updateStaticIpsStatus404Schema, updateStaticIpsStatus409Schema, updateStaticIpsStatus410Schema, updateStaticIpsStatus500Schema, updateTeamMemberPathTeamIdSchema, updateTeamMemberPathUidSchema, updateTeamMemberResponseSchema, updateTeamMemberStatus200Schema, updateTeamMemberStatus400Schema, updateTeamMemberStatus401Schema, updateTeamMemberStatus402Schema, updateTeamMemberStatus403Schema, updateTeamMemberStatus404Schema, updateTeamMemberStatus409Schema, updateTeamMemberStatus410Schema, updateTeamMemberStatus500Schema, updateVersionQueryProjectIdSchema, updateVersionQuerySlugSchema, updateVersionQueryTeamIdSchema, updateVersionResponseSchema, updateVersionStatus200Schema, updateVersionStatus400Schema, updateVersionStatus401Schema, updateVersionStatus403Schema, updateVersionStatus404Schema, updateVersionStatus410Schema, updateVersionStatus500Schema, uploadArtifactHeadercontentLengthSchema, uploadArtifactHeaderxArtifactClientCiSchema, uploadArtifactHeaderxArtifactClientInteractiveSchema, uploadArtifactHeaderxArtifactDirtyHashSchema, uploadArtifactHeaderxArtifactDurationSchema, uploadArtifactHeaderxArtifactShaSchema, uploadArtifactHeaderxArtifactTagSchema, uploadArtifactPathHashSchema, uploadArtifactQuerySlugSchema, uploadArtifactQueryTeamIdSchema, uploadArtifactResponseSchema, uploadArtifactStatus202Schema, uploadArtifactStatus400Schema, uploadArtifactStatus401Schema, uploadArtifactStatus402Schema, uploadArtifactStatus403Schema, uploadArtifactStatus410Schema, uploadCertQuerySlugSchema, uploadCertQueryTeamIdSchema, uploadCertResponseSchema, uploadCertStatus200Schema, uploadCertStatus400Schema, uploadCertStatus401Schema, uploadCertStatus402Schema, uploadCertStatus403Schema, uploadCertStatus410Schema, uploadFileHeadercontentLengthSchema, uploadFileHeaderxNowDigestSchema, uploadFileHeaderxNowSizeSchema, uploadFileHeaderxVercelDigestSchema, uploadFileQuerySlugSchema, uploadFileQueryTeamIdSchema, uploadFileResponseSchema, uploadFileStatus200Schema, uploadFileStatus400Schema, uploadFileStatus401Schema, uploadFileStatus403Schema, uploadFileStatus410Schema, uploadFileStatus426Schema, uploadProjectAvatarPathIdOrNameSchema, uploadProjectAvatarQuerySlugSchema, uploadProjectAvatarQueryTeamIdSchema, uploadProjectAvatarResponseSchema, uploadProjectAvatarStatus200Schema, uploadProjectAvatarStatus400Schema, uploadProjectAvatarStatus401Schema, uploadProjectAvatarStatus403Schema, uploadProjectAvatarStatus410Schema, uploadProjectAvatarStatus413Schema, uploadProjectAvatarStatus415Schema, userEventSchema, vcrImageDetailSchema, vcrImageLayerSchema, vcrImageListItemSchema, vcrImageListSchema, vcrRepositoryListSchema, vcrRepositoryPermissionListSchema, vcrRepositoryPermissionSchema, vcrRepositorySchema, vcrTagSchema, vercelBadRequestErrorSchema, vercelBaseErrorSchema, vercelForbiddenErrorSchema, vercelNotFoundErrorSchema, vercelRateLimitErrorSchema, verifyProjectDomainPathDomainSchema, verifyProjectDomainPathIdOrNameSchema, verifyProjectDomainQuerySlugSchema, verifyProjectDomainQueryTeamIdSchema, verifyProjectDomainResponseSchema, verifyProjectDomainStatus200Schema, verifyProjectDomainStatus400Schema, verifyProjectDomainStatus401Schema, verifyProjectDomainStatus403Schema, verifyProjectDomainStatus410Schema, writeSessionFilesHeaderxCwdSchema, writeSessionFilesPathSessionIdSchema, writeSessionFilesQuerySlugSchema, writeSessionFilesQueryTeamIdSchema, writeSessionFilesResponseSchema, writeSessionFilesStatus200Schema, writeSessionFilesStatus400Schema, writeSessionFilesStatus401Schema, writeSessionFilesStatus403Schema, writeSessionFilesStatus404Schema, writeSessionFilesStatus410Schema, writeSessionFilesStatus422Schema, writeSessionFilesStatus429Schema, writeSessionFilesStatus500Schema };
|
|
14829
|
+
export { aCLActionSchema, aPIKeyQuotaSchema, aPIKeySchema, acceptProjectTransferRequestPathCodeSchema, acceptProjectTransferRequestQuerySlugSchema, acceptProjectTransferRequestQueryTeamIdSchema, acceptProjectTransferRequestResponseSchema, acceptProjectTransferRequestStatus202Schema, acceptProjectTransferRequestStatus400Schema, acceptProjectTransferRequestStatus401Schema, acceptProjectTransferRequestStatus403Schema, acceptProjectTransferRequestStatus404Schema, acceptProjectTransferRequestStatus410Schema, acceptProjectTransferRequestStatus422Schema, addBypassIpQueryProjectIdSchema, addBypassIpQuerySlugSchema, addBypassIpQueryTeamIdSchema, addBypassIpResponseSchema, addBypassIpStatus200Schema, addBypassIpStatus400Schema, addBypassIpStatus401Schema, addBypassIpStatus403Schema, addBypassIpStatus404Schema, addBypassIpStatus410Schema, addBypassIpStatus500Schema, addProjectDomainPathIdOrNameSchema, addProjectDomainQuerySlugSchema, addProjectDomainQueryTeamIdSchema, addProjectDomainResponseSchema, addProjectDomainStatus200Schema, addProjectDomainStatus400Schema, addProjectDomainStatus401Schema, addProjectDomainStatus402Schema, addProjectDomainStatus403Schema, addProjectDomainStatus409Schema, addProjectDomainStatus410Schema, addProjectMemberPathIdOrNameSchema, addProjectMemberQuerySlugSchema, addProjectMemberQueryTeamIdSchema, addProjectMemberResponseSchema, addProjectMemberStatus200Schema, addProjectMemberStatus400Schema, addProjectMemberStatus401Schema, addProjectMemberStatus403Schema, addProjectMemberStatus410Schema, addProjectMemberStatus500Schema, addRepositoryPermissionPathIdOrNameSchema, addRepositoryPermissionQueryProjectIdSchema, addRepositoryPermissionQuerySlugSchema, addRepositoryPermissionQueryTeamIdSchema, addRepositoryPermissionResponseSchema, addRepositoryPermissionStatus200Schema, addRepositoryPermissionStatus400Schema, addRepositoryPermissionStatus401Schema, addRepositoryPermissionStatus403Schema, addRepositoryPermissionStatus404Schema, addRepositoryPermissionStatus410Schema, addRoutePathProjectIdSchema, addRouteQuerySlugSchema, addRouteQueryTeamIdSchema, addRouteResponseSchema, addRouteStatus200Schema, addRouteStatus400Schema, addRouteStatus401Schema, addRouteStatus403Schema, addRouteStatus409Schema, addRouteStatus410Schema, addRouteStatus500Schema, additionalContactInfoRequiredSchema, aggregateEventsQueryBySchema, aggregateEventsQueryFilterSchema, aggregateEventsQueryLimitSchema, aggregateEventsQueryProjectIdSchema, aggregateEventsQuerySinceSchema, aggregateEventsQuerySlugSchema, aggregateEventsQueryTeamIdSchema, aggregateEventsQueryUntilSchema, aggregateEventsResponseSchema, aggregateEventsStatus200Schema, aggregateEventsStatus400Schema, aggregateEventsStatus401Schema, aggregateEventsStatus402Schema, aggregateEventsStatus403Schema, aggregateEventsStatus410Schema, aggregatePageviewsQueryBySchema, aggregatePageviewsQueryFilterSchema, aggregatePageviewsQueryLimitSchema, aggregatePageviewsQueryProjectIdSchema, aggregatePageviewsQuerySinceSchema, aggregatePageviewsQuerySlugSchema, aggregatePageviewsQueryTeamIdSchema, aggregatePageviewsQueryUntilSchema, aggregatePageviewsResponseSchema, aggregatePageviewsStatus200Schema, aggregatePageviewsStatus400Schema, aggregatePageviewsStatus401Schema, aggregatePageviewsStatus402Schema, aggregatePageviewsStatus403Schema, aggregatePageviewsStatus410Schema, aiGatewayProviderOptionBagSchema, aiGatewayRuleListSchema, aiGatewayRuleSchema, aiGatewayVirtualModelConfigListSchema, aiGatewayVirtualModelConfigSchema, approveRollingReleaseStagePathIdOrNameSchema, approveRollingReleaseStageQuerySlugSchema, approveRollingReleaseStageQueryTeamIdSchema, approveRollingReleaseStageResponseSchema, approveRollingReleaseStageStatus200Schema, approveRollingReleaseStageStatus400Schema, approveRollingReleaseStageStatus401Schema, approveRollingReleaseStageStatus403Schema, approveRollingReleaseStageStatus404Schema, approveRollingReleaseStageStatus410Schema, approveRollingReleaseStageStatus500Schema, artifactQueryQuerySlugSchema, artifactQueryQueryTeamIdSchema, artifactQueryResponseSchema, artifactQueryStatus200Schema, artifactQueryStatus400Schema, artifactQueryStatus401Schema, artifactQueryStatus402Schema, artifactQueryStatus403Schema, artifactQueryStatus410Schema, assignAliasPathIdSchema, assignAliasQuerySlugSchema, assignAliasQueryTeamIdSchema, assignAliasResponseSchema, assignAliasStatus200Schema, assignAliasStatus400Schema, assignAliasStatus401Schema, assignAliasStatus402Schema, assignAliasStatus403Schema, assignAliasStatus404Schema, assignAliasStatus409Schema, assignAliasStatus410Schema, authTokenSchema, authUserLimitedSchema, authUserSchema, badRequestSchema, batchRemoveProjectEnvPathIdOrNameSchema, batchRemoveProjectEnvQuerySlugSchema, batchRemoveProjectEnvQueryTeamIdSchema, batchRemoveProjectEnvResponseSchema, batchRemoveProjectEnvStatus200Schema, batchRemoveProjectEnvStatus400Schema, batchRemoveProjectEnvStatus401Schema, batchRemoveProjectEnvStatus403Schema, batchRemoveProjectEnvStatus404Schema, batchRemoveProjectEnvStatus409Schema, batchRemoveProjectEnvStatus410Schema, boughtTooRecentlySchema, buyCreditsQuerySlugSchema, buyCreditsQuerySourceSchema, buyCreditsQueryTeamIdSchema, buyCreditsResponseSchema, buyCreditsStatus200Schema, buyCreditsStatus400Schema, buyCreditsStatus401Schema, buyCreditsStatus402Schema, buyCreditsStatus403Schema, buyCreditsStatus404Schema, buyCreditsStatus410Schema, buyCreditsStatus500Schema, buyDomainsQueryTeamIdSchema, buyDomainsResponseSchema, buyDomainsStatus200Schema, buyDomainsStatus400Schema, buyDomainsStatus401Schema, buyDomainsStatus403Schema, buyDomainsStatus429Schema, buyDomainsStatus500Schema, buySingleDomainPathDomainSchema, buySingleDomainQueryTeamIdSchema, buySingleDomainResponseSchema, buySingleDomainStatus200Schema, buySingleDomainStatus400Schema, buySingleDomainStatus401Schema, buySingleDomainStatus403Schema, buySingleDomainStatus429Schema, buySingleDomainStatus500Schema, cancelDeploymentPathIdSchema, cancelDeploymentQuerySlugSchema, cancelDeploymentQueryTeamIdSchema, cancelDeploymentResponseSchema, cancelDeploymentStatus200Schema, cancelDeploymentStatus400Schema, cancelDeploymentStatus401Schema, cancelDeploymentStatus403Schema, cancelDeploymentStatus404Schema, cancelDeploymentStatus410Schema, claimDomainOwnershipPathDomainSchema, claimDomainOwnershipQuerySlugSchema, claimDomainOwnershipQueryTeamIdSchema, claimDomainOwnershipResponseSchema, claimDomainOwnershipStatus200Schema, claimDomainOwnershipStatus400Schema, claimDomainOwnershipStatus401Schema, claimDomainOwnershipStatus403Schema, claimDomainOwnershipStatus404Schema, claimDomainOwnershipStatus410Schema, clearRepositoryPermissionsPathIdOrNameSchema, clearRepositoryPermissionsQueryProjectIdSchema, clearRepositoryPermissionsQuerySlugSchema, clearRepositoryPermissionsQueryTeamIdSchema, clearRepositoryPermissionsResponseSchema, clearRepositoryPermissionsStatus204Schema, clearRepositoryPermissionsStatus400Schema, clearRepositoryPermissionsStatus401Schema, clearRepositoryPermissionsStatus403Schema, clearRepositoryPermissionsStatus404Schema, clearRepositoryPermissionsStatus410Schema, completeRollingReleasePathIdOrNameSchema, completeRollingReleaseQuerySlugSchema, completeRollingReleaseQueryTeamIdSchema, completeRollingReleaseResponseSchema, completeRollingReleaseStatus200Schema, completeRollingReleaseStatus400Schema, completeRollingReleaseStatus401Schema, completeRollingReleaseStatus403Schema, completeRollingReleaseStatus404Schema, completeRollingReleaseStatus410Schema, connectIntegrationResourceToProjectPathIntegrationConfigurationIdSchema, connectIntegrationResourceToProjectPathResourceIdSchema, connectIntegrationResourceToProjectQuerySlugSchema, connectIntegrationResourceToProjectQueryTeamIdSchema, connectIntegrationResourceToProjectResponseSchema, connectIntegrationResourceToProjectStatus201Schema, connectIntegrationResourceToProjectStatus400Schema, connectIntegrationResourceToProjectStatus401Schema, connectIntegrationResourceToProjectStatus403Schema, connectIntegrationResourceToProjectStatus404Schema, connectIntegrationResourceToProjectStatus410Schema, contactPendingVerificationSchema, contactVerifiedSchema, countEventsQueryFilterSchema, countEventsQueryProjectIdSchema, countEventsQuerySinceSchema, countEventsQuerySlugSchema, countEventsQueryTeamIdSchema, countEventsQueryUntilSchema, countEventsResponseSchema, countEventsStatus200Schema, countEventsStatus400Schema, countEventsStatus401Schema, countEventsStatus402Schema, countEventsStatus403Schema, countEventsStatus410Schema, countPageviewsQueryFilterSchema, countPageviewsQueryProjectIdSchema, countPageviewsQuerySinceSchema, countPageviewsQuerySlugSchema, countPageviewsQueryTeamIdSchema, countPageviewsQueryUntilSchema, countPageviewsResponseSchema, countPageviewsStatus200Schema, countPageviewsStatus400Schema, countPageviewsStatus401Schema, countPageviewsStatus402Schema, countPageviewsStatus403Schema, countPageviewsStatus410Schema, countryCodeSchema, createAccessGroupProjectPathAccessGroupIdOrNameSchema, createAccessGroupProjectQuerySlugSchema, createAccessGroupProjectQueryTeamIdSchema, createAccessGroupProjectResponseSchema, createAccessGroupProjectStatus200Schema, createAccessGroupProjectStatus400Schema, createAccessGroupProjectStatus401Schema, createAccessGroupProjectStatus403Schema, createAccessGroupProjectStatus410Schema, createAccessGroupQuerySlugSchema, createAccessGroupQueryTeamIdSchema, createAccessGroupResponseSchema, createAccessGroupStatus200Schema, createAccessGroupStatus400Schema, createAccessGroupStatus401Schema, createAccessGroupStatus403Schema, createAccessGroupStatus410Schema, createAiGatewayRuleQuerySlugSchema, createAiGatewayRuleQueryTeamIdSchema, createAiGatewayRuleResponseSchema, createAiGatewayRuleStatus201Schema, createAiGatewayRuleStatus400Schema, createAiGatewayRuleStatus401Schema, createAiGatewayRuleStatus403Schema, createAiGatewayRuleStatus409Schema, createAiGatewayRuleStatus410Schema, createAiGatewayRuleStatus500Schema, createAiGatewayVirtualModelConfigQuerySlugSchema, createAiGatewayVirtualModelConfigQueryTeamIdSchema, createAiGatewayVirtualModelConfigResponseSchema, createAiGatewayVirtualModelConfigStatus201Schema, createAiGatewayVirtualModelConfigStatus400Schema, createAiGatewayVirtualModelConfigStatus401Schema, createAiGatewayVirtualModelConfigStatus403Schema, createAiGatewayVirtualModelConfigStatus409Schema, createAiGatewayVirtualModelConfigStatus410Schema, createAiGatewayVirtualModelConfigStatus429Schema, createAiGatewayVirtualModelConfigStatus500Schema, createApiKeysResponseSchema, createApiKeysStatus200Schema, createApiKeysStatus400Schema, createApiKeysStatus401Schema, createApiKeysStatus403Schema, createApiKeysStatus409Schema, createApiKeysStatus410Schema, createApiKeysStatus429Schema, createApiKeysStatus500Schema, createAuthTokenQuerySlugSchema, createAuthTokenQueryTeamIdSchema, createAuthTokenResponseSchema, createAuthTokenStatus200Schema, createAuthTokenStatus400Schema, createAuthTokenStatus401Schema, createAuthTokenStatus403Schema, createAuthTokenStatus404Schema, createAuthTokenStatus410Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathProjectSlugSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathRepositoryNameSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsPathTeamSlugSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryFromSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsQueryMountSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsResponseSchema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus202Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus400Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus401Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus402Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus403Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus404Schema, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsStatus410Schema, createCheckPathDeploymentIdSchema, createCheckQuerySlugSchema, createCheckQueryTeamIdSchema, createCheckResponseSchema, createCheckStatus200Schema, createCheckStatus400Schema, createCheckStatus401Schema, createCheckStatus403Schema, createCheckStatus404Schema, createCheckStatus410Schema, createConfigurableLogDrainQuerySlugSchema, createConfigurableLogDrainQueryTeamIdSchema, createConfigurableLogDrainResponseSchema, createConfigurableLogDrainStatus200Schema, createConfigurableLogDrainStatus400Schema, createConfigurableLogDrainStatus401Schema, createConfigurableLogDrainStatus403Schema, createConfigurableLogDrainStatus410Schema, createConnectorAuthorizationRequestPathConnectorSchema, createConnectorAuthorizationRequestResponseSchema, createConnectorAuthorizationRequestStatus200Schema, createConnectorAuthorizationRequestStatus400Schema, createConnectorAuthorizationRequestStatus401Schema, createConnectorAuthorizationRequestStatus403Schema, createConnectorAuthorizationRequestStatus404Schema, createConnectorAuthorizationRequestStatus410Schema, createConnectorInstallationRequestPathConnectorSchema, createConnectorInstallationRequestResponseSchema, createConnectorInstallationRequestStatus200Schema, createConnectorInstallationRequestStatus400Schema, createConnectorInstallationRequestStatus401Schema, createConnectorInstallationRequestStatus403Schema, createConnectorInstallationRequestStatus404Schema, createConnectorInstallationRequestStatus410Schema, createConnectorInstallationRequestStatus422Schema, createConnectorResponseSchema, createConnectorStatus201Schema, createConnectorStatus400Schema, createConnectorStatus401Schema, createConnectorStatus403Schema, createConnectorStatus404Schema, createConnectorStatus409Schema, createConnectorStatus410Schema, createConnectorStatus422Schema, createConnectorStatus500Schema, createConnectorStatus502Schema, createCustomEnvironmentPathIdOrNameSchema, createCustomEnvironmentQuerySlugSchema, createCustomEnvironmentQueryTeamIdSchema, createCustomEnvironmentResponseSchema, createCustomEnvironmentStatus201Schema, createCustomEnvironmentStatus400Schema, createCustomEnvironmentStatus401Schema, createCustomEnvironmentStatus402Schema, createCustomEnvironmentStatus403Schema, createCustomEnvironmentStatus410Schema, createCustomEnvironmentStatus500Schema, createDeploymentCheckRunPathDeploymentIdSchema, createDeploymentCheckRunQuerySlugSchema, createDeploymentCheckRunQueryTeamIdSchema, createDeploymentCheckRunResponseSchema, createDeploymentCheckRunStatus200Schema, createDeploymentCheckRunStatus400Schema, createDeploymentCheckRunStatus401Schema, createDeploymentCheckRunStatus403Schema, createDeploymentCheckRunStatus404Schema, createDeploymentCheckRunStatus410Schema, createDeploymentCheckRunStatus500Schema, createDeploymentQueryForceNewSchema, createDeploymentQuerySkipAutoDetectionConfirmationSchema, createDeploymentQuerySlugSchema, createDeploymentQueryTeamIdSchema, createDeploymentResponseSchema, createDeploymentStatus200Schema, createDeploymentStatus400Schema, createDeploymentStatus401Schema, createDeploymentStatus402Schema, createDeploymentStatus403Schema, createDeploymentStatus404Schema, createDeploymentStatus409Schema, createDeploymentStatus410Schema, createDeploymentStatus426Schema, createDeploymentStatus429Schema, createDeploymentStatus500Schema, createDeploymentStatus503Schema, createDrainQuerySlugSchema, createDrainQueryTeamIdSchema, createDrainResponseSchema, createDrainStatus200Schema, createDrainStatus400Schema, createDrainStatus401Schema, createDrainStatus402Schema, createDrainStatus403Schema, createDrainStatus410Schema, createEdgeConfigQuerySlugSchema, createEdgeConfigQueryTeamIdSchema, createEdgeConfigResponseSchema, createEdgeConfigStatus201Schema, createEdgeConfigStatus400Schema, createEdgeConfigStatus401Schema, createEdgeConfigStatus402Schema, createEdgeConfigStatus403Schema, createEdgeConfigStatus410Schema, createEdgeConfigTokenPathEdgeConfigIdSchema, createEdgeConfigTokenQuerySlugSchema, createEdgeConfigTokenQueryTeamIdSchema, createEdgeConfigTokenResponseSchema, createEdgeConfigTokenStatus201Schema, createEdgeConfigTokenStatus400Schema, createEdgeConfigTokenStatus401Schema, createEdgeConfigTokenStatus402Schema, createEdgeConfigTokenStatus403Schema, createEdgeConfigTokenStatus404Schema, createEdgeConfigTokenStatus409Schema, createEdgeConfigTokenStatus410Schema, createEventPathIntegrationConfigurationIdSchema, createEventResponseSchema, createEventStatus201Schema, createEventStatus400Schema, createEventStatus401Schema, createEventStatus403Schema, createEventStatus404Schema, createEventStatus410Schema, createFlagPathProjectIdOrNameSchema, createFlagQuerySlugSchema, createFlagQueryTeamIdSchema, createFlagResponseSchema, createFlagSegmentPathProjectIdOrNameSchema, createFlagSegmentQuerySlugSchema, createFlagSegmentQueryTeamIdSchema, createFlagSegmentResponseSchema, createFlagSegmentStatus201Schema, createFlagSegmentStatus400Schema, createFlagSegmentStatus401Schema, createFlagSegmentStatus402Schema, createFlagSegmentStatus403Schema, createFlagSegmentStatus404Schema, createFlagSegmentStatus409Schema, createFlagSegmentStatus410Schema, createFlagStatus201Schema, createFlagStatus400Schema, createFlagStatus401Schema, createFlagStatus402Schema, createFlagStatus403Schema, createFlagStatus404Schema, createFlagStatus409Schema, createFlagStatus410Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsPathIntegrationConfigurationIdSchema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsPathResourceIdSchema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsResponseSchema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus204Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus400Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus401Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus403Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus404Schema, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsStatus410Schema, createIntegrationStoreDirectQuerySlugSchema, createIntegrationStoreDirectQueryTeamIdSchema, createIntegrationStoreDirectResponseSchema, createIntegrationStoreDirectStatus200Schema, createIntegrationStoreDirectStatus400Schema, createIntegrationStoreDirectStatus401Schema, createIntegrationStoreDirectStatus402Schema, createIntegrationStoreDirectStatus403Schema, createIntegrationStoreDirectStatus404Schema, createIntegrationStoreDirectStatus409Schema, createIntegrationStoreDirectStatus410Schema, createIntegrationStoreDirectStatus429Schema, createIntegrationStoreDirectStatus500Schema, createLogDrainQuerySlugSchema, createLogDrainQueryTeamIdSchema, createLogDrainResponseSchema, createLogDrainStatus200Schema, createLogDrainStatus400Schema, createLogDrainStatus401Schema, createLogDrainStatus403Schema, createLogDrainStatus410Schema, createMicrofrontendsGroupWithApplicationsQuerySlugSchema, createMicrofrontendsGroupWithApplicationsQueryTeamIdSchema, createMicrofrontendsGroupWithApplicationsResponseSchema, createMicrofrontendsGroupWithApplicationsStatus200Schema, createMicrofrontendsGroupWithApplicationsStatus400Schema, createMicrofrontendsGroupWithApplicationsStatus401Schema, createMicrofrontendsGroupWithApplicationsStatus403Schema, createMicrofrontendsGroupWithApplicationsStatus410Schema, createMicrofrontendsGroupWithApplicationsStatus500Schema, createNetworkQuerySlugSchema, createNetworkQueryTeamIdSchema, createNetworkResponseSchema, createNetworkStatus201Schema, createNetworkStatus400Schema, createNetworkStatus401Schema, createNetworkStatus402Schema, createNetworkStatus403Schema, createNetworkStatus409Schema, createNetworkStatus410Schema, createObservabilityQueryResponseSchema, createObservabilityQueryStatus200Schema, createObservabilityQueryStatus400Schema, createObservabilityQueryStatus401Schema, createObservabilityQueryStatus402Schema, createObservabilityQueryStatus403Schema, createObservabilityQueryStatus408Schema, createObservabilityQueryStatus410Schema, createOrTransferDomainQuerySlugSchema, createOrTransferDomainQueryTeamIdSchema, createOrTransferDomainResponseSchema, createOrTransferDomainStatus200Schema, createOrTransferDomainStatus400Schema, createOrTransferDomainStatus401Schema, createOrTransferDomainStatus402Schema, createOrTransferDomainStatus403Schema, createOrTransferDomainStatus404Schema, createOrTransferDomainStatus409Schema, createOrTransferDomainStatus410Schema, createProjectCheckPathProjectIdOrNameSchema, createProjectCheckQuerySlugSchema, createProjectCheckQueryTeamIdSchema, createProjectCheckResponseSchema, createProjectCheckStatus200Schema, createProjectCheckStatus400Schema, createProjectCheckStatus401Schema, createProjectCheckStatus403Schema, createProjectCheckStatus410Schema, createProjectCheckStatus500Schema, createProjectEnvPathIdOrNameSchema, createProjectEnvQuerySlugSchema, createProjectEnvQueryTeamIdSchema, createProjectEnvQueryUpsertSchema, createProjectEnvResponseSchema, createProjectEnvStatus201Schema, createProjectEnvStatus400Schema, createProjectEnvStatus401Schema, createProjectEnvStatus402Schema, createProjectEnvStatus403Schema, createProjectEnvStatus404Schema, createProjectEnvStatus409Schema, createProjectEnvStatus410Schema, createProjectEnvStatus429Schema, createProjectEnvStatus500Schema, createProjectQuerySlugSchema, createProjectQueryTeamIdSchema, createProjectResponseSchema, createProjectStatus200Schema, createProjectStatus400Schema, createProjectStatus401Schema, createProjectStatus402Schema, createProjectStatus403Schema, createProjectStatus404Schema, createProjectStatus409Schema, createProjectStatus410Schema, createProjectStatus428Schema, createProjectStatus429Schema, createProjectStatus500Schema, createProjectTransferRequestPathIdOrNameSchema, createProjectTransferRequestQuerySlugSchema, createProjectTransferRequestQueryTeamIdSchema, createProjectTransferRequestResponseSchema, createProjectTransferRequestStatus200Schema, createProjectTransferRequestStatus400Schema, createProjectTransferRequestStatus401Schema, createProjectTransferRequestStatus403Schema, createProjectTransferRequestStatus410Schema, createRecordPathDomainSchema, createRecordQuerySlugSchema, createRecordQueryTeamIdSchema, createRecordResponseSchema, createRecordStatus200Schema, createRecordStatus400Schema, createRecordStatus401Schema, createRecordStatus402Schema, createRecordStatus403Schema, createRecordStatus404Schema, createRecordStatus409Schema, createRecordStatus410Schema, createRepositoryQuerySlugSchema, createRepositoryQueryTeamIdSchema, createRepositoryResponseSchema, createRepositoryStatus200Schema, createRepositoryStatus400Schema, createRepositoryStatus401Schema, createRepositoryStatus402Schema, createRepositoryStatus403Schema, createRepositoryStatus404Schema, createRepositoryStatus409Schema, createRepositoryStatus410Schema, createSandboxesByNameForkV2PathNameSchema, createSandboxesByNameForkV2QueryProjectIdSchema, createSandboxesByNameForkV2QuerySlugSchema, createSandboxesByNameForkV2QueryTeamIdSchema, createSandboxesByNameForkV2ResponseSchema, createSandboxesByNameForkV2Status200Schema, createSandboxesByNameForkV2Status400Schema, createSandboxesByNameForkV2Status401Schema, createSandboxesByNameForkV2Status402Schema, createSandboxesByNameForkV2Status403Schema, createSandboxesByNameForkV2Status404Schema, createSandboxesByNameForkV2Status409Schema, createSandboxesByNameForkV2Status410Schema, createSandboxesByNameForkV2Status422Schema, createSandboxesByNameForkV2Status429Schema, createSandboxesByNameForkV2Status500Schema, createSandboxesByNameForkV3PathNameSchema, createSandboxesByNameForkV3QueryProjectIdSchema, createSandboxesByNameForkV3QuerySlugSchema, createSandboxesByNameForkV3QueryTeamIdSchema, createSandboxesByNameForkV3ResponseSchema, createSandboxesByNameForkV3Status200Schema, createSandboxesByNameForkV3Status400Schema, createSandboxesByNameForkV3Status401Schema, createSandboxesByNameForkV3Status402Schema, createSandboxesByNameForkV3Status403Schema, createSandboxesByNameForkV3Status404Schema, createSandboxesByNameForkV3Status409Schema, createSandboxesByNameForkV3Status410Schema, createSandboxesByNameForkV3Status422Schema, createSandboxesByNameForkV3Status429Schema, createSandboxesByNameForkV3Status500Schema, createSandboxesSessionsBySessionIdSnapshotV2PathSessionIdSchema, createSandboxesSessionsBySessionIdSnapshotV2QuerySlugSchema, createSandboxesSessionsBySessionIdSnapshotV2QueryTeamIdSchema, createSandboxesSessionsBySessionIdSnapshotV2ResponseSchema, createSandboxesSessionsBySessionIdSnapshotV2Status201Schema, createSandboxesSessionsBySessionIdSnapshotV2Status400Schema, createSandboxesSessionsBySessionIdSnapshotV2Status401Schema, createSandboxesSessionsBySessionIdSnapshotV2Status402Schema, createSandboxesSessionsBySessionIdSnapshotV2Status403Schema, createSandboxesSessionsBySessionIdSnapshotV2Status404Schema, createSandboxesSessionsBySessionIdSnapshotV2Status410Schema, createSandboxesSessionsBySessionIdSnapshotV2Status422Schema, createSandboxesSessionsBySessionIdSnapshotV2Status429Schema, createSandboxesSessionsBySessionIdSnapshotV2Status500Schema, createSandboxesSessionsBySessionIdSnapshotV3PathSessionIdSchema, createSandboxesSessionsBySessionIdSnapshotV3QuerySlugSchema, createSandboxesSessionsBySessionIdSnapshotV3QueryTeamIdSchema, createSandboxesSessionsBySessionIdSnapshotV3ResponseSchema, createSandboxesSessionsBySessionIdSnapshotV3Status201Schema, createSandboxesSessionsBySessionIdSnapshotV3Status400Schema, createSandboxesSessionsBySessionIdSnapshotV3Status401Schema, createSandboxesSessionsBySessionIdSnapshotV3Status402Schema, createSandboxesSessionsBySessionIdSnapshotV3Status403Schema, createSandboxesSessionsBySessionIdSnapshotV3Status404Schema, createSandboxesSessionsBySessionIdSnapshotV3Status410Schema, createSandboxesSessionsBySessionIdSnapshotV3Status422Schema, createSandboxesSessionsBySessionIdSnapshotV3Status429Schema, createSandboxesSessionsBySessionIdSnapshotV3Status500Schema, createSandboxesV2QuerySlugSchema, createSandboxesV2QueryTeamIdSchema, createSandboxesV2ResponseSchema, createSandboxesV2Status200Schema, createSandboxesV2Status400Schema, createSandboxesV2Status401Schema, createSandboxesV2Status402Schema, createSandboxesV2Status403Schema, createSandboxesV2Status404Schema, createSandboxesV2Status409Schema, createSandboxesV2Status410Schema, createSandboxesV2Status422Schema, createSandboxesV2Status429Schema, createSandboxesV2Status500Schema, createSandboxesV3QuerySlugSchema, createSandboxesV3QueryTeamIdSchema, createSandboxesV3ResponseSchema, createSandboxesV3Status200Schema, createSandboxesV3Status400Schema, createSandboxesV3Status401Schema, createSandboxesV3Status402Schema, createSandboxesV3Status403Schema, createSandboxesV3Status404Schema, createSandboxesV3Status409Schema, createSandboxesV3Status410Schema, createSandboxesV3Status422Schema, createSandboxesV3Status429Schema, createSandboxesV3Status500Schema, createSandboxesV4QuerySlugSchema, createSandboxesV4QueryTeamIdSchema, createSandboxesV4ResponseSchema, createSandboxesV4Status200Schema, createSandboxesV4Status400Schema, createSandboxesV4Status401Schema, createSandboxesV4Status402Schema, createSandboxesV4Status403Schema, createSandboxesV4Status404Schema, createSandboxesV4Status409Schema, createSandboxesV4Status410Schema, createSandboxesV4Status422Schema, createSandboxesV4Status429Schema, createSandboxesV4Status500Schema, createSdkKeyPathProjectIdOrNameSchema, createSdkKeyQuerySlugSchema, createSdkKeyQueryTeamIdSchema, createSdkKeyResponseSchema, createSdkKeyStatus200Schema, createSdkKeyStatus400Schema, createSdkKeyStatus401Schema, createSdkKeyStatus402Schema, createSdkKeyStatus403Schema, createSdkKeyStatus404Schema, createSdkKeyStatus409Schema, createSdkKeyStatus410Schema, createSecurityFirewallConfigByConfigVersionActivatePathConfigVersionSchema, createSecurityFirewallConfigByConfigVersionActivateResponseSchema, createSecurityFirewallConfigByConfigVersionActivateStatus200Schema, createSecurityFirewallConfigByConfigVersionActivateStatus400Schema, createSecurityFirewallConfigByConfigVersionActivateStatus401Schema, createSecurityFirewallConfigByConfigVersionActivateStatus402Schema, createSecurityFirewallConfigByConfigVersionActivateStatus403Schema, createSecurityFirewallConfigByConfigVersionActivateStatus404Schema, createSecurityFirewallConfigByConfigVersionActivateStatus410Schema, createSecurityFirewallConfigByConfigVersionActivateStatus500Schema, createSessionDirectoryPathSessionIdSchema, createSessionDirectoryQuerySlugSchema, createSessionDirectoryQueryTeamIdSchema, createSessionDirectoryResponseSchema, createSessionDirectoryStatus200Schema, createSessionDirectoryStatus400Schema, createSessionDirectoryStatus401Schema, createSessionDirectoryStatus403Schema, createSessionDirectoryStatus404Schema, createSessionDirectoryStatus410Schema, createSessionDirectoryStatus422Schema, createSessionDirectoryStatus429Schema, createSessionDirectoryStatus500Schema, createSharedEnvVariableQuerySlugSchema, createSharedEnvVariableQueryTeamIdSchema, createSharedEnvVariableResponseSchema, createSharedEnvVariableStatus201Schema, createSharedEnvVariableStatus400Schema, createSharedEnvVariableStatus401Schema, createSharedEnvVariableStatus402Schema, createSharedEnvVariableStatus403Schema, createSharedEnvVariableStatus410Schema, createSpeedInsightsToggleQueryProjectIdSchema, createSpeedInsightsToggleResponseSchema, createSpeedInsightsToggleStatus200Schema, createSpeedInsightsToggleStatus400Schema, createSpeedInsightsToggleStatus401Schema, createSpeedInsightsToggleStatus402Schema, createSpeedInsightsToggleStatus403Schema, createSpeedInsightsToggleStatus410Schema, createStorageStoresBlobResponseSchema, createStorageStoresBlobStatus200Schema, createStorageStoresBlobStatus400Schema, createStorageStoresBlobStatus401Schema, createStorageStoresBlobStatus402Schema, createStorageStoresBlobStatus403Schema, createStorageStoresBlobStatus404Schema, createStorageStoresBlobStatus409Schema, createStorageStoresBlobStatus410Schema, createStorageStoresBlobStatus429Schema, createTeamResponseSchema, createTeamStatus200Schema, createTeamStatus400Schema, createTeamStatus401Schema, createTeamStatus403Schema, createTeamStatus404Schema, createTeamStatus409Schema, createTeamStatus410Schema, createTraceSessionQuerySlugSchema, createTraceSessionQueryTeamIdSchema, createTraceSessionResponseSchema, createTraceSessionStatus200Schema, createTraceSessionStatus400Schema, createTraceSessionStatus401Schema, createTraceSessionStatus403Schema, createTraceSessionStatus410Schema, createTraceSessionStatus422Schema, createWebInsightsToggleQueryProjectIdSchema, createWebInsightsToggleResponseSchema, createWebInsightsToggleStatus200Schema, createWebInsightsToggleStatus400Schema, createWebInsightsToggleStatus401Schema, createWebInsightsToggleStatus403Schema, createWebInsightsToggleStatus410Schema, createWebhookQuerySlugSchema, createWebhookQueryTeamIdSchema, createWebhookResponseSchema, createWebhookStatus200Schema, createWebhookStatus400Schema, createWebhookStatus401Schema, createWebhookStatus403Schema, createWebhookStatus410Schema, dNSSECEnabledSchema, dangerouslyDeleteBySrcImagesQueryProjectIdOrNameSchema, dangerouslyDeleteBySrcImagesQuerySlugSchema, dangerouslyDeleteBySrcImagesQueryTeamIdSchema, dangerouslyDeleteBySrcImagesResponseSchema, dangerouslyDeleteBySrcImagesStatus200Schema, dangerouslyDeleteBySrcImagesStatus400Schema, dangerouslyDeleteBySrcImagesStatus401Schema, dangerouslyDeleteBySrcImagesStatus402Schema, dangerouslyDeleteBySrcImagesStatus403Schema, dangerouslyDeleteBySrcImagesStatus404Schema, dangerouslyDeleteBySrcImagesStatus410Schema, dangerouslyDeleteByTagsQueryProjectIdOrNameSchema, dangerouslyDeleteByTagsQuerySlugSchema, dangerouslyDeleteByTagsQueryTeamIdSchema, dangerouslyDeleteByTagsResponseSchema, dangerouslyDeleteByTagsStatus200Schema, dangerouslyDeleteByTagsStatus400Schema, dangerouslyDeleteByTagsStatus401Schema, dangerouslyDeleteByTagsStatus403Schema, dangerouslyDeleteByTagsStatus404Schema, dangerouslyDeleteByTagsStatus410Schema, dateFromStringSchema, deleteAccessGroupPathIdOrNameSchema, deleteAccessGroupProjectPathAccessGroupIdOrNameSchema, deleteAccessGroupProjectPathProjectIdSchema, deleteAccessGroupProjectQuerySlugSchema, deleteAccessGroupProjectQueryTeamIdSchema, deleteAccessGroupProjectResponseSchema, deleteAccessGroupProjectStatus200Schema, deleteAccessGroupProjectStatus400Schema, deleteAccessGroupProjectStatus401Schema, deleteAccessGroupProjectStatus403Schema, deleteAccessGroupProjectStatus410Schema, deleteAccessGroupQuerySlugSchema, deleteAccessGroupQueryTeamIdSchema, deleteAccessGroupResponseSchema, deleteAccessGroupStatus200Schema, deleteAccessGroupStatus400Schema, deleteAccessGroupStatus401Schema, deleteAccessGroupStatus403Schema, deleteAccessGroupStatus410Schema, deleteAiGatewayRuleQueryRuleIdSchema, deleteAiGatewayRuleQuerySlugSchema, deleteAiGatewayRuleQueryTeamIdSchema, deleteAiGatewayRuleResponseSchema, deleteAiGatewayRuleStatus204Schema, deleteAiGatewayRuleStatus400Schema, deleteAiGatewayRuleStatus401Schema, deleteAiGatewayRuleStatus403Schema, deleteAiGatewayRuleStatus404Schema, deleteAiGatewayRuleStatus410Schema, deleteAiGatewayRuleStatus500Schema, deleteAiGatewayVirtualModelConfigQueryOwnerIdSchema, deleteAiGatewayVirtualModelConfigQuerySlugSchema, deleteAiGatewayVirtualModelConfigQueryTeamIdSchema, deleteAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema, deleteAiGatewayVirtualModelConfigResponseSchema, deleteAiGatewayVirtualModelConfigStatus204Schema, deleteAiGatewayVirtualModelConfigStatus400Schema, deleteAiGatewayVirtualModelConfigStatus401Schema, deleteAiGatewayVirtualModelConfigStatus403Schema, deleteAiGatewayVirtualModelConfigStatus404Schema, deleteAiGatewayVirtualModelConfigStatus410Schema, deleteAiGatewayVirtualModelConfigStatus500Schema, deleteAliasPathAliasIdSchema, deleteAliasQuerySlugSchema, deleteAliasQueryTeamIdSchema, deleteAliasResponseSchema, deleteAliasStatus200Schema, deleteAliasStatus400Schema, deleteAliasStatus401Schema, deleteAliasStatus403Schema, deleteAliasStatus404Schema, deleteAliasStatus410Schema, deleteAllArtifactsQuerySlugSchema, deleteAllArtifactsQueryTeamIdSchema, deleteAllArtifactsResponseSchema, deleteAllArtifactsStatus200Schema, deleteAllArtifactsStatus400Schema, deleteAllArtifactsStatus401Schema, deleteAllArtifactsStatus403Schema, deleteAllArtifactsStatus410Schema, deleteAuthTokenPathTokenIdSchema, deleteAuthTokenResponseSchema, deleteAuthTokenStatus200Schema, deleteAuthTokenStatus400Schema, deleteAuthTokenStatus401Schema, deleteAuthTokenStatus403Schema, deleteAuthTokenStatus404Schema, deleteAuthTokenStatus410Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus405Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus202Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema, deleteConfigurableLogDrainPathIdSchema, deleteConfigurableLogDrainQuerySlugSchema, deleteConfigurableLogDrainQueryTeamIdSchema, deleteConfigurableLogDrainResponseSchema, deleteConfigurableLogDrainStatus204Schema, deleteConfigurableLogDrainStatus400Schema, deleteConfigurableLogDrainStatus401Schema, deleteConfigurableLogDrainStatus403Schema, deleteConfigurableLogDrainStatus404Schema, deleteConfigurableLogDrainStatus410Schema, deleteConfigurationPathIdSchema, deleteConfigurationQuerySlugSchema, deleteConfigurationQueryTeamIdSchema, deleteConfigurationResponseSchema, deleteConfigurationStatus204Schema, deleteConfigurationStatus400Schema, deleteConfigurationStatus401Schema, deleteConfigurationStatus403Schema, deleteConfigurationStatus404Schema, deleteConfigurationStatus410Schema, deleteDeploymentPathIdSchema, deleteDeploymentQuerySlugSchema, deleteDeploymentQueryTeamIdSchema, deleteDeploymentQueryUrlSchema, deleteDeploymentResponseSchema, deleteDeploymentStatus200Schema, deleteDeploymentStatus400Schema, deleteDeploymentStatus401Schema, deleteDeploymentStatus403Schema, deleteDeploymentStatus404Schema, deleteDeploymentStatus410Schema, deleteDomainPathDomainSchema, deleteDomainQuerySlugSchema, deleteDomainQueryTeamIdSchema, deleteDomainResponseSchema, deleteDomainStatus200Schema, deleteDomainStatus400Schema, deleteDomainStatus401Schema, deleteDomainStatus403Schema, deleteDomainStatus404Schema, deleteDomainStatus409Schema, deleteDomainStatus410Schema, deleteDrainPathIdSchema, deleteDrainQuerySlugSchema, deleteDrainQueryTeamIdSchema, deleteDrainResponseSchema, deleteDrainStatus204Schema, deleteDrainStatus400Schema, deleteDrainStatus401Schema, deleteDrainStatus403Schema, deleteDrainStatus404Schema, deleteDrainStatus410Schema, deleteDrivePathNameSchema, deleteDriveQueryProjectIdSchema, deleteDriveQuerySlugSchema, deleteDriveQueryTeamIdSchema, deleteDriveResponseSchema, deleteDriveStatus200Schema, deleteDriveStatus400Schema, deleteDriveStatus401Schema, deleteDriveStatus403Schema, deleteDriveStatus404Schema, deleteDriveStatus409Schema, deleteDriveStatus410Schema, deleteDriveStatus429Schema, deleteEdgeConfigPathEdgeConfigIdSchema, deleteEdgeConfigQuerySlugSchema, deleteEdgeConfigQueryTeamIdSchema, deleteEdgeConfigResponseSchema, deleteEdgeConfigSchemaPathEdgeConfigIdSchema, deleteEdgeConfigSchemaQuerySlugSchema, deleteEdgeConfigSchemaQueryTeamIdSchema, deleteEdgeConfigSchemaResponseSchema, deleteEdgeConfigSchemaStatus204Schema, deleteEdgeConfigSchemaStatus400Schema, deleteEdgeConfigSchemaStatus401Schema, deleteEdgeConfigSchemaStatus402Schema, deleteEdgeConfigSchemaStatus403Schema, deleteEdgeConfigSchemaStatus404Schema, deleteEdgeConfigSchemaStatus409Schema, deleteEdgeConfigSchemaStatus410Schema, deleteEdgeConfigStatus204Schema, deleteEdgeConfigStatus400Schema, deleteEdgeConfigStatus401Schema, deleteEdgeConfigStatus403Schema, deleteEdgeConfigStatus404Schema, deleteEdgeConfigStatus409Schema, deleteEdgeConfigStatus410Schema, deleteEdgeConfigTokensPathEdgeConfigIdSchema, deleteEdgeConfigTokensQuerySlugSchema, deleteEdgeConfigTokensQueryTeamIdSchema, deleteEdgeConfigTokensResponseSchema, deleteEdgeConfigTokensStatus204Schema, deleteEdgeConfigTokensStatus400Schema, deleteEdgeConfigTokensStatus401Schema, deleteEdgeConfigTokensStatus402Schema, deleteEdgeConfigTokensStatus403Schema, deleteEdgeConfigTokensStatus404Schema, deleteEdgeConfigTokensStatus409Schema, deleteEdgeConfigTokensStatus410Schema, deleteFlagPathFlagIdOrSlugSchema, deleteFlagPathProjectIdOrNameSchema, deleteFlagQueryIfMatchSchema, deleteFlagQuerySlugSchema, deleteFlagQueryTeamIdSchema, deleteFlagQueryWithMetadataSchema, deleteFlagResponseSchema, deleteFlagSegmentPathProjectIdOrNameSchema, deleteFlagSegmentPathSegmentIdOrSlugSchema, deleteFlagSegmentQuerySlugSchema, deleteFlagSegmentQueryTeamIdSchema, deleteFlagSegmentQueryWithMetadataSchema, deleteFlagSegmentResponseSchema, deleteFlagSegmentStatus204Schema, deleteFlagSegmentStatus304Schema, deleteFlagSegmentStatus400Schema, deleteFlagSegmentStatus401Schema, deleteFlagSegmentStatus402Schema, deleteFlagSegmentStatus403Schema, deleteFlagSegmentStatus404Schema, deleteFlagSegmentStatus409Schema, deleteFlagSegmentStatus410Schema, deleteFlagStatus204Schema, deleteFlagStatus304Schema, deleteFlagStatus400Schema, deleteFlagStatus401Schema, deleteFlagStatus402Schema, deleteFlagStatus403Schema, deleteFlagStatus404Schema, deleteFlagStatus409Schema, deleteFlagStatus410Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathIntegrationConfigurationIdSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathItemIdSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathResourceIdSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdResponseSchema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus204Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus400Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus401Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus403Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus404Schema, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus410Schema, deleteIntegrationLogDrainPathIdSchema, deleteIntegrationLogDrainQuerySlugSchema, deleteIntegrationLogDrainQueryTeamIdSchema, deleteIntegrationLogDrainResponseSchema, deleteIntegrationLogDrainStatus204Schema, deleteIntegrationLogDrainStatus400Schema, deleteIntegrationLogDrainStatus401Schema, deleteIntegrationLogDrainStatus403Schema, deleteIntegrationLogDrainStatus404Schema, deleteIntegrationLogDrainStatus410Schema, deleteIntegrationResourcePathIntegrationConfigurationIdSchema, deleteIntegrationResourcePathResourceIdSchema, deleteIntegrationResourceResponseSchema, deleteIntegrationResourceStatus204Schema, deleteIntegrationResourceStatus400Schema, deleteIntegrationResourceStatus401Schema, deleteIntegrationResourceStatus403Schema, deleteIntegrationResourceStatus404Schema, deleteIntegrationResourceStatus410Schema, deleteMicrofrontendsGroupPathGroupIdSchema, deleteMicrofrontendsGroupPathTeamIdSchema, deleteMicrofrontendsGroupQuerySlugSchema, deleteMicrofrontendsGroupResponseSchema, deleteMicrofrontendsGroupStatus200Schema, deleteMicrofrontendsGroupStatus400Schema, deleteMicrofrontendsGroupStatus401Schema, deleteMicrofrontendsGroupStatus403Schema, deleteMicrofrontendsGroupStatus404Schema, deleteMicrofrontendsGroupStatus410Schema, deleteMicrofrontendsGroupStatus500Schema, deleteNetworkPathNetworkIdSchema, deleteNetworkQuerySlugSchema, deleteNetworkQueryTeamIdSchema, deleteNetworkResponseSchema, deleteNetworkStatus204Schema, deleteNetworkStatus400Schema, deleteNetworkStatus401Schema, deleteNetworkStatus402Schema, deleteNetworkStatus403Schema, deleteNetworkStatus409Schema, deleteNetworkStatus410Schema, deleteProjectCheckPathCheckIdSchema, deleteProjectCheckPathProjectIdOrNameSchema, deleteProjectCheckQuerySlugSchema, deleteProjectCheckQueryTeamIdSchema, deleteProjectCheckResponseSchema, deleteProjectCheckStatus200Schema, deleteProjectCheckStatus400Schema, deleteProjectCheckStatus401Schema, deleteProjectCheckStatus403Schema, deleteProjectCheckStatus404Schema, deleteProjectCheckStatus410Schema, deleteProjectCheckStatus500Schema, deleteProjectPathIdOrNameSchema, deleteProjectQuerySlugSchema, deleteProjectQueryTeamIdSchema, deleteProjectResponseSchema, deleteProjectStatus204Schema, deleteProjectStatus400Schema, deleteProjectStatus401Schema, deleteProjectStatus403Schema, deleteProjectStatus409Schema, deleteProjectStatus410Schema, deleteRedirectsQueryProjectIdSchema, deleteRedirectsQuerySlugSchema, deleteRedirectsQueryTeamIdSchema, deleteRedirectsResponseSchema, deleteRedirectsStatus200Schema, deleteRedirectsStatus400Schema, deleteRedirectsStatus401Schema, deleteRedirectsStatus403Schema, deleteRedirectsStatus404Schema, deleteRedirectsStatus410Schema, deleteRedirectsStatus500Schema, deleteRepositoryImagePathIdOrNameSchema, deleteRepositoryImagePathImageIdSchema, deleteRepositoryImageQueryProjectIdSchema, deleteRepositoryImageQuerySlugSchema, deleteRepositoryImageQueryTeamIdSchema, deleteRepositoryImageResponseSchema, deleteRepositoryImageStatus202Schema, deleteRepositoryImageStatus400Schema, deleteRepositoryImageStatus401Schema, deleteRepositoryImageStatus403Schema, deleteRepositoryImageStatus404Schema, deleteRepositoryImageStatus410Schema, deleteRepositoryPathIdOrNameSchema, deleteRepositoryQueryProjectIdSchema, deleteRepositoryQuerySlugSchema, deleteRepositoryQueryTeamIdSchema, deleteRepositoryResponseSchema, deleteRepositoryStatus202Schema, deleteRepositoryStatus400Schema, deleteRepositoryStatus401Schema, deleteRepositoryStatus403Schema, deleteRepositoryStatus404Schema, deleteRepositoryStatus410Schema, deleteRollingReleaseConfigPathIdOrNameSchema, deleteRollingReleaseConfigQuerySlugSchema, deleteRollingReleaseConfigQueryTeamIdSchema, deleteRollingReleaseConfigResponseSchema, deleteRollingReleaseConfigStatus200Schema, deleteRollingReleaseConfigStatus400Schema, deleteRollingReleaseConfigStatus401Schema, deleteRollingReleaseConfigStatus403Schema, deleteRollingReleaseConfigStatus404Schema, deleteRollingReleaseConfigStatus410Schema, deleteRoutesPathProjectIdSchema, deleteRoutesQuerySlugSchema, deleteRoutesQueryTeamIdSchema, deleteRoutesResponseSchema, deleteRoutesStatus200Schema, deleteRoutesStatus400Schema, deleteRoutesStatus401Schema, deleteRoutesStatus403Schema, deleteRoutesStatus404Schema, deleteRoutesStatus409Schema, deleteRoutesStatus410Schema, deleteRoutesStatus500Schema, deleteSandboxPathNameSchema, deleteSandboxQueryProjectIdSchema, deleteSandboxQuerySlugSchema, deleteSandboxQueryTeamIdSchema, deleteSandboxResponseSchema, deleteSandboxStatus200Schema, deleteSandboxStatus400Schema, deleteSandboxStatus401Schema, deleteSandboxStatus403Schema, deleteSandboxStatus404Schema, deleteSandboxStatus410Schema, deleteSandboxStatus429Schema, deleteSdkKeyPathHashKeySchema, deleteSdkKeyPathProjectIdOrNameSchema, deleteSdkKeyQuerySlugSchema, deleteSdkKeyQueryTeamIdSchema, deleteSdkKeyResponseSchema, deleteSdkKeyStatus204Schema, deleteSdkKeyStatus400Schema, deleteSdkKeyStatus401Schema, deleteSdkKeyStatus402Schema, deleteSdkKeyStatus403Schema, deleteSdkKeyStatus404Schema, deleteSdkKeyStatus409Schema, deleteSdkKeyStatus410Schema, deleteSecurityFirewallConfigByConfigVersionPathConfigVersionSchema, deleteSecurityFirewallConfigByConfigVersionResponseSchema, deleteSecurityFirewallConfigByConfigVersionStatus204Schema, deleteSecurityFirewallConfigByConfigVersionStatus400Schema, deleteSecurityFirewallConfigByConfigVersionStatus401Schema, deleteSecurityFirewallConfigByConfigVersionStatus403Schema, deleteSecurityFirewallConfigByConfigVersionStatus404Schema, deleteSecurityFirewallConfigByConfigVersionStatus410Schema, deleteSecurityFirewallConfigByConfigVersionStatus500Schema, deleteSessionSnapshotPathSnapshotIdSchema, deleteSessionSnapshotQuerySlugSchema, deleteSessionSnapshotQueryTeamIdSchema, deleteSessionSnapshotResponseSchema, deleteSessionSnapshotStatus200Schema, deleteSessionSnapshotStatus400Schema, deleteSessionSnapshotStatus401Schema, deleteSessionSnapshotStatus403Schema, deleteSessionSnapshotStatus404Schema, deleteSessionSnapshotStatus410Schema, deleteSessionSnapshotStatus429Schema, deleteSharedEnvVariableQuerySlugSchema, deleteSharedEnvVariableQueryTeamIdSchema, deleteSharedEnvVariableResponseSchema, deleteSharedEnvVariableStatus200Schema, deleteSharedEnvVariableStatus400Schema, deleteSharedEnvVariableStatus401Schema, deleteSharedEnvVariableStatus402Schema, deleteSharedEnvVariableStatus403Schema, deleteSharedEnvVariableStatus410Schema, deleteStorageStoresBlobByIdPathIdSchema, deleteStorageStoresBlobByIdResponseSchema, deleteStorageStoresBlobByIdStatus200Schema, deleteStorageStoresBlobByIdStatus400Schema, deleteStorageStoresBlobByIdStatus401Schema, deleteStorageStoresBlobByIdStatus403Schema, deleteStorageStoresBlobByIdStatus404Schema, deleteStorageStoresBlobByIdStatus409Schema, deleteStorageStoresBlobByIdStatus410Schema, deleteTeamInviteCodePathInviteIdSchema, deleteTeamInviteCodePathTeamIdSchema, deleteTeamInviteCodeResponseSchema, deleteTeamInviteCodeStatus200Schema, deleteTeamInviteCodeStatus400Schema, deleteTeamInviteCodeStatus401Schema, deleteTeamInviteCodeStatus403Schema, deleteTeamInviteCodeStatus404Schema, deleteTeamInviteCodeStatus410Schema, deleteTeamPathTeamIdSchema, deleteTeamQueryNewDefaultTeamIdSchema, deleteTeamQuerySlugSchema, deleteTeamResponseSchema, deleteTeamStatus200Schema, deleteTeamStatus400Schema, deleteTeamStatus401Schema, deleteTeamStatus402Schema, deleteTeamStatus403Schema, deleteTeamStatus409Schema, deleteTeamStatus410Schema, deleteWebhookPathIdSchema, deleteWebhookQuerySlugSchema, deleteWebhookQueryTeamIdSchema, deleteWebhookResponseSchema, deleteWebhookStatus204Schema, deleteWebhookStatus400Schema, deleteWebhookStatus401Schema, deleteWebhookStatus403Schema, deleteWebhookStatus410Schema, domainAlreadyOwnedSchema, domainAlreadyRenewingSchema, domainCannotBeTransferedOutUntilSchema, domainNameSchema, domainNotAvailableSchema, domainNotFoundSchema, domainNotRegisteredSchema, domainNotRenewableSchema, domainTooShortSchema, downloadArtifactHeaderxArtifactClientCiSchema, downloadArtifactHeaderxArtifactClientInteractiveSchema, downloadArtifactPathHashSchema, downloadArtifactQuerySlugSchema, downloadArtifactQueryTeamIdSchema, downloadArtifactResponseSchema, downloadArtifactStatus200Schema, downloadArtifactStatus400Schema, downloadArtifactStatus401Schema, downloadArtifactStatus402Schema, downloadArtifactStatus403Schema, downloadArtifactStatus404Schema, downloadArtifactStatus410Schema, driveSchema, duplicateDomainsSchema, e164PhoneNumberSchema, editProjectEnvPathIdOrNameSchema, editProjectEnvPathIdSchema, editProjectEnvQuerySlugSchema, editProjectEnvQueryTeamIdSchema, editProjectEnvResponseSchema, editProjectEnvStatus200Schema, editProjectEnvStatus400Schema, editProjectEnvStatus401Schema, editProjectEnvStatus403Schema, editProjectEnvStatus404Schema, editProjectEnvStatus409Schema, editProjectEnvStatus410Schema, editProjectEnvStatus429Schema, editProjectEnvStatus500Schema, editRedirectQueryProjectIdSchema, editRedirectQuerySlugSchema, editRedirectQueryTeamIdSchema, editRedirectResponseSchema, editRedirectStatus200Schema, editRedirectStatus400Schema, editRedirectStatus401Schema, editRedirectStatus403Schema, editRedirectStatus404Schema, editRedirectStatus410Schema, editRedirectStatus500Schema, editRoutePathProjectIdSchema, editRoutePathRouteIdSchema, editRouteQuerySlugSchema, editRouteQueryTeamIdSchema, editRouteResponseSchema, editRouteStatus200Schema, editRouteStatus400Schema, editRouteStatus401Schema, editRouteStatus403Schema, editRouteStatus404Schema, editRouteStatus409Schema, editRouteStatus410Schema, editRouteStatus500Schema, emailAddressSchema, exchangeSsoTokenResponseSchema, exchangeSsoTokenStatus200Schema, exchangeSsoTokenStatus400Schema, exchangeSsoTokenStatus403Schema, exchangeSsoTokenStatus500Schema, expectedPriceMismatchSchema, extendSessionTimeoutPathSessionIdSchema, extendSessionTimeoutQuerySlugSchema, extendSessionTimeoutQueryTeamIdSchema, extendSessionTimeoutResponseSchema, extendSessionTimeoutStatus200Schema, extendSessionTimeoutStatus400Schema, extendSessionTimeoutStatus401Schema, extendSessionTimeoutStatus403Schema, extendSessionTimeoutStatus404Schema, extendSessionTimeoutStatus410Schema, extendSessionTimeoutStatus422Schema, extendSessionTimeoutStatus429Schema, extendSessionTimeoutStatus500Schema, fileTreeSchema, filterProjectEnvsPathIdOrNameSchema, filterProjectEnvsQueryCustomEnvironmentIdSchema, filterProjectEnvsQueryCustomEnvironmentSlugSchema, filterProjectEnvsQueryDecryptSchema, filterProjectEnvsQueryGitBranchSchema, filterProjectEnvsQuerySlugSchema, filterProjectEnvsQuerySourceSchema, filterProjectEnvsQueryTeamIdSchema, filterProjectEnvsResponseSchema, filterProjectEnvsStatus200Schema, filterProjectEnvsStatus400Schema, filterProjectEnvsStatus401Schema, filterProjectEnvsStatus403Schema, filterProjectEnvsStatus410Schema, finalizeInstallationPathIntegrationConfigurationIdSchema, finalizeInstallationResponseSchema, finalizeInstallationStatus204Schema, finalizeInstallationStatus400Schema, finalizeInstallationStatus401Schema, finalizeInstallationStatus403Schema, finalizeInstallationStatus404Schema, finalizeInstallationStatus410Schema, flagJSONValueSchema, flagSchema, flagsSdkKeyWithSecretsSchema, forbiddenSchema, generateFirewallRuleQueryProjectIdSchema, generateFirewallRuleQuerySlugSchema, generateFirewallRuleQueryTeamIdSchema, generateFirewallRuleResponseSchema, generateFirewallRuleStatus200Schema, generateFirewallRuleStatus400Schema, generateFirewallRuleStatus401Schema, generateFirewallRuleStatus403Schema, generateFirewallRuleStatus404Schema, generateFirewallRuleStatus408Schema, generateFirewallRuleStatus410Schema, generateFirewallRuleStatus500Schema, generateRoutePathProjectIdSchema, generateRouteQuerySlugSchema, generateRouteQueryTeamIdSchema, generateRouteResponseSchema, generateRouteStatus200Schema, generateRouteStatus400Schema, generateRouteStatus401Schema, generateRouteStatus403Schema, generateRouteStatus408Schema, generateRouteStatus410Schema, generateRouteStatus500Schema, getAccountInfoPathIntegrationConfigurationIdSchema, getAccountInfoResponseSchema, getAccountInfoStatus200Schema, getAccountInfoStatus400Schema, getAccountInfoStatus401Schema, getAccountInfoStatus403Schema, getAccountInfoStatus404Schema, getAccountInfoStatus410Schema, getActiveAttackStatusQueryProjectIdSchema, getActiveAttackStatusQuerySinceSchema, getActiveAttackStatusQuerySlugSchema, getActiveAttackStatusQueryTeamIdSchema, getActiveAttackStatusResponseSchema, getActiveAttackStatusStatus200Schema, getActiveAttackStatusStatus400Schema, getActiveAttackStatusStatus401Schema, getActiveAttackStatusStatus403Schema, getActiveAttackStatusStatus404Schema, getActiveAttackStatusStatus410Schema, getAiGatewayVirtualModelConfigQueryOwnerIdSchema, getAiGatewayVirtualModelConfigQuerySlugSchema, getAiGatewayVirtualModelConfigQueryTeamIdSchema, getAiGatewayVirtualModelConfigQueryVirtualModelSlugSchema, getAiGatewayVirtualModelConfigResponseSchema, getAiGatewayVirtualModelConfigStatus200Schema, getAiGatewayVirtualModelConfigStatus400Schema, getAiGatewayVirtualModelConfigStatus401Schema, getAiGatewayVirtualModelConfigStatus403Schema, getAiGatewayVirtualModelConfigStatus404Schema, getAiGatewayVirtualModelConfigStatus410Schema, getAiGatewayVirtualModelConfigStatus500Schema, getAliasPathIdOrAliasSchema, getAliasQueryFromSchema, getAliasQueryProjectIdSchema, getAliasQuerySinceSchema, getAliasQuerySlugSchema, getAliasQueryTeamIdSchema, getAliasQueryUntilSchema, getAliasResponseSchema, getAliasStatus200Schema, getAliasStatus400Schema, getAliasStatus401Schema, getAliasStatus403Schema, getAliasStatus404Schema, getAliasStatus410Schema, getAllChecksPathDeploymentIdSchema, getAllChecksQuerySlugSchema, getAllChecksQueryTeamIdSchema, getAllChecksResponseSchema, getAllChecksStatus200Schema, getAllChecksStatus400Schema, getAllChecksStatus401Schema, getAllChecksStatus403Schema, getAllChecksStatus404Schema, getAllChecksStatus410Schema, getAllLogDrainsQueryIncludeMetadataSchema, getAllLogDrainsQueryProjectIdOrNameSchema, getAllLogDrainsQueryProjectIdSchema, getAllLogDrainsQuerySlugSchema, getAllLogDrainsQueryTeamIdSchema, getAllLogDrainsResponseSchema, getAllLogDrainsStatus200Schema, getAllLogDrainsStatus400Schema, getAllLogDrainsStatus401Schema, getAllLogDrainsStatus403Schema, getAllLogDrainsStatus404Schema, getAllLogDrainsStatus410Schema, getAuthTokenPathTokenIdSchema, getAuthTokenResponseSchema, getAuthTokenStatus200Schema, getAuthTokenStatus400Schema, getAuthTokenStatus401Schema, getAuthTokenStatus403Schema, getAuthTokenStatus404Schema, getAuthTokenStatus410Schema, getAuthUserResponseSchema, getAuthUserStatus200Schema, getAuthUserStatus302Schema, getAuthUserStatus400Schema, getAuthUserStatus401Schema, getAuthUserStatus403Schema, getAuthUserStatus409Schema, getAuthUserStatus410Schema, getBillingPlansPathIntegrationIdOrSlugSchema, getBillingPlansPathProductIdOrSlugSchema, getBillingPlansQueryIntegrationConfigurationIdSchema, getBillingPlansQueryMetadataSchema, getBillingPlansQuerySlugSchema, getBillingPlansQuerySourceSchema, getBillingPlansQueryTeamIdSchema, getBillingPlansResponseSchema, getBillingPlansStatus200Schema, getBillingPlansStatus400Schema, getBillingPlansStatus401Schema, getBillingPlansStatus403Schema, getBillingPlansStatus404Schema, getBillingPlansStatus410Schema, getBulkAvailabilityQueryTeamIdSchema, getBulkAvailabilityResponseSchema, getBulkAvailabilityStatus200Schema, getBulkAvailabilityStatus400Schema, getBulkAvailabilityStatus401Schema, getBulkAvailabilityStatus403Schema, getBulkAvailabilityStatus429Schema, getBulkAvailabilityStatus500Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathDigestSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathProjectSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathRepositoryNameSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestPathTeamSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestResponseSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus400Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus401Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus402Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus403Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus404Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus410Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestStatus416Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus204Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathProjectSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathRepositoryNameSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListPathTeamSlugSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryLastSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListQueryNSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListResponseSchema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus200Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus400Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus401Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus402Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus403Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus404Schema, getByTeamSlugByProjectSlugByRepositoryNameTagsListStatus410Schema, getBypassIpQueryDomainSchema, getBypassIpQueryLimitSchema, getBypassIpQueryOffsetSchema, getBypassIpQueryProjectIdSchema, getBypassIpQueryProjectScopeSchema, getBypassIpQuerySlugSchema, getBypassIpQuerySourceIpSchema, getBypassIpQueryTeamIdSchema, getBypassIpResponseSchema, getBypassIpStatus200Schema, getBypassIpStatus400Schema, getBypassIpStatus401Schema, getBypassIpStatus403Schema, getBypassIpStatus404Schema, getBypassIpStatus410Schema, getBypassIpStatus500Schema, getCertByIdPathIdSchema, getCertByIdQuerySlugSchema, getCertByIdQueryTeamIdSchema, getCertByIdResponseSchema, getCertByIdStatus200Schema, getCertByIdStatus400Schema, getCertByIdStatus401Schema, getCertByIdStatus403Schema, getCertByIdStatus404Schema, getCertByIdStatus410Schema, getCertsQuerySlugSchema, getCertsQueryTeamIdSchema, getCertsResponseSchema, getCertsStatus200Schema, getCertsStatus400Schema, getCertsStatus401Schema, getCertsStatus403Schema, getCertsStatus410Schema, getCheckPathCheckIdSchema, getCheckPathDeploymentIdSchema, getCheckQuerySlugSchema, getCheckQueryTeamIdSchema, getCheckResponseSchema, getCheckStatus200Schema, getCheckStatus400Schema, getCheckStatus401Schema, getCheckStatus403Schema, getCheckStatus404Schema, getCheckStatus410Schema, getConfigurableLogDrainPathIdSchema, getConfigurableLogDrainQuerySlugSchema, getConfigurableLogDrainQueryTeamIdSchema, getConfigurableLogDrainResponseSchema, getConfigurableLogDrainStatus200Schema, getConfigurableLogDrainStatus400Schema, getConfigurableLogDrainStatus401Schema, getConfigurableLogDrainStatus403Schema, getConfigurableLogDrainStatus404Schema, getConfigurableLogDrainStatus410Schema, getConfigurationPathIdSchema, getConfigurationProductsPathIdSchema, getConfigurationProductsQuerySlugSchema, getConfigurationProductsQueryTeamIdSchema, getConfigurationProductsResponseSchema, getConfigurationProductsStatus200Schema, getConfigurationProductsStatus400Schema, getConfigurationProductsStatus401Schema, getConfigurationProductsStatus403Schema, getConfigurationProductsStatus404Schema, getConfigurationProductsStatus410Schema, getConfigurationProductsStatus500Schema, getConfigurationQuerySlugSchema, getConfigurationQueryTeamIdSchema, getConfigurationResponseSchema, getConfigurationStatus200Schema, getConfigurationStatus400Schema, getConfigurationStatus401Schema, getConfigurationStatus403Schema, getConfigurationStatus404Schema, getConfigurationStatus410Schema, getConfigurationsQueryInstallationTypeSchema, getConfigurationsQueryIntegrationIdOrSlugSchema, getConfigurationsQuerySlugSchema, getConfigurationsQueryTeamIdSchema, getConfigurationsQueryViewSchema, getConfigurationsResponseSchema, getConfigurationsStatus200Schema, getConfigurationsStatus400Schema, getConfigurationsStatus401Schema, getConfigurationsStatus403Schema, getConfigurationsStatus410Schema, getConnectorTokenPathConnectorSchema, getConnectorTokenResponseSchema, getConnectorTokenStatus200Schema, getConnectorTokenStatus400Schema, getConnectorTokenStatus401Schema, getConnectorTokenStatus403Schema, getConnectorTokenStatus404Schema, getConnectorTokenStatus410Schema, getConnectorTokenStatus422Schema, getConnectorTokenStatus429Schema, getContactInfoSchemaPathDomainSchema, getContactInfoSchemaQueryTeamIdSchema, getContactInfoSchemaResponseSchema, getContactInfoSchemaStatus200Schema, getContactInfoSchemaStatus400Schema, getContactInfoSchemaStatus401Schema, getContactInfoSchemaStatus403Schema, getContactInfoSchemaStatus429Schema, getContactInfoSchemaStatus500Schema, getCustomEnvironmentPathEnvironmentSlugOrIdSchema, getCustomEnvironmentPathIdOrNameSchema, getCustomEnvironmentQuerySlugSchema, getCustomEnvironmentQueryTeamIdSchema, getCustomEnvironmentResponseSchema, getCustomEnvironmentStatus200Schema, getCustomEnvironmentStatus400Schema, getCustomEnvironmentStatus401Schema, getCustomEnvironmentStatus403Schema, getCustomEnvironmentStatus404Schema, getCustomEnvironmentStatus410Schema, getDeploymentCheckRunPathCheckRunIdSchema, getDeploymentCheckRunPathDeploymentIdSchema, getDeploymentCheckRunQuerySlugSchema, getDeploymentCheckRunQueryTeamIdSchema, getDeploymentCheckRunResponseSchema, getDeploymentCheckRunStatus200Schema, getDeploymentCheckRunStatus400Schema, getDeploymentCheckRunStatus401Schema, getDeploymentCheckRunStatus403Schema, getDeploymentCheckRunStatus404Schema, getDeploymentCheckRunStatus410Schema, getDeploymentCheckRunStatus500Schema, getDeploymentEventsPathIdOrUrlSchema, getDeploymentEventsQueryBuildsSchema, getDeploymentEventsQueryDelimiterSchema, getDeploymentEventsQueryDirectionSchema, getDeploymentEventsQueryFollowSchema, getDeploymentEventsQueryLimitSchema, getDeploymentEventsQueryNameSchema, getDeploymentEventsQuerySinceSchema, getDeploymentEventsQuerySlugSchema, getDeploymentEventsQueryStatusCodeSchema, getDeploymentEventsQueryTeamIdSchema, getDeploymentEventsQueryUntilSchema, getDeploymentEventsResponseSchema, getDeploymentEventsStatus200Schema, getDeploymentEventsStatus400Schema, getDeploymentEventsStatus401Schema, getDeploymentEventsStatus403Schema, getDeploymentEventsStatus410Schema, getDeploymentEventsStatus500Schema, getDeploymentFeatureFlagsPathDeploymentIdSchema, getDeploymentFeatureFlagsQuerySlugSchema, getDeploymentFeatureFlagsQueryTeamIdSchema, getDeploymentFeatureFlagsResponseSchema, getDeploymentFeatureFlagsStatus200Schema, getDeploymentFeatureFlagsStatus400Schema, getDeploymentFeatureFlagsStatus401Schema, getDeploymentFeatureFlagsStatus403Schema, getDeploymentFeatureFlagsStatus404Schema, getDeploymentFeatureFlagsStatus410Schema, getDeploymentFileContentsPathFileIdSchema, getDeploymentFileContentsPathIdSchema, getDeploymentFileContentsQueryPathSchema, getDeploymentFileContentsQuerySlugSchema, getDeploymentFileContentsQueryTeamIdSchema, getDeploymentFileContentsResponseSchema, getDeploymentFileContentsStatus400Schema, getDeploymentFileContentsStatus401Schema, getDeploymentFileContentsStatus403Schema, getDeploymentFileContentsStatus404Schema, getDeploymentFileContentsStatus410Schema, getDeploymentPathIdOrUrlSchema, getDeploymentQuerySlugSchema, getDeploymentQueryTeamIdSchema, getDeploymentQueryWithGitRepoInfoSchema, getDeploymentResponseSchema, getDeploymentStatus200Schema, getDeploymentStatus400Schema, getDeploymentStatus403Schema, getDeploymentStatus404Schema, getDeploymentStatus410Schema, getDeploymentStatus429Schema, getDeploymentsQueryAppSchema, getDeploymentsQueryBranchSchema, getDeploymentsQueryFromSchema, getDeploymentsQueryLimitSchema, getDeploymentsQueryProjectIdSchema, getDeploymentsQueryProjectIdsSchema, getDeploymentsQueryRollbackCandidateSchema, getDeploymentsQueryShaSchema, getDeploymentsQuerySinceSchema, getDeploymentsQuerySlugSchema, getDeploymentsQueryStateSchema, getDeploymentsQueryTargetSchema, getDeploymentsQueryTeamIdSchema, getDeploymentsQueryToSchema, getDeploymentsQueryUntilSchema, getDeploymentsQueryUsersSchema, getDeploymentsResponseSchema, getDeploymentsStatus200Schema, getDeploymentsStatus400Schema, getDeploymentsStatus401Schema, getDeploymentsStatus403Schema, getDeploymentsStatus404Schema, getDeploymentsStatus410Schema, getDeploymentsStatus422Schema, getDomainAuthCodePathDomainSchema, getDomainAuthCodeQueryTeamIdSchema, getDomainAuthCodeResponseSchema, getDomainAuthCodeStatus200Schema, getDomainAuthCodeStatus400Schema, getDomainAuthCodeStatus401Schema, getDomainAuthCodeStatus403Schema, getDomainAuthCodeStatus404Schema, getDomainAuthCodeStatus409Schema, getDomainAuthCodeStatus429Schema, getDomainAuthCodeStatus500Schema, getDomainAvailabilityPathDomainSchema, getDomainAvailabilityQueryTeamIdSchema, getDomainAvailabilityResponseSchema, getDomainAvailabilityStatus200Schema, getDomainAvailabilityStatus400Schema, getDomainAvailabilityStatus401Schema, getDomainAvailabilityStatus403Schema, getDomainAvailabilityStatus404Schema, getDomainAvailabilityStatus429Schema, getDomainAvailabilityStatus500Schema, getDomainConfigPathDomainSchema, getDomainConfigQueryProjectIdOrNameSchema, getDomainConfigQuerySlugSchema, getDomainConfigQueryStrictSchema, getDomainConfigQueryTeamIdSchema, getDomainConfigResponseSchema, getDomainConfigStatus200Schema, getDomainConfigStatus400Schema, getDomainConfigStatus401Schema, getDomainConfigStatus403Schema, getDomainConfigStatus410Schema, getDomainContactVerificationPathDomainSchema, getDomainContactVerificationQueryTeamIdSchema, getDomainContactVerificationResponseSchema, getDomainContactVerificationStatus200Schema, getDomainContactVerificationStatus400Schema, getDomainContactVerificationStatus401Schema, getDomainContactVerificationStatus403Schema, getDomainContactVerificationStatus404Schema, getDomainContactVerificationStatus429Schema, getDomainContactVerificationStatus500Schema, getDomainPathDomainSchema, getDomainPricePathDomainSchema, getDomainPriceQueryTeamIdSchema, getDomainPriceQueryYearsSchema, getDomainPriceResponseSchema, getDomainPriceStatus200Schema, getDomainPriceStatus400Schema, getDomainPriceStatus401Schema, getDomainPriceStatus403Schema, getDomainPriceStatus429Schema, getDomainPriceStatus500Schema, getDomainProjectDomainsPathDomainSchema, getDomainProjectDomainsQueryLimitSchema, getDomainProjectDomainsQuerySinceSchema, getDomainProjectDomainsQuerySlugSchema, getDomainProjectDomainsQueryTeamIdSchema, getDomainProjectDomainsQueryUntilSchema, getDomainProjectDomainsResponseSchema, getDomainProjectDomainsStatus200Schema, getDomainProjectDomainsStatus400Schema, getDomainProjectDomainsStatus401Schema, getDomainProjectDomainsStatus403Schema, getDomainProjectDomainsStatus404Schema, getDomainProjectDomainsStatus410Schema, getDomainQuerySlugSchema, getDomainQueryTeamIdSchema, getDomainResponseSchema, getDomainStatus200Schema, getDomainStatus400Schema, getDomainStatus401Schema, getDomainStatus403Schema, getDomainStatus404Schema, getDomainStatus410Schema, getDomainTransferInPathDomainSchema, getDomainTransferInQueryTeamIdSchema, getDomainTransferInResponseSchema, getDomainTransferInStatus200Schema, getDomainTransferInStatus400Schema, getDomainTransferInStatus401Schema, getDomainTransferInStatus403Schema, getDomainTransferInStatus404Schema, getDomainTransferInStatus429Schema, getDomainTransferInStatus500Schema, getDomainVerificationRecordPathDomainSchema, getDomainVerificationRecordQuerySlugSchema, getDomainVerificationRecordQueryTeamIdSchema, getDomainVerificationRecordResponseSchema, getDomainVerificationRecordStatus200Schema, getDomainVerificationRecordStatus400Schema, getDomainVerificationRecordStatus401Schema, getDomainVerificationRecordStatus403Schema, getDomainVerificationRecordStatus404Schema, getDomainVerificationRecordStatus410Schema, getDomainsQueryLimitSchema, getDomainsQuerySinceSchema, getDomainsQuerySlugSchema, getDomainsQueryTeamIdSchema, getDomainsQueryUntilSchema, getDomainsRecordsByRecordIdPathRecordIdSchema, getDomainsRecordsByRecordIdResponseSchema, getDomainsRecordsByRecordIdStatus200Schema, getDomainsRecordsByRecordIdStatus400Schema, getDomainsRecordsByRecordIdStatus401Schema, getDomainsRecordsByRecordIdStatus403Schema, getDomainsRecordsByRecordIdStatus404Schema, getDomainsRecordsByRecordIdStatus410Schema, getDomainsResponseSchema, getDomainsStatus200Schema, getDomainsStatus400Schema, getDomainsStatus401Schema, getDomainsStatus403Schema, getDomainsStatus409Schema, getDomainsStatus410Schema, getDrainPathIdSchema, getDrainQuerySlugSchema, getDrainQueryTeamIdSchema, getDrainResponseSchema, getDrainStatus200Schema, getDrainStatus400Schema, getDrainStatus401Schema, getDrainStatus403Schema, getDrainStatus404Schema, getDrainStatus410Schema, getDrainsQueryIncludeMetadataSchema, getDrainsQueryProjectIdSchema, getDrainsQuerySlugSchema, getDrainsQueryTeamIdSchema, getDrainsResponseSchema, getDrainsStatus200Schema, getDrainsStatus400Schema, getDrainsStatus401Schema, getDrainsStatus403Schema, getDrainsStatus404Schema, getDrainsStatus410Schema, getEdgeConfigBackupPathEdgeConfigBackupVersionIdSchema, getEdgeConfigBackupPathEdgeConfigIdSchema, getEdgeConfigBackupQuerySlugSchema, getEdgeConfigBackupQueryTeamIdSchema, getEdgeConfigBackupResponseSchema, getEdgeConfigBackupStatus200Schema, getEdgeConfigBackupStatus400Schema, getEdgeConfigBackupStatus401Schema, getEdgeConfigBackupStatus403Schema, getEdgeConfigBackupStatus404Schema, getEdgeConfigBackupStatus410Schema, getEdgeConfigBackupsPathEdgeConfigIdSchema, getEdgeConfigBackupsQueryLimitSchema, getEdgeConfigBackupsQueryMetadataSchema, getEdgeConfigBackupsQueryNextSchema, getEdgeConfigBackupsQuerySlugSchema, getEdgeConfigBackupsQueryTeamIdSchema, getEdgeConfigBackupsResponseSchema, getEdgeConfigBackupsStatus200Schema, getEdgeConfigBackupsStatus400Schema, getEdgeConfigBackupsStatus401Schema, getEdgeConfigBackupsStatus403Schema, getEdgeConfigBackupsStatus404Schema, getEdgeConfigBackupsStatus410Schema, getEdgeConfigItemPathEdgeConfigIdSchema, getEdgeConfigItemPathEdgeConfigItemKeySchema, getEdgeConfigItemQuerySlugSchema, getEdgeConfigItemQueryTeamIdSchema, getEdgeConfigItemResponseSchema, getEdgeConfigItemStatus200Schema, getEdgeConfigItemStatus400Schema, getEdgeConfigItemStatus401Schema, getEdgeConfigItemStatus403Schema, getEdgeConfigItemStatus404Schema, getEdgeConfigItemStatus410Schema, getEdgeConfigItemsPathEdgeConfigIdSchema, getEdgeConfigItemsQuerySlugSchema, getEdgeConfigItemsQueryTeamIdSchema, getEdgeConfigItemsResponseSchema, getEdgeConfigItemsStatus200Schema, getEdgeConfigItemsStatus400Schema, getEdgeConfigItemsStatus401Schema, getEdgeConfigItemsStatus403Schema, getEdgeConfigItemsStatus404Schema, getEdgeConfigItemsStatus410Schema, getEdgeConfigPathEdgeConfigIdSchema, getEdgeConfigQuerySlugSchema, getEdgeConfigQueryTeamIdSchema, getEdgeConfigResponseSchema, getEdgeConfigSchemaPathEdgeConfigIdSchema, getEdgeConfigSchemaQuerySlugSchema, getEdgeConfigSchemaQueryTeamIdSchema, getEdgeConfigSchemaResponseSchema, getEdgeConfigSchemaStatus200Schema, getEdgeConfigSchemaStatus400Schema, getEdgeConfigSchemaStatus401Schema, getEdgeConfigSchemaStatus403Schema, getEdgeConfigSchemaStatus404Schema, getEdgeConfigSchemaStatus410Schema, getEdgeConfigStatus200Schema, getEdgeConfigStatus400Schema, getEdgeConfigStatus401Schema, getEdgeConfigStatus403Schema, getEdgeConfigStatus404Schema, getEdgeConfigStatus410Schema, getEdgeConfigTokenPathEdgeConfigIdSchema, getEdgeConfigTokenPathTokenSchema, getEdgeConfigTokenQuerySlugSchema, getEdgeConfigTokenQueryTeamIdSchema, getEdgeConfigTokenResponseSchema, getEdgeConfigTokenStatus200Schema, getEdgeConfigTokenStatus400Schema, getEdgeConfigTokenStatus401Schema, getEdgeConfigTokenStatus403Schema, getEdgeConfigTokenStatus404Schema, getEdgeConfigTokenStatus410Schema, getEdgeConfigTokensPathEdgeConfigIdSchema, getEdgeConfigTokensQuerySlugSchema, getEdgeConfigTokensQueryTeamIdSchema, getEdgeConfigTokensResponseSchema, getEdgeConfigTokensStatus200Schema, getEdgeConfigTokensStatus400Schema, getEdgeConfigTokensStatus401Schema, getEdgeConfigTokensStatus403Schema, getEdgeConfigTokensStatus404Schema, getEdgeConfigTokensStatus410Schema, getEdgeConfigsQuerySlugSchema, getEdgeConfigsQueryTeamIdSchema, getEdgeConfigsResponseSchema, getEdgeConfigsStatus200Schema, getEdgeConfigsStatus400Schema, getEdgeConfigsStatus401Schema, getEdgeConfigsStatus403Schema, getEdgeConfigsStatus410Schema, getFirewallConfigPathConfigVersionSchema, getFirewallConfigQueryProjectIdSchema, getFirewallConfigQuerySlugSchema, getFirewallConfigQueryTeamIdSchema, getFirewallConfigResponseSchema, getFirewallConfigStatus200Schema, getFirewallConfigStatus400Schema, getFirewallConfigStatus401Schema, getFirewallConfigStatus403Schema, getFirewallConfigStatus404Schema, getFirewallConfigStatus410Schema, getFlagPathFlagIdOrSlugSchema, getFlagPathProjectIdOrNameSchema, getFlagQueryIfMatchSchema, getFlagQuerySlugSchema, getFlagQueryTeamIdSchema, getFlagQueryWithMetadataSchema, getFlagResponseSchema, getFlagSegmentPathProjectIdOrNameSchema, getFlagSegmentPathSegmentIdOrSlugSchema, getFlagSegmentQuerySlugSchema, getFlagSegmentQueryTeamIdSchema, getFlagSegmentQueryWithMetadataSchema, getFlagSegmentResponseSchema, getFlagSegmentStatus200Schema, getFlagSegmentStatus400Schema, getFlagSegmentStatus401Schema, getFlagSegmentStatus402Schema, getFlagSegmentStatus403Schema, getFlagSegmentStatus404Schema, getFlagSegmentStatus410Schema, getFlagSettingsPathProjectIdOrNameSchema, getFlagSettingsQuerySlugSchema, getFlagSettingsQueryTeamIdSchema, getFlagSettingsResponseSchema, getFlagSettingsStatus200Schema, getFlagSettingsStatus400Schema, getFlagSettingsStatus401Schema, getFlagSettingsStatus402Schema, getFlagSettingsStatus403Schema, getFlagSettingsStatus404Schema, getFlagSettingsStatus410Schema, getFlagStatus200Schema, getFlagStatus304Schema, getFlagStatus400Schema, getFlagStatus401Schema, getFlagStatus402Schema, getFlagStatus403Schema, getFlagStatus404Schema, getFlagStatus410Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus304Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema, getIntegrationLogDrainsQuerySlugSchema, getIntegrationLogDrainsQueryTeamIdSchema, getIntegrationLogDrainsResponseSchema, getIntegrationLogDrainsStatus200Schema, getIntegrationLogDrainsStatus400Schema, getIntegrationLogDrainsStatus401Schema, getIntegrationLogDrainsStatus403Schema, getIntegrationLogDrainsStatus410Schema, getIntegrationResourcePathIntegrationConfigurationIdSchema, getIntegrationResourcePathResourceIdSchema, getIntegrationResourceResponseSchema, getIntegrationResourceStatus200Schema, getIntegrationResourceStatus400Schema, getIntegrationResourceStatus401Schema, getIntegrationResourceStatus403Schema, getIntegrationResourceStatus404Schema, getIntegrationResourceStatus410Schema, getIntegrationResourcesPathIntegrationConfigurationIdSchema, getIntegrationResourcesResponseSchema, getIntegrationResourcesStatus200Schema, getIntegrationResourcesStatus400Schema, getIntegrationResourcesStatus401Schema, getIntegrationResourcesStatus403Schema, getIntegrationResourcesStatus404Schema, getIntegrationResourcesStatus410Schema, getInvoicePathIntegrationConfigurationIdSchema, getInvoicePathInvoiceIdSchema, getInvoiceResponseSchema, getInvoiceStatus200Schema, getInvoiceStatus400Schema, getInvoiceStatus401Schema, getInvoiceStatus403Schema, getInvoiceStatus404Schema, getInvoiceStatus410Schema, getInvoiceStatus429Schema, getMemberPathIntegrationConfigurationIdSchema, getMemberPathMemberIdSchema, getMemberResponseSchema, getMemberStatus200Schema, getMemberStatus400Schema, getMemberStatus401Schema, getMemberStatus403Schema, getMemberStatus404Schema, getMemberStatus410Schema, getMicrofrontendsConfigForProjectPathProjectIdOrNameSchema, getMicrofrontendsConfigForProjectQuerySlugSchema, getMicrofrontendsConfigForProjectQueryTeamIdSchema, getMicrofrontendsConfigForProjectResponseSchema, getMicrofrontendsConfigForProjectStatus200Schema, getMicrofrontendsConfigForProjectStatus400Schema, getMicrofrontendsConfigForProjectStatus401Schema, getMicrofrontendsConfigForProjectStatus403Schema, getMicrofrontendsConfigForProjectStatus404Schema, getMicrofrontendsConfigForProjectStatus410Schema, getMicrofrontendsConfigForProjectStatus500Schema, getMicrofrontendsConfigPathDeploymentIdSchema, getMicrofrontendsConfigQuerySlugSchema, getMicrofrontendsConfigQueryTeamIdSchema, getMicrofrontendsConfigResponseSchema, getMicrofrontendsConfigStatus200Schema, getMicrofrontendsConfigStatus400Schema, getMicrofrontendsConfigStatus401Schema, getMicrofrontendsConfigStatus403Schema, getMicrofrontendsConfigStatus404Schema, getMicrofrontendsConfigStatus410Schema, getMicrofrontendsConfigStatus500Schema, getMicrofrontendsGroupsQuerySlugSchema, getMicrofrontendsGroupsQueryTeamIdSchema, getMicrofrontendsGroupsResponseSchema, getMicrofrontendsGroupsStatus200Schema, getMicrofrontendsGroupsStatus400Schema, getMicrofrontendsGroupsStatus401Schema, getMicrofrontendsGroupsStatus403Schema, getMicrofrontendsGroupsStatus410Schema, getMicrofrontendsGroupsStatus500Schema, getMicrofrontendsInGroupPathGroupIdSchema, getMicrofrontendsInGroupQuerySlugSchema, getMicrofrontendsInGroupQueryTeamIdSchema, getMicrofrontendsInGroupResponseSchema, getMicrofrontendsInGroupStatus200Schema, getMicrofrontendsInGroupStatus400Schema, getMicrofrontendsInGroupStatus401Schema, getMicrofrontendsInGroupStatus403Schema, getMicrofrontendsInGroupStatus410Schema, getNamedSandboxPathNameSchema, getNamedSandboxQueryProjectIdSchema, getNamedSandboxQueryResumeSchema, getNamedSandboxQuerySlugSchema, getNamedSandboxQueryTeamIdSchema, getNamedSandboxResponseSchema, getNamedSandboxStatus200Schema, getNamedSandboxStatus400Schema, getNamedSandboxStatus401Schema, getNamedSandboxStatus402Schema, getNamedSandboxStatus403Schema, getNamedSandboxStatus404Schema, getNamedSandboxStatus409Schema, getNamedSandboxStatus410Schema, getNamedSandboxStatus429Schema, getNamedSandboxStatus500Schema, getObservabilityConfigurationProjectsQuerySlugSchema, getObservabilityConfigurationProjectsQueryTeamIdSchema, getObservabilityConfigurationProjectsResponseSchema, getObservabilityConfigurationProjectsStatus200Schema, getObservabilityConfigurationProjectsStatus400Schema, getObservabilityConfigurationProjectsStatus401Schema, getObservabilityConfigurationProjectsStatus403Schema, getObservabilityConfigurationProjectsStatus404Schema, getObservabilityConfigurationProjectsStatus410Schema, getObservabilitySchemaByMetricIdPathMetricIdSchema, getObservabilitySchemaByMetricIdResponseSchema, getObservabilitySchemaByMetricIdStatus200Schema, getObservabilitySchemaByMetricIdStatus400Schema, getObservabilitySchemaByMetricIdStatus401Schema, getObservabilitySchemaByMetricIdStatus403Schema, getObservabilitySchemaByMetricIdStatus410Schema, getObservabilitySchemaResponseSchema, getObservabilitySchemaStatus200Schema, getObservabilitySchemaStatus400Schema, getObservabilitySchemaStatus401Schema, getObservabilitySchemaStatus403Schema, getObservabilitySchemaStatus410Schema, getOrCreateDrivePathNameSchema, getOrCreateDriveQuerySlugSchema, getOrCreateDriveQueryTeamIdSchema, getOrCreateDriveResponseSchema, getOrCreateDriveStatus200Schema, getOrCreateDriveStatus201Schema, getOrCreateDriveStatus400Schema, getOrCreateDriveStatus401Schema, getOrCreateDriveStatus402Schema, getOrCreateDriveStatus403Schema, getOrCreateDriveStatus404Schema, getOrCreateDriveStatus409Schema, getOrCreateDriveStatus410Schema, getOrCreateDriveStatus429Schema, getOrderPathOrderIdSchema, getOrderQueryTeamIdSchema, getOrderResponseSchema, getOrderStatus200Schema, getOrderStatus400Schema, getOrderStatus401Schema, getOrderStatus403Schema, getOrderStatus404Schema, getOrderStatus429Schema, getOrderStatus500Schema, getProjectCheckPathCheckIdSchema, getProjectCheckPathProjectIdOrNameSchema, getProjectCheckQuerySlugSchema, getProjectCheckQueryTeamIdSchema, getProjectCheckResponseSchema, getProjectCheckStatus200Schema, getProjectCheckStatus400Schema, getProjectCheckStatus401Schema, getProjectCheckStatus403Schema, getProjectCheckStatus410Schema, getProjectCheckStatus500Schema, getProjectDomainPathDomainSchema, getProjectDomainPathIdOrNameSchema, getProjectDomainQuerySlugSchema, getProjectDomainQueryTeamIdSchema, getProjectDomainResponseSchema, getProjectDomainStatus200Schema, getProjectDomainStatus400Schema, getProjectDomainStatus401Schema, getProjectDomainStatus403Schema, getProjectDomainStatus410Schema, getProjectDomainsPathIdOrNameSchema, getProjectDomainsQueryCustomEnvironmentIdSchema, getProjectDomainsQueryGitBranchSchema, getProjectDomainsQueryLimitSchema, getProjectDomainsQueryOrderSchema, getProjectDomainsQueryProductionSchema, getProjectDomainsQueryRedirectSchema, getProjectDomainsQueryRedirectsSchema, getProjectDomainsQuerySinceSchema, getProjectDomainsQuerySlugSchema, getProjectDomainsQueryTargetSchema, getProjectDomainsQueryTeamIdSchema, getProjectDomainsQueryUntilSchema, getProjectDomainsQueryVerifiedSchema, getProjectDomainsResponseSchema, getProjectDomainsStatus200Schema, getProjectDomainsStatus400Schema, getProjectDomainsStatus401Schema, getProjectDomainsStatus403Schema, getProjectDomainsStatus410Schema, getProjectEnvPathIdOrNameSchema, getProjectEnvPathIdSchema, getProjectEnvQuerySlugSchema, getProjectEnvQueryTeamIdSchema, getProjectEnvResponseSchema, getProjectEnvStatus200Schema, getProjectEnvStatus400Schema, getProjectEnvStatus401Schema, getProjectEnvStatus403Schema, getProjectEnvStatus410Schema, getProjectMembersPathIdOrNameSchema, getProjectMembersQueryLimitSchema, getProjectMembersQuerySearchSchema, getProjectMembersQuerySinceSchema, getProjectMembersQuerySlugSchema, getProjectMembersQueryTeamIdSchema, getProjectMembersQueryUntilSchema, getProjectMembersResponseSchema, getProjectMembersStatus200Schema, getProjectMembersStatus400Schema, getProjectMembersStatus401Schema, getProjectMembersStatus403Schema, getProjectMembersStatus410Schema, getProjectPathIdOrNameSchema, getProjectQuerySlugSchema, getProjectQueryTeamIdSchema, getProjectResponseSchema, getProjectStatus200Schema, getProjectStatus400Schema, getProjectStatus401Schema, getProjectStatus403Schema, getProjectStatus410Schema, getProjectTokenPathIdOrNameSchema, getProjectTokenQuerySlugSchema, getProjectTokenQueryTeamIdSchema, getProjectTokenResponseSchema, getProjectTokenStatus200Schema, getProjectTokenStatus400Schema, getProjectTokenStatus401Schema, getProjectTokenStatus403Schema, getProjectTokenStatus404Schema, getProjectTokenStatus410Schema, getProjectTraceQueryProjectIdSchema, getProjectTraceQueryRequestIdSchema, getProjectTraceQuerySlugSchema, getProjectTraceQueryTeamIdSchema, getProjectTraceResponseSchema, getProjectTraceStatus200Schema, getProjectTraceStatus400Schema, getProjectTraceStatus401Schema, getProjectTraceStatus403Schema, getProjectTraceStatus404Schema, getProjectTraceStatus410Schema, getProjectsByIdOrNameCustomEnvironmentsPathIdOrNameSchema, getProjectsByIdOrNameCustomEnvironmentsQueryGitBranchSchema, getProjectsByIdOrNameCustomEnvironmentsQuerySlugSchema, getProjectsByIdOrNameCustomEnvironmentsQueryTeamIdSchema, getProjectsByIdOrNameCustomEnvironmentsResponseSchema, getProjectsByIdOrNameCustomEnvironmentsStatus200Schema, getProjectsByIdOrNameCustomEnvironmentsStatus400Schema, getProjectsByIdOrNameCustomEnvironmentsStatus401Schema, getProjectsByIdOrNameCustomEnvironmentsStatus403Schema, getProjectsByIdOrNameCustomEnvironmentsStatus410Schema, getProjectsQueryBuildMachineTypesSchema, getProjectsQueryBuildQueueConfigurationSchema, getProjectsQueryDeprecatedSchema, getProjectsQueryEdgeConfigIdSchema, getProjectsQueryEdgeConfigTokenIdSchema, getProjectsQueryElasticConcurrencyEnabledSchema, getProjectsQueryExcludeReposSchema, getProjectsQueryFromSchema, getProjectsQueryGitForkProtectionSchema, getProjectsQueryLimitSchema, getProjectsQueryRepoIdSchema, getProjectsQueryRepoSchema, getProjectsQueryRepoUrlSchema, getProjectsQuerySearchSchema, getProjectsQuerySlugSchema, getProjectsQueryStaticIpsEnabledSchema, getProjectsQueryTeamIdSchema, getProjectsResponseSchema, getProjectsStatus200Schema, getProjectsStatus400Schema, getProjectsStatus401Schema, getProjectsStatus403Schema, getProjectsStatus410Schema, getRecordsPathDomainSchema, getRecordsQueryLimitSchema, getRecordsQuerySinceSchema, getRecordsQuerySlugSchema, getRecordsQueryTeamIdSchema, getRecordsQueryUntilSchema, getRecordsResponseSchema, getRecordsStatus200Schema, getRecordsStatus400Schema, getRecordsStatus401Schema, getRecordsStatus403Schema, getRecordsStatus404Schema, getRecordsStatus410Schema, getRedirectsQueryDiffSchema, getRedirectsQueryPageSchema, getRedirectsQueryPerPageSchema, getRedirectsQueryProjectIdSchema, getRedirectsQueryQSchema, getRedirectsQuerySlugSchema, getRedirectsQuerySortBySchema, getRedirectsQuerySortOrderSchema, getRedirectsQueryTeamIdSchema, getRedirectsQueryVersionIdSchema, getRedirectsResponseSchema, getRedirectsStatus200Schema, getRedirectsStatus400Schema, getRedirectsStatus401Schema, getRedirectsStatus403Schema, getRedirectsStatus404Schema, getRedirectsStatus410Schema, getRepositoryImagePathIdOrNameSchema, getRepositoryImagePathImageIdOrDigestSchema, getRepositoryImageQueryProjectIdSchema, getRepositoryImageQuerySlugSchema, getRepositoryImageQueryTeamIdSchema, getRepositoryImageResponseSchema, getRepositoryImageStatus200Schema, getRepositoryImageStatus400Schema, getRepositoryImageStatus401Schema, getRepositoryImageStatus403Schema, getRepositoryImageStatus404Schema, getRepositoryImageStatus410Schema, getRepositoryPathIdOrNameSchema, getRepositoryQueryProjectIdSchema, getRepositoryQuerySlugSchema, getRepositoryQueryTeamIdSchema, getRepositoryResponseSchema, getRepositoryStatus200Schema, getRepositoryStatus400Schema, getRepositoryStatus401Schema, getRepositoryStatus403Schema, getRepositoryStatus404Schema, getRepositoryStatus410Schema, getRepositoryTagPathIdOrNameSchema, getRepositoryTagPathTagSchema, getRepositoryTagQueryProjectIdSchema, getRepositoryTagQuerySlugSchema, getRepositoryTagQueryTeamIdSchema, getRepositoryTagResponseSchema, getRepositoryTagStatus200Schema, getRepositoryTagStatus400Schema, getRepositoryTagStatus401Schema, getRepositoryTagStatus403Schema, getRepositoryTagStatus404Schema, getRepositoryTagStatus410Schema, getRollingReleaseBillingStatusPathIdOrNameSchema, getRollingReleaseBillingStatusQuerySlugSchema, getRollingReleaseBillingStatusQueryTeamIdSchema, getRollingReleaseBillingStatusResponseSchema, getRollingReleaseBillingStatusStatus200Schema, getRollingReleaseBillingStatusStatus400Schema, getRollingReleaseBillingStatusStatus401Schema, getRollingReleaseBillingStatusStatus403Schema, getRollingReleaseBillingStatusStatus404Schema, getRollingReleaseBillingStatusStatus410Schema, getRollingReleaseConfigPathIdOrNameSchema, getRollingReleaseConfigQuerySlugSchema, getRollingReleaseConfigQueryTeamIdSchema, getRollingReleaseConfigResponseSchema, getRollingReleaseConfigStatus200Schema, getRollingReleaseConfigStatus400Schema, getRollingReleaseConfigStatus401Schema, getRollingReleaseConfigStatus403Schema, getRollingReleaseConfigStatus404Schema, getRollingReleaseConfigStatus410Schema, getRollingReleasePathIdOrNameSchema, getRollingReleaseQuerySlugSchema, getRollingReleaseQueryStateSchema, getRollingReleaseQueryTeamIdSchema, getRollingReleaseResponseSchema, getRollingReleaseStatus200Schema, getRollingReleaseStatus400Schema, getRollingReleaseStatus401Schema, getRollingReleaseStatus403Schema, getRollingReleaseStatus404Schema, getRollingReleaseStatus410Schema, getRootResponseSchema, getRootStatus200Schema, getRootStatus400Schema, getRootStatus401Schema, getRootStatus402Schema, getRootStatus403Schema, getRootStatus404Schema, getRootStatus410Schema, getRouteVersionsPathProjectIdSchema, getRouteVersionsQuerySlugSchema, getRouteVersionsQueryTeamIdSchema, getRouteVersionsResponseSchema, getRouteVersionsStatus200Schema, getRouteVersionsStatus400Schema, getRouteVersionsStatus401Schema, getRouteVersionsStatus403Schema, getRouteVersionsStatus410Schema, getRoutesPathProjectIdSchema, getRoutesQueryDiffSchema, getRoutesQueryFilterSchema, getRoutesQueryQSchema, getRoutesQuerySlugSchema, getRoutesQueryTeamIdSchema, getRoutesQueryVersionIdSchema, getRoutesResponseSchema, getRoutesStatus200Schema, getRoutesStatus400Schema, getRoutesStatus401Schema, getRoutesStatus403Schema, getRoutesStatus404Schema, getRoutesStatus410Schema, getRuntimeLogsPathDeploymentIdSchema, getRuntimeLogsPathProjectIdSchema, getRuntimeLogsQuerySlugSchema, getRuntimeLogsQueryTeamIdSchema, getRuntimeLogsResponseSchema, getRuntimeLogsStatus200Schema, getRuntimeLogsStatus400Schema, getRuntimeLogsStatus401Schema, getRuntimeLogsStatus403Schema, getRuntimeLogsStatus410Schema, getSdkKeysPathProjectIdOrNameSchema, getSdkKeysQuerySlugSchema, getSdkKeysQueryTeamIdSchema, getSdkKeysResponseSchema, getSdkKeysStatus200Schema, getSdkKeysStatus400Schema, getSdkKeysStatus401Schema, getSdkKeysStatus402Schema, getSdkKeysStatus403Schema, getSdkKeysStatus404Schema, getSdkKeysStatus410Schema, getSecurityFirewallConfigResponseSchema, getSecurityFirewallConfigStatus200Schema, getSecurityFirewallConfigStatus400Schema, getSecurityFirewallConfigStatus401Schema, getSecurityFirewallConfigStatus403Schema, getSecurityFirewallConfigStatus404Schema, getSecurityFirewallConfigStatus410Schema, getSecurityFirewallEventsQueryEndTimestampSchema, getSecurityFirewallEventsQueryHostsSchema, getSecurityFirewallEventsQueryProjectIdSchema, getSecurityFirewallEventsQueryStartTimestampSchema, getSecurityFirewallEventsResponseSchema, getSecurityFirewallEventsStatus200Schema, getSecurityFirewallEventsStatus400Schema, getSecurityFirewallEventsStatus401Schema, getSecurityFirewallEventsStatus403Schema, getSecurityFirewallEventsStatus404Schema, getSecurityFirewallEventsStatus410Schema, getSecurityFirewallEventsStatus500Schema, getSessionCommandLogsPathCmdIdSchema, getSessionCommandLogsPathSessionIdSchema, getSessionCommandLogsQuerySlugSchema, getSessionCommandLogsQueryTeamIdSchema, getSessionCommandLogsResponseSchema, getSessionCommandLogsStatus200Schema, getSessionCommandLogsStatus400Schema, getSessionCommandLogsStatus401Schema, getSessionCommandLogsStatus403Schema, getSessionCommandLogsStatus404Schema, getSessionCommandLogsStatus410Schema, getSessionCommandLogsStatus422Schema, getSessionCommandLogsStatus429Schema, getSessionCommandLogsStatus500Schema, getSessionCommandPathCmdIdSchema, getSessionCommandPathSessionIdSchema, getSessionCommandQuerySlugSchema, getSessionCommandQueryTeamIdSchema, getSessionCommandQueryWaitSchema, getSessionCommandResponseSchema, getSessionCommandStatus200Schema, getSessionCommandStatus400Schema, getSessionCommandStatus401Schema, getSessionCommandStatus403Schema, getSessionCommandStatus404Schema, getSessionCommandStatus410Schema, getSessionCommandStatus422Schema, getSessionCommandStatus429Schema, getSessionCommandStatus500Schema, getSessionPathSessionIdSchema, getSessionQuerySlugSchema, getSessionQueryTeamIdSchema, getSessionResponseSchema, getSessionSnapshotPathSnapshotIdSchema, getSessionSnapshotQuerySlugSchema, getSessionSnapshotQueryTeamIdSchema, getSessionSnapshotResponseSchema, getSessionSnapshotStatus200Schema, getSessionSnapshotStatus400Schema, getSessionSnapshotStatus401Schema, getSessionSnapshotStatus403Schema, getSessionSnapshotStatus404Schema, getSessionSnapshotStatus410Schema, getSessionSnapshotStatus429Schema, getSessionStatus200Schema, getSessionStatus400Schema, getSessionStatus401Schema, getSessionStatus403Schema, getSessionStatus404Schema, getSessionStatus410Schema, getSessionStatus429Schema, getSessionStatus500Schema, getSharedEnvVarPathIdSchema, getSharedEnvVarQuerySlugSchema, getSharedEnvVarQueryTeamIdSchema, getSharedEnvVarResponseSchema, getSharedEnvVarStatus200Schema, getSharedEnvVarStatus400Schema, getSharedEnvVarStatus401Schema, getSharedEnvVarStatus403Schema, getSharedEnvVarStatus410Schema, getStorageStoresByIdPathIdSchema, getStorageStoresByIdQueryincludeGuidesSchema, getStorageStoresByIdQueryskipMetadataSchema, getStorageStoresByIdResponseSchema, getStorageStoresByIdStatus200Schema, getStorageStoresByIdStatus400Schema, getStorageStoresByIdStatus401Schema, getStorageStoresByIdStatus403Schema, getStorageStoresByIdStatus404Schema, getStorageStoresByIdStatus410Schema, getSupportedTldsQueryTeamIdSchema, getSupportedTldsResponseSchema, getSupportedTldsStatus200Schema, getSupportedTldsStatus400Schema, getSupportedTldsStatus401Schema, getSupportedTldsStatus403Schema, getSupportedTldsStatus429Schema, getSupportedTldsStatus500Schema, getTeamAccessRequestPathTeamIdSchema, getTeamAccessRequestPathUserIdSchema, getTeamAccessRequestResponseSchema, getTeamAccessRequestStatus200Schema, getTeamAccessRequestStatus400Schema, getTeamAccessRequestStatus401Schema, getTeamAccessRequestStatus403Schema, getTeamAccessRequestStatus404Schema, getTeamAccessRequestStatus410Schema, getTeamMembersPathTeamIdSchema, getTeamMembersQueryEligibleMembersForProjectIdSchema, getTeamMembersQueryExcludeProjectSchema, getTeamMembersQueryLimitSchema, getTeamMembersQueryRoleSchema, getTeamMembersQuerySearchSchema, getTeamMembersQuerySinceSchema, getTeamMembersQuerySlugSchema, getTeamMembersQueryUntilSchema, getTeamMembersResponseSchema, getTeamMembersStatus200Schema, getTeamMembersStatus400Schema, getTeamMembersStatus401Schema, getTeamMembersStatus403Schema, getTeamMembersStatus404Schema, getTeamMembersStatus410Schema, getTeamPathTeamIdSchema, getTeamQuerySlugSchema, getTeamResponseSchema, getTeamStatus200Schema, getTeamStatus400Schema, getTeamStatus401Schema, getTeamStatus403Schema, getTeamStatus404Schema, getTeamStatus410Schema, getTeamsQueryLimitSchema, getTeamsQuerySinceSchema, getTeamsQueryUntilSchema, getTeamsResponseSchema, getTeamsStatus200Schema, getTeamsStatus400Schema, getTeamsStatus401Schema, getTeamsStatus403Schema, getTeamsStatus410Schema, getTeamsStatus500Schema, getTldPathTldSchema, getTldPricePathTldSchema, getTldPriceQueryTeamIdSchema, getTldPriceQueryYearsSchema, getTldPriceResponseSchema, getTldPriceStatus200Schema, getTldPriceStatus400Schema, getTldPriceStatus401Schema, getTldPriceStatus403Schema, getTldPriceStatus429Schema, getTldPriceStatus500Schema, getTldQueryTeamIdSchema, getTldResponseSchema, getTldStatus200Schema, getTldStatus400Schema, getTldStatus401Schema, getTldStatus403Schema, getTldStatus429Schema, getTldStatus500Schema, getVersionsQueryProjectIdSchema, getVersionsQuerySlugSchema, getVersionsQueryTeamIdSchema, getVersionsResponseSchema, getVersionsStatus200Schema, getVersionsStatus400Schema, getVersionsStatus401Schema, getVersionsStatus403Schema, getVersionsStatus410Schema, getVersionsStatus500Schema, getWebhookPathIdSchema, getWebhookQuerySlugSchema, getWebhookQueryTeamIdSchema, getWebhookResponseSchema, getWebhookStatus200Schema, getWebhookStatus400Schema, getWebhookStatus401Schema, getWebhookStatus403Schema, getWebhookStatus410Schema, getWebhooksQueryProjectIdSchema, getWebhooksQuerySlugSchema, getWebhooksQueryTeamIdSchema, getWebhooksResponseSchema, getWebhooksStatus200Schema, getWebhooksStatus400Schema, getWebhooksStatus401Schema, getWebhooksStatus403Schema, getWebhooksStatus410Schema, gitNamespacesQueryHostSchema, gitNamespacesQueryProviderSchema, gitNamespacesQueryViewerMetadataSchema, gitNamespacesResponseSchema, gitNamespacesStatus200Schema, gitNamespacesStatus400Schema, gitNamespacesStatus401Schema, gitNamespacesStatus403Schema, gitNamespacesStatus404Schema, gitNamespacesStatus410Schema, gitNamespacesStatus429Schema, gitNamespacesStatus500Schema, globalConfigItemSchema, globalConfigItemValueSchema, globalConfigTokenSchema, httpApiDecodeErrorSchema, importConnectorTokensPathConnectorSchema, importConnectorTokensResponseSchema, importConnectorTokensStatus200Schema, importConnectorTokensStatus400Schema, importConnectorTokensStatus401Schema, importConnectorTokensStatus403Schema, importConnectorTokensStatus404Schema, importConnectorTokensStatus410Schema, importConnectorTokensStatus422Schema, importResourcePathIntegrationConfigurationIdSchema, importResourcePathResourceIdSchema, importResourceResponseSchema, importResourceStatus200Schema, importResourceStatus400Schema, importResourceStatus401Schema, importResourceStatus403Schema, importResourceStatus404Schema, importResourceStatus409Schema, importResourceStatus410Schema, importResourceStatus422Schema, importResourceStatus429Schema, internalServerErrorSchema, invalidAdditionalContactInfoSchema, invalidateBySrcImagesQueryProjectIdOrNameSchema, invalidateBySrcImagesQuerySlugSchema, invalidateBySrcImagesQueryTeamIdSchema, invalidateBySrcImagesResponseSchema, invalidateBySrcImagesStatus200Schema, invalidateBySrcImagesStatus400Schema, invalidateBySrcImagesStatus401Schema, invalidateBySrcImagesStatus402Schema, invalidateBySrcImagesStatus403Schema, invalidateBySrcImagesStatus404Schema, invalidateBySrcImagesStatus410Schema, invalidateByTagsQueryProjectIdOrNameSchema, invalidateByTagsQuerySlugSchema, invalidateByTagsQueryTeamIdSchema, invalidateByTagsResponseSchema, invalidateByTagsStatus200Schema, invalidateByTagsStatus400Schema, invalidateByTagsStatus401Schema, invalidateByTagsStatus403Schema, invalidateByTagsStatus404Schema, invalidateByTagsStatus410Schema, inviteUserToTeamPathTeamIdSchema, inviteUserToTeamQuerySlugSchema, inviteUserToTeamResponseSchema, inviteUserToTeamStatus200Schema, inviteUserToTeamStatus400Schema, inviteUserToTeamStatus401Schema, inviteUserToTeamStatus403Schema, inviteUserToTeamStatus410Schema, inviteUserToTeamStatus503Schema, invitedTeamMemberSchema, issueCertQuerySlugSchema, issueCertQueryTeamIdSchema, issueCertResponseSchema, issueCertStatus200Schema, issueCertStatus400Schema, issueCertStatus401Schema, issueCertStatus402Schema, issueCertStatus403Schema, issueCertStatus404Schema, issueCertStatus410Schema, issueCertStatus449Schema, issueCertStatus500Schema, issueSchema, joinTeamPathTeamIdSchema, joinTeamResponseSchema, joinTeamStatus200Schema, joinTeamStatus400Schema, joinTeamStatus401Schema, joinTeamStatus402Schema, joinTeamStatus403Schema, joinTeamStatus404Schema, joinTeamStatus410Schema, joinTeamStatus503Schema, killSessionCommandPathCmdIdSchema, killSessionCommandPathSessionIdSchema, killSessionCommandQuerySlugSchema, killSessionCommandQueryTeamIdSchema, killSessionCommandResponseSchema, killSessionCommandStatus200Schema, killSessionCommandStatus400Schema, killSessionCommandStatus401Schema, killSessionCommandStatus403Schema, killSessionCommandStatus404Schema, killSessionCommandStatus410Schema, killSessionCommandStatus422Schema, killSessionCommandStatus429Schema, killSessionCommandStatus500Schema, languageCodeRequiredSchema, listAccessGroupMembersPathIdOrNameSchema, listAccessGroupMembersQueryLimitSchema, listAccessGroupMembersQueryNextSchema, listAccessGroupMembersQuerySearchSchema, listAccessGroupMembersQuerySlugSchema, listAccessGroupMembersQueryTeamIdSchema, listAccessGroupMembersResponseSchema, listAccessGroupMembersStatus200Schema, listAccessGroupMembersStatus400Schema, listAccessGroupMembersStatus401Schema, listAccessGroupMembersStatus403Schema, listAccessGroupMembersStatus410Schema, listAccessGroupProjectsPathIdOrNameSchema, listAccessGroupProjectsQueryLimitSchema, listAccessGroupProjectsQueryNextSchema, listAccessGroupProjectsQuerySlugSchema, listAccessGroupProjectsQueryTeamIdSchema, listAccessGroupProjectsResponseSchema, listAccessGroupProjectsStatus200Schema, listAccessGroupProjectsStatus400Schema, listAccessGroupProjectsStatus401Schema, listAccessGroupProjectsStatus403Schema, listAccessGroupProjectsStatus410Schema, listAccessGroupsQueryLimitSchema, listAccessGroupsQueryMembersLimitSchema, listAccessGroupsQueryNextSchema, listAccessGroupsQueryProjectIdSchema, listAccessGroupsQueryProjectsLimitSchema, listAccessGroupsQuerySearchSchema, listAccessGroupsQuerySlugSchema, listAccessGroupsQueryTeamIdSchema, listAccessGroupsResponseSchema, listAccessGroupsStatus200Schema, listAccessGroupsStatus400Schema, listAccessGroupsStatus401Schema, listAccessGroupsStatus403Schema, listAccessGroupsStatus410Schema, listAiGatewayRulesQueryIncludeDisabledSchema, listAiGatewayRulesQuerySlugSchema, listAiGatewayRulesQueryTeamIdSchema, listAiGatewayRulesResponseSchema, listAiGatewayRulesStatus200Schema, listAiGatewayRulesStatus400Schema, listAiGatewayRulesStatus401Schema, listAiGatewayRulesStatus403Schema, listAiGatewayRulesStatus410Schema, listAiGatewayRulesStatus500Schema, listAiGatewayVirtualModelConfigsQueryCursorSchema, listAiGatewayVirtualModelConfigsQueryLimitSchema, listAiGatewayVirtualModelConfigsQueryOwnerIdSchema, listAiGatewayVirtualModelConfigsQuerySlugSchema, listAiGatewayVirtualModelConfigsQueryTeamIdSchema, listAiGatewayVirtualModelConfigsResponseSchema, listAiGatewayVirtualModelConfigsStatus200Schema, listAiGatewayVirtualModelConfigsStatus400Schema, listAiGatewayVirtualModelConfigsStatus401Schema, listAiGatewayVirtualModelConfigsStatus403Schema, listAiGatewayVirtualModelConfigsStatus410Schema, listAiGatewayVirtualModelConfigsStatus500Schema, listAliasesQueryDomainSchema, listAliasesQueryFromSchema, listAliasesQueryLimitSchema, listAliasesQueryProjectIdSchema, listAliasesQueryRollbackDeploymentIdSchema, listAliasesQuerySinceSchema, listAliasesQuerySlugSchema, listAliasesQueryTeamIdSchema, listAliasesQueryUntilSchema, listAliasesResponseSchema, listAliasesStatus200Schema, listAliasesStatus400Schema, listAliasesStatus401Schema, listAliasesStatus403Schema, listAliasesStatus404Schema, listAliasesStatus410Schema, listAuthTokensResponseSchema, listAuthTokensStatus200Schema, listAuthTokensStatus400Schema, listAuthTokensStatus401Schema, listAuthTokensStatus403Schema, listAuthTokensStatus410Schema, listBillingChargesQueryFromSchema, listBillingChargesQuerySlugSchema, listBillingChargesQueryTeamIdSchema, listBillingChargesQueryToSchema, listBillingChargesResponseSchema, listBillingChargesStatus200Schema, listBillingChargesStatus400Schema, listBillingChargesStatus401Schema, listBillingChargesStatus403Schema, listBillingChargesStatus404Schema, listBillingChargesStatus410Schema, listBillingChargesStatus500Schema, listBillingChargesStatus503Schema, listCheckRunsPathCheckIdSchema, listCheckRunsPathProjectIdOrNameSchema, listCheckRunsQuerySlugSchema, listCheckRunsQueryTeamIdSchema, listCheckRunsResponseSchema, listCheckRunsStatus200Schema, listCheckRunsStatus400Schema, listCheckRunsStatus401Schema, listCheckRunsStatus403Schema, listCheckRunsStatus410Schema, listCheckRunsStatus500Schema, listContractCommitmentsQuerySlugSchema, listContractCommitmentsQueryTeamIdSchema, listContractCommitmentsResponseSchema, listContractCommitmentsStatus200Schema, listContractCommitmentsStatus400Schema, listContractCommitmentsStatus401Schema, listContractCommitmentsStatus403Schema, listContractCommitmentsStatus404Schema, listContractCommitmentsStatus410Schema, listDeploymentAliasesPathIdSchema, listDeploymentAliasesQuerySlugSchema, listDeploymentAliasesQueryTeamIdSchema, listDeploymentAliasesResponseSchema, listDeploymentAliasesStatus200Schema, listDeploymentAliasesStatus400Schema, listDeploymentAliasesStatus401Schema, listDeploymentAliasesStatus403Schema, listDeploymentAliasesStatus404Schema, listDeploymentAliasesStatus410Schema, listDeploymentCheckRunsPathDeploymentIdSchema, listDeploymentCheckRunsQuerySlugSchema, listDeploymentCheckRunsQueryTeamIdSchema, listDeploymentCheckRunsResponseSchema, listDeploymentCheckRunsStatus200Schema, listDeploymentCheckRunsStatus400Schema, listDeploymentCheckRunsStatus401Schema, listDeploymentCheckRunsStatus403Schema, listDeploymentCheckRunsStatus410Schema, listDeploymentCheckRunsStatus500Schema, listDeploymentFilesPathIdSchema, listDeploymentFilesQuerySlugSchema, listDeploymentFilesQueryTeamIdSchema, listDeploymentFilesResponseSchema, listDeploymentFilesStatus200Schema, listDeploymentFilesStatus400Schema, listDeploymentFilesStatus401Schema, listDeploymentFilesStatus403Schema, listDeploymentFilesStatus404Schema, listDeploymentFilesStatus410Schema, listDrivesQueryCursorSchema, listDrivesQueryLimitSchema, listDrivesQueryNamePrefixSchema, listDrivesQueryProjectIdSchema, listDrivesQuerySlugSchema, listDrivesQuerySortBySchema, listDrivesQuerySortOrderSchema, listDrivesQueryTeamIdSchema, listDrivesResponseSchema, listDrivesStatus200Schema, listDrivesStatus400Schema, listDrivesStatus401Schema, listDrivesStatus403Schema, listDrivesStatus404Schema, listDrivesStatus410Schema, listDrivesStatus429Schema, listEventTypeSchema, listEventTypesQuerySlugSchema, listEventTypesQueryTeamIdSchema, listEventTypesResponseSchema, listEventTypesStatus200Schema, listEventTypesStatus400Schema, listEventTypesStatus401Schema, listEventTypesStatus403Schema, listEventTypesStatus410Schema, listFlagSegmentsPathProjectIdOrNameSchema, listFlagSegmentsQuerySlugSchema, listFlagSegmentsQueryTeamIdSchema, listFlagSegmentsQueryWithMetadataSchema, listFlagSegmentsResponseSchema, listFlagSegmentsStatus200Schema, listFlagSegmentsStatus400Schema, listFlagSegmentsStatus401Schema, listFlagSegmentsStatus402Schema, listFlagSegmentsStatus403Schema, listFlagSegmentsStatus404Schema, listFlagSegmentsStatus410Schema, listFlagVersionsPathFlagIdOrSlugSchema, listFlagVersionsPathProjectIdOrNameSchema, listFlagVersionsQueryCursorSchema, listFlagVersionsQueryEnvironmentSchema, listFlagVersionsQueryLimitSchema, listFlagVersionsQuerySlugSchema, listFlagVersionsQueryTeamIdSchema, listFlagVersionsQueryWithMetadataSchema, listFlagVersionsResponseSchema, listFlagVersionsStatus200Schema, listFlagVersionsStatus304Schema, listFlagVersionsStatus400Schema, listFlagVersionsStatus401Schema, listFlagVersionsStatus402Schema, listFlagVersionsStatus403Schema, listFlagVersionsStatus404Schema, listFlagVersionsStatus410Schema, listFlagsPathProjectIdOrNameSchema, listFlagsQueryCursorSchema, listFlagsQueryLimitSchema, listFlagsQuerySearchSchema, listFlagsQuerySlugSchema, listFlagsQueryStateSchema, listFlagsQueryTagsSchema, listFlagsQueryTeamIdSchema, listFlagsQueryWithMetadataSchema, listFlagsResponseSchema, listFlagsStatus200Schema, listFlagsStatus400Schema, listFlagsStatus401Schema, listFlagsStatus402Schema, listFlagsStatus403Schema, listFlagsStatus404Schema, listFlagsStatus410Schema, listFlagsV2PathProjectIdOrNameSchema, listFlagsV2QueryCreatedBySchema, listFlagsV2QueryCursorSchema, listFlagsV2QueryIncludeMarketplaceFlagsSchema, listFlagsV2QueryLimitSchema, listFlagsV2QueryMaintainerIdsSchema, listFlagsV2QuerySearchSchema, listFlagsV2QuerySlugSchema, listFlagsV2QueryStateSchema, listFlagsV2QueryTagsSchema, listFlagsV2QueryTeamIdSchema, listFlagsV2ResponseSchema, listFlagsV2Status200Schema, listFlagsV2Status400Schema, listFlagsV2Status401Schema, listFlagsV2Status402Schema, listFlagsV2Status403Schema, listFlagsV2Status404Schema, listFlagsV2Status410Schema, listNetworksQueryIncludeHostedZonesSchema, listNetworksQueryIncludePeeringConnectionsSchema, listNetworksQueryIncludeProjectsSchema, listNetworksQuerySearchSchema, listNetworksQuerySlugSchema, listNetworksQueryTeamIdSchema, listNetworksResponseSchema, listNetworksStatus200Schema, listNetworksStatus400Schema, listNetworksStatus401Schema, listNetworksStatus403Schema, listNetworksStatus410Schema, listProjectChecksPathProjectIdOrNameSchema, listProjectChecksQueryBlocksSchema, listProjectChecksQuerySlugSchema, listProjectChecksQueryTeamIdSchema, listProjectChecksResponseSchema, listProjectChecksStatus200Schema, listProjectChecksStatus400Schema, listProjectChecksStatus401Schema, listProjectChecksStatus403Schema, listProjectChecksStatus410Schema, listProjectChecksStatus500Schema, listPromoteAliasesPathProjectIdSchema, listPromoteAliasesQueryFailedOnlySchema, listPromoteAliasesQueryLimitSchema, listPromoteAliasesQuerySinceSchema, listPromoteAliasesQuerySlugSchema, listPromoteAliasesQueryTeamIdSchema, listPromoteAliasesQueryUntilSchema, listPromoteAliasesResponseSchema, listPromoteAliasesStatus200Schema, listPromoteAliasesStatus400Schema, listPromoteAliasesStatus401Schema, listPromoteAliasesStatus403Schema, listPromoteAliasesStatus404Schema, listPromoteAliasesStatus410Schema, listRepositoriesQueryCursorSchema, listRepositoriesQueryLimitSchema, listRepositoriesQueryProjectIdSchema, listRepositoriesQuerySlugSchema, listRepositoriesQueryTeamIdSchema, listRepositoriesResponseSchema, listRepositoriesStatus200Schema, listRepositoriesStatus400Schema, listRepositoriesStatus401Schema, listRepositoriesStatus403Schema, listRepositoriesStatus404Schema, listRepositoriesStatus410Schema, listRepositoryImagesPathIdOrNameSchema, listRepositoryImagesQueryCursorSchema, listRepositoryImagesQueryLimitSchema, listRepositoryImagesQueryProjectIdSchema, listRepositoryImagesQuerySlugSchema, listRepositoryImagesQueryTeamIdSchema, listRepositoryImagesQueryUntaggedSchema, listRepositoryImagesResponseSchema, listRepositoryImagesStatus200Schema, listRepositoryImagesStatus400Schema, listRepositoryImagesStatus401Schema, listRepositoryImagesStatus403Schema, listRepositoryImagesStatus404Schema, listRepositoryImagesStatus410Schema, listRepositoryPermissionsPathIdOrNameSchema, listRepositoryPermissionsQueryCursorSchema, listRepositoryPermissionsQueryLimitSchema, listRepositoryPermissionsQueryProjectIdSchema, listRepositoryPermissionsQuerySlugSchema, listRepositoryPermissionsQueryTeamIdSchema, listRepositoryPermissionsResponseSchema, listRepositoryPermissionsStatus200Schema, listRepositoryPermissionsStatus400Schema, listRepositoryPermissionsStatus401Schema, listRepositoryPermissionsStatus403Schema, listRepositoryPermissionsStatus404Schema, listRepositoryPermissionsStatus410Schema, listRepositoryTagsPathIdOrNameSchema, listRepositoryTagsQueryCursorSchema, listRepositoryTagsQueryLimitSchema, listRepositoryTagsQueryProjectIdSchema, listRepositoryTagsQuerySlugSchema, listRepositoryTagsQuerySortBySchema, listRepositoryTagsQuerySortOrderSchema, listRepositoryTagsQueryTeamIdSchema, listRepositoryTagsResponseSchema, listRepositoryTagsStatus200Schema, listRepositoryTagsStatus400Schema, listRepositoryTagsStatus401Schema, listRepositoryTagsStatus403Schema, listRepositoryTagsStatus404Schema, listRepositoryTagsStatus410Schema, listSandboxesQueryCursorSchema, listSandboxesQueryLimitSchema, listSandboxesQueryNamePrefixSchema, listSandboxesQueryProjectSchema, listSandboxesQuerySlugSchema, listSandboxesQuerySortBySchema, listSandboxesQuerySortOrderSchema, listSandboxesQueryStatusSchema, listSandboxesQueryTagsSchema, listSandboxesQueryTeamIdSchema, listSandboxesResponseSchema, listSandboxesStatus200Schema, listSandboxesStatus400Schema, listSandboxesStatus401Schema, listSandboxesStatus403Schema, listSandboxesStatus404Schema, listSandboxesStatus410Schema, listSandboxesStatus429Schema, listSessionCommandsPathSessionIdSchema, listSessionCommandsQuerySlugSchema, listSessionCommandsQueryTeamIdSchema, listSessionCommandsResponseSchema, listSessionCommandsStatus200Schema, listSessionCommandsStatus400Schema, listSessionCommandsStatus401Schema, listSessionCommandsStatus403Schema, listSessionCommandsStatus404Schema, listSessionCommandsStatus410Schema, listSessionCommandsStatus429Schema, listSessionSnapshotsQueryCursorSchema, listSessionSnapshotsQueryLimitSchema, listSessionSnapshotsQueryNameSchema, listSessionSnapshotsQueryProjectSchema, listSessionSnapshotsQuerySlugSchema, listSessionSnapshotsQuerySortOrderSchema, listSessionSnapshotsQueryTeamIdSchema, listSessionSnapshotsResponseSchema, listSessionSnapshotsStatus200Schema, listSessionSnapshotsStatus400Schema, listSessionSnapshotsStatus401Schema, listSessionSnapshotsStatus403Schema, listSessionSnapshotsStatus404Schema, listSessionSnapshotsStatus410Schema, listSessionSnapshotsStatus429Schema, listSessionsQueryCursorSchema, listSessionsQueryLimitSchema, listSessionsQueryNameSchema, listSessionsQueryProjectSchema, listSessionsQuerySlugSchema, listSessionsQuerySortOrderSchema, listSessionsQueryTeamIdSchema, listSessionsResponseSchema, listSessionsStatus200Schema, listSessionsStatus400Schema, listSessionsStatus401Schema, listSessionsStatus403Schema, listSessionsStatus404Schema, listSessionsStatus410Schema, listSessionsStatus429Schema, listSessionsStatus500Schema, listSharedEnvVariableQueryExcludeIdsSchema, listSharedEnvVariableQueryExcludeProjectIdSchema, listSharedEnvVariableQueryIdsSchema, listSharedEnvVariableQueryProjectIdSchema, listSharedEnvVariableQuerySearchSchema, listSharedEnvVariableQuerySlugSchema, listSharedEnvVariableQueryTeamIdSchema, listSharedEnvVariableQueryexcludeIdsSchema, listSharedEnvVariableQueryexcludeProjectIdSchema, listSharedEnvVariableResponseSchema, listSharedEnvVariableStatus200Schema, listSharedEnvVariableStatus400Schema, listSharedEnvVariableStatus401Schema, listSharedEnvVariableStatus403Schema, listSharedEnvVariableStatus404Schema, listSharedEnvVariableStatus410Schema, listTeamFlagSettingsPathTeamIdSchema, listTeamFlagSettingsQueryCursorSchema, listTeamFlagSettingsQueryLimitSchema, listTeamFlagSettingsQuerySlugSchema, listTeamFlagSettingsResponseSchema, listTeamFlagSettingsStatus200Schema, listTeamFlagSettingsStatus400Schema, listTeamFlagSettingsStatus401Schema, listTeamFlagSettingsStatus403Schema, listTeamFlagSettingsStatus410Schema, listTeamFlagsPathTeamIdSchema, listTeamFlagsQueryCursorSchema, listTeamFlagsQueryKindSchema, listTeamFlagsQueryLimitSchema, listTeamFlagsQuerySearchSchema, listTeamFlagsQuerySlugSchema, listTeamFlagsQueryStateSchema, listTeamFlagsQueryTagsSchema, listTeamFlagsQueryWithMetadataSchema, listTeamFlagsResponseSchema, listTeamFlagsStatus200Schema, listTeamFlagsStatus400Schema, listTeamFlagsStatus401Schema, listTeamFlagsStatus403Schema, listTeamFlagsStatus410Schema, listTeamFlagsV2PathTeamIdSchema, listTeamFlagsV2QueryCreatedBySchema, listTeamFlagsV2QueryCursorSchema, listTeamFlagsV2QueryIncludeMarketplaceFlagsSchema, listTeamFlagsV2QueryKindSchema, listTeamFlagsV2QueryLimitSchema, listTeamFlagsV2QueryMaintainerIdsSchema, listTeamFlagsV2QuerySearchSchema, listTeamFlagsV2QuerySlugSchema, listTeamFlagsV2QueryStateSchema, listTeamFlagsV2QueryTagsSchema, listTeamFlagsV2ResponseSchema, listTeamFlagsV2Status200Schema, listTeamFlagsV2Status400Schema, listTeamFlagsV2Status401Schema, listTeamFlagsV2Status403Schema, listTeamFlagsV2Status410Schema, listUserEventsQueryEntityIdSchema, listUserEventsQueryLimitSchema, listUserEventsQueryPrincipalIdSchema, listUserEventsQueryProjectIdsSchema, listUserEventsQuerySinceSchema, listUserEventsQuerySlugSchema, listUserEventsQueryTeamIdSchema, listUserEventsQueryTypesSchema, listUserEventsQueryUntilSchema, listUserEventsQueryUserIdSchema, listUserEventsQueryWithPayloadSchema, listUserEventsResponseSchema, listUserEventsStatus200Schema, listUserEventsStatus400Schema, listUserEventsStatus401Schema, listUserEventsStatus403Schema, listUserEventsStatus410Schema, marketplaceFlagSchema, moveProjectDomainPathDomainSchema, moveProjectDomainPathIdOrNameSchema, moveProjectDomainQuerySlugSchema, moveProjectDomainQueryTeamIdSchema, moveProjectDomainResponseSchema, moveProjectDomainStatus200Schema, moveProjectDomainStatus400Schema, moveProjectDomainStatus401Schema, moveProjectDomainStatus403Schema, moveProjectDomainStatus409Schema, moveProjectDomainStatus410Schema, namedSandboxSchema, nameserverSchema, networkSchema, nonEmptyTrimmedStringSchema, notAuthorizedForScopeSchema, notFoundSchema, orderIdSchema, orderTooExpensiveSchema, paginationSchema, patchDomainPathDomainSchema, patchDomainQuerySlugSchema, patchDomainQueryTeamIdSchema, patchDomainResponseSchema, patchDomainStatus200Schema, patchDomainStatus400Schema, patchDomainStatus401Schema, patchDomainStatus403Schema, patchDomainStatus404Schema, patchDomainStatus409Schema, patchDomainStatus410Schema, patchDomainStatus500Schema, patchEdgeConfigItemsPathEdgeConfigIdSchema, patchEdgeConfigItemsQuerySlugSchema, patchEdgeConfigItemsQueryTeamIdSchema, patchEdgeConfigItemsResponseSchema, patchEdgeConfigItemsStatus200Schema, patchEdgeConfigItemsStatus400Schema, patchEdgeConfigItemsStatus401Schema, patchEdgeConfigItemsStatus402Schema, patchEdgeConfigItemsStatus403Schema, patchEdgeConfigItemsStatus404Schema, patchEdgeConfigItemsStatus409Schema, patchEdgeConfigItemsStatus410Schema, patchEdgeConfigItemsStatus412Schema, patchEdgeConfigSchemaPathEdgeConfigIdSchema, patchEdgeConfigSchemaQueryDryRunSchema, patchEdgeConfigSchemaQuerySlugSchema, patchEdgeConfigSchemaQueryTeamIdSchema, patchEdgeConfigSchemaResponseSchema, patchEdgeConfigSchemaStatus200Schema, patchEdgeConfigSchemaStatus400Schema, patchEdgeConfigSchemaStatus401Schema, patchEdgeConfigSchemaStatus402Schema, patchEdgeConfigSchemaStatus403Schema, patchEdgeConfigSchemaStatus404Schema, patchEdgeConfigSchemaStatus409Schema, patchEdgeConfigSchemaStatus410Schema, patchTeamPathTeamIdSchema, patchTeamQuerySlugSchema, patchTeamResponseSchema, patchTeamStatus200Schema, patchTeamStatus400Schema, patchTeamStatus401Schema, patchTeamStatus402Schema, patchTeamStatus403Schema, patchTeamStatus410Schema, patchTeamStatus428Schema, patchUrlProtectionBypassPathIdSchema, patchUrlProtectionBypassQuerySlugSchema, patchUrlProtectionBypassQueryTeamIdSchema, patchUrlProtectionBypassResponseSchema, patchUrlProtectionBypassStatus200Schema, patchUrlProtectionBypassStatus400Schema, patchUrlProtectionBypassStatus401Schema, patchUrlProtectionBypassStatus403Schema, patchUrlProtectionBypassStatus404Schema, patchUrlProtectionBypassStatus409Schema, patchUrlProtectionBypassStatus410Schema, patchUrlProtectionBypassStatus428Schema, pauseProjectPathProjectIdSchema, pauseProjectQuerySlugSchema, pauseProjectQueryTeamIdSchema, pauseProjectResponseSchema, pauseProjectStatus200Schema, pauseProjectStatus400Schema, pauseProjectStatus401Schema, pauseProjectStatus403Schema, pauseProjectStatus410Schema, pauseProjectStatus500Schema, postTeamDsyncRolesPathTeamIdSchema, postTeamDsyncRolesQuerySlugSchema, postTeamDsyncRolesResponseSchema, postTeamDsyncRolesStatus200Schema, postTeamDsyncRolesStatus400Schema, postTeamDsyncRolesStatus401Schema, postTeamDsyncRolesStatus403Schema, postTeamDsyncRolesStatus410Schema, propertyKeySchema, putFirewallConfigQueryProjectIdSchema, putFirewallConfigQuerySlugSchema, putFirewallConfigQueryTeamIdSchema, putFirewallConfigResponseSchema, putFirewallConfigStatus200Schema, putFirewallConfigStatus400Schema, putFirewallConfigStatus401Schema, putFirewallConfigStatus402Schema, putFirewallConfigStatus403Schema, putFirewallConfigStatus404Schema, putFirewallConfigStatus410Schema, putFirewallConfigStatus500Schema, rateLimitNoticeSchema, readAccessGroupPathIdOrNameSchema, readAccessGroupProjectPathAccessGroupIdOrNameSchema, readAccessGroupProjectPathProjectIdSchema, readAccessGroupProjectQuerySlugSchema, readAccessGroupProjectQueryTeamIdSchema, readAccessGroupProjectResponseSchema, readAccessGroupProjectStatus200Schema, readAccessGroupProjectStatus400Schema, readAccessGroupProjectStatus401Schema, readAccessGroupProjectStatus403Schema, readAccessGroupProjectStatus410Schema, readAccessGroupQuerySlugSchema, readAccessGroupQueryTeamIdSchema, readAccessGroupResponseSchema, readAccessGroupStatus200Schema, readAccessGroupStatus400Schema, readAccessGroupStatus401Schema, readAccessGroupStatus403Schema, readAccessGroupStatus410Schema, readNetworkPathNetworkIdSchema, readNetworkQuerySlugSchema, readNetworkQueryTeamIdSchema, readNetworkResponseSchema, readNetworkStatus200Schema, readNetworkStatus400Schema, readNetworkStatus401Schema, readNetworkStatus403Schema, readNetworkStatus410Schema, readSessionFilePathSessionIdSchema, readSessionFileQuerySlugSchema, readSessionFileQueryTeamIdSchema, readSessionFileResponseSchema, readSessionFileStatus200Schema, readSessionFileStatus400Schema, readSessionFileStatus401Schema, readSessionFileStatus403Schema, readSessionFileStatus404Schema, readSessionFileStatus410Schema, readSessionFileStatus422Schema, readSessionFileStatus429Schema, readSessionFileStatus500Schema, recordEventsHeaderxArtifactClientCiSchema, recordEventsHeaderxArtifactClientInteractiveSchema, recordEventsQuerySlugSchema, recordEventsQueryTeamIdSchema, recordEventsResponseSchema, recordEventsStatus200Schema, recordEventsStatus400Schema, recordEventsStatus401Schema, recordEventsStatus402Schema, recordEventsStatus403Schema, recordEventsStatus410Schema, registrantFieldSchema, removeBypassIpQueryProjectIdSchema, removeBypassIpQuerySlugSchema, removeBypassIpQueryTeamIdSchema, removeBypassIpResponseSchema, removeBypassIpStatus200Schema, removeBypassIpStatus400Schema, removeBypassIpStatus401Schema, removeBypassIpStatus403Schema, removeBypassIpStatus404Schema, removeBypassIpStatus410Schema, removeBypassIpStatus500Schema, removeCertPathIdSchema, removeCertQuerySlugSchema, removeCertQueryTeamIdSchema, removeCertResponseSchema, removeCertStatus200Schema, removeCertStatus400Schema, removeCertStatus401Schema, removeCertStatus403Schema, removeCertStatus404Schema, removeCertStatus410Schema, removeCustomEnvironmentPathEnvironmentSlugOrIdSchema, removeCustomEnvironmentPathIdOrNameSchema, removeCustomEnvironmentQuerySlugSchema, removeCustomEnvironmentQueryTeamIdSchema, removeCustomEnvironmentResponseSchema, removeCustomEnvironmentStatus200Schema, removeCustomEnvironmentStatus400Schema, removeCustomEnvironmentStatus401Schema, removeCustomEnvironmentStatus403Schema, removeCustomEnvironmentStatus410Schema, removeProjectDomainPathDomainSchema, removeProjectDomainPathIdOrNameSchema, removeProjectDomainQuerySlugSchema, removeProjectDomainQueryTeamIdSchema, removeProjectDomainResponseSchema, removeProjectDomainStatus200Schema, removeProjectDomainStatus400Schema, removeProjectDomainStatus401Schema, removeProjectDomainStatus403Schema, removeProjectDomainStatus404Schema, removeProjectDomainStatus409Schema, removeProjectDomainStatus410Schema, removeProjectEnvPathIdOrNameSchema, removeProjectEnvPathIdSchema, removeProjectEnvQueryCustomEnvironmentIdSchema, removeProjectEnvQuerySlugSchema, removeProjectEnvQueryTeamIdSchema, removeProjectEnvResponseSchema, removeProjectEnvStatus200Schema, removeProjectEnvStatus400Schema, removeProjectEnvStatus401Schema, removeProjectEnvStatus403Schema, removeProjectEnvStatus404Schema, removeProjectEnvStatus409Schema, removeProjectEnvStatus410Schema, removeProjectMemberPathIdOrNameSchema, removeProjectMemberPathUidSchema, removeProjectMemberQuerySlugSchema, removeProjectMemberQueryTeamIdSchema, removeProjectMemberResponseSchema, removeProjectMemberStatus200Schema, removeProjectMemberStatus400Schema, removeProjectMemberStatus401Schema, removeProjectMemberStatus403Schema, removeProjectMemberStatus410Schema, removeRecordPathDomainSchema, removeRecordPathRecordIdSchema, removeRecordQuerySlugSchema, removeRecordQueryTeamIdSchema, removeRecordResponseSchema, removeRecordStatus200Schema, removeRecordStatus400Schema, removeRecordStatus401Schema, removeRecordStatus403Schema, removeRecordStatus404Schema, removeRecordStatus410Schema, removeRepositoryPermissionPathIdOrNameSchema, removeRepositoryPermissionQueryProjectIdSchema, removeRepositoryPermissionQuerySlugSchema, removeRepositoryPermissionQueryTeamIdSchema, removeRepositoryPermissionResponseSchema, removeRepositoryPermissionStatus204Schema, removeRepositoryPermissionStatus400Schema, removeRepositoryPermissionStatus401Schema, removeRepositoryPermissionStatus403Schema, removeRepositoryPermissionStatus404Schema, removeRepositoryPermissionStatus410Schema, removeTeamMemberPathTeamIdSchema, removeTeamMemberPathUidSchema, removeTeamMemberQueryNewDefaultTeamIdSchema, removeTeamMemberResponseSchema, removeTeamMemberStatus200Schema, removeTeamMemberStatus400Schema, removeTeamMemberStatus401Schema, removeTeamMemberStatus403Schema, removeTeamMemberStatus404Schema, removeTeamMemberStatus410Schema, removeTeamMemberStatus503Schema, renewDomainPathDomainSchema, renewDomainQueryTeamIdSchema, renewDomainResponseSchema, renewDomainStatus200Schema, renewDomainStatus400Schema, renewDomainStatus401Schema, renewDomainStatus403Schema, renewDomainStatus404Schema, renewDomainStatus429Schema, renewDomainStatus500Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidQueryDigestSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus201Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathProjectSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathReferenceSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathRepositoryNameSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferencePathTeamSlugSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceResponseSchema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus201Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus400Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus401Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus402Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus403Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus404Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus410Schema, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReferenceStatus413Schema, replaceDomainsByDomainRecordsPathDomainSchema, replaceDomainsByDomainRecordsResponseSchema, replaceDomainsByDomainRecordsStatus200Schema, replaceDomainsByDomainRecordsStatus400Schema, replaceDomainsByDomainRecordsStatus401Schema, replaceDomainsByDomainRecordsStatus403Schema, replaceDomainsByDomainRecordsStatus404Schema, replaceDomainsByDomainRecordsStatus409Schema, replaceDomainsByDomainRecordsStatus410Schema, replaceDomainsByDomainRecordsStatus415Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathIntegrationConfigurationIdSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigPathResourceIdSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigResponseSchema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus200Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus400Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus401Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus403Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus404Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus409Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus410Schema, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfigStatus412Schema, requestAccessToTeamPathTeamIdSchema, requestAccessToTeamResponseSchema, requestAccessToTeamStatus200Schema, requestAccessToTeamStatus400Schema, requestAccessToTeamStatus401Schema, requestAccessToTeamStatus403Schema, requestAccessToTeamStatus404Schema, requestAccessToTeamStatus410Schema, requestAccessToTeamStatus429Schema, requestAccessToTeamStatus503Schema, requestDeleteResponseSchema, requestDeleteStatus202Schema, requestDeleteStatus400Schema, requestDeleteStatus401Schema, requestDeleteStatus402Schema, requestDeleteStatus403Schema, requestDeleteStatus410Schema, requestPromotePathDeploymentIdSchema, requestPromotePathProjectIdSchema, requestPromoteQuerySlugSchema, requestPromoteQueryTeamIdSchema, requestPromoteResponseSchema, requestPromoteStatus201Schema, requestPromoteStatus202Schema, requestPromoteStatus400Schema, requestPromoteStatus401Schema, requestPromoteStatus403Schema, requestPromoteStatus409Schema, requestPromoteStatus410Schema, requestRollbackPathDeploymentIdSchema, requestRollbackPathProjectIdSchema, requestRollbackQueryDescriptionSchema, requestRollbackQuerySlugSchema, requestRollbackQueryTeamIdSchema, requestRollbackResponseSchema, requestRollbackStatus201Schema, requestRollbackStatus400Schema, requestRollbackStatus401Schema, requestRollbackStatus402Schema, requestRollbackStatus403Schema, requestRollbackStatus409Schema, requestRollbackStatus410Schema, requestRollbackStatus422Schema, rerequestCheckPathCheckIdSchema, rerequestCheckPathDeploymentIdSchema, rerequestCheckQueryAutoUpdateSchema, rerequestCheckQuerySlugSchema, rerequestCheckQueryTeamIdSchema, rerequestCheckResponseSchema, rerequestCheckStatus200Schema, rerequestCheckStatus400Schema, rerequestCheckStatus401Schema, rerequestCheckStatus403Schema, rerequestCheckStatus404Schema, rerequestCheckStatus410Schema, restoreEdgeConfigBackupPathEdgeConfigBackupVersionIdSchema, restoreEdgeConfigBackupPathEdgeConfigIdSchema, restoreEdgeConfigBackupQuerySlugSchema, restoreEdgeConfigBackupQueryTeamIdSchema, restoreEdgeConfigBackupResponseSchema, restoreEdgeConfigBackupStatus200Schema, restoreEdgeConfigBackupStatus400Schema, restoreEdgeConfigBackupStatus401Schema, restoreEdgeConfigBackupStatus402Schema, restoreEdgeConfigBackupStatus403Schema, restoreEdgeConfigBackupStatus404Schema, restoreEdgeConfigBackupStatus409Schema, restoreEdgeConfigBackupStatus410Schema, restoreEdgeConfigBackupStatus412Schema, restoreRedirectsQueryProjectIdSchema, restoreRedirectsQuerySlugSchema, restoreRedirectsQueryTeamIdSchema, restoreRedirectsResponseSchema, restoreRedirectsStatus200Schema, restoreRedirectsStatus400Schema, restoreRedirectsStatus401Schema, restoreRedirectsStatus403Schema, restoreRedirectsStatus404Schema, restoreRedirectsStatus410Schema, restoreRedirectsStatus500Schema, rotateInstallationCredentialPathIntegrationConfigurationIdSchema, rotateInstallationCredentialResponseSchema, rotateInstallationCredentialStatus200Schema, rotateInstallationCredentialStatus400Schema, rotateInstallationCredentialStatus401Schema, rotateInstallationCredentialStatus403Schema, rotateInstallationCredentialStatus404Schema, rotateInstallationCredentialStatus409Schema, rotateInstallationCredentialStatus410Schema, runSessionCommandPathSessionIdSchema, runSessionCommandQueryCmdIdSchema, runSessionCommandQuerySlugSchema, runSessionCommandQueryTeamIdSchema, runSessionCommandResponseSchema, runSessionCommandStatus200Schema, runSessionCommandStatus400Schema, runSessionCommandStatus401Schema, runSessionCommandStatus403Schema, runSessionCommandStatus404Schema, runSessionCommandStatus410Schema, runSessionCommandStatus422Schema, runSessionCommandStatus429Schema, runSessionCommandStatus500Schema, sandboxInjectionRuleSchema, sandboxNetworkPolicySchema, sandboxPublicRouteSchema, searchRepoQueryHostSchema, searchRepoQueryInstallationIdSchema, searchRepoQueryNamespaceIdSchema, searchRepoQueryProviderSchema, searchRepoQueryQuerySchema, searchRepoQuerySlugSchema, searchRepoQueryTeamIdSchema, searchRepoResponseSchema, searchRepoStatus200Schema, searchRepoStatus400Schema, searchRepoStatus401Schema, searchRepoStatus403Schema, searchRepoStatus404Schema, searchRepoStatus410Schema, searchRepoStatus429Schema, searchRepoStatus500Schema, searchRepoStatus502Schema, segmentSchema, sessionCommandSchema, sessionSchema, snapshotSchema, stageRedirectsQuerySlugSchema, stageRedirectsQueryTeamIdSchema, stageRedirectsResponseSchema, stageRedirectsStatus200Schema, stageRedirectsStatus400Schema, stageRedirectsStatus401Schema, stageRedirectsStatus403Schema, stageRedirectsStatus410Schema, stageRedirectsStatus500Schema, stageRoutesPathProjectIdSchema, stageRoutesQuerySlugSchema, stageRoutesQueryTeamIdSchema, stageRoutesResponseSchema, stageRoutesStatus200Schema, stageRoutesStatus400Schema, stageRoutesStatus401Schema, stageRoutesStatus403Schema, stageRoutesStatus409Schema, stageRoutesStatus410Schema, stageRoutesStatus500Schema, startRollingReleasePathIdOrNameSchema, startRollingReleaseQuerySlugSchema, startRollingReleaseQueryTeamIdSchema, startRollingReleaseResponseSchema, startRollingReleaseStatus200Schema, startRollingReleaseStatus400Schema, startRollingReleaseStatus401Schema, startRollingReleaseStatus403Schema, startRollingReleaseStatus404Schema, startRollingReleaseStatus409Schema, startRollingReleaseStatus410Schema, startRollingReleaseStatus422Schema, statusQuerySlugSchema, statusQueryTeamIdSchema, statusResponseSchema, statusStatus200Schema, statusStatus400Schema, statusStatus401Schema, statusStatus402Schema, statusStatus403Schema, statusStatus410Schema, stopSessionPathSessionIdSchema, stopSessionQuerySlugSchema, stopSessionQueryTeamIdSchema, stopSessionResponseSchema, stopSessionStatus200Schema, stopSessionStatus400Schema, stopSessionStatus401Schema, stopSessionStatus403Schema, stopSessionStatus404Schema, stopSessionStatus410Schema, stopSessionStatus422Schema, stopSessionStatus429Schema, stopSessionStatus500Schema, submitBillingDataPathIntegrationConfigurationIdSchema, submitBillingDataResponseSchema, submitBillingDataStatus201Schema, submitBillingDataStatus400Schema, submitBillingDataStatus401Schema, submitBillingDataStatus403Schema, submitBillingDataStatus404Schema, submitBillingDataStatus410Schema, submitInvoicePathIntegrationConfigurationIdSchema, submitInvoiceResponseSchema, submitInvoiceStatus200Schema, submitInvoiceStatus400Schema, submitInvoiceStatus401Schema, submitInvoiceStatus403Schema, submitInvoiceStatus404Schema, submitInvoiceStatus409Schema, submitInvoiceStatus410Schema, submitPrepaymentBalancesPathIntegrationConfigurationIdSchema, submitPrepaymentBalancesResponseSchema, submitPrepaymentBalancesStatus201Schema, submitPrepaymentBalancesStatus400Schema, submitPrepaymentBalancesStatus401Schema, submitPrepaymentBalancesStatus403Schema, submitPrepaymentBalancesStatus404Schema, submitPrepaymentBalancesStatus410Schema, teamLimitedSchema, teamSchema, testDrainQuerySlugSchema, testDrainQueryTeamIdSchema, testDrainResponseSchema, testDrainStatus200Schema, testDrainStatus400Schema, testDrainStatus401Schema, testDrainStatus402Schema, testDrainStatus403Schema, testDrainStatus410Schema, tldNameSchema, tldNotSupportedSchema, tooManyDomainsSchema, tooManyRequestsSchema, transferInDomainPathDomainSchema, transferInDomainQueryTeamIdSchema, transferInDomainResponseSchema, transferInDomainStatus200Schema, transferInDomainStatus400Schema, transferInDomainStatus401Schema, transferInDomainStatus403Schema, transferInDomainStatus429Schema, transferInDomainStatus500Schema, unauthorizedSchema, unlinkSharedEnvVariablePathIdSchema, unlinkSharedEnvVariablePathProjectIdSchema, unlinkSharedEnvVariableQuerySlugSchema, unlinkSharedEnvVariableQueryTeamIdSchema, unlinkSharedEnvVariableResponseSchema, unlinkSharedEnvVariableStatus200Schema, unlinkSharedEnvVariableStatus400Schema, unlinkSharedEnvVariableStatus401Schema, unlinkSharedEnvVariableStatus403Schema, unlinkSharedEnvVariableStatus410Schema, unpauseProjectPathProjectIdSchema, unpauseProjectQuerySlugSchema, unpauseProjectQueryTeamIdSchema, unpauseProjectResponseSchema, unpauseProjectStatus200Schema, unpauseProjectStatus400Schema, unpauseProjectStatus401Schema, unpauseProjectStatus403Schema, unpauseProjectStatus410Schema, unpauseProjectStatus500Schema, updateAccessGroupPathIdOrNameSchema, updateAccessGroupProjectPathAccessGroupIdOrNameSchema, updateAccessGroupProjectPathProjectIdSchema, updateAccessGroupProjectQuerySlugSchema, updateAccessGroupProjectQueryTeamIdSchema, updateAccessGroupProjectResponseSchema, updateAccessGroupProjectStatus200Schema, updateAccessGroupProjectStatus400Schema, updateAccessGroupProjectStatus401Schema, updateAccessGroupProjectStatus403Schema, updateAccessGroupProjectStatus410Schema, updateAccessGroupQuerySlugSchema, updateAccessGroupQueryTeamIdSchema, updateAccessGroupResponseSchema, updateAccessGroupStatus200Schema, updateAccessGroupStatus400Schema, updateAccessGroupStatus401Schema, updateAccessGroupStatus403Schema, updateAccessGroupStatus410Schema, updateAiGatewayRuleQuerySlugSchema, updateAiGatewayRuleQueryTeamIdSchema, updateAiGatewayRuleResponseSchema, updateAiGatewayRuleStatus200Schema, updateAiGatewayRuleStatus400Schema, updateAiGatewayRuleStatus401Schema, updateAiGatewayRuleStatus403Schema, updateAiGatewayRuleStatus404Schema, updateAiGatewayRuleStatus410Schema, updateAiGatewayRuleStatus500Schema, updateAiGatewayVirtualModelConfigQuerySlugSchema, updateAiGatewayVirtualModelConfigQueryTeamIdSchema, updateAiGatewayVirtualModelConfigResponseSchema, updateAiGatewayVirtualModelConfigStatus200Schema, updateAiGatewayVirtualModelConfigStatus400Schema, updateAiGatewayVirtualModelConfigStatus401Schema, updateAiGatewayVirtualModelConfigStatus403Schema, updateAiGatewayVirtualModelConfigStatus404Schema, updateAiGatewayVirtualModelConfigStatus410Schema, updateAiGatewayVirtualModelConfigStatus500Schema, updateAttackChallengeModeQuerySlugSchema, updateAttackChallengeModeQueryTeamIdSchema, updateAttackChallengeModeResponseSchema, updateAttackChallengeModeStatus200Schema, updateAttackChallengeModeStatus400Schema, updateAttackChallengeModeStatus401Schema, updateAttackChallengeModeStatus403Schema, updateAttackChallengeModeStatus404Schema, updateAttackChallengeModeStatus410Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathProjectSlugSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathRepositoryNameSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathTeamSlugSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidPathUuidSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidResponseSchema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus202Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus400Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus401Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus402Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus403Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus404Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus410Schema, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuidStatus413Schema, updateCheckPathCheckIdSchema, updateCheckPathDeploymentIdSchema, updateCheckQuerySlugSchema, updateCheckQueryTeamIdSchema, updateCheckResponseSchema, updateCheckStatus200Schema, updateCheckStatus400Schema, updateCheckStatus401Schema, updateCheckStatus403Schema, updateCheckStatus404Schema, updateCheckStatus410Schema, updateCheckStatus413Schema, updateCustomEnvironmentPathEnvironmentSlugOrIdSchema, updateCustomEnvironmentPathIdOrNameSchema, updateCustomEnvironmentQuerySlugSchema, updateCustomEnvironmentQueryTeamIdSchema, updateCustomEnvironmentResponseSchema, updateCustomEnvironmentStatus200Schema, updateCustomEnvironmentStatus400Schema, updateCustomEnvironmentStatus401Schema, updateCustomEnvironmentStatus402Schema, updateCustomEnvironmentStatus403Schema, updateCustomEnvironmentStatus410Schema, updateCustomEnvironmentStatus500Schema, updateDeploymentCheckRunPathCheckRunIdSchema, updateDeploymentCheckRunPathDeploymentIdSchema, updateDeploymentCheckRunQuerySlugSchema, updateDeploymentCheckRunQueryTeamIdSchema, updateDeploymentCheckRunResponseSchema, updateDeploymentCheckRunStatus200Schema, updateDeploymentCheckRunStatus400Schema, updateDeploymentCheckRunStatus401Schema, updateDeploymentCheckRunStatus403Schema, updateDeploymentCheckRunStatus410Schema, updateDeploymentCheckRunStatus413Schema, updateDeploymentCheckRunStatus500Schema, updateDomainAutoRenewPathDomainSchema, updateDomainAutoRenewQueryTeamIdSchema, updateDomainAutoRenewResponseSchema, updateDomainAutoRenewStatus204Schema, updateDomainAutoRenewStatus400Schema, updateDomainAutoRenewStatus401Schema, updateDomainAutoRenewStatus403Schema, updateDomainAutoRenewStatus404Schema, updateDomainAutoRenewStatus429Schema, updateDomainAutoRenewStatus500Schema, updateDomainNameserversPathDomainSchema, updateDomainNameserversQueryTeamIdSchema, updateDomainNameserversResponseSchema, updateDomainNameserversStatus204Schema, updateDomainNameserversStatus400Schema, updateDomainNameserversStatus401Schema, updateDomainNameserversStatus403Schema, updateDomainNameserversStatus404Schema, updateDomainNameserversStatus429Schema, updateDomainNameserversStatus500Schema, updateDrainPathIdSchema, updateDrainQuerySlugSchema, updateDrainQueryTeamIdSchema, updateDrainResponseSchema, updateDrainStatus200Schema, updateDrainStatus400Schema, updateDrainStatus401Schema, updateDrainStatus402Schema, updateDrainStatus403Schema, updateDrainStatus404Schema, updateDrainStatus410Schema, updateEdgeConfigPathEdgeConfigIdSchema, updateEdgeConfigQuerySlugSchema, updateEdgeConfigQueryTeamIdSchema, updateEdgeConfigResponseSchema, updateEdgeConfigStatus200Schema, updateEdgeConfigStatus400Schema, updateEdgeConfigStatus401Schema, updateEdgeConfigStatus402Schema, updateEdgeConfigStatus403Schema, updateEdgeConfigStatus404Schema, updateEdgeConfigStatus409Schema, updateEdgeConfigStatus410Schema, updateFirewallConfigQueryProjectIdSchema, updateFirewallConfigQuerySlugSchema, updateFirewallConfigQueryTeamIdSchema, updateFirewallConfigResponseSchema, updateFirewallConfigStatus200Schema, updateFirewallConfigStatus400Schema, updateFirewallConfigStatus401Schema, updateFirewallConfigStatus402Schema, updateFirewallConfigStatus403Schema, updateFirewallConfigStatus404Schema, updateFirewallConfigStatus410Schema, updateFirewallConfigStatus500Schema, updateFlagPathFlagIdOrSlugSchema, updateFlagPathProjectIdOrNameSchema, updateFlagQueryIfMatchSchema, updateFlagQuerySlugSchema, updateFlagQueryTeamIdSchema, updateFlagQueryWithMetadataSchema, updateFlagResponseSchema, updateFlagSegmentPathProjectIdOrNameSchema, updateFlagSegmentPathSegmentIdOrSlugSchema, updateFlagSegmentQuerySlugSchema, updateFlagSegmentQueryTeamIdSchema, updateFlagSegmentQueryWithMetadataSchema, updateFlagSegmentResponseSchema, updateFlagSegmentStatus200Schema, updateFlagSegmentStatus400Schema, updateFlagSegmentStatus401Schema, updateFlagSegmentStatus402Schema, updateFlagSegmentStatus403Schema, updateFlagSegmentStatus404Schema, updateFlagSegmentStatus409Schema, updateFlagSegmentStatus410Schema, updateFlagSettingsPathProjectIdOrNameSchema, updateFlagSettingsQuerySlugSchema, updateFlagSettingsQueryTeamIdSchema, updateFlagSettingsResponseSchema, updateFlagSettingsStatus200Schema, updateFlagSettingsStatus201Schema, updateFlagSettingsStatus400Schema, updateFlagSettingsStatus401Schema, updateFlagSettingsStatus402Schema, updateFlagSettingsStatus403Schema, updateFlagSettingsStatus404Schema, updateFlagSettingsStatus409Schema, updateFlagSettingsStatus410Schema, updateFlagStatus200Schema, updateFlagStatus304Schema, updateFlagStatus400Schema, updateFlagStatus401Schema, updateFlagStatus402Schema, updateFlagStatus403Schema, updateFlagStatus404Schema, updateFlagStatus409Schema, updateFlagStatus410Schema, updateInstallationPathIntegrationConfigurationIdSchema, updateInstallationResponseSchema, updateInstallationStatus204Schema, updateInstallationStatus400Schema, updateInstallationStatus401Schema, updateInstallationStatus403Schema, updateInstallationStatus404Schema, updateInstallationStatus410Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathIntegrationConfigurationIdSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathItemIdSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdPathResourceIdSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdResponseSchema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus204Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus400Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus401Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus403Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus404Schema, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemIdStatus410Schema, updateIntegrationDeploymentActionPathActionSchema, updateIntegrationDeploymentActionPathDeploymentIdSchema, updateIntegrationDeploymentActionPathIntegrationConfigurationIdSchema, updateIntegrationDeploymentActionPathResourceIdSchema, updateIntegrationDeploymentActionResponseSchema, updateIntegrationDeploymentActionStatus202Schema, updateIntegrationDeploymentActionStatus400Schema, updateIntegrationDeploymentActionStatus401Schema, updateIntegrationDeploymentActionStatus403Schema, updateIntegrationDeploymentActionStatus410Schema, updateInvoicePathIntegrationConfigurationIdSchema, updateInvoicePathInvoiceIdSchema, updateInvoiceResponseSchema, updateInvoiceStatus204Schema, updateInvoiceStatus400Schema, updateInvoiceStatus401Schema, updateInvoiceStatus403Schema, updateInvoiceStatus404Schema, updateInvoiceStatus409Schema, updateInvoiceStatus410Schema, updateMicrofrontendsGroupPathGroupIdSchema, updateMicrofrontendsGroupPathTeamIdSchema, updateMicrofrontendsGroupQuerySlugSchema, updateMicrofrontendsGroupResponseSchema, updateMicrofrontendsGroupStatus200Schema, updateMicrofrontendsGroupStatus400Schema, updateMicrofrontendsGroupStatus401Schema, updateMicrofrontendsGroupStatus403Schema, updateMicrofrontendsGroupStatus404Schema, updateMicrofrontendsGroupStatus410Schema, updateMicrofrontendsPathProjectIdSchema, updateMicrofrontendsQuerySlugSchema, updateMicrofrontendsQueryTeamIdSchema, updateMicrofrontendsResponseSchema, updateMicrofrontendsStatus200Schema, updateMicrofrontendsStatus400Schema, updateMicrofrontendsStatus401Schema, updateMicrofrontendsStatus403Schema, updateMicrofrontendsStatus409Schema, updateMicrofrontendsStatus410Schema, updateMicrofrontendsStatus500Schema, updateNetworkPathNetworkIdSchema, updateNetworkQuerySlugSchema, updateNetworkQueryTeamIdSchema, updateNetworkResponseSchema, updateNetworkStatus200Schema, updateNetworkStatus400Schema, updateNetworkStatus401Schema, updateNetworkStatus403Schema, updateNetworkStatus410Schema, updateObservabilityConfigurationProjectPathProjectIdOrNameSchema, updateObservabilityConfigurationProjectQuerySlugSchema, updateObservabilityConfigurationProjectQueryTeamIdSchema, updateObservabilityConfigurationProjectResponseSchema, updateObservabilityConfigurationProjectStatus200Schema, updateObservabilityConfigurationProjectStatus400Schema, updateObservabilityConfigurationProjectStatus401Schema, updateObservabilityConfigurationProjectStatus403Schema, updateObservabilityConfigurationProjectStatus404Schema, updateObservabilityConfigurationProjectStatus410Schema, updateObservabilityConfigurationProjectStatus429Schema, updateProjectCheckPathCheckIdSchema, updateProjectCheckPathProjectIdOrNameSchema, updateProjectCheckQuerySlugSchema, updateProjectCheckQueryTeamIdSchema, updateProjectCheckResponseSchema, updateProjectCheckStatus200Schema, updateProjectCheckStatus400Schema, updateProjectCheckStatus401Schema, updateProjectCheckStatus403Schema, updateProjectCheckStatus404Schema, updateProjectCheckStatus410Schema, updateProjectCheckStatus500Schema, updateProjectDomainPathDomainSchema, updateProjectDomainPathIdOrNameSchema, updateProjectDomainQuerySlugSchema, updateProjectDomainQueryTeamIdSchema, updateProjectDomainResponseSchema, updateProjectDomainStatus200Schema, updateProjectDomainStatus400Schema, updateProjectDomainStatus401Schema, updateProjectDomainStatus403Schema, updateProjectDomainStatus409Schema, updateProjectDomainStatus410Schema, updateProjectPathIdOrNameSchema, updateProjectProtectionBypassPathIdOrNameSchema, updateProjectProtectionBypassQuerySlugSchema, updateProjectProtectionBypassQueryTeamIdSchema, updateProjectProtectionBypassResponseSchema, updateProjectProtectionBypassStatus200Schema, updateProjectProtectionBypassStatus400Schema, updateProjectProtectionBypassStatus401Schema, updateProjectProtectionBypassStatus403Schema, updateProjectProtectionBypassStatus404Schema, updateProjectProtectionBypassStatus409Schema, updateProjectProtectionBypassStatus410Schema, updateProjectQuerySlugSchema, updateProjectQueryTeamIdSchema, updateProjectResponseSchema, updateProjectStatus200Schema, updateProjectStatus400Schema, updateProjectStatus401Schema, updateProjectStatus402Schema, updateProjectStatus403Schema, updateProjectStatus404Schema, updateProjectStatus409Schema, updateProjectStatus410Schema, updateProjectStatus428Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathDeploymentIdSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionPathProjectIdSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionResponseSchema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus200Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus400Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus401Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus403Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus409Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus410Schema, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescriptionStatus422Schema, updateRecordPathRecordIdSchema, updateRecordQuerySlugSchema, updateRecordQueryTeamIdSchema, updateRecordResponseSchema, updateRecordStatus200Schema, updateRecordStatus400Schema, updateRecordStatus401Schema, updateRecordStatus402Schema, updateRecordStatus403Schema, updateRecordStatus404Schema, updateRecordStatus409Schema, updateRecordStatus410Schema, updateResourcePathIntegrationConfigurationIdSchema, updateResourcePathResourceIdSchema, updateResourceResponseSchema, updateResourceSecretsByIdPathIntegrationConfigurationIdSchema, updateResourceSecretsByIdPathResourceIdSchema, updateResourceSecretsByIdResponseSchema, updateResourceSecretsByIdStatus201Schema, updateResourceSecretsByIdStatus400Schema, updateResourceSecretsByIdStatus401Schema, updateResourceSecretsByIdStatus403Schema, updateResourceSecretsByIdStatus404Schema, updateResourceSecretsByIdStatus409Schema, updateResourceSecretsByIdStatus410Schema, updateResourceSecretsByIdStatus422Schema, updateResourceSecretsPathIntegrationConfigurationIdSchema, updateResourceSecretsPathIntegrationProductIdOrSlugSchema, updateResourceSecretsPathResourceIdSchema, updateResourceSecretsResponseSchema, updateResourceSecretsStatus201Schema, updateResourceSecretsStatus400Schema, updateResourceSecretsStatus401Schema, updateResourceSecretsStatus403Schema, updateResourceSecretsStatus404Schema, updateResourceSecretsStatus409Schema, updateResourceSecretsStatus410Schema, updateResourceSecretsStatus422Schema, updateResourceStatus200Schema, updateResourceStatus400Schema, updateResourceStatus401Schema, updateResourceStatus403Schema, updateResourceStatus404Schema, updateResourceStatus409Schema, updateResourceStatus410Schema, updateResourceStatus422Schema, updateRollingReleaseConfigPathIdOrNameSchema, updateRollingReleaseConfigQuerySlugSchema, updateRollingReleaseConfigQueryTeamIdSchema, updateRollingReleaseConfigResponseSchema, updateRollingReleaseConfigStatus200Schema, updateRollingReleaseConfigStatus400Schema, updateRollingReleaseConfigStatus401Schema, updateRollingReleaseConfigStatus403Schema, updateRollingReleaseConfigStatus404Schema, updateRollingReleaseConfigStatus410Schema, updateRouteVersionsPathProjectIdSchema, updateRouteVersionsQuerySlugSchema, updateRouteVersionsQueryTeamIdSchema, updateRouteVersionsResponseSchema, updateRouteVersionsStatus200Schema, updateRouteVersionsStatus400Schema, updateRouteVersionsStatus401Schema, updateRouteVersionsStatus403Schema, updateRouteVersionsStatus404Schema, updateRouteVersionsStatus409Schema, updateRouteVersionsStatus410Schema, updateRouteVersionsStatus500Schema, updateSandboxPathNameSchema, updateSandboxQueryProjectIdSchema, updateSandboxQueryResumeSchema, updateSandboxQuerySlugSchema, updateSandboxQueryTeamIdSchema, updateSandboxResponseSchema, updateSandboxStatus200Schema, updateSandboxStatus400Schema, updateSandboxStatus401Schema, updateSandboxStatus402Schema, updateSandboxStatus403Schema, updateSandboxStatus404Schema, updateSandboxStatus409Schema, updateSandboxStatus410Schema, updateSandboxStatus422Schema, updateSandboxStatus429Schema, updateSandboxStatus500Schema, updateSessionNetworkPolicyPathSessionIdSchema, updateSessionNetworkPolicyQuerySlugSchema, updateSessionNetworkPolicyQueryTeamIdSchema, updateSessionNetworkPolicyResponseSchema, updateSessionNetworkPolicyStatus200Schema, updateSessionNetworkPolicyStatus400Schema, updateSessionNetworkPolicyStatus401Schema, updateSessionNetworkPolicyStatus403Schema, updateSessionNetworkPolicyStatus404Schema, updateSessionNetworkPolicyStatus410Schema, updateSessionNetworkPolicyStatus422Schema, updateSessionNetworkPolicyStatus429Schema, updateSessionNetworkPolicyStatus500Schema, updateSharedEnvVariableQuerySlugSchema, updateSharedEnvVariableQueryTeamIdSchema, updateSharedEnvVariableResponseSchema, updateSharedEnvVariableStatus200Schema, updateSharedEnvVariableStatus400Schema, updateSharedEnvVariableStatus401Schema, updateSharedEnvVariableStatus402Schema, updateSharedEnvVariableStatus403Schema, updateSharedEnvVariableStatus410Schema, updateStaticIpsPathIdOrNameSchema, updateStaticIpsQuerySlugSchema, updateStaticIpsQueryTeamIdSchema, updateStaticIpsResponseSchema, updateStaticIpsStatus200Schema, updateStaticIpsStatus400Schema, updateStaticIpsStatus401Schema, updateStaticIpsStatus402Schema, updateStaticIpsStatus403Schema, updateStaticIpsStatus404Schema, updateStaticIpsStatus409Schema, updateStaticIpsStatus410Schema, updateStaticIpsStatus500Schema, updateTeamMemberPathTeamIdSchema, updateTeamMemberPathUidSchema, updateTeamMemberResponseSchema, updateTeamMemberStatus200Schema, updateTeamMemberStatus400Schema, updateTeamMemberStatus401Schema, updateTeamMemberStatus402Schema, updateTeamMemberStatus403Schema, updateTeamMemberStatus404Schema, updateTeamMemberStatus409Schema, updateTeamMemberStatus410Schema, updateTeamMemberStatus500Schema, updateVersionQueryProjectIdSchema, updateVersionQuerySlugSchema, updateVersionQueryTeamIdSchema, updateVersionResponseSchema, updateVersionStatus200Schema, updateVersionStatus400Schema, updateVersionStatus401Schema, updateVersionStatus403Schema, updateVersionStatus404Schema, updateVersionStatus410Schema, updateVersionStatus500Schema, uploadArtifactHeadercontentLengthSchema, uploadArtifactHeaderxArtifactClientCiSchema, uploadArtifactHeaderxArtifactClientInteractiveSchema, uploadArtifactHeaderxArtifactDirtyHashSchema, uploadArtifactHeaderxArtifactDurationSchema, uploadArtifactHeaderxArtifactShaSchema, uploadArtifactHeaderxArtifactTagSchema, uploadArtifactPathHashSchema, uploadArtifactQuerySlugSchema, uploadArtifactQueryTeamIdSchema, uploadArtifactResponseSchema, uploadArtifactStatus202Schema, uploadArtifactStatus400Schema, uploadArtifactStatus401Schema, uploadArtifactStatus402Schema, uploadArtifactStatus403Schema, uploadArtifactStatus410Schema, uploadCertQuerySlugSchema, uploadCertQueryTeamIdSchema, uploadCertResponseSchema, uploadCertStatus200Schema, uploadCertStatus400Schema, uploadCertStatus401Schema, uploadCertStatus402Schema, uploadCertStatus403Schema, uploadCertStatus410Schema, uploadFileHeadercontentLengthSchema, uploadFileHeaderxNowDigestSchema, uploadFileHeaderxNowSizeSchema, uploadFileHeaderxVercelDigestSchema, uploadFileQuerySlugSchema, uploadFileQueryTeamIdSchema, uploadFileResponseSchema, uploadFileStatus200Schema, uploadFileStatus400Schema, uploadFileStatus401Schema, uploadFileStatus403Schema, uploadFileStatus410Schema, uploadFileStatus426Schema, uploadProjectAvatarPathIdOrNameSchema, uploadProjectAvatarQuerySlugSchema, uploadProjectAvatarQueryTeamIdSchema, uploadProjectAvatarResponseSchema, uploadProjectAvatarStatus200Schema, uploadProjectAvatarStatus400Schema, uploadProjectAvatarStatus401Schema, uploadProjectAvatarStatus403Schema, uploadProjectAvatarStatus410Schema, uploadProjectAvatarStatus413Schema, uploadProjectAvatarStatus415Schema, userEventSchema, vcrImageDetailSchema, vcrImageLayerSchema, vcrImageListItemSchema, vcrImageListSchema, vcrRepositoryListSchema, vcrRepositoryPermissionListSchema, vcrRepositoryPermissionSchema, vcrRepositorySchema, vcrTagSchema, vercelBadRequestErrorSchema, vercelBaseErrorSchema, vercelForbiddenErrorSchema, vercelNotFoundErrorSchema, vercelRateLimitErrorSchema, verifyProjectDomainPathDomainSchema, verifyProjectDomainPathIdOrNameSchema, verifyProjectDomainQuerySlugSchema, verifyProjectDomainQueryTeamIdSchema, verifyProjectDomainResponseSchema, verifyProjectDomainStatus200Schema, verifyProjectDomainStatus400Schema, verifyProjectDomainStatus401Schema, verifyProjectDomainStatus403Schema, verifyProjectDomainStatus410Schema, writeSessionFilesHeaderxCwdSchema, writeSessionFilesPathSessionIdSchema, writeSessionFilesQuerySlugSchema, writeSessionFilesQueryTeamIdSchema, writeSessionFilesResponseSchema, writeSessionFilesStatus200Schema, writeSessionFilesStatus400Schema, writeSessionFilesStatus401Schema, writeSessionFilesStatus403Schema, writeSessionFilesStatus404Schema, writeSessionFilesStatus410Schema, writeSessionFilesStatus422Schema, writeSessionFilesStatus429Schema, writeSessionFilesStatus500Schema };
|
|
14457
14830
|
//# sourceMappingURL=schemas.d.mts.map
|