vercel-api-js 1.12.0 → 1.13.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/index.cjs +2 -8
- package/dist/index.d.ts +224 -239
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/{schemas-o2rt4pyr.js → schemas-kwntyl9n.js} +82 -78
- package/dist/{schemas-i3c9gf4z.cjs → schemas-nxmmau12.cjs} +82 -78
- package/dist/schemas.cjs +1 -1
- package/dist/schemas.d.mts +283 -284
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +18 -41
- package/dist/types.d.mts +148 -162
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +18 -35
- package/package.json +1 -1
package/dist/schemas.d.mts
CHANGED
|
@@ -86,8 +86,8 @@ declare const aiGatewayRuleSchema: z.ZodObject<{
|
|
|
86
86
|
ownerId: z.ZodString;
|
|
87
87
|
ruleId: z.ZodString;
|
|
88
88
|
type: z.ZodEnum<{
|
|
89
|
-
rewrite: "rewrite";
|
|
90
89
|
deny: "deny";
|
|
90
|
+
rewrite: "rewrite";
|
|
91
91
|
}>;
|
|
92
92
|
match: z.ZodOptional<z.ZodObject<{
|
|
93
93
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -498,10 +498,12 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
498
498
|
"ai-gateway-api-key-created": "ai-gateway-api-key-created";
|
|
499
499
|
"ai-gateway-api-key-deleted": "ai-gateway-api-key-deleted";
|
|
500
500
|
"ai-gateway-api-key-quota-updated": "ai-gateway-api-key-quota-updated";
|
|
501
|
+
"ai-gateway-auto-reload-updated": "ai-gateway-auto-reload-updated";
|
|
501
502
|
"ai-gateway-budget-default-updated": "ai-gateway-budget-default-updated";
|
|
502
503
|
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created";
|
|
503
504
|
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted";
|
|
504
505
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated";
|
|
506
|
+
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased";
|
|
505
507
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated";
|
|
506
508
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated";
|
|
507
509
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled";
|
|
@@ -687,6 +689,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
687
689
|
"env-variable-read:unknown-source": "env-variable-read:unknown-source";
|
|
688
690
|
"env-variable-read:v0:env:pull": "env-variable-read:v0:env:pull";
|
|
689
691
|
"env-variable-rotated": "env-variable-rotated";
|
|
692
|
+
"experiment-created": "experiment-created";
|
|
693
|
+
"experiment-transitioned": "experiment-transitioned";
|
|
694
|
+
"experiment-updated": "experiment-updated";
|
|
690
695
|
"firewall-bypass-created": "firewall-bypass-created";
|
|
691
696
|
"firewall-bypass-deleted": "firewall-bypass-deleted";
|
|
692
697
|
"firewall-config-modified": "firewall-config-modified";
|
|
@@ -1108,13 +1113,11 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1108
1113
|
observability: "observability";
|
|
1109
1114
|
security: "security";
|
|
1110
1115
|
storage: "storage";
|
|
1111
|
-
v0: "v0";
|
|
1112
|
-
account: "account";
|
|
1113
|
-
project: "project";
|
|
1114
1116
|
integration: "integration";
|
|
1115
1117
|
deployment: "deployment";
|
|
1116
1118
|
domain: "domain";
|
|
1117
1119
|
team: "team";
|
|
1120
|
+
account: "account";
|
|
1118
1121
|
ai: "ai";
|
|
1119
1122
|
"ai-gateway": "ai-gateway";
|
|
1120
1123
|
edge: "edge";
|
|
@@ -1123,6 +1126,8 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1123
1126
|
firewall: "firewall";
|
|
1124
1127
|
network: "network";
|
|
1125
1128
|
other: "other";
|
|
1129
|
+
project: "project";
|
|
1130
|
+
v0: "v0";
|
|
1126
1131
|
"vercel-app": "vercel-app";
|
|
1127
1132
|
workflow: "workflow";
|
|
1128
1133
|
}>>>;
|
|
@@ -1193,8 +1198,8 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1193
1198
|
viaIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1194
1199
|
payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{}, z.core.$strict>, z.ZodObject<{
|
|
1195
1200
|
action: z.ZodEnum<{
|
|
1196
|
-
archived: "archived";
|
|
1197
1201
|
deleted: "deleted";
|
|
1202
|
+
archived: "archived";
|
|
1198
1203
|
created: "created";
|
|
1199
1204
|
unarchived: "unarchived";
|
|
1200
1205
|
updated: "updated";
|
|
@@ -1203,6 +1208,17 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1203
1208
|
slug: z.ZodString;
|
|
1204
1209
|
projectId: z.ZodString;
|
|
1205
1210
|
projectName: z.ZodOptional<z.ZodString>;
|
|
1211
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1212
|
+
action: z.ZodEnum<{
|
|
1213
|
+
created: "created";
|
|
1214
|
+
updated: "updated";
|
|
1215
|
+
transitioned: "transitioned";
|
|
1216
|
+
}>;
|
|
1217
|
+
id: z.ZodString;
|
|
1218
|
+
name: z.ZodString;
|
|
1219
|
+
state: z.ZodString;
|
|
1220
|
+
projectId: z.ZodString;
|
|
1221
|
+
projectName: z.ZodOptional<z.ZodString>;
|
|
1206
1222
|
}, z.core.$strict>, z.ZodObject<{
|
|
1207
1223
|
action: z.ZodEnum<{
|
|
1208
1224
|
deleted: "deleted";
|
|
@@ -1308,9 +1324,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1308
1324
|
budget: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1309
1325
|
limitAmount: z.ZodNumber;
|
|
1310
1326
|
refreshPeriod: z.ZodEnum<{
|
|
1311
|
-
none: "none";
|
|
1312
1327
|
daily: "daily";
|
|
1313
1328
|
monthly: "monthly";
|
|
1329
|
+
none: "none";
|
|
1314
1330
|
weekly: "weekly";
|
|
1315
1331
|
}>;
|
|
1316
1332
|
}, z.core.$strip>>>;
|
|
@@ -1328,9 +1344,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1328
1344
|
budget: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1329
1345
|
limitAmount: z.ZodNumber;
|
|
1330
1346
|
refreshPeriod: z.ZodEnum<{
|
|
1331
|
-
none: "none";
|
|
1332
1347
|
daily: "daily";
|
|
1333
1348
|
monthly: "monthly";
|
|
1349
|
+
none: "none";
|
|
1334
1350
|
weekly: "weekly";
|
|
1335
1351
|
}>;
|
|
1336
1352
|
}, z.core.$strip>>>;
|
|
@@ -1340,18 +1356,40 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1340
1356
|
enable: "enable";
|
|
1341
1357
|
remove: "remove";
|
|
1342
1358
|
}>;
|
|
1359
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1360
|
+
change: z.ZodEnum<{
|
|
1361
|
+
disable: "disable";
|
|
1362
|
+
enable: "enable";
|
|
1363
|
+
"disable-commitment": "disable-commitment";
|
|
1364
|
+
"enable-commitment": "enable-commitment";
|
|
1365
|
+
update: "update";
|
|
1366
|
+
}>;
|
|
1367
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
1368
|
+
minimumBalance: z.ZodString;
|
|
1369
|
+
targetBalance: z.ZodString;
|
|
1370
|
+
maximumMonthlySpend: z.ZodNullable<z.ZodString>;
|
|
1371
|
+
}, z.core.$strip>>;
|
|
1372
|
+
previous: z.ZodOptional<z.ZodObject<{
|
|
1373
|
+
minimumBalance: z.ZodString;
|
|
1374
|
+
targetBalance: z.ZodString;
|
|
1375
|
+
maximumMonthlySpend: z.ZodNullable<z.ZodString>;
|
|
1376
|
+
}, z.core.$strip>>;
|
|
1377
|
+
commitment: z.ZodOptional<z.ZodObject<{
|
|
1378
|
+
maximumMonthlySpend: z.ZodNullable<z.ZodString>;
|
|
1379
|
+
deferredInvoiceTargetBalance: z.ZodString;
|
|
1380
|
+
}, z.core.$strip>>;
|
|
1343
1381
|
}, z.core.$strict>, z.ZodObject<{
|
|
1344
1382
|
scopeType: z.ZodEnum<{
|
|
1345
|
-
project: "project";
|
|
1346
1383
|
team: "team";
|
|
1384
|
+
project: "project";
|
|
1347
1385
|
"api-key": "api-key";
|
|
1348
1386
|
}>;
|
|
1349
1387
|
budget: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1350
1388
|
limitAmount: z.ZodNumber;
|
|
1351
1389
|
refreshPeriod: z.ZodEnum<{
|
|
1352
|
-
none: "none";
|
|
1353
1390
|
daily: "daily";
|
|
1354
1391
|
monthly: "monthly";
|
|
1392
|
+
none: "none";
|
|
1355
1393
|
weekly: "weekly";
|
|
1356
1394
|
}>;
|
|
1357
1395
|
}, z.core.$strip>>>;
|
|
@@ -1363,17 +1401,17 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1363
1401
|
}>;
|
|
1364
1402
|
}, z.core.$strict>, z.ZodObject<{
|
|
1365
1403
|
scopeType: z.ZodEnum<{
|
|
1366
|
-
project: "project";
|
|
1367
1404
|
team: "team";
|
|
1405
|
+
project: "project";
|
|
1368
1406
|
}>;
|
|
1369
1407
|
projectId: z.ZodOptional<z.ZodString>;
|
|
1370
1408
|
projectName: z.ZodOptional<z.ZodString>;
|
|
1371
1409
|
budget: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1372
1410
|
limitAmount: z.ZodNumber;
|
|
1373
1411
|
refreshPeriod: z.ZodEnum<{
|
|
1374
|
-
none: "none";
|
|
1375
1412
|
daily: "daily";
|
|
1376
1413
|
monthly: "monthly";
|
|
1414
|
+
none: "none";
|
|
1377
1415
|
weekly: "weekly";
|
|
1378
1416
|
}>;
|
|
1379
1417
|
}, z.core.$strip>>>;
|
|
@@ -1389,6 +1427,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
1389
1427
|
name: z.ZodString;
|
|
1390
1428
|
providerSlug: z.ZodString;
|
|
1391
1429
|
}, z.core.$strip>;
|
|
1430
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1431
|
+
amount: z.ZodString;
|
|
1432
|
+
purchaseIntentId: z.ZodString;
|
|
1392
1433
|
}, z.core.$strict>, z.ZodObject<{
|
|
1393
1434
|
enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
1394
1435
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -2452,8 +2493,8 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2452
2493
|
withCache: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
2453
2494
|
provider: z.ZodEnum<{
|
|
2454
2495
|
github: "github";
|
|
2455
|
-
"github-limited": "github-limited";
|
|
2456
2496
|
"github-custom-host": "github-custom-host";
|
|
2497
|
+
"github-limited": "github-limited";
|
|
2457
2498
|
}>;
|
|
2458
2499
|
customHost: z.ZodOptional<z.ZodString>;
|
|
2459
2500
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -2527,8 +2568,8 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2527
2568
|
withCache: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
2528
2569
|
provider: z.ZodEnum<{
|
|
2529
2570
|
github: "github";
|
|
2530
|
-
"github-limited": "github-limited";
|
|
2531
2571
|
"github-custom-host": "github-custom-host";
|
|
2572
|
+
"github-limited": "github-limited";
|
|
2532
2573
|
}>;
|
|
2533
2574
|
customHost: z.ZodOptional<z.ZodString>;
|
|
2534
2575
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -2560,8 +2601,8 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2560
2601
|
}, z.core.$strip>>;
|
|
2561
2602
|
provider: z.ZodEnum<{
|
|
2562
2603
|
github: "github";
|
|
2563
|
-
"github-limited": "github-limited";
|
|
2564
2604
|
"github-custom-host": "github-custom-host";
|
|
2605
|
+
"github-limited": "github-limited";
|
|
2565
2606
|
}>;
|
|
2566
2607
|
customHost: z.ZodOptional<z.ZodString>;
|
|
2567
2608
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -2873,9 +2914,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2873
2914
|
gitSources: "gitSources";
|
|
2874
2915
|
}>;
|
|
2875
2916
|
ruleProvenance: z.ZodEnum<{
|
|
2876
|
-
project: "project";
|
|
2877
2917
|
default: "default";
|
|
2878
2918
|
team: "team";
|
|
2919
|
+
project: "project";
|
|
2879
2920
|
}>;
|
|
2880
2921
|
}, z.core.$strict>, z.ZodObject<{
|
|
2881
2922
|
deploymentId: z.ZodString;
|
|
@@ -2899,9 +2940,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
2899
2940
|
mxPriority: z.ZodOptional<z.ZodNumber>;
|
|
2900
2941
|
}, z.core.$strict>, z.ZodObject<{
|
|
2901
2942
|
action: z.ZodEnum<{
|
|
2943
|
+
update: "update";
|
|
2902
2944
|
add: "add";
|
|
2903
2945
|
delete: "delete";
|
|
2904
|
-
update: "update";
|
|
2905
2946
|
}>;
|
|
2906
2947
|
initiator: z.ZodEnum<{
|
|
2907
2948
|
user: "user";
|
|
@@ -3139,9 +3180,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3139
3180
|
sensitive: "sensitive";
|
|
3140
3181
|
}>>;
|
|
3141
3182
|
target: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3142
|
-
production: "production";
|
|
3143
|
-
preview: "preview";
|
|
3144
3183
|
development: "development";
|
|
3184
|
+
preview: "preview";
|
|
3185
|
+
production: "production";
|
|
3145
3186
|
}>>>;
|
|
3146
3187
|
applyToAllCustomEnvironments: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
3147
3188
|
customEnvironmentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3171,9 +3212,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3171
3212
|
sensitive: "sensitive";
|
|
3172
3213
|
}>>;
|
|
3173
3214
|
target: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3174
|
-
production: "production";
|
|
3175
|
-
preview: "preview";
|
|
3176
3215
|
development: "development";
|
|
3216
|
+
preview: "preview";
|
|
3217
|
+
production: "production";
|
|
3177
3218
|
}>>>;
|
|
3178
3219
|
applyToAllCustomEnvironments: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
3179
3220
|
customEnvironmentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3201,9 +3242,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3201
3242
|
sensitive: "sensitive";
|
|
3202
3243
|
}>>;
|
|
3203
3244
|
target: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3204
|
-
production: "production";
|
|
3205
|
-
preview: "preview";
|
|
3206
3245
|
development: "development";
|
|
3246
|
+
preview: "preview";
|
|
3247
|
+
production: "production";
|
|
3207
3248
|
}>>>;
|
|
3208
3249
|
applyToAllCustomEnvironments: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
3209
3250
|
customEnvironmentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -3216,14 +3257,14 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3216
3257
|
key: z.ZodOptional<z.ZodString>;
|
|
3217
3258
|
newKey: z.ZodOptional<z.ZodString>;
|
|
3218
3259
|
oldTarget: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3219
|
-
production: "production";
|
|
3220
|
-
preview: "preview";
|
|
3221
3260
|
development: "development";
|
|
3261
|
+
preview: "preview";
|
|
3262
|
+
production: "production";
|
|
3222
3263
|
}>>>;
|
|
3223
3264
|
newTarget: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3224
|
-
production: "production";
|
|
3225
|
-
preview: "preview";
|
|
3226
3265
|
development: "development";
|
|
3266
|
+
preview: "preview";
|
|
3267
|
+
production: "production";
|
|
3227
3268
|
}>>>;
|
|
3228
3269
|
oldType: z.ZodOptional<z.ZodString>;
|
|
3229
3270
|
newType: z.ZodOptional<z.ZodString>;
|
|
@@ -3296,9 +3337,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3296
3337
|
}>;
|
|
3297
3338
|
}, z.core.$strict>, z.ZodObject<{
|
|
3298
3339
|
provider: z.ZodEnum<{
|
|
3340
|
+
bitbucket: "bitbucket";
|
|
3299
3341
|
github: "github";
|
|
3300
3342
|
gitlab: "gitlab";
|
|
3301
|
-
bitbucket: "bitbucket";
|
|
3302
3343
|
}>;
|
|
3303
3344
|
actorLogin: z.ZodNullable<z.ZodString>;
|
|
3304
3345
|
actorAccountId: z.ZodNullable<z.ZodString>;
|
|
@@ -3396,9 +3437,9 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3396
3437
|
createdAt: z.ZodNumber;
|
|
3397
3438
|
credentials: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3398
3439
|
type: z.ZodEnum<{
|
|
3399
|
-
gitlab: "gitlab";
|
|
3400
|
-
bitbucket: "bitbucket";
|
|
3401
3440
|
chatgpt: "chatgpt";
|
|
3441
|
+
bitbucket: "bitbucket";
|
|
3442
|
+
gitlab: "gitlab";
|
|
3402
3443
|
vercel: "vercel";
|
|
3403
3444
|
apple: "apple";
|
|
3404
3445
|
"github-oauth": "github-oauth";
|
|
@@ -3437,13 +3478,13 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3437
3478
|
importFlowGitNamespace: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
3438
3479
|
importFlowGitNamespaceId: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
3439
3480
|
importFlowGitProvider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
3481
|
+
bitbucket: "bitbucket";
|
|
3440
3482
|
github: "github";
|
|
3441
|
-
"github-limited": "github-limited";
|
|
3442
3483
|
"github-custom-host": "github-custom-host";
|
|
3484
|
+
"github-limited": "github-limited";
|
|
3443
3485
|
gitlab: "gitlab";
|
|
3444
|
-
bitbucket: "bitbucket";
|
|
3445
|
-
"cursor-origin": "cursor-origin";
|
|
3446
3486
|
vercel: "vercel";
|
|
3487
|
+
"cursor-origin": "cursor-origin";
|
|
3447
3488
|
}>>>;
|
|
3448
3489
|
preferredScopesAndGitNamespaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3449
3490
|
scopeId: z.ZodString;
|
|
@@ -3696,27 +3737,27 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3696
3737
|
teamId: z.ZodString;
|
|
3697
3738
|
createdAt: z.ZodNumber;
|
|
3698
3739
|
role: z.ZodEnum<{
|
|
3699
|
-
|
|
3700
|
-
|
|
3740
|
+
BILLING: "BILLING";
|
|
3741
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
3701
3742
|
DEVELOPER: "DEVELOPER";
|
|
3743
|
+
MEMBER: "MEMBER";
|
|
3744
|
+
OWNER: "OWNER";
|
|
3702
3745
|
SECURITY: "SECURITY";
|
|
3703
|
-
BILLING: "BILLING";
|
|
3704
3746
|
VIEWER: "VIEWER";
|
|
3705
3747
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
3706
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
3707
3748
|
}>;
|
|
3708
3749
|
confirmed: z.ZodLiteral<true>;
|
|
3709
3750
|
confirmedAt: z.ZodNumber;
|
|
3710
3751
|
accessRequestedAt: z.ZodOptional<z.ZodNumber>;
|
|
3711
3752
|
teamRoles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3712
|
-
|
|
3713
|
-
|
|
3753
|
+
BILLING: "BILLING";
|
|
3754
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
3714
3755
|
DEVELOPER: "DEVELOPER";
|
|
3756
|
+
MEMBER: "MEMBER";
|
|
3757
|
+
OWNER: "OWNER";
|
|
3715
3758
|
SECURITY: "SECURITY";
|
|
3716
|
-
BILLING: "BILLING";
|
|
3717
3759
|
VIEWER: "VIEWER";
|
|
3718
3760
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
3719
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
3720
3761
|
}>>>;
|
|
3721
3762
|
teamPermissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3722
3763
|
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf";
|
|
@@ -3741,10 +3782,10 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
3741
3782
|
joinedFrom: z.ZodOptional<z.ZodObject<{
|
|
3742
3783
|
origin: z.ZodEnum<{
|
|
3743
3784
|
teams: "teams";
|
|
3785
|
+
link: "link";
|
|
3786
|
+
bitbucket: "bitbucket";
|
|
3744
3787
|
github: "github";
|
|
3745
3788
|
gitlab: "gitlab";
|
|
3746
|
-
bitbucket: "bitbucket";
|
|
3747
|
-
link: "link";
|
|
3748
3789
|
"account-update": "account-update";
|
|
3749
3790
|
dsync: "dsync";
|
|
3750
3791
|
feedback: "feedback";
|
|
@@ -4523,12 +4564,12 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4523
4564
|
integrationName: z.ZodOptional<z.ZodString>;
|
|
4524
4565
|
}, z.core.$strict>, z.ZodObject<{
|
|
4525
4566
|
provider: z.ZodEnum<{
|
|
4567
|
+
chatgpt: "chatgpt";
|
|
4568
|
+
bitbucket: "bitbucket";
|
|
4526
4569
|
github: "github";
|
|
4527
|
-
"github-limited": "github-limited";
|
|
4528
4570
|
"github-custom-host": "github-custom-host";
|
|
4571
|
+
"github-limited": "github-limited";
|
|
4529
4572
|
gitlab: "gitlab";
|
|
4530
|
-
bitbucket: "bitbucket";
|
|
4531
|
-
chatgpt: "chatgpt";
|
|
4532
4573
|
apple: "apple";
|
|
4533
4574
|
google: "google";
|
|
4534
4575
|
saml: "saml";
|
|
@@ -4536,12 +4577,12 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4536
4577
|
login: z.ZodString;
|
|
4537
4578
|
}, z.core.$strict>, z.ZodObject<{
|
|
4538
4579
|
provider: z.ZodEnum<{
|
|
4580
|
+
chatgpt: "chatgpt";
|
|
4581
|
+
bitbucket: "bitbucket";
|
|
4539
4582
|
github: "github";
|
|
4540
|
-
"github-limited": "github-limited";
|
|
4541
4583
|
"github-custom-host": "github-custom-host";
|
|
4584
|
+
"github-limited": "github-limited";
|
|
4542
4585
|
gitlab: "gitlab";
|
|
4543
|
-
bitbucket: "bitbucket";
|
|
4544
|
-
chatgpt: "chatgpt";
|
|
4545
4586
|
apple: "apple";
|
|
4546
4587
|
google: "google";
|
|
4547
4588
|
saml: "saml";
|
|
@@ -4573,11 +4614,11 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4573
4614
|
ssoType: z.ZodOptional<z.ZodString>;
|
|
4574
4615
|
factors: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodObject<{
|
|
4575
4616
|
origin: z.ZodEnum<{
|
|
4576
|
-
github: "github";
|
|
4577
|
-
gitlab: "gitlab";
|
|
4578
|
-
bitbucket: "bitbucket";
|
|
4579
4617
|
email: "email";
|
|
4580
4618
|
chatgpt: "chatgpt";
|
|
4619
|
+
bitbucket: "bitbucket";
|
|
4620
|
+
github: "github";
|
|
4621
|
+
gitlab: "gitlab";
|
|
4581
4622
|
apple: "apple";
|
|
4582
4623
|
google: "google";
|
|
4583
4624
|
saml: "saml";
|
|
@@ -4594,11 +4635,11 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4594
4635
|
ssoType: z.ZodOptional<z.ZodString>;
|
|
4595
4636
|
}, z.core.$strict>>, z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4596
4637
|
origin: z.ZodEnum<{
|
|
4597
|
-
github: "github";
|
|
4598
|
-
gitlab: "gitlab";
|
|
4599
|
-
bitbucket: "bitbucket";
|
|
4600
4638
|
email: "email";
|
|
4601
4639
|
chatgpt: "chatgpt";
|
|
4640
|
+
bitbucket: "bitbucket";
|
|
4641
|
+
github: "github";
|
|
4642
|
+
gitlab: "gitlab";
|
|
4602
4643
|
apple: "apple";
|
|
4603
4644
|
google: "google";
|
|
4604
4645
|
saml: "saml";
|
|
@@ -4742,24 +4783,24 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4742
4783
|
groupName: z.ZodString;
|
|
4743
4784
|
next: z.ZodObject<{
|
|
4744
4785
|
default: z.ZodOptional<z.ZodEnum<{
|
|
4745
|
-
|
|
4746
|
-
|
|
4786
|
+
BILLING: "BILLING";
|
|
4787
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
4747
4788
|
DEVELOPER: "DEVELOPER";
|
|
4789
|
+
MEMBER: "MEMBER";
|
|
4790
|
+
OWNER: "OWNER";
|
|
4748
4791
|
SECURITY: "SECURITY";
|
|
4749
|
-
BILLING: "BILLING";
|
|
4750
4792
|
VIEWER: "VIEWER";
|
|
4751
4793
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
4752
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
4753
4794
|
}>>;
|
|
4754
4795
|
roles: z.ZodObject<{}, z.core.$catchall<z.ZodEnum<{
|
|
4755
|
-
|
|
4756
|
-
|
|
4796
|
+
BILLING: "BILLING";
|
|
4797
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
4757
4798
|
DEVELOPER: "DEVELOPER";
|
|
4799
|
+
MEMBER: "MEMBER";
|
|
4800
|
+
OWNER: "OWNER";
|
|
4758
4801
|
SECURITY: "SECURITY";
|
|
4759
|
-
BILLING: "BILLING";
|
|
4760
4802
|
VIEWER: "VIEWER";
|
|
4761
4803
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
4762
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
4763
4804
|
}>>>;
|
|
4764
4805
|
}, z.core.$strip>;
|
|
4765
4806
|
organizationId: z.ZodString;
|
|
@@ -4975,24 +5016,24 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4975
5016
|
plan: z.ZodString;
|
|
4976
5017
|
removedUsers: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodObject<{
|
|
4977
5018
|
role: z.ZodEnum<{
|
|
4978
|
-
|
|
4979
|
-
|
|
5019
|
+
BILLING: "BILLING";
|
|
5020
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
4980
5021
|
DEVELOPER: "DEVELOPER";
|
|
5022
|
+
MEMBER: "MEMBER";
|
|
5023
|
+
OWNER: "OWNER";
|
|
4981
5024
|
SECURITY: "SECURITY";
|
|
4982
|
-
BILLING: "BILLING";
|
|
4983
5025
|
VIEWER: "VIEWER";
|
|
4984
5026
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
4985
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
4986
5027
|
}>;
|
|
4987
5028
|
confirmed: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
4988
5029
|
confirmedAt: z.ZodOptional<z.ZodNumber>;
|
|
4989
5030
|
joinedFrom: z.ZodOptional<z.ZodObject<{
|
|
4990
5031
|
origin: z.ZodEnum<{
|
|
4991
5032
|
teams: "teams";
|
|
5033
|
+
link: "link";
|
|
5034
|
+
bitbucket: "bitbucket";
|
|
4992
5035
|
github: "github";
|
|
4993
5036
|
gitlab: "gitlab";
|
|
4994
|
-
bitbucket: "bitbucket";
|
|
4995
|
-
link: "link";
|
|
4996
5037
|
"account-update": "account-update";
|
|
4997
5038
|
dsync: "dsync";
|
|
4998
5039
|
feedback: "feedback";
|
|
@@ -5034,24 +5075,24 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
5034
5075
|
plan: z.ZodString;
|
|
5035
5076
|
removedUsers: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodObject<{
|
|
5036
5077
|
role: z.ZodEnum<{
|
|
5037
|
-
|
|
5038
|
-
|
|
5078
|
+
BILLING: "BILLING";
|
|
5079
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
5039
5080
|
DEVELOPER: "DEVELOPER";
|
|
5081
|
+
MEMBER: "MEMBER";
|
|
5082
|
+
OWNER: "OWNER";
|
|
5040
5083
|
SECURITY: "SECURITY";
|
|
5041
|
-
BILLING: "BILLING";
|
|
5042
5084
|
VIEWER: "VIEWER";
|
|
5043
5085
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
5044
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
5045
5086
|
}>;
|
|
5046
5087
|
confirmed: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
5047
5088
|
confirmedAt: z.ZodOptional<z.ZodNumber>;
|
|
5048
5089
|
joinedFrom: z.ZodOptional<z.ZodObject<{
|
|
5049
5090
|
origin: z.ZodEnum<{
|
|
5050
5091
|
teams: "teams";
|
|
5092
|
+
link: "link";
|
|
5093
|
+
bitbucket: "bitbucket";
|
|
5051
5094
|
github: "github";
|
|
5052
5095
|
gitlab: "gitlab";
|
|
5053
|
-
bitbucket: "bitbucket";
|
|
5054
|
-
link: "link";
|
|
5055
5096
|
"account-update": "account-update";
|
|
5056
5097
|
dsync: "dsync";
|
|
5057
5098
|
feedback: "feedback";
|
|
@@ -5407,26 +5448,26 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
5407
5448
|
projectName: z.ZodString;
|
|
5408
5449
|
previous: z.ZodOptional<z.ZodObject<{
|
|
5409
5450
|
gitProvider: z.ZodEnum<{
|
|
5451
|
+
bitbucket: "bitbucket";
|
|
5410
5452
|
github: "github";
|
|
5411
|
-
"github-limited": "github-limited";
|
|
5412
5453
|
"github-custom-host": "github-custom-host";
|
|
5454
|
+
"github-limited": "github-limited";
|
|
5413
5455
|
gitlab: "gitlab";
|
|
5414
|
-
bitbucket: "bitbucket";
|
|
5415
|
-
"cursor-origin": "cursor-origin";
|
|
5416
5456
|
vercel: "vercel";
|
|
5457
|
+
"cursor-origin": "cursor-origin";
|
|
5417
5458
|
}>;
|
|
5418
5459
|
gitRepoId: z.ZodString;
|
|
5419
5460
|
gitRepositoryName: z.ZodString;
|
|
5420
5461
|
}, z.core.$strip>>;
|
|
5421
5462
|
next: z.ZodObject<{
|
|
5422
5463
|
gitProvider: z.ZodEnum<{
|
|
5464
|
+
bitbucket: "bitbucket";
|
|
5423
5465
|
github: "github";
|
|
5424
|
-
"github-limited": "github-limited";
|
|
5425
5466
|
"github-custom-host": "github-custom-host";
|
|
5467
|
+
"github-limited": "github-limited";
|
|
5426
5468
|
gitlab: "gitlab";
|
|
5427
|
-
bitbucket: "bitbucket";
|
|
5428
|
-
"cursor-origin": "cursor-origin";
|
|
5429
5469
|
vercel: "vercel";
|
|
5470
|
+
"cursor-origin": "cursor-origin";
|
|
5430
5471
|
}>;
|
|
5431
5472
|
gitRepoId: z.ZodString;
|
|
5432
5473
|
gitRepositoryName: z.ZodString;
|
|
@@ -5435,13 +5476,13 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
5435
5476
|
projectId: z.ZodString;
|
|
5436
5477
|
projectName: z.ZodString;
|
|
5437
5478
|
gitProvider: z.ZodEnum<{
|
|
5479
|
+
bitbucket: "bitbucket";
|
|
5438
5480
|
github: "github";
|
|
5439
|
-
"github-limited": "github-limited";
|
|
5440
5481
|
"github-custom-host": "github-custom-host";
|
|
5482
|
+
"github-limited": "github-limited";
|
|
5441
5483
|
gitlab: "gitlab";
|
|
5442
|
-
bitbucket: "bitbucket";
|
|
5443
|
-
"cursor-origin": "cursor-origin";
|
|
5444
5484
|
vercel: "vercel";
|
|
5485
|
+
"cursor-origin": "cursor-origin";
|
|
5445
5486
|
}>;
|
|
5446
5487
|
gitRepoId: z.ZodString;
|
|
5447
5488
|
gitRepositoryName: z.ZodString;
|
|
@@ -5899,15 +5940,15 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
5899
5940
|
projectId: z.ZodString;
|
|
5900
5941
|
projectName: z.ZodString;
|
|
5901
5942
|
trustedIps: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
5902
|
-
production: "production";
|
|
5903
5943
|
preview: "preview";
|
|
5944
|
+
production: "production";
|
|
5904
5945
|
all: "all";
|
|
5905
5946
|
all_except_custom_domains: "all_except_custom_domains";
|
|
5906
5947
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews";
|
|
5907
5948
|
}>>>;
|
|
5908
5949
|
oldTrustedIps: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
5909
|
-
production: "production";
|
|
5910
5950
|
preview: "preview";
|
|
5951
|
+
production: "production";
|
|
5911
5952
|
all: "all";
|
|
5912
5953
|
all_except_custom_domains: "all_except_custom_domains";
|
|
5913
5954
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews";
|
|
@@ -6039,11 +6080,11 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6039
6080
|
ssoType: z.ZodOptional<z.ZodString>;
|
|
6040
6081
|
factors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6041
6082
|
origin: z.ZodEnum<{
|
|
6042
|
-
github: "github";
|
|
6043
|
-
gitlab: "gitlab";
|
|
6044
|
-
bitbucket: "bitbucket";
|
|
6045
6083
|
email: "email";
|
|
6046
6084
|
chatgpt: "chatgpt";
|
|
6085
|
+
bitbucket: "bitbucket";
|
|
6086
|
+
github: "github";
|
|
6087
|
+
gitlab: "gitlab";
|
|
6047
6088
|
apple: "apple";
|
|
6048
6089
|
google: "google";
|
|
6049
6090
|
saml: "saml";
|
|
@@ -6366,14 +6407,14 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6366
6407
|
}, z.core.$strip>>>;
|
|
6367
6408
|
removedUsers: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodObject<{
|
|
6368
6409
|
role: z.ZodEnum<{
|
|
6369
|
-
|
|
6370
|
-
|
|
6410
|
+
BILLING: "BILLING";
|
|
6411
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6371
6412
|
DEVELOPER: "DEVELOPER";
|
|
6413
|
+
MEMBER: "MEMBER";
|
|
6414
|
+
OWNER: "OWNER";
|
|
6372
6415
|
SECURITY: "SECURITY";
|
|
6373
|
-
BILLING: "BILLING";
|
|
6374
6416
|
VIEWER: "VIEWER";
|
|
6375
6417
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
6376
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6377
6418
|
}>;
|
|
6378
6419
|
confirmed: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
6379
6420
|
confirmedAt: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6391,13 +6432,13 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6391
6432
|
projectName: z.ZodString;
|
|
6392
6433
|
enabled: z.ZodNullable<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
6393
6434
|
environment: z.ZodEnum<{
|
|
6394
|
-
production: "production";
|
|
6395
6435
|
preview: "preview";
|
|
6436
|
+
production: "production";
|
|
6396
6437
|
}>;
|
|
6397
6438
|
}, z.core.$strict>, z.ZodObject<{
|
|
6398
6439
|
environment: z.ZodEnum<{
|
|
6399
|
-
production: "production";
|
|
6400
6440
|
preview: "preview";
|
|
6441
|
+
production: "production";
|
|
6401
6442
|
}>;
|
|
6402
6443
|
enabled: z.ZodEnum<{
|
|
6403
6444
|
default: "default";
|
|
@@ -6452,14 +6493,14 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6452
6493
|
bitbucketUsername: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6453
6494
|
directoryType: z.ZodOptional<z.ZodString>;
|
|
6454
6495
|
role: z.ZodOptional<z.ZodEnum<{
|
|
6455
|
-
|
|
6456
|
-
|
|
6496
|
+
BILLING: "BILLING";
|
|
6497
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6457
6498
|
DEVELOPER: "DEVELOPER";
|
|
6499
|
+
MEMBER: "MEMBER";
|
|
6500
|
+
OWNER: "OWNER";
|
|
6458
6501
|
SECURITY: "SECURITY";
|
|
6459
|
-
BILLING: "BILLING";
|
|
6460
6502
|
VIEWER: "VIEWER";
|
|
6461
6503
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
6462
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6463
6504
|
}>>;
|
|
6464
6505
|
reason: z.ZodOptional<z.ZodString>;
|
|
6465
6506
|
previousPlan: z.ZodOptional<z.ZodEnum<{
|
|
@@ -6514,10 +6555,10 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6514
6555
|
bitbucketUsername: z.ZodOptional<z.ZodString>;
|
|
6515
6556
|
source: z.ZodOptional<z.ZodEnum<{
|
|
6516
6557
|
teams: "teams";
|
|
6558
|
+
link: "link";
|
|
6559
|
+
bitbucket: "bitbucket";
|
|
6517
6560
|
github: "github";
|
|
6518
6561
|
gitlab: "gitlab";
|
|
6519
|
-
bitbucket: "bitbucket";
|
|
6520
|
-
link: "link";
|
|
6521
6562
|
"account-update": "account-update";
|
|
6522
6563
|
dsync: "dsync";
|
|
6523
6564
|
feedback: "feedback";
|
|
@@ -6543,24 +6584,24 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6543
6584
|
role: z.ZodOptional<z.ZodString>;
|
|
6544
6585
|
previousRole: z.ZodString;
|
|
6545
6586
|
previousTeamRoles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6546
|
-
|
|
6547
|
-
|
|
6587
|
+
BILLING: "BILLING";
|
|
6588
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6548
6589
|
DEVELOPER: "DEVELOPER";
|
|
6590
|
+
MEMBER: "MEMBER";
|
|
6591
|
+
OWNER: "OWNER";
|
|
6549
6592
|
SECURITY: "SECURITY";
|
|
6550
|
-
BILLING: "BILLING";
|
|
6551
6593
|
VIEWER: "VIEWER";
|
|
6552
6594
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
6553
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6554
6595
|
}>>>;
|
|
6555
6596
|
teamRoles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6556
|
-
|
|
6557
|
-
|
|
6597
|
+
BILLING: "BILLING";
|
|
6598
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6558
6599
|
DEVELOPER: "DEVELOPER";
|
|
6600
|
+
MEMBER: "MEMBER";
|
|
6601
|
+
OWNER: "OWNER";
|
|
6559
6602
|
SECURITY: "SECURITY";
|
|
6560
|
-
BILLING: "BILLING";
|
|
6561
6603
|
VIEWER: "VIEWER";
|
|
6562
6604
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
6563
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6564
6605
|
}>>>;
|
|
6565
6606
|
previousTeamPermissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6566
6607
|
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf";
|
|
@@ -6683,26 +6724,26 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6683
6724
|
previous: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodUnion<readonly [z.ZodObject<{
|
|
6684
6725
|
accessGroupId: z.ZodString;
|
|
6685
6726
|
}, z.core.$strict>, z.ZodEnum<{
|
|
6686
|
-
|
|
6687
|
-
|
|
6727
|
+
BILLING: "BILLING";
|
|
6728
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6688
6729
|
DEVELOPER: "DEVELOPER";
|
|
6730
|
+
MEMBER: "MEMBER";
|
|
6731
|
+
OWNER: "OWNER";
|
|
6689
6732
|
SECURITY: "SECURITY";
|
|
6690
|
-
BILLING: "BILLING";
|
|
6691
6733
|
VIEWER: "VIEWER";
|
|
6692
6734
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
6693
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6694
6735
|
}>]>>>>;
|
|
6695
6736
|
next: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodUnion<readonly [z.ZodObject<{
|
|
6696
6737
|
accessGroupId: z.ZodString;
|
|
6697
6738
|
}, z.core.$strict>, z.ZodEnum<{
|
|
6698
|
-
|
|
6699
|
-
|
|
6739
|
+
BILLING: "BILLING";
|
|
6740
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6700
6741
|
DEVELOPER: "DEVELOPER";
|
|
6742
|
+
MEMBER: "MEMBER";
|
|
6743
|
+
OWNER: "OWNER";
|
|
6701
6744
|
SECURITY: "SECURITY";
|
|
6702
|
-
BILLING: "BILLING";
|
|
6703
6745
|
VIEWER: "VIEWER";
|
|
6704
6746
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
6705
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
6706
6747
|
}>]>>>>;
|
|
6707
6748
|
}, z.core.$strict>, z.ZodObject<{
|
|
6708
6749
|
domain: z.ZodString;
|
|
@@ -6734,8 +6775,8 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
6734
6775
|
}>;
|
|
6735
6776
|
rate: z.ZodNumber;
|
|
6736
6777
|
env: z.ZodOptional<z.ZodEnum<{
|
|
6737
|
-
production: "production";
|
|
6738
6778
|
preview: "preview";
|
|
6779
|
+
production: "production";
|
|
6739
6780
|
}>>;
|
|
6740
6781
|
requestPath: z.ZodOptional<z.ZodString>;
|
|
6741
6782
|
}, z.core.$strip>>>;
|
|
@@ -7040,12 +7081,12 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
7040
7081
|
rtTTL: z.ZodOptional<z.ZodNumber>;
|
|
7041
7082
|
scope: z.ZodString;
|
|
7042
7083
|
authMethod: z.ZodEnum<{
|
|
7043
|
-
github: "github";
|
|
7044
|
-
gitlab: "gitlab";
|
|
7045
|
-
bitbucket: "bitbucket";
|
|
7046
7084
|
email: "email";
|
|
7047
7085
|
app: "app";
|
|
7048
7086
|
chatgpt: "chatgpt";
|
|
7087
|
+
bitbucket: "bitbucket";
|
|
7088
|
+
github: "github";
|
|
7089
|
+
gitlab: "gitlab";
|
|
7049
7090
|
apple: "apple";
|
|
7050
7091
|
google: "google";
|
|
7051
7092
|
saml: "saml";
|
|
@@ -7180,12 +7221,12 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
7180
7221
|
tokenSuffix: z.ZodOptional<z.ZodString>;
|
|
7181
7222
|
tokenName: z.ZodString;
|
|
7182
7223
|
origin: z.ZodEnum<{
|
|
7183
|
-
github: "github";
|
|
7184
|
-
gitlab: "gitlab";
|
|
7185
|
-
bitbucket: "bitbucket";
|
|
7186
7224
|
email: "email";
|
|
7187
7225
|
app: "app";
|
|
7188
7226
|
chatgpt: "chatgpt";
|
|
7227
|
+
bitbucket: "bitbucket";
|
|
7228
|
+
github: "github";
|
|
7229
|
+
gitlab: "gitlab";
|
|
7189
7230
|
apple: "apple";
|
|
7190
7231
|
google: "google";
|
|
7191
7232
|
saml: "saml";
|
|
@@ -7200,8 +7241,8 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
7200
7241
|
}>;
|
|
7201
7242
|
scope: z.ZodEnum<{
|
|
7202
7243
|
user: "user";
|
|
7203
|
-
project: "project";
|
|
7204
7244
|
team: "team";
|
|
7245
|
+
project: "project";
|
|
7205
7246
|
}>;
|
|
7206
7247
|
teamId: z.ZodOptional<z.ZodString>;
|
|
7207
7248
|
teamSlug: z.ZodOptional<z.ZodString>;
|
|
@@ -7240,12 +7281,12 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
7240
7281
|
tokenName: z.ZodString;
|
|
7241
7282
|
actorTokenId: z.ZodString;
|
|
7242
7283
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
7243
|
-
github: "github";
|
|
7244
|
-
gitlab: "gitlab";
|
|
7245
|
-
bitbucket: "bitbucket";
|
|
7246
7284
|
email: "email";
|
|
7247
7285
|
app: "app";
|
|
7248
7286
|
chatgpt: "chatgpt";
|
|
7287
|
+
bitbucket: "bitbucket";
|
|
7288
|
+
github: "github";
|
|
7289
|
+
gitlab: "gitlab";
|
|
7249
7290
|
apple: "apple";
|
|
7250
7291
|
google: "google";
|
|
7251
7292
|
saml: "saml";
|
|
@@ -7344,10 +7385,12 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
7344
7385
|
"ai-gateway-api-key-created": "ai-gateway-api-key-created";
|
|
7345
7386
|
"ai-gateway-api-key-deleted": "ai-gateway-api-key-deleted";
|
|
7346
7387
|
"ai-gateway-api-key-quota-updated": "ai-gateway-api-key-quota-updated";
|
|
7388
|
+
"ai-gateway-auto-reload-updated": "ai-gateway-auto-reload-updated";
|
|
7347
7389
|
"ai-gateway-budget-default-updated": "ai-gateway-budget-default-updated";
|
|
7348
7390
|
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created";
|
|
7349
7391
|
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted";
|
|
7350
7392
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated";
|
|
7393
|
+
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased";
|
|
7351
7394
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated";
|
|
7352
7395
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated";
|
|
7353
7396
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled";
|
|
@@ -7533,6 +7576,9 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
7533
7576
|
"env-variable-read:unknown-source": "env-variable-read:unknown-source";
|
|
7534
7577
|
"env-variable-read:v0:env:pull": "env-variable-read:v0:env:pull";
|
|
7535
7578
|
"env-variable-rotated": "env-variable-rotated";
|
|
7579
|
+
"experiment-created": "experiment-created";
|
|
7580
|
+
"experiment-transitioned": "experiment-transitioned";
|
|
7581
|
+
"experiment-updated": "experiment-updated";
|
|
7536
7582
|
"firewall-bypass-created": "firewall-bypass-created";
|
|
7537
7583
|
"firewall-bypass-deleted": "firewall-bypass-deleted";
|
|
7538
7584
|
"firewall-config-modified": "firewall-config-modified";
|
|
@@ -7955,13 +8001,11 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
7955
8001
|
observability: "observability";
|
|
7956
8002
|
security: "security";
|
|
7957
8003
|
storage: "storage";
|
|
7958
|
-
v0: "v0";
|
|
7959
|
-
account: "account";
|
|
7960
|
-
project: "project";
|
|
7961
8004
|
integration: "integration";
|
|
7962
8005
|
deployment: "deployment";
|
|
7963
8006
|
domain: "domain";
|
|
7964
8007
|
team: "team";
|
|
8008
|
+
account: "account";
|
|
7965
8009
|
ai: "ai";
|
|
7966
8010
|
"ai-gateway": "ai-gateway";
|
|
7967
8011
|
edge: "edge";
|
|
@@ -7970,6 +8014,8 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
7970
8014
|
firewall: "firewall";
|
|
7971
8015
|
network: "network";
|
|
7972
8016
|
other: "other";
|
|
8017
|
+
project: "project";
|
|
8018
|
+
v0: "v0";
|
|
7973
8019
|
"vercel-app": "vercel-app";
|
|
7974
8020
|
workflow: "workflow";
|
|
7975
8021
|
}>>;
|
|
@@ -8006,10 +8052,12 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
8006
8052
|
"ai-gateway-api-key-created": "ai-gateway-api-key-created";
|
|
8007
8053
|
"ai-gateway-api-key-deleted": "ai-gateway-api-key-deleted";
|
|
8008
8054
|
"ai-gateway-api-key-quota-updated": "ai-gateway-api-key-quota-updated";
|
|
8055
|
+
"ai-gateway-auto-reload-updated": "ai-gateway-auto-reload-updated";
|
|
8009
8056
|
"ai-gateway-budget-default-updated": "ai-gateway-budget-default-updated";
|
|
8010
8057
|
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created";
|
|
8011
8058
|
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted";
|
|
8012
8059
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated";
|
|
8060
|
+
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased";
|
|
8013
8061
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated";
|
|
8014
8062
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated";
|
|
8015
8063
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled";
|
|
@@ -8195,6 +8243,9 @@ declare const listEventTypeSchema: z.ZodObject<{
|
|
|
8195
8243
|
"env-variable-read:unknown-source": "env-variable-read:unknown-source";
|
|
8196
8244
|
"env-variable-read:v0:env:pull": "env-variable-read:v0:env:pull";
|
|
8197
8245
|
"env-variable-rotated": "env-variable-rotated";
|
|
8246
|
+
"experiment-created": "experiment-created";
|
|
8247
|
+
"experiment-transitioned": "experiment-transitioned";
|
|
8248
|
+
"experiment-updated": "experiment-updated";
|
|
8198
8249
|
"firewall-bypass-created": "firewall-bypass-created";
|
|
8199
8250
|
"firewall-bypass-deleted": "firewall-bypass-deleted";
|
|
8200
8251
|
"firewall-config-modified": "firewall-config-modified";
|
|
@@ -8620,13 +8671,11 @@ declare const listEventTypesResponseSchema: z.ZodObject<{
|
|
|
8620
8671
|
observability: "observability";
|
|
8621
8672
|
security: "security";
|
|
8622
8673
|
storage: "storage";
|
|
8623
|
-
v0: "v0";
|
|
8624
|
-
account: "account";
|
|
8625
|
-
project: "project";
|
|
8626
8674
|
integration: "integration";
|
|
8627
8675
|
deployment: "deployment";
|
|
8628
8676
|
domain: "domain";
|
|
8629
8677
|
team: "team";
|
|
8678
|
+
account: "account";
|
|
8630
8679
|
ai: "ai";
|
|
8631
8680
|
"ai-gateway": "ai-gateway";
|
|
8632
8681
|
edge: "edge";
|
|
@@ -8635,6 +8684,8 @@ declare const listEventTypesResponseSchema: z.ZodObject<{
|
|
|
8635
8684
|
firewall: "firewall";
|
|
8636
8685
|
network: "network";
|
|
8637
8686
|
other: "other";
|
|
8687
|
+
project: "project";
|
|
8688
|
+
v0: "v0";
|
|
8638
8689
|
"vercel-app": "vercel-app";
|
|
8639
8690
|
workflow: "workflow";
|
|
8640
8691
|
}>;
|
|
@@ -8643,84 +8694,24 @@ declare const listEventTypesResponseSchema: z.ZodObject<{
|
|
|
8643
8694
|
}, z.core.$strip>;
|
|
8644
8695
|
declare const flagSchema: z.ZodObject<{
|
|
8645
8696
|
description: z.ZodOptional<z.ZodString>;
|
|
8697
|
+
experiment: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
8698
|
+
rampId: z.ZodOptional<z.ZodString>;
|
|
8699
|
+
rampPercentage: z.ZodOptional<z.ZodNumber>;
|
|
8700
|
+
id: z.ZodString;
|
|
8701
|
+
base: z.ZodObject<{
|
|
8702
|
+
type: z.ZodEnum<{
|
|
8703
|
+
entity: "entity";
|
|
8704
|
+
}>;
|
|
8705
|
+
kind: z.ZodString;
|
|
8706
|
+
attribute: z.ZodString;
|
|
8707
|
+
}, z.core.$strip>;
|
|
8708
|
+
weights: z.ZodObject<{}, z.core.$catchall<z.ZodNumber>>;
|
|
8709
|
+
defaultVariantId: z.ZodString;
|
|
8710
|
+
exposureLogging: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
8711
|
+
}, z.core.$strip>>>;
|
|
8646
8712
|
maintainerIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8647
8713
|
permanent: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
8648
8714
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8649
|
-
experiment: z.ZodOptional<z.ZodObject<{
|
|
8650
|
-
id: z.ZodOptional<z.ZodString>;
|
|
8651
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8652
|
-
numVariants: z.ZodOptional<z.ZodNumber>;
|
|
8653
|
-
surfaceArea: z.ZodOptional<z.ZodString>;
|
|
8654
|
-
stickyRequirement: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
8655
|
-
layer: z.ZodOptional<z.ZodString>;
|
|
8656
|
-
guardrailMetrics: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8657
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8658
|
-
metricFormula: z.ZodOptional<z.ZodString>;
|
|
8659
|
-
name: z.ZodString;
|
|
8660
|
-
metricType: z.ZodEnum<{
|
|
8661
|
-
count: "count";
|
|
8662
|
-
currency: "currency";
|
|
8663
|
-
percentage: "percentage";
|
|
8664
|
-
}>;
|
|
8665
|
-
metricUnit: z.ZodEnum<{
|
|
8666
|
-
user: "user";
|
|
8667
|
-
session: "session";
|
|
8668
|
-
visitor: "visitor";
|
|
8669
|
-
}>;
|
|
8670
|
-
directionality: z.ZodEnum<{
|
|
8671
|
-
decreaseIsGood: "decreaseIsGood";
|
|
8672
|
-
increaseIsGood: "increaseIsGood";
|
|
8673
|
-
}>;
|
|
8674
|
-
}, z.core.$strip>>>;
|
|
8675
|
-
hypothesis: z.ZodOptional<z.ZodString>;
|
|
8676
|
-
device: z.ZodOptional<z.ZodEnum<{
|
|
8677
|
-
android: "android";
|
|
8678
|
-
desktop: "desktop";
|
|
8679
|
-
ios: "ios";
|
|
8680
|
-
mweb: "mweb";
|
|
8681
|
-
}>>;
|
|
8682
|
-
controlVariantId: z.ZodOptional<z.ZodString>;
|
|
8683
|
-
startedAt: z.ZodOptional<z.ZodNumber>;
|
|
8684
|
-
endedAt: z.ZodOptional<z.ZodNumber>;
|
|
8685
|
-
decision: z.ZodOptional<z.ZodString>;
|
|
8686
|
-
decisionReason: z.ZodOptional<z.ZodString>;
|
|
8687
|
-
duration: z.ZodOptional<z.ZodNumber>;
|
|
8688
|
-
durationUnit: z.ZodOptional<z.ZodEnum<{
|
|
8689
|
-
days: "days";
|
|
8690
|
-
exposures: "exposures";
|
|
8691
|
-
}>>;
|
|
8692
|
-
allocationPercent: z.ZodOptional<z.ZodNumber>;
|
|
8693
|
-
allocationUnit: z.ZodEnum<{
|
|
8694
|
-
userId: "userId";
|
|
8695
|
-
cookieId: "cookieId";
|
|
8696
|
-
visitorId: "visitorId";
|
|
8697
|
-
}>;
|
|
8698
|
-
primaryMetrics: z.ZodArray<z.ZodObject<{
|
|
8699
|
-
description: z.ZodOptional<z.ZodString>;
|
|
8700
|
-
metricFormula: z.ZodOptional<z.ZodString>;
|
|
8701
|
-
name: z.ZodString;
|
|
8702
|
-
metricType: z.ZodEnum<{
|
|
8703
|
-
count: "count";
|
|
8704
|
-
currency: "currency";
|
|
8705
|
-
percentage: "percentage";
|
|
8706
|
-
}>;
|
|
8707
|
-
metricUnit: z.ZodEnum<{
|
|
8708
|
-
user: "user";
|
|
8709
|
-
session: "session";
|
|
8710
|
-
visitor: "visitor";
|
|
8711
|
-
}>;
|
|
8712
|
-
directionality: z.ZodEnum<{
|
|
8713
|
-
decreaseIsGood: "decreaseIsGood";
|
|
8714
|
-
increaseIsGood: "increaseIsGood";
|
|
8715
|
-
}>;
|
|
8716
|
-
}, z.core.$strip>>;
|
|
8717
|
-
status: z.ZodEnum<{
|
|
8718
|
-
running: "running";
|
|
8719
|
-
closed: "closed";
|
|
8720
|
-
draft: "draft";
|
|
8721
|
-
paused: "paused";
|
|
8722
|
-
}>;
|
|
8723
|
-
}, z.core.$strip>>;
|
|
8724
8715
|
updatedBy: z.ZodOptional<z.ZodString>;
|
|
8725
8716
|
variants: z.ZodArray<z.ZodObject<{}, z.core.$strip>>;
|
|
8726
8717
|
id: z.ZodString;
|
|
@@ -8777,6 +8768,10 @@ declare const flagSchema: z.ZodObject<{
|
|
|
8777
8768
|
promille: z.ZodNumber;
|
|
8778
8769
|
durationMs: z.ZodNumber;
|
|
8779
8770
|
}, z.core.$strip>>;
|
|
8771
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8772
|
+
type: z.ZodEnum<{
|
|
8773
|
+
experiment: "experiment";
|
|
8774
|
+
}>;
|
|
8780
8775
|
}, z.core.$strict>]>;
|
|
8781
8776
|
active: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
8782
8777
|
rules: z.ZodArray<z.ZodObject<{
|
|
@@ -8818,6 +8813,10 @@ declare const flagSchema: z.ZodObject<{
|
|
|
8818
8813
|
promille: z.ZodNumber;
|
|
8819
8814
|
durationMs: z.ZodNumber;
|
|
8820
8815
|
}, z.core.$strip>>;
|
|
8816
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8817
|
+
type: z.ZodEnum<{
|
|
8818
|
+
experiment: "experiment";
|
|
8819
|
+
}>;
|
|
8821
8820
|
}, z.core.$strict>]>;
|
|
8822
8821
|
conditions: z.ZodArray<z.ZodObject<{
|
|
8823
8822
|
rhs: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
@@ -8885,8 +8884,8 @@ declare const flagSchema: z.ZodObject<{
|
|
|
8885
8884
|
revision: z.ZodNumber;
|
|
8886
8885
|
seed: z.ZodNumber;
|
|
8887
8886
|
state: z.ZodEnum<{
|
|
8888
|
-
active: "active";
|
|
8889
8887
|
archived: "archived";
|
|
8888
|
+
active: "active";
|
|
8890
8889
|
}>;
|
|
8891
8890
|
slug: z.ZodString;
|
|
8892
8891
|
createdAt: z.ZodNumber;
|
|
@@ -8917,8 +8916,8 @@ declare const marketplaceFlagSchema: z.ZodObject<{
|
|
|
8917
8916
|
resourceId: z.ZodString;
|
|
8918
8917
|
integrationConfigurationId: z.ZodString;
|
|
8919
8918
|
state: z.ZodEnum<{
|
|
8920
|
-
active: "active";
|
|
8921
8919
|
archived: "archived";
|
|
8920
|
+
active: "active";
|
|
8922
8921
|
}>;
|
|
8923
8922
|
name: z.ZodOptional<z.ZodString>;
|
|
8924
8923
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -9086,9 +9085,9 @@ declare const aPIKeyQuotaSchema: z.ZodObject<{
|
|
|
9086
9085
|
}, z.core.$strip>;
|
|
9087
9086
|
declare const aCLActionSchema: z.ZodEnum<{
|
|
9088
9087
|
read: "read";
|
|
9088
|
+
update: "update";
|
|
9089
9089
|
list: "list";
|
|
9090
9090
|
delete: "delete";
|
|
9091
|
-
update: "update";
|
|
9092
9091
|
create: "create";
|
|
9093
9092
|
}>;
|
|
9094
9093
|
declare const namedSandboxSchema: z.ZodObject<{
|
|
@@ -9097,8 +9096,8 @@ declare const namedSandboxSchema: z.ZodObject<{
|
|
|
9097
9096
|
currentSessionId: z.ZodString;
|
|
9098
9097
|
status: z.ZodEnum<{
|
|
9099
9098
|
running: "running";
|
|
9100
|
-
stopping: "stopping";
|
|
9101
9099
|
stopped: "stopped";
|
|
9100
|
+
stopping: "stopping";
|
|
9102
9101
|
}>;
|
|
9103
9102
|
statusUpdatedAt: z.ZodNumber;
|
|
9104
9103
|
persistent: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
@@ -9169,8 +9168,8 @@ declare const sessionSchema: z.ZodObject<{
|
|
|
9169
9168
|
timeout: z.ZodNumber;
|
|
9170
9169
|
status: z.ZodEnum<{
|
|
9171
9170
|
running: "running";
|
|
9172
|
-
stopping: "stopping";
|
|
9173
9171
|
stopped: "stopped";
|
|
9172
|
+
stopping: "stopping";
|
|
9174
9173
|
aborted: "aborted";
|
|
9175
9174
|
failed: "failed";
|
|
9176
9175
|
pending: "pending";
|
|
@@ -9245,24 +9244,24 @@ declare const invitedTeamMemberSchema: z.ZodObject<{
|
|
|
9245
9244
|
username: z.ZodString;
|
|
9246
9245
|
email: z.ZodString;
|
|
9247
9246
|
role: z.ZodEnum<{
|
|
9248
|
-
|
|
9249
|
-
|
|
9247
|
+
BILLING: "BILLING";
|
|
9248
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9250
9249
|
DEVELOPER: "DEVELOPER";
|
|
9250
|
+
MEMBER: "MEMBER";
|
|
9251
|
+
OWNER: "OWNER";
|
|
9251
9252
|
SECURITY: "SECURITY";
|
|
9252
|
-
BILLING: "BILLING";
|
|
9253
9253
|
VIEWER: "VIEWER";
|
|
9254
9254
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
9255
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9256
9255
|
}>;
|
|
9257
9256
|
teamRoles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
9258
|
-
|
|
9259
|
-
|
|
9257
|
+
BILLING: "BILLING";
|
|
9258
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9260
9259
|
DEVELOPER: "DEVELOPER";
|
|
9260
|
+
MEMBER: "MEMBER";
|
|
9261
|
+
OWNER: "OWNER";
|
|
9261
9262
|
SECURITY: "SECURITY";
|
|
9262
|
-
BILLING: "BILLING";
|
|
9263
9263
|
VIEWER: "VIEWER";
|
|
9264
9264
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
9265
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9266
9265
|
}>>>;
|
|
9267
9266
|
teamPermissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
9268
9267
|
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf";
|
|
@@ -9324,14 +9323,14 @@ declare const teamSchema: z.ZodObject<{
|
|
|
9324
9323
|
roles: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodUnion<readonly [z.ZodObject<{
|
|
9325
9324
|
accessGroupId: z.ZodString;
|
|
9326
9325
|
}, z.core.$strict>, z.ZodEnum<{
|
|
9327
|
-
|
|
9328
|
-
|
|
9326
|
+
BILLING: "BILLING";
|
|
9327
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9329
9328
|
DEVELOPER: "DEVELOPER";
|
|
9329
|
+
MEMBER: "MEMBER";
|
|
9330
|
+
OWNER: "OWNER";
|
|
9330
9331
|
SECURITY: "SECURITY";
|
|
9331
|
-
BILLING: "BILLING";
|
|
9332
9332
|
VIEWER: "VIEWER";
|
|
9333
9333
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
9334
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9335
9334
|
}>]>>>>;
|
|
9336
9335
|
}, z.core.$strip>>;
|
|
9337
9336
|
inviteCode: z.ZodOptional<z.ZodString>;
|
|
@@ -9345,14 +9344,14 @@ declare const teamSchema: z.ZodObject<{
|
|
|
9345
9344
|
description: z.ZodNullable<z.ZodString>;
|
|
9346
9345
|
defaultRoles: z.ZodOptional<z.ZodObject<{
|
|
9347
9346
|
teamRoles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
9348
|
-
|
|
9349
|
-
|
|
9347
|
+
BILLING: "BILLING";
|
|
9348
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9350
9349
|
DEVELOPER: "DEVELOPER";
|
|
9350
|
+
MEMBER: "MEMBER";
|
|
9351
|
+
OWNER: "OWNER";
|
|
9351
9352
|
SECURITY: "SECURITY";
|
|
9352
|
-
BILLING: "BILLING";
|
|
9353
9353
|
VIEWER: "VIEWER";
|
|
9354
9354
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
9355
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9356
9355
|
}>>>;
|
|
9357
9356
|
teamPermissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
9358
9357
|
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf";
|
|
@@ -9502,8 +9501,8 @@ declare const teamSchema: z.ZodObject<{
|
|
|
9502
9501
|
gitSources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9503
9502
|
sources: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
9504
9503
|
provider: z.ZodEnum<{
|
|
9505
|
-
github: "github";
|
|
9506
9504
|
bitbucket: "bitbucket";
|
|
9505
|
+
github: "github";
|
|
9507
9506
|
}>;
|
|
9508
9507
|
org: z.ZodString;
|
|
9509
9508
|
repo: z.ZodOptional<z.ZodString>;
|
|
@@ -9520,8 +9519,8 @@ declare const teamSchema: z.ZodObject<{
|
|
|
9520
9519
|
system: "system";
|
|
9521
9520
|
}>;
|
|
9522
9521
|
target: z.ZodEnum<{
|
|
9523
|
-
production: "production";
|
|
9524
9522
|
preview: "preview";
|
|
9523
|
+
production: "production";
|
|
9525
9524
|
}>;
|
|
9526
9525
|
}, z.core.$strict>, z.ZodObject<{
|
|
9527
9526
|
type: z.ZodEnum<{
|
|
@@ -9532,9 +9531,9 @@ declare const teamSchema: z.ZodObject<{
|
|
|
9532
9531
|
}, z.core.$strip>>>;
|
|
9533
9532
|
deploymentSources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9534
9533
|
sources: z.ZodArray<z.ZodEnum<{
|
|
9534
|
+
integration: "integration";
|
|
9535
9535
|
v0: "v0";
|
|
9536
9536
|
cli: "cli";
|
|
9537
|
-
integration: "integration";
|
|
9538
9537
|
"deploy-hook": "deploy-hook";
|
|
9539
9538
|
git: "git";
|
|
9540
9539
|
"rest-api": "rest-api";
|
|
@@ -9545,8 +9544,8 @@ declare const teamSchema: z.ZodObject<{
|
|
|
9545
9544
|
system: "system";
|
|
9546
9545
|
}>;
|
|
9547
9546
|
target: z.ZodEnum<{
|
|
9548
|
-
production: "production";
|
|
9549
9547
|
preview: "preview";
|
|
9548
|
+
production: "production";
|
|
9550
9549
|
}>;
|
|
9551
9550
|
}, z.core.$strict>, z.ZodObject<{
|
|
9552
9551
|
type: z.ZodEnum<{
|
|
@@ -9573,24 +9572,24 @@ declare const teamSchema: z.ZodObject<{
|
|
|
9573
9572
|
confirmed: z.ZodLiteral<true>;
|
|
9574
9573
|
accessRequestedAt: z.ZodOptional<z.ZodNumber>;
|
|
9575
9574
|
role: z.ZodEnum<{
|
|
9576
|
-
|
|
9577
|
-
|
|
9575
|
+
BILLING: "BILLING";
|
|
9576
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9578
9577
|
DEVELOPER: "DEVELOPER";
|
|
9578
|
+
MEMBER: "MEMBER";
|
|
9579
|
+
OWNER: "OWNER";
|
|
9579
9580
|
SECURITY: "SECURITY";
|
|
9580
|
-
BILLING: "BILLING";
|
|
9581
9581
|
VIEWER: "VIEWER";
|
|
9582
9582
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
9583
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9584
9583
|
}>;
|
|
9585
9584
|
teamRoles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
9586
|
-
|
|
9587
|
-
|
|
9585
|
+
BILLING: "BILLING";
|
|
9586
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9588
9587
|
DEVELOPER: "DEVELOPER";
|
|
9588
|
+
MEMBER: "MEMBER";
|
|
9589
|
+
OWNER: "OWNER";
|
|
9589
9590
|
SECURITY: "SECURITY";
|
|
9590
|
-
BILLING: "BILLING";
|
|
9591
9591
|
VIEWER: "VIEWER";
|
|
9592
9592
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
9593
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9594
9593
|
}>>>;
|
|
9595
9594
|
teamPermissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
9596
9595
|
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf";
|
|
@@ -9616,10 +9615,10 @@ declare const teamSchema: z.ZodObject<{
|
|
|
9616
9615
|
joinedFrom: z.ZodOptional<z.ZodObject<{
|
|
9617
9616
|
origin: z.ZodEnum<{
|
|
9618
9617
|
teams: "teams";
|
|
9618
|
+
link: "link";
|
|
9619
|
+
bitbucket: "bitbucket";
|
|
9619
9620
|
github: "github";
|
|
9620
9621
|
gitlab: "gitlab";
|
|
9621
|
-
bitbucket: "bitbucket";
|
|
9622
|
-
link: "link";
|
|
9623
9622
|
"account-update": "account-update";
|
|
9624
9623
|
dsync: "dsync";
|
|
9625
9624
|
feedback: "feedback";
|
|
@@ -9697,24 +9696,24 @@ declare const teamLimitedSchema: z.ZodObject<{
|
|
|
9697
9696
|
confirmed: z.ZodLiteral<true>;
|
|
9698
9697
|
accessRequestedAt: z.ZodOptional<z.ZodNumber>;
|
|
9699
9698
|
role: z.ZodEnum<{
|
|
9700
|
-
|
|
9701
|
-
|
|
9699
|
+
BILLING: "BILLING";
|
|
9700
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9702
9701
|
DEVELOPER: "DEVELOPER";
|
|
9702
|
+
MEMBER: "MEMBER";
|
|
9703
|
+
OWNER: "OWNER";
|
|
9703
9704
|
SECURITY: "SECURITY";
|
|
9704
|
-
BILLING: "BILLING";
|
|
9705
9705
|
VIEWER: "VIEWER";
|
|
9706
9706
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
9707
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9708
9707
|
}>;
|
|
9709
9708
|
teamRoles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
9710
|
-
|
|
9711
|
-
|
|
9709
|
+
BILLING: "BILLING";
|
|
9710
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9712
9711
|
DEVELOPER: "DEVELOPER";
|
|
9712
|
+
MEMBER: "MEMBER";
|
|
9713
|
+
OWNER: "OWNER";
|
|
9713
9714
|
SECURITY: "SECURITY";
|
|
9714
|
-
BILLING: "BILLING";
|
|
9715
9715
|
VIEWER: "VIEWER";
|
|
9716
9716
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
9717
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
9718
9717
|
}>>>;
|
|
9719
9718
|
teamPermissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
9720
9719
|
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf";
|
|
@@ -9740,10 +9739,10 @@ declare const teamLimitedSchema: z.ZodObject<{
|
|
|
9740
9739
|
joinedFrom: z.ZodOptional<z.ZodObject<{
|
|
9741
9740
|
origin: z.ZodEnum<{
|
|
9742
9741
|
teams: "teams";
|
|
9742
|
+
link: "link";
|
|
9743
|
+
bitbucket: "bitbucket";
|
|
9743
9744
|
github: "github";
|
|
9744
9745
|
gitlab: "gitlab";
|
|
9745
|
-
bitbucket: "bitbucket";
|
|
9746
|
-
link: "link";
|
|
9747
9746
|
"account-update": "account-update";
|
|
9748
9747
|
dsync: "dsync";
|
|
9749
9748
|
feedback: "feedback";
|
|
@@ -9798,12 +9797,12 @@ declare const authTokenSchema: z.ZodObject<{
|
|
|
9798
9797
|
expiresAt: z.ZodNumber;
|
|
9799
9798
|
}, z.core.$strip>>;
|
|
9800
9799
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9801
|
-
github: "github";
|
|
9802
|
-
gitlab: "gitlab";
|
|
9803
|
-
bitbucket: "bitbucket";
|
|
9804
9800
|
email: "email";
|
|
9805
9801
|
app: "app";
|
|
9806
9802
|
chatgpt: "chatgpt";
|
|
9803
|
+
bitbucket: "bitbucket";
|
|
9804
|
+
github: "github";
|
|
9805
|
+
gitlab: "gitlab";
|
|
9807
9806
|
apple: "apple";
|
|
9808
9807
|
google: "google";
|
|
9809
9808
|
saml: "saml";
|
|
@@ -9824,12 +9823,12 @@ declare const authTokenSchema: z.ZodObject<{
|
|
|
9824
9823
|
}>;
|
|
9825
9824
|
teamId: z.ZodString;
|
|
9826
9825
|
origin: z.ZodOptional<z.ZodEnum<{
|
|
9827
|
-
github: "github";
|
|
9828
|
-
gitlab: "gitlab";
|
|
9829
|
-
bitbucket: "bitbucket";
|
|
9830
9826
|
email: "email";
|
|
9831
9827
|
app: "app";
|
|
9832
9828
|
chatgpt: "chatgpt";
|
|
9829
|
+
bitbucket: "bitbucket";
|
|
9830
|
+
github: "github";
|
|
9831
|
+
gitlab: "gitlab";
|
|
9833
9832
|
apple: "apple";
|
|
9834
9833
|
google: "google";
|
|
9835
9834
|
saml: "saml";
|
|
@@ -10020,13 +10019,13 @@ declare const authUserSchema: z.ZodObject<{
|
|
|
10020
10019
|
importFlowGitNamespace: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
10021
10020
|
importFlowGitNamespaceId: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
10022
10021
|
importFlowGitProvider: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
10022
|
+
bitbucket: "bitbucket";
|
|
10023
10023
|
github: "github";
|
|
10024
|
-
"github-limited": "github-limited";
|
|
10025
10024
|
"github-custom-host": "github-custom-host";
|
|
10025
|
+
"github-limited": "github-limited";
|
|
10026
10026
|
gitlab: "gitlab";
|
|
10027
|
-
bitbucket: "bitbucket";
|
|
10028
|
-
"cursor-origin": "cursor-origin";
|
|
10029
10027
|
vercel: "vercel";
|
|
10028
|
+
"cursor-origin": "cursor-origin";
|
|
10030
10029
|
}>>>;
|
|
10031
10030
|
preferredScopesAndGitNamespaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10032
10031
|
scopeId: z.ZodString;
|
|
@@ -10710,8 +10709,8 @@ declare const getRedirectsQueryPageSchema: z.ZodOptional<z.ZodInt>;
|
|
|
10710
10709
|
declare const getRedirectsQueryPerPageSchema: z.ZodOptional<z.ZodInt>;
|
|
10711
10710
|
declare const getRedirectsQuerySortBySchema: z.ZodOptional<z.ZodEnum<{
|
|
10712
10711
|
source: "source";
|
|
10713
|
-
destination: "destination";
|
|
10714
10712
|
statusCode: "statusCode";
|
|
10713
|
+
destination: "destination";
|
|
10715
10714
|
}>>;
|
|
10716
10715
|
declare const getRedirectsQuerySortOrderSchema: z.ZodOptional<z.ZodEnum<{
|
|
10717
10716
|
asc: "asc";
|
|
@@ -10782,11 +10781,11 @@ declare const updateVersionStatus500Schema: z.ZodUnknown;
|
|
|
10782
10781
|
declare const updateVersionResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
10783
10782
|
declare const listProjectChecksPathProjectIdOrNameSchema: z.ZodString;
|
|
10784
10783
|
declare const listProjectChecksQueryBlocksSchema: z.ZodOptional<z.ZodEnum<{
|
|
10784
|
+
none: "none";
|
|
10785
10785
|
"build-start": "build-start";
|
|
10786
10786
|
"deployment-start": "deployment-start";
|
|
10787
10787
|
"deployment-alias": "deployment-alias";
|
|
10788
10788
|
"deployment-promotion": "deployment-promotion";
|
|
10789
|
-
none: "none";
|
|
10790
10789
|
}>>;
|
|
10791
10790
|
declare const listProjectChecksQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
10792
10791
|
declare const listProjectChecksQuerySlugSchema: z.ZodOptional<z.ZodString>;
|
|
@@ -11883,8 +11882,8 @@ declare const listEventTypesStatus403Schema: z.ZodUnknown;
|
|
|
11883
11882
|
declare const listEventTypesStatus410Schema: z.ZodUnknown;
|
|
11884
11883
|
declare const listFlagsV2PathProjectIdOrNameSchema: z.ZodString;
|
|
11885
11884
|
declare const listFlagsV2QueryStateSchema: z.ZodOptional<z.ZodEnum<{
|
|
11886
|
-
active: "active";
|
|
11887
11885
|
archived: "archived";
|
|
11886
|
+
active: "active";
|
|
11888
11887
|
}>>;
|
|
11889
11888
|
declare const listFlagsV2QueryLimitSchema: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
11890
11889
|
declare const listFlagsV2QueryCursorSchema: z.ZodOptional<z.ZodString>;
|
|
@@ -11905,8 +11904,8 @@ declare const listFlagsV2Status410Schema: z.ZodUnknown;
|
|
|
11905
11904
|
declare const listFlagsV2ResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
11906
11905
|
declare const listFlagsPathProjectIdOrNameSchema: z.ZodString;
|
|
11907
11906
|
declare const listFlagsQueryStateSchema: z.ZodOptional<z.ZodEnum<{
|
|
11908
|
-
active: "active";
|
|
11909
11907
|
archived: "archived";
|
|
11908
|
+
active: "active";
|
|
11910
11909
|
}>>;
|
|
11911
11910
|
declare const listFlagsQueryWithMetadataSchema: z.ZodOptional<z.ZodBoolean>;
|
|
11912
11911
|
declare const listFlagsQueryLimitSchema: z.ZodOptional<z.ZodInt>;
|
|
@@ -12034,8 +12033,8 @@ declare const listTeamFlagSettingsStatus403Schema: z.ZodUnknown;
|
|
|
12034
12033
|
declare const listTeamFlagSettingsStatus410Schema: z.ZodUnknown;
|
|
12035
12034
|
declare const listTeamFlagSettingsResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
12036
12035
|
declare const listTeamFlagsV2QueryStateSchema: z.ZodOptional<z.ZodEnum<{
|
|
12037
|
-
active: "active";
|
|
12038
12036
|
archived: "archived";
|
|
12037
|
+
active: "active";
|
|
12039
12038
|
}>>;
|
|
12040
12039
|
declare const listTeamFlagsV2QueryLimitSchema: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
12041
12040
|
declare const listTeamFlagsV2QueryCursorSchema: z.ZodOptional<z.ZodString>;
|
|
@@ -12059,8 +12058,8 @@ declare const listTeamFlagsV2Status403Schema: z.ZodUnknown;
|
|
|
12059
12058
|
declare const listTeamFlagsV2Status410Schema: z.ZodUnknown;
|
|
12060
12059
|
declare const listTeamFlagsV2ResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
12061
12060
|
declare const listTeamFlagsQueryStateSchema: z.ZodOptional<z.ZodEnum<{
|
|
12062
|
-
active: "active";
|
|
12063
12061
|
archived: "archived";
|
|
12062
|
+
active: "active";
|
|
12064
12063
|
}>>;
|
|
12065
12064
|
declare const listTeamFlagsQueryWithMetadataSchema: z.ZodOptional<z.ZodBoolean>;
|
|
12066
12065
|
declare const listTeamFlagsQueryLimitSchema: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
@@ -12195,11 +12194,11 @@ declare const deleteSdkKeyStatus410Schema: z.ZodUnknown;
|
|
|
12195
12194
|
declare const deleteSdkKeyResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown, z.ZodUnknown]>;
|
|
12196
12195
|
declare const gitNamespacesQueryHostSchema: z.ZodOptional<z.ZodString>;
|
|
12197
12196
|
declare const gitNamespacesQueryProviderSchema: z.ZodOptional<z.ZodEnum<{
|
|
12197
|
+
bitbucket: "bitbucket";
|
|
12198
12198
|
github: "github";
|
|
12199
|
-
"github-limited": "github-limited";
|
|
12200
12199
|
"github-custom-host": "github-custom-host";
|
|
12200
|
+
"github-limited": "github-limited";
|
|
12201
12201
|
gitlab: "gitlab";
|
|
12202
|
-
bitbucket: "bitbucket";
|
|
12203
12202
|
}>>;
|
|
12204
12203
|
declare const gitNamespacesQueryViewerMetadataSchema: z.ZodOptional<z.ZodBoolean>;
|
|
12205
12204
|
declare const gitNamespacesStatus200Schema: z.ZodUnknown;
|
|
@@ -12214,11 +12213,11 @@ declare const gitNamespacesResponseSchema: z.ZodUnion<readonly [z.ZodUnknown, z.
|
|
|
12214
12213
|
declare const searchRepoQueryQuerySchema: z.ZodOptional<z.ZodString>;
|
|
12215
12214
|
declare const searchRepoQueryNamespaceIdSchema: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>>;
|
|
12216
12215
|
declare const searchRepoQueryProviderSchema: z.ZodOptional<z.ZodEnum<{
|
|
12216
|
+
bitbucket: "bitbucket";
|
|
12217
12217
|
github: "github";
|
|
12218
|
-
"github-limited": "github-limited";
|
|
12219
12218
|
"github-custom-host": "github-custom-host";
|
|
12219
|
+
"github-limited": "github-limited";
|
|
12220
12220
|
gitlab: "gitlab";
|
|
12221
|
-
bitbucket: "bitbucket";
|
|
12222
12221
|
"cursor-origin": "cursor-origin";
|
|
12223
12222
|
}>>;
|
|
12224
12223
|
declare const searchRepoQueryInstallationIdSchema: z.ZodOptional<z.ZodString>;
|
|
@@ -12241,11 +12240,11 @@ declare const getBillingPlansPathProductIdOrSlugSchema: z.ZodString;
|
|
|
12241
12240
|
declare const getBillingPlansQueryMetadataSchema: z.ZodOptional<z.ZodString>;
|
|
12242
12241
|
declare const getBillingPlansQuerySourceSchema: z.ZodOptional<z.ZodEnum<{
|
|
12243
12242
|
marketplace: "marketplace";
|
|
12244
|
-
"deploy-button": "deploy-button";
|
|
12245
|
-
external: "external";
|
|
12246
12243
|
v0: "v0";
|
|
12247
|
-
|
|
12244
|
+
external: "external";
|
|
12248
12245
|
cli: "cli";
|
|
12246
|
+
"deploy-button": "deploy-button";
|
|
12247
|
+
"resource-claims": "resource-claims";
|
|
12249
12248
|
oauth: "oauth";
|
|
12250
12249
|
backoffice: "backoffice";
|
|
12251
12250
|
"import-recommended-integrations": "import-recommended-integrations";
|
|
@@ -12713,10 +12712,10 @@ declare const getRoutesPathProjectIdSchema: z.ZodString;
|
|
|
12713
12712
|
declare const getRoutesQueryVersionIdSchema: z.ZodOptional<z.ZodString>;
|
|
12714
12713
|
declare const getRoutesQueryQSchema: z.ZodOptional<z.ZodString>;
|
|
12715
12714
|
declare const getRoutesQueryFilterSchema: z.ZodOptional<z.ZodEnum<{
|
|
12715
|
+
transform: "transform";
|
|
12716
12716
|
rewrite: "rewrite";
|
|
12717
12717
|
redirect: "redirect";
|
|
12718
12718
|
set_status: "set_status";
|
|
12719
|
-
transform: "transform";
|
|
12720
12719
|
}>>;
|
|
12721
12720
|
declare const getRoutesQueryDiffSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodEnum<{
|
|
12722
12721
|
only: "only";
|
|
@@ -12995,8 +12994,8 @@ declare const getProjectDomainsQueryProductionSchema: z.ZodDefault<z.ZodOptional
|
|
|
12995
12994
|
false: "false";
|
|
12996
12995
|
}>>>;
|
|
12997
12996
|
declare const getProjectDomainsQueryTargetSchema: z.ZodOptional<z.ZodEnum<{
|
|
12998
|
-
production: "production";
|
|
12999
12997
|
preview: "preview";
|
|
12998
|
+
production: "production";
|
|
13000
12999
|
}>>;
|
|
13001
13000
|
declare const getProjectDomainsQueryCustomEnvironmentIdSchema: z.ZodOptional<z.ZodString>;
|
|
13002
13001
|
declare const getProjectDomainsQueryGitBranchSchema: z.ZodOptional<z.ZodString>;
|
|
@@ -13374,8 +13373,8 @@ declare const listSandboxesQueryLimitSchema: z.ZodDefault<z.ZodOptional<z.ZodNum
|
|
|
13374
13373
|
declare const listSandboxesQuerySortBySchema: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
13375
13374
|
createdAt: "createdAt";
|
|
13376
13375
|
name: "name";
|
|
13377
|
-
statusUpdatedAt: "statusUpdatedAt";
|
|
13378
13376
|
currentSnapshotId: "currentSnapshotId";
|
|
13377
|
+
statusUpdatedAt: "statusUpdatedAt";
|
|
13379
13378
|
}>>>;
|
|
13380
13379
|
declare const listSandboxesQueryNamePrefixSchema: z.ZodOptional<z.ZodString>;
|
|
13381
13380
|
declare const listSandboxesQueryCursorSchema: z.ZodOptional<z.ZodString>;
|
|
@@ -13385,8 +13384,8 @@ declare const listSandboxesQuerySortOrderSchema: z.ZodDefault<z.ZodOptional<z.Zo
|
|
|
13385
13384
|
}>>>;
|
|
13386
13385
|
declare const listSandboxesQueryStatusSchema: z.ZodOptional<z.ZodEnum<{
|
|
13387
13386
|
running: "running";
|
|
13388
|
-
stopping: "stopping";
|
|
13389
13387
|
stopped: "stopped";
|
|
13388
|
+
stopping: "stopping";
|
|
13390
13389
|
}>>;
|
|
13391
13390
|
declare const listSandboxesQueryTagsSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
13392
13391
|
declare const listSandboxesQueryTeamIdSchema: z.ZodOptional<z.ZodString>;
|
|
@@ -13418,8 +13417,8 @@ declare const listDrivesQueryLimitSchema: z.ZodDefault<z.ZodOptional<z.ZodNumber
|
|
|
13418
13417
|
declare const listDrivesQueryCursorSchema: z.ZodOptional<z.ZodString>;
|
|
13419
13418
|
declare const listDrivesQuerySortBySchema: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
13420
13419
|
createdAt: "createdAt";
|
|
13421
|
-
name: "name";
|
|
13422
13420
|
updatedAt: "updatedAt";
|
|
13421
|
+
name: "name";
|
|
13423
13422
|
}>>>;
|
|
13424
13423
|
declare const listDrivesQueryNamePrefixSchema: z.ZodOptional<z.ZodString>;
|
|
13425
13424
|
declare const listDrivesQuerySortOrderSchema: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
@@ -14015,14 +14014,14 @@ declare const getTeamMembersQuerySinceSchema: z.ZodOptional<z.ZodNumber>;
|
|
|
14015
14014
|
declare const getTeamMembersQueryUntilSchema: z.ZodOptional<z.ZodNumber>;
|
|
14016
14015
|
declare const getTeamMembersQuerySearchSchema: z.ZodOptional<z.ZodString>;
|
|
14017
14016
|
declare const getTeamMembersQueryRoleSchema: z.ZodOptional<z.ZodEnum<{
|
|
14018
|
-
|
|
14019
|
-
|
|
14017
|
+
BILLING: "BILLING";
|
|
14018
|
+
CONTRIBUTOR: "CONTRIBUTOR";
|
|
14020
14019
|
DEVELOPER: "DEVELOPER";
|
|
14020
|
+
MEMBER: "MEMBER";
|
|
14021
|
+
OWNER: "OWNER";
|
|
14021
14022
|
SECURITY: "SECURITY";
|
|
14022
|
-
BILLING: "BILLING";
|
|
14023
14023
|
VIEWER: "VIEWER";
|
|
14024
14024
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
|
|
14025
|
-
CONTRIBUTOR: "CONTRIBUTOR";
|
|
14026
14025
|
}>>;
|
|
14027
14026
|
declare const getTeamMembersQueryExcludeProjectSchema: z.ZodOptional<z.ZodString>;
|
|
14028
14027
|
declare const getTeamMembersQueryEligibleMembersForProjectIdSchema: z.ZodOptional<z.ZodString>;
|