@vercel/sdk 1.17.3 → 1.17.4
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/README.md +28 -24
- package/bin/mcp-server.js +1270 -988
- package/bin/mcp-server.js.map +15 -9
- package/esm/__tests__/accessgroups.test.js +3 -1
- package/esm/__tests__/accessgroups.test.js.map +1 -1
- package/esm/__tests__/domains.test.js +4 -10
- 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 +2 -6
- 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/__tests__/teams.test.js +2 -2
- package/esm/__tests__/teams.test.js.map +1 -1
- package/esm/funcs/edgeCacheDangerouslyDeleteBySrcImages.d.ts +17 -0
- package/esm/funcs/edgeCacheDangerouslyDeleteBySrcImages.d.ts.map +1 -0
- package/esm/funcs/edgeCacheDangerouslyDeleteBySrcImages.js +85 -0
- package/esm/funcs/edgeCacheDangerouslyDeleteBySrcImages.js.map +1 -0
- package/esm/funcs/edgeCacheInvalidateBySrcImages.d.ts +17 -0
- package/esm/funcs/edgeCacheInvalidateBySrcImages.d.ts.map +1 -0
- package/esm/funcs/edgeCacheInvalidateBySrcImages.js +85 -0
- package/esm/funcs/edgeCacheInvalidateBySrcImages.js.map +1 -0
- package/esm/lib/config.d.ts +2 -2
- package/esm/lib/config.js +2 -2
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.d.ts.map +1 -1
- package/esm/mcp-server/server.js +5 -1
- package/esm/mcp-server/server.js.map +1 -1
- package/esm/mcp-server/tools/edgeCacheDangerouslyDeleteBySrcImages.d.ts +7 -0
- package/esm/mcp-server/tools/edgeCacheDangerouslyDeleteBySrcImages.d.ts.map +1 -0
- package/esm/mcp-server/tools/edgeCacheDangerouslyDeleteBySrcImages.js +27 -0
- package/esm/mcp-server/tools/edgeCacheDangerouslyDeleteBySrcImages.js.map +1 -0
- package/esm/mcp-server/tools/edgeCacheInvalidateBySrcImages.d.ts +7 -0
- package/esm/mcp-server/tools/edgeCacheInvalidateBySrcImages.d.ts.map +1 -0
- package/esm/mcp-server/tools/edgeCacheInvalidateBySrcImages.js +27 -0
- package/esm/mcp-server/tools/edgeCacheInvalidateBySrcImages.js.map +1 -0
- package/esm/models/createprojectop.d.ts +18 -18
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +18 -18
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/dangerouslydeletebysrcimagesop.d.ts +44 -0
- package/esm/models/dangerouslydeletebysrcimagesop.d.ts.map +1 -0
- package/esm/models/dangerouslydeletebysrcimagesop.js +51 -0
- package/esm/models/dangerouslydeletebysrcimagesop.js.map +1 -0
- package/esm/models/invalidatebysrcimagesop.d.ts +42 -0
- package/esm/models/invalidatebysrcimagesop.d.ts.map +1 -0
- package/esm/models/invalidatebysrcimagesop.js +51 -0
- package/esm/models/invalidatebysrcimagesop.js.map +1 -0
- package/esm/models/team.d.ts +11 -11
- package/esm/models/team.d.ts.map +1 -1
- package/esm/models/team.js +8 -8
- package/esm/models/team.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +18 -18
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +18 -18
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/sdk/edgecache.d.ts +16 -0
- package/esm/sdk/edgecache.d.ts.map +1 -1
- package/esm/sdk/edgecache.js +20 -0
- package/esm/sdk/edgecache.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 +3 -1
- package/src/__tests__/domains.test.ts +4 -10
- package/src/__tests__/edgeconfig.test.ts +6 -6
- package/src/__tests__/rollingrelease.test.ts +2 -6
- package/src/__tests__/security.test.ts +4 -4
- package/src/__tests__/teams.test.ts +2 -2
- package/src/funcs/edgeCacheDangerouslyDeleteBySrcImages.ts +171 -0
- package/src/funcs/edgeCacheInvalidateBySrcImages.ts +171 -0
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +5 -1
- package/src/mcp-server/tools/edgeCacheDangerouslyDeleteBySrcImages.ts +37 -0
- package/src/mcp-server/tools/edgeCacheInvalidateBySrcImages.ts +36 -0
- package/src/models/createprojectop.ts +30 -30
- package/src/models/dangerouslydeletebysrcimagesop.ts +141 -0
- package/src/models/invalidatebysrcimagesop.ts +127 -0
- package/src/models/team.ts +15 -15
- package/src/models/updateprojectop.ts +30 -30
- package/src/sdk/edgecache.ts +38 -0
- package/vercel-spec.json +241 -61
package/vercel-spec.json
CHANGED
|
@@ -28103,6 +28103,7 @@
|
|
|
28103
28103
|
},
|
|
28104
28104
|
"sampling": {
|
|
28105
28105
|
"type": "array",
|
|
28106
|
+
"maxItems": 10,
|
|
28106
28107
|
"items": {
|
|
28107
28108
|
"type": "object",
|
|
28108
28109
|
"additionalProperties": false,
|
|
@@ -31569,6 +31570,7 @@
|
|
|
31569
31570
|
},
|
|
31570
31571
|
"sampling": {
|
|
31571
31572
|
"type": "array",
|
|
31573
|
+
"maxItems": 10,
|
|
31572
31574
|
"items": {
|
|
31573
31575
|
"type": "object",
|
|
31574
31576
|
"additionalProperties": false,
|
|
@@ -32098,6 +32100,184 @@
|
|
|
32098
32100
|
}
|
|
32099
32101
|
}
|
|
32100
32102
|
},
|
|
32103
|
+
"/v1/edge-cache/invalidate-by-src-images": {
|
|
32104
|
+
"post": {
|
|
32105
|
+
"description": "Marks a source image as stale, causing its corresponding transformed images to be revalidated in the background on the next request.",
|
|
32106
|
+
"operationId": "invalidateBySrcImages",
|
|
32107
|
+
"security": [
|
|
32108
|
+
{
|
|
32109
|
+
"bearerToken": []
|
|
32110
|
+
}
|
|
32111
|
+
],
|
|
32112
|
+
"summary": "Invalidate by source image",
|
|
32113
|
+
"tags": [
|
|
32114
|
+
"edge-cache"
|
|
32115
|
+
],
|
|
32116
|
+
"responses": {
|
|
32117
|
+
"200": {
|
|
32118
|
+
"description": ""
|
|
32119
|
+
},
|
|
32120
|
+
"400": {
|
|
32121
|
+
"description": "One of the provided values in the request body is invalid.\nOne of the provided values in the request query is invalid."
|
|
32122
|
+
},
|
|
32123
|
+
"401": {
|
|
32124
|
+
"description": "The request is not authorized."
|
|
32125
|
+
},
|
|
32126
|
+
"402": {
|
|
32127
|
+
"description": ""
|
|
32128
|
+
},
|
|
32129
|
+
"403": {
|
|
32130
|
+
"description": "You do not have permission to access this resource."
|
|
32131
|
+
},
|
|
32132
|
+
"404": {
|
|
32133
|
+
"description": ""
|
|
32134
|
+
}
|
|
32135
|
+
},
|
|
32136
|
+
"parameters": [
|
|
32137
|
+
{
|
|
32138
|
+
"name": "projectIdOrName",
|
|
32139
|
+
"in": "query",
|
|
32140
|
+
"required": true,
|
|
32141
|
+
"schema": {
|
|
32142
|
+
"type": "string"
|
|
32143
|
+
}
|
|
32144
|
+
},
|
|
32145
|
+
{
|
|
32146
|
+
"description": "The Team identifier to perform the request on behalf of.",
|
|
32147
|
+
"in": "query",
|
|
32148
|
+
"name": "teamId",
|
|
32149
|
+
"schema": {
|
|
32150
|
+
"type": "string",
|
|
32151
|
+
"example": "team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
32152
|
+
}
|
|
32153
|
+
},
|
|
32154
|
+
{
|
|
32155
|
+
"description": "The Team slug to perform the request on behalf of.",
|
|
32156
|
+
"in": "query",
|
|
32157
|
+
"name": "slug",
|
|
32158
|
+
"schema": {
|
|
32159
|
+
"type": "string",
|
|
32160
|
+
"example": "my-team-url-slug"
|
|
32161
|
+
}
|
|
32162
|
+
}
|
|
32163
|
+
],
|
|
32164
|
+
"requestBody": {
|
|
32165
|
+
"content": {
|
|
32166
|
+
"application/json": {
|
|
32167
|
+
"schema": {
|
|
32168
|
+
"additionalProperties": false,
|
|
32169
|
+
"type": "object",
|
|
32170
|
+
"required": [
|
|
32171
|
+
"srcImages"
|
|
32172
|
+
],
|
|
32173
|
+
"properties": {
|
|
32174
|
+
"srcImages": {
|
|
32175
|
+
"items": {
|
|
32176
|
+
"maxLength": 8192,
|
|
32177
|
+
"type": "string"
|
|
32178
|
+
},
|
|
32179
|
+
"maxItems": 8,
|
|
32180
|
+
"minItems": 1,
|
|
32181
|
+
"type": "array"
|
|
32182
|
+
}
|
|
32183
|
+
}
|
|
32184
|
+
}
|
|
32185
|
+
}
|
|
32186
|
+
}
|
|
32187
|
+
}
|
|
32188
|
+
}
|
|
32189
|
+
},
|
|
32190
|
+
"/v1/edge-cache/dangerously-delete-by-src-images": {
|
|
32191
|
+
"post": {
|
|
32192
|
+
"description": "Marks a source image as deleted, causing cache entries associated with that source image to be revalidated in the foreground on the next request. Use this method with caution because one source image can be associated with many paths and deleting the cache can cause many concurrent requests to the origin leading to cache stampede problem. A good use case for deleting the cache is when the origin has also been deleted, for example it returns a 404 or 410 status code.",
|
|
32193
|
+
"operationId": "dangerouslyDeleteBySrcImages",
|
|
32194
|
+
"security": [
|
|
32195
|
+
{
|
|
32196
|
+
"bearerToken": []
|
|
32197
|
+
}
|
|
32198
|
+
],
|
|
32199
|
+
"summary": "Dangerously delete by source image",
|
|
32200
|
+
"tags": [
|
|
32201
|
+
"edge-cache"
|
|
32202
|
+
],
|
|
32203
|
+
"responses": {
|
|
32204
|
+
"200": {
|
|
32205
|
+
"description": ""
|
|
32206
|
+
},
|
|
32207
|
+
"400": {
|
|
32208
|
+
"description": "One of the provided values in the request body is invalid.\nOne of the provided values in the request query is invalid."
|
|
32209
|
+
},
|
|
32210
|
+
"401": {
|
|
32211
|
+
"description": "The request is not authorized."
|
|
32212
|
+
},
|
|
32213
|
+
"402": {
|
|
32214
|
+
"description": ""
|
|
32215
|
+
},
|
|
32216
|
+
"403": {
|
|
32217
|
+
"description": "You do not have permission to access this resource."
|
|
32218
|
+
},
|
|
32219
|
+
"404": {
|
|
32220
|
+
"description": ""
|
|
32221
|
+
}
|
|
32222
|
+
},
|
|
32223
|
+
"parameters": [
|
|
32224
|
+
{
|
|
32225
|
+
"name": "projectIdOrName",
|
|
32226
|
+
"in": "query",
|
|
32227
|
+
"required": true,
|
|
32228
|
+
"schema": {
|
|
32229
|
+
"type": "string"
|
|
32230
|
+
}
|
|
32231
|
+
},
|
|
32232
|
+
{
|
|
32233
|
+
"description": "The Team identifier to perform the request on behalf of.",
|
|
32234
|
+
"in": "query",
|
|
32235
|
+
"name": "teamId",
|
|
32236
|
+
"schema": {
|
|
32237
|
+
"type": "string",
|
|
32238
|
+
"example": "team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
32239
|
+
}
|
|
32240
|
+
},
|
|
32241
|
+
{
|
|
32242
|
+
"description": "The Team slug to perform the request on behalf of.",
|
|
32243
|
+
"in": "query",
|
|
32244
|
+
"name": "slug",
|
|
32245
|
+
"schema": {
|
|
32246
|
+
"type": "string",
|
|
32247
|
+
"example": "my-team-url-slug"
|
|
32248
|
+
}
|
|
32249
|
+
}
|
|
32250
|
+
],
|
|
32251
|
+
"requestBody": {
|
|
32252
|
+
"content": {
|
|
32253
|
+
"application/json": {
|
|
32254
|
+
"schema": {
|
|
32255
|
+
"additionalProperties": false,
|
|
32256
|
+
"type": "object",
|
|
32257
|
+
"required": [
|
|
32258
|
+
"srcImages"
|
|
32259
|
+
],
|
|
32260
|
+
"properties": {
|
|
32261
|
+
"revalidationDeadlineSeconds": {
|
|
32262
|
+
"minimum": 0,
|
|
32263
|
+
"type": "number"
|
|
32264
|
+
},
|
|
32265
|
+
"srcImages": {
|
|
32266
|
+
"items": {
|
|
32267
|
+
"maxLength": 8192,
|
|
32268
|
+
"type": "string"
|
|
32269
|
+
},
|
|
32270
|
+
"maxItems": 8,
|
|
32271
|
+
"minItems": 1,
|
|
32272
|
+
"type": "array"
|
|
32273
|
+
}
|
|
32274
|
+
}
|
|
32275
|
+
}
|
|
32276
|
+
}
|
|
32277
|
+
}
|
|
32278
|
+
}
|
|
32279
|
+
}
|
|
32280
|
+
},
|
|
32101
32281
|
"/v1/edge-config": {
|
|
32102
32282
|
"get": {
|
|
32103
32283
|
"description": "Returns all Edge Configs.",
|
|
@@ -49425,10 +49605,10 @@
|
|
|
49425
49605
|
"type": "string",
|
|
49426
49606
|
"enum": [
|
|
49427
49607
|
"system",
|
|
49608
|
+
"secret",
|
|
49428
49609
|
"encrypted",
|
|
49429
49610
|
"plain",
|
|
49430
|
-
"sensitive"
|
|
49431
|
-
"secret"
|
|
49611
|
+
"sensitive"
|
|
49432
49612
|
]
|
|
49433
49613
|
},
|
|
49434
49614
|
"sunsetSecretId": {
|
|
@@ -50441,17 +50621,17 @@
|
|
|
50441
50621
|
"github-limited"
|
|
50442
50622
|
]
|
|
50443
50623
|
},
|
|
50444
|
-
"
|
|
50445
|
-
"type": "string"
|
|
50446
|
-
},
|
|
50447
|
-
"repoId": {
|
|
50624
|
+
"updatedAt": {
|
|
50448
50625
|
"type": "number"
|
|
50449
50626
|
},
|
|
50450
50627
|
"createdAt": {
|
|
50451
50628
|
"type": "number"
|
|
50452
50629
|
},
|
|
50453
|
-
"
|
|
50454
|
-
"type": "
|
|
50630
|
+
"repo": {
|
|
50631
|
+
"type": "string"
|
|
50632
|
+
},
|
|
50633
|
+
"sourceless": {
|
|
50634
|
+
"type": "boolean"
|
|
50455
50635
|
},
|
|
50456
50636
|
"org": {
|
|
50457
50637
|
"type": "string"
|
|
@@ -50460,6 +50640,9 @@
|
|
|
50460
50640
|
"type": "number",
|
|
50461
50641
|
"description": "A new field, should be included in all new project links, is being added just in time when a deployment is created. This is needed for Protected Git scopes."
|
|
50462
50642
|
},
|
|
50643
|
+
"repoId": {
|
|
50644
|
+
"type": "number"
|
|
50645
|
+
},
|
|
50463
50646
|
"deployHooks": {
|
|
50464
50647
|
"items": {
|
|
50465
50648
|
"properties": {
|
|
@@ -50492,9 +50675,6 @@
|
|
|
50492
50675
|
"gitCredentialId": {
|
|
50493
50676
|
"type": "string"
|
|
50494
50677
|
},
|
|
50495
|
-
"sourceless": {
|
|
50496
|
-
"type": "boolean"
|
|
50497
|
-
},
|
|
50498
50678
|
"productionBranch": {
|
|
50499
50679
|
"type": "string"
|
|
50500
50680
|
}
|
|
@@ -50942,9 +51122,6 @@
|
|
|
50942
51122
|
},
|
|
50943
51123
|
"resourceConfig": {
|
|
50944
51124
|
"properties": {
|
|
50945
|
-
"elasticConcurrencyEnabled": {
|
|
50946
|
-
"type": "boolean"
|
|
50947
|
-
},
|
|
50948
51125
|
"fluid": {
|
|
50949
51126
|
"type": "boolean"
|
|
50950
51127
|
},
|
|
@@ -50968,6 +51145,9 @@
|
|
|
50968
51145
|
"functionZeroConfigFailover": {
|
|
50969
51146
|
"type": "boolean"
|
|
50970
51147
|
},
|
|
51148
|
+
"elasticConcurrencyEnabled": {
|
|
51149
|
+
"type": "boolean"
|
|
51150
|
+
},
|
|
50971
51151
|
"buildMachineType": {
|
|
50972
51152
|
"type": "string",
|
|
50973
51153
|
"enum": [
|
|
@@ -51068,9 +51248,6 @@
|
|
|
51068
51248
|
},
|
|
51069
51249
|
"defaultResourceConfig": {
|
|
51070
51250
|
"properties": {
|
|
51071
|
-
"elasticConcurrencyEnabled": {
|
|
51072
|
-
"type": "boolean"
|
|
51073
|
-
},
|
|
51074
51251
|
"fluid": {
|
|
51075
51252
|
"type": "boolean"
|
|
51076
51253
|
},
|
|
@@ -51094,6 +51271,9 @@
|
|
|
51094
51271
|
"functionZeroConfigFailover": {
|
|
51095
51272
|
"type": "boolean"
|
|
51096
51273
|
},
|
|
51274
|
+
"elasticConcurrencyEnabled": {
|
|
51275
|
+
"type": "boolean"
|
|
51276
|
+
},
|
|
51097
51277
|
"buildMachineType": {
|
|
51098
51278
|
"type": "string",
|
|
51099
51279
|
"enum": [
|
|
@@ -51160,8 +51340,8 @@
|
|
|
51160
51340
|
"deploymentType": {
|
|
51161
51341
|
"type": "string",
|
|
51162
51342
|
"enum": [
|
|
51163
|
-
"preview",
|
|
51164
51343
|
"all",
|
|
51344
|
+
"preview",
|
|
51165
51345
|
"prod_deployment_urls_and_all_previews",
|
|
51166
51346
|
"all_except_custom_domains"
|
|
51167
51347
|
]
|
|
@@ -52936,11 +53116,11 @@
|
|
|
52936
53116
|
"deploymentType": {
|
|
52937
53117
|
"type": "string",
|
|
52938
53118
|
"enum": [
|
|
52939
|
-
"preview",
|
|
52940
|
-
"production",
|
|
52941
53119
|
"all",
|
|
53120
|
+
"preview",
|
|
52942
53121
|
"prod_deployment_urls_and_all_previews",
|
|
52943
|
-
"all_except_custom_domains"
|
|
53122
|
+
"all_except_custom_domains",
|
|
53123
|
+
"production"
|
|
52944
53124
|
]
|
|
52945
53125
|
},
|
|
52946
53126
|
"addresses": {
|
|
@@ -52980,11 +53160,11 @@
|
|
|
52980
53160
|
"deploymentType": {
|
|
52981
53161
|
"type": "string",
|
|
52982
53162
|
"enum": [
|
|
52983
|
-
"preview",
|
|
52984
|
-
"production",
|
|
52985
53163
|
"all",
|
|
53164
|
+
"preview",
|
|
52986
53165
|
"prod_deployment_urls_and_all_previews",
|
|
52987
|
-
"all_except_custom_domains"
|
|
53166
|
+
"all_except_custom_domains",
|
|
53167
|
+
"production"
|
|
52988
53168
|
]
|
|
52989
53169
|
}
|
|
52990
53170
|
},
|
|
@@ -59438,10 +59618,10 @@
|
|
|
59438
59618
|
"type": "string",
|
|
59439
59619
|
"enum": [
|
|
59440
59620
|
"system",
|
|
59621
|
+
"secret",
|
|
59441
59622
|
"encrypted",
|
|
59442
59623
|
"plain",
|
|
59443
|
-
"sensitive"
|
|
59444
|
-
"secret"
|
|
59624
|
+
"sensitive"
|
|
59445
59625
|
]
|
|
59446
59626
|
},
|
|
59447
59627
|
"sunsetSecretId": {
|
|
@@ -60454,17 +60634,17 @@
|
|
|
60454
60634
|
"github-limited"
|
|
60455
60635
|
]
|
|
60456
60636
|
},
|
|
60457
|
-
"
|
|
60458
|
-
"type": "string"
|
|
60459
|
-
},
|
|
60460
|
-
"repoId": {
|
|
60637
|
+
"updatedAt": {
|
|
60461
60638
|
"type": "number"
|
|
60462
60639
|
},
|
|
60463
60640
|
"createdAt": {
|
|
60464
60641
|
"type": "number"
|
|
60465
60642
|
},
|
|
60466
|
-
"
|
|
60467
|
-
"type": "
|
|
60643
|
+
"repo": {
|
|
60644
|
+
"type": "string"
|
|
60645
|
+
},
|
|
60646
|
+
"sourceless": {
|
|
60647
|
+
"type": "boolean"
|
|
60468
60648
|
},
|
|
60469
60649
|
"org": {
|
|
60470
60650
|
"type": "string"
|
|
@@ -60473,6 +60653,9 @@
|
|
|
60473
60653
|
"type": "number",
|
|
60474
60654
|
"description": "A new field, should be included in all new project links, is being added just in time when a deployment is created. This is needed for Protected Git scopes."
|
|
60475
60655
|
},
|
|
60656
|
+
"repoId": {
|
|
60657
|
+
"type": "number"
|
|
60658
|
+
},
|
|
60476
60659
|
"deployHooks": {
|
|
60477
60660
|
"items": {
|
|
60478
60661
|
"properties": {
|
|
@@ -60505,9 +60688,6 @@
|
|
|
60505
60688
|
"gitCredentialId": {
|
|
60506
60689
|
"type": "string"
|
|
60507
60690
|
},
|
|
60508
|
-
"sourceless": {
|
|
60509
|
-
"type": "boolean"
|
|
60510
|
-
},
|
|
60511
60691
|
"productionBranch": {
|
|
60512
60692
|
"type": "string"
|
|
60513
60693
|
}
|
|
@@ -60955,9 +61135,6 @@
|
|
|
60955
61135
|
},
|
|
60956
61136
|
"resourceConfig": {
|
|
60957
61137
|
"properties": {
|
|
60958
|
-
"elasticConcurrencyEnabled": {
|
|
60959
|
-
"type": "boolean"
|
|
60960
|
-
},
|
|
60961
61138
|
"fluid": {
|
|
60962
61139
|
"type": "boolean"
|
|
60963
61140
|
},
|
|
@@ -60981,6 +61158,9 @@
|
|
|
60981
61158
|
"functionZeroConfigFailover": {
|
|
60982
61159
|
"type": "boolean"
|
|
60983
61160
|
},
|
|
61161
|
+
"elasticConcurrencyEnabled": {
|
|
61162
|
+
"type": "boolean"
|
|
61163
|
+
},
|
|
60984
61164
|
"buildMachineType": {
|
|
60985
61165
|
"type": "string",
|
|
60986
61166
|
"enum": [
|
|
@@ -61081,9 +61261,6 @@
|
|
|
61081
61261
|
},
|
|
61082
61262
|
"defaultResourceConfig": {
|
|
61083
61263
|
"properties": {
|
|
61084
|
-
"elasticConcurrencyEnabled": {
|
|
61085
|
-
"type": "boolean"
|
|
61086
|
-
},
|
|
61087
61264
|
"fluid": {
|
|
61088
61265
|
"type": "boolean"
|
|
61089
61266
|
},
|
|
@@ -61107,6 +61284,9 @@
|
|
|
61107
61284
|
"functionZeroConfigFailover": {
|
|
61108
61285
|
"type": "boolean"
|
|
61109
61286
|
},
|
|
61287
|
+
"elasticConcurrencyEnabled": {
|
|
61288
|
+
"type": "boolean"
|
|
61289
|
+
},
|
|
61110
61290
|
"buildMachineType": {
|
|
61111
61291
|
"type": "string",
|
|
61112
61292
|
"enum": [
|
|
@@ -61173,8 +61353,8 @@
|
|
|
61173
61353
|
"deploymentType": {
|
|
61174
61354
|
"type": "string",
|
|
61175
61355
|
"enum": [
|
|
61176
|
-
"preview",
|
|
61177
61356
|
"all",
|
|
61357
|
+
"preview",
|
|
61178
61358
|
"prod_deployment_urls_and_all_previews",
|
|
61179
61359
|
"all_except_custom_domains"
|
|
61180
61360
|
]
|
|
@@ -62949,11 +63129,11 @@
|
|
|
62949
63129
|
"deploymentType": {
|
|
62950
63130
|
"type": "string",
|
|
62951
63131
|
"enum": [
|
|
62952
|
-
"preview",
|
|
62953
|
-
"production",
|
|
62954
63132
|
"all",
|
|
63133
|
+
"preview",
|
|
62955
63134
|
"prod_deployment_urls_and_all_previews",
|
|
62956
|
-
"all_except_custom_domains"
|
|
63135
|
+
"all_except_custom_domains",
|
|
63136
|
+
"production"
|
|
62957
63137
|
]
|
|
62958
63138
|
},
|
|
62959
63139
|
"addresses": {
|
|
@@ -62993,11 +63173,11 @@
|
|
|
62993
63173
|
"deploymentType": {
|
|
62994
63174
|
"type": "string",
|
|
62995
63175
|
"enum": [
|
|
62996
|
-
"preview",
|
|
62997
|
-
"production",
|
|
62998
63176
|
"all",
|
|
63177
|
+
"preview",
|
|
62999
63178
|
"prod_deployment_urls_and_all_previews",
|
|
63000
|
-
"all_except_custom_domains"
|
|
63179
|
+
"all_except_custom_domains",
|
|
63180
|
+
"production"
|
|
63001
63181
|
]
|
|
63002
63182
|
}
|
|
63003
63183
|
},
|
|
@@ -100391,16 +100571,16 @@
|
|
|
100391
100571
|
"properties": {
|
|
100392
100572
|
"connection": {
|
|
100393
100573
|
"properties": {
|
|
100394
|
-
"type": {
|
|
100395
|
-
"type": "string",
|
|
100396
|
-
"description": "The Identity Provider \"type\", for example Okta.",
|
|
100397
|
-
"example": "OktaSAML"
|
|
100398
|
-
},
|
|
100399
100574
|
"status": {
|
|
100400
100575
|
"type": "string",
|
|
100401
100576
|
"description": "Current status of the connection.",
|
|
100402
100577
|
"example": "linked"
|
|
100403
100578
|
},
|
|
100579
|
+
"type": {
|
|
100580
|
+
"type": "string",
|
|
100581
|
+
"description": "The Identity Provider \"type\", for example Okta.",
|
|
100582
|
+
"example": "OktaSAML"
|
|
100583
|
+
},
|
|
100404
100584
|
"state": {
|
|
100405
100585
|
"type": "string",
|
|
100406
100586
|
"description": "Current state of the connection.",
|
|
@@ -100418,8 +100598,8 @@
|
|
|
100418
100598
|
}
|
|
100419
100599
|
},
|
|
100420
100600
|
"required": [
|
|
100421
|
-
"type",
|
|
100422
100601
|
"status",
|
|
100602
|
+
"type",
|
|
100423
100603
|
"state",
|
|
100424
100604
|
"connectedAt"
|
|
100425
100605
|
],
|
|
@@ -100793,9 +100973,6 @@
|
|
|
100793
100973
|
},
|
|
100794
100974
|
"type": "array"
|
|
100795
100975
|
},
|
|
100796
|
-
"teamId": {
|
|
100797
|
-
"type": "string"
|
|
100798
|
-
},
|
|
100799
100976
|
"confirmed": {
|
|
100800
100977
|
"type": "boolean"
|
|
100801
100978
|
},
|
|
@@ -100848,6 +101025,9 @@
|
|
|
100848
101025
|
},
|
|
100849
101026
|
"type": "array"
|
|
100850
101027
|
},
|
|
101028
|
+
"teamId": {
|
|
101029
|
+
"type": "string"
|
|
101030
|
+
},
|
|
100851
101031
|
"createdAt": {
|
|
100852
101032
|
"type": "number"
|
|
100853
101033
|
},
|
|
@@ -100859,14 +101039,14 @@
|
|
|
100859
101039
|
"origin": {
|
|
100860
101040
|
"type": "string",
|
|
100861
101041
|
"enum": [
|
|
100862
|
-
"link",
|
|
100863
101042
|
"saml",
|
|
101043
|
+
"gitlab",
|
|
101044
|
+
"bitbucket",
|
|
101045
|
+
"github",
|
|
101046
|
+
"link",
|
|
100864
101047
|
"mail",
|
|
100865
101048
|
"import",
|
|
100866
101049
|
"teams",
|
|
100867
|
-
"github",
|
|
100868
|
-
"gitlab",
|
|
100869
|
-
"bitbucket",
|
|
100870
101050
|
"dsync",
|
|
100871
101051
|
"feedback",
|
|
100872
101052
|
"organization-teams"
|