@vercel/sdk 1.10.5 → 1.10.6
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/bin/mcp-server.js +496 -463
- package/bin/mcp-server.js.map +17 -17
- package/docs/sdks/projects/README.md +2 -0
- package/esm/__tests__/accessgroups.test.js +1 -3
- package/esm/__tests__/accessgroups.test.js.map +1 -1
- package/esm/__tests__/domains.test.js +7 -2
- package/esm/__tests__/domains.test.js.map +1 -1
- package/esm/__tests__/edgeconfig.test.js +6 -6
- package/esm/__tests__/edgeconfig.test.js.map +1 -1
- package/esm/__tests__/rollingrelease.test.js +6 -2
- package/esm/__tests__/rollingrelease.test.js.map +1 -1
- package/esm/__tests__/security.test.js +4 -4
- package/esm/__tests__/security.test.js.map +1 -1
- package/esm/funcs/projectsGetProjects.js +1 -0
- package/esm/funcs/projectsGetProjects.js.map +1 -1
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.js +1 -1
- package/esm/models/canceldeploymentop.d.ts +35 -35
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +13 -13
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +33 -33
- package/esm/models/createdeploymentop.js +11 -11
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createprojectenvop.d.ts +6 -6
- package/esm/models/createprojectenvop.js +2 -2
- package/esm/models/createprojectenvop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +164 -158
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +156 -150
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/editprojectenvop.d.ts +3 -3
- package/esm/models/editprojectenvop.js +1 -1
- package/esm/models/editprojectenvop.js.map +1 -1
- package/esm/models/filterprojectenvsop.d.ts +9 -9
- package/esm/models/filterprojectenvsop.js +3 -3
- package/esm/models/filterprojectenvsop.js.map +1 -1
- package/esm/models/getconfigurationproductsop.d.ts +330 -330
- package/esm/models/getconfigurationproductsop.js +408 -408
- package/esm/models/getprojectsop.d.ts +44 -4
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +33 -4
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/removeprojectenvop.d.ts +9 -9
- package/esm/models/removeprojectenvop.js +3 -3
- package/esm/models/removeprojectenvop.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +4 -0
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +4 -0
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +10 -4
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +10 -4
- package/esm/models/updateprojectop.js.map +1 -1
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/accessgroups.test.ts +1 -3
- package/src/__tests__/domains.test.ts +7 -2
- package/src/__tests__/edgeconfig.test.ts +6 -6
- package/src/__tests__/rollingrelease.test.ts +6 -2
- package/src/__tests__/security.test.ts +4 -4
- package/src/funcs/projectsGetProjects.ts +1 -0
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/canceldeploymentop.ts +15 -15
- package/src/models/createdeploymentop.ts +11 -11
- package/src/models/createprojectenvop.ts +2 -2
- package/src/models/createprojectop.ts +312 -300
- package/src/models/editprojectenvop.ts +1 -1
- package/src/models/filterprojectenvsop.ts +3 -3
- package/src/models/getconfigurationproductsop.ts +703 -703
- package/src/models/getprojectsop.ts +59 -8
- package/src/models/removeprojectenvop.ts +3 -3
- package/src/models/updateprojectdatacacheop.ts +8 -0
- package/src/models/updateprojectop.ts +20 -8
- package/vercel-spec.json +396 -346
|
@@ -464,11 +464,11 @@ export type CreateDeploymentProjectSettings = {
|
|
|
464
464
|
webAnalytics?: CreateDeploymentWebAnalytics | undefined;
|
|
465
465
|
};
|
|
466
466
|
export declare const CreateDeploymentDeploymentsStatus: {
|
|
467
|
+
readonly Error: "error";
|
|
468
|
+
readonly Timeout: "timeout";
|
|
467
469
|
readonly Skipped: "skipped";
|
|
468
470
|
readonly Pending: "pending";
|
|
469
471
|
readonly Ready: "ready";
|
|
470
|
-
readonly Error: "error";
|
|
471
|
-
readonly Timeout: "timeout";
|
|
472
472
|
};
|
|
473
473
|
export type CreateDeploymentDeploymentsStatus = ClosedEnum<typeof CreateDeploymentDeploymentsStatus>;
|
|
474
474
|
export type Integrations = {
|
|
@@ -549,8 +549,8 @@ export type Creator = {
|
|
|
549
549
|
avatar?: string | undefined;
|
|
550
550
|
};
|
|
551
551
|
export declare const CreateDeploymentReadyState: {
|
|
552
|
-
readonly Building: "BUILDING";
|
|
553
552
|
readonly Error: "ERROR";
|
|
553
|
+
readonly Building: "BUILDING";
|
|
554
554
|
readonly Initializing: "INITIALIZING";
|
|
555
555
|
readonly Ready: "READY";
|
|
556
556
|
};
|
|
@@ -990,13 +990,13 @@ export declare const CreateDeploymentPlan: {
|
|
|
990
990
|
};
|
|
991
991
|
export type CreateDeploymentPlan = ClosedEnum<typeof CreateDeploymentPlan>;
|
|
992
992
|
export declare const FunctionType: {
|
|
993
|
-
readonly Fluid: "fluid";
|
|
994
993
|
readonly Standard: "standard";
|
|
994
|
+
readonly Fluid: "fluid";
|
|
995
995
|
};
|
|
996
996
|
export type FunctionType = ClosedEnum<typeof FunctionType>;
|
|
997
997
|
export declare const FunctionMemoryType: {
|
|
998
|
-
readonly Standard: "standard";
|
|
999
998
|
readonly StandardLegacy: "standard_legacy";
|
|
999
|
+
readonly Standard: "standard";
|
|
1000
1000
|
readonly Performance: "performance";
|
|
1001
1001
|
};
|
|
1002
1002
|
export type FunctionMemoryType = ClosedEnum<typeof FunctionMemoryType>;
|
|
@@ -1071,12 +1071,12 @@ export type Routes3 = {
|
|
|
1071
1071
|
middleware: number;
|
|
1072
1072
|
};
|
|
1073
1073
|
export declare const Handle: {
|
|
1074
|
-
readonly Error: "error";
|
|
1075
1074
|
readonly Filesystem: "filesystem";
|
|
1075
|
+
readonly Error: "error";
|
|
1076
1076
|
readonly Hit: "hit";
|
|
1077
1077
|
readonly Miss: "miss";
|
|
1078
|
-
readonly Rewrite: "rewrite";
|
|
1079
1078
|
readonly Resource: "resource";
|
|
1079
|
+
readonly Rewrite: "rewrite";
|
|
1080
1080
|
};
|
|
1081
1081
|
export type Handle = ClosedEnum<typeof Handle>;
|
|
1082
1082
|
export type Routes2 = {
|
|
@@ -1200,8 +1200,8 @@ export declare const RoutesType: {
|
|
|
1200
1200
|
};
|
|
1201
1201
|
export type RoutesType = ClosedEnum<typeof RoutesType>;
|
|
1202
1202
|
export declare const CreateDeploymentRoutesOp: {
|
|
1203
|
-
readonly Append: "append";
|
|
1204
1203
|
readonly Set: "set";
|
|
1204
|
+
readonly Append: "append";
|
|
1205
1205
|
readonly Delete: "delete";
|
|
1206
1206
|
};
|
|
1207
1207
|
export type CreateDeploymentRoutesOp = ClosedEnum<typeof CreateDeploymentRoutesOp>;
|
|
@@ -1359,8 +1359,8 @@ export declare const CreateDeploymentGitRepoDeploymentsType: {
|
|
|
1359
1359
|
};
|
|
1360
1360
|
export type CreateDeploymentGitRepoDeploymentsType = ClosedEnum<typeof CreateDeploymentGitRepoDeploymentsType>;
|
|
1361
1361
|
export declare const CreateDeploymentGitRepoOwnerType: {
|
|
1362
|
-
readonly Team: "team";
|
|
1363
1362
|
readonly User: "user";
|
|
1363
|
+
readonly Team: "team";
|
|
1364
1364
|
};
|
|
1365
1365
|
export type CreateDeploymentGitRepoOwnerType = ClosedEnum<typeof CreateDeploymentGitRepoOwnerType>;
|
|
1366
1366
|
export type GitRepo3 = {
|
|
@@ -1380,8 +1380,8 @@ export declare const CreateDeploymentGitRepoType: {
|
|
|
1380
1380
|
};
|
|
1381
1381
|
export type CreateDeploymentGitRepoType = ClosedEnum<typeof CreateDeploymentGitRepoType>;
|
|
1382
1382
|
export declare const GitRepoOwnerType: {
|
|
1383
|
-
readonly Team: "team";
|
|
1384
1383
|
readonly User: "user";
|
|
1384
|
+
readonly Team: "team";
|
|
1385
1385
|
};
|
|
1386
1386
|
export type GitRepoOwnerType = ClosedEnum<typeof GitRepoOwnerType>;
|
|
1387
1387
|
export type GitRepo2 = {
|
|
@@ -1401,8 +1401,8 @@ export declare const GitRepoType: {
|
|
|
1401
1401
|
};
|
|
1402
1402
|
export type GitRepoType = ClosedEnum<typeof GitRepoType>;
|
|
1403
1403
|
export declare const OwnerType: {
|
|
1404
|
-
readonly Team: "team";
|
|
1405
1404
|
readonly User: "user";
|
|
1405
|
+
readonly Team: "team";
|
|
1406
1406
|
};
|
|
1407
1407
|
export type OwnerType = ClosedEnum<typeof OwnerType>;
|
|
1408
1408
|
export type GitRepo1 = {
|
|
@@ -2511,19 +2511,19 @@ export declare const CreateDeploymentDeploymentsStatus$outboundSchema: z.ZodNati
|
|
|
2511
2511
|
export declare namespace CreateDeploymentDeploymentsStatus$ {
|
|
2512
2512
|
/** @deprecated use `CreateDeploymentDeploymentsStatus$inboundSchema` instead. */
|
|
2513
2513
|
const inboundSchema: z.ZodNativeEnum<{
|
|
2514
|
+
readonly Error: "error";
|
|
2515
|
+
readonly Timeout: "timeout";
|
|
2514
2516
|
readonly Skipped: "skipped";
|
|
2515
2517
|
readonly Pending: "pending";
|
|
2516
2518
|
readonly Ready: "ready";
|
|
2517
|
-
readonly Error: "error";
|
|
2518
|
-
readonly Timeout: "timeout";
|
|
2519
2519
|
}>;
|
|
2520
2520
|
/** @deprecated use `CreateDeploymentDeploymentsStatus$outboundSchema` instead. */
|
|
2521
2521
|
const outboundSchema: z.ZodNativeEnum<{
|
|
2522
|
+
readonly Error: "error";
|
|
2523
|
+
readonly Timeout: "timeout";
|
|
2522
2524
|
readonly Skipped: "skipped";
|
|
2523
2525
|
readonly Pending: "pending";
|
|
2524
2526
|
readonly Ready: "ready";
|
|
2525
|
-
readonly Error: "error";
|
|
2526
|
-
readonly Timeout: "timeout";
|
|
2527
2527
|
}>;
|
|
2528
2528
|
}
|
|
2529
2529
|
/** @internal */
|
|
@@ -2727,15 +2727,15 @@ export declare const CreateDeploymentReadyState$outboundSchema: z.ZodNativeEnum<
|
|
|
2727
2727
|
export declare namespace CreateDeploymentReadyState$ {
|
|
2728
2728
|
/** @deprecated use `CreateDeploymentReadyState$inboundSchema` instead. */
|
|
2729
2729
|
const inboundSchema: z.ZodNativeEnum<{
|
|
2730
|
-
readonly Building: "BUILDING";
|
|
2731
2730
|
readonly Error: "ERROR";
|
|
2731
|
+
readonly Building: "BUILDING";
|
|
2732
2732
|
readonly Initializing: "INITIALIZING";
|
|
2733
2733
|
readonly Ready: "READY";
|
|
2734
2734
|
}>;
|
|
2735
2735
|
/** @deprecated use `CreateDeploymentReadyState$outboundSchema` instead. */
|
|
2736
2736
|
const outboundSchema: z.ZodNativeEnum<{
|
|
2737
|
-
readonly Building: "BUILDING";
|
|
2738
2737
|
readonly Error: "ERROR";
|
|
2738
|
+
readonly Building: "BUILDING";
|
|
2739
2739
|
readonly Initializing: "INITIALIZING";
|
|
2740
2740
|
readonly Ready: "READY";
|
|
2741
2741
|
}>;
|
|
@@ -4161,13 +4161,13 @@ export declare const FunctionType$outboundSchema: z.ZodNativeEnum<typeof Functio
|
|
|
4161
4161
|
export declare namespace FunctionType$ {
|
|
4162
4162
|
/** @deprecated use `FunctionType$inboundSchema` instead. */
|
|
4163
4163
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4164
|
-
readonly Fluid: "fluid";
|
|
4165
4164
|
readonly Standard: "standard";
|
|
4165
|
+
readonly Fluid: "fluid";
|
|
4166
4166
|
}>;
|
|
4167
4167
|
/** @deprecated use `FunctionType$outboundSchema` instead. */
|
|
4168
4168
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4169
|
-
readonly Fluid: "fluid";
|
|
4170
4169
|
readonly Standard: "standard";
|
|
4170
|
+
readonly Fluid: "fluid";
|
|
4171
4171
|
}>;
|
|
4172
4172
|
}
|
|
4173
4173
|
/** @internal */
|
|
@@ -4181,14 +4181,14 @@ export declare const FunctionMemoryType$outboundSchema: z.ZodNativeEnum<typeof F
|
|
|
4181
4181
|
export declare namespace FunctionMemoryType$ {
|
|
4182
4182
|
/** @deprecated use `FunctionMemoryType$inboundSchema` instead. */
|
|
4183
4183
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4184
|
-
readonly Standard: "standard";
|
|
4185
4184
|
readonly StandardLegacy: "standard_legacy";
|
|
4185
|
+
readonly Standard: "standard";
|
|
4186
4186
|
readonly Performance: "performance";
|
|
4187
4187
|
}>;
|
|
4188
4188
|
/** @deprecated use `FunctionMemoryType$outboundSchema` instead. */
|
|
4189
4189
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4190
|
-
readonly Standard: "standard";
|
|
4191
4190
|
readonly StandardLegacy: "standard_legacy";
|
|
4191
|
+
readonly Standard: "standard";
|
|
4192
4192
|
readonly Performance: "performance";
|
|
4193
4193
|
}>;
|
|
4194
4194
|
}
|
|
@@ -4348,21 +4348,21 @@ export declare const Handle$outboundSchema: z.ZodNativeEnum<typeof Handle>;
|
|
|
4348
4348
|
export declare namespace Handle$ {
|
|
4349
4349
|
/** @deprecated use `Handle$inboundSchema` instead. */
|
|
4350
4350
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4351
|
-
readonly Error: "error";
|
|
4352
4351
|
readonly Filesystem: "filesystem";
|
|
4352
|
+
readonly Error: "error";
|
|
4353
4353
|
readonly Hit: "hit";
|
|
4354
4354
|
readonly Miss: "miss";
|
|
4355
|
-
readonly Rewrite: "rewrite";
|
|
4356
4355
|
readonly Resource: "resource";
|
|
4356
|
+
readonly Rewrite: "rewrite";
|
|
4357
4357
|
}>;
|
|
4358
4358
|
/** @deprecated use `Handle$outboundSchema` instead. */
|
|
4359
4359
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4360
|
-
readonly Error: "error";
|
|
4361
4360
|
readonly Filesystem: "filesystem";
|
|
4361
|
+
readonly Error: "error";
|
|
4362
4362
|
readonly Hit: "hit";
|
|
4363
4363
|
readonly Miss: "miss";
|
|
4364
|
-
readonly Rewrite: "rewrite";
|
|
4365
4364
|
readonly Resource: "resource";
|
|
4365
|
+
readonly Rewrite: "rewrite";
|
|
4366
4366
|
}>;
|
|
4367
4367
|
}
|
|
4368
4368
|
/** @internal */
|
|
@@ -4967,14 +4967,14 @@ export declare const CreateDeploymentRoutesOp$outboundSchema: z.ZodNativeEnum<ty
|
|
|
4967
4967
|
export declare namespace CreateDeploymentRoutesOp$ {
|
|
4968
4968
|
/** @deprecated use `CreateDeploymentRoutesOp$inboundSchema` instead. */
|
|
4969
4969
|
const inboundSchema: z.ZodNativeEnum<{
|
|
4970
|
-
readonly Append: "append";
|
|
4971
4970
|
readonly Set: "set";
|
|
4971
|
+
readonly Append: "append";
|
|
4972
4972
|
readonly Delete: "delete";
|
|
4973
4973
|
}>;
|
|
4974
4974
|
/** @deprecated use `CreateDeploymentRoutesOp$outboundSchema` instead. */
|
|
4975
4975
|
const outboundSchema: z.ZodNativeEnum<{
|
|
4976
|
-
readonly Append: "append";
|
|
4977
4976
|
readonly Set: "set";
|
|
4977
|
+
readonly Append: "append";
|
|
4978
4978
|
readonly Delete: "delete";
|
|
4979
4979
|
}>;
|
|
4980
4980
|
}
|
|
@@ -5422,13 +5422,13 @@ export declare const CreateDeploymentGitRepoOwnerType$outboundSchema: z.ZodNativ
|
|
|
5422
5422
|
export declare namespace CreateDeploymentGitRepoOwnerType$ {
|
|
5423
5423
|
/** @deprecated use `CreateDeploymentGitRepoOwnerType$inboundSchema` instead. */
|
|
5424
5424
|
const inboundSchema: z.ZodNativeEnum<{
|
|
5425
|
-
readonly Team: "team";
|
|
5426
5425
|
readonly User: "user";
|
|
5426
|
+
readonly Team: "team";
|
|
5427
5427
|
}>;
|
|
5428
5428
|
/** @deprecated use `CreateDeploymentGitRepoOwnerType$outboundSchema` instead. */
|
|
5429
5429
|
const outboundSchema: z.ZodNativeEnum<{
|
|
5430
|
-
readonly Team: "team";
|
|
5431
5430
|
readonly User: "user";
|
|
5431
|
+
readonly Team: "team";
|
|
5432
5432
|
}>;
|
|
5433
5433
|
}
|
|
5434
5434
|
/** @internal */
|
|
@@ -5491,13 +5491,13 @@ export declare const GitRepoOwnerType$outboundSchema: z.ZodNativeEnum<typeof Git
|
|
|
5491
5491
|
export declare namespace GitRepoOwnerType$ {
|
|
5492
5492
|
/** @deprecated use `GitRepoOwnerType$inboundSchema` instead. */
|
|
5493
5493
|
const inboundSchema: z.ZodNativeEnum<{
|
|
5494
|
-
readonly Team: "team";
|
|
5495
5494
|
readonly User: "user";
|
|
5495
|
+
readonly Team: "team";
|
|
5496
5496
|
}>;
|
|
5497
5497
|
/** @deprecated use `GitRepoOwnerType$outboundSchema` instead. */
|
|
5498
5498
|
const outboundSchema: z.ZodNativeEnum<{
|
|
5499
|
-
readonly Team: "team";
|
|
5500
5499
|
readonly User: "user";
|
|
5500
|
+
readonly Team: "team";
|
|
5501
5501
|
}>;
|
|
5502
5502
|
}
|
|
5503
5503
|
/** @internal */
|
|
@@ -5560,13 +5560,13 @@ export declare const OwnerType$outboundSchema: z.ZodNativeEnum<typeof OwnerType>
|
|
|
5560
5560
|
export declare namespace OwnerType$ {
|
|
5561
5561
|
/** @deprecated use `OwnerType$inboundSchema` instead. */
|
|
5562
5562
|
const inboundSchema: z.ZodNativeEnum<{
|
|
5563
|
-
readonly Team: "team";
|
|
5564
5563
|
readonly User: "user";
|
|
5564
|
+
readonly Team: "team";
|
|
5565
5565
|
}>;
|
|
5566
5566
|
/** @deprecated use `OwnerType$outboundSchema` instead. */
|
|
5567
5567
|
const outboundSchema: z.ZodNativeEnum<{
|
|
5568
|
-
readonly Team: "team";
|
|
5569
5568
|
readonly User: "user";
|
|
5569
|
+
readonly Team: "team";
|
|
5570
5570
|
}>;
|
|
5571
5571
|
}
|
|
5572
5572
|
/** @internal */
|
|
@@ -162,11 +162,11 @@ export const CreateDeploymentFramework = {
|
|
|
162
162
|
Xmcp: "xmcp",
|
|
163
163
|
};
|
|
164
164
|
export const CreateDeploymentDeploymentsStatus = {
|
|
165
|
+
Error: "error",
|
|
166
|
+
Timeout: "timeout",
|
|
165
167
|
Skipped: "skipped",
|
|
166
168
|
Pending: "pending",
|
|
167
169
|
Ready: "ready",
|
|
168
|
-
Error: "error",
|
|
169
|
-
Timeout: "timeout",
|
|
170
170
|
};
|
|
171
171
|
/**
|
|
172
172
|
* Must be `http` or `https`.
|
|
@@ -184,8 +184,8 @@ export const ContentDispositionType = {
|
|
|
184
184
|
Attachment: "attachment",
|
|
185
185
|
};
|
|
186
186
|
export const CreateDeploymentReadyState = {
|
|
187
|
-
Building: "BUILDING",
|
|
188
187
|
Error: "ERROR",
|
|
188
|
+
Building: "BUILDING",
|
|
189
189
|
Initializing: "INITIALIZING",
|
|
190
190
|
Ready: "READY",
|
|
191
191
|
};
|
|
@@ -324,12 +324,12 @@ export const CreateDeploymentPlan = {
|
|
|
324
324
|
Enterprise: "enterprise",
|
|
325
325
|
};
|
|
326
326
|
export const FunctionType = {
|
|
327
|
-
Fluid: "fluid",
|
|
328
327
|
Standard: "standard",
|
|
328
|
+
Fluid: "fluid",
|
|
329
329
|
};
|
|
330
330
|
export const FunctionMemoryType = {
|
|
331
|
-
Standard: "standard",
|
|
332
331
|
StandardLegacy: "standard_legacy",
|
|
332
|
+
Standard: "standard",
|
|
333
333
|
Performance: "performance",
|
|
334
334
|
};
|
|
335
335
|
export const Architecture = {
|
|
@@ -343,12 +343,12 @@ export const CreateDeploymentDeploymentsType = {
|
|
|
343
343
|
QueueV1beta: "queue/v1beta",
|
|
344
344
|
};
|
|
345
345
|
export const Handle = {
|
|
346
|
-
Error: "error",
|
|
347
346
|
Filesystem: "filesystem",
|
|
347
|
+
Error: "error",
|
|
348
348
|
Hit: "hit",
|
|
349
349
|
Miss: "miss",
|
|
350
|
-
Rewrite: "rewrite",
|
|
351
350
|
Resource: "resource",
|
|
351
|
+
Rewrite: "rewrite",
|
|
352
352
|
};
|
|
353
353
|
export const CreateDeploymentHasType = {
|
|
354
354
|
Header: "header",
|
|
@@ -376,8 +376,8 @@ export const RoutesType = {
|
|
|
376
376
|
ResponseHeaders: "response.headers",
|
|
377
377
|
};
|
|
378
378
|
export const CreateDeploymentRoutesOp = {
|
|
379
|
-
Append: "append",
|
|
380
379
|
Set: "set",
|
|
380
|
+
Append: "append",
|
|
381
381
|
Delete: "delete",
|
|
382
382
|
};
|
|
383
383
|
export const CreateDeploymentState = {
|
|
@@ -389,22 +389,22 @@ export const CreateDeploymentGitRepoDeploymentsType = {
|
|
|
389
389
|
Bitbucket: "bitbucket",
|
|
390
390
|
};
|
|
391
391
|
export const CreateDeploymentGitRepoOwnerType = {
|
|
392
|
-
Team: "team",
|
|
393
392
|
User: "user",
|
|
393
|
+
Team: "team",
|
|
394
394
|
};
|
|
395
395
|
export const CreateDeploymentGitRepoType = {
|
|
396
396
|
Github: "github",
|
|
397
397
|
};
|
|
398
398
|
export const GitRepoOwnerType = {
|
|
399
|
-
Team: "team",
|
|
400
399
|
User: "user",
|
|
400
|
+
Team: "team",
|
|
401
401
|
};
|
|
402
402
|
export const GitRepoType = {
|
|
403
403
|
Gitlab: "gitlab",
|
|
404
404
|
};
|
|
405
405
|
export const OwnerType = {
|
|
406
|
-
Team: "team",
|
|
407
406
|
User: "user",
|
|
407
|
+
Team: "team",
|
|
408
408
|
};
|
|
409
409
|
/** @internal */
|
|
410
410
|
export const ForceNew$inboundSchema = z
|