@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
|
@@ -32,6 +32,20 @@ export const GitForkProtection = {
|
|
|
32
32
|
*/
|
|
33
33
|
export type GitForkProtection = ClosedEnum<typeof GitForkProtection>;
|
|
34
34
|
|
|
35
|
+
/**
|
|
36
|
+
* Filter results by projects with elastic concurrency enabled
|
|
37
|
+
*/
|
|
38
|
+
export const ElasticConcurrencyEnabled = {
|
|
39
|
+
One: "1",
|
|
40
|
+
Zero: "0",
|
|
41
|
+
} as const;
|
|
42
|
+
/**
|
|
43
|
+
* Filter results by projects with elastic concurrency enabled
|
|
44
|
+
*/
|
|
45
|
+
export type ElasticConcurrencyEnabled = ClosedEnum<
|
|
46
|
+
typeof ElasticConcurrencyEnabled
|
|
47
|
+
>;
|
|
48
|
+
|
|
35
49
|
export type GetProjectsRequest = {
|
|
36
50
|
/**
|
|
37
51
|
* Query only projects updated after the given timestamp
|
|
@@ -74,6 +88,10 @@ export type GetProjectsRequest = {
|
|
|
74
88
|
*/
|
|
75
89
|
edgeConfigTokenId?: string | undefined;
|
|
76
90
|
deprecated?: boolean | undefined;
|
|
91
|
+
/**
|
|
92
|
+
* Filter results by projects with elastic concurrency enabled
|
|
93
|
+
*/
|
|
94
|
+
elasticConcurrencyEnabled?: ElasticConcurrencyEnabled | undefined;
|
|
77
95
|
/**
|
|
78
96
|
* The Team identifier to perform the request on behalf of.
|
|
79
97
|
*/
|
|
@@ -1074,13 +1092,14 @@ export type GetProjectsBuildMachineType = ClosedEnum<
|
|
|
1074
1092
|
>;
|
|
1075
1093
|
|
|
1076
1094
|
export type GetProjectsResourceConfig = {
|
|
1095
|
+
elasticConcurrencyEnabled?: boolean | undefined;
|
|
1077
1096
|
fluid?: boolean | undefined;
|
|
1078
1097
|
functionDefaultRegions: Array<string>;
|
|
1079
1098
|
functionDefaultTimeout?: number | undefined;
|
|
1080
1099
|
functionDefaultMemoryType?: GetProjectsFunctionDefaultMemoryType | undefined;
|
|
1081
1100
|
functionZeroConfigFailover?: boolean | undefined;
|
|
1082
|
-
elasticConcurrencyEnabled?: boolean | undefined;
|
|
1083
1101
|
buildMachineType?: GetProjectsBuildMachineType | undefined;
|
|
1102
|
+
isNSNBDisabled?: boolean | undefined;
|
|
1084
1103
|
};
|
|
1085
1104
|
|
|
1086
1105
|
/**
|
|
@@ -1159,6 +1178,7 @@ export type GetProjectsProjectsBuildMachineType = ClosedEnum<
|
|
|
1159
1178
|
>;
|
|
1160
1179
|
|
|
1161
1180
|
export type GetProjectsDefaultResourceConfig = {
|
|
1181
|
+
elasticConcurrencyEnabled?: boolean | undefined;
|
|
1162
1182
|
fluid?: boolean | undefined;
|
|
1163
1183
|
functionDefaultRegions: Array<string>;
|
|
1164
1184
|
functionDefaultTimeout?: number | undefined;
|
|
@@ -1166,8 +1186,8 @@ export type GetProjectsDefaultResourceConfig = {
|
|
|
1166
1186
|
| GetProjectsProjectsFunctionDefaultMemoryType
|
|
1167
1187
|
| undefined;
|
|
1168
1188
|
functionZeroConfigFailover?: boolean | undefined;
|
|
1169
|
-
elasticConcurrencyEnabled?: boolean | undefined;
|
|
1170
1189
|
buildMachineType?: GetProjectsProjectsBuildMachineType | undefined;
|
|
1190
|
+
isNSNBDisabled?: boolean | undefined;
|
|
1171
1191
|
};
|
|
1172
1192
|
|
|
1173
1193
|
export const GetProjectsDeploymentType = {
|
|
@@ -1942,6 +1962,27 @@ export namespace GitForkProtection$ {
|
|
|
1942
1962
|
export const outboundSchema = GitForkProtection$outboundSchema;
|
|
1943
1963
|
}
|
|
1944
1964
|
|
|
1965
|
+
/** @internal */
|
|
1966
|
+
export const ElasticConcurrencyEnabled$inboundSchema: z.ZodNativeEnum<
|
|
1967
|
+
typeof ElasticConcurrencyEnabled
|
|
1968
|
+
> = z.nativeEnum(ElasticConcurrencyEnabled);
|
|
1969
|
+
|
|
1970
|
+
/** @internal */
|
|
1971
|
+
export const ElasticConcurrencyEnabled$outboundSchema: z.ZodNativeEnum<
|
|
1972
|
+
typeof ElasticConcurrencyEnabled
|
|
1973
|
+
> = ElasticConcurrencyEnabled$inboundSchema;
|
|
1974
|
+
|
|
1975
|
+
/**
|
|
1976
|
+
* @internal
|
|
1977
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1978
|
+
*/
|
|
1979
|
+
export namespace ElasticConcurrencyEnabled$ {
|
|
1980
|
+
/** @deprecated use `ElasticConcurrencyEnabled$inboundSchema` instead. */
|
|
1981
|
+
export const inboundSchema = ElasticConcurrencyEnabled$inboundSchema;
|
|
1982
|
+
/** @deprecated use `ElasticConcurrencyEnabled$outboundSchema` instead. */
|
|
1983
|
+
export const outboundSchema = ElasticConcurrencyEnabled$outboundSchema;
|
|
1984
|
+
}
|
|
1985
|
+
|
|
1945
1986
|
/** @internal */
|
|
1946
1987
|
export const GetProjectsRequest$inboundSchema: z.ZodType<
|
|
1947
1988
|
GetProjectsRequest,
|
|
@@ -1959,6 +2000,7 @@ export const GetProjectsRequest$inboundSchema: z.ZodType<
|
|
|
1959
2000
|
edgeConfigId: z.string().optional(),
|
|
1960
2001
|
edgeConfigTokenId: z.string().optional(),
|
|
1961
2002
|
deprecated: z.boolean().optional(),
|
|
2003
|
+
elasticConcurrencyEnabled: ElasticConcurrencyEnabled$inboundSchema.optional(),
|
|
1962
2004
|
teamId: z.string().optional(),
|
|
1963
2005
|
slug: z.string().optional(),
|
|
1964
2006
|
});
|
|
@@ -1976,6 +2018,7 @@ export type GetProjectsRequest$Outbound = {
|
|
|
1976
2018
|
edgeConfigId?: string | undefined;
|
|
1977
2019
|
edgeConfigTokenId?: string | undefined;
|
|
1978
2020
|
deprecated?: boolean | undefined;
|
|
2021
|
+
elasticConcurrencyEnabled?: string | undefined;
|
|
1979
2022
|
teamId?: string | undefined;
|
|
1980
2023
|
slug?: string | undefined;
|
|
1981
2024
|
};
|
|
@@ -1997,6 +2040,8 @@ export const GetProjectsRequest$outboundSchema: z.ZodType<
|
|
|
1997
2040
|
edgeConfigId: z.string().optional(),
|
|
1998
2041
|
edgeConfigTokenId: z.string().optional(),
|
|
1999
2042
|
deprecated: z.boolean().optional(),
|
|
2043
|
+
elasticConcurrencyEnabled: ElasticConcurrencyEnabled$outboundSchema
|
|
2044
|
+
.optional(),
|
|
2000
2045
|
teamId: z.string().optional(),
|
|
2001
2046
|
slug: z.string().optional(),
|
|
2002
2047
|
});
|
|
@@ -6919,25 +6964,27 @@ export const GetProjectsResourceConfig$inboundSchema: z.ZodType<
|
|
|
6919
6964
|
z.ZodTypeDef,
|
|
6920
6965
|
unknown
|
|
6921
6966
|
> = z.object({
|
|
6967
|
+
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
6922
6968
|
fluid: z.boolean().optional(),
|
|
6923
6969
|
functionDefaultRegions: z.array(z.string()),
|
|
6924
6970
|
functionDefaultTimeout: z.number().optional(),
|
|
6925
6971
|
functionDefaultMemoryType: GetProjectsFunctionDefaultMemoryType$inboundSchema
|
|
6926
6972
|
.optional(),
|
|
6927
6973
|
functionZeroConfigFailover: z.boolean().optional(),
|
|
6928
|
-
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
6929
6974
|
buildMachineType: GetProjectsBuildMachineType$inboundSchema.optional(),
|
|
6975
|
+
isNSNBDisabled: z.boolean().optional(),
|
|
6930
6976
|
});
|
|
6931
6977
|
|
|
6932
6978
|
/** @internal */
|
|
6933
6979
|
export type GetProjectsResourceConfig$Outbound = {
|
|
6980
|
+
elasticConcurrencyEnabled?: boolean | undefined;
|
|
6934
6981
|
fluid?: boolean | undefined;
|
|
6935
6982
|
functionDefaultRegions: Array<string>;
|
|
6936
6983
|
functionDefaultTimeout?: number | undefined;
|
|
6937
6984
|
functionDefaultMemoryType?: string | undefined;
|
|
6938
6985
|
functionZeroConfigFailover?: boolean | undefined;
|
|
6939
|
-
elasticConcurrencyEnabled?: boolean | undefined;
|
|
6940
6986
|
buildMachineType?: string | undefined;
|
|
6987
|
+
isNSNBDisabled?: boolean | undefined;
|
|
6941
6988
|
};
|
|
6942
6989
|
|
|
6943
6990
|
/** @internal */
|
|
@@ -6946,14 +6993,15 @@ export const GetProjectsResourceConfig$outboundSchema: z.ZodType<
|
|
|
6946
6993
|
z.ZodTypeDef,
|
|
6947
6994
|
GetProjectsResourceConfig
|
|
6948
6995
|
> = z.object({
|
|
6996
|
+
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
6949
6997
|
fluid: z.boolean().optional(),
|
|
6950
6998
|
functionDefaultRegions: z.array(z.string()),
|
|
6951
6999
|
functionDefaultTimeout: z.number().optional(),
|
|
6952
7000
|
functionDefaultMemoryType: GetProjectsFunctionDefaultMemoryType$outboundSchema
|
|
6953
7001
|
.optional(),
|
|
6954
7002
|
functionZeroConfigFailover: z.boolean().optional(),
|
|
6955
|
-
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
6956
7003
|
buildMachineType: GetProjectsBuildMachineType$outboundSchema.optional(),
|
|
7004
|
+
isNSNBDisabled: z.boolean().optional(),
|
|
6957
7005
|
});
|
|
6958
7006
|
|
|
6959
7007
|
/**
|
|
@@ -7226,26 +7274,28 @@ export const GetProjectsDefaultResourceConfig$inboundSchema: z.ZodType<
|
|
|
7226
7274
|
z.ZodTypeDef,
|
|
7227
7275
|
unknown
|
|
7228
7276
|
> = z.object({
|
|
7277
|
+
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
7229
7278
|
fluid: z.boolean().optional(),
|
|
7230
7279
|
functionDefaultRegions: z.array(z.string()),
|
|
7231
7280
|
functionDefaultTimeout: z.number().optional(),
|
|
7232
7281
|
functionDefaultMemoryType:
|
|
7233
7282
|
GetProjectsProjectsFunctionDefaultMemoryType$inboundSchema.optional(),
|
|
7234
7283
|
functionZeroConfigFailover: z.boolean().optional(),
|
|
7235
|
-
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
7236
7284
|
buildMachineType: GetProjectsProjectsBuildMachineType$inboundSchema
|
|
7237
7285
|
.optional(),
|
|
7286
|
+
isNSNBDisabled: z.boolean().optional(),
|
|
7238
7287
|
});
|
|
7239
7288
|
|
|
7240
7289
|
/** @internal */
|
|
7241
7290
|
export type GetProjectsDefaultResourceConfig$Outbound = {
|
|
7291
|
+
elasticConcurrencyEnabled?: boolean | undefined;
|
|
7242
7292
|
fluid?: boolean | undefined;
|
|
7243
7293
|
functionDefaultRegions: Array<string>;
|
|
7244
7294
|
functionDefaultTimeout?: number | undefined;
|
|
7245
7295
|
functionDefaultMemoryType?: string | undefined;
|
|
7246
7296
|
functionZeroConfigFailover?: boolean | undefined;
|
|
7247
|
-
elasticConcurrencyEnabled?: boolean | undefined;
|
|
7248
7297
|
buildMachineType?: string | undefined;
|
|
7298
|
+
isNSNBDisabled?: boolean | undefined;
|
|
7249
7299
|
};
|
|
7250
7300
|
|
|
7251
7301
|
/** @internal */
|
|
@@ -7254,15 +7304,16 @@ export const GetProjectsDefaultResourceConfig$outboundSchema: z.ZodType<
|
|
|
7254
7304
|
z.ZodTypeDef,
|
|
7255
7305
|
GetProjectsDefaultResourceConfig
|
|
7256
7306
|
> = z.object({
|
|
7307
|
+
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
7257
7308
|
fluid: z.boolean().optional(),
|
|
7258
7309
|
functionDefaultRegions: z.array(z.string()),
|
|
7259
7310
|
functionDefaultTimeout: z.number().optional(),
|
|
7260
7311
|
functionDefaultMemoryType:
|
|
7261
7312
|
GetProjectsProjectsFunctionDefaultMemoryType$outboundSchema.optional(),
|
|
7262
7313
|
functionZeroConfigFailover: z.boolean().optional(),
|
|
7263
|
-
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
7264
7314
|
buildMachineType: GetProjectsProjectsBuildMachineType$outboundSchema
|
|
7265
7315
|
.optional(),
|
|
7316
|
+
isNSNBDisabled: z.boolean().optional(),
|
|
7266
7317
|
});
|
|
7267
7318
|
|
|
7268
7319
|
/**
|
|
@@ -55,10 +55,10 @@ export type RemoveProjectEnvResponseBodyProjectsResponseTarget =
|
|
|
55
55
|
|
|
56
56
|
export const RemoveProjectEnvResponseBodyProjectsResponseType = {
|
|
57
57
|
System: "system",
|
|
58
|
+
Secret: "secret",
|
|
58
59
|
Encrypted: "encrypted",
|
|
59
60
|
Plain: "plain",
|
|
60
61
|
Sensitive: "sensitive",
|
|
61
|
-
Secret: "secret",
|
|
62
62
|
} as const;
|
|
63
63
|
export type RemoveProjectEnvResponseBodyProjectsResponseType = ClosedEnum<
|
|
64
64
|
typeof RemoveProjectEnvResponseBodyProjectsResponseType
|
|
@@ -405,10 +405,10 @@ export type RemoveProjectEnvResponseBodyProjectsTarget =
|
|
|
405
405
|
|
|
406
406
|
export const RemoveProjectEnvResponseBodyProjectsType = {
|
|
407
407
|
System: "system",
|
|
408
|
+
Secret: "secret",
|
|
408
409
|
Encrypted: "encrypted",
|
|
409
410
|
Plain: "plain",
|
|
410
411
|
Sensitive: "sensitive",
|
|
411
|
-
Secret: "secret",
|
|
412
412
|
} as const;
|
|
413
413
|
export type RemoveProjectEnvResponseBodyProjectsType = ClosedEnum<
|
|
414
414
|
typeof RemoveProjectEnvResponseBodyProjectsType
|
|
@@ -754,10 +754,10 @@ export type RemoveProjectEnvResponseBodyTarget =
|
|
|
754
754
|
|
|
755
755
|
export const RemoveProjectEnvResponseBodyType = {
|
|
756
756
|
System: "system",
|
|
757
|
+
Secret: "secret",
|
|
757
758
|
Encrypted: "encrypted",
|
|
758
759
|
Plain: "plain",
|
|
759
760
|
Sensitive: "sensitive",
|
|
760
|
-
Secret: "secret",
|
|
761
761
|
} as const;
|
|
762
762
|
export type RemoveProjectEnvResponseBodyType = ClosedEnum<
|
|
763
763
|
typeof RemoveProjectEnvResponseBodyType
|
|
@@ -1051,6 +1051,7 @@ export type UpdateProjectDataCacheResourceConfig = {
|
|
|
1051
1051
|
functionZeroConfigFailover?: boolean | undefined;
|
|
1052
1052
|
elasticConcurrencyEnabled?: boolean | undefined;
|
|
1053
1053
|
buildMachineType?: UpdateProjectDataCacheProjectsBuildMachineType | undefined;
|
|
1054
|
+
isNSNBDisabled?: boolean | undefined;
|
|
1054
1055
|
};
|
|
1055
1056
|
|
|
1056
1057
|
/**
|
|
@@ -1138,6 +1139,7 @@ export type DefaultResourceConfig = {
|
|
|
1138
1139
|
functionZeroConfigFailover?: boolean | undefined;
|
|
1139
1140
|
elasticConcurrencyEnabled?: boolean | undefined;
|
|
1140
1141
|
buildMachineType?: UpdateProjectDataCacheBuildMachineType | undefined;
|
|
1142
|
+
isNSNBDisabled?: boolean | undefined;
|
|
1141
1143
|
};
|
|
1142
1144
|
|
|
1143
1145
|
export const UpdateProjectDataCacheDeploymentType = {
|
|
@@ -6894,6 +6896,7 @@ export const UpdateProjectDataCacheResourceConfig$inboundSchema: z.ZodType<
|
|
|
6894
6896
|
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
6895
6897
|
buildMachineType: UpdateProjectDataCacheProjectsBuildMachineType$inboundSchema
|
|
6896
6898
|
.optional(),
|
|
6899
|
+
isNSNBDisabled: z.boolean().optional(),
|
|
6897
6900
|
});
|
|
6898
6901
|
|
|
6899
6902
|
/** @internal */
|
|
@@ -6905,6 +6908,7 @@ export type UpdateProjectDataCacheResourceConfig$Outbound = {
|
|
|
6905
6908
|
functionZeroConfigFailover?: boolean | undefined;
|
|
6906
6909
|
elasticConcurrencyEnabled?: boolean | undefined;
|
|
6907
6910
|
buildMachineType?: string | undefined;
|
|
6911
|
+
isNSNBDisabled?: boolean | undefined;
|
|
6908
6912
|
};
|
|
6909
6913
|
|
|
6910
6914
|
/** @internal */
|
|
@@ -6923,6 +6927,7 @@ export const UpdateProjectDataCacheResourceConfig$outboundSchema: z.ZodType<
|
|
|
6923
6927
|
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
6924
6928
|
buildMachineType:
|
|
6925
6929
|
UpdateProjectDataCacheProjectsBuildMachineType$outboundSchema.optional(),
|
|
6930
|
+
isNSNBDisabled: z.boolean().optional(),
|
|
6926
6931
|
});
|
|
6927
6932
|
|
|
6928
6933
|
/**
|
|
@@ -7195,6 +7200,7 @@ export const DefaultResourceConfig$inboundSchema: z.ZodType<
|
|
|
7195
7200
|
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
7196
7201
|
buildMachineType: UpdateProjectDataCacheBuildMachineType$inboundSchema
|
|
7197
7202
|
.optional(),
|
|
7203
|
+
isNSNBDisabled: z.boolean().optional(),
|
|
7198
7204
|
});
|
|
7199
7205
|
|
|
7200
7206
|
/** @internal */
|
|
@@ -7206,6 +7212,7 @@ export type DefaultResourceConfig$Outbound = {
|
|
|
7206
7212
|
functionZeroConfigFailover?: boolean | undefined;
|
|
7207
7213
|
elasticConcurrencyEnabled?: boolean | undefined;
|
|
7208
7214
|
buildMachineType?: string | undefined;
|
|
7215
|
+
isNSNBDisabled?: boolean | undefined;
|
|
7209
7216
|
};
|
|
7210
7217
|
|
|
7211
7218
|
/** @internal */
|
|
@@ -7223,6 +7230,7 @@ export const DefaultResourceConfig$outboundSchema: z.ZodType<
|
|
|
7223
7230
|
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
7224
7231
|
buildMachineType: UpdateProjectDataCacheBuildMachineType$outboundSchema
|
|
7225
7232
|
.optional(),
|
|
7233
|
+
isNSNBDisabled: z.boolean().optional(),
|
|
7226
7234
|
});
|
|
7227
7235
|
|
|
7228
7236
|
/**
|
|
@@ -123,6 +123,7 @@ export type UpdateProjectResourceConfig = {
|
|
|
123
123
|
*/
|
|
124
124
|
functionZeroConfigFailover?: boolean | undefined;
|
|
125
125
|
elasticConcurrencyEnabled?: boolean | undefined;
|
|
126
|
+
isNSNBDisabled?: boolean | undefined;
|
|
126
127
|
};
|
|
127
128
|
|
|
128
129
|
/**
|
|
@@ -1430,6 +1431,7 @@ export type UpdateProjectProjectsBuildMachineType = ClosedEnum<
|
|
|
1430
1431
|
>;
|
|
1431
1432
|
|
|
1432
1433
|
export type UpdateProjectProjectsResourceConfig = {
|
|
1434
|
+
elasticConcurrencyEnabled?: boolean | undefined;
|
|
1433
1435
|
fluid?: boolean | undefined;
|
|
1434
1436
|
functionDefaultRegions: Array<string>;
|
|
1435
1437
|
functionDefaultTimeout?: number | undefined;
|
|
@@ -1437,8 +1439,8 @@ export type UpdateProjectProjectsResourceConfig = {
|
|
|
1437
1439
|
| UpdateProjectProjectsFunctionDefaultMemoryType
|
|
1438
1440
|
| undefined;
|
|
1439
1441
|
functionZeroConfigFailover?: boolean | undefined;
|
|
1440
|
-
elasticConcurrencyEnabled?: boolean | undefined;
|
|
1441
1442
|
buildMachineType?: UpdateProjectProjectsBuildMachineType | undefined;
|
|
1443
|
+
isNSNBDisabled?: boolean | undefined;
|
|
1442
1444
|
};
|
|
1443
1445
|
|
|
1444
1446
|
/**
|
|
@@ -1517,6 +1519,7 @@ export type UpdateProjectProjectsResponseBuildMachineType = ClosedEnum<
|
|
|
1517
1519
|
>;
|
|
1518
1520
|
|
|
1519
1521
|
export type UpdateProjectDefaultResourceConfig = {
|
|
1522
|
+
elasticConcurrencyEnabled?: boolean | undefined;
|
|
1520
1523
|
fluid?: boolean | undefined;
|
|
1521
1524
|
functionDefaultRegions: Array<string>;
|
|
1522
1525
|
functionDefaultTimeout?: number | undefined;
|
|
@@ -1524,8 +1527,8 @@ export type UpdateProjectDefaultResourceConfig = {
|
|
|
1524
1527
|
| UpdateProjectProjectsResponseFunctionDefaultMemoryType
|
|
1525
1528
|
| undefined;
|
|
1526
1529
|
functionZeroConfigFailover?: boolean | undefined;
|
|
1527
|
-
elasticConcurrencyEnabled?: boolean | undefined;
|
|
1528
1530
|
buildMachineType?: UpdateProjectProjectsResponseBuildMachineType | undefined;
|
|
1531
|
+
isNSNBDisabled?: boolean | undefined;
|
|
1529
1532
|
};
|
|
1530
1533
|
|
|
1531
1534
|
export const UpdateProjectProjectsResponseDeploymentType = {
|
|
@@ -2379,6 +2382,7 @@ export const UpdateProjectResourceConfig$inboundSchema: z.ZodType<
|
|
|
2379
2382
|
UpdateProjectFunctionDefaultMemoryType$inboundSchema.optional(),
|
|
2380
2383
|
functionZeroConfigFailover: z.boolean().optional(),
|
|
2381
2384
|
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
2385
|
+
isNSNBDisabled: z.boolean().optional(),
|
|
2382
2386
|
});
|
|
2383
2387
|
|
|
2384
2388
|
/** @internal */
|
|
@@ -2390,6 +2394,7 @@ export type UpdateProjectResourceConfig$Outbound = {
|
|
|
2390
2394
|
functionDefaultMemoryType?: string | undefined;
|
|
2391
2395
|
functionZeroConfigFailover?: boolean | undefined;
|
|
2392
2396
|
elasticConcurrencyEnabled?: boolean | undefined;
|
|
2397
|
+
isNSNBDisabled?: boolean | undefined;
|
|
2393
2398
|
};
|
|
2394
2399
|
|
|
2395
2400
|
/** @internal */
|
|
@@ -2406,6 +2411,7 @@ export const UpdateProjectResourceConfig$outboundSchema: z.ZodType<
|
|
|
2406
2411
|
UpdateProjectFunctionDefaultMemoryType$outboundSchema.optional(),
|
|
2407
2412
|
functionZeroConfigFailover: z.boolean().optional(),
|
|
2408
2413
|
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
2414
|
+
isNSNBDisabled: z.boolean().optional(),
|
|
2409
2415
|
});
|
|
2410
2416
|
|
|
2411
2417
|
/**
|
|
@@ -8222,26 +8228,28 @@ export const UpdateProjectProjectsResourceConfig$inboundSchema: z.ZodType<
|
|
|
8222
8228
|
z.ZodTypeDef,
|
|
8223
8229
|
unknown
|
|
8224
8230
|
> = z.object({
|
|
8231
|
+
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
8225
8232
|
fluid: z.boolean().optional(),
|
|
8226
8233
|
functionDefaultRegions: z.array(z.string()),
|
|
8227
8234
|
functionDefaultTimeout: z.number().optional(),
|
|
8228
8235
|
functionDefaultMemoryType:
|
|
8229
8236
|
UpdateProjectProjectsFunctionDefaultMemoryType$inboundSchema.optional(),
|
|
8230
8237
|
functionZeroConfigFailover: z.boolean().optional(),
|
|
8231
|
-
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
8232
8238
|
buildMachineType: UpdateProjectProjectsBuildMachineType$inboundSchema
|
|
8233
8239
|
.optional(),
|
|
8240
|
+
isNSNBDisabled: z.boolean().optional(),
|
|
8234
8241
|
});
|
|
8235
8242
|
|
|
8236
8243
|
/** @internal */
|
|
8237
8244
|
export type UpdateProjectProjectsResourceConfig$Outbound = {
|
|
8245
|
+
elasticConcurrencyEnabled?: boolean | undefined;
|
|
8238
8246
|
fluid?: boolean | undefined;
|
|
8239
8247
|
functionDefaultRegions: Array<string>;
|
|
8240
8248
|
functionDefaultTimeout?: number | undefined;
|
|
8241
8249
|
functionDefaultMemoryType?: string | undefined;
|
|
8242
8250
|
functionZeroConfigFailover?: boolean | undefined;
|
|
8243
|
-
elasticConcurrencyEnabled?: boolean | undefined;
|
|
8244
8251
|
buildMachineType?: string | undefined;
|
|
8252
|
+
isNSNBDisabled?: boolean | undefined;
|
|
8245
8253
|
};
|
|
8246
8254
|
|
|
8247
8255
|
/** @internal */
|
|
@@ -8250,15 +8258,16 @@ export const UpdateProjectProjectsResourceConfig$outboundSchema: z.ZodType<
|
|
|
8250
8258
|
z.ZodTypeDef,
|
|
8251
8259
|
UpdateProjectProjectsResourceConfig
|
|
8252
8260
|
> = z.object({
|
|
8261
|
+
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
8253
8262
|
fluid: z.boolean().optional(),
|
|
8254
8263
|
functionDefaultRegions: z.array(z.string()),
|
|
8255
8264
|
functionDefaultTimeout: z.number().optional(),
|
|
8256
8265
|
functionDefaultMemoryType:
|
|
8257
8266
|
UpdateProjectProjectsFunctionDefaultMemoryType$outboundSchema.optional(),
|
|
8258
8267
|
functionZeroConfigFailover: z.boolean().optional(),
|
|
8259
|
-
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
8260
8268
|
buildMachineType: UpdateProjectProjectsBuildMachineType$outboundSchema
|
|
8261
8269
|
.optional(),
|
|
8270
|
+
isNSNBDisabled: z.boolean().optional(),
|
|
8262
8271
|
});
|
|
8263
8272
|
|
|
8264
8273
|
/**
|
|
@@ -8540,6 +8549,7 @@ export const UpdateProjectDefaultResourceConfig$inboundSchema: z.ZodType<
|
|
|
8540
8549
|
z.ZodTypeDef,
|
|
8541
8550
|
unknown
|
|
8542
8551
|
> = z.object({
|
|
8552
|
+
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
8543
8553
|
fluid: z.boolean().optional(),
|
|
8544
8554
|
functionDefaultRegions: z.array(z.string()),
|
|
8545
8555
|
functionDefaultTimeout: z.number().optional(),
|
|
@@ -8547,20 +8557,21 @@ export const UpdateProjectDefaultResourceConfig$inboundSchema: z.ZodType<
|
|
|
8547
8557
|
UpdateProjectProjectsResponseFunctionDefaultMemoryType$inboundSchema
|
|
8548
8558
|
.optional(),
|
|
8549
8559
|
functionZeroConfigFailover: z.boolean().optional(),
|
|
8550
|
-
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
8551
8560
|
buildMachineType: UpdateProjectProjectsResponseBuildMachineType$inboundSchema
|
|
8552
8561
|
.optional(),
|
|
8562
|
+
isNSNBDisabled: z.boolean().optional(),
|
|
8553
8563
|
});
|
|
8554
8564
|
|
|
8555
8565
|
/** @internal */
|
|
8556
8566
|
export type UpdateProjectDefaultResourceConfig$Outbound = {
|
|
8567
|
+
elasticConcurrencyEnabled?: boolean | undefined;
|
|
8557
8568
|
fluid?: boolean | undefined;
|
|
8558
8569
|
functionDefaultRegions: Array<string>;
|
|
8559
8570
|
functionDefaultTimeout?: number | undefined;
|
|
8560
8571
|
functionDefaultMemoryType?: string | undefined;
|
|
8561
8572
|
functionZeroConfigFailover?: boolean | undefined;
|
|
8562
|
-
elasticConcurrencyEnabled?: boolean | undefined;
|
|
8563
8573
|
buildMachineType?: string | undefined;
|
|
8574
|
+
isNSNBDisabled?: boolean | undefined;
|
|
8564
8575
|
};
|
|
8565
8576
|
|
|
8566
8577
|
/** @internal */
|
|
@@ -8569,6 +8580,7 @@ export const UpdateProjectDefaultResourceConfig$outboundSchema: z.ZodType<
|
|
|
8569
8580
|
z.ZodTypeDef,
|
|
8570
8581
|
UpdateProjectDefaultResourceConfig
|
|
8571
8582
|
> = z.object({
|
|
8583
|
+
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
8572
8584
|
fluid: z.boolean().optional(),
|
|
8573
8585
|
functionDefaultRegions: z.array(z.string()),
|
|
8574
8586
|
functionDefaultTimeout: z.number().optional(),
|
|
@@ -8576,9 +8588,9 @@ export const UpdateProjectDefaultResourceConfig$outboundSchema: z.ZodType<
|
|
|
8576
8588
|
UpdateProjectProjectsResponseFunctionDefaultMemoryType$outboundSchema
|
|
8577
8589
|
.optional(),
|
|
8578
8590
|
functionZeroConfigFailover: z.boolean().optional(),
|
|
8579
|
-
elasticConcurrencyEnabled: z.boolean().optional(),
|
|
8580
8591
|
buildMachineType: UpdateProjectProjectsResponseBuildMachineType$outboundSchema
|
|
8581
8592
|
.optional(),
|
|
8593
|
+
isNSNBDisabled: z.boolean().optional(),
|
|
8582
8594
|
});
|
|
8583
8595
|
|
|
8584
8596
|
/**
|