@vercel/sdk 1.3.0 → 1.3.1
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 +6 -0
- package/docs/sdks/accessgroups/README.md +40 -4
- package/docs/sdks/deployments/README.md +22 -0
- package/docs/sdks/marketplace/README.md +54 -22
- package/docs/sdks/projects/README.md +179 -0
- package/docs/sdks/security/README.md +84 -0
- package/docs/sdks/teams/README.md +8 -0
- package/esm/__tests__/projects.test.js +31 -0
- package/esm/__tests__/projects.test.js.map +1 -1
- package/esm/__tests__/security.test.js +33 -0
- package/esm/__tests__/security.test.js.map +1 -1
- package/esm/funcs/projectsAcceptProjectTransferRequest.d.ts +18 -0
- package/esm/funcs/projectsAcceptProjectTransferRequest.d.ts.map +1 -0
- package/esm/funcs/projectsAcceptProjectTransferRequest.js +88 -0
- package/esm/funcs/projectsAcceptProjectTransferRequest.js.map +1 -0
- package/esm/funcs/projectsCreateProjectTransferRequest.d.ts +17 -0
- package/esm/funcs/projectsCreateProjectTransferRequest.d.ts.map +1 -0
- package/esm/funcs/projectsCreateProjectTransferRequest.js +86 -0
- package/esm/funcs/projectsCreateProjectTransferRequest.js.map +1 -0
- package/esm/funcs/securityGetActiveAttackStatus.d.ts +18 -0
- package/esm/funcs/securityGetActiveAttackStatus.d.ts.map +1 -0
- package/esm/funcs/securityGetActiveAttackStatus.js +82 -0
- package/esm/funcs/securityGetActiveAttackStatus.js.map +1 -0
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- package/esm/lib/schemas.d.ts +1 -1
- package/esm/lib/schemas.d.ts.map +1 -1
- package/esm/lib/schemas.js +4 -1
- package/esm/lib/schemas.js.map +1 -1
- package/esm/models/acceptprojecttransferrequestop.d.ts +127 -0
- package/esm/models/acceptprojecttransferrequestop.d.ts.map +1 -0
- package/esm/models/acceptprojecttransferrequestop.js +123 -0
- package/esm/models/acceptprojecttransferrequestop.js.map +1 -0
- package/esm/models/addprojectdomainop.d.ts +5 -0
- package/esm/models/addprojectdomainop.d.ts.map +1 -1
- package/esm/models/addprojectdomainop.js +2 -0
- package/esm/models/addprojectdomainop.js.map +1 -1
- package/esm/models/authuser.d.ts +9 -0
- package/esm/models/authuser.d.ts.map +1 -1
- package/esm/models/authuser.js +3 -0
- package/esm/models/authuser.js.map +1 -1
- package/esm/models/createprojectop.d.ts +4 -2
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +4 -2
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/createprojecttransferrequestop.d.ts +66 -0
- package/esm/models/createprojecttransferrequestop.d.ts.map +1 -0
- package/esm/models/createprojecttransferrequestop.js +56 -0
- package/esm/models/createprojecttransferrequestop.js.map +1 -0
- package/esm/models/getactiveattackstatusop.d.ts +242 -0
- package/esm/models/getactiveattackstatusop.d.ts.map +1 -0
- package/esm/models/getactiveattackstatusop.js +248 -0
- package/esm/models/getactiveattackstatusop.js.map +1 -0
- package/esm/models/getprojectsop.d.ts +4 -2
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +4 -2
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +4 -2
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +4 -2
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +4 -2
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +4 -2
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/sdk/projects.d.ts +16 -0
- package/esm/sdk/projects.d.ts.map +1 -1
- package/esm/sdk/projects.js +20 -0
- package/esm/sdk/projects.js.map +1 -1
- package/esm/sdk/security.d.ts +8 -0
- package/esm/sdk/security.d.ts.map +1 -1
- package/esm/sdk/security.js +10 -0
- package/esm/sdk/security.js.map +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/projects.test.ts +35 -0
- package/src/__tests__/security.test.ts +35 -0
- package/src/funcs/projectsAcceptProjectTransferRequest.ts +169 -0
- package/src/funcs/projectsCreateProjectTransferRequest.ts +161 -0
- package/src/funcs/securityGetActiveAttackStatus.ts +162 -0
- package/src/lib/config.ts +3 -3
- package/src/lib/schemas.ts +5 -0
- package/src/models/acceptprojecttransferrequestop.ts +307 -0
- package/src/models/addprojectdomainop.ts +7 -0
- package/src/models/authuser.ts +3 -0
- package/src/models/createprojectop.ts +8 -4
- package/src/models/createprojecttransferrequestop.ts +152 -0
- package/src/models/getactiveattackstatusop.ts +543 -0
- package/src/models/getprojectsop.ts +8 -4
- package/src/models/updateprojectdatacacheop.ts +8 -4
- package/src/models/updateprojectop.ts +8 -4
- package/src/sdk/projects.ts +44 -0
- package/src/sdk/security.ts +22 -0
- package/vercel-spec.json +425 -0
package/vercel-spec.json
CHANGED
|
@@ -5421,7 +5421,11 @@
|
|
|
5421
5421
|
},
|
|
5422
5422
|
"resourceConfig": {
|
|
5423
5423
|
"properties": {
|
|
5424
|
+
"fluid": {
|
|
5425
|
+
"type": "boolean"
|
|
5426
|
+
},
|
|
5424
5427
|
"functionDefaultRegion": {
|
|
5428
|
+
"nullable": true,
|
|
5425
5429
|
"type": "string"
|
|
5426
5430
|
},
|
|
5427
5431
|
"functionDefaultTimeout": {
|
|
@@ -26205,7 +26209,11 @@
|
|
|
26205
26209
|
},
|
|
26206
26210
|
"resourceConfig": {
|
|
26207
26211
|
"properties": {
|
|
26212
|
+
"fluid": {
|
|
26213
|
+
"type": "boolean"
|
|
26214
|
+
},
|
|
26208
26215
|
"functionDefaultRegion": {
|
|
26216
|
+
"nullable": true,
|
|
26209
26217
|
"type": "string"
|
|
26210
26218
|
},
|
|
26211
26219
|
"functionDefaultTimeout": {
|
|
@@ -29732,7 +29740,11 @@
|
|
|
29732
29740
|
},
|
|
29733
29741
|
"resourceConfig": {
|
|
29734
29742
|
"properties": {
|
|
29743
|
+
"fluid": {
|
|
29744
|
+
"type": "boolean"
|
|
29745
|
+
},
|
|
29735
29746
|
"functionDefaultRegion": {
|
|
29747
|
+
"nullable": true,
|
|
29736
29748
|
"type": "string"
|
|
29737
29749
|
},
|
|
29738
29750
|
"functionDefaultTimeout": {
|
|
@@ -33398,7 +33410,11 @@
|
|
|
33398
33410
|
},
|
|
33399
33411
|
"resourceConfig": {
|
|
33400
33412
|
"properties": {
|
|
33413
|
+
"fluid": {
|
|
33414
|
+
"type": "boolean"
|
|
33415
|
+
},
|
|
33401
33416
|
"functionDefaultRegion": {
|
|
33417
|
+
"nullable": true,
|
|
33402
33418
|
"type": "string"
|
|
33403
33419
|
},
|
|
33404
33420
|
"functionDefaultTimeout": {
|
|
@@ -36824,7 +36840,11 @@
|
|
|
36824
36840
|
},
|
|
36825
36841
|
"resourceConfig": {
|
|
36826
36842
|
"properties": {
|
|
36843
|
+
"fluid": {
|
|
36844
|
+
"type": "boolean"
|
|
36845
|
+
},
|
|
36827
36846
|
"functionDefaultRegion": {
|
|
36847
|
+
"nullable": true,
|
|
36828
36848
|
"type": "string"
|
|
36829
36849
|
},
|
|
36830
36850
|
"functionDefaultTimeout": {
|
|
@@ -40910,6 +40930,10 @@
|
|
|
40910
40930
|
"type": "string",
|
|
40911
40931
|
"nullable": true
|
|
40912
40932
|
},
|
|
40933
|
+
"customEnvironmentId": {
|
|
40934
|
+
"description": "The unique custom environment identifier within the project",
|
|
40935
|
+
"type": "string"
|
|
40936
|
+
},
|
|
40913
40937
|
"redirect": {
|
|
40914
40938
|
"description": "Target destination domain for redirect",
|
|
40915
40939
|
"example": "foobar.com",
|
|
@@ -46870,6 +46894,213 @@
|
|
|
46870
46894
|
"x-speakeasy-test": false
|
|
46871
46895
|
}
|
|
46872
46896
|
},
|
|
46897
|
+
"/projects/{idOrName}/transfer-request": {
|
|
46898
|
+
"post": {
|
|
46899
|
+
"description": "Initiates a project transfer request from one team to another. \u003cbr/\u003e Returns a `code` that remains valid for 24 hours and can be used to accept the transfer request by another team using the `PUT /projects/transfer-request/:code` endpoint. \u003cbr/\u003e Users can also accept the project transfer request using the claim URL: `https://vercel.com/claim-deployment?code=\u003ccode\u003e\u0026returnUrl=\u003creturnUrl\u003e`. \u003cbr/\u003e The `code` parameter specifies the project transfer request code generated using this endpoint. \u003cbr/\u003e The `returnUrl` parameter redirects users to a specific page of the application if the claim URL is invalid or expired.",
|
|
46900
|
+
"operationId": "createProjectTransferRequest",
|
|
46901
|
+
"security": [
|
|
46902
|
+
{
|
|
46903
|
+
"bearerToken": []
|
|
46904
|
+
}
|
|
46905
|
+
],
|
|
46906
|
+
"summary": "Create project transfer request",
|
|
46907
|
+
"tags": [
|
|
46908
|
+
"projects"
|
|
46909
|
+
],
|
|
46910
|
+
"responses": {
|
|
46911
|
+
"200": {
|
|
46912
|
+
"description": "The project transfer request has been initiated successfully.",
|
|
46913
|
+
"content": {
|
|
46914
|
+
"application/json": {
|
|
46915
|
+
"schema": {
|
|
46916
|
+
"type": "object"
|
|
46917
|
+
}
|
|
46918
|
+
}
|
|
46919
|
+
}
|
|
46920
|
+
},
|
|
46921
|
+
"400": {
|
|
46922
|
+
"description": "One of the provided values in the request query is invalid.",
|
|
46923
|
+
"content": {
|
|
46924
|
+
"application/json": {
|
|
46925
|
+
"schema": {
|
|
46926
|
+
"$ref": "#/components/schemas/VercelBadRequestError"
|
|
46927
|
+
}
|
|
46928
|
+
}
|
|
46929
|
+
}
|
|
46930
|
+
},
|
|
46931
|
+
"401": {
|
|
46932
|
+
"description": "",
|
|
46933
|
+
"content": {
|
|
46934
|
+
"application/json": {
|
|
46935
|
+
"schema": {
|
|
46936
|
+
"$ref": "#/components/schemas/VercelForbiddenError"
|
|
46937
|
+
}
|
|
46938
|
+
}
|
|
46939
|
+
}
|
|
46940
|
+
},
|
|
46941
|
+
"403": {
|
|
46942
|
+
"description": "You do not have permission to access this resource."
|
|
46943
|
+
}
|
|
46944
|
+
},
|
|
46945
|
+
"parameters": [
|
|
46946
|
+
{
|
|
46947
|
+
"name": "idOrName",
|
|
46948
|
+
"description": "The ID or name of the project to transfer.",
|
|
46949
|
+
"in": "path",
|
|
46950
|
+
"required": true,
|
|
46951
|
+
"schema": {
|
|
46952
|
+
"type": "string",
|
|
46953
|
+
"description": "The ID or name of the project to transfer."
|
|
46954
|
+
}
|
|
46955
|
+
},
|
|
46956
|
+
{
|
|
46957
|
+
"description": "The Team identifier to perform the request on behalf of.",
|
|
46958
|
+
"in": "query",
|
|
46959
|
+
"name": "teamId",
|
|
46960
|
+
"schema": {
|
|
46961
|
+
"type": "string",
|
|
46962
|
+
"example": "team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
46963
|
+
}
|
|
46964
|
+
},
|
|
46965
|
+
{
|
|
46966
|
+
"description": "The Team slug to perform the request on behalf of.",
|
|
46967
|
+
"in": "query",
|
|
46968
|
+
"name": "slug",
|
|
46969
|
+
"schema": {
|
|
46970
|
+
"type": "string",
|
|
46971
|
+
"example": "my-team-url-slug"
|
|
46972
|
+
}
|
|
46973
|
+
}
|
|
46974
|
+
]
|
|
46975
|
+
}
|
|
46976
|
+
},
|
|
46977
|
+
"/projects/transfer-request/{code}": {
|
|
46978
|
+
"put": {
|
|
46979
|
+
"description": "Accept a project transfer request initated by another team. \u003cbr/\u003e The `code` is generated using the `POST /projects/:idOrName/transfer-request` endpoint.",
|
|
46980
|
+
"operationId": "acceptProjectTransferRequest",
|
|
46981
|
+
"security": [
|
|
46982
|
+
{
|
|
46983
|
+
"bearerToken": []
|
|
46984
|
+
}
|
|
46985
|
+
],
|
|
46986
|
+
"summary": "Accept project transfer request",
|
|
46987
|
+
"tags": [
|
|
46988
|
+
"projects"
|
|
46989
|
+
],
|
|
46990
|
+
"responses": {
|
|
46991
|
+
"202": {
|
|
46992
|
+
"description": "The project has been transferred successfully.",
|
|
46993
|
+
"content": {
|
|
46994
|
+
"application/json": {
|
|
46995
|
+
"schema": {
|
|
46996
|
+
"type": "object"
|
|
46997
|
+
}
|
|
46998
|
+
}
|
|
46999
|
+
}
|
|
47000
|
+
},
|
|
47001
|
+
"400": {
|
|
47002
|
+
"description": "One of the provided values in the request body is invalid.\nOne of the provided values in the request query is invalid.",
|
|
47003
|
+
"content": {
|
|
47004
|
+
"application/json": {
|
|
47005
|
+
"schema": {
|
|
47006
|
+
"$ref": "#/components/schemas/VercelBadRequestError"
|
|
47007
|
+
}
|
|
47008
|
+
}
|
|
47009
|
+
}
|
|
47010
|
+
},
|
|
47011
|
+
"401": {
|
|
47012
|
+
"description": "",
|
|
47013
|
+
"content": {
|
|
47014
|
+
"application/json": {
|
|
47015
|
+
"schema": {
|
|
47016
|
+
"$ref": "#/components/schemas/VercelForbiddenError"
|
|
47017
|
+
}
|
|
47018
|
+
}
|
|
47019
|
+
}
|
|
47020
|
+
},
|
|
47021
|
+
"403": {
|
|
47022
|
+
"description": "You do not have permission to access this resource."
|
|
47023
|
+
},
|
|
47024
|
+
"404": {
|
|
47025
|
+
"description": "",
|
|
47026
|
+
"content": {
|
|
47027
|
+
"application/json": {
|
|
47028
|
+
"schema": {
|
|
47029
|
+
"$ref": "#/components/schemas/VercelNotFoundError"
|
|
47030
|
+
}
|
|
47031
|
+
}
|
|
47032
|
+
}
|
|
47033
|
+
}
|
|
47034
|
+
},
|
|
47035
|
+
"parameters": [
|
|
47036
|
+
{
|
|
47037
|
+
"name": "code",
|
|
47038
|
+
"description": "The code of the project transfer request.",
|
|
47039
|
+
"in": "path",
|
|
47040
|
+
"required": true,
|
|
47041
|
+
"schema": {
|
|
47042
|
+
"type": "string",
|
|
47043
|
+
"description": "The code of the project transfer request."
|
|
47044
|
+
}
|
|
47045
|
+
},
|
|
47046
|
+
{
|
|
47047
|
+
"description": "The Team identifier to perform the request on behalf of.",
|
|
47048
|
+
"in": "query",
|
|
47049
|
+
"name": "teamId",
|
|
47050
|
+
"schema": {
|
|
47051
|
+
"type": "string",
|
|
47052
|
+
"example": "team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
47053
|
+
}
|
|
47054
|
+
},
|
|
47055
|
+
{
|
|
47056
|
+
"description": "The Team slug to perform the request on behalf of.",
|
|
47057
|
+
"in": "query",
|
|
47058
|
+
"name": "slug",
|
|
47059
|
+
"schema": {
|
|
47060
|
+
"type": "string",
|
|
47061
|
+
"example": "my-team-url-slug"
|
|
47062
|
+
}
|
|
47063
|
+
}
|
|
47064
|
+
],
|
|
47065
|
+
"requestBody": {
|
|
47066
|
+
"content": {
|
|
47067
|
+
"application/json": {
|
|
47068
|
+
"schema": {
|
|
47069
|
+
"type": "object",
|
|
47070
|
+
"additionalProperties": false,
|
|
47071
|
+
"properties": {
|
|
47072
|
+
"newProjectName": {
|
|
47073
|
+
"description": "The desired name for the project",
|
|
47074
|
+
"example": "a-project-name",
|
|
47075
|
+
"type": "string",
|
|
47076
|
+
"maxLength": 100,
|
|
47077
|
+
"pattern": "^(?!.*---)[a-z0-9-_.]+$"
|
|
47078
|
+
},
|
|
47079
|
+
"paidFeatures": {
|
|
47080
|
+
"type": "object",
|
|
47081
|
+
"additionalProperties": false,
|
|
47082
|
+
"properties": {
|
|
47083
|
+
"concurrentBuilds": {
|
|
47084
|
+
"type": "integer",
|
|
47085
|
+
"nullable": true
|
|
47086
|
+
},
|
|
47087
|
+
"passwordProtection": {
|
|
47088
|
+
"type": "boolean",
|
|
47089
|
+
"nullable": true
|
|
47090
|
+
},
|
|
47091
|
+
"previewDeploymentSuffix": {
|
|
47092
|
+
"type": "boolean",
|
|
47093
|
+
"nullable": true
|
|
47094
|
+
}
|
|
47095
|
+
}
|
|
47096
|
+
}
|
|
47097
|
+
}
|
|
47098
|
+
}
|
|
47099
|
+
}
|
|
47100
|
+
}
|
|
47101
|
+
}
|
|
47102
|
+
}
|
|
47103
|
+
},
|
|
46873
47104
|
"/v1/projects/{idOrName}/protection-bypass": {
|
|
46874
47105
|
"patch": {
|
|
46875
47106
|
"description": "Update the deployment protection automation bypass for a project",
|
|
@@ -50156,6 +50387,197 @@
|
|
|
50156
50387
|
]
|
|
50157
50388
|
}
|
|
50158
50389
|
},
|
|
50390
|
+
"/v1/security/firewall/attack-status": {
|
|
50391
|
+
"get": {
|
|
50392
|
+
"description": "Retrieve active attack data within the last 24h window",
|
|
50393
|
+
"operationId": "getActiveAttackStatus",
|
|
50394
|
+
"security": [
|
|
50395
|
+
{
|
|
50396
|
+
"bearerToken": []
|
|
50397
|
+
}
|
|
50398
|
+
],
|
|
50399
|
+
"summary": "Read active attack data",
|
|
50400
|
+
"tags": [
|
|
50401
|
+
"security"
|
|
50402
|
+
],
|
|
50403
|
+
"responses": {
|
|
50404
|
+
"200": {
|
|
50405
|
+
"description": "",
|
|
50406
|
+
"content": {
|
|
50407
|
+
"application/json": {
|
|
50408
|
+
"schema": {
|
|
50409
|
+
"oneOf": [
|
|
50410
|
+
{
|
|
50411
|
+
"type": "object"
|
|
50412
|
+
},
|
|
50413
|
+
{
|
|
50414
|
+
"properties": {
|
|
50415
|
+
"anomalies": {
|
|
50416
|
+
"items": {
|
|
50417
|
+
"properties": {
|
|
50418
|
+
"ownerId": {
|
|
50419
|
+
"type": "string"
|
|
50420
|
+
},
|
|
50421
|
+
"projectId": {
|
|
50422
|
+
"type": "string"
|
|
50423
|
+
},
|
|
50424
|
+
"startTime": {
|
|
50425
|
+
"type": "number"
|
|
50426
|
+
},
|
|
50427
|
+
"endTime": {
|
|
50428
|
+
"nullable": true,
|
|
50429
|
+
"type": "number"
|
|
50430
|
+
},
|
|
50431
|
+
"atMinute": {
|
|
50432
|
+
"type": "number"
|
|
50433
|
+
},
|
|
50434
|
+
"state": {
|
|
50435
|
+
"type": "string"
|
|
50436
|
+
},
|
|
50437
|
+
"affectedHostMap": {
|
|
50438
|
+
"additionalProperties": {
|
|
50439
|
+
"properties": {
|
|
50440
|
+
"anomalyAlerts": {
|
|
50441
|
+
"additionalProperties": {
|
|
50442
|
+
"properties": {
|
|
50443
|
+
"at_minute": {
|
|
50444
|
+
"type": "string"
|
|
50445
|
+
},
|
|
50446
|
+
"zscore": {
|
|
50447
|
+
"type": "number"
|
|
50448
|
+
},
|
|
50449
|
+
"total_requests_minute": {
|
|
50450
|
+
"type": "number"
|
|
50451
|
+
},
|
|
50452
|
+
"avg_requests": {
|
|
50453
|
+
"type": "number"
|
|
50454
|
+
},
|
|
50455
|
+
"stddev_requests": {
|
|
50456
|
+
"type": "number"
|
|
50457
|
+
}
|
|
50458
|
+
},
|
|
50459
|
+
"required": [
|
|
50460
|
+
"at_minute",
|
|
50461
|
+
"zscore",
|
|
50462
|
+
"total_requests_minute",
|
|
50463
|
+
"avg_requests",
|
|
50464
|
+
"stddev_requests"
|
|
50465
|
+
],
|
|
50466
|
+
"type": "object"
|
|
50467
|
+
},
|
|
50468
|
+
"type": "object"
|
|
50469
|
+
},
|
|
50470
|
+
"ddosAlerts": {
|
|
50471
|
+
"additionalProperties": {
|
|
50472
|
+
"properties": {
|
|
50473
|
+
"atMinute": {
|
|
50474
|
+
"type": "string"
|
|
50475
|
+
},
|
|
50476
|
+
"totalReqs": {
|
|
50477
|
+
"type": "number"
|
|
50478
|
+
}
|
|
50479
|
+
},
|
|
50480
|
+
"required": [
|
|
50481
|
+
"atMinute",
|
|
50482
|
+
"totalReqs"
|
|
50483
|
+
],
|
|
50484
|
+
"type": "object"
|
|
50485
|
+
},
|
|
50486
|
+
"type": "object"
|
|
50487
|
+
}
|
|
50488
|
+
},
|
|
50489
|
+
"type": "object"
|
|
50490
|
+
},
|
|
50491
|
+
"type": "object"
|
|
50492
|
+
}
|
|
50493
|
+
},
|
|
50494
|
+
"required": [
|
|
50495
|
+
"ownerId",
|
|
50496
|
+
"projectId",
|
|
50497
|
+
"startTime",
|
|
50498
|
+
"endTime",
|
|
50499
|
+
"atMinute",
|
|
50500
|
+
"affectedHostMap"
|
|
50501
|
+
],
|
|
50502
|
+
"type": "object"
|
|
50503
|
+
},
|
|
50504
|
+
"type": "array"
|
|
50505
|
+
}
|
|
50506
|
+
},
|
|
50507
|
+
"required": [
|
|
50508
|
+
"anomalies"
|
|
50509
|
+
],
|
|
50510
|
+
"type": "object"
|
|
50511
|
+
}
|
|
50512
|
+
]
|
|
50513
|
+
}
|
|
50514
|
+
}
|
|
50515
|
+
}
|
|
50516
|
+
},
|
|
50517
|
+
"400": {
|
|
50518
|
+
"description": "One of the provided values in the request query is invalid.",
|
|
50519
|
+
"content": {
|
|
50520
|
+
"application/json": {
|
|
50521
|
+
"schema": {
|
|
50522
|
+
"$ref": "#/components/schemas/VercelBadRequestError"
|
|
50523
|
+
}
|
|
50524
|
+
}
|
|
50525
|
+
}
|
|
50526
|
+
},
|
|
50527
|
+
"401": {
|
|
50528
|
+
"description": "",
|
|
50529
|
+
"content": {
|
|
50530
|
+
"application/json": {
|
|
50531
|
+
"schema": {
|
|
50532
|
+
"$ref": "#/components/schemas/VercelForbiddenError"
|
|
50533
|
+
}
|
|
50534
|
+
}
|
|
50535
|
+
}
|
|
50536
|
+
},
|
|
50537
|
+
"403": {
|
|
50538
|
+
"description": "You do not have permission to access this resource."
|
|
50539
|
+
},
|
|
50540
|
+
"404": {
|
|
50541
|
+
"description": "",
|
|
50542
|
+
"content": {
|
|
50543
|
+
"application/json": {
|
|
50544
|
+
"schema": {
|
|
50545
|
+
"$ref": "#/components/schemas/VercelNotFoundError"
|
|
50546
|
+
}
|
|
50547
|
+
}
|
|
50548
|
+
}
|
|
50549
|
+
}
|
|
50550
|
+
},
|
|
50551
|
+
"parameters": [
|
|
50552
|
+
{
|
|
50553
|
+
"name": "projectId",
|
|
50554
|
+
"in": "query",
|
|
50555
|
+
"required": true,
|
|
50556
|
+
"schema": {
|
|
50557
|
+
"type": "string"
|
|
50558
|
+
}
|
|
50559
|
+
},
|
|
50560
|
+
{
|
|
50561
|
+
"description": "The Team identifier to perform the request on behalf of.",
|
|
50562
|
+
"in": "query",
|
|
50563
|
+
"name": "teamId",
|
|
50564
|
+
"schema": {
|
|
50565
|
+
"type": "string",
|
|
50566
|
+
"example": "team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
50567
|
+
}
|
|
50568
|
+
},
|
|
50569
|
+
{
|
|
50570
|
+
"description": "The Team slug to perform the request on behalf of.",
|
|
50571
|
+
"in": "query",
|
|
50572
|
+
"name": "slug",
|
|
50573
|
+
"schema": {
|
|
50574
|
+
"type": "string",
|
|
50575
|
+
"example": "my-team-url-slug"
|
|
50576
|
+
}
|
|
50577
|
+
}
|
|
50578
|
+
]
|
|
50579
|
+
}
|
|
50580
|
+
},
|
|
50159
50581
|
"/v1/security/firewall/bypass": {
|
|
50160
50582
|
"get": {
|
|
50161
50583
|
"description": "Retrieve the system bypass rules configured for the specified project",
|
|
@@ -58090,6 +58512,9 @@
|
|
|
58090
58512
|
"fastOriginTransfer",
|
|
58091
58513
|
"functionDuration",
|
|
58092
58514
|
"functionInvocation",
|
|
58515
|
+
"imageOptimizationCacheRead",
|
|
58516
|
+
"imageOptimizationCacheWrite",
|
|
58517
|
+
"imageOptimizationTransformation",
|
|
58093
58518
|
"logDrainsVolume",
|
|
58094
58519
|
"monitoringMetric",
|
|
58095
58520
|
"observabilityEvent",
|