@vercel/sdk 1.10.0 → 1.10.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/bin/mcp-server.js +3144 -2287
- package/bin/mcp-server.js.map +51 -51
- package/docs/sdks/accessgroups/README.md +11 -0
- package/docs/sdks/aliases/README.md +7 -1
- package/docs/sdks/artifacts/README.md +6 -0
- package/docs/sdks/authentication/README.md +5 -0
- package/docs/sdks/certs/README.md +4 -0
- package/docs/sdks/checks/README.md +5 -0
- package/docs/sdks/deployments/README.md +18 -0
- package/docs/sdks/dns/README.md +4 -0
- package/docs/sdks/domains/README.md +10 -0
- package/docs/sdks/edgeconfig/README.md +17 -0
- package/docs/sdks/environment/README.md +5 -0
- package/docs/sdks/integrations/README.md +4 -0
- package/docs/sdks/logdrains/README.md +3 -0
- package/docs/sdks/logs/README.md +1 -0
- package/docs/sdks/marketplace/README.md +20 -0
- package/docs/sdks/projectmembers/README.md +3 -0
- package/docs/sdks/projects/README.md +24 -0
- package/docs/sdks/rollingrelease/README.md +7 -0
- package/docs/sdks/security/README.md +8 -0
- package/docs/sdks/teams/README.md +13 -0
- package/docs/sdks/user/README.md +3 -0
- package/docs/sdks/webhooks/README.md +4 -0
- package/esm/__tests__/aliases.test.js +16 -16
- package/esm/__tests__/aliases.test.js.map +1 -1
- package/esm/__tests__/security.test.js +13 -1
- 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/aliasesGetAlias.d.ts +2 -2
- package/esm/funcs/aliasesGetAlias.d.ts.map +1 -1
- package/esm/funcs/aliasesGetAlias.js +3 -2
- package/esm/funcs/aliasesGetAlias.js.map +1 -1
- package/esm/funcs/checksRerequestCheck.js +1 -0
- package/esm/funcs/checksRerequestCheck.js.map +1 -1
- package/esm/funcs/domainsGetDomainConfig.js +2 -2
- package/esm/funcs/domainsGetDomainConfig.js.map +1 -1
- package/esm/funcs/edgeConfigPatchEdgeConfigItems.js +2 -3
- package/esm/funcs/edgeConfigPatchEdgeConfigItems.js.map +1 -1
- package/esm/funcs/marketplaceUpdateInstallationIntegrationEdgeConfig.js +2 -2
- package/esm/funcs/marketplaceUpdateInstallationIntegrationEdgeConfig.js.map +1 -1
- package/esm/funcs/projectsAcceptProjectTransferRequest.js +2 -2
- package/esm/funcs/projectsAcceptProjectTransferRequest.js.map +1 -1
- package/esm/funcs/projectsCreateProject.js +2 -2
- package/esm/funcs/projectsCreateProject.js.map +1 -1
- package/esm/funcs/teamsPatchTeam.js +2 -2
- package/esm/funcs/teamsPatchTeam.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/acceptprojecttransferrequestop.d.ts +176 -2
- package/esm/models/acceptprojecttransferrequestop.d.ts.map +1 -1
- package/esm/models/acceptprojecttransferrequestop.js +176 -2
- package/esm/models/acceptprojecttransferrequestop.js.map +1 -1
- package/esm/models/addbypassipop.d.ts +38 -38
- package/esm/models/addbypassipop.d.ts.map +1 -1
- package/esm/models/addbypassipop.js +44 -42
- package/esm/models/addbypassipop.js.map +1 -1
- package/esm/models/authtoken.d.ts +10 -4
- package/esm/models/authtoken.d.ts.map +1 -1
- package/esm/models/authtoken.js +6 -4
- package/esm/models/authtoken.js.map +1 -1
- package/esm/models/authuser.d.ts +54 -0
- package/esm/models/authuser.d.ts.map +1 -1
- package/esm/models/authuser.js +34 -0
- package/esm/models/authuser.js.map +1 -1
- package/esm/models/canceldeploymentop.d.ts +336 -99
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +310 -93
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createcustomenvironmentop.d.ts +3 -3
- package/esm/models/createcustomenvironmentop.js +1 -1
- package/esm/models/createcustomenvironmentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +412 -152
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +348 -122
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createlogdrainop.d.ts +2 -2
- package/esm/models/createlogdrainop.d.ts.map +1 -1
- package/esm/models/createlogdrainop.js +2 -2
- package/esm/models/createlogdrainop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +191 -58
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +168 -43
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/createwebhookop.d.ts +12 -0
- package/esm/models/createwebhookop.d.ts.map +1 -1
- package/esm/models/createwebhookop.js +4 -0
- package/esm/models/createwebhookop.js.map +1 -1
- package/esm/models/exchangessotokenop.d.ts +4 -4
- package/esm/models/exchangessotokenop.d.ts.map +1 -1
- package/esm/models/exchangessotokenop.js +4 -4
- package/esm/models/exchangessotokenop.js.map +1 -1
- package/esm/models/getaliasop.d.ts +0 -555
- package/esm/models/getaliasop.d.ts.map +1 -1
- package/esm/models/getaliasop.js +0 -449
- package/esm/models/getaliasop.js.map +1 -1
- package/esm/models/getbypassipop.d.ts +55 -179
- package/esm/models/getbypassipop.d.ts.map +1 -1
- package/esm/models/getbypassipop.js +59 -221
- package/esm/models/getbypassipop.js.map +1 -1
- package/esm/models/getcustomenvironmentop.d.ts +3 -3
- package/esm/models/getcustomenvironmentop.js +1 -1
- package/esm/models/getcustomenvironmentop.js.map +1 -1
- package/esm/models/getdeploymentop.d.ts +757 -276
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +703 -262
- package/esm/models/getdeploymentop.js.map +1 -1
- package/esm/models/getdeploymentsop.d.ts +3 -0
- package/esm/models/getdeploymentsop.d.ts.map +1 -1
- package/esm/models/getdeploymentsop.js +1 -0
- package/esm/models/getdeploymentsop.js.map +1 -1
- package/esm/models/getintegrationlogdrainsop.d.ts +2 -2
- package/esm/models/getintegrationlogdrainsop.d.ts.map +1 -1
- package/esm/models/getintegrationlogdrainsop.js +4 -2
- package/esm/models/getintegrationlogdrainsop.js.map +1 -1
- package/esm/models/getprojectmembersop.d.ts +3 -0
- package/esm/models/getprojectmembersop.d.ts.map +1 -1
- package/esm/models/getprojectmembersop.js +1 -0
- package/esm/models/getprojectmembersop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +185 -58
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +166 -43
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/getrecordsop.d.ts +8 -0
- package/esm/models/getrecordsop.d.ts.map +1 -1
- package/esm/models/getrecordsop.js +8 -0
- package/esm/models/getrecordsop.js.map +1 -1
- package/esm/models/getteammembersop.d.ts +6 -0
- package/esm/models/getteammembersop.d.ts.map +1 -1
- package/esm/models/getteammembersop.js +2 -0
- package/esm/models/getteammembersop.js.map +1 -1
- package/esm/models/getv9projectsidornamecustomenvironmentsop.d.ts +3 -3
- package/esm/models/getv9projectsidornamecustomenvironmentsop.js +1 -1
- package/esm/models/getv9projectsidornamecustomenvironmentsop.js.map +1 -1
- package/esm/models/getwebhookop.d.ts +6 -0
- package/esm/models/getwebhookop.d.ts.map +1 -1
- package/esm/models/getwebhookop.js +2 -0
- package/esm/models/getwebhookop.js.map +1 -1
- package/esm/models/getwebhooksop.d.ts +15 -0
- package/esm/models/getwebhooksop.d.ts.map +1 -1
- package/esm/models/getwebhooksop.js +5 -0
- package/esm/models/getwebhooksop.js.map +1 -1
- package/esm/models/inviteusertoteamop.d.ts +33 -0
- package/esm/models/inviteusertoteamop.d.ts.map +1 -1
- package/esm/models/inviteusertoteamop.js +11 -0
- package/esm/models/inviteusertoteamop.js.map +1 -1
- package/esm/models/listaccessgroupmembersop.d.ts +3 -0
- package/esm/models/listaccessgroupmembersop.d.ts.map +1 -1
- package/esm/models/listaccessgroupmembersop.js +1 -0
- package/esm/models/listaccessgroupmembersop.js.map +1 -1
- package/esm/models/listaliasesop.d.ts +141 -39
- package/esm/models/listaliasesop.d.ts.map +1 -1
- package/esm/models/listaliasesop.js +132 -35
- package/esm/models/listaliasesop.js.map +1 -1
- package/esm/models/listdeploymentaliasesop.d.ts +30 -30
- package/esm/models/listdeploymentaliasesop.d.ts.map +1 -1
- package/esm/models/listdeploymentaliasesop.js +34 -34
- package/esm/models/listdeploymentaliasesop.js.map +1 -1
- package/esm/models/patchedgeconfigitemsop.d.ts +0 -4
- package/esm/models/patchedgeconfigitemsop.d.ts.map +1 -1
- package/esm/models/patchedgeconfigitemsop.js +0 -4
- package/esm/models/patchedgeconfigitemsop.js.map +1 -1
- package/esm/models/patchteamop.d.ts +185 -0
- package/esm/models/patchteamop.d.ts.map +1 -1
- package/esm/models/patchteamop.js +132 -0
- package/esm/models/patchteamop.js.map +1 -1
- package/esm/models/removecustomenvironmentop.d.ts +3 -3
- package/esm/models/removecustomenvironmentop.js +1 -1
- package/esm/models/removecustomenvironmentop.js.map +1 -1
- package/esm/models/rerequestcheckop.d.ts +5 -0
- package/esm/models/rerequestcheckop.d.ts.map +1 -1
- package/esm/models/rerequestcheckop.js +2 -0
- package/esm/models/rerequestcheckop.js.map +1 -1
- package/esm/models/team.d.ts +149 -10
- package/esm/models/team.d.ts.map +1 -1
- package/esm/models/team.js +115 -5
- package/esm/models/team.js.map +1 -1
- package/esm/models/teamlimited.d.ts +15 -0
- package/esm/models/teamlimited.d.ts.map +1 -1
- package/esm/models/teamlimited.js +5 -0
- package/esm/models/teamlimited.js.map +1 -1
- package/esm/models/updatecustomenvironmentop.d.ts +3 -3
- package/esm/models/updatecustomenvironmentop.js +1 -1
- package/esm/models/updatecustomenvironmentop.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +185 -58
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +166 -43
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +188 -58
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +167 -43
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/userevent.d.ts +1599 -1433
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +1998 -1847
- package/esm/models/userevent.js.map +1 -1
- package/esm/sdk/aliases.d.ts +2 -2
- package/esm/sdk/aliases.d.ts.map +1 -1
- package/examples/README.md +5 -0
- package/examples/package-lock.json +8 -7
- package/examples/projectsUpdateProject.example.ts +2 -0
- package/jsr.json +1 -1
- package/package.json +6 -8
- package/src/__tests__/aliases.test.ts +16 -16
- package/src/__tests__/security.test.ts +13 -1
- package/src/__tests__/teams.test.ts +2 -2
- package/src/funcs/aliasesGetAlias.ts +5 -6
- package/src/funcs/checksRerequestCheck.ts +1 -0
- package/src/funcs/domainsGetDomainConfig.ts +2 -2
- package/src/funcs/edgeConfigPatchEdgeConfigItems.ts +2 -3
- package/src/funcs/marketplaceUpdateInstallationIntegrationEdgeConfig.ts +2 -2
- package/src/funcs/projectsAcceptProjectTransferRequest.ts +2 -2
- package/src/funcs/projectsCreateProject.ts +2 -2
- package/src/funcs/teamsPatchTeam.ts +2 -2
- 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/acceptprojecttransferrequestop.ts +449 -4
- package/src/models/addbypassipop.ts +69 -78
- package/src/models/authtoken.ts +10 -8
- package/src/models/authuser.ts +93 -0
- package/src/models/canceldeploymentop.ts +655 -190
- package/src/models/createcustomenvironmentop.ts +1 -1
- package/src/models/createdeploymentop.ts +752 -268
- package/src/models/createlogdrainop.ts +4 -4
- package/src/models/createprojectop.ts +365 -82
- package/src/models/createwebhookop.ts +4 -0
- package/src/models/exchangessotokenop.ts +8 -8
- package/src/models/getaliasop.ts +0 -1042
- package/src/models/getbypassipop.ts +100 -404
- package/src/models/getcustomenvironmentop.ts +1 -1
- package/src/models/getdeploymentop.ts +1657 -674
- package/src/models/getdeploymentsop.ts +1 -0
- package/src/models/getintegrationlogdrainsop.ts +6 -4
- package/src/models/getprojectmembersop.ts +1 -0
- package/src/models/getprojectsop.ts +363 -81
- package/src/models/getrecordsop.ts +16 -0
- package/src/models/getteammembersop.ts +2 -0
- package/src/models/getv9projectsidornamecustomenvironmentsop.ts +1 -1
- package/src/models/getwebhookop.ts +2 -0
- package/src/models/getwebhooksop.ts +5 -0
- package/src/models/inviteusertoteamop.ts +11 -0
- package/src/models/listaccessgroupmembersop.ts +1 -0
- package/src/models/listaliasesop.ts +290 -74
- package/src/models/listdeploymentaliasesop.ts +58 -70
- package/src/models/patchedgeconfigitemsop.ts +0 -8
- package/src/models/patchteamop.ts +311 -0
- package/src/models/removecustomenvironmentop.ts +1 -1
- package/src/models/rerequestcheckop.ts +7 -0
- package/src/models/team.ts +251 -12
- package/src/models/teamlimited.ts +5 -0
- package/src/models/updatecustomenvironmentop.ts +1 -1
- package/src/models/updateprojectdatacacheop.ts +352 -82
- package/src/models/updateprojectop.ts +364 -82
- package/src/models/userevent.ts +3609 -3269
- package/src/sdk/aliases.ts +2 -2
- package/temp/example.ts +11 -0
- package/vercel-spec.json +1984 -867
package/vercel-spec.json
CHANGED
|
@@ -529,6 +529,7 @@
|
|
|
529
529
|
"SECURITY",
|
|
530
530
|
"BILLING",
|
|
531
531
|
"VIEWER",
|
|
532
|
+
"VIEWER_FOR_PLUS",
|
|
532
533
|
"CONTRIBUTOR"
|
|
533
534
|
]
|
|
534
535
|
}
|
|
@@ -4048,6 +4049,16 @@
|
|
|
4048
4049
|
"type": "string"
|
|
4049
4050
|
}
|
|
4050
4051
|
},
|
|
4052
|
+
{
|
|
4053
|
+
"name": "autoUpdate",
|
|
4054
|
+
"description": "Mark the check as running",
|
|
4055
|
+
"in": "query",
|
|
4056
|
+
"required": false,
|
|
4057
|
+
"schema": {
|
|
4058
|
+
"description": "Mark the check as running",
|
|
4059
|
+
"type": "boolean"
|
|
4060
|
+
}
|
|
4061
|
+
},
|
|
4051
4062
|
{
|
|
4052
4063
|
"description": "The Team identifier to perform the request on behalf of.",
|
|
4053
4064
|
"in": "query",
|
|
@@ -4181,8 +4192,8 @@
|
|
|
4181
4192
|
{
|
|
4182
4193
|
"type": "string",
|
|
4183
4194
|
"enum": [
|
|
4184
|
-
"
|
|
4185
|
-
"
|
|
4195
|
+
"preview",
|
|
4196
|
+
"production"
|
|
4186
4197
|
]
|
|
4187
4198
|
}
|
|
4188
4199
|
]
|
|
@@ -4190,6 +4201,9 @@
|
|
|
4190
4201
|
"connectConfigurationId": {
|
|
4191
4202
|
"type": "string"
|
|
4192
4203
|
},
|
|
4204
|
+
"dc": {
|
|
4205
|
+
"type": "string"
|
|
4206
|
+
},
|
|
4193
4207
|
"passive": {
|
|
4194
4208
|
"type": "boolean"
|
|
4195
4209
|
},
|
|
@@ -4782,8 +4796,8 @@
|
|
|
4782
4796
|
"type": {
|
|
4783
4797
|
"type": "string",
|
|
4784
4798
|
"enum": [
|
|
4785
|
-
"production",
|
|
4786
4799
|
"preview",
|
|
4800
|
+
"production",
|
|
4787
4801
|
"development"
|
|
4788
4802
|
],
|
|
4789
4803
|
"description": "The type of environment (production, preview, or development)"
|
|
@@ -4978,7 +4992,8 @@
|
|
|
4978
4992
|
"sanity-v3",
|
|
4979
4993
|
"sanity",
|
|
4980
4994
|
"storybook",
|
|
4981
|
-
"nitro"
|
|
4995
|
+
"nitro",
|
|
4996
|
+
"hono"
|
|
4982
4997
|
]
|
|
4983
4998
|
},
|
|
4984
4999
|
"gitForkProtection": {
|
|
@@ -5377,6 +5392,77 @@
|
|
|
5377
5392
|
],
|
|
5378
5393
|
"type": "object"
|
|
5379
5394
|
},
|
|
5395
|
+
{
|
|
5396
|
+
"properties": {
|
|
5397
|
+
"type": {
|
|
5398
|
+
"type": "string",
|
|
5399
|
+
"enum": [
|
|
5400
|
+
"github-limited"
|
|
5401
|
+
]
|
|
5402
|
+
},
|
|
5403
|
+
"createdAt": {
|
|
5404
|
+
"type": "number"
|
|
5405
|
+
},
|
|
5406
|
+
"updatedAt": {
|
|
5407
|
+
"type": "number"
|
|
5408
|
+
},
|
|
5409
|
+
"org": {
|
|
5410
|
+
"type": "string"
|
|
5411
|
+
},
|
|
5412
|
+
"repoOwnerId": {
|
|
5413
|
+
"type": "number",
|
|
5414
|
+
"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."
|
|
5415
|
+
},
|
|
5416
|
+
"repo": {
|
|
5417
|
+
"type": "string"
|
|
5418
|
+
},
|
|
5419
|
+
"repoId": {
|
|
5420
|
+
"type": "number"
|
|
5421
|
+
},
|
|
5422
|
+
"deployHooks": {
|
|
5423
|
+
"items": {
|
|
5424
|
+
"properties": {
|
|
5425
|
+
"createdAt": {
|
|
5426
|
+
"type": "number"
|
|
5427
|
+
},
|
|
5428
|
+
"id": {
|
|
5429
|
+
"type": "string"
|
|
5430
|
+
},
|
|
5431
|
+
"name": {
|
|
5432
|
+
"type": "string"
|
|
5433
|
+
},
|
|
5434
|
+
"ref": {
|
|
5435
|
+
"type": "string"
|
|
5436
|
+
},
|
|
5437
|
+
"url": {
|
|
5438
|
+
"type": "string"
|
|
5439
|
+
}
|
|
5440
|
+
},
|
|
5441
|
+
"required": [
|
|
5442
|
+
"id",
|
|
5443
|
+
"name",
|
|
5444
|
+
"ref",
|
|
5445
|
+
"url"
|
|
5446
|
+
],
|
|
5447
|
+
"type": "object"
|
|
5448
|
+
},
|
|
5449
|
+
"type": "array"
|
|
5450
|
+
},
|
|
5451
|
+
"gitCredentialId": {
|
|
5452
|
+
"type": "string"
|
|
5453
|
+
},
|
|
5454
|
+
"sourceless": {
|
|
5455
|
+
"type": "boolean"
|
|
5456
|
+
},
|
|
5457
|
+
"productionBranch": {
|
|
5458
|
+
"type": "string"
|
|
5459
|
+
}
|
|
5460
|
+
},
|
|
5461
|
+
"required": [
|
|
5462
|
+
"deployHooks"
|
|
5463
|
+
],
|
|
5464
|
+
"type": "object"
|
|
5465
|
+
},
|
|
5380
5466
|
{
|
|
5381
5467
|
"properties": {
|
|
5382
5468
|
"projectId": {
|
|
@@ -6256,31 +6342,31 @@
|
|
|
6256
6342
|
},
|
|
6257
6343
|
"permissions": {
|
|
6258
6344
|
"properties": {
|
|
6259
|
-
"
|
|
6345
|
+
"oauth2Connection": {
|
|
6260
6346
|
"items": {
|
|
6261
6347
|
"$ref": "#/components/schemas/ACLAction"
|
|
6262
6348
|
},
|
|
6263
6349
|
"type": "array"
|
|
6264
6350
|
},
|
|
6265
|
-
"
|
|
6351
|
+
"user": {
|
|
6266
6352
|
"items": {
|
|
6267
6353
|
"$ref": "#/components/schemas/ACLAction"
|
|
6268
6354
|
},
|
|
6269
6355
|
"type": "array"
|
|
6270
6356
|
},
|
|
6271
|
-
"
|
|
6357
|
+
"userConnection": {
|
|
6272
6358
|
"items": {
|
|
6273
6359
|
"$ref": "#/components/schemas/ACLAction"
|
|
6274
6360
|
},
|
|
6275
6361
|
"type": "array"
|
|
6276
6362
|
},
|
|
6277
|
-
"
|
|
6363
|
+
"userSudo": {
|
|
6278
6364
|
"items": {
|
|
6279
6365
|
"$ref": "#/components/schemas/ACLAction"
|
|
6280
6366
|
},
|
|
6281
6367
|
"type": "array"
|
|
6282
6368
|
},
|
|
6283
|
-
"
|
|
6369
|
+
"webAuthn": {
|
|
6284
6370
|
"items": {
|
|
6285
6371
|
"$ref": "#/components/schemas/ACLAction"
|
|
6286
6372
|
},
|
|
@@ -6358,6 +6444,12 @@
|
|
|
6358
6444
|
},
|
|
6359
6445
|
"type": "array"
|
|
6360
6446
|
},
|
|
6447
|
+
"billingRefund": {
|
|
6448
|
+
"items": {
|
|
6449
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
6450
|
+
},
|
|
6451
|
+
"type": "array"
|
|
6452
|
+
},
|
|
6361
6453
|
"billingTaxId": {
|
|
6362
6454
|
"items": {
|
|
6363
6455
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -6412,6 +6504,12 @@
|
|
|
6412
6504
|
},
|
|
6413
6505
|
"type": "array"
|
|
6414
6506
|
},
|
|
6507
|
+
"defaultDeploymentProtection": {
|
|
6508
|
+
"items": {
|
|
6509
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
6510
|
+
},
|
|
6511
|
+
"type": "array"
|
|
6512
|
+
},
|
|
6415
6513
|
"domain": {
|
|
6416
6514
|
"items": {
|
|
6417
6515
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -6604,6 +6702,12 @@
|
|
|
6604
6702
|
},
|
|
6605
6703
|
"type": "array"
|
|
6606
6704
|
},
|
|
6705
|
+
"marketplaceSettings": {
|
|
6706
|
+
"items": {
|
|
6707
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
6708
|
+
},
|
|
6709
|
+
"type": "array"
|
|
6710
|
+
},
|
|
6607
6711
|
"marketplaceExperimentationItem": {
|
|
6608
6712
|
"items": {
|
|
6609
6713
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -6760,6 +6864,12 @@
|
|
|
6760
6864
|
},
|
|
6761
6865
|
"type": "array"
|
|
6762
6866
|
},
|
|
6867
|
+
"observabilityFunnel": {
|
|
6868
|
+
"items": {
|
|
6869
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
6870
|
+
},
|
|
6871
|
+
"type": "array"
|
|
6872
|
+
},
|
|
6763
6873
|
"openTelemetryEndpoint": {
|
|
6764
6874
|
"items": {
|
|
6765
6875
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -7138,6 +7248,12 @@
|
|
|
7138
7248
|
},
|
|
7139
7249
|
"type": "array"
|
|
7140
7250
|
},
|
|
7251
|
+
"deploymentBuildLogs": {
|
|
7252
|
+
"items": {
|
|
7253
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
7254
|
+
},
|
|
7255
|
+
"type": "array"
|
|
7256
|
+
},
|
|
7141
7257
|
"deploymentCheck": {
|
|
7142
7258
|
"items": {
|
|
7143
7259
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -7438,6 +7554,12 @@
|
|
|
7438
7554
|
},
|
|
7439
7555
|
"type": "array"
|
|
7440
7556
|
},
|
|
7557
|
+
"projectOIDCToken": {
|
|
7558
|
+
"items": {
|
|
7559
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
7560
|
+
},
|
|
7561
|
+
"type": "array"
|
|
7562
|
+
},
|
|
7441
7563
|
"seawallConfig": {
|
|
7442
7564
|
"items": {
|
|
7443
7565
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -7600,8 +7722,8 @@
|
|
|
7600
7722
|
"deploymentType": {
|
|
7601
7723
|
"type": "string",
|
|
7602
7724
|
"enum": [
|
|
7603
|
-
"production",
|
|
7604
7725
|
"preview",
|
|
7726
|
+
"production",
|
|
7605
7727
|
"all",
|
|
7606
7728
|
"prod_deployment_urls_and_all_previews",
|
|
7607
7729
|
"all_except_custom_domains"
|
|
@@ -7644,8 +7766,8 @@
|
|
|
7644
7766
|
"deploymentType": {
|
|
7645
7767
|
"type": "string",
|
|
7646
7768
|
"enum": [
|
|
7647
|
-
"production",
|
|
7648
7769
|
"preview",
|
|
7770
|
+
"production",
|
|
7649
7771
|
"all",
|
|
7650
7772
|
"prod_deployment_urls_and_all_previews",
|
|
7651
7773
|
"all_except_custom_domains"
|
|
@@ -7685,6 +7807,10 @@
|
|
|
7685
7807
|
"disabled"
|
|
7686
7808
|
],
|
|
7687
7809
|
"description": "Whether the Vercel bot should automatically create GitHub deployments https://docs.github.com/en/rest/deployments/deployments#about-deployments NOTE: repository-dispatch events should be used instead"
|
|
7810
|
+
},
|
|
7811
|
+
"disableRepositoryDispatchEvents": {
|
|
7812
|
+
"type": "boolean",
|
|
7813
|
+
"description": "Whether the Vercel bot should not automatically create GitHub repository-dispatch events on deployment events. https://vercel.com/docs/git/vercel-for-github#repository-dispatch-events"
|
|
7688
7814
|
}
|
|
7689
7815
|
},
|
|
7690
7816
|
"required": [
|
|
@@ -8155,6 +8281,9 @@
|
|
|
8155
8281
|
}
|
|
8156
8282
|
},
|
|
8157
8283
|
"type": "object"
|
|
8284
|
+
},
|
|
8285
|
+
"v0": {
|
|
8286
|
+
"type": "boolean"
|
|
8158
8287
|
}
|
|
8159
8288
|
},
|
|
8160
8289
|
"required": [
|
|
@@ -9297,7 +9426,8 @@
|
|
|
9297
9426
|
"sanity-v3",
|
|
9298
9427
|
"sanity",
|
|
9299
9428
|
"storybook",
|
|
9300
|
-
"nitro"
|
|
9429
|
+
"nitro",
|
|
9430
|
+
"hono"
|
|
9301
9431
|
]
|
|
9302
9432
|
},
|
|
9303
9433
|
"commandForIgnoringBuildStep": {
|
|
@@ -10101,6 +10231,75 @@
|
|
|
10101
10231
|
],
|
|
10102
10232
|
"type": "object"
|
|
10103
10233
|
},
|
|
10234
|
+
{
|
|
10235
|
+
"properties": {
|
|
10236
|
+
"type": {
|
|
10237
|
+
"type": "string",
|
|
10238
|
+
"enum": [
|
|
10239
|
+
"github-limited"
|
|
10240
|
+
]
|
|
10241
|
+
},
|
|
10242
|
+
"repoId": {
|
|
10243
|
+
"oneOf": [
|
|
10244
|
+
{
|
|
10245
|
+
"type": "string"
|
|
10246
|
+
},
|
|
10247
|
+
{
|
|
10248
|
+
"type": "number"
|
|
10249
|
+
}
|
|
10250
|
+
]
|
|
10251
|
+
},
|
|
10252
|
+
"ref": {
|
|
10253
|
+
"nullable": true,
|
|
10254
|
+
"type": "string"
|
|
10255
|
+
},
|
|
10256
|
+
"sha": {
|
|
10257
|
+
"type": "string"
|
|
10258
|
+
},
|
|
10259
|
+
"prId": {
|
|
10260
|
+
"nullable": true,
|
|
10261
|
+
"type": "number"
|
|
10262
|
+
}
|
|
10263
|
+
},
|
|
10264
|
+
"required": [
|
|
10265
|
+
"type",
|
|
10266
|
+
"repoId"
|
|
10267
|
+
],
|
|
10268
|
+
"type": "object"
|
|
10269
|
+
},
|
|
10270
|
+
{
|
|
10271
|
+
"properties": {
|
|
10272
|
+
"type": {
|
|
10273
|
+
"type": "string",
|
|
10274
|
+
"enum": [
|
|
10275
|
+
"github-limited"
|
|
10276
|
+
]
|
|
10277
|
+
},
|
|
10278
|
+
"org": {
|
|
10279
|
+
"type": "string"
|
|
10280
|
+
},
|
|
10281
|
+
"repo": {
|
|
10282
|
+
"type": "string"
|
|
10283
|
+
},
|
|
10284
|
+
"ref": {
|
|
10285
|
+
"nullable": true,
|
|
10286
|
+
"type": "string"
|
|
10287
|
+
},
|
|
10288
|
+
"sha": {
|
|
10289
|
+
"type": "string"
|
|
10290
|
+
},
|
|
10291
|
+
"prId": {
|
|
10292
|
+
"nullable": true,
|
|
10293
|
+
"type": "number"
|
|
10294
|
+
}
|
|
10295
|
+
},
|
|
10296
|
+
"required": [
|
|
10297
|
+
"type",
|
|
10298
|
+
"org",
|
|
10299
|
+
"repo"
|
|
10300
|
+
],
|
|
10301
|
+
"type": "object"
|
|
10302
|
+
},
|
|
10104
10303
|
{
|
|
10105
10304
|
"properties": {
|
|
10106
10305
|
"type": {
|
|
@@ -10297,6 +10496,38 @@
|
|
|
10297
10496
|
],
|
|
10298
10497
|
"type": "object"
|
|
10299
10498
|
},
|
|
10499
|
+
{
|
|
10500
|
+
"properties": {
|
|
10501
|
+
"type": {
|
|
10502
|
+
"type": "string",
|
|
10503
|
+
"enum": [
|
|
10504
|
+
"github-limited"
|
|
10505
|
+
]
|
|
10506
|
+
},
|
|
10507
|
+
"ref": {
|
|
10508
|
+
"type": "string"
|
|
10509
|
+
},
|
|
10510
|
+
"sha": {
|
|
10511
|
+
"type": "string"
|
|
10512
|
+
},
|
|
10513
|
+
"repoId": {
|
|
10514
|
+
"type": "number"
|
|
10515
|
+
},
|
|
10516
|
+
"org": {
|
|
10517
|
+
"type": "string"
|
|
10518
|
+
},
|
|
10519
|
+
"repo": {
|
|
10520
|
+
"type": "string"
|
|
10521
|
+
}
|
|
10522
|
+
},
|
|
10523
|
+
"required": [
|
|
10524
|
+
"type",
|
|
10525
|
+
"ref",
|
|
10526
|
+
"sha",
|
|
10527
|
+
"repoId"
|
|
10528
|
+
],
|
|
10529
|
+
"type": "object"
|
|
10530
|
+
},
|
|
10300
10531
|
{
|
|
10301
10532
|
"properties": {
|
|
10302
10533
|
"type": {
|
|
@@ -10370,6 +10601,20 @@
|
|
|
10370
10601
|
"originCacheRegion": {
|
|
10371
10602
|
"type": "string"
|
|
10372
10603
|
},
|
|
10604
|
+
"nodeVersion": {
|
|
10605
|
+
"type": "string",
|
|
10606
|
+
"enum": [
|
|
10607
|
+
"22.x",
|
|
10608
|
+
"20.x",
|
|
10609
|
+
"18.x",
|
|
10610
|
+
"16.x",
|
|
10611
|
+
"14.x",
|
|
10612
|
+
"12.x",
|
|
10613
|
+
"10.x",
|
|
10614
|
+
"8.10.x"
|
|
10615
|
+
],
|
|
10616
|
+
"description": "If set it overrides the `projectSettings.nodeVersion` for this deployment."
|
|
10617
|
+
},
|
|
10373
10618
|
"project": {
|
|
10374
10619
|
"properties": {
|
|
10375
10620
|
"id": {
|
|
@@ -11418,13 +11663,9 @@
|
|
|
11418
11663
|
"type": "array",
|
|
11419
11664
|
"description": "The group of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together."
|
|
11420
11665
|
},
|
|
11421
|
-
"
|
|
11666
|
+
"microfrontendsAlias2Enabled": {
|
|
11422
11667
|
"type": "boolean",
|
|
11423
|
-
"description": "Whether the
|
|
11424
|
-
},
|
|
11425
|
-
"previewEnvAliasEnabled": {
|
|
11426
|
-
"type": "boolean",
|
|
11427
|
-
"description": "Whether this deployment, if a preview deployment on the production branch, should get the -env-preview alias instead of a normal branch alias. This is used to always generate a microfrontends fallback on the preview branch."
|
|
11668
|
+
"description": "Whether the MicrofrontendsAlias2 team flag should be considered enabled for this deployment or not."
|
|
11428
11669
|
}
|
|
11429
11670
|
},
|
|
11430
11671
|
"required": [
|
|
@@ -11489,13 +11730,9 @@
|
|
|
11489
11730
|
"type": "array",
|
|
11490
11731
|
"description": "The group of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together."
|
|
11491
11732
|
},
|
|
11492
|
-
"
|
|
11733
|
+
"microfrontendsAlias2Enabled": {
|
|
11493
11734
|
"type": "boolean",
|
|
11494
|
-
"description": "Whether the
|
|
11495
|
-
},
|
|
11496
|
-
"previewEnvAliasEnabled": {
|
|
11497
|
-
"type": "boolean",
|
|
11498
|
-
"description": "Whether this deployment, if a preview deployment on the production branch, should get the -env-preview alias instead of a normal branch alias. This is used to always generate a microfrontends fallback on the preview branch."
|
|
11735
|
+
"description": "Whether the MicrofrontendsAlias2 team flag should be considered enabled for this deployment or not."
|
|
11499
11736
|
}
|
|
11500
11737
|
},
|
|
11501
11738
|
"required": [
|
|
@@ -12223,6 +12460,75 @@
|
|
|
12223
12460
|
],
|
|
12224
12461
|
"type": "object"
|
|
12225
12462
|
},
|
|
12463
|
+
{
|
|
12464
|
+
"properties": {
|
|
12465
|
+
"type": {
|
|
12466
|
+
"type": "string",
|
|
12467
|
+
"enum": [
|
|
12468
|
+
"github-limited"
|
|
12469
|
+
]
|
|
12470
|
+
},
|
|
12471
|
+
"repoId": {
|
|
12472
|
+
"oneOf": [
|
|
12473
|
+
{
|
|
12474
|
+
"type": "string"
|
|
12475
|
+
},
|
|
12476
|
+
{
|
|
12477
|
+
"type": "number"
|
|
12478
|
+
}
|
|
12479
|
+
]
|
|
12480
|
+
},
|
|
12481
|
+
"ref": {
|
|
12482
|
+
"nullable": true,
|
|
12483
|
+
"type": "string"
|
|
12484
|
+
},
|
|
12485
|
+
"sha": {
|
|
12486
|
+
"type": "string"
|
|
12487
|
+
},
|
|
12488
|
+
"prId": {
|
|
12489
|
+
"nullable": true,
|
|
12490
|
+
"type": "number"
|
|
12491
|
+
}
|
|
12492
|
+
},
|
|
12493
|
+
"required": [
|
|
12494
|
+
"type",
|
|
12495
|
+
"repoId"
|
|
12496
|
+
],
|
|
12497
|
+
"type": "object"
|
|
12498
|
+
},
|
|
12499
|
+
{
|
|
12500
|
+
"properties": {
|
|
12501
|
+
"type": {
|
|
12502
|
+
"type": "string",
|
|
12503
|
+
"enum": [
|
|
12504
|
+
"github-limited"
|
|
12505
|
+
]
|
|
12506
|
+
},
|
|
12507
|
+
"org": {
|
|
12508
|
+
"type": "string"
|
|
12509
|
+
},
|
|
12510
|
+
"repo": {
|
|
12511
|
+
"type": "string"
|
|
12512
|
+
},
|
|
12513
|
+
"ref": {
|
|
12514
|
+
"nullable": true,
|
|
12515
|
+
"type": "string"
|
|
12516
|
+
},
|
|
12517
|
+
"sha": {
|
|
12518
|
+
"type": "string"
|
|
12519
|
+
},
|
|
12520
|
+
"prId": {
|
|
12521
|
+
"nullable": true,
|
|
12522
|
+
"type": "number"
|
|
12523
|
+
}
|
|
12524
|
+
},
|
|
12525
|
+
"required": [
|
|
12526
|
+
"type",
|
|
12527
|
+
"org",
|
|
12528
|
+
"repo"
|
|
12529
|
+
],
|
|
12530
|
+
"type": "object"
|
|
12531
|
+
},
|
|
12226
12532
|
{
|
|
12227
12533
|
"properties": {
|
|
12228
12534
|
"type": {
|
|
@@ -12419,6 +12725,38 @@
|
|
|
12419
12725
|
],
|
|
12420
12726
|
"type": "object"
|
|
12421
12727
|
},
|
|
12728
|
+
{
|
|
12729
|
+
"properties": {
|
|
12730
|
+
"type": {
|
|
12731
|
+
"type": "string",
|
|
12732
|
+
"enum": [
|
|
12733
|
+
"github-limited"
|
|
12734
|
+
]
|
|
12735
|
+
},
|
|
12736
|
+
"ref": {
|
|
12737
|
+
"type": "string"
|
|
12738
|
+
},
|
|
12739
|
+
"sha": {
|
|
12740
|
+
"type": "string"
|
|
12741
|
+
},
|
|
12742
|
+
"repoId": {
|
|
12743
|
+
"type": "number"
|
|
12744
|
+
},
|
|
12745
|
+
"org": {
|
|
12746
|
+
"type": "string"
|
|
12747
|
+
},
|
|
12748
|
+
"repo": {
|
|
12749
|
+
"type": "string"
|
|
12750
|
+
}
|
|
12751
|
+
},
|
|
12752
|
+
"required": [
|
|
12753
|
+
"type",
|
|
12754
|
+
"ref",
|
|
12755
|
+
"sha",
|
|
12756
|
+
"repoId"
|
|
12757
|
+
],
|
|
12758
|
+
"type": "object"
|
|
12759
|
+
},
|
|
12422
12760
|
{
|
|
12423
12761
|
"properties": {
|
|
12424
12762
|
"type": {
|
|
@@ -12492,6 +12830,20 @@
|
|
|
12492
12830
|
"originCacheRegion": {
|
|
12493
12831
|
"type": "string"
|
|
12494
12832
|
},
|
|
12833
|
+
"nodeVersion": {
|
|
12834
|
+
"type": "string",
|
|
12835
|
+
"enum": [
|
|
12836
|
+
"22.x",
|
|
12837
|
+
"20.x",
|
|
12838
|
+
"18.x",
|
|
12839
|
+
"16.x",
|
|
12840
|
+
"14.x",
|
|
12841
|
+
"12.x",
|
|
12842
|
+
"10.x",
|
|
12843
|
+
"8.10.x"
|
|
12844
|
+
],
|
|
12845
|
+
"description": "If set it overrides the `projectSettings.nodeVersion` for this deployment."
|
|
12846
|
+
},
|
|
12495
12847
|
"project": {
|
|
12496
12848
|
"properties": {
|
|
12497
12849
|
"id": {
|
|
@@ -12855,7 +13207,8 @@
|
|
|
12855
13207
|
"sanity-v3",
|
|
12856
13208
|
"sanity",
|
|
12857
13209
|
"storybook",
|
|
12858
|
-
"nitro"
|
|
13210
|
+
"nitro",
|
|
13211
|
+
"hono"
|
|
12859
13212
|
]
|
|
12860
13213
|
},
|
|
12861
13214
|
"installCommand": {
|
|
@@ -12926,11 +13279,11 @@
|
|
|
12926
13279
|
"status": {
|
|
12927
13280
|
"type": "string",
|
|
12928
13281
|
"enum": [
|
|
13282
|
+
"error",
|
|
13283
|
+
"timeout",
|
|
12929
13284
|
"skipped",
|
|
12930
13285
|
"pending",
|
|
12931
|
-
"ready"
|
|
12932
|
-
"error",
|
|
12933
|
-
"timeout"
|
|
13286
|
+
"ready"
|
|
12934
13287
|
]
|
|
12935
13288
|
},
|
|
12936
13289
|
"startedAt": {
|
|
@@ -13106,19 +13459,19 @@
|
|
|
13106
13459
|
"createdAt": {
|
|
13107
13460
|
"type": "number"
|
|
13108
13461
|
},
|
|
13109
|
-
"entrypoint": {
|
|
13110
|
-
"nullable": true,
|
|
13111
|
-
"type": "string"
|
|
13112
|
-
},
|
|
13113
13462
|
"readyState": {
|
|
13114
13463
|
"type": "string",
|
|
13115
13464
|
"enum": [
|
|
13116
|
-
"BUILDING",
|
|
13117
13465
|
"ERROR",
|
|
13466
|
+
"BUILDING",
|
|
13118
13467
|
"INITIALIZING",
|
|
13119
13468
|
"READY"
|
|
13120
13469
|
]
|
|
13121
13470
|
},
|
|
13471
|
+
"entrypoint": {
|
|
13472
|
+
"nullable": true,
|
|
13473
|
+
"type": "string"
|
|
13474
|
+
},
|
|
13122
13475
|
"readyStateAt": {
|
|
13123
13476
|
"type": "number"
|
|
13124
13477
|
},
|
|
@@ -13555,6 +13908,75 @@
|
|
|
13555
13908
|
],
|
|
13556
13909
|
"type": "object"
|
|
13557
13910
|
},
|
|
13911
|
+
{
|
|
13912
|
+
"properties": {
|
|
13913
|
+
"type": {
|
|
13914
|
+
"type": "string",
|
|
13915
|
+
"enum": [
|
|
13916
|
+
"github-limited"
|
|
13917
|
+
]
|
|
13918
|
+
},
|
|
13919
|
+
"repoId": {
|
|
13920
|
+
"oneOf": [
|
|
13921
|
+
{
|
|
13922
|
+
"type": "string"
|
|
13923
|
+
},
|
|
13924
|
+
{
|
|
13925
|
+
"type": "number"
|
|
13926
|
+
}
|
|
13927
|
+
]
|
|
13928
|
+
},
|
|
13929
|
+
"ref": {
|
|
13930
|
+
"nullable": true,
|
|
13931
|
+
"type": "string"
|
|
13932
|
+
},
|
|
13933
|
+
"sha": {
|
|
13934
|
+
"type": "string"
|
|
13935
|
+
},
|
|
13936
|
+
"prId": {
|
|
13937
|
+
"nullable": true,
|
|
13938
|
+
"type": "number"
|
|
13939
|
+
}
|
|
13940
|
+
},
|
|
13941
|
+
"required": [
|
|
13942
|
+
"type",
|
|
13943
|
+
"repoId"
|
|
13944
|
+
],
|
|
13945
|
+
"type": "object"
|
|
13946
|
+
},
|
|
13947
|
+
{
|
|
13948
|
+
"properties": {
|
|
13949
|
+
"type": {
|
|
13950
|
+
"type": "string",
|
|
13951
|
+
"enum": [
|
|
13952
|
+
"github-limited"
|
|
13953
|
+
]
|
|
13954
|
+
},
|
|
13955
|
+
"org": {
|
|
13956
|
+
"type": "string"
|
|
13957
|
+
},
|
|
13958
|
+
"repo": {
|
|
13959
|
+
"type": "string"
|
|
13960
|
+
},
|
|
13961
|
+
"ref": {
|
|
13962
|
+
"nullable": true,
|
|
13963
|
+
"type": "string"
|
|
13964
|
+
},
|
|
13965
|
+
"sha": {
|
|
13966
|
+
"type": "string"
|
|
13967
|
+
},
|
|
13968
|
+
"prId": {
|
|
13969
|
+
"nullable": true,
|
|
13970
|
+
"type": "number"
|
|
13971
|
+
}
|
|
13972
|
+
},
|
|
13973
|
+
"required": [
|
|
13974
|
+
"type",
|
|
13975
|
+
"org",
|
|
13976
|
+
"repo"
|
|
13977
|
+
],
|
|
13978
|
+
"type": "object"
|
|
13979
|
+
},
|
|
13558
13980
|
{
|
|
13559
13981
|
"properties": {
|
|
13560
13982
|
"type": {
|
|
@@ -13751,6 +14173,38 @@
|
|
|
13751
14173
|
],
|
|
13752
14174
|
"type": "object"
|
|
13753
14175
|
},
|
|
14176
|
+
{
|
|
14177
|
+
"properties": {
|
|
14178
|
+
"type": {
|
|
14179
|
+
"type": "string",
|
|
14180
|
+
"enum": [
|
|
14181
|
+
"github-limited"
|
|
14182
|
+
]
|
|
14183
|
+
},
|
|
14184
|
+
"ref": {
|
|
14185
|
+
"type": "string"
|
|
14186
|
+
},
|
|
14187
|
+
"sha": {
|
|
14188
|
+
"type": "string"
|
|
14189
|
+
},
|
|
14190
|
+
"repoId": {
|
|
14191
|
+
"type": "number"
|
|
14192
|
+
},
|
|
14193
|
+
"org": {
|
|
14194
|
+
"type": "string"
|
|
14195
|
+
},
|
|
14196
|
+
"repo": {
|
|
14197
|
+
"type": "string"
|
|
14198
|
+
}
|
|
14199
|
+
},
|
|
14200
|
+
"required": [
|
|
14201
|
+
"type",
|
|
14202
|
+
"ref",
|
|
14203
|
+
"sha",
|
|
14204
|
+
"repoId"
|
|
14205
|
+
],
|
|
14206
|
+
"type": "object"
|
|
14207
|
+
},
|
|
13754
14208
|
{
|
|
13755
14209
|
"properties": {
|
|
13756
14210
|
"type": {
|
|
@@ -13840,6 +14294,20 @@
|
|
|
13840
14294
|
],
|
|
13841
14295
|
"type": "object"
|
|
13842
14296
|
},
|
|
14297
|
+
"nodeVersion": {
|
|
14298
|
+
"type": "string",
|
|
14299
|
+
"enum": [
|
|
14300
|
+
"22.x",
|
|
14301
|
+
"20.x",
|
|
14302
|
+
"18.x",
|
|
14303
|
+
"16.x",
|
|
14304
|
+
"14.x",
|
|
14305
|
+
"12.x",
|
|
14306
|
+
"10.x",
|
|
14307
|
+
"8.10.x"
|
|
14308
|
+
],
|
|
14309
|
+
"description": "If set it overrides the `projectSettings.nodeVersion` for this deployment."
|
|
14310
|
+
},
|
|
13843
14311
|
"readyState": {
|
|
13844
14312
|
"type": "string",
|
|
13845
14313
|
"enum": [
|
|
@@ -14050,9 +14518,9 @@
|
|
|
14050
14518
|
"plan": {
|
|
14051
14519
|
"type": "string",
|
|
14052
14520
|
"enum": [
|
|
14521
|
+
"hobby",
|
|
14053
14522
|
"pro",
|
|
14054
|
-
"enterprise"
|
|
14055
|
-
"hobby"
|
|
14523
|
+
"enterprise"
|
|
14056
14524
|
]
|
|
14057
14525
|
},
|
|
14058
14526
|
"config": {
|
|
@@ -14063,15 +14531,15 @@
|
|
|
14063
14531
|
"functionType": {
|
|
14064
14532
|
"type": "string",
|
|
14065
14533
|
"enum": [
|
|
14066
|
-
"
|
|
14067
|
-
"
|
|
14534
|
+
"standard",
|
|
14535
|
+
"fluid"
|
|
14068
14536
|
]
|
|
14069
14537
|
},
|
|
14070
14538
|
"functionMemoryType": {
|
|
14071
14539
|
"type": "string",
|
|
14072
14540
|
"enum": [
|
|
14073
|
-
"standard",
|
|
14074
14541
|
"standard_legacy",
|
|
14542
|
+
"standard",
|
|
14075
14543
|
"performance"
|
|
14076
14544
|
]
|
|
14077
14545
|
},
|
|
@@ -14560,8 +15028,8 @@
|
|
|
14560
15028
|
"op": {
|
|
14561
15029
|
"type": "string",
|
|
14562
15030
|
"enum": [
|
|
14563
|
-
"append",
|
|
14564
15031
|
"set",
|
|
15032
|
+
"append",
|
|
14565
15033
|
"delete"
|
|
14566
15034
|
]
|
|
14567
15035
|
},
|
|
@@ -14691,12 +15159,12 @@
|
|
|
14691
15159
|
"handle": {
|
|
14692
15160
|
"type": "string",
|
|
14693
15161
|
"enum": [
|
|
14694
|
-
"error",
|
|
14695
15162
|
"filesystem",
|
|
15163
|
+
"error",
|
|
14696
15164
|
"hit",
|
|
14697
15165
|
"miss",
|
|
14698
|
-
"
|
|
14699
|
-
"
|
|
15166
|
+
"resource",
|
|
15167
|
+
"rewrite"
|
|
14700
15168
|
]
|
|
14701
15169
|
},
|
|
14702
15170
|
"src": {
|
|
@@ -14822,13 +15290,9 @@
|
|
|
14822
15290
|
"type": "array",
|
|
14823
15291
|
"description": "The group of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together."
|
|
14824
15292
|
},
|
|
14825
|
-
"
|
|
14826
|
-
"type": "boolean",
|
|
14827
|
-
"description": "Whether the MicrofrontendsAlias team flag should be considered enabled for this deployment or not. This is used to ensure that we don't accidentally switch an existing branch alias to a microfrontends branch alias."
|
|
14828
|
-
},
|
|
14829
|
-
"previewEnvAliasEnabled": {
|
|
15293
|
+
"microfrontendsAlias2Enabled": {
|
|
14830
15294
|
"type": "boolean",
|
|
14831
|
-
"description": "Whether
|
|
15295
|
+
"description": "Whether the MicrofrontendsAlias2 team flag should be considered enabled for this deployment or not."
|
|
14832
15296
|
}
|
|
14833
15297
|
},
|
|
14834
15298
|
"required": [
|
|
@@ -14893,13 +15357,9 @@
|
|
|
14893
15357
|
"type": "array",
|
|
14894
15358
|
"description": "The group of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together."
|
|
14895
15359
|
},
|
|
14896
|
-
"
|
|
15360
|
+
"microfrontendsAlias2Enabled": {
|
|
14897
15361
|
"type": "boolean",
|
|
14898
|
-
"description": "Whether the
|
|
14899
|
-
},
|
|
14900
|
-
"previewEnvAliasEnabled": {
|
|
14901
|
-
"type": "boolean",
|
|
14902
|
-
"description": "Whether this deployment, if a preview deployment on the production branch, should get the -env-preview alias instead of a normal branch alias. This is used to always generate a microfrontends fallback on the preview branch."
|
|
15362
|
+
"description": "Whether the MicrofrontendsAlias2 team flag should be considered enabled for this deployment or not."
|
|
14903
15363
|
}
|
|
14904
15364
|
},
|
|
14905
15365
|
"required": [
|
|
@@ -14959,8 +15419,8 @@
|
|
|
14959
15419
|
"ownerType": {
|
|
14960
15420
|
"type": "string",
|
|
14961
15421
|
"enum": [
|
|
14962
|
-
"
|
|
14963
|
-
"
|
|
15422
|
+
"user",
|
|
15423
|
+
"team"
|
|
14964
15424
|
]
|
|
14965
15425
|
}
|
|
14966
15426
|
},
|
|
@@ -15012,8 +15472,8 @@
|
|
|
15012
15472
|
"ownerType": {
|
|
15013
15473
|
"type": "string",
|
|
15014
15474
|
"enum": [
|
|
15015
|
-
"
|
|
15016
|
-
"
|
|
15475
|
+
"user",
|
|
15476
|
+
"team"
|
|
15017
15477
|
]
|
|
15018
15478
|
}
|
|
15019
15479
|
},
|
|
@@ -15066,8 +15526,8 @@
|
|
|
15066
15526
|
"ownerType": {
|
|
15067
15527
|
"type": "string",
|
|
15068
15528
|
"enum": [
|
|
15069
|
-
"
|
|
15070
|
-
"
|
|
15529
|
+
"user",
|
|
15530
|
+
"team"
|
|
15071
15531
|
]
|
|
15072
15532
|
}
|
|
15073
15533
|
},
|
|
@@ -15376,6 +15836,26 @@
|
|
|
15376
15836
|
"type": "boolean",
|
|
15377
15837
|
"description": "Whether or not there have been modifications to the working tree since the latest commit",
|
|
15378
15838
|
"example": true
|
|
15839
|
+
},
|
|
15840
|
+
"ci": {
|
|
15841
|
+
"type": "boolean",
|
|
15842
|
+
"description": "True if process.env.CI was set when deploying",
|
|
15843
|
+
"example": true
|
|
15844
|
+
},
|
|
15845
|
+
"ciType": {
|
|
15846
|
+
"type": "string",
|
|
15847
|
+
"description": "The type of CI system used",
|
|
15848
|
+
"example": "github-actions"
|
|
15849
|
+
},
|
|
15850
|
+
"ciGitProviderUsername": {
|
|
15851
|
+
"type": "string",
|
|
15852
|
+
"description": "The username used for the Git Provider (e.g. GitHub) if their CI (e.g. GitHub Actions) was used, if available",
|
|
15853
|
+
"example": "rauchg"
|
|
15854
|
+
},
|
|
15855
|
+
"ciGitRepoVisibility": {
|
|
15856
|
+
"type": "string",
|
|
15857
|
+
"description": "The visibility of the Git repository if their CI (e.g. GitHub Actions) was used, if available",
|
|
15858
|
+
"example": "private"
|
|
15379
15859
|
}
|
|
15380
15860
|
}
|
|
15381
15861
|
},
|
|
@@ -15652,7 +16132,8 @@
|
|
|
15652
16132
|
"sanity-v3",
|
|
15653
16133
|
"sanity",
|
|
15654
16134
|
"storybook",
|
|
15655
|
-
"nitro"
|
|
16135
|
+
"nitro",
|
|
16136
|
+
"hono"
|
|
15656
16137
|
],
|
|
15657
16138
|
"nullable": true
|
|
15658
16139
|
},
|
|
@@ -15879,7 +16360,8 @@
|
|
|
15879
16360
|
"sanity-v3",
|
|
15880
16361
|
"sanity",
|
|
15881
16362
|
"storybook",
|
|
15882
|
-
"nitro"
|
|
16363
|
+
"nitro",
|
|
16364
|
+
"hono"
|
|
15883
16365
|
]
|
|
15884
16366
|
},
|
|
15885
16367
|
"commandForIgnoringBuildStep": {
|
|
@@ -16663,6 +17145,75 @@
|
|
|
16663
17145
|
],
|
|
16664
17146
|
"type": "object"
|
|
16665
17147
|
},
|
|
17148
|
+
{
|
|
17149
|
+
"properties": {
|
|
17150
|
+
"type": {
|
|
17151
|
+
"type": "string",
|
|
17152
|
+
"enum": [
|
|
17153
|
+
"github-limited"
|
|
17154
|
+
]
|
|
17155
|
+
},
|
|
17156
|
+
"repoId": {
|
|
17157
|
+
"oneOf": [
|
|
17158
|
+
{
|
|
17159
|
+
"type": "string"
|
|
17160
|
+
},
|
|
17161
|
+
{
|
|
17162
|
+
"type": "number"
|
|
17163
|
+
}
|
|
17164
|
+
]
|
|
17165
|
+
},
|
|
17166
|
+
"ref": {
|
|
17167
|
+
"nullable": true,
|
|
17168
|
+
"type": "string"
|
|
17169
|
+
},
|
|
17170
|
+
"sha": {
|
|
17171
|
+
"type": "string"
|
|
17172
|
+
},
|
|
17173
|
+
"prId": {
|
|
17174
|
+
"nullable": true,
|
|
17175
|
+
"type": "number"
|
|
17176
|
+
}
|
|
17177
|
+
},
|
|
17178
|
+
"required": [
|
|
17179
|
+
"type",
|
|
17180
|
+
"repoId"
|
|
17181
|
+
],
|
|
17182
|
+
"type": "object"
|
|
17183
|
+
},
|
|
17184
|
+
{
|
|
17185
|
+
"properties": {
|
|
17186
|
+
"type": {
|
|
17187
|
+
"type": "string",
|
|
17188
|
+
"enum": [
|
|
17189
|
+
"github-limited"
|
|
17190
|
+
]
|
|
17191
|
+
},
|
|
17192
|
+
"org": {
|
|
17193
|
+
"type": "string"
|
|
17194
|
+
},
|
|
17195
|
+
"repo": {
|
|
17196
|
+
"type": "string"
|
|
17197
|
+
},
|
|
17198
|
+
"ref": {
|
|
17199
|
+
"nullable": true,
|
|
17200
|
+
"type": "string"
|
|
17201
|
+
},
|
|
17202
|
+
"sha": {
|
|
17203
|
+
"type": "string"
|
|
17204
|
+
},
|
|
17205
|
+
"prId": {
|
|
17206
|
+
"nullable": true,
|
|
17207
|
+
"type": "number"
|
|
17208
|
+
}
|
|
17209
|
+
},
|
|
17210
|
+
"required": [
|
|
17211
|
+
"type",
|
|
17212
|
+
"org",
|
|
17213
|
+
"repo"
|
|
17214
|
+
],
|
|
17215
|
+
"type": "object"
|
|
17216
|
+
},
|
|
16666
17217
|
{
|
|
16667
17218
|
"properties": {
|
|
16668
17219
|
"type": {
|
|
@@ -16859,6 +17410,38 @@
|
|
|
16859
17410
|
],
|
|
16860
17411
|
"type": "object"
|
|
16861
17412
|
},
|
|
17413
|
+
{
|
|
17414
|
+
"properties": {
|
|
17415
|
+
"type": {
|
|
17416
|
+
"type": "string",
|
|
17417
|
+
"enum": [
|
|
17418
|
+
"github-limited"
|
|
17419
|
+
]
|
|
17420
|
+
},
|
|
17421
|
+
"ref": {
|
|
17422
|
+
"type": "string"
|
|
17423
|
+
},
|
|
17424
|
+
"sha": {
|
|
17425
|
+
"type": "string"
|
|
17426
|
+
},
|
|
17427
|
+
"repoId": {
|
|
17428
|
+
"type": "number"
|
|
17429
|
+
},
|
|
17430
|
+
"org": {
|
|
17431
|
+
"type": "string"
|
|
17432
|
+
},
|
|
17433
|
+
"repo": {
|
|
17434
|
+
"type": "string"
|
|
17435
|
+
}
|
|
17436
|
+
},
|
|
17437
|
+
"required": [
|
|
17438
|
+
"type",
|
|
17439
|
+
"ref",
|
|
17440
|
+
"sha",
|
|
17441
|
+
"repoId"
|
|
17442
|
+
],
|
|
17443
|
+
"type": "object"
|
|
17444
|
+
},
|
|
16862
17445
|
{
|
|
16863
17446
|
"properties": {
|
|
16864
17447
|
"type": {
|
|
@@ -16935,6 +17518,20 @@
|
|
|
16935
17518
|
"originCacheRegion": {
|
|
16936
17519
|
"type": "string"
|
|
16937
17520
|
},
|
|
17521
|
+
"nodeVersion": {
|
|
17522
|
+
"type": "string",
|
|
17523
|
+
"enum": [
|
|
17524
|
+
"22.x",
|
|
17525
|
+
"20.x",
|
|
17526
|
+
"18.x",
|
|
17527
|
+
"16.x",
|
|
17528
|
+
"14.x",
|
|
17529
|
+
"12.x",
|
|
17530
|
+
"10.x",
|
|
17531
|
+
"8.10.x"
|
|
17532
|
+
],
|
|
17533
|
+
"description": "If set it overrides the `projectSettings.nodeVersion` for this deployment."
|
|
17534
|
+
},
|
|
16938
17535
|
"project": {
|
|
16939
17536
|
"properties": {
|
|
16940
17537
|
"id": {
|
|
@@ -18000,13 +18597,9 @@
|
|
|
18000
18597
|
"type": "array",
|
|
18001
18598
|
"description": "The group of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together."
|
|
18002
18599
|
},
|
|
18003
|
-
"
|
|
18004
|
-
"type": "boolean",
|
|
18005
|
-
"description": "Whether the MicrofrontendsAlias team flag should be considered enabled for this deployment or not. This is used to ensure that we don't accidentally switch an existing branch alias to a microfrontends branch alias."
|
|
18006
|
-
},
|
|
18007
|
-
"previewEnvAliasEnabled": {
|
|
18600
|
+
"microfrontendsAlias2Enabled": {
|
|
18008
18601
|
"type": "boolean",
|
|
18009
|
-
"description": "Whether
|
|
18602
|
+
"description": "Whether the MicrofrontendsAlias2 team flag should be considered enabled for this deployment or not."
|
|
18010
18603
|
}
|
|
18011
18604
|
},
|
|
18012
18605
|
"required": [
|
|
@@ -18071,13 +18664,9 @@
|
|
|
18071
18664
|
"type": "array",
|
|
18072
18665
|
"description": "The group of microfrontends that this project belongs to. Each microfrontend project must belong to a microfrontends group that is the set of microfrontends that are used together."
|
|
18073
18666
|
},
|
|
18074
|
-
"
|
|
18075
|
-
"type": "boolean",
|
|
18076
|
-
"description": "Whether the MicrofrontendsAlias team flag should be considered enabled for this deployment or not. This is used to ensure that we don't accidentally switch an existing branch alias to a microfrontends branch alias."
|
|
18077
|
-
},
|
|
18078
|
-
"previewEnvAliasEnabled": {
|
|
18667
|
+
"microfrontendsAlias2Enabled": {
|
|
18079
18668
|
"type": "boolean",
|
|
18080
|
-
"description": "Whether
|
|
18669
|
+
"description": "Whether the MicrofrontendsAlias2 team flag should be considered enabled for this deployment or not."
|
|
18081
18670
|
}
|
|
18082
18671
|
},
|
|
18083
18672
|
"required": [
|
|
@@ -18817,6 +19406,12 @@
|
|
|
18817
19406
|
"updatedAt": {
|
|
18818
19407
|
"nullable": true,
|
|
18819
19408
|
"type": "number"
|
|
19409
|
+
},
|
|
19410
|
+
"ttl": {
|
|
19411
|
+
"type": "number"
|
|
19412
|
+
},
|
|
19413
|
+
"comment": {
|
|
19414
|
+
"type": "string"
|
|
18820
19415
|
}
|
|
18821
19416
|
},
|
|
18822
19417
|
"required": [
|
|
@@ -18897,6 +19492,12 @@
|
|
|
18897
19492
|
"updatedAt": {
|
|
18898
19493
|
"nullable": true,
|
|
18899
19494
|
"type": "number"
|
|
19495
|
+
},
|
|
19496
|
+
"ttl": {
|
|
19497
|
+
"type": "number"
|
|
19498
|
+
},
|
|
19499
|
+
"comment": {
|
|
19500
|
+
"type": "string"
|
|
18900
19501
|
}
|
|
18901
19502
|
},
|
|
18902
19503
|
"required": [
|
|
@@ -20235,9 +20836,6 @@
|
|
|
20235
20836
|
},
|
|
20236
20837
|
"403": {
|
|
20237
20838
|
"description": "You do not have permission to access this resource."
|
|
20238
|
-
},
|
|
20239
|
-
"500": {
|
|
20240
|
-
"description": ""
|
|
20241
20839
|
}
|
|
20242
20840
|
},
|
|
20243
20841
|
"parameters": [
|
|
@@ -21029,7 +21627,7 @@
|
|
|
21029
21627
|
}
|
|
21030
21628
|
},
|
|
21031
21629
|
"409": {
|
|
21032
|
-
"description": ""
|
|
21630
|
+
"description": "The domain is not allowed to be used"
|
|
21033
21631
|
},
|
|
21034
21632
|
"500": {
|
|
21035
21633
|
"description": ""
|
|
@@ -22417,6 +23015,9 @@
|
|
|
22417
23015
|
},
|
|
22418
23016
|
"409": {
|
|
22419
23017
|
"description": ""
|
|
23018
|
+
},
|
|
23019
|
+
"412": {
|
|
23020
|
+
"description": ""
|
|
22420
23021
|
}
|
|
22421
23022
|
},
|
|
22422
23023
|
"parameters": [
|
|
@@ -22429,14 +23030,6 @@
|
|
|
22429
23030
|
"pattern": "^ecfg_"
|
|
22430
23031
|
}
|
|
22431
23032
|
},
|
|
22432
|
-
{
|
|
22433
|
-
"name": "dryRun",
|
|
22434
|
-
"in": "query",
|
|
22435
|
-
"required": false,
|
|
22436
|
-
"schema": {
|
|
22437
|
-
"type": "string"
|
|
22438
|
-
}
|
|
22439
|
-
},
|
|
22440
23033
|
{
|
|
22441
23034
|
"description": "The Team identifier to perform the request on behalf of.",
|
|
22442
23035
|
"in": "query",
|
|
@@ -22463,8 +23056,7 @@
|
|
|
22463
23056
|
"type": "object",
|
|
22464
23057
|
"additionalProperties": false,
|
|
22465
23058
|
"required": [
|
|
22466
|
-
"items"
|
|
22467
|
-
"definition"
|
|
23059
|
+
"items"
|
|
22468
23060
|
],
|
|
22469
23061
|
"properties": {
|
|
22470
23062
|
"items": {
|
|
@@ -22551,8 +23143,7 @@
|
|
|
22551
23143
|
}
|
|
22552
23144
|
]
|
|
22553
23145
|
}
|
|
22554
|
-
}
|
|
22555
|
-
"definition": {}
|
|
23146
|
+
}
|
|
22556
23147
|
}
|
|
22557
23148
|
}
|
|
22558
23149
|
}
|
|
@@ -27500,10 +28091,12 @@
|
|
|
27500
28091
|
"type": "string"
|
|
27501
28092
|
},
|
|
27502
28093
|
"access_token": {
|
|
27503
|
-
"nullable": true
|
|
28094
|
+
"nullable": true,
|
|
28095
|
+
"type": "string"
|
|
27504
28096
|
},
|
|
27505
28097
|
"token_type": {
|
|
27506
|
-
"nullable": true
|
|
28098
|
+
"nullable": true,
|
|
28099
|
+
"type": "string"
|
|
27507
28100
|
}
|
|
27508
28101
|
},
|
|
27509
28102
|
"required": [
|
|
@@ -27742,8 +28335,7 @@
|
|
|
27742
28335
|
"id",
|
|
27743
28336
|
"name",
|
|
27744
28337
|
"ownerId",
|
|
27745
|
-
"url"
|
|
27746
|
-
"environments"
|
|
28338
|
+
"url"
|
|
27747
28339
|
],
|
|
27748
28340
|
"type": "object"
|
|
27749
28341
|
},
|
|
@@ -27950,8 +28542,7 @@
|
|
|
27950
28542
|
"id",
|
|
27951
28543
|
"name",
|
|
27952
28544
|
"ownerId",
|
|
27953
|
-
"url"
|
|
27954
|
-
"environments"
|
|
28545
|
+
"url"
|
|
27955
28546
|
],
|
|
27956
28547
|
"type": "object"
|
|
27957
28548
|
}
|
|
@@ -28834,6 +29425,9 @@
|
|
|
28834
29425
|
}
|
|
28835
29426
|
}
|
|
28836
29427
|
},
|
|
29428
|
+
"409": {
|
|
29429
|
+
"description": ""
|
|
29430
|
+
},
|
|
28837
29431
|
"412": {
|
|
28838
29432
|
"description": ""
|
|
28839
29433
|
}
|
|
@@ -28965,6 +29559,7 @@
|
|
|
28965
29559
|
"SECURITY",
|
|
28966
29560
|
"BILLING",
|
|
28967
29561
|
"VIEWER",
|
|
29562
|
+
"VIEWER_FOR_PLUS",
|
|
28968
29563
|
"CONTRIBUTOR"
|
|
28969
29564
|
],
|
|
28970
29565
|
"description": "The role of this user in the team.",
|
|
@@ -29498,8 +30093,8 @@
|
|
|
29498
30093
|
{
|
|
29499
30094
|
"type": "string",
|
|
29500
30095
|
"enum": [
|
|
29501
|
-
"
|
|
29502
|
-
"
|
|
30096
|
+
"preview",
|
|
30097
|
+
"production"
|
|
29503
30098
|
]
|
|
29504
30099
|
}
|
|
29505
30100
|
]
|
|
@@ -29507,6 +30102,9 @@
|
|
|
29507
30102
|
"connectConfigurationId": {
|
|
29508
30103
|
"type": "string"
|
|
29509
30104
|
},
|
|
30105
|
+
"dc": {
|
|
30106
|
+
"type": "string"
|
|
30107
|
+
},
|
|
29510
30108
|
"passive": {
|
|
29511
30109
|
"type": "boolean"
|
|
29512
30110
|
},
|
|
@@ -30103,8 +30701,8 @@
|
|
|
30103
30701
|
"type": {
|
|
30104
30702
|
"type": "string",
|
|
30105
30703
|
"enum": [
|
|
30106
|
-
"production",
|
|
30107
30704
|
"preview",
|
|
30705
|
+
"production",
|
|
30108
30706
|
"development"
|
|
30109
30707
|
],
|
|
30110
30708
|
"description": "The type of environment (production, preview, or development)"
|
|
@@ -30299,7 +30897,8 @@
|
|
|
30299
30897
|
"sanity-v3",
|
|
30300
30898
|
"sanity",
|
|
30301
30899
|
"storybook",
|
|
30302
|
-
"nitro"
|
|
30900
|
+
"nitro",
|
|
30901
|
+
"hono"
|
|
30303
30902
|
]
|
|
30304
30903
|
},
|
|
30305
30904
|
"gitForkProtection": {
|
|
@@ -30698,6 +31297,77 @@
|
|
|
30698
31297
|
],
|
|
30699
31298
|
"type": "object"
|
|
30700
31299
|
},
|
|
31300
|
+
{
|
|
31301
|
+
"properties": {
|
|
31302
|
+
"type": {
|
|
31303
|
+
"type": "string",
|
|
31304
|
+
"enum": [
|
|
31305
|
+
"github-limited"
|
|
31306
|
+
]
|
|
31307
|
+
},
|
|
31308
|
+
"repo": {
|
|
31309
|
+
"type": "string"
|
|
31310
|
+
},
|
|
31311
|
+
"repoId": {
|
|
31312
|
+
"type": "number"
|
|
31313
|
+
},
|
|
31314
|
+
"updatedAt": {
|
|
31315
|
+
"type": "number"
|
|
31316
|
+
},
|
|
31317
|
+
"createdAt": {
|
|
31318
|
+
"type": "number"
|
|
31319
|
+
},
|
|
31320
|
+
"org": {
|
|
31321
|
+
"type": "string"
|
|
31322
|
+
},
|
|
31323
|
+
"repoOwnerId": {
|
|
31324
|
+
"type": "number",
|
|
31325
|
+
"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."
|
|
31326
|
+
},
|
|
31327
|
+
"deployHooks": {
|
|
31328
|
+
"items": {
|
|
31329
|
+
"properties": {
|
|
31330
|
+
"createdAt": {
|
|
31331
|
+
"type": "number"
|
|
31332
|
+
},
|
|
31333
|
+
"id": {
|
|
31334
|
+
"type": "string"
|
|
31335
|
+
},
|
|
31336
|
+
"name": {
|
|
31337
|
+
"type": "string"
|
|
31338
|
+
},
|
|
31339
|
+
"ref": {
|
|
31340
|
+
"type": "string"
|
|
31341
|
+
},
|
|
31342
|
+
"url": {
|
|
31343
|
+
"type": "string"
|
|
31344
|
+
}
|
|
31345
|
+
},
|
|
31346
|
+
"required": [
|
|
31347
|
+
"id",
|
|
31348
|
+
"name",
|
|
31349
|
+
"ref",
|
|
31350
|
+
"url"
|
|
31351
|
+
],
|
|
31352
|
+
"type": "object"
|
|
31353
|
+
},
|
|
31354
|
+
"type": "array"
|
|
31355
|
+
},
|
|
31356
|
+
"gitCredentialId": {
|
|
31357
|
+
"type": "string"
|
|
31358
|
+
},
|
|
31359
|
+
"sourceless": {
|
|
31360
|
+
"type": "boolean"
|
|
31361
|
+
},
|
|
31362
|
+
"productionBranch": {
|
|
31363
|
+
"type": "string"
|
|
31364
|
+
}
|
|
31365
|
+
},
|
|
31366
|
+
"required": [
|
|
31367
|
+
"deployHooks"
|
|
31368
|
+
],
|
|
31369
|
+
"type": "object"
|
|
31370
|
+
},
|
|
30701
31371
|
{
|
|
30702
31372
|
"properties": {
|
|
30703
31373
|
"projectId": {
|
|
@@ -31619,6 +32289,12 @@
|
|
|
31619
32289
|
},
|
|
31620
32290
|
"type": "array"
|
|
31621
32291
|
},
|
|
32292
|
+
"deploymentBuildLogs": {
|
|
32293
|
+
"items": {
|
|
32294
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
32295
|
+
},
|
|
32296
|
+
"type": "array"
|
|
32297
|
+
},
|
|
31622
32298
|
"deploymentCheck": {
|
|
31623
32299
|
"items": {
|
|
31624
32300
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -31919,6 +32595,12 @@
|
|
|
31919
32595
|
},
|
|
31920
32596
|
"type": "array"
|
|
31921
32597
|
},
|
|
32598
|
+
"projectOIDCToken": {
|
|
32599
|
+
"items": {
|
|
32600
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
32601
|
+
},
|
|
32602
|
+
"type": "array"
|
|
32603
|
+
},
|
|
31922
32604
|
"seawallConfig": {
|
|
31923
32605
|
"items": {
|
|
31924
32606
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -31961,31 +32643,31 @@
|
|
|
31961
32643
|
},
|
|
31962
32644
|
"type": "array"
|
|
31963
32645
|
},
|
|
31964
|
-
"
|
|
32646
|
+
"oauth2Connection": {
|
|
31965
32647
|
"items": {
|
|
31966
32648
|
"$ref": "#/components/schemas/ACLAction"
|
|
31967
32649
|
},
|
|
31968
32650
|
"type": "array"
|
|
31969
32651
|
},
|
|
31970
|
-
"
|
|
32652
|
+
"user": {
|
|
31971
32653
|
"items": {
|
|
31972
32654
|
"$ref": "#/components/schemas/ACLAction"
|
|
31973
32655
|
},
|
|
31974
32656
|
"type": "array"
|
|
31975
32657
|
},
|
|
31976
|
-
"
|
|
32658
|
+
"userConnection": {
|
|
31977
32659
|
"items": {
|
|
31978
32660
|
"$ref": "#/components/schemas/ACLAction"
|
|
31979
32661
|
},
|
|
31980
32662
|
"type": "array"
|
|
31981
32663
|
},
|
|
31982
|
-
"
|
|
32664
|
+
"userSudo": {
|
|
31983
32665
|
"items": {
|
|
31984
32666
|
"$ref": "#/components/schemas/ACLAction"
|
|
31985
32667
|
},
|
|
31986
32668
|
"type": "array"
|
|
31987
32669
|
},
|
|
31988
|
-
"
|
|
32670
|
+
"webAuthn": {
|
|
31989
32671
|
"items": {
|
|
31990
32672
|
"$ref": "#/components/schemas/ACLAction"
|
|
31991
32673
|
},
|
|
@@ -32063,6 +32745,12 @@
|
|
|
32063
32745
|
},
|
|
32064
32746
|
"type": "array"
|
|
32065
32747
|
},
|
|
32748
|
+
"billingRefund": {
|
|
32749
|
+
"items": {
|
|
32750
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
32751
|
+
},
|
|
32752
|
+
"type": "array"
|
|
32753
|
+
},
|
|
32066
32754
|
"billingTaxId": {
|
|
32067
32755
|
"items": {
|
|
32068
32756
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -32117,6 +32805,12 @@
|
|
|
32117
32805
|
},
|
|
32118
32806
|
"type": "array"
|
|
32119
32807
|
},
|
|
32808
|
+
"defaultDeploymentProtection": {
|
|
32809
|
+
"items": {
|
|
32810
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
32811
|
+
},
|
|
32812
|
+
"type": "array"
|
|
32813
|
+
},
|
|
32120
32814
|
"domain": {
|
|
32121
32815
|
"items": {
|
|
32122
32816
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -32309,6 +33003,12 @@
|
|
|
32309
33003
|
},
|
|
32310
33004
|
"type": "array"
|
|
32311
33005
|
},
|
|
33006
|
+
"marketplaceSettings": {
|
|
33007
|
+
"items": {
|
|
33008
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
33009
|
+
},
|
|
33010
|
+
"type": "array"
|
|
33011
|
+
},
|
|
32312
33012
|
"marketplaceExperimentationItem": {
|
|
32313
33013
|
"items": {
|
|
32314
33014
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -32465,6 +33165,12 @@
|
|
|
32465
33165
|
},
|
|
32466
33166
|
"type": "array"
|
|
32467
33167
|
},
|
|
33168
|
+
"observabilityFunnel": {
|
|
33169
|
+
"items": {
|
|
33170
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
33171
|
+
},
|
|
33172
|
+
"type": "array"
|
|
33173
|
+
},
|
|
32468
33174
|
"openTelemetryEndpoint": {
|
|
32469
33175
|
"items": {
|
|
32470
33176
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -32921,8 +33627,8 @@
|
|
|
32921
33627
|
"deploymentType": {
|
|
32922
33628
|
"type": "string",
|
|
32923
33629
|
"enum": [
|
|
32924
|
-
"production",
|
|
32925
33630
|
"preview",
|
|
33631
|
+
"production",
|
|
32926
33632
|
"all",
|
|
32927
33633
|
"prod_deployment_urls_and_all_previews",
|
|
32928
33634
|
"all_except_custom_domains"
|
|
@@ -32965,8 +33671,8 @@
|
|
|
32965
33671
|
"deploymentType": {
|
|
32966
33672
|
"type": "string",
|
|
32967
33673
|
"enum": [
|
|
32968
|
-
"production",
|
|
32969
33674
|
"preview",
|
|
33675
|
+
"production",
|
|
32970
33676
|
"all",
|
|
32971
33677
|
"prod_deployment_urls_and_all_previews",
|
|
32972
33678
|
"all_except_custom_domains"
|
|
@@ -33006,6 +33712,10 @@
|
|
|
33006
33712
|
"disabled"
|
|
33007
33713
|
],
|
|
33008
33714
|
"description": "Whether the Vercel bot should automatically create GitHub deployments https://docs.github.com/en/rest/deployments/deployments#about-deployments NOTE: repository-dispatch events should be used instead"
|
|
33715
|
+
},
|
|
33716
|
+
"disableRepositoryDispatchEvents": {
|
|
33717
|
+
"type": "boolean",
|
|
33718
|
+
"description": "Whether the Vercel bot should not automatically create GitHub repository-dispatch events on deployment events. https://vercel.com/docs/git/vercel-for-github#repository-dispatch-events"
|
|
33009
33719
|
}
|
|
33010
33720
|
},
|
|
33011
33721
|
"required": [
|
|
@@ -33476,6 +34186,9 @@
|
|
|
33476
34186
|
}
|
|
33477
34187
|
},
|
|
33478
34188
|
"type": "object"
|
|
34189
|
+
},
|
|
34190
|
+
"v0": {
|
|
34191
|
+
"type": "boolean"
|
|
33479
34192
|
}
|
|
33480
34193
|
},
|
|
33481
34194
|
"required": [
|
|
@@ -33767,8 +34480,8 @@
|
|
|
33767
34480
|
{
|
|
33768
34481
|
"type": "string",
|
|
33769
34482
|
"enum": [
|
|
33770
|
-
"
|
|
33771
|
-
"
|
|
34483
|
+
"preview",
|
|
34484
|
+
"production"
|
|
33772
34485
|
]
|
|
33773
34486
|
}
|
|
33774
34487
|
]
|
|
@@ -33776,6 +34489,9 @@
|
|
|
33776
34489
|
"connectConfigurationId": {
|
|
33777
34490
|
"type": "string"
|
|
33778
34491
|
},
|
|
34492
|
+
"dc": {
|
|
34493
|
+
"type": "string"
|
|
34494
|
+
},
|
|
33779
34495
|
"passive": {
|
|
33780
34496
|
"type": "boolean"
|
|
33781
34497
|
},
|
|
@@ -34372,8 +35088,8 @@
|
|
|
34372
35088
|
"type": {
|
|
34373
35089
|
"type": "string",
|
|
34374
35090
|
"enum": [
|
|
34375
|
-
"production",
|
|
34376
35091
|
"preview",
|
|
35092
|
+
"production",
|
|
34377
35093
|
"development"
|
|
34378
35094
|
],
|
|
34379
35095
|
"description": "The type of environment (production, preview, or development)"
|
|
@@ -34568,7 +35284,8 @@
|
|
|
34568
35284
|
"sanity-v3",
|
|
34569
35285
|
"sanity",
|
|
34570
35286
|
"storybook",
|
|
34571
|
-
"nitro"
|
|
35287
|
+
"nitro",
|
|
35288
|
+
"hono"
|
|
34572
35289
|
]
|
|
34573
35290
|
},
|
|
34574
35291
|
"gitForkProtection": {
|
|
@@ -34969,33 +35686,30 @@
|
|
|
34969
35686
|
},
|
|
34970
35687
|
{
|
|
34971
35688
|
"properties": {
|
|
34972
|
-
"
|
|
34973
|
-
"type": "string"
|
|
35689
|
+
"type": {
|
|
35690
|
+
"type": "string",
|
|
35691
|
+
"enum": [
|
|
35692
|
+
"github-limited"
|
|
35693
|
+
]
|
|
34974
35694
|
},
|
|
34975
|
-
"
|
|
35695
|
+
"repo": {
|
|
34976
35696
|
"type": "string"
|
|
34977
35697
|
},
|
|
34978
|
-
"
|
|
34979
|
-
"type": "
|
|
35698
|
+
"repoId": {
|
|
35699
|
+
"type": "number"
|
|
34980
35700
|
},
|
|
34981
|
-
"
|
|
34982
|
-
"type": "
|
|
35701
|
+
"updatedAt": {
|
|
35702
|
+
"type": "number"
|
|
34983
35703
|
},
|
|
34984
|
-
"
|
|
34985
|
-
"type": "number"
|
|
34986
|
-
"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. This is the id of the top level group that a namespace belongs to. Gitlab supports group nesting (up to 20 levels)."
|
|
35704
|
+
"createdAt": {
|
|
35705
|
+
"type": "number"
|
|
34987
35706
|
},
|
|
34988
|
-
"
|
|
35707
|
+
"org": {
|
|
34989
35708
|
"type": "string"
|
|
34990
35709
|
},
|
|
34991
|
-
"
|
|
34992
|
-
"type": "
|
|
34993
|
-
"
|
|
34994
|
-
"gitlab"
|
|
34995
|
-
]
|
|
34996
|
-
},
|
|
34997
|
-
"createdAt": {
|
|
34998
|
-
"type": "number"
|
|
35710
|
+
"repoOwnerId": {
|
|
35711
|
+
"type": "number",
|
|
35712
|
+
"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."
|
|
34999
35713
|
},
|
|
35000
35714
|
"deployHooks": {
|
|
35001
35715
|
"items": {
|
|
@@ -35029,9 +35743,6 @@
|
|
|
35029
35743
|
"gitCredentialId": {
|
|
35030
35744
|
"type": "string"
|
|
35031
35745
|
},
|
|
35032
|
-
"updatedAt": {
|
|
35033
|
-
"type": "number"
|
|
35034
|
-
},
|
|
35035
35746
|
"sourceless": {
|
|
35036
35747
|
"type": "boolean"
|
|
35037
35748
|
},
|
|
@@ -35046,27 +35757,104 @@
|
|
|
35046
35757
|
},
|
|
35047
35758
|
{
|
|
35048
35759
|
"properties": {
|
|
35049
|
-
"
|
|
35760
|
+
"projectId": {
|
|
35050
35761
|
"type": "string"
|
|
35051
35762
|
},
|
|
35052
|
-
"
|
|
35763
|
+
"projectName": {
|
|
35053
35764
|
"type": "string"
|
|
35054
35765
|
},
|
|
35055
|
-
"
|
|
35766
|
+
"projectNameWithNamespace": {
|
|
35767
|
+
"type": "string"
|
|
35768
|
+
},
|
|
35769
|
+
"projectNamespace": {
|
|
35770
|
+
"type": "string"
|
|
35771
|
+
},
|
|
35772
|
+
"projectOwnerId": {
|
|
35773
|
+
"type": "number",
|
|
35774
|
+
"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. This is the id of the top level group that a namespace belongs to. Gitlab supports group nesting (up to 20 levels)."
|
|
35775
|
+
},
|
|
35776
|
+
"projectUrl": {
|
|
35056
35777
|
"type": "string"
|
|
35057
35778
|
},
|
|
35058
35779
|
"type": {
|
|
35059
35780
|
"type": "string",
|
|
35060
35781
|
"enum": [
|
|
35061
|
-
"
|
|
35782
|
+
"gitlab"
|
|
35062
35783
|
]
|
|
35063
35784
|
},
|
|
35064
|
-
"
|
|
35065
|
-
"type": "
|
|
35066
|
-
},
|
|
35067
|
-
"
|
|
35068
|
-
"
|
|
35069
|
-
|
|
35785
|
+
"createdAt": {
|
|
35786
|
+
"type": "number"
|
|
35787
|
+
},
|
|
35788
|
+
"deployHooks": {
|
|
35789
|
+
"items": {
|
|
35790
|
+
"properties": {
|
|
35791
|
+
"createdAt": {
|
|
35792
|
+
"type": "number"
|
|
35793
|
+
},
|
|
35794
|
+
"id": {
|
|
35795
|
+
"type": "string"
|
|
35796
|
+
},
|
|
35797
|
+
"name": {
|
|
35798
|
+
"type": "string"
|
|
35799
|
+
},
|
|
35800
|
+
"ref": {
|
|
35801
|
+
"type": "string"
|
|
35802
|
+
},
|
|
35803
|
+
"url": {
|
|
35804
|
+
"type": "string"
|
|
35805
|
+
}
|
|
35806
|
+
},
|
|
35807
|
+
"required": [
|
|
35808
|
+
"id",
|
|
35809
|
+
"name",
|
|
35810
|
+
"ref",
|
|
35811
|
+
"url"
|
|
35812
|
+
],
|
|
35813
|
+
"type": "object"
|
|
35814
|
+
},
|
|
35815
|
+
"type": "array"
|
|
35816
|
+
},
|
|
35817
|
+
"gitCredentialId": {
|
|
35818
|
+
"type": "string"
|
|
35819
|
+
},
|
|
35820
|
+
"updatedAt": {
|
|
35821
|
+
"type": "number"
|
|
35822
|
+
},
|
|
35823
|
+
"sourceless": {
|
|
35824
|
+
"type": "boolean"
|
|
35825
|
+
},
|
|
35826
|
+
"productionBranch": {
|
|
35827
|
+
"type": "string"
|
|
35828
|
+
}
|
|
35829
|
+
},
|
|
35830
|
+
"required": [
|
|
35831
|
+
"deployHooks"
|
|
35832
|
+
],
|
|
35833
|
+
"type": "object"
|
|
35834
|
+
},
|
|
35835
|
+
{
|
|
35836
|
+
"properties": {
|
|
35837
|
+
"name": {
|
|
35838
|
+
"type": "string"
|
|
35839
|
+
},
|
|
35840
|
+
"slug": {
|
|
35841
|
+
"type": "string"
|
|
35842
|
+
},
|
|
35843
|
+
"owner": {
|
|
35844
|
+
"type": "string"
|
|
35845
|
+
},
|
|
35846
|
+
"type": {
|
|
35847
|
+
"type": "string",
|
|
35848
|
+
"enum": [
|
|
35849
|
+
"bitbucket"
|
|
35850
|
+
]
|
|
35851
|
+
},
|
|
35852
|
+
"uuid": {
|
|
35853
|
+
"type": "string"
|
|
35854
|
+
},
|
|
35855
|
+
"workspaceUuid": {
|
|
35856
|
+
"type": "string"
|
|
35857
|
+
},
|
|
35070
35858
|
"createdAt": {
|
|
35071
35859
|
"type": "number"
|
|
35072
35860
|
},
|
|
@@ -35888,6 +36676,12 @@
|
|
|
35888
36676
|
},
|
|
35889
36677
|
"type": "array"
|
|
35890
36678
|
},
|
|
36679
|
+
"deploymentBuildLogs": {
|
|
36680
|
+
"items": {
|
|
36681
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
36682
|
+
},
|
|
36683
|
+
"type": "array"
|
|
36684
|
+
},
|
|
35891
36685
|
"deploymentCheck": {
|
|
35892
36686
|
"items": {
|
|
35893
36687
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -36188,6 +36982,12 @@
|
|
|
36188
36982
|
},
|
|
36189
36983
|
"type": "array"
|
|
36190
36984
|
},
|
|
36985
|
+
"projectOIDCToken": {
|
|
36986
|
+
"items": {
|
|
36987
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
36988
|
+
},
|
|
36989
|
+
"type": "array"
|
|
36990
|
+
},
|
|
36191
36991
|
"seawallConfig": {
|
|
36192
36992
|
"items": {
|
|
36193
36993
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -36230,31 +37030,31 @@
|
|
|
36230
37030
|
},
|
|
36231
37031
|
"type": "array"
|
|
36232
37032
|
},
|
|
36233
|
-
"
|
|
37033
|
+
"oauth2Connection": {
|
|
36234
37034
|
"items": {
|
|
36235
37035
|
"$ref": "#/components/schemas/ACLAction"
|
|
36236
37036
|
},
|
|
36237
37037
|
"type": "array"
|
|
36238
37038
|
},
|
|
36239
|
-
"
|
|
37039
|
+
"user": {
|
|
36240
37040
|
"items": {
|
|
36241
37041
|
"$ref": "#/components/schemas/ACLAction"
|
|
36242
37042
|
},
|
|
36243
37043
|
"type": "array"
|
|
36244
37044
|
},
|
|
36245
|
-
"
|
|
37045
|
+
"userConnection": {
|
|
36246
37046
|
"items": {
|
|
36247
37047
|
"$ref": "#/components/schemas/ACLAction"
|
|
36248
37048
|
},
|
|
36249
37049
|
"type": "array"
|
|
36250
37050
|
},
|
|
36251
|
-
"
|
|
37051
|
+
"userSudo": {
|
|
36252
37052
|
"items": {
|
|
36253
37053
|
"$ref": "#/components/schemas/ACLAction"
|
|
36254
37054
|
},
|
|
36255
37055
|
"type": "array"
|
|
36256
37056
|
},
|
|
36257
|
-
"
|
|
37057
|
+
"webAuthn": {
|
|
36258
37058
|
"items": {
|
|
36259
37059
|
"$ref": "#/components/schemas/ACLAction"
|
|
36260
37060
|
},
|
|
@@ -36332,6 +37132,12 @@
|
|
|
36332
37132
|
},
|
|
36333
37133
|
"type": "array"
|
|
36334
37134
|
},
|
|
37135
|
+
"billingRefund": {
|
|
37136
|
+
"items": {
|
|
37137
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
37138
|
+
},
|
|
37139
|
+
"type": "array"
|
|
37140
|
+
},
|
|
36335
37141
|
"billingTaxId": {
|
|
36336
37142
|
"items": {
|
|
36337
37143
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -36386,6 +37192,12 @@
|
|
|
36386
37192
|
},
|
|
36387
37193
|
"type": "array"
|
|
36388
37194
|
},
|
|
37195
|
+
"defaultDeploymentProtection": {
|
|
37196
|
+
"items": {
|
|
37197
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
37198
|
+
},
|
|
37199
|
+
"type": "array"
|
|
37200
|
+
},
|
|
36389
37201
|
"domain": {
|
|
36390
37202
|
"items": {
|
|
36391
37203
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -36578,6 +37390,12 @@
|
|
|
36578
37390
|
},
|
|
36579
37391
|
"type": "array"
|
|
36580
37392
|
},
|
|
37393
|
+
"marketplaceSettings": {
|
|
37394
|
+
"items": {
|
|
37395
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
37396
|
+
},
|
|
37397
|
+
"type": "array"
|
|
37398
|
+
},
|
|
36581
37399
|
"marketplaceExperimentationItem": {
|
|
36582
37400
|
"items": {
|
|
36583
37401
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -36734,6 +37552,12 @@
|
|
|
36734
37552
|
},
|
|
36735
37553
|
"type": "array"
|
|
36736
37554
|
},
|
|
37555
|
+
"observabilityFunnel": {
|
|
37556
|
+
"items": {
|
|
37557
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
37558
|
+
},
|
|
37559
|
+
"type": "array"
|
|
37560
|
+
},
|
|
36737
37561
|
"openTelemetryEndpoint": {
|
|
36738
37562
|
"items": {
|
|
36739
37563
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -37190,8 +38014,8 @@
|
|
|
37190
38014
|
"deploymentType": {
|
|
37191
38015
|
"type": "string",
|
|
37192
38016
|
"enum": [
|
|
37193
|
-
"production",
|
|
37194
38017
|
"preview",
|
|
38018
|
+
"production",
|
|
37195
38019
|
"all",
|
|
37196
38020
|
"prod_deployment_urls_and_all_previews",
|
|
37197
38021
|
"all_except_custom_domains"
|
|
@@ -37234,8 +38058,8 @@
|
|
|
37234
38058
|
"deploymentType": {
|
|
37235
38059
|
"type": "string",
|
|
37236
38060
|
"enum": [
|
|
37237
|
-
"production",
|
|
37238
38061
|
"preview",
|
|
38062
|
+
"production",
|
|
37239
38063
|
"all",
|
|
37240
38064
|
"prod_deployment_urls_and_all_previews",
|
|
37241
38065
|
"all_except_custom_domains"
|
|
@@ -37275,6 +38099,10 @@
|
|
|
37275
38099
|
"disabled"
|
|
37276
38100
|
],
|
|
37277
38101
|
"description": "Whether the Vercel bot should automatically create GitHub deployments https://docs.github.com/en/rest/deployments/deployments#about-deployments NOTE: repository-dispatch events should be used instead"
|
|
38102
|
+
},
|
|
38103
|
+
"disableRepositoryDispatchEvents": {
|
|
38104
|
+
"type": "boolean",
|
|
38105
|
+
"description": "Whether the Vercel bot should not automatically create GitHub repository-dispatch events on deployment events. https://vercel.com/docs/git/vercel-for-github#repository-dispatch-events"
|
|
37278
38106
|
}
|
|
37279
38107
|
},
|
|
37280
38108
|
"required": [
|
|
@@ -37745,6 +38573,9 @@
|
|
|
37745
38573
|
}
|
|
37746
38574
|
},
|
|
37747
38575
|
"type": "object"
|
|
38576
|
+
},
|
|
38577
|
+
"v0": {
|
|
38578
|
+
"type": "boolean"
|
|
37748
38579
|
}
|
|
37749
38580
|
},
|
|
37750
38581
|
"required": [
|
|
@@ -37789,6 +38620,9 @@
|
|
|
37789
38620
|
},
|
|
37790
38621
|
"409": {
|
|
37791
38622
|
"description": "A project with the provided name already exists."
|
|
38623
|
+
},
|
|
38624
|
+
"428": {
|
|
38625
|
+
"description": "Owner does not have protection add-on"
|
|
37792
38626
|
}
|
|
37793
38627
|
},
|
|
37794
38628
|
"parameters": [
|
|
@@ -37954,7 +38788,8 @@
|
|
|
37954
38788
|
"sanity-v3",
|
|
37955
38789
|
"sanity",
|
|
37956
38790
|
"storybook",
|
|
37957
|
-
"nitro"
|
|
38791
|
+
"nitro",
|
|
38792
|
+
"hono"
|
|
37958
38793
|
]
|
|
37959
38794
|
},
|
|
37960
38795
|
"gitRepository": {
|
|
@@ -37968,6 +38803,7 @@
|
|
|
37968
38803
|
"description": "The Git Provider of the repository",
|
|
37969
38804
|
"enum": [
|
|
37970
38805
|
"github",
|
|
38806
|
+
"github-limited",
|
|
37971
38807
|
"gitlab",
|
|
37972
38808
|
"bitbucket"
|
|
37973
38809
|
]
|
|
@@ -38277,8 +39113,8 @@
|
|
|
38277
39113
|
{
|
|
38278
39114
|
"type": "string",
|
|
38279
39115
|
"enum": [
|
|
38280
|
-
"
|
|
38281
|
-
"
|
|
39116
|
+
"preview",
|
|
39117
|
+
"production"
|
|
38282
39118
|
]
|
|
38283
39119
|
}
|
|
38284
39120
|
]
|
|
@@ -38286,6 +39122,9 @@
|
|
|
38286
39122
|
"connectConfigurationId": {
|
|
38287
39123
|
"type": "string"
|
|
38288
39124
|
},
|
|
39125
|
+
"dc": {
|
|
39126
|
+
"type": "string"
|
|
39127
|
+
},
|
|
38289
39128
|
"passive": {
|
|
38290
39129
|
"type": "boolean"
|
|
38291
39130
|
},
|
|
@@ -38880,8 +39719,8 @@
|
|
|
38880
39719
|
"type": {
|
|
38881
39720
|
"type": "string",
|
|
38882
39721
|
"enum": [
|
|
38883
|
-
"production",
|
|
38884
39722
|
"preview",
|
|
39723
|
+
"production",
|
|
38885
39724
|
"development"
|
|
38886
39725
|
],
|
|
38887
39726
|
"description": "The type of environment (production, preview, or development)"
|
|
@@ -39076,7 +39915,8 @@
|
|
|
39076
39915
|
"sanity-v3",
|
|
39077
39916
|
"sanity",
|
|
39078
39917
|
"storybook",
|
|
39079
|
-
"nitro"
|
|
39918
|
+
"nitro",
|
|
39919
|
+
"hono"
|
|
39080
39920
|
]
|
|
39081
39921
|
},
|
|
39082
39922
|
"gitForkProtection": {
|
|
@@ -39475,6 +40315,77 @@
|
|
|
39475
40315
|
],
|
|
39476
40316
|
"type": "object"
|
|
39477
40317
|
},
|
|
40318
|
+
{
|
|
40319
|
+
"properties": {
|
|
40320
|
+
"type": {
|
|
40321
|
+
"type": "string",
|
|
40322
|
+
"enum": [
|
|
40323
|
+
"github-limited"
|
|
40324
|
+
]
|
|
40325
|
+
},
|
|
40326
|
+
"repo": {
|
|
40327
|
+
"type": "string"
|
|
40328
|
+
},
|
|
40329
|
+
"repoId": {
|
|
40330
|
+
"type": "number"
|
|
40331
|
+
},
|
|
40332
|
+
"updatedAt": {
|
|
40333
|
+
"type": "number"
|
|
40334
|
+
},
|
|
40335
|
+
"createdAt": {
|
|
40336
|
+
"type": "number"
|
|
40337
|
+
},
|
|
40338
|
+
"org": {
|
|
40339
|
+
"type": "string"
|
|
40340
|
+
},
|
|
40341
|
+
"repoOwnerId": {
|
|
40342
|
+
"type": "number",
|
|
40343
|
+
"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."
|
|
40344
|
+
},
|
|
40345
|
+
"deployHooks": {
|
|
40346
|
+
"items": {
|
|
40347
|
+
"properties": {
|
|
40348
|
+
"createdAt": {
|
|
40349
|
+
"type": "number"
|
|
40350
|
+
},
|
|
40351
|
+
"id": {
|
|
40352
|
+
"type": "string"
|
|
40353
|
+
},
|
|
40354
|
+
"name": {
|
|
40355
|
+
"type": "string"
|
|
40356
|
+
},
|
|
40357
|
+
"ref": {
|
|
40358
|
+
"type": "string"
|
|
40359
|
+
},
|
|
40360
|
+
"url": {
|
|
40361
|
+
"type": "string"
|
|
40362
|
+
}
|
|
40363
|
+
},
|
|
40364
|
+
"required": [
|
|
40365
|
+
"id",
|
|
40366
|
+
"name",
|
|
40367
|
+
"ref",
|
|
40368
|
+
"url"
|
|
40369
|
+
],
|
|
40370
|
+
"type": "object"
|
|
40371
|
+
},
|
|
40372
|
+
"type": "array"
|
|
40373
|
+
},
|
|
40374
|
+
"gitCredentialId": {
|
|
40375
|
+
"type": "string"
|
|
40376
|
+
},
|
|
40377
|
+
"sourceless": {
|
|
40378
|
+
"type": "boolean"
|
|
40379
|
+
},
|
|
40380
|
+
"productionBranch": {
|
|
40381
|
+
"type": "string"
|
|
40382
|
+
}
|
|
40383
|
+
},
|
|
40384
|
+
"required": [
|
|
40385
|
+
"deployHooks"
|
|
40386
|
+
],
|
|
40387
|
+
"type": "object"
|
|
40388
|
+
},
|
|
39478
40389
|
{
|
|
39479
40390
|
"properties": {
|
|
39480
40391
|
"projectId": {
|
|
@@ -40354,31 +41265,31 @@
|
|
|
40354
41265
|
},
|
|
40355
41266
|
"permissions": {
|
|
40356
41267
|
"properties": {
|
|
40357
|
-
"
|
|
41268
|
+
"oauth2Connection": {
|
|
40358
41269
|
"items": {
|
|
40359
41270
|
"$ref": "#/components/schemas/ACLAction"
|
|
40360
41271
|
},
|
|
40361
41272
|
"type": "array"
|
|
40362
41273
|
},
|
|
40363
|
-
"
|
|
41274
|
+
"user": {
|
|
40364
41275
|
"items": {
|
|
40365
41276
|
"$ref": "#/components/schemas/ACLAction"
|
|
40366
41277
|
},
|
|
40367
41278
|
"type": "array"
|
|
40368
41279
|
},
|
|
40369
|
-
"
|
|
41280
|
+
"userConnection": {
|
|
40370
41281
|
"items": {
|
|
40371
41282
|
"$ref": "#/components/schemas/ACLAction"
|
|
40372
41283
|
},
|
|
40373
41284
|
"type": "array"
|
|
40374
41285
|
},
|
|
40375
|
-
"
|
|
41286
|
+
"userSudo": {
|
|
40376
41287
|
"items": {
|
|
40377
41288
|
"$ref": "#/components/schemas/ACLAction"
|
|
40378
41289
|
},
|
|
40379
41290
|
"type": "array"
|
|
40380
41291
|
},
|
|
40381
|
-
"
|
|
41292
|
+
"webAuthn": {
|
|
40382
41293
|
"items": {
|
|
40383
41294
|
"$ref": "#/components/schemas/ACLAction"
|
|
40384
41295
|
},
|
|
@@ -40456,6 +41367,12 @@
|
|
|
40456
41367
|
},
|
|
40457
41368
|
"type": "array"
|
|
40458
41369
|
},
|
|
41370
|
+
"billingRefund": {
|
|
41371
|
+
"items": {
|
|
41372
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
41373
|
+
},
|
|
41374
|
+
"type": "array"
|
|
41375
|
+
},
|
|
40459
41376
|
"billingTaxId": {
|
|
40460
41377
|
"items": {
|
|
40461
41378
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -40510,6 +41427,12 @@
|
|
|
40510
41427
|
},
|
|
40511
41428
|
"type": "array"
|
|
40512
41429
|
},
|
|
41430
|
+
"defaultDeploymentProtection": {
|
|
41431
|
+
"items": {
|
|
41432
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
41433
|
+
},
|
|
41434
|
+
"type": "array"
|
|
41435
|
+
},
|
|
40513
41436
|
"domain": {
|
|
40514
41437
|
"items": {
|
|
40515
41438
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -40702,6 +41625,12 @@
|
|
|
40702
41625
|
},
|
|
40703
41626
|
"type": "array"
|
|
40704
41627
|
},
|
|
41628
|
+
"marketplaceSettings": {
|
|
41629
|
+
"items": {
|
|
41630
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
41631
|
+
},
|
|
41632
|
+
"type": "array"
|
|
41633
|
+
},
|
|
40705
41634
|
"marketplaceExperimentationItem": {
|
|
40706
41635
|
"items": {
|
|
40707
41636
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -40858,6 +41787,12 @@
|
|
|
40858
41787
|
},
|
|
40859
41788
|
"type": "array"
|
|
40860
41789
|
},
|
|
41790
|
+
"observabilityFunnel": {
|
|
41791
|
+
"items": {
|
|
41792
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
41793
|
+
},
|
|
41794
|
+
"type": "array"
|
|
41795
|
+
},
|
|
40861
41796
|
"openTelemetryEndpoint": {
|
|
40862
41797
|
"items": {
|
|
40863
41798
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -41236,6 +42171,12 @@
|
|
|
41236
42171
|
},
|
|
41237
42172
|
"type": "array"
|
|
41238
42173
|
},
|
|
42174
|
+
"deploymentBuildLogs": {
|
|
42175
|
+
"items": {
|
|
42176
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
42177
|
+
},
|
|
42178
|
+
"type": "array"
|
|
42179
|
+
},
|
|
41239
42180
|
"deploymentCheck": {
|
|
41240
42181
|
"items": {
|
|
41241
42182
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -41536,6 +42477,12 @@
|
|
|
41536
42477
|
},
|
|
41537
42478
|
"type": "array"
|
|
41538
42479
|
},
|
|
42480
|
+
"projectOIDCToken": {
|
|
42481
|
+
"items": {
|
|
42482
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
42483
|
+
},
|
|
42484
|
+
"type": "array"
|
|
42485
|
+
},
|
|
41539
42486
|
"seawallConfig": {
|
|
41540
42487
|
"items": {
|
|
41541
42488
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -41698,8 +42645,8 @@
|
|
|
41698
42645
|
"deploymentType": {
|
|
41699
42646
|
"type": "string",
|
|
41700
42647
|
"enum": [
|
|
41701
|
-
"production",
|
|
41702
42648
|
"preview",
|
|
42649
|
+
"production",
|
|
41703
42650
|
"all",
|
|
41704
42651
|
"prod_deployment_urls_and_all_previews",
|
|
41705
42652
|
"all_except_custom_domains"
|
|
@@ -41742,8 +42689,8 @@
|
|
|
41742
42689
|
"deploymentType": {
|
|
41743
42690
|
"type": "string",
|
|
41744
42691
|
"enum": [
|
|
41745
|
-
"production",
|
|
41746
42692
|
"preview",
|
|
42693
|
+
"production",
|
|
41747
42694
|
"all",
|
|
41748
42695
|
"prod_deployment_urls_and_all_previews",
|
|
41749
42696
|
"all_except_custom_domains"
|
|
@@ -41783,6 +42730,10 @@
|
|
|
41783
42730
|
"disabled"
|
|
41784
42731
|
],
|
|
41785
42732
|
"description": "Whether the Vercel bot should automatically create GitHub deployments https://docs.github.com/en/rest/deployments/deployments#about-deployments NOTE: repository-dispatch events should be used instead"
|
|
42733
|
+
},
|
|
42734
|
+
"disableRepositoryDispatchEvents": {
|
|
42735
|
+
"type": "boolean",
|
|
42736
|
+
"description": "Whether the Vercel bot should not automatically create GitHub repository-dispatch events on deployment events. https://vercel.com/docs/git/vercel-for-github#repository-dispatch-events"
|
|
41786
42737
|
}
|
|
41787
42738
|
},
|
|
41788
42739
|
"required": [
|
|
@@ -42253,6 +43204,9 @@
|
|
|
42253
43204
|
}
|
|
42254
43205
|
},
|
|
42255
43206
|
"type": "object"
|
|
43207
|
+
},
|
|
43208
|
+
"v0": {
|
|
43209
|
+
"type": "boolean"
|
|
42256
43210
|
}
|
|
42257
43211
|
},
|
|
42258
43212
|
"required": [
|
|
@@ -42442,8 +43396,8 @@
|
|
|
42442
43396
|
{
|
|
42443
43397
|
"type": "string",
|
|
42444
43398
|
"enum": [
|
|
42445
|
-
"
|
|
42446
|
-
"
|
|
43399
|
+
"preview",
|
|
43400
|
+
"production"
|
|
42447
43401
|
]
|
|
42448
43402
|
}
|
|
42449
43403
|
]
|
|
@@ -42451,6 +43405,9 @@
|
|
|
42451
43405
|
"connectConfigurationId": {
|
|
42452
43406
|
"type": "string"
|
|
42453
43407
|
},
|
|
43408
|
+
"dc": {
|
|
43409
|
+
"type": "string"
|
|
43410
|
+
},
|
|
42454
43411
|
"passive": {
|
|
42455
43412
|
"type": "boolean"
|
|
42456
43413
|
},
|
|
@@ -43038,8 +43995,8 @@
|
|
|
43038
43995
|
"type": {
|
|
43039
43996
|
"type": "string",
|
|
43040
43997
|
"enum": [
|
|
43041
|
-
"production",
|
|
43042
43998
|
"preview",
|
|
43999
|
+
"production",
|
|
43043
44000
|
"development"
|
|
43044
44001
|
],
|
|
43045
44002
|
"description": "The type of environment (production, preview, or development)"
|
|
@@ -43234,7 +44191,8 @@
|
|
|
43234
44191
|
"sanity-v3",
|
|
43235
44192
|
"sanity",
|
|
43236
44193
|
"storybook",
|
|
43237
|
-
"nitro"
|
|
44194
|
+
"nitro",
|
|
44195
|
+
"hono"
|
|
43238
44196
|
]
|
|
43239
44197
|
},
|
|
43240
44198
|
"gitForkProtection": {
|
|
@@ -43635,33 +44593,104 @@
|
|
|
43635
44593
|
},
|
|
43636
44594
|
{
|
|
43637
44595
|
"properties": {
|
|
43638
|
-
"
|
|
43639
|
-
"type": "string"
|
|
44596
|
+
"type": {
|
|
44597
|
+
"type": "string",
|
|
44598
|
+
"enum": [
|
|
44599
|
+
"github-limited"
|
|
44600
|
+
]
|
|
43640
44601
|
},
|
|
43641
|
-
"
|
|
44602
|
+
"repo": {
|
|
43642
44603
|
"type": "string"
|
|
43643
44604
|
},
|
|
43644
|
-
"
|
|
43645
|
-
"type": "
|
|
44605
|
+
"repoId": {
|
|
44606
|
+
"type": "number"
|
|
43646
44607
|
},
|
|
43647
|
-
"
|
|
43648
|
-
"type": "
|
|
44608
|
+
"updatedAt": {
|
|
44609
|
+
"type": "number"
|
|
43649
44610
|
},
|
|
43650
|
-
"
|
|
43651
|
-
"type": "number"
|
|
43652
|
-
"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. This is the id of the top level group that a namespace belongs to. Gitlab supports group nesting (up to 20 levels)."
|
|
44611
|
+
"createdAt": {
|
|
44612
|
+
"type": "number"
|
|
43653
44613
|
},
|
|
43654
|
-
"
|
|
44614
|
+
"org": {
|
|
43655
44615
|
"type": "string"
|
|
43656
44616
|
},
|
|
43657
|
-
"
|
|
43658
|
-
"type": "
|
|
43659
|
-
"
|
|
43660
|
-
|
|
43661
|
-
|
|
43662
|
-
|
|
43663
|
-
|
|
43664
|
-
|
|
44617
|
+
"repoOwnerId": {
|
|
44618
|
+
"type": "number",
|
|
44619
|
+
"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."
|
|
44620
|
+
},
|
|
44621
|
+
"deployHooks": {
|
|
44622
|
+
"items": {
|
|
44623
|
+
"properties": {
|
|
44624
|
+
"createdAt": {
|
|
44625
|
+
"type": "number"
|
|
44626
|
+
},
|
|
44627
|
+
"id": {
|
|
44628
|
+
"type": "string"
|
|
44629
|
+
},
|
|
44630
|
+
"name": {
|
|
44631
|
+
"type": "string"
|
|
44632
|
+
},
|
|
44633
|
+
"ref": {
|
|
44634
|
+
"type": "string"
|
|
44635
|
+
},
|
|
44636
|
+
"url": {
|
|
44637
|
+
"type": "string"
|
|
44638
|
+
}
|
|
44639
|
+
},
|
|
44640
|
+
"required": [
|
|
44641
|
+
"id",
|
|
44642
|
+
"name",
|
|
44643
|
+
"ref",
|
|
44644
|
+
"url"
|
|
44645
|
+
],
|
|
44646
|
+
"type": "object"
|
|
44647
|
+
},
|
|
44648
|
+
"type": "array"
|
|
44649
|
+
},
|
|
44650
|
+
"gitCredentialId": {
|
|
44651
|
+
"type": "string"
|
|
44652
|
+
},
|
|
44653
|
+
"sourceless": {
|
|
44654
|
+
"type": "boolean"
|
|
44655
|
+
},
|
|
44656
|
+
"productionBranch": {
|
|
44657
|
+
"type": "string"
|
|
44658
|
+
}
|
|
44659
|
+
},
|
|
44660
|
+
"required": [
|
|
44661
|
+
"deployHooks"
|
|
44662
|
+
],
|
|
44663
|
+
"type": "object"
|
|
44664
|
+
},
|
|
44665
|
+
{
|
|
44666
|
+
"properties": {
|
|
44667
|
+
"projectId": {
|
|
44668
|
+
"type": "string"
|
|
44669
|
+
},
|
|
44670
|
+
"projectName": {
|
|
44671
|
+
"type": "string"
|
|
44672
|
+
},
|
|
44673
|
+
"projectNameWithNamespace": {
|
|
44674
|
+
"type": "string"
|
|
44675
|
+
},
|
|
44676
|
+
"projectNamespace": {
|
|
44677
|
+
"type": "string"
|
|
44678
|
+
},
|
|
44679
|
+
"projectOwnerId": {
|
|
44680
|
+
"type": "number",
|
|
44681
|
+
"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. This is the id of the top level group that a namespace belongs to. Gitlab supports group nesting (up to 20 levels)."
|
|
44682
|
+
},
|
|
44683
|
+
"projectUrl": {
|
|
44684
|
+
"type": "string"
|
|
44685
|
+
},
|
|
44686
|
+
"type": {
|
|
44687
|
+
"type": "string",
|
|
44688
|
+
"enum": [
|
|
44689
|
+
"gitlab"
|
|
44690
|
+
]
|
|
44691
|
+
},
|
|
44692
|
+
"createdAt": {
|
|
44693
|
+
"type": "number"
|
|
43665
44694
|
},
|
|
43666
44695
|
"deployHooks": {
|
|
43667
44696
|
"items": {
|
|
@@ -44554,6 +45583,12 @@
|
|
|
44554
45583
|
},
|
|
44555
45584
|
"type": "array"
|
|
44556
45585
|
},
|
|
45586
|
+
"deploymentBuildLogs": {
|
|
45587
|
+
"items": {
|
|
45588
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
45589
|
+
},
|
|
45590
|
+
"type": "array"
|
|
45591
|
+
},
|
|
44557
45592
|
"deploymentCheck": {
|
|
44558
45593
|
"items": {
|
|
44559
45594
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -44854,6 +45889,12 @@
|
|
|
44854
45889
|
},
|
|
44855
45890
|
"type": "array"
|
|
44856
45891
|
},
|
|
45892
|
+
"projectOIDCToken": {
|
|
45893
|
+
"items": {
|
|
45894
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
45895
|
+
},
|
|
45896
|
+
"type": "array"
|
|
45897
|
+
},
|
|
44857
45898
|
"seawallConfig": {
|
|
44858
45899
|
"items": {
|
|
44859
45900
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -44896,31 +45937,31 @@
|
|
|
44896
45937
|
},
|
|
44897
45938
|
"type": "array"
|
|
44898
45939
|
},
|
|
44899
|
-
"
|
|
45940
|
+
"oauth2Connection": {
|
|
44900
45941
|
"items": {
|
|
44901
45942
|
"$ref": "#/components/schemas/ACLAction"
|
|
44902
45943
|
},
|
|
44903
45944
|
"type": "array"
|
|
44904
45945
|
},
|
|
44905
|
-
"
|
|
45946
|
+
"user": {
|
|
44906
45947
|
"items": {
|
|
44907
45948
|
"$ref": "#/components/schemas/ACLAction"
|
|
44908
45949
|
},
|
|
44909
45950
|
"type": "array"
|
|
44910
45951
|
},
|
|
44911
|
-
"
|
|
45952
|
+
"userConnection": {
|
|
44912
45953
|
"items": {
|
|
44913
45954
|
"$ref": "#/components/schemas/ACLAction"
|
|
44914
45955
|
},
|
|
44915
45956
|
"type": "array"
|
|
44916
45957
|
},
|
|
44917
|
-
"
|
|
45958
|
+
"userSudo": {
|
|
44918
45959
|
"items": {
|
|
44919
45960
|
"$ref": "#/components/schemas/ACLAction"
|
|
44920
45961
|
},
|
|
44921
45962
|
"type": "array"
|
|
44922
45963
|
},
|
|
44923
|
-
"
|
|
45964
|
+
"webAuthn": {
|
|
44924
45965
|
"items": {
|
|
44925
45966
|
"$ref": "#/components/schemas/ACLAction"
|
|
44926
45967
|
},
|
|
@@ -44998,6 +46039,12 @@
|
|
|
44998
46039
|
},
|
|
44999
46040
|
"type": "array"
|
|
45000
46041
|
},
|
|
46042
|
+
"billingRefund": {
|
|
46043
|
+
"items": {
|
|
46044
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
46045
|
+
},
|
|
46046
|
+
"type": "array"
|
|
46047
|
+
},
|
|
45001
46048
|
"billingTaxId": {
|
|
45002
46049
|
"items": {
|
|
45003
46050
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -45052,6 +46099,12 @@
|
|
|
45052
46099
|
},
|
|
45053
46100
|
"type": "array"
|
|
45054
46101
|
},
|
|
46102
|
+
"defaultDeploymentProtection": {
|
|
46103
|
+
"items": {
|
|
46104
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
46105
|
+
},
|
|
46106
|
+
"type": "array"
|
|
46107
|
+
},
|
|
45055
46108
|
"domain": {
|
|
45056
46109
|
"items": {
|
|
45057
46110
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -45244,6 +46297,12 @@
|
|
|
45244
46297
|
},
|
|
45245
46298
|
"type": "array"
|
|
45246
46299
|
},
|
|
46300
|
+
"marketplaceSettings": {
|
|
46301
|
+
"items": {
|
|
46302
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
46303
|
+
},
|
|
46304
|
+
"type": "array"
|
|
46305
|
+
},
|
|
45247
46306
|
"marketplaceExperimentationItem": {
|
|
45248
46307
|
"items": {
|
|
45249
46308
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -45400,6 +46459,12 @@
|
|
|
45400
46459
|
},
|
|
45401
46460
|
"type": "array"
|
|
45402
46461
|
},
|
|
46462
|
+
"observabilityFunnel": {
|
|
46463
|
+
"items": {
|
|
46464
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
46465
|
+
},
|
|
46466
|
+
"type": "array"
|
|
46467
|
+
},
|
|
45403
46468
|
"openTelemetryEndpoint": {
|
|
45404
46469
|
"items": {
|
|
45405
46470
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -45856,8 +46921,8 @@
|
|
|
45856
46921
|
"deploymentType": {
|
|
45857
46922
|
"type": "string",
|
|
45858
46923
|
"enum": [
|
|
45859
|
-
"production",
|
|
45860
46924
|
"preview",
|
|
46925
|
+
"production",
|
|
45861
46926
|
"all",
|
|
45862
46927
|
"prod_deployment_urls_and_all_previews",
|
|
45863
46928
|
"all_except_custom_domains"
|
|
@@ -45900,8 +46965,8 @@
|
|
|
45900
46965
|
"deploymentType": {
|
|
45901
46966
|
"type": "string",
|
|
45902
46967
|
"enum": [
|
|
45903
|
-
"production",
|
|
45904
46968
|
"preview",
|
|
46969
|
+
"production",
|
|
45905
46970
|
"all",
|
|
45906
46971
|
"prod_deployment_urls_and_all_previews",
|
|
45907
46972
|
"all_except_custom_domains"
|
|
@@ -45941,6 +47006,10 @@
|
|
|
45941
47006
|
"disabled"
|
|
45942
47007
|
],
|
|
45943
47008
|
"description": "Whether the Vercel bot should automatically create GitHub deployments https://docs.github.com/en/rest/deployments/deployments#about-deployments NOTE: repository-dispatch events should be used instead"
|
|
47009
|
+
},
|
|
47010
|
+
"disableRepositoryDispatchEvents": {
|
|
47011
|
+
"type": "boolean",
|
|
47012
|
+
"description": "Whether the Vercel bot should not automatically create GitHub repository-dispatch events on deployment events. https://vercel.com/docs/git/vercel-for-github#repository-dispatch-events"
|
|
45944
47013
|
}
|
|
45945
47014
|
},
|
|
45946
47015
|
"required": [
|
|
@@ -46411,6 +47480,9 @@
|
|
|
46411
47480
|
}
|
|
46412
47481
|
},
|
|
46413
47482
|
"type": "object"
|
|
47483
|
+
},
|
|
47484
|
+
"v0": {
|
|
47485
|
+
"type": "boolean"
|
|
46414
47486
|
}
|
|
46415
47487
|
},
|
|
46416
47488
|
"required": [
|
|
@@ -46590,7 +47662,8 @@
|
|
|
46590
47662
|
"sanity-v3",
|
|
46591
47663
|
"sanity",
|
|
46592
47664
|
"storybook",
|
|
46593
|
-
"nitro"
|
|
47665
|
+
"nitro",
|
|
47666
|
+
"hono"
|
|
46594
47667
|
],
|
|
46595
47668
|
"type": "string",
|
|
46596
47669
|
"nullable": true
|
|
@@ -47059,8 +48132,8 @@
|
|
|
47059
48132
|
"type": {
|
|
47060
48133
|
"type": "string",
|
|
47061
48134
|
"enum": [
|
|
47062
|
-
"production",
|
|
47063
48135
|
"preview",
|
|
48136
|
+
"production",
|
|
47064
48137
|
"development"
|
|
47065
48138
|
],
|
|
47066
48139
|
"description": "The type of environment (production, preview, or development)"
|
|
@@ -47359,8 +48432,8 @@
|
|
|
47359
48432
|
"type": {
|
|
47360
48433
|
"type": "string",
|
|
47361
48434
|
"enum": [
|
|
47362
|
-
"production",
|
|
47363
48435
|
"preview",
|
|
48436
|
+
"production",
|
|
47364
48437
|
"development"
|
|
47365
48438
|
],
|
|
47366
48439
|
"description": "The type of environment (production, preview, or development)"
|
|
@@ -47611,8 +48684,8 @@
|
|
|
47611
48684
|
"type": {
|
|
47612
48685
|
"type": "string",
|
|
47613
48686
|
"enum": [
|
|
47614
|
-
"production",
|
|
47615
48687
|
"preview",
|
|
48688
|
+
"production",
|
|
47616
48689
|
"development"
|
|
47617
48690
|
],
|
|
47618
48691
|
"description": "The type of environment (production, preview, or development)"
|
|
@@ -47863,8 +48936,8 @@
|
|
|
47863
48936
|
"type": {
|
|
47864
48937
|
"type": "string",
|
|
47865
48938
|
"enum": [
|
|
47866
|
-
"production",
|
|
47867
48939
|
"preview",
|
|
48940
|
+
"production",
|
|
47868
48941
|
"development"
|
|
47869
48942
|
],
|
|
47870
48943
|
"description": "The type of environment (production, preview, or development)"
|
|
@@ -48156,8 +49229,8 @@
|
|
|
48156
49229
|
"type": {
|
|
48157
49230
|
"type": "string",
|
|
48158
49231
|
"enum": [
|
|
48159
|
-
"production",
|
|
48160
49232
|
"preview",
|
|
49233
|
+
"production",
|
|
48161
49234
|
"development"
|
|
48162
49235
|
],
|
|
48163
49236
|
"description": "The type of environment (production, preview, or development)"
|
|
@@ -57877,194 +58950,259 @@
|
|
|
57877
58950
|
"content": {
|
|
57878
58951
|
"application/json": {
|
|
57879
58952
|
"schema": {
|
|
57880
|
-
"
|
|
57881
|
-
|
|
57882
|
-
|
|
57883
|
-
|
|
57884
|
-
|
|
57885
|
-
"400": {
|
|
57886
|
-
"description": "One of the provided values in the request body is invalid.\nOne of the provided values in the request query is invalid.",
|
|
57887
|
-
"content": {
|
|
57888
|
-
"application/json": {
|
|
57889
|
-
"schema": {
|
|
57890
|
-
"$ref": "#/components/schemas/VercelBadRequestError"
|
|
57891
|
-
}
|
|
57892
|
-
}
|
|
57893
|
-
}
|
|
57894
|
-
},
|
|
57895
|
-
"401": {
|
|
57896
|
-
"description": "",
|
|
57897
|
-
"content": {
|
|
57898
|
-
"application/json": {
|
|
57899
|
-
"schema": {
|
|
57900
|
-
"$ref": "#/components/schemas/VercelForbiddenError"
|
|
57901
|
-
}
|
|
57902
|
-
}
|
|
57903
|
-
}
|
|
57904
|
-
},
|
|
57905
|
-
"403": {
|
|
57906
|
-
"description": "You do not have permission to access this resource."
|
|
57907
|
-
},
|
|
57908
|
-
"404": {
|
|
57909
|
-
"description": "",
|
|
57910
|
-
"content": {
|
|
57911
|
-
"application/json": {
|
|
57912
|
-
"schema": {
|
|
57913
|
-
"$ref": "#/components/schemas/VercelNotFoundError"
|
|
57914
|
-
}
|
|
57915
|
-
}
|
|
57916
|
-
}
|
|
57917
|
-
}
|
|
57918
|
-
},
|
|
57919
|
-
"parameters": [
|
|
57920
|
-
{
|
|
57921
|
-
"name": "code",
|
|
57922
|
-
"description": "The code of the project transfer request.",
|
|
57923
|
-
"in": "path",
|
|
57924
|
-
"required": true,
|
|
57925
|
-
"schema": {
|
|
57926
|
-
"type": "string",
|
|
57927
|
-
"description": "The code of the project transfer request."
|
|
57928
|
-
}
|
|
57929
|
-
},
|
|
57930
|
-
{
|
|
57931
|
-
"description": "The Team identifier to perform the request on behalf of.",
|
|
57932
|
-
"in": "query",
|
|
57933
|
-
"name": "teamId",
|
|
57934
|
-
"schema": {
|
|
57935
|
-
"type": "string",
|
|
57936
|
-
"example": "team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
57937
|
-
}
|
|
57938
|
-
},
|
|
57939
|
-
{
|
|
57940
|
-
"description": "The Team slug to perform the request on behalf of.",
|
|
57941
|
-
"in": "query",
|
|
57942
|
-
"name": "slug",
|
|
57943
|
-
"schema": {
|
|
57944
|
-
"type": "string",
|
|
57945
|
-
"example": "my-team-url-slug"
|
|
57946
|
-
}
|
|
57947
|
-
}
|
|
57948
|
-
],
|
|
57949
|
-
"requestBody": {
|
|
57950
|
-
"content": {
|
|
57951
|
-
"application/json": {
|
|
57952
|
-
"schema": {
|
|
57953
|
-
"type": "object",
|
|
57954
|
-
"additionalProperties": false,
|
|
57955
|
-
"properties": {
|
|
57956
|
-
"newProjectName": {
|
|
57957
|
-
"description": "The desired name for the project",
|
|
57958
|
-
"example": "a-project-name",
|
|
57959
|
-
"type": "string",
|
|
57960
|
-
"maxLength": 100
|
|
57961
|
-
},
|
|
57962
|
-
"paidFeatures": {
|
|
57963
|
-
"type": "object",
|
|
57964
|
-
"additionalProperties": false,
|
|
57965
|
-
"properties": {
|
|
57966
|
-
"concurrentBuilds": {
|
|
57967
|
-
"type": "integer",
|
|
57968
|
-
"nullable": true
|
|
57969
|
-
},
|
|
57970
|
-
"passwordProtection": {
|
|
57971
|
-
"type": "boolean",
|
|
57972
|
-
"nullable": true
|
|
57973
|
-
},
|
|
57974
|
-
"previewDeploymentSuffix": {
|
|
57975
|
-
"type": "boolean",
|
|
57976
|
-
"nullable": true
|
|
57977
|
-
}
|
|
57978
|
-
}
|
|
57979
|
-
}
|
|
57980
|
-
}
|
|
57981
|
-
}
|
|
57982
|
-
}
|
|
57983
|
-
}
|
|
57984
|
-
}
|
|
57985
|
-
}
|
|
57986
|
-
},
|
|
57987
|
-
"/v1/projects/{idOrName}/protection-bypass": {
|
|
57988
|
-
"patch": {
|
|
57989
|
-
"description": "Update the deployment protection automation bypass for a project",
|
|
57990
|
-
"operationId": "updateProjectProtectionBypass",
|
|
57991
|
-
"security": [
|
|
57992
|
-
{
|
|
57993
|
-
"bearerToken": []
|
|
57994
|
-
}
|
|
57995
|
-
],
|
|
57996
|
-
"summary": "Update Protection Bypass for Automation",
|
|
57997
|
-
"tags": [
|
|
57998
|
-
"projects"
|
|
57999
|
-
],
|
|
58000
|
-
"responses": {
|
|
58001
|
-
"200": {
|
|
58002
|
-
"description": "",
|
|
58003
|
-
"content": {
|
|
58004
|
-
"application/json": {
|
|
58005
|
-
"schema": {
|
|
58006
|
-
"properties": {
|
|
58007
|
-
"protectionBypass": {
|
|
58008
|
-
"additionalProperties": {
|
|
58009
|
-
"oneOf": [
|
|
58010
|
-
{
|
|
58953
|
+
"oneOf": [
|
|
58954
|
+
{
|
|
58955
|
+
"properties": {
|
|
58956
|
+
"partnerCalls": {
|
|
58957
|
+
"items": {
|
|
58011
58958
|
"properties": {
|
|
58012
|
-
"
|
|
58013
|
-
"type": "number"
|
|
58014
|
-
},
|
|
58015
|
-
"createdBy": {
|
|
58959
|
+
"installationId": {
|
|
58016
58960
|
"type": "string"
|
|
58017
58961
|
},
|
|
58018
|
-
"
|
|
58019
|
-
"
|
|
58020
|
-
|
|
58021
|
-
|
|
58022
|
-
|
|
58023
|
-
},
|
|
58024
|
-
"integrationId": {
|
|
58025
|
-
"type": "string"
|
|
58962
|
+
"resourceIds": {
|
|
58963
|
+
"items": {
|
|
58964
|
+
"type": "string"
|
|
58965
|
+
},
|
|
58966
|
+
"type": "array"
|
|
58026
58967
|
},
|
|
58027
|
-
"
|
|
58028
|
-
"
|
|
58968
|
+
"result": {
|
|
58969
|
+
"properties": {
|
|
58970
|
+
"status": {
|
|
58971
|
+
"type": "string",
|
|
58972
|
+
"enum": [
|
|
58973
|
+
"fulfilled",
|
|
58974
|
+
"errored"
|
|
58975
|
+
]
|
|
58976
|
+
},
|
|
58977
|
+
"error": {
|
|
58978
|
+
"type": "object"
|
|
58979
|
+
},
|
|
58980
|
+
"code": {
|
|
58981
|
+
"type": "string"
|
|
58982
|
+
}
|
|
58983
|
+
},
|
|
58984
|
+
"required": [
|
|
58985
|
+
"status"
|
|
58986
|
+
],
|
|
58987
|
+
"type": "object"
|
|
58029
58988
|
}
|
|
58030
58989
|
},
|
|
58031
58990
|
"required": [
|
|
58032
|
-
"
|
|
58033
|
-
"
|
|
58034
|
-
"
|
|
58035
|
-
"integrationId",
|
|
58036
|
-
"configurationId"
|
|
58991
|
+
"installationId",
|
|
58992
|
+
"resourceIds",
|
|
58993
|
+
"result"
|
|
58037
58994
|
],
|
|
58038
58995
|
"type": "object"
|
|
58039
58996
|
},
|
|
58040
|
-
|
|
58041
|
-
|
|
58042
|
-
|
|
58043
|
-
|
|
58044
|
-
},
|
|
58045
|
-
"createdBy": {
|
|
58046
|
-
"type": "string"
|
|
58047
|
-
},
|
|
58048
|
-
"scope": {
|
|
58049
|
-
"type": "string",
|
|
58050
|
-
"enum": [
|
|
58051
|
-
"automation-bypass"
|
|
58052
|
-
]
|
|
58053
|
-
}
|
|
58054
|
-
},
|
|
58055
|
-
"required": [
|
|
58056
|
-
"createdAt",
|
|
58057
|
-
"createdBy",
|
|
58058
|
-
"scope"
|
|
58059
|
-
],
|
|
58997
|
+
"type": "array"
|
|
58998
|
+
},
|
|
58999
|
+
"resourceTransferErrors": {
|
|
59000
|
+
"items": {
|
|
58060
59001
|
"type": "object"
|
|
58061
|
-
}
|
|
58062
|
-
|
|
59002
|
+
},
|
|
59003
|
+
"type": "array"
|
|
59004
|
+
}
|
|
58063
59005
|
},
|
|
59006
|
+
"required": [
|
|
59007
|
+
"partnerCalls",
|
|
59008
|
+
"resourceTransferErrors"
|
|
59009
|
+
],
|
|
59010
|
+
"type": "object"
|
|
59011
|
+
},
|
|
59012
|
+
{
|
|
58064
59013
|
"type": "object"
|
|
58065
59014
|
}
|
|
58066
|
-
|
|
58067
|
-
|
|
59015
|
+
]
|
|
59016
|
+
}
|
|
59017
|
+
}
|
|
59018
|
+
}
|
|
59019
|
+
},
|
|
59020
|
+
"400": {
|
|
59021
|
+
"description": "One of the provided values in the request body is invalid.\nOne of the provided values in the request query is invalid.",
|
|
59022
|
+
"content": {
|
|
59023
|
+
"application/json": {
|
|
59024
|
+
"schema": {
|
|
59025
|
+
"$ref": "#/components/schemas/VercelBadRequestError"
|
|
59026
|
+
}
|
|
59027
|
+
}
|
|
59028
|
+
}
|
|
59029
|
+
},
|
|
59030
|
+
"401": {
|
|
59031
|
+
"description": "",
|
|
59032
|
+
"content": {
|
|
59033
|
+
"application/json": {
|
|
59034
|
+
"schema": {
|
|
59035
|
+
"$ref": "#/components/schemas/VercelForbiddenError"
|
|
59036
|
+
}
|
|
59037
|
+
}
|
|
59038
|
+
}
|
|
59039
|
+
},
|
|
59040
|
+
"403": {
|
|
59041
|
+
"description": "You do not have permission to access this resource."
|
|
59042
|
+
},
|
|
59043
|
+
"404": {
|
|
59044
|
+
"description": "",
|
|
59045
|
+
"content": {
|
|
59046
|
+
"application/json": {
|
|
59047
|
+
"schema": {
|
|
59048
|
+
"$ref": "#/components/schemas/VercelNotFoundError"
|
|
59049
|
+
}
|
|
59050
|
+
}
|
|
59051
|
+
}
|
|
59052
|
+
},
|
|
59053
|
+
"422": {
|
|
59054
|
+
"description": ""
|
|
59055
|
+
}
|
|
59056
|
+
},
|
|
59057
|
+
"parameters": [
|
|
59058
|
+
{
|
|
59059
|
+
"name": "code",
|
|
59060
|
+
"description": "The code of the project transfer request.",
|
|
59061
|
+
"in": "path",
|
|
59062
|
+
"required": true,
|
|
59063
|
+
"schema": {
|
|
59064
|
+
"type": "string",
|
|
59065
|
+
"description": "The code of the project transfer request."
|
|
59066
|
+
}
|
|
59067
|
+
},
|
|
59068
|
+
{
|
|
59069
|
+
"description": "The Team identifier to perform the request on behalf of.",
|
|
59070
|
+
"in": "query",
|
|
59071
|
+
"name": "teamId",
|
|
59072
|
+
"schema": {
|
|
59073
|
+
"type": "string",
|
|
59074
|
+
"example": "team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
59075
|
+
}
|
|
59076
|
+
},
|
|
59077
|
+
{
|
|
59078
|
+
"description": "The Team slug to perform the request on behalf of.",
|
|
59079
|
+
"in": "query",
|
|
59080
|
+
"name": "slug",
|
|
59081
|
+
"schema": {
|
|
59082
|
+
"type": "string",
|
|
59083
|
+
"example": "my-team-url-slug"
|
|
59084
|
+
}
|
|
59085
|
+
}
|
|
59086
|
+
],
|
|
59087
|
+
"requestBody": {
|
|
59088
|
+
"content": {
|
|
59089
|
+
"application/json": {
|
|
59090
|
+
"schema": {
|
|
59091
|
+
"type": "object",
|
|
59092
|
+
"additionalProperties": false,
|
|
59093
|
+
"properties": {
|
|
59094
|
+
"newProjectName": {
|
|
59095
|
+
"description": "The desired name for the project",
|
|
59096
|
+
"example": "a-project-name",
|
|
59097
|
+
"type": "string",
|
|
59098
|
+
"maxLength": 100
|
|
59099
|
+
},
|
|
59100
|
+
"paidFeatures": {
|
|
59101
|
+
"type": "object",
|
|
59102
|
+
"additionalProperties": false,
|
|
59103
|
+
"properties": {
|
|
59104
|
+
"concurrentBuilds": {
|
|
59105
|
+
"type": "integer",
|
|
59106
|
+
"nullable": true
|
|
59107
|
+
},
|
|
59108
|
+
"passwordProtection": {
|
|
59109
|
+
"type": "boolean",
|
|
59110
|
+
"nullable": true
|
|
59111
|
+
},
|
|
59112
|
+
"previewDeploymentSuffix": {
|
|
59113
|
+
"type": "boolean",
|
|
59114
|
+
"nullable": true
|
|
59115
|
+
}
|
|
59116
|
+
}
|
|
59117
|
+
}
|
|
59118
|
+
}
|
|
59119
|
+
}
|
|
59120
|
+
}
|
|
59121
|
+
}
|
|
59122
|
+
}
|
|
59123
|
+
}
|
|
59124
|
+
},
|
|
59125
|
+
"/v1/projects/{idOrName}/protection-bypass": {
|
|
59126
|
+
"patch": {
|
|
59127
|
+
"description": "Update the deployment protection automation bypass for a project",
|
|
59128
|
+
"operationId": "updateProjectProtectionBypass",
|
|
59129
|
+
"security": [
|
|
59130
|
+
{
|
|
59131
|
+
"bearerToken": []
|
|
59132
|
+
}
|
|
59133
|
+
],
|
|
59134
|
+
"summary": "Update Protection Bypass for Automation",
|
|
59135
|
+
"tags": [
|
|
59136
|
+
"projects"
|
|
59137
|
+
],
|
|
59138
|
+
"responses": {
|
|
59139
|
+
"200": {
|
|
59140
|
+
"description": "",
|
|
59141
|
+
"content": {
|
|
59142
|
+
"application/json": {
|
|
59143
|
+
"schema": {
|
|
59144
|
+
"properties": {
|
|
59145
|
+
"protectionBypass": {
|
|
59146
|
+
"additionalProperties": {
|
|
59147
|
+
"oneOf": [
|
|
59148
|
+
{
|
|
59149
|
+
"properties": {
|
|
59150
|
+
"createdAt": {
|
|
59151
|
+
"type": "number"
|
|
59152
|
+
},
|
|
59153
|
+
"createdBy": {
|
|
59154
|
+
"type": "string"
|
|
59155
|
+
},
|
|
59156
|
+
"scope": {
|
|
59157
|
+
"type": "string",
|
|
59158
|
+
"enum": [
|
|
59159
|
+
"integration-automation-bypass"
|
|
59160
|
+
]
|
|
59161
|
+
},
|
|
59162
|
+
"integrationId": {
|
|
59163
|
+
"type": "string"
|
|
59164
|
+
},
|
|
59165
|
+
"configurationId": {
|
|
59166
|
+
"type": "string"
|
|
59167
|
+
}
|
|
59168
|
+
},
|
|
59169
|
+
"required": [
|
|
59170
|
+
"createdAt",
|
|
59171
|
+
"createdBy",
|
|
59172
|
+
"scope",
|
|
59173
|
+
"integrationId",
|
|
59174
|
+
"configurationId"
|
|
59175
|
+
],
|
|
59176
|
+
"type": "object"
|
|
59177
|
+
},
|
|
59178
|
+
{
|
|
59179
|
+
"properties": {
|
|
59180
|
+
"createdAt": {
|
|
59181
|
+
"type": "number"
|
|
59182
|
+
},
|
|
59183
|
+
"createdBy": {
|
|
59184
|
+
"type": "string"
|
|
59185
|
+
},
|
|
59186
|
+
"scope": {
|
|
59187
|
+
"type": "string",
|
|
59188
|
+
"enum": [
|
|
59189
|
+
"automation-bypass"
|
|
59190
|
+
]
|
|
59191
|
+
}
|
|
59192
|
+
},
|
|
59193
|
+
"required": [
|
|
59194
|
+
"createdAt",
|
|
59195
|
+
"createdBy",
|
|
59196
|
+
"scope"
|
|
59197
|
+
],
|
|
59198
|
+
"type": "object"
|
|
59199
|
+
}
|
|
59200
|
+
]
|
|
59201
|
+
},
|
|
59202
|
+
"type": "object"
|
|
59203
|
+
}
|
|
59204
|
+
},
|
|
59205
|
+
"type": "object"
|
|
58068
59206
|
}
|
|
58069
59207
|
}
|
|
58070
59208
|
}
|
|
@@ -61844,150 +62982,91 @@
|
|
|
61844
62982
|
"content": {
|
|
61845
62983
|
"application/json": {
|
|
61846
62984
|
"schema": {
|
|
61847
|
-
"
|
|
61848
|
-
{
|
|
61849
|
-
"
|
|
61850
|
-
"
|
|
61851
|
-
"
|
|
61852
|
-
"
|
|
61853
|
-
"OwnerId": {
|
|
61854
|
-
"type": "string"
|
|
61855
|
-
},
|
|
61856
|
-
"Id": {
|
|
61857
|
-
"type": "string"
|
|
61858
|
-
},
|
|
61859
|
-
"Domain": {
|
|
61860
|
-
"type": "string"
|
|
61861
|
-
},
|
|
61862
|
-
"Ip": {
|
|
61863
|
-
"type": "string"
|
|
61864
|
-
},
|
|
61865
|
-
"Action": {
|
|
61866
|
-
"type": "string",
|
|
61867
|
-
"enum": [
|
|
61868
|
-
"block",
|
|
61869
|
-
"bypass"
|
|
61870
|
-
]
|
|
61871
|
-
},
|
|
61872
|
-
"ProjectId": {
|
|
61873
|
-
"type": "string"
|
|
61874
|
-
},
|
|
61875
|
-
"IsProjectRule": {
|
|
61876
|
-
"type": "boolean"
|
|
61877
|
-
},
|
|
61878
|
-
"Note": {
|
|
61879
|
-
"type": "string"
|
|
61880
|
-
},
|
|
61881
|
-
"CreatedAt": {
|
|
61882
|
-
"type": "string"
|
|
61883
|
-
},
|
|
61884
|
-
"ActorId": {
|
|
61885
|
-
"type": "string"
|
|
61886
|
-
},
|
|
61887
|
-
"UpdatedAt": {
|
|
61888
|
-
"type": "string"
|
|
61889
|
-
},
|
|
61890
|
-
"UpdatedAtHour": {
|
|
61891
|
-
"type": "string"
|
|
61892
|
-
},
|
|
61893
|
-
"DeletedAt": {
|
|
61894
|
-
"type": "string"
|
|
61895
|
-
},
|
|
61896
|
-
"ExpiresAt": {
|
|
61897
|
-
"nullable": true,
|
|
61898
|
-
"type": "number"
|
|
61899
|
-
}
|
|
61900
|
-
},
|
|
61901
|
-
"type": "object"
|
|
62985
|
+
"properties": {
|
|
62986
|
+
"result": {
|
|
62987
|
+
"items": {
|
|
62988
|
+
"properties": {
|
|
62989
|
+
"OwnerId": {
|
|
62990
|
+
"type": "string"
|
|
61902
62991
|
},
|
|
61903
|
-
"
|
|
62992
|
+
"Id": {
|
|
62993
|
+
"type": "string"
|
|
62994
|
+
},
|
|
62995
|
+
"Domain": {
|
|
62996
|
+
"type": "string"
|
|
62997
|
+
},
|
|
62998
|
+
"Ip": {
|
|
62999
|
+
"type": "string"
|
|
63000
|
+
},
|
|
63001
|
+
"Action": {
|
|
63002
|
+
"type": "string",
|
|
63003
|
+
"enum": [
|
|
63004
|
+
"block",
|
|
63005
|
+
"bypass"
|
|
63006
|
+
]
|
|
63007
|
+
},
|
|
63008
|
+
"ProjectId": {
|
|
63009
|
+
"type": "string"
|
|
63010
|
+
},
|
|
63011
|
+
"IsProjectRule": {
|
|
63012
|
+
"type": "boolean"
|
|
63013
|
+
},
|
|
63014
|
+
"Note": {
|
|
63015
|
+
"type": "string"
|
|
63016
|
+
},
|
|
63017
|
+
"CreatedAt": {
|
|
63018
|
+
"type": "string"
|
|
63019
|
+
},
|
|
63020
|
+
"ActorId": {
|
|
63021
|
+
"type": "string"
|
|
63022
|
+
},
|
|
63023
|
+
"UpdatedAt": {
|
|
63024
|
+
"type": "string"
|
|
63025
|
+
},
|
|
63026
|
+
"UpdatedAtHour": {
|
|
63027
|
+
"type": "string"
|
|
63028
|
+
},
|
|
63029
|
+
"DeletedAt": {
|
|
63030
|
+
"type": "string"
|
|
63031
|
+
},
|
|
63032
|
+
"ExpiresAt": {
|
|
63033
|
+
"nullable": true,
|
|
63034
|
+
"type": "number"
|
|
63035
|
+
}
|
|
61904
63036
|
},
|
|
61905
|
-
"
|
|
61906
|
-
"
|
|
61907
|
-
|
|
63037
|
+
"required": [
|
|
63038
|
+
"OwnerId",
|
|
63039
|
+
"Id",
|
|
63040
|
+
"Domain",
|
|
63041
|
+
"Ip",
|
|
63042
|
+
"CreatedAt",
|
|
63043
|
+
"UpdatedAt",
|
|
63044
|
+
"UpdatedAtHour"
|
|
63045
|
+
],
|
|
63046
|
+
"type": "object"
|
|
61908
63047
|
},
|
|
61909
|
-
"
|
|
61910
|
-
"result",
|
|
61911
|
-
"pagination"
|
|
61912
|
-
],
|
|
61913
|
-
"type": "object"
|
|
63048
|
+
"type": "array"
|
|
61914
63049
|
},
|
|
61915
|
-
{
|
|
63050
|
+
"pagination": {
|
|
61916
63051
|
"properties": {
|
|
61917
|
-
"
|
|
61918
|
-
"
|
|
61919
|
-
"properties": {
|
|
61920
|
-
"OwnerId": {
|
|
61921
|
-
"type": "string"
|
|
61922
|
-
},
|
|
61923
|
-
"Id": {
|
|
61924
|
-
"type": "string"
|
|
61925
|
-
},
|
|
61926
|
-
"Domain": {
|
|
61927
|
-
"type": "string"
|
|
61928
|
-
},
|
|
61929
|
-
"Ip": {
|
|
61930
|
-
"type": "string"
|
|
61931
|
-
},
|
|
61932
|
-
"Action": {
|
|
61933
|
-
"type": "string",
|
|
61934
|
-
"enum": [
|
|
61935
|
-
"block",
|
|
61936
|
-
"bypass"
|
|
61937
|
-
]
|
|
61938
|
-
},
|
|
61939
|
-
"ProjectId": {
|
|
61940
|
-
"type": "string"
|
|
61941
|
-
},
|
|
61942
|
-
"IsProjectRule": {
|
|
61943
|
-
"type": "boolean"
|
|
61944
|
-
},
|
|
61945
|
-
"Note": {
|
|
61946
|
-
"type": "string"
|
|
61947
|
-
},
|
|
61948
|
-
"CreatedAt": {
|
|
61949
|
-
"type": "string"
|
|
61950
|
-
},
|
|
61951
|
-
"ActorId": {
|
|
61952
|
-
"type": "string"
|
|
61953
|
-
},
|
|
61954
|
-
"UpdatedAt": {
|
|
61955
|
-
"type": "string"
|
|
61956
|
-
},
|
|
61957
|
-
"UpdatedAtHour": {
|
|
61958
|
-
"type": "string"
|
|
61959
|
-
},
|
|
61960
|
-
"DeletedAt": {
|
|
61961
|
-
"type": "string"
|
|
61962
|
-
},
|
|
61963
|
-
"ExpiresAt": {
|
|
61964
|
-
"nullable": true,
|
|
61965
|
-
"type": "number"
|
|
61966
|
-
}
|
|
61967
|
-
},
|
|
61968
|
-
"type": "object"
|
|
61969
|
-
},
|
|
61970
|
-
"type": "array"
|
|
63052
|
+
"OwnerId": {
|
|
63053
|
+
"type": "string"
|
|
61971
63054
|
},
|
|
61972
|
-
"
|
|
61973
|
-
"
|
|
61974
|
-
"OwnerId": {
|
|
61975
|
-
"type": "string"
|
|
61976
|
-
},
|
|
61977
|
-
"Id": {
|
|
61978
|
-
"type": "string"
|
|
61979
|
-
}
|
|
61980
|
-
},
|
|
61981
|
-
"required": [
|
|
61982
|
-
"OwnerId",
|
|
61983
|
-
"Id"
|
|
61984
|
-
],
|
|
61985
|
-
"type": "object"
|
|
63055
|
+
"Id": {
|
|
63056
|
+
"type": "string"
|
|
61986
63057
|
}
|
|
61987
63058
|
},
|
|
63059
|
+
"required": [
|
|
63060
|
+
"OwnerId",
|
|
63061
|
+
"Id"
|
|
63062
|
+
],
|
|
61988
63063
|
"type": "object"
|
|
61989
63064
|
}
|
|
61990
|
-
|
|
63065
|
+
},
|
|
63066
|
+
"required": [
|
|
63067
|
+
"result"
|
|
63068
|
+
],
|
|
63069
|
+
"type": "object"
|
|
61991
63070
|
}
|
|
61992
63071
|
}
|
|
61993
63072
|
}
|
|
@@ -62045,7 +63124,7 @@
|
|
|
62045
63124
|
"schema": {
|
|
62046
63125
|
"type": "number",
|
|
62047
63126
|
"example": 10,
|
|
62048
|
-
"maximum":
|
|
63127
|
+
"maximum": 256
|
|
62049
63128
|
}
|
|
62050
63129
|
},
|
|
62051
63130
|
{
|
|
@@ -62591,7 +63670,8 @@
|
|
|
62591
63670
|
"VIEWER",
|
|
62592
63671
|
"BILLING",
|
|
62593
63672
|
"CONTRIBUTOR",
|
|
62594
|
-
"SECURITY"
|
|
63673
|
+
"SECURITY",
|
|
63674
|
+
"VIEWER_FOR_PLUS"
|
|
62595
63675
|
],
|
|
62596
63676
|
"description": "Role of this user in the team.",
|
|
62597
63677
|
"example": "OWNER"
|
|
@@ -62744,7 +63824,8 @@
|
|
|
62744
63824
|
"VIEWER",
|
|
62745
63825
|
"BILLING",
|
|
62746
63826
|
"CONTRIBUTOR",
|
|
62747
|
-
"SECURITY"
|
|
63827
|
+
"SECURITY",
|
|
63828
|
+
"VIEWER_FOR_PLUS"
|
|
62748
63829
|
]
|
|
62749
63830
|
},
|
|
62750
63831
|
"isDSyncUser": {
|
|
@@ -62991,6 +64072,7 @@
|
|
|
62991
64072
|
"SECURITY",
|
|
62992
64073
|
"BILLING",
|
|
62993
64074
|
"VIEWER",
|
|
64075
|
+
"VIEWER_FOR_PLUS",
|
|
62994
64076
|
"CONTRIBUTOR"
|
|
62995
64077
|
],
|
|
62996
64078
|
"description": "The role used for the invitation",
|
|
@@ -63006,6 +64088,7 @@
|
|
|
63006
64088
|
"SECURITY",
|
|
63007
64089
|
"BILLING",
|
|
63008
64090
|
"VIEWER",
|
|
64091
|
+
"VIEWER_FOR_PLUS",
|
|
63009
64092
|
"CONTRIBUTOR"
|
|
63010
64093
|
],
|
|
63011
64094
|
"description": "The team roles of the user",
|
|
@@ -63027,7 +64110,10 @@
|
|
|
63027
64110
|
"FullProductionDeployment",
|
|
63028
64111
|
"UsageViewer",
|
|
63029
64112
|
"EnvVariableManager",
|
|
63030
|
-
"EnvironmentManager"
|
|
64113
|
+
"EnvironmentManager",
|
|
64114
|
+
"V0Builder",
|
|
64115
|
+
"V0Chatter",
|
|
64116
|
+
"V0Viewer"
|
|
63031
64117
|
],
|
|
63032
64118
|
"description": "The team permissions of the user",
|
|
63033
64119
|
"example": [
|
|
@@ -63066,6 +64152,7 @@
|
|
|
63066
64152
|
"SECURITY",
|
|
63067
64153
|
"BILLING",
|
|
63068
64154
|
"VIEWER",
|
|
64155
|
+
"VIEWER_FOR_PLUS",
|
|
63069
64156
|
"CONTRIBUTOR"
|
|
63070
64157
|
]
|
|
63071
64158
|
},
|
|
@@ -63079,6 +64166,7 @@
|
|
|
63079
64166
|
"SECURITY",
|
|
63080
64167
|
"BILLING",
|
|
63081
64168
|
"VIEWER",
|
|
64169
|
+
"VIEWER_FOR_PLUS",
|
|
63082
64170
|
"CONTRIBUTOR"
|
|
63083
64171
|
]
|
|
63084
64172
|
},
|
|
@@ -63092,7 +64180,10 @@
|
|
|
63092
64180
|
"FullProductionDeployment",
|
|
63093
64181
|
"UsageViewer",
|
|
63094
64182
|
"EnvVariableManager",
|
|
63095
|
-
"EnvironmentManager"
|
|
64183
|
+
"EnvironmentManager",
|
|
64184
|
+
"V0Builder",
|
|
64185
|
+
"V0Chatter",
|
|
64186
|
+
"V0Viewer"
|
|
63096
64187
|
]
|
|
63097
64188
|
},
|
|
63098
64189
|
"type": "array"
|
|
@@ -63175,6 +64266,7 @@
|
|
|
63175
64266
|
"SECURITY",
|
|
63176
64267
|
"BILLING",
|
|
63177
64268
|
"VIEWER",
|
|
64269
|
+
"VIEWER_FOR_PLUS",
|
|
63178
64270
|
"CONTRIBUTOR"
|
|
63179
64271
|
],
|
|
63180
64272
|
"description": "The role of the user to invite",
|
|
@@ -63185,6 +64277,7 @@
|
|
|
63185
64277
|
"SECURITY",
|
|
63186
64278
|
"BILLING",
|
|
63187
64279
|
"VIEWER",
|
|
64280
|
+
"VIEWER_FOR_PLUS",
|
|
63188
64281
|
"CONTRIBUTOR"
|
|
63189
64282
|
],
|
|
63190
64283
|
"default": "MEMBER"
|
|
@@ -64206,6 +65299,9 @@
|
|
|
64206
65299
|
},
|
|
64207
65300
|
"403": {
|
|
64208
65301
|
"description": "You do not have permission to access this resource.\nNot authorized to update the team. Must be an OWNER."
|
|
65302
|
+
},
|
|
65303
|
+
"428": {
|
|
65304
|
+
"description": "Owner does not have protection add-on\nAdvanced Deployment Protection is not available for the user plan"
|
|
64209
65305
|
}
|
|
64210
65306
|
},
|
|
64211
65307
|
"parameters": [
|
|
@@ -64294,6 +65390,7 @@
|
|
|
64294
65390
|
"SECURITY",
|
|
64295
65391
|
"BILLING",
|
|
64296
65392
|
"VIEWER",
|
|
65393
|
+
"VIEWER_FOR_PLUS",
|
|
64297
65394
|
"CONTRIBUTOR"
|
|
64298
65395
|
]
|
|
64299
65396
|
},
|
|
@@ -64356,6 +65453,62 @@
|
|
|
64356
65453
|
"type": "boolean",
|
|
64357
65454
|
"example": false,
|
|
64358
65455
|
"description": "Display or hide IP addresses in Log Drains."
|
|
65456
|
+
},
|
|
65457
|
+
"defaultDeploymentProtection": {
|
|
65458
|
+
"type": "object",
|
|
65459
|
+
"description": "Default deployment protection settings for new projects.",
|
|
65460
|
+
"additionalProperties": false,
|
|
65461
|
+
"properties": {
|
|
65462
|
+
"passwordProtection": {
|
|
65463
|
+
"additionalProperties": false,
|
|
65464
|
+
"description": "Allows to protect project deployments with a password",
|
|
65465
|
+
"properties": {
|
|
65466
|
+
"deploymentType": {
|
|
65467
|
+
"description": "Specify if the password will apply to every Deployment Target or just Preview",
|
|
65468
|
+
"enum": [
|
|
65469
|
+
"all",
|
|
65470
|
+
"preview",
|
|
65471
|
+
"prod_deployment_urls_and_all_previews",
|
|
65472
|
+
"all_except_custom_domains"
|
|
65473
|
+
],
|
|
65474
|
+
"type": "string"
|
|
65475
|
+
},
|
|
65476
|
+
"password": {
|
|
65477
|
+
"description": "The password that will be used to protect Project Deployments",
|
|
65478
|
+
"maxLength": 72,
|
|
65479
|
+
"type": "string",
|
|
65480
|
+
"nullable": true
|
|
65481
|
+
}
|
|
65482
|
+
},
|
|
65483
|
+
"required": [
|
|
65484
|
+
"deploymentType"
|
|
65485
|
+
],
|
|
65486
|
+
"type": "object",
|
|
65487
|
+
"nullable": true
|
|
65488
|
+
},
|
|
65489
|
+
"ssoProtection": {
|
|
65490
|
+
"additionalProperties": false,
|
|
65491
|
+
"description": "Ensures visitors to your Preview Deployments are logged into Vercel and have a minimum of Viewer access on your team",
|
|
65492
|
+
"properties": {
|
|
65493
|
+
"deploymentType": {
|
|
65494
|
+
"default": "preview",
|
|
65495
|
+
"description": "Specify if the Vercel Authentication (SSO Protection) will apply to every Deployment Target or just Preview",
|
|
65496
|
+
"enum": [
|
|
65497
|
+
"all",
|
|
65498
|
+
"preview",
|
|
65499
|
+
"prod_deployment_urls_and_all_previews",
|
|
65500
|
+
"all_except_custom_domains"
|
|
65501
|
+
],
|
|
65502
|
+
"type": "string"
|
|
65503
|
+
}
|
|
65504
|
+
},
|
|
65505
|
+
"required": [
|
|
65506
|
+
"deploymentType"
|
|
65507
|
+
],
|
|
65508
|
+
"type": "object",
|
|
65509
|
+
"nullable": true
|
|
65510
|
+
}
|
|
65511
|
+
}
|
|
64359
65512
|
}
|
|
64360
65513
|
}
|
|
64361
65514
|
}
|
|
@@ -65583,6 +66736,8 @@
|
|
|
65583
66736
|
"project.rolling-release.aborted",
|
|
65584
66737
|
"project.rolling-release.completed",
|
|
65585
66738
|
"project.rolling-release.approved",
|
|
66739
|
+
"deployment.checks.failed",
|
|
66740
|
+
"deployment.checks.succeeded",
|
|
65586
66741
|
"deployment-checks-completed",
|
|
65587
66742
|
"deployment-ready",
|
|
65588
66743
|
"deployment-prepared",
|
|
@@ -65654,6 +66809,8 @@
|
|
|
65654
66809
|
"project.rolling-release.aborted",
|
|
65655
66810
|
"project.rolling-release.completed",
|
|
65656
66811
|
"project.rolling-release.approved",
|
|
66812
|
+
"deployment-checks-failed",
|
|
66813
|
+
"deployment-checks-succeeded",
|
|
65657
66814
|
"deployment-checks-completed",
|
|
65658
66815
|
"deployment-ready-legacy",
|
|
65659
66816
|
"deployment-prepared",
|
|
@@ -65843,6 +67000,8 @@
|
|
|
65843
67000
|
"project.rolling-release.aborted",
|
|
65844
67001
|
"project.rolling-release.completed",
|
|
65845
67002
|
"project.rolling-release.approved",
|
|
67003
|
+
"deployment.checks.failed",
|
|
67004
|
+
"deployment.checks.succeeded",
|
|
65846
67005
|
"deployment-checks-completed",
|
|
65847
67006
|
"deployment-ready",
|
|
65848
67007
|
"deployment-prepared",
|
|
@@ -65912,6 +67071,8 @@
|
|
|
65912
67071
|
"project.rolling-release.aborted",
|
|
65913
67072
|
"project.rolling-release.completed",
|
|
65914
67073
|
"project.rolling-release.approved",
|
|
67074
|
+
"deployment-checks-failed",
|
|
67075
|
+
"deployment-checks-succeeded",
|
|
65915
67076
|
"deployment-checks-completed",
|
|
65916
67077
|
"deployment-ready-legacy",
|
|
65917
67078
|
"deployment-prepared",
|
|
@@ -66032,7 +67193,8 @@
|
|
|
66032
67193
|
"sanity-v3",
|
|
66033
67194
|
"sanity",
|
|
66034
67195
|
"storybook",
|
|
66035
|
-
"nitro"
|
|
67196
|
+
"nitro",
|
|
67197
|
+
"hono"
|
|
66036
67198
|
]
|
|
66037
67199
|
},
|
|
66038
67200
|
"latestDeployment": {
|
|
@@ -66099,6 +67261,8 @@
|
|
|
66099
67261
|
"project.rolling-release.aborted",
|
|
66100
67262
|
"project.rolling-release.completed",
|
|
66101
67263
|
"project.rolling-release.approved",
|
|
67264
|
+
"deployment.checks.failed",
|
|
67265
|
+
"deployment.checks.succeeded",
|
|
66102
67266
|
"deployment-checks-completed",
|
|
66103
67267
|
"deployment-ready",
|
|
66104
67268
|
"deployment-prepared",
|
|
@@ -66170,6 +67334,8 @@
|
|
|
66170
67334
|
"project.rolling-release.aborted",
|
|
66171
67335
|
"project.rolling-release.completed",
|
|
66172
67336
|
"project.rolling-release.approved",
|
|
67337
|
+
"deployment-checks-failed",
|
|
67338
|
+
"deployment-checks-succeeded",
|
|
66173
67339
|
"deployment-checks-completed",
|
|
66174
67340
|
"deployment-ready-legacy",
|
|
66175
67341
|
"deployment-prepared",
|
|
@@ -66299,6 +67465,8 @@
|
|
|
66299
67465
|
"project.rolling-release.aborted",
|
|
66300
67466
|
"project.rolling-release.completed",
|
|
66301
67467
|
"project.rolling-release.approved",
|
|
67468
|
+
"deployment.checks.failed",
|
|
67469
|
+
"deployment.checks.succeeded",
|
|
66302
67470
|
"deployment-checks-completed",
|
|
66303
67471
|
"deployment-ready",
|
|
66304
67472
|
"deployment-prepared",
|
|
@@ -66370,6 +67538,8 @@
|
|
|
66370
67538
|
"project.rolling-release.aborted",
|
|
66371
67539
|
"project.rolling-release.completed",
|
|
66372
67540
|
"project.rolling-release.approved",
|
|
67541
|
+
"deployment-checks-failed",
|
|
67542
|
+
"deployment-checks-succeeded",
|
|
66373
67543
|
"deployment-checks-completed",
|
|
66374
67544
|
"deployment-ready-legacy",
|
|
66375
67545
|
"deployment-prepared",
|
|
@@ -66574,6 +67744,8 @@
|
|
|
66574
67744
|
"project.rolling-release.aborted",
|
|
66575
67745
|
"project.rolling-release.completed",
|
|
66576
67746
|
"project.rolling-release.approved",
|
|
67747
|
+
"deployment.checks.failed",
|
|
67748
|
+
"deployment.checks.succeeded",
|
|
66577
67749
|
"deployment-checks-completed",
|
|
66578
67750
|
"deployment-ready",
|
|
66579
67751
|
"deployment-prepared",
|
|
@@ -66645,6 +67817,8 @@
|
|
|
66645
67817
|
"project.rolling-release.aborted",
|
|
66646
67818
|
"project.rolling-release.completed",
|
|
66647
67819
|
"project.rolling-release.approved",
|
|
67820
|
+
"deployment-checks-failed",
|
|
67821
|
+
"deployment-checks-succeeded",
|
|
66648
67822
|
"deployment-checks-completed",
|
|
66649
67823
|
"deployment-ready-legacy",
|
|
66650
67824
|
"deployment-prepared",
|
|
@@ -67504,34 +68678,93 @@
|
|
|
67504
68678
|
"type": "object"
|
|
67505
68679
|
},
|
|
67506
68680
|
"applications": {
|
|
67507
|
-
"
|
|
67508
|
-
|
|
67509
|
-
"
|
|
67510
|
-
"
|
|
67511
|
-
|
|
67512
|
-
|
|
67513
|
-
|
|
67514
|
-
|
|
67515
|
-
|
|
68681
|
+
"oneOf": [
|
|
68682
|
+
{
|
|
68683
|
+
"items": {
|
|
68684
|
+
"properties": {
|
|
68685
|
+
"fallbackHost": {
|
|
68686
|
+
"type": "string",
|
|
68687
|
+
"description": "This is always set. In production it is used as a pointer to each apps production deployment. For pre-production, it's used as the fallback if there is no deployment for the branch."
|
|
68688
|
+
},
|
|
68689
|
+
"projectId": {
|
|
68690
|
+
"type": "string",
|
|
68691
|
+
"description": "The project ID of the microfrontends application."
|
|
68692
|
+
}
|
|
68693
|
+
},
|
|
68694
|
+
"required": [
|
|
68695
|
+
"fallbackHost",
|
|
68696
|
+
"projectId"
|
|
68697
|
+
],
|
|
68698
|
+
"type": "object",
|
|
68699
|
+
"description": "A list of the deployment routing information for each project."
|
|
67516
68700
|
},
|
|
67517
|
-
"
|
|
67518
|
-
|
|
67519
|
-
|
|
68701
|
+
"type": "array",
|
|
68702
|
+
"description": "A list of the deployment routing information for each project."
|
|
68703
|
+
},
|
|
68704
|
+
{
|
|
68705
|
+
"items": {
|
|
68706
|
+
"properties": {
|
|
68707
|
+
"fallbackHost": {
|
|
68708
|
+
"type": "string",
|
|
68709
|
+
"description": "This is always set. For branch aliases, it's used as the fallback if there is no deployment for the branch."
|
|
68710
|
+
},
|
|
68711
|
+
"branchAlias": {
|
|
68712
|
+
"type": "string",
|
|
68713
|
+
"description": "Could point to a branch without a deployment if the project was never deployed. The proxy will fallback to the fallbackHost if there is no deployment."
|
|
68714
|
+
},
|
|
68715
|
+
"projectId": {
|
|
68716
|
+
"type": "string",
|
|
68717
|
+
"description": "The project ID of the microfrontends application."
|
|
68718
|
+
}
|
|
68719
|
+
},
|
|
68720
|
+
"required": [
|
|
68721
|
+
"fallbackHost",
|
|
68722
|
+
"branchAlias",
|
|
68723
|
+
"projectId"
|
|
68724
|
+
],
|
|
68725
|
+
"type": "object",
|
|
68726
|
+
"description": "A list of the deployment routing information for each project."
|
|
67520
68727
|
},
|
|
67521
|
-
"
|
|
67522
|
-
|
|
67523
|
-
"description": "This is used and set in the exact same way as `deploymentId`."
|
|
67524
|
-
}
|
|
68728
|
+
"type": "array",
|
|
68729
|
+
"description": "A list of the deployment routing information for each project."
|
|
67525
68730
|
},
|
|
67526
|
-
|
|
67527
|
-
"
|
|
67528
|
-
|
|
67529
|
-
|
|
67530
|
-
|
|
67531
|
-
|
|
67532
|
-
|
|
67533
|
-
|
|
67534
|
-
|
|
68731
|
+
{
|
|
68732
|
+
"items": {
|
|
68733
|
+
"properties": {
|
|
68734
|
+
"deploymentId": {
|
|
68735
|
+
"type": "string",
|
|
68736
|
+
"description": "This is the deployment for the same commit, it could be a cancelled deployment. The proxy will fallback to the branchDeploymentId and then the fallbackDeploymentId."
|
|
68737
|
+
},
|
|
68738
|
+
"branchDeploymentId": {
|
|
68739
|
+
"type": "string",
|
|
68740
|
+
"description": "This is the latest non-cancelled deployment of the branch alias at the time the commit alias was created. It is possible there is no deployment for the branch, or this was set before the deployment was canceled, in which case this will point to a cancelled deployment, in either case the proxy will fallback to the fallbackDeploymentId."
|
|
68741
|
+
},
|
|
68742
|
+
"fallbackDeploymentId": {
|
|
68743
|
+
"type": "string",
|
|
68744
|
+
"description": "This is the deployment of the fallback host at the time the commit alias was created. It is possible for this to be a deleted deployment, in which case the proxy will show that the deployment is deleted. It will not use the fallbackHost, as a future deployment on the fallback host could be invalid for this deployment, and it could lead to confusion / incorrect behavior for the commit alias."
|
|
68745
|
+
},
|
|
68746
|
+
"fallbackHost": {
|
|
68747
|
+
"type": "string",
|
|
68748
|
+
"description": "Temporary for backwards compatibility. Can remove when metadata change is released"
|
|
68749
|
+
},
|
|
68750
|
+
"branchAlias": {
|
|
68751
|
+
"type": "string"
|
|
68752
|
+
},
|
|
68753
|
+
"projectId": {
|
|
68754
|
+
"type": "string",
|
|
68755
|
+
"description": "The project ID of the microfrontends application."
|
|
68756
|
+
}
|
|
68757
|
+
},
|
|
68758
|
+
"required": [
|
|
68759
|
+
"projectId"
|
|
68760
|
+
],
|
|
68761
|
+
"type": "object",
|
|
68762
|
+
"description": "A list of the deployment routing information for each project."
|
|
68763
|
+
},
|
|
68764
|
+
"type": "array",
|
|
68765
|
+
"description": "A list of the deployment routing information for each project."
|
|
68766
|
+
}
|
|
68767
|
+
]
|
|
67535
68768
|
}
|
|
67536
68769
|
},
|
|
67537
68770
|
"required": [
|
|
@@ -67722,296 +68955,7 @@
|
|
|
67722
68955
|
"description": "The alias information",
|
|
67723
68956
|
"content": {
|
|
67724
68957
|
"application/json": {
|
|
67725
|
-
"schema": {
|
|
67726
|
-
"properties": {
|
|
67727
|
-
"alias": {
|
|
67728
|
-
"type": "string",
|
|
67729
|
-
"description": "The alias name, it could be a `.vercel.app` subdomain or a custom domain",
|
|
67730
|
-
"example": "my-alias.vercel.app"
|
|
67731
|
-
},
|
|
67732
|
-
"created": {
|
|
67733
|
-
"type": "string",
|
|
67734
|
-
"format": "date-time",
|
|
67735
|
-
"description": "The date when the alias was created",
|
|
67736
|
-
"example": "2017-04-26T23:00:34.232Z"
|
|
67737
|
-
},
|
|
67738
|
-
"createdAt": {
|
|
67739
|
-
"type": "number",
|
|
67740
|
-
"description": "The date when the alias was created in milliseconds since the UNIX epoch",
|
|
67741
|
-
"example": 1540095775941,
|
|
67742
|
-
"nullable": true
|
|
67743
|
-
},
|
|
67744
|
-
"creator": {
|
|
67745
|
-
"properties": {
|
|
67746
|
-
"uid": {
|
|
67747
|
-
"type": "string",
|
|
67748
|
-
"description": "ID of the user who created the alias",
|
|
67749
|
-
"example": "96SnxkFiMyVKsK3pnoHfx3Hz"
|
|
67750
|
-
},
|
|
67751
|
-
"email": {
|
|
67752
|
-
"type": "string",
|
|
67753
|
-
"description": "Email of the user who created the alias",
|
|
67754
|
-
"example": "john-doe@gmail.com"
|
|
67755
|
-
},
|
|
67756
|
-
"username": {
|
|
67757
|
-
"type": "string",
|
|
67758
|
-
"description": "Username of the user who created the alias",
|
|
67759
|
-
"example": "john-doe"
|
|
67760
|
-
}
|
|
67761
|
-
},
|
|
67762
|
-
"required": [
|
|
67763
|
-
"uid",
|
|
67764
|
-
"email",
|
|
67765
|
-
"username"
|
|
67766
|
-
],
|
|
67767
|
-
"type": "object",
|
|
67768
|
-
"description": "Information of the user who created the alias"
|
|
67769
|
-
},
|
|
67770
|
-
"deletedAt": {
|
|
67771
|
-
"type": "number",
|
|
67772
|
-
"description": "The date when the alias was deleted in milliseconds since the UNIX epoch",
|
|
67773
|
-
"example": 1540095775941,
|
|
67774
|
-
"nullable": true
|
|
67775
|
-
},
|
|
67776
|
-
"deployment": {
|
|
67777
|
-
"properties": {
|
|
67778
|
-
"id": {
|
|
67779
|
-
"type": "string",
|
|
67780
|
-
"description": "The deployment unique identifier",
|
|
67781
|
-
"example": "dpl_5m8CQaRBm3FnWRW1od3wKTpaECPx"
|
|
67782
|
-
},
|
|
67783
|
-
"url": {
|
|
67784
|
-
"type": "string",
|
|
67785
|
-
"description": "The deployment unique URL",
|
|
67786
|
-
"example": "my-instant-deployment-3ij3cxz9qr.now.sh"
|
|
67787
|
-
},
|
|
67788
|
-
"meta": {
|
|
67789
|
-
"type": "string",
|
|
67790
|
-
"description": "The deployment metadata",
|
|
67791
|
-
"example": {}
|
|
67792
|
-
}
|
|
67793
|
-
},
|
|
67794
|
-
"required": [
|
|
67795
|
-
"id",
|
|
67796
|
-
"url"
|
|
67797
|
-
],
|
|
67798
|
-
"type": "object",
|
|
67799
|
-
"description": "A map with the deployment ID, URL and metadata"
|
|
67800
|
-
},
|
|
67801
|
-
"deploymentId": {
|
|
67802
|
-
"nullable": true,
|
|
67803
|
-
"type": "string",
|
|
67804
|
-
"description": "The deployment ID",
|
|
67805
|
-
"example": "dpl_5m8CQaRBm3FnWRW1od3wKTpaECPx"
|
|
67806
|
-
},
|
|
67807
|
-
"projectId": {
|
|
67808
|
-
"nullable": true,
|
|
67809
|
-
"type": "string",
|
|
67810
|
-
"description": "The unique identifier of the project",
|
|
67811
|
-
"example": "prj_12HKQaOmR5t5Uy6vdcQsNIiZgHGB"
|
|
67812
|
-
},
|
|
67813
|
-
"redirect": {
|
|
67814
|
-
"nullable": true,
|
|
67815
|
-
"type": "string",
|
|
67816
|
-
"description": "Target destination domain for redirect when the alias is a redirect"
|
|
67817
|
-
},
|
|
67818
|
-
"redirectStatusCode": {
|
|
67819
|
-
"nullable": true,
|
|
67820
|
-
"type": "number",
|
|
67821
|
-
"enum": [
|
|
67822
|
-
301,
|
|
67823
|
-
302,
|
|
67824
|
-
307,
|
|
67825
|
-
308
|
|
67826
|
-
],
|
|
67827
|
-
"description": "Status code to be used on redirect"
|
|
67828
|
-
},
|
|
67829
|
-
"uid": {
|
|
67830
|
-
"type": "string",
|
|
67831
|
-
"description": "The unique identifier of the alias"
|
|
67832
|
-
},
|
|
67833
|
-
"updatedAt": {
|
|
67834
|
-
"type": "number",
|
|
67835
|
-
"description": "The date when the alias was updated in milliseconds since the UNIX epoch",
|
|
67836
|
-
"example": 1540095775941,
|
|
67837
|
-
"nullable": true
|
|
67838
|
-
},
|
|
67839
|
-
"protectionBypass": {
|
|
67840
|
-
"additionalProperties": {
|
|
67841
|
-
"oneOf": [
|
|
67842
|
-
{
|
|
67843
|
-
"properties": {
|
|
67844
|
-
"createdAt": {
|
|
67845
|
-
"type": "number"
|
|
67846
|
-
},
|
|
67847
|
-
"createdBy": {
|
|
67848
|
-
"type": "string"
|
|
67849
|
-
},
|
|
67850
|
-
"scope": {
|
|
67851
|
-
"type": "string",
|
|
67852
|
-
"enum": [
|
|
67853
|
-
"shareable-link"
|
|
67854
|
-
]
|
|
67855
|
-
}
|
|
67856
|
-
},
|
|
67857
|
-
"required": [
|
|
67858
|
-
"createdAt",
|
|
67859
|
-
"createdBy",
|
|
67860
|
-
"scope"
|
|
67861
|
-
],
|
|
67862
|
-
"type": "object",
|
|
67863
|
-
"description": "The protection bypass for the alias"
|
|
67864
|
-
},
|
|
67865
|
-
{
|
|
67866
|
-
"properties": {
|
|
67867
|
-
"createdAt": {
|
|
67868
|
-
"type": "number"
|
|
67869
|
-
},
|
|
67870
|
-
"lastUpdatedAt": {
|
|
67871
|
-
"type": "number"
|
|
67872
|
-
},
|
|
67873
|
-
"lastUpdatedBy": {
|
|
67874
|
-
"type": "string"
|
|
67875
|
-
},
|
|
67876
|
-
"access": {
|
|
67877
|
-
"type": "string",
|
|
67878
|
-
"enum": [
|
|
67879
|
-
"requested",
|
|
67880
|
-
"granted"
|
|
67881
|
-
]
|
|
67882
|
-
},
|
|
67883
|
-
"scope": {
|
|
67884
|
-
"type": "string",
|
|
67885
|
-
"enum": [
|
|
67886
|
-
"user"
|
|
67887
|
-
]
|
|
67888
|
-
}
|
|
67889
|
-
},
|
|
67890
|
-
"required": [
|
|
67891
|
-
"createdAt",
|
|
67892
|
-
"lastUpdatedAt",
|
|
67893
|
-
"lastUpdatedBy",
|
|
67894
|
-
"access",
|
|
67895
|
-
"scope"
|
|
67896
|
-
],
|
|
67897
|
-
"type": "object",
|
|
67898
|
-
"description": "The protection bypass for the alias"
|
|
67899
|
-
},
|
|
67900
|
-
{
|
|
67901
|
-
"properties": {
|
|
67902
|
-
"createdAt": {
|
|
67903
|
-
"type": "number"
|
|
67904
|
-
},
|
|
67905
|
-
"createdBy": {
|
|
67906
|
-
"type": "string"
|
|
67907
|
-
},
|
|
67908
|
-
"scope": {
|
|
67909
|
-
"type": "string",
|
|
67910
|
-
"enum": [
|
|
67911
|
-
"alias-protection-override"
|
|
67912
|
-
]
|
|
67913
|
-
}
|
|
67914
|
-
},
|
|
67915
|
-
"required": [
|
|
67916
|
-
"createdAt",
|
|
67917
|
-
"createdBy",
|
|
67918
|
-
"scope"
|
|
67919
|
-
],
|
|
67920
|
-
"type": "object",
|
|
67921
|
-
"description": "The protection bypass for the alias"
|
|
67922
|
-
},
|
|
67923
|
-
{
|
|
67924
|
-
"properties": {
|
|
67925
|
-
"createdAt": {
|
|
67926
|
-
"type": "number"
|
|
67927
|
-
},
|
|
67928
|
-
"lastUpdatedAt": {
|
|
67929
|
-
"type": "number"
|
|
67930
|
-
},
|
|
67931
|
-
"lastUpdatedBy": {
|
|
67932
|
-
"type": "string"
|
|
67933
|
-
},
|
|
67934
|
-
"scope": {
|
|
67935
|
-
"type": "string",
|
|
67936
|
-
"enum": [
|
|
67937
|
-
"email_invite"
|
|
67938
|
-
]
|
|
67939
|
-
}
|
|
67940
|
-
},
|
|
67941
|
-
"required": [
|
|
67942
|
-
"createdAt",
|
|
67943
|
-
"lastUpdatedAt",
|
|
67944
|
-
"lastUpdatedBy",
|
|
67945
|
-
"scope"
|
|
67946
|
-
],
|
|
67947
|
-
"type": "object",
|
|
67948
|
-
"description": "The protection bypass for the alias"
|
|
67949
|
-
}
|
|
67950
|
-
]
|
|
67951
|
-
},
|
|
67952
|
-
"type": "object",
|
|
67953
|
-
"description": "The protection bypass for the alias"
|
|
67954
|
-
},
|
|
67955
|
-
"microfrontends": {
|
|
67956
|
-
"properties": {
|
|
67957
|
-
"defaultApp": {
|
|
67958
|
-
"properties": {
|
|
67959
|
-
"projectId": {
|
|
67960
|
-
"type": "string"
|
|
67961
|
-
}
|
|
67962
|
-
},
|
|
67963
|
-
"required": [
|
|
67964
|
-
"projectId"
|
|
67965
|
-
],
|
|
67966
|
-
"type": "object"
|
|
67967
|
-
},
|
|
67968
|
-
"applications": {
|
|
67969
|
-
"items": {
|
|
67970
|
-
"properties": {
|
|
67971
|
-
"projectId": {
|
|
67972
|
-
"type": "string",
|
|
67973
|
-
"description": "The project ID that should use the below configuration."
|
|
67974
|
-
},
|
|
67975
|
-
"fallbackHost": {
|
|
67976
|
-
"type": "string",
|
|
67977
|
-
"description": "This is always set and is the fallback host to send the request to if there is no deployment ID."
|
|
67978
|
-
},
|
|
67979
|
-
"deploymentId": {
|
|
67980
|
-
"type": "string",
|
|
67981
|
-
"description": "This is only set if there are changes to the application. This is the deployment ID to use for requests to that application. If this is unset, requests will be sent to the `fallbackHost`."
|
|
67982
|
-
},
|
|
67983
|
-
"deploymentUrl": {
|
|
67984
|
-
"type": "string",
|
|
67985
|
-
"description": "This is used and set in the exact same way as `deploymentId`."
|
|
67986
|
-
}
|
|
67987
|
-
},
|
|
67988
|
-
"required": [
|
|
67989
|
-
"projectId",
|
|
67990
|
-
"fallbackHost"
|
|
67991
|
-
],
|
|
67992
|
-
"type": "object",
|
|
67993
|
-
"description": "A list of the deployment routing information for each project."
|
|
67994
|
-
},
|
|
67995
|
-
"type": "array",
|
|
67996
|
-
"description": "A list of the deployment routing information for each project."
|
|
67997
|
-
}
|
|
67998
|
-
},
|
|
67999
|
-
"required": [
|
|
68000
|
-
"defaultApp",
|
|
68001
|
-
"applications"
|
|
68002
|
-
],
|
|
68003
|
-
"type": "object",
|
|
68004
|
-
"description": "The microfrontends for the alias including the routing configuration"
|
|
68005
|
-
}
|
|
68006
|
-
},
|
|
68007
|
-
"required": [
|
|
68008
|
-
"alias",
|
|
68009
|
-
"created",
|
|
68010
|
-
"deploymentId",
|
|
68011
|
-
"projectId",
|
|
68012
|
-
"uid"
|
|
68013
|
-
]
|
|
68014
|
-
}
|
|
68958
|
+
"schema": {}
|
|
68015
68959
|
}
|
|
68016
68960
|
}
|
|
68017
68961
|
},
|
|
@@ -69454,7 +70398,8 @@
|
|
|
69454
70398
|
"sanity-v3",
|
|
69455
70399
|
"sanity",
|
|
69456
70400
|
"storybook",
|
|
69457
|
-
"nitro"
|
|
70401
|
+
"nitro",
|
|
70402
|
+
"hono"
|
|
69458
70403
|
]
|
|
69459
70404
|
},
|
|
69460
70405
|
"gitForkProtection": {
|
|
@@ -71493,22 +72438,6 @@
|
|
|
71493
72438
|
"type": "object",
|
|
71494
72439
|
"description": "The payload of the event, if requested."
|
|
71495
72440
|
},
|
|
71496
|
-
{
|
|
71497
|
-
"properties": {
|
|
71498
|
-
"id": {
|
|
71499
|
-
"type": "string"
|
|
71500
|
-
},
|
|
71501
|
-
"domain": {
|
|
71502
|
-
"type": "string"
|
|
71503
|
-
}
|
|
71504
|
-
},
|
|
71505
|
-
"required": [
|
|
71506
|
-
"id",
|
|
71507
|
-
"domain"
|
|
71508
|
-
],
|
|
71509
|
-
"type": "object",
|
|
71510
|
-
"description": "The payload of the event, if requested."
|
|
71511
|
-
},
|
|
71512
72441
|
{
|
|
71513
72442
|
"properties": {
|
|
71514
72443
|
"id": {
|
|
@@ -72401,6 +73330,33 @@
|
|
|
72401
73330
|
"type": "object",
|
|
72402
73331
|
"description": "The payload of the event, if requested."
|
|
72403
73332
|
},
|
|
73333
|
+
{
|
|
73334
|
+
"properties": {
|
|
73335
|
+
"projectId": {
|
|
73336
|
+
"type": "string"
|
|
73337
|
+
},
|
|
73338
|
+
"prevAttackModeEnabled": {
|
|
73339
|
+
"type": "boolean"
|
|
73340
|
+
},
|
|
73341
|
+
"prevAttackModeActiveUntil": {
|
|
73342
|
+
"nullable": true,
|
|
73343
|
+
"type": "number"
|
|
73344
|
+
},
|
|
73345
|
+
"attackModeEnabled": {
|
|
73346
|
+
"type": "boolean"
|
|
73347
|
+
},
|
|
73348
|
+
"attackModeActiveUntil": {
|
|
73349
|
+
"nullable": true,
|
|
73350
|
+
"type": "number"
|
|
73351
|
+
}
|
|
73352
|
+
},
|
|
73353
|
+
"required": [
|
|
73354
|
+
"projectId",
|
|
73355
|
+
"attackModeEnabled"
|
|
73356
|
+
],
|
|
73357
|
+
"type": "object",
|
|
73358
|
+
"description": "The payload of the event, if requested."
|
|
73359
|
+
},
|
|
72404
73360
|
{
|
|
72405
73361
|
"properties": {
|
|
72406
73362
|
"integrationId": {
|
|
@@ -72601,7 +73557,7 @@
|
|
|
72601
73557
|
"bitbucket",
|
|
72602
73558
|
"google",
|
|
72603
73559
|
"github-oauth",
|
|
72604
|
-
"github-
|
|
73560
|
+
"github-oauth-limited"
|
|
72605
73561
|
]
|
|
72606
73562
|
},
|
|
72607
73563
|
"id": {
|
|
@@ -72619,8 +73575,7 @@
|
|
|
72619
73575
|
"type": {
|
|
72620
73576
|
"type": "string",
|
|
72621
73577
|
"enum": [
|
|
72622
|
-
"github-oauth-custom-host"
|
|
72623
|
-
"github-app-custom-host"
|
|
73578
|
+
"github-oauth-custom-host"
|
|
72624
73579
|
]
|
|
72625
73580
|
},
|
|
72626
73581
|
"host": {
|
|
@@ -72756,6 +73711,7 @@
|
|
|
72756
73711
|
"github",
|
|
72757
73712
|
"gitlab",
|
|
72758
73713
|
"bitbucket",
|
|
73714
|
+
"github-limited",
|
|
72759
73715
|
"github-custom-host"
|
|
72760
73716
|
]
|
|
72761
73717
|
},
|
|
@@ -72959,6 +73915,23 @@
|
|
|
72959
73915
|
}
|
|
72960
73916
|
},
|
|
72961
73917
|
"type": "object"
|
|
73918
|
+
},
|
|
73919
|
+
"security": {
|
|
73920
|
+
"properties": {
|
|
73921
|
+
"customRules": {
|
|
73922
|
+
"type": "number"
|
|
73923
|
+
},
|
|
73924
|
+
"ipBlocks": {
|
|
73925
|
+
"type": "number"
|
|
73926
|
+
},
|
|
73927
|
+
"ipBypass": {
|
|
73928
|
+
"type": "number"
|
|
73929
|
+
},
|
|
73930
|
+
"rateLimit": {
|
|
73931
|
+
"type": "number"
|
|
73932
|
+
}
|
|
73933
|
+
},
|
|
73934
|
+
"type": "object"
|
|
72962
73935
|
}
|
|
72963
73936
|
},
|
|
72964
73937
|
"type": "object"
|
|
@@ -73205,6 +74178,7 @@
|
|
|
73205
74178
|
"SECURITY",
|
|
73206
74179
|
"BILLING",
|
|
73207
74180
|
"VIEWER",
|
|
74181
|
+
"VIEWER_FOR_PLUS",
|
|
73208
74182
|
"CONTRIBUTOR"
|
|
73209
74183
|
]
|
|
73210
74184
|
},
|
|
@@ -73227,6 +74201,7 @@
|
|
|
73227
74201
|
"SECURITY",
|
|
73228
74202
|
"BILLING",
|
|
73229
74203
|
"VIEWER",
|
|
74204
|
+
"VIEWER_FOR_PLUS",
|
|
73230
74205
|
"CONTRIBUTOR"
|
|
73231
74206
|
]
|
|
73232
74207
|
},
|
|
@@ -73240,7 +74215,10 @@
|
|
|
73240
74215
|
"FullProductionDeployment",
|
|
73241
74216
|
"UsageViewer",
|
|
73242
74217
|
"EnvVariableManager",
|
|
73243
|
-
"EnvironmentManager"
|
|
74218
|
+
"EnvironmentManager",
|
|
74219
|
+
"V0Builder",
|
|
74220
|
+
"V0Chatter",
|
|
74221
|
+
"V0Viewer"
|
|
73244
74222
|
]
|
|
73245
74223
|
},
|
|
73246
74224
|
"type": "array"
|
|
@@ -75086,6 +76064,7 @@
|
|
|
75086
76064
|
"SECURITY",
|
|
75087
76065
|
"BILLING",
|
|
75088
76066
|
"VIEWER",
|
|
76067
|
+
"VIEWER_FOR_PLUS",
|
|
75089
76068
|
"CONTRIBUTOR"
|
|
75090
76069
|
]
|
|
75091
76070
|
},
|
|
@@ -75187,6 +76166,22 @@
|
|
|
75187
76166
|
"type": "object",
|
|
75188
76167
|
"description": "The payload of the event, if requested."
|
|
75189
76168
|
},
|
|
76169
|
+
{
|
|
76170
|
+
"properties": {
|
|
76171
|
+
"projectName": {
|
|
76172
|
+
"type": "string"
|
|
76173
|
+
},
|
|
76174
|
+
"branch": {
|
|
76175
|
+
"type": "string"
|
|
76176
|
+
}
|
|
76177
|
+
},
|
|
76178
|
+
"required": [
|
|
76179
|
+
"projectName",
|
|
76180
|
+
"branch"
|
|
76181
|
+
],
|
|
76182
|
+
"type": "object",
|
|
76183
|
+
"description": "The payload of the event, if requested."
|
|
76184
|
+
},
|
|
75190
76185
|
{
|
|
75191
76186
|
"properties": {
|
|
75192
76187
|
"projectName": {
|
|
@@ -75654,6 +76649,9 @@
|
|
|
75654
76649
|
"connectConfigurationId": {
|
|
75655
76650
|
"type": "string"
|
|
75656
76651
|
},
|
|
76652
|
+
"dc": {
|
|
76653
|
+
"type": "string"
|
|
76654
|
+
},
|
|
75657
76655
|
"passive": {
|
|
75658
76656
|
"type": "boolean"
|
|
75659
76657
|
},
|
|
@@ -75718,6 +76716,9 @@
|
|
|
75718
76716
|
"connectConfigurationId": {
|
|
75719
76717
|
"type": "string"
|
|
75720
76718
|
},
|
|
76719
|
+
"dc": {
|
|
76720
|
+
"type": "string"
|
|
76721
|
+
},
|
|
75721
76722
|
"passive": {
|
|
75722
76723
|
"type": "boolean"
|
|
75723
76724
|
},
|
|
@@ -75789,6 +76790,22 @@
|
|
|
75789
76790
|
"type": "object",
|
|
75790
76791
|
"description": "The payload of the event, if requested."
|
|
75791
76792
|
},
|
|
76793
|
+
{
|
|
76794
|
+
"properties": {
|
|
76795
|
+
"source": {
|
|
76796
|
+
"type": "string"
|
|
76797
|
+
},
|
|
76798
|
+
"projectId": {
|
|
76799
|
+
"type": "string"
|
|
76800
|
+
}
|
|
76801
|
+
},
|
|
76802
|
+
"required": [
|
|
76803
|
+
"source",
|
|
76804
|
+
"projectId"
|
|
76805
|
+
],
|
|
76806
|
+
"type": "object",
|
|
76807
|
+
"description": "The payload of the event, if requested."
|
|
76808
|
+
},
|
|
75792
76809
|
{
|
|
75793
76810
|
"properties": {
|
|
75794
76811
|
"projectId": {
|
|
@@ -76130,6 +77147,7 @@
|
|
|
76130
77147
|
"pricingPlan": {
|
|
76131
77148
|
"type": "string",
|
|
76132
77149
|
"enum": [
|
|
77150
|
+
"plus",
|
|
76133
77151
|
"legacy",
|
|
76134
77152
|
"unbundled"
|
|
76135
77153
|
],
|
|
@@ -76222,6 +77240,7 @@
|
|
|
76222
77240
|
"pricingPlan": {
|
|
76223
77241
|
"type": "string",
|
|
76224
77242
|
"enum": [
|
|
77243
|
+
"plus",
|
|
76225
77244
|
"legacy",
|
|
76226
77245
|
"unbundled"
|
|
76227
77246
|
],
|
|
@@ -77144,6 +78163,28 @@
|
|
|
77144
78163
|
"type": "object",
|
|
77145
78164
|
"description": "The payload of the event, if requested."
|
|
77146
78165
|
},
|
|
78166
|
+
{
|
|
78167
|
+
"properties": {
|
|
78168
|
+
"projectName": {
|
|
78169
|
+
"type": "string"
|
|
78170
|
+
},
|
|
78171
|
+
"tags": {
|
|
78172
|
+
"items": {
|
|
78173
|
+
"type": "string"
|
|
78174
|
+
},
|
|
78175
|
+
"type": "array"
|
|
78176
|
+
},
|
|
78177
|
+
"target": {
|
|
78178
|
+
"type": "string"
|
|
78179
|
+
}
|
|
78180
|
+
},
|
|
78181
|
+
"required": [
|
|
78182
|
+
"projectName",
|
|
78183
|
+
"tags"
|
|
78184
|
+
],
|
|
78185
|
+
"type": "object",
|
|
78186
|
+
"description": "The payload of the event, if requested."
|
|
78187
|
+
},
|
|
77147
78188
|
{
|
|
77148
78189
|
"properties": {
|
|
77149
78190
|
"edgeConfigId": {
|
|
@@ -77259,6 +78300,9 @@
|
|
|
77259
78300
|
"name": {
|
|
77260
78301
|
"type": "string"
|
|
77261
78302
|
},
|
|
78303
|
+
"fallbackEnvironment": {
|
|
78304
|
+
"type": "string"
|
|
78305
|
+
},
|
|
77262
78306
|
"prev": {
|
|
77263
78307
|
"properties": {
|
|
77264
78308
|
"name": {
|
|
@@ -77266,19 +78310,21 @@
|
|
|
77266
78310
|
},
|
|
77267
78311
|
"slug": {
|
|
77268
78312
|
"type": "string"
|
|
78313
|
+
},
|
|
78314
|
+
"fallbackEnvironment": {
|
|
78315
|
+
"type": "string"
|
|
77269
78316
|
}
|
|
77270
78317
|
},
|
|
77271
78318
|
"required": [
|
|
77272
78319
|
"name",
|
|
77273
|
-
"slug"
|
|
78320
|
+
"slug",
|
|
78321
|
+
"fallbackEnvironment"
|
|
77274
78322
|
],
|
|
77275
78323
|
"type": "object"
|
|
77276
78324
|
}
|
|
77277
78325
|
},
|
|
77278
78326
|
"required": [
|
|
77279
78327
|
"id",
|
|
77280
|
-
"slug",
|
|
77281
|
-
"name",
|
|
77282
78328
|
"prev"
|
|
77283
78329
|
],
|
|
77284
78330
|
"type": "object",
|
|
@@ -77883,6 +78929,7 @@
|
|
|
77883
78929
|
"enum": [
|
|
77884
78930
|
"email",
|
|
77885
78931
|
"saml",
|
|
78932
|
+
"app",
|
|
77886
78933
|
"github",
|
|
77887
78934
|
"gitlab",
|
|
77888
78935
|
"bitbucket",
|
|
@@ -77949,16 +78996,16 @@
|
|
|
77949
78996
|
"properties": {
|
|
77950
78997
|
"connection": {
|
|
77951
78998
|
"properties": {
|
|
77952
|
-
"type": {
|
|
77953
|
-
"type": "string",
|
|
77954
|
-
"description": "The Identity Provider \"type\", for example Okta.",
|
|
77955
|
-
"example": "OktaSAML"
|
|
77956
|
-
},
|
|
77957
78999
|
"status": {
|
|
77958
79000
|
"type": "string",
|
|
77959
79001
|
"description": "Current status of the connection.",
|
|
77960
79002
|
"example": "linked"
|
|
77961
79003
|
},
|
|
79004
|
+
"type": {
|
|
79005
|
+
"type": "string",
|
|
79006
|
+
"description": "The Identity Provider \"type\", for example Okta.",
|
|
79007
|
+
"example": "OktaSAML"
|
|
79008
|
+
},
|
|
77962
79009
|
"state": {
|
|
77963
79010
|
"type": "string",
|
|
77964
79011
|
"description": "Current state of the connection.",
|
|
@@ -77976,8 +79023,8 @@
|
|
|
77976
79023
|
}
|
|
77977
79024
|
},
|
|
77978
79025
|
"required": [
|
|
77979
|
-
"type",
|
|
77980
79026
|
"status",
|
|
79027
|
+
"type",
|
|
77981
79028
|
"state",
|
|
77982
79029
|
"connectedAt"
|
|
77983
79030
|
],
|
|
@@ -78019,6 +79066,14 @@
|
|
|
78019
79066
|
"type": "boolean",
|
|
78020
79067
|
"description": "When `true`, interactions with the Team **must** be done with an authentication token that has been authenticated with the Team's SAML Single Sign-On provider."
|
|
78021
79068
|
},
|
|
79069
|
+
"defaultRedirectUri": {
|
|
79070
|
+
"type": "string",
|
|
79071
|
+
"enum": [
|
|
79072
|
+
"vercel.com",
|
|
79073
|
+
"v0.dev"
|
|
79074
|
+
],
|
|
79075
|
+
"description": "The default redirect URI to use after successful SAML authentication."
|
|
79076
|
+
},
|
|
78022
79077
|
"roles": {
|
|
78023
79078
|
"additionalProperties": {
|
|
78024
79079
|
"oneOf": [
|
|
@@ -78043,6 +79098,7 @@
|
|
|
78043
79098
|
"SECURITY",
|
|
78044
79099
|
"BILLING",
|
|
78045
79100
|
"VIEWER",
|
|
79101
|
+
"VIEWER_FOR_PLUS",
|
|
78046
79102
|
"CONTRIBUTOR"
|
|
78047
79103
|
]
|
|
78048
79104
|
}
|
|
@@ -78129,6 +79185,34 @@
|
|
|
78129
79185
|
"type": "object",
|
|
78130
79186
|
"description": "Is remote caching enabled for this team"
|
|
78131
79187
|
},
|
|
79188
|
+
"defaultDeploymentProtection": {
|
|
79189
|
+
"properties": {
|
|
79190
|
+
"passwordProtection": {
|
|
79191
|
+
"properties": {
|
|
79192
|
+
"deploymentType": {
|
|
79193
|
+
"type": "string"
|
|
79194
|
+
}
|
|
79195
|
+
},
|
|
79196
|
+
"required": [
|
|
79197
|
+
"deploymentType"
|
|
79198
|
+
],
|
|
79199
|
+
"type": "object"
|
|
79200
|
+
},
|
|
79201
|
+
"ssoProtection": {
|
|
79202
|
+
"properties": {
|
|
79203
|
+
"deploymentType": {
|
|
79204
|
+
"type": "string"
|
|
79205
|
+
}
|
|
79206
|
+
},
|
|
79207
|
+
"required": [
|
|
79208
|
+
"deploymentType"
|
|
79209
|
+
],
|
|
79210
|
+
"type": "object"
|
|
79211
|
+
}
|
|
79212
|
+
},
|
|
79213
|
+
"type": "object",
|
|
79214
|
+
"description": "Default deployment protection for this team"
|
|
79215
|
+
},
|
|
78132
79216
|
"enablePreviewFeedback": {
|
|
78133
79217
|
"nullable": true,
|
|
78134
79218
|
"type": "string",
|
|
@@ -78233,9 +79317,6 @@
|
|
|
78233
79317
|
},
|
|
78234
79318
|
"type": "array"
|
|
78235
79319
|
},
|
|
78236
|
-
"teamId": {
|
|
78237
|
-
"type": "string"
|
|
78238
|
-
},
|
|
78239
79320
|
"confirmed": {
|
|
78240
79321
|
"type": "boolean"
|
|
78241
79322
|
},
|
|
@@ -78254,6 +79335,7 @@
|
|
|
78254
79335
|
"SECURITY",
|
|
78255
79336
|
"BILLING",
|
|
78256
79337
|
"VIEWER",
|
|
79338
|
+
"VIEWER_FOR_PLUS",
|
|
78257
79339
|
"CONTRIBUTOR"
|
|
78258
79340
|
]
|
|
78259
79341
|
},
|
|
@@ -78267,6 +79349,7 @@
|
|
|
78267
79349
|
"SECURITY",
|
|
78268
79350
|
"BILLING",
|
|
78269
79351
|
"VIEWER",
|
|
79352
|
+
"VIEWER_FOR_PLUS",
|
|
78270
79353
|
"CONTRIBUTOR"
|
|
78271
79354
|
]
|
|
78272
79355
|
},
|
|
@@ -78280,11 +79363,17 @@
|
|
|
78280
79363
|
"FullProductionDeployment",
|
|
78281
79364
|
"UsageViewer",
|
|
78282
79365
|
"EnvVariableManager",
|
|
78283
|
-
"EnvironmentManager"
|
|
79366
|
+
"EnvironmentManager",
|
|
79367
|
+
"V0Builder",
|
|
79368
|
+
"V0Chatter",
|
|
79369
|
+
"V0Viewer"
|
|
78284
79370
|
]
|
|
78285
79371
|
},
|
|
78286
79372
|
"type": "array"
|
|
78287
79373
|
},
|
|
79374
|
+
"teamId": {
|
|
79375
|
+
"type": "string"
|
|
79376
|
+
},
|
|
78288
79377
|
"createdAt": {
|
|
78289
79378
|
"type": "number"
|
|
78290
79379
|
},
|
|
@@ -78296,9 +79385,9 @@
|
|
|
78296
79385
|
"origin": {
|
|
78297
79386
|
"type": "string",
|
|
78298
79387
|
"enum": [
|
|
78299
|
-
"link",
|
|
78300
79388
|
"saml",
|
|
78301
79389
|
"mail",
|
|
79390
|
+
"link",
|
|
78302
79391
|
"import",
|
|
78303
79392
|
"teams",
|
|
78304
79393
|
"github",
|
|
@@ -78544,6 +79633,7 @@
|
|
|
78544
79633
|
"SECURITY",
|
|
78545
79634
|
"BILLING",
|
|
78546
79635
|
"VIEWER",
|
|
79636
|
+
"VIEWER_FOR_PLUS",
|
|
78547
79637
|
"CONTRIBUTOR"
|
|
78548
79638
|
]
|
|
78549
79639
|
},
|
|
@@ -78557,6 +79647,7 @@
|
|
|
78557
79647
|
"SECURITY",
|
|
78558
79648
|
"BILLING",
|
|
78559
79649
|
"VIEWER",
|
|
79650
|
+
"VIEWER_FOR_PLUS",
|
|
78560
79651
|
"CONTRIBUTOR"
|
|
78561
79652
|
]
|
|
78562
79653
|
},
|
|
@@ -78570,7 +79661,10 @@
|
|
|
78570
79661
|
"FullProductionDeployment",
|
|
78571
79662
|
"UsageViewer",
|
|
78572
79663
|
"EnvVariableManager",
|
|
78573
|
-
"EnvironmentManager"
|
|
79664
|
+
"EnvironmentManager",
|
|
79665
|
+
"V0Builder",
|
|
79666
|
+
"V0Chatter",
|
|
79667
|
+
"V0Viewer"
|
|
78574
79668
|
]
|
|
78575
79669
|
},
|
|
78576
79670
|
"type": "array"
|
|
@@ -78738,7 +79832,8 @@
|
|
|
78738
79832
|
"otp",
|
|
78739
79833
|
"sms",
|
|
78740
79834
|
"invite",
|
|
78741
|
-
"google"
|
|
79835
|
+
"google",
|
|
79836
|
+
"app"
|
|
78742
79837
|
]
|
|
78743
79838
|
},
|
|
78744
79839
|
"createdAt": {
|
|
@@ -78750,7 +79845,6 @@
|
|
|
78750
79845
|
},
|
|
78751
79846
|
"required": [
|
|
78752
79847
|
"type",
|
|
78753
|
-
"origin",
|
|
78754
79848
|
"createdAt"
|
|
78755
79849
|
],
|
|
78756
79850
|
"type": "object",
|
|
@@ -78780,7 +79874,8 @@
|
|
|
78780
79874
|
"otp",
|
|
78781
79875
|
"sms",
|
|
78782
79876
|
"invite",
|
|
78783
|
-
"google"
|
|
79877
|
+
"google",
|
|
79878
|
+
"app"
|
|
78784
79879
|
]
|
|
78785
79880
|
},
|
|
78786
79881
|
"createdAt": {
|
|
@@ -78793,7 +79888,6 @@
|
|
|
78793
79888
|
"required": [
|
|
78794
79889
|
"type",
|
|
78795
79890
|
"teamId",
|
|
78796
|
-
"origin",
|
|
78797
79891
|
"createdAt"
|
|
78798
79892
|
],
|
|
78799
79893
|
"type": "object",
|
|
@@ -79043,6 +80137,28 @@
|
|
|
79043
80137
|
},
|
|
79044
80138
|
"type": "object",
|
|
79045
80139
|
"description": "An object containing infomation related to the amount of platform resources may be allocated to the User account."
|
|
80140
|
+
},
|
|
80141
|
+
"security": {
|
|
80142
|
+
"properties": {
|
|
80143
|
+
"customRules": {
|
|
80144
|
+
"type": "number",
|
|
80145
|
+
"description": "An object containing infomation related to the amount of platform resources may be allocated to the User account."
|
|
80146
|
+
},
|
|
80147
|
+
"ipBlocks": {
|
|
80148
|
+
"type": "number",
|
|
80149
|
+
"description": "An object containing infomation related to the amount of platform resources may be allocated to the User account."
|
|
80150
|
+
},
|
|
80151
|
+
"ipBypass": {
|
|
80152
|
+
"type": "number",
|
|
80153
|
+
"description": "An object containing infomation related to the amount of platform resources may be allocated to the User account."
|
|
80154
|
+
},
|
|
80155
|
+
"rateLimit": {
|
|
80156
|
+
"type": "number",
|
|
80157
|
+
"description": "An object containing infomation related to the amount of platform resources may be allocated to the User account."
|
|
80158
|
+
}
|
|
80159
|
+
},
|
|
80160
|
+
"type": "object",
|
|
80161
|
+
"description": "An object containing infomation related to the amount of platform resources may be allocated to the User account."
|
|
79046
80162
|
}
|
|
79047
80163
|
},
|
|
79048
80164
|
"type": "object",
|
|
@@ -79121,6 +80237,7 @@
|
|
|
79121
80237
|
"github",
|
|
79122
80238
|
"gitlab",
|
|
79123
80239
|
"bitbucket",
|
|
80240
|
+
"github-limited",
|
|
79124
80241
|
"github-custom-host"
|
|
79125
80242
|
]
|
|
79126
80243
|
},
|