@vercel/sdk 1.18.1 → 1.18.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +51 -53
- package/bin/mcp-server.js +1734 -1643
- package/bin/mcp-server.js.map +23 -26
- package/esm/__tests__/domains.test.js +10 -27
- package/esm/__tests__/domains.test.js.map +1 -1
- package/esm/__tests__/edgeconfig.test.js +6 -6
- package/esm/__tests__/edgeconfig.test.js.map +1 -1
- package/esm/__tests__/integrations.test.js +1 -1
- package/esm/__tests__/security.test.js +4 -4
- package/esm/__tests__/security.test.js.map +1 -1
- package/esm/funcs/integrationsGetBillingPlans.js +1 -0
- package/esm/funcs/integrationsGetBillingPlans.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.d.ts.map +1 -1
- package/esm/mcp-server/server.js +1 -3
- package/esm/mcp-server/server.js.map +1 -1
- package/esm/models/authuser.d.ts +5 -0
- package/esm/models/authuser.d.ts.map +1 -1
- package/esm/models/authuser.js +2 -0
- package/esm/models/authuser.js.map +1 -1
- package/esm/models/canceldeploymentop.d.ts +2 -2
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +2 -2
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +2 -2
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +2 -2
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createintegrationstoredirectop.d.ts +220 -152
- package/esm/models/createintegrationstoredirectop.d.ts.map +1 -1
- package/esm/models/createintegrationstoredirectop.js +296 -218
- package/esm/models/createintegrationstoredirectop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +26 -4
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +23 -4
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/getbillingplansop.d.ts +2 -0
- package/esm/models/getbillingplansop.d.ts.map +1 -1
- package/esm/models/getbillingplansop.js +2 -0
- package/esm/models/getbillingplansop.js.map +1 -1
- package/esm/models/getconfigurationop.d.ts +61 -1
- package/esm/models/getconfigurationop.d.ts.map +1 -1
- package/esm/models/getconfigurationop.js +44 -1
- package/esm/models/getconfigurationop.js.map +1 -1
- package/esm/models/getconfigurationproductsop.d.ts +200 -200
- package/esm/models/getconfigurationproductsop.js +290 -290
- package/esm/models/getconfigurationsop.d.ts +60 -0
- package/esm/models/getconfigurationsop.d.ts.map +1 -1
- package/esm/models/getconfigurationsop.js +43 -0
- package/esm/models/getconfigurationsop.js.map +1 -1
- package/esm/models/getdeploymentop.d.ts +4 -4
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +4 -4
- package/esm/models/getdeploymentop.js.map +1 -1
- package/esm/models/getorderop.d.ts +126 -42
- package/esm/models/getorderop.d.ts.map +1 -1
- package/esm/models/getorderop.js +138 -24
- package/esm/models/getorderop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +21 -4
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +21 -4
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/updateinstallationop.d.ts +18 -0
- package/esm/models/updateinstallationop.d.ts.map +1 -1
- package/esm/models/updateinstallationop.js +17 -0
- package/esm/models/updateinstallationop.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +21 -4
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +21 -4
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +26 -4
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +23 -4
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/userevent.d.ts +38 -0
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +34 -0
- package/esm/models/userevent.js.map +1 -1
- package/esm/sdk/domains.d.ts +0 -8
- package/esm/sdk/domains.d.ts.map +1 -1
- package/esm/sdk/domains.js +0 -10
- package/esm/sdk/domains.js.map +1 -1
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/domains.test.ts +12 -29
- package/src/__tests__/edgeconfig.test.ts +6 -6
- package/src/__tests__/integrations.test.ts +1 -1
- package/src/__tests__/security.test.ts +4 -4
- package/src/funcs/integrationsGetBillingPlans.ts +1 -0
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -3
- package/src/models/authuser.ts +7 -0
- package/src/models/canceldeploymentop.ts +4 -4
- package/src/models/createdeploymentop.ts +4 -4
- package/src/models/createintegrationstoredirectop.ts +704 -471
- package/src/models/createprojectop.ts +53 -8
- package/src/models/getbillingplansop.ts +4 -0
- package/src/models/getconfigurationop.ts +87 -1
- package/src/models/getconfigurationproductsop.ts +627 -627
- package/src/models/getconfigurationsop.ts +86 -0
- package/src/models/getdeploymentop.ts +8 -8
- package/src/models/getorderop.ts +469 -112
- package/src/models/getprojectsop.ts +46 -8
- package/src/models/updateinstallationop.ts +30 -0
- package/src/models/updateprojectdatacacheop.ts +46 -8
- package/src/models/updateprojectop.ts +53 -8
- package/src/models/userevent.ts +80 -0
- package/src/sdk/domains.ts +0 -22
- package/vercel-spec.json +480 -258
package/vercel-spec.json
CHANGED
|
@@ -3798,6 +3798,9 @@
|
|
|
3798
3798
|
],
|
|
3799
3799
|
"type": "object"
|
|
3800
3800
|
},
|
|
3801
|
+
"appliedCve55182Migration": {
|
|
3802
|
+
"type": "boolean"
|
|
3803
|
+
},
|
|
3801
3804
|
"speedInsights": {
|
|
3802
3805
|
"properties": {
|
|
3803
3806
|
"id": {
|
|
@@ -4911,8 +4914,7 @@
|
|
|
4911
4914
|
"owner_id",
|
|
4912
4915
|
"project",
|
|
4913
4916
|
"project_id",
|
|
4914
|
-
"environment"
|
|
4915
|
-
"plan"
|
|
4917
|
+
"environment"
|
|
4916
4918
|
],
|
|
4917
4919
|
"type": "object"
|
|
4918
4920
|
},
|
|
@@ -5766,6 +5768,12 @@
|
|
|
5766
5768
|
"skewProtectionMaxAge": {
|
|
5767
5769
|
"type": "number"
|
|
5768
5770
|
},
|
|
5771
|
+
"skewProtectionAllowedDomains": {
|
|
5772
|
+
"items": {
|
|
5773
|
+
"type": "string"
|
|
5774
|
+
},
|
|
5775
|
+
"type": "array"
|
|
5776
|
+
},
|
|
5769
5777
|
"skipGitConnectDuringLink": {
|
|
5770
5778
|
"type": "boolean"
|
|
5771
5779
|
},
|
|
@@ -5808,6 +5816,16 @@
|
|
|
5808
5816
|
"prod_deployment_urls_and_all_previews",
|
|
5809
5817
|
"all_except_custom_domains"
|
|
5810
5818
|
]
|
|
5819
|
+
},
|
|
5820
|
+
"cve55182MigrationAppliedFrom": {
|
|
5821
|
+
"nullable": true,
|
|
5822
|
+
"type": "string",
|
|
5823
|
+
"enum": [
|
|
5824
|
+
"preview",
|
|
5825
|
+
"all",
|
|
5826
|
+
"prod_deployment_urls_and_all_previews",
|
|
5827
|
+
"all_except_custom_domains"
|
|
5828
|
+
]
|
|
5811
5829
|
}
|
|
5812
5830
|
},
|
|
5813
5831
|
"required": [
|
|
@@ -6029,8 +6047,7 @@
|
|
|
6029
6047
|
"owner_id",
|
|
6030
6048
|
"project",
|
|
6031
6049
|
"project_id",
|
|
6032
|
-
"environment"
|
|
6033
|
-
"plan"
|
|
6050
|
+
"environment"
|
|
6034
6051
|
],
|
|
6035
6052
|
"type": "object"
|
|
6036
6053
|
},
|
|
@@ -10977,8 +10994,7 @@
|
|
|
10977
10994
|
"owner_id",
|
|
10978
10995
|
"project",
|
|
10979
10996
|
"project_id",
|
|
10980
|
-
"environment"
|
|
10981
|
-
"plan"
|
|
10997
|
+
"environment"
|
|
10982
10998
|
],
|
|
10983
10999
|
"type": "object"
|
|
10984
11000
|
},
|
|
@@ -13247,8 +13263,7 @@
|
|
|
13247
13263
|
"owner_id",
|
|
13248
13264
|
"project",
|
|
13249
13265
|
"project_id",
|
|
13250
|
-
"environment"
|
|
13251
|
-
"plan"
|
|
13266
|
+
"environment"
|
|
13252
13267
|
],
|
|
13253
13268
|
"type": "object"
|
|
13254
13269
|
}
|
|
@@ -14863,8 +14878,7 @@
|
|
|
14863
14878
|
"owner_id",
|
|
14864
14879
|
"project",
|
|
14865
14880
|
"project_id",
|
|
14866
|
-
"environment"
|
|
14867
|
-
"plan"
|
|
14881
|
+
"environment"
|
|
14868
14882
|
],
|
|
14869
14883
|
"type": "object"
|
|
14870
14884
|
},
|
|
@@ -18141,8 +18155,7 @@
|
|
|
18141
18155
|
"owner_id",
|
|
18142
18156
|
"project",
|
|
18143
18157
|
"project_id",
|
|
18144
|
-
"environment"
|
|
18145
|
-
"plan"
|
|
18158
|
+
"environment"
|
|
18146
18159
|
],
|
|
18147
18160
|
"type": "object"
|
|
18148
18161
|
},
|
|
@@ -23449,6 +23462,34 @@
|
|
|
23449
23462
|
}
|
|
23450
23463
|
},
|
|
23451
23464
|
"additionalProperties": false
|
|
23465
|
+
},
|
|
23466
|
+
{
|
|
23467
|
+
"type": "object",
|
|
23468
|
+
"required": [
|
|
23469
|
+
"code",
|
|
23470
|
+
"details"
|
|
23471
|
+
],
|
|
23472
|
+
"properties": {
|
|
23473
|
+
"code": {
|
|
23474
|
+
"type": "string",
|
|
23475
|
+
"enum": [
|
|
23476
|
+
"cannot-transfer-in-until"
|
|
23477
|
+
]
|
|
23478
|
+
},
|
|
23479
|
+
"details": {
|
|
23480
|
+
"type": "object",
|
|
23481
|
+
"required": [
|
|
23482
|
+
"numDaysUntilTransferrable"
|
|
23483
|
+
],
|
|
23484
|
+
"properties": {
|
|
23485
|
+
"numDaysUntilTransferrable": {
|
|
23486
|
+
"type": "number"
|
|
23487
|
+
}
|
|
23488
|
+
},
|
|
23489
|
+
"additionalProperties": false
|
|
23490
|
+
}
|
|
23491
|
+
},
|
|
23492
|
+
"additionalProperties": false
|
|
23452
23493
|
}
|
|
23453
23494
|
]
|
|
23454
23495
|
},
|
|
@@ -23570,6 +23611,34 @@
|
|
|
23570
23611
|
}
|
|
23571
23612
|
},
|
|
23572
23613
|
"additionalProperties": false
|
|
23614
|
+
},
|
|
23615
|
+
{
|
|
23616
|
+
"type": "object",
|
|
23617
|
+
"required": [
|
|
23618
|
+
"code",
|
|
23619
|
+
"details"
|
|
23620
|
+
],
|
|
23621
|
+
"properties": {
|
|
23622
|
+
"code": {
|
|
23623
|
+
"type": "string",
|
|
23624
|
+
"enum": [
|
|
23625
|
+
"cannot-transfer-in-until"
|
|
23626
|
+
]
|
|
23627
|
+
},
|
|
23628
|
+
"details": {
|
|
23629
|
+
"type": "object",
|
|
23630
|
+
"required": [
|
|
23631
|
+
"numDaysUntilTransferrable"
|
|
23632
|
+
],
|
|
23633
|
+
"properties": {
|
|
23634
|
+
"numDaysUntilTransferrable": {
|
|
23635
|
+
"type": "number"
|
|
23636
|
+
}
|
|
23637
|
+
},
|
|
23638
|
+
"additionalProperties": false
|
|
23639
|
+
}
|
|
23640
|
+
},
|
|
23641
|
+
"additionalProperties": false
|
|
23573
23642
|
}
|
|
23574
23643
|
]
|
|
23575
23644
|
},
|
|
@@ -23695,6 +23764,34 @@
|
|
|
23695
23764
|
}
|
|
23696
23765
|
},
|
|
23697
23766
|
"additionalProperties": false
|
|
23767
|
+
},
|
|
23768
|
+
{
|
|
23769
|
+
"type": "object",
|
|
23770
|
+
"required": [
|
|
23771
|
+
"code",
|
|
23772
|
+
"details"
|
|
23773
|
+
],
|
|
23774
|
+
"properties": {
|
|
23775
|
+
"code": {
|
|
23776
|
+
"type": "string",
|
|
23777
|
+
"enum": [
|
|
23778
|
+
"cannot-transfer-in-until"
|
|
23779
|
+
]
|
|
23780
|
+
},
|
|
23781
|
+
"details": {
|
|
23782
|
+
"type": "object",
|
|
23783
|
+
"required": [
|
|
23784
|
+
"numDaysUntilTransferrable"
|
|
23785
|
+
],
|
|
23786
|
+
"properties": {
|
|
23787
|
+
"numDaysUntilTransferrable": {
|
|
23788
|
+
"type": "number"
|
|
23789
|
+
}
|
|
23790
|
+
},
|
|
23791
|
+
"additionalProperties": false
|
|
23792
|
+
}
|
|
23793
|
+
},
|
|
23794
|
+
"additionalProperties": false
|
|
23698
23795
|
}
|
|
23699
23796
|
]
|
|
23700
23797
|
},
|
|
@@ -23936,145 +24033,6 @@
|
|
|
23936
24033
|
"summary": "Get a domain order"
|
|
23937
24034
|
}
|
|
23938
24035
|
},
|
|
23939
|
-
"/v1/domains/{domain}/registry": {
|
|
23940
|
-
"get": {
|
|
23941
|
-
"description": "This endpoint is deprecated and replaced with the endpoint [Get a domain's transfer status](https://vercel.com/docs/rest-api/reference/endpoints/domains-registrar/get-a-domains-transfer-status). Fetch domain transfer availability or transfer status if a transfer is in progress.",
|
|
23942
|
-
"operationId": "getDomainTransfer",
|
|
23943
|
-
"security": [
|
|
23944
|
-
{
|
|
23945
|
-
"bearerToken": []
|
|
23946
|
-
}
|
|
23947
|
-
],
|
|
23948
|
-
"summary": "Get domain transfer info (deprecated)",
|
|
23949
|
-
"tags": [
|
|
23950
|
-
"domains"
|
|
23951
|
-
],
|
|
23952
|
-
"responses": {
|
|
23953
|
-
"200": {
|
|
23954
|
-
"description": "",
|
|
23955
|
-
"content": {
|
|
23956
|
-
"application/json": {
|
|
23957
|
-
"schema": {
|
|
23958
|
-
"oneOf": [
|
|
23959
|
-
{
|
|
23960
|
-
"properties": {
|
|
23961
|
-
"reason": {
|
|
23962
|
-
"type": "string"
|
|
23963
|
-
},
|
|
23964
|
-
"status": {
|
|
23965
|
-
"type": "string"
|
|
23966
|
-
},
|
|
23967
|
-
"transferable": {
|
|
23968
|
-
"type": "boolean"
|
|
23969
|
-
},
|
|
23970
|
-
"transferPolicy": {
|
|
23971
|
-
"type": "string",
|
|
23972
|
-
"enum": [
|
|
23973
|
-
"charge-and-renew"
|
|
23974
|
-
]
|
|
23975
|
-
}
|
|
23976
|
-
},
|
|
23977
|
-
"required": [
|
|
23978
|
-
"reason",
|
|
23979
|
-
"status",
|
|
23980
|
-
"transferable",
|
|
23981
|
-
"transferPolicy"
|
|
23982
|
-
],
|
|
23983
|
-
"type": "object"
|
|
23984
|
-
},
|
|
23985
|
-
{
|
|
23986
|
-
"properties": {
|
|
23987
|
-
"transferable": {
|
|
23988
|
-
"type": "boolean",
|
|
23989
|
-
"description": "Whether or not the domain is transferable"
|
|
23990
|
-
},
|
|
23991
|
-
"transferPolicy": {
|
|
23992
|
-
"nullable": true,
|
|
23993
|
-
"type": "string",
|
|
23994
|
-
"enum": [
|
|
23995
|
-
"charge-and-renew",
|
|
23996
|
-
"no-charge-no-change",
|
|
23997
|
-
"no-change",
|
|
23998
|
-
"new-term",
|
|
23999
|
-
"not-supported"
|
|
24000
|
-
],
|
|
24001
|
-
"description": "The domain's transfer policy (depends on TLD requirements). `charge-and-renew`: transfer will charge for renewal and will renew the existing domain's registration. `no-charge-no-change`: transfer will have no change to registration period and does not require charge. `no-change`: transfer charge is required, but no change in registration period. `new-term`: transfer charge is required and a new registry term is set based on the transfer date. `not-supported`: transfers are not supported for this domain or TLD. `null`: This TLD is not supported by Vercel's Registrar."
|
|
24002
|
-
},
|
|
24003
|
-
"reason": {
|
|
24004
|
-
"type": "string",
|
|
24005
|
-
"description": "Description associated with transferable state."
|
|
24006
|
-
},
|
|
24007
|
-
"status": {
|
|
24008
|
-
"type": "string",
|
|
24009
|
-
"enum": [
|
|
24010
|
-
"completed",
|
|
24011
|
-
"undef",
|
|
24012
|
-
"pending_owner",
|
|
24013
|
-
"pending_admin",
|
|
24014
|
-
"pending_registry",
|
|
24015
|
-
"cancelled",
|
|
24016
|
-
"unknown"
|
|
24017
|
-
],
|
|
24018
|
-
"description": "The current state of an ongoing transfer. `pending_owner`: Awaiting approval by domain's admin contact (every transfer begins with this status). If approval is not given within five days, the transfer is cancelled. `pending_admin`: Waiting for approval by Vercel Registrar admin. `pending_registry`: Awaiting registry approval (the transfer completes after 7 days unless it is declined by the current registrar). `completed`: The transfer completed successfully. `cancelled`: The transfer was cancelled. `undef`: No transfer exists for this domain. `unknown`: This TLD is not supported by Vercel's Registrar."
|
|
24019
|
-
}
|
|
24020
|
-
},
|
|
24021
|
-
"required": [
|
|
24022
|
-
"transferable",
|
|
24023
|
-
"transferPolicy",
|
|
24024
|
-
"reason",
|
|
24025
|
-
"status"
|
|
24026
|
-
],
|
|
24027
|
-
"type": "object"
|
|
24028
|
-
}
|
|
24029
|
-
]
|
|
24030
|
-
}
|
|
24031
|
-
}
|
|
24032
|
-
}
|
|
24033
|
-
},
|
|
24034
|
-
"400": {
|
|
24035
|
-
"description": ""
|
|
24036
|
-
},
|
|
24037
|
-
"401": {
|
|
24038
|
-
"description": "The request is not authorized."
|
|
24039
|
-
},
|
|
24040
|
-
"403": {
|
|
24041
|
-
"description": "You do not have permission to access this resource."
|
|
24042
|
-
},
|
|
24043
|
-
"500": {
|
|
24044
|
-
"description": ""
|
|
24045
|
-
}
|
|
24046
|
-
},
|
|
24047
|
-
"parameters": [
|
|
24048
|
-
{
|
|
24049
|
-
"description": "The Team identifier to perform the request on behalf of.",
|
|
24050
|
-
"in": "query",
|
|
24051
|
-
"name": "teamId",
|
|
24052
|
-
"schema": {
|
|
24053
|
-
"type": "string",
|
|
24054
|
-
"example": "team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
24055
|
-
}
|
|
24056
|
-
},
|
|
24057
|
-
{
|
|
24058
|
-
"description": "The Team slug to perform the request on behalf of.",
|
|
24059
|
-
"in": "query",
|
|
24060
|
-
"name": "slug",
|
|
24061
|
-
"schema": {
|
|
24062
|
-
"type": "string",
|
|
24063
|
-
"example": "my-team-url-slug"
|
|
24064
|
-
}
|
|
24065
|
-
},
|
|
24066
|
-
{
|
|
24067
|
-
"name": "domain",
|
|
24068
|
-
"in": "path",
|
|
24069
|
-
"required": true,
|
|
24070
|
-
"schema": {
|
|
24071
|
-
"type": "string",
|
|
24072
|
-
"example": "example.com"
|
|
24073
|
-
}
|
|
24074
|
-
}
|
|
24075
|
-
]
|
|
24076
|
-
}
|
|
24077
|
-
},
|
|
24078
24036
|
"/v6/domains/{domain}/config": {
|
|
24079
24037
|
"get": {
|
|
24080
24038
|
"description": "Get a Domain's configuration.",
|
|
@@ -36193,6 +36151,14 @@
|
|
|
36193
36151
|
"type": "string"
|
|
36194
36152
|
}
|
|
36195
36153
|
},
|
|
36154
|
+
{
|
|
36155
|
+
"name": "integrationConfigurationId",
|
|
36156
|
+
"in": "query",
|
|
36157
|
+
"required": false,
|
|
36158
|
+
"schema": {
|
|
36159
|
+
"type": "string"
|
|
36160
|
+
}
|
|
36161
|
+
},
|
|
36196
36162
|
{
|
|
36197
36163
|
"name": "productIdOrSlug",
|
|
36198
36164
|
"in": "path",
|
|
@@ -36369,6 +36335,21 @@
|
|
|
36369
36335
|
"schema": {
|
|
36370
36336
|
"type": "object",
|
|
36371
36337
|
"properties": {
|
|
36338
|
+
"status": {
|
|
36339
|
+
"type": "string",
|
|
36340
|
+
"enum": [
|
|
36341
|
+
"ready",
|
|
36342
|
+
"pending",
|
|
36343
|
+
"onboarding",
|
|
36344
|
+
"suspended",
|
|
36345
|
+
"resumed",
|
|
36346
|
+
"uninstalled",
|
|
36347
|
+
"error"
|
|
36348
|
+
]
|
|
36349
|
+
},
|
|
36350
|
+
"externalId": {
|
|
36351
|
+
"type": "string"
|
|
36352
|
+
},
|
|
36372
36353
|
"billingPlan": {
|
|
36373
36354
|
"type": "object",
|
|
36374
36355
|
"required": [
|
|
@@ -39005,6 +38986,23 @@
|
|
|
39005
38986
|
"description": "The user or team ID that owns the configuration",
|
|
39006
38987
|
"example": "kr1PsOIzqEL5Xg6M4VZcZosf"
|
|
39007
38988
|
},
|
|
38989
|
+
"status": {
|
|
38990
|
+
"type": "string",
|
|
38991
|
+
"enum": [
|
|
38992
|
+
"pending",
|
|
38993
|
+
"ready",
|
|
38994
|
+
"onboarding",
|
|
38995
|
+
"suspended",
|
|
38996
|
+
"resumed",
|
|
38997
|
+
"error",
|
|
38998
|
+
"uninstalled"
|
|
38999
|
+
],
|
|
39000
|
+
"description": "The configuration status. Optional. If not defined, assume 'ready'."
|
|
39001
|
+
},
|
|
39002
|
+
"externalId": {
|
|
39003
|
+
"type": "string",
|
|
39004
|
+
"description": "An external identifier defined by the integration vendor."
|
|
39005
|
+
},
|
|
39008
39006
|
"projects": {
|
|
39009
39007
|
"items": {
|
|
39010
39008
|
"type": "string"
|
|
@@ -39193,6 +39191,23 @@
|
|
|
39193
39191
|
"description": "The user or team ID that owns the configuration",
|
|
39194
39192
|
"example": "kr1PsOIzqEL5Xg6M4VZcZosf"
|
|
39195
39193
|
},
|
|
39194
|
+
"status": {
|
|
39195
|
+
"type": "string",
|
|
39196
|
+
"enum": [
|
|
39197
|
+
"pending",
|
|
39198
|
+
"ready",
|
|
39199
|
+
"onboarding",
|
|
39200
|
+
"suspended",
|
|
39201
|
+
"resumed",
|
|
39202
|
+
"error",
|
|
39203
|
+
"uninstalled"
|
|
39204
|
+
],
|
|
39205
|
+
"description": "The configuration status. Optional. If not defined, assume 'ready'."
|
|
39206
|
+
},
|
|
39207
|
+
"externalId": {
|
|
39208
|
+
"type": "string",
|
|
39209
|
+
"description": "An external identifier defined by the integration vendor."
|
|
39210
|
+
},
|
|
39196
39211
|
"projects": {
|
|
39197
39212
|
"items": {
|
|
39198
39213
|
"type": "string"
|
|
@@ -39407,9 +39422,9 @@
|
|
|
39407
39422
|
"level": {
|
|
39408
39423
|
"type": "string",
|
|
39409
39424
|
"enum": [
|
|
39425
|
+
"error",
|
|
39410
39426
|
"info",
|
|
39411
|
-
"warn"
|
|
39412
|
-
"error"
|
|
39427
|
+
"warn"
|
|
39413
39428
|
]
|
|
39414
39429
|
},
|
|
39415
39430
|
"title": {
|
|
@@ -39701,6 +39716,23 @@
|
|
|
39701
39716
|
"description": "A timestamp that tells you when the configuration deletion has been started for cases when the deletion needs to be settled/approved by partners, such as when marketplace invoices have been paid.",
|
|
39702
39717
|
"example": 1558531915505
|
|
39703
39718
|
},
|
|
39719
|
+
"status": {
|
|
39720
|
+
"type": "string",
|
|
39721
|
+
"enum": [
|
|
39722
|
+
"pending",
|
|
39723
|
+
"ready",
|
|
39724
|
+
"onboarding",
|
|
39725
|
+
"suspended",
|
|
39726
|
+
"resumed",
|
|
39727
|
+
"error",
|
|
39728
|
+
"uninstalled"
|
|
39729
|
+
],
|
|
39730
|
+
"description": "The configuration status. Optional. If not defined, assume 'ready'."
|
|
39731
|
+
},
|
|
39732
|
+
"externalId": {
|
|
39733
|
+
"type": "string",
|
|
39734
|
+
"description": "An external identifier defined by the integration vendor."
|
|
39735
|
+
},
|
|
39704
39736
|
"type": {
|
|
39705
39737
|
"type": "string",
|
|
39706
39738
|
"enum": [
|
|
@@ -39757,6 +39789,23 @@
|
|
|
39757
39789
|
"description": "The user or team ID that owns the configuration",
|
|
39758
39790
|
"example": "kr1PsOIzqEL5Xg6M4VZcZosf"
|
|
39759
39791
|
},
|
|
39792
|
+
"status": {
|
|
39793
|
+
"type": "string",
|
|
39794
|
+
"enum": [
|
|
39795
|
+
"pending",
|
|
39796
|
+
"ready",
|
|
39797
|
+
"onboarding",
|
|
39798
|
+
"suspended",
|
|
39799
|
+
"resumed",
|
|
39800
|
+
"error",
|
|
39801
|
+
"uninstalled"
|
|
39802
|
+
],
|
|
39803
|
+
"description": "The configuration status. Optional. If not defined, assume 'ready'."
|
|
39804
|
+
},
|
|
39805
|
+
"externalId": {
|
|
39806
|
+
"type": "string",
|
|
39807
|
+
"description": "An external identifier defined by the integration vendor."
|
|
39808
|
+
},
|
|
39760
39809
|
"projects": {
|
|
39761
39810
|
"items": {
|
|
39762
39811
|
"type": "string"
|
|
@@ -40292,34 +40341,34 @@
|
|
|
40292
40341
|
"minLength": {
|
|
40293
40342
|
"type": "object",
|
|
40294
40343
|
"properties": {
|
|
40295
|
-
"__@BRAND@
|
|
40344
|
+
"__@BRAND@547391": {
|
|
40296
40345
|
"type": "object"
|
|
40297
40346
|
}
|
|
40298
40347
|
},
|
|
40299
40348
|
"required": [
|
|
40300
|
-
"__@BRAND@
|
|
40349
|
+
"__@BRAND@547391"
|
|
40301
40350
|
]
|
|
40302
40351
|
},
|
|
40303
40352
|
"maxLength": {
|
|
40304
40353
|
"type": "object",
|
|
40305
40354
|
"properties": {
|
|
40306
|
-
"__@BRAND@
|
|
40355
|
+
"__@BRAND@547391": {
|
|
40307
40356
|
"type": "object"
|
|
40308
40357
|
}
|
|
40309
40358
|
},
|
|
40310
40359
|
"required": [
|
|
40311
|
-
"__@BRAND@
|
|
40360
|
+
"__@BRAND@547391"
|
|
40312
40361
|
]
|
|
40313
40362
|
},
|
|
40314
40363
|
"pattern": {
|
|
40315
40364
|
"type": "object",
|
|
40316
40365
|
"properties": {
|
|
40317
|
-
"__@BRAND@
|
|
40366
|
+
"__@BRAND@547391": {
|
|
40318
40367
|
"type": "object"
|
|
40319
40368
|
}
|
|
40320
40369
|
},
|
|
40321
40370
|
"required": [
|
|
40322
|
-
"__@BRAND@
|
|
40371
|
+
"__@BRAND@547391"
|
|
40323
40372
|
]
|
|
40324
40373
|
},
|
|
40325
40374
|
"default": {
|
|
@@ -41002,34 +41051,34 @@
|
|
|
41002
41051
|
"minLength": {
|
|
41003
41052
|
"type": "object",
|
|
41004
41053
|
"properties": {
|
|
41005
|
-
"__@BRAND@
|
|
41054
|
+
"__@BRAND@547391": {
|
|
41006
41055
|
"type": "object"
|
|
41007
41056
|
}
|
|
41008
41057
|
},
|
|
41009
41058
|
"required": [
|
|
41010
|
-
"__@BRAND@
|
|
41059
|
+
"__@BRAND@547391"
|
|
41011
41060
|
]
|
|
41012
41061
|
},
|
|
41013
41062
|
"maxLength": {
|
|
41014
41063
|
"type": "object",
|
|
41015
41064
|
"properties": {
|
|
41016
|
-
"__@BRAND@
|
|
41065
|
+
"__@BRAND@547391": {
|
|
41017
41066
|
"type": "object"
|
|
41018
41067
|
}
|
|
41019
41068
|
},
|
|
41020
41069
|
"required": [
|
|
41021
|
-
"__@BRAND@
|
|
41070
|
+
"__@BRAND@547391"
|
|
41022
41071
|
]
|
|
41023
41072
|
},
|
|
41024
41073
|
"pattern": {
|
|
41025
41074
|
"type": "object",
|
|
41026
41075
|
"properties": {
|
|
41027
|
-
"__@BRAND@
|
|
41076
|
+
"__@BRAND@547391": {
|
|
41028
41077
|
"type": "object"
|
|
41029
41078
|
}
|
|
41030
41079
|
},
|
|
41031
41080
|
"required": [
|
|
41032
|
-
"__@BRAND@
|
|
41081
|
+
"__@BRAND@547391"
|
|
41033
41082
|
]
|
|
41034
41083
|
},
|
|
41035
41084
|
"default": {
|
|
@@ -41187,34 +41236,34 @@
|
|
|
41187
41236
|
"minLength": {
|
|
41188
41237
|
"type": "object",
|
|
41189
41238
|
"properties": {
|
|
41190
|
-
"__@BRAND@
|
|
41239
|
+
"__@BRAND@547391": {
|
|
41191
41240
|
"type": "object"
|
|
41192
41241
|
}
|
|
41193
41242
|
},
|
|
41194
41243
|
"required": [
|
|
41195
|
-
"__@BRAND@
|
|
41244
|
+
"__@BRAND@547391"
|
|
41196
41245
|
]
|
|
41197
41246
|
},
|
|
41198
41247
|
"maxLength": {
|
|
41199
41248
|
"type": "object",
|
|
41200
41249
|
"properties": {
|
|
41201
|
-
"__@BRAND@
|
|
41250
|
+
"__@BRAND@547391": {
|
|
41202
41251
|
"type": "object"
|
|
41203
41252
|
}
|
|
41204
41253
|
},
|
|
41205
41254
|
"required": [
|
|
41206
|
-
"__@BRAND@
|
|
41255
|
+
"__@BRAND@547391"
|
|
41207
41256
|
]
|
|
41208
41257
|
},
|
|
41209
41258
|
"pattern": {
|
|
41210
41259
|
"type": "object",
|
|
41211
41260
|
"properties": {
|
|
41212
|
-
"__@BRAND@
|
|
41261
|
+
"__@BRAND@547391": {
|
|
41213
41262
|
"type": "object"
|
|
41214
41263
|
}
|
|
41215
41264
|
},
|
|
41216
41265
|
"required": [
|
|
41217
|
-
"__@BRAND@
|
|
41266
|
+
"__@BRAND@547391"
|
|
41218
41267
|
]
|
|
41219
41268
|
},
|
|
41220
41269
|
"default": {
|
|
@@ -41525,12 +41574,12 @@
|
|
|
41525
41574
|
{
|
|
41526
41575
|
"type": "object",
|
|
41527
41576
|
"properties": {
|
|
41528
|
-
"__@BRAND@
|
|
41577
|
+
"__@BRAND@547391": {
|
|
41529
41578
|
"type": "object"
|
|
41530
41579
|
}
|
|
41531
41580
|
},
|
|
41532
41581
|
"required": [
|
|
41533
|
-
"__@BRAND@
|
|
41582
|
+
"__@BRAND@547391"
|
|
41534
41583
|
]
|
|
41535
41584
|
},
|
|
41536
41585
|
{
|
|
@@ -41538,12 +41587,12 @@
|
|
|
41538
41587
|
"value": {
|
|
41539
41588
|
"type": "object",
|
|
41540
41589
|
"properties": {
|
|
41541
|
-
"__@BRAND@
|
|
41590
|
+
"__@BRAND@547391": {
|
|
41542
41591
|
"type": "object"
|
|
41543
41592
|
}
|
|
41544
41593
|
},
|
|
41545
41594
|
"required": [
|
|
41546
|
-
"__@BRAND@
|
|
41595
|
+
"__@BRAND@547391"
|
|
41547
41596
|
]
|
|
41548
41597
|
},
|
|
41549
41598
|
"disabled": {
|
|
@@ -41612,34 +41661,34 @@
|
|
|
41612
41661
|
"minLength": {
|
|
41613
41662
|
"type": "object",
|
|
41614
41663
|
"properties": {
|
|
41615
|
-
"__@BRAND@
|
|
41664
|
+
"__@BRAND@547391": {
|
|
41616
41665
|
"type": "object"
|
|
41617
41666
|
}
|
|
41618
41667
|
},
|
|
41619
41668
|
"required": [
|
|
41620
|
-
"__@BRAND@
|
|
41669
|
+
"__@BRAND@547391"
|
|
41621
41670
|
]
|
|
41622
41671
|
},
|
|
41623
41672
|
"maxLength": {
|
|
41624
41673
|
"type": "object",
|
|
41625
41674
|
"properties": {
|
|
41626
|
-
"__@BRAND@
|
|
41675
|
+
"__@BRAND@547391": {
|
|
41627
41676
|
"type": "object"
|
|
41628
41677
|
}
|
|
41629
41678
|
},
|
|
41630
41679
|
"required": [
|
|
41631
|
-
"__@BRAND@
|
|
41680
|
+
"__@BRAND@547391"
|
|
41632
41681
|
]
|
|
41633
41682
|
},
|
|
41634
41683
|
"pattern": {
|
|
41635
41684
|
"type": "object",
|
|
41636
41685
|
"properties": {
|
|
41637
|
-
"__@BRAND@
|
|
41686
|
+
"__@BRAND@547391": {
|
|
41638
41687
|
"type": "object"
|
|
41639
41688
|
}
|
|
41640
41689
|
},
|
|
41641
41690
|
"required": [
|
|
41642
|
-
"__@BRAND@
|
|
41691
|
+
"__@BRAND@547391"
|
|
41643
41692
|
]
|
|
41644
41693
|
},
|
|
41645
41694
|
"default": {
|
|
@@ -41797,34 +41846,34 @@
|
|
|
41797
41846
|
"minLength": {
|
|
41798
41847
|
"type": "object",
|
|
41799
41848
|
"properties": {
|
|
41800
|
-
"__@BRAND@
|
|
41849
|
+
"__@BRAND@547391": {
|
|
41801
41850
|
"type": "object"
|
|
41802
41851
|
}
|
|
41803
41852
|
},
|
|
41804
41853
|
"required": [
|
|
41805
|
-
"__@BRAND@
|
|
41854
|
+
"__@BRAND@547391"
|
|
41806
41855
|
]
|
|
41807
41856
|
},
|
|
41808
41857
|
"maxLength": {
|
|
41809
41858
|
"type": "object",
|
|
41810
41859
|
"properties": {
|
|
41811
|
-
"__@BRAND@
|
|
41860
|
+
"__@BRAND@547391": {
|
|
41812
41861
|
"type": "object"
|
|
41813
41862
|
}
|
|
41814
41863
|
},
|
|
41815
41864
|
"required": [
|
|
41816
|
-
"__@BRAND@
|
|
41865
|
+
"__@BRAND@547391"
|
|
41817
41866
|
]
|
|
41818
41867
|
},
|
|
41819
41868
|
"pattern": {
|
|
41820
41869
|
"type": "object",
|
|
41821
41870
|
"properties": {
|
|
41822
|
-
"__@BRAND@
|
|
41871
|
+
"__@BRAND@547391": {
|
|
41823
41872
|
"type": "object"
|
|
41824
41873
|
}
|
|
41825
41874
|
},
|
|
41826
41875
|
"required": [
|
|
41827
|
-
"__@BRAND@
|
|
41876
|
+
"__@BRAND@547391"
|
|
41828
41877
|
]
|
|
41829
41878
|
},
|
|
41830
41879
|
"default": {
|
|
@@ -41913,12 +41962,12 @@
|
|
|
41913
41962
|
{
|
|
41914
41963
|
"type": "object",
|
|
41915
41964
|
"properties": {
|
|
41916
|
-
"__@BRAND@
|
|
41965
|
+
"__@BRAND@547391": {
|
|
41917
41966
|
"type": "object"
|
|
41918
41967
|
}
|
|
41919
41968
|
},
|
|
41920
41969
|
"required": [
|
|
41921
|
-
"__@BRAND@
|
|
41970
|
+
"__@BRAND@547391"
|
|
41922
41971
|
]
|
|
41923
41972
|
},
|
|
41924
41973
|
{
|
|
@@ -41926,12 +41975,12 @@
|
|
|
41926
41975
|
"value": {
|
|
41927
41976
|
"type": "object",
|
|
41928
41977
|
"properties": {
|
|
41929
|
-
"__@BRAND@
|
|
41978
|
+
"__@BRAND@547391": {
|
|
41930
41979
|
"type": "object"
|
|
41931
41980
|
}
|
|
41932
41981
|
},
|
|
41933
41982
|
"required": [
|
|
41934
|
-
"__@BRAND@
|
|
41983
|
+
"__@BRAND@547391"
|
|
41935
41984
|
]
|
|
41936
41985
|
},
|
|
41937
41986
|
"disabled": {
|
|
@@ -42117,12 +42166,12 @@
|
|
|
42117
42166
|
"items": {
|
|
42118
42167
|
"type": "object",
|
|
42119
42168
|
"properties": {
|
|
42120
|
-
"__@BRAND@
|
|
42169
|
+
"__@BRAND@547391": {
|
|
42121
42170
|
"type": "object"
|
|
42122
42171
|
}
|
|
42123
42172
|
},
|
|
42124
42173
|
"required": [
|
|
42125
|
-
"__@BRAND@
|
|
42174
|
+
"__@BRAND@547391"
|
|
42126
42175
|
]
|
|
42127
42176
|
},
|
|
42128
42177
|
"type": "array"
|
|
@@ -42131,12 +42180,12 @@
|
|
|
42131
42180
|
"items": {
|
|
42132
42181
|
"type": "object",
|
|
42133
42182
|
"properties": {
|
|
42134
|
-
"__@BRAND@
|
|
42183
|
+
"__@BRAND@547391": {
|
|
42135
42184
|
"type": "object"
|
|
42136
42185
|
}
|
|
42137
42186
|
},
|
|
42138
42187
|
"required": [
|
|
42139
|
-
"__@BRAND@
|
|
42188
|
+
"__@BRAND@547391"
|
|
42140
42189
|
]
|
|
42141
42190
|
},
|
|
42142
42191
|
"type": "array"
|
|
@@ -42170,34 +42219,34 @@
|
|
|
42170
42219
|
"minLength": {
|
|
42171
42220
|
"type": "object",
|
|
42172
42221
|
"properties": {
|
|
42173
|
-
"__@BRAND@
|
|
42222
|
+
"__@BRAND@547391": {
|
|
42174
42223
|
"type": "object"
|
|
42175
42224
|
}
|
|
42176
42225
|
},
|
|
42177
42226
|
"required": [
|
|
42178
|
-
"__@BRAND@
|
|
42227
|
+
"__@BRAND@547391"
|
|
42179
42228
|
]
|
|
42180
42229
|
},
|
|
42181
42230
|
"maxLength": {
|
|
42182
42231
|
"type": "object",
|
|
42183
42232
|
"properties": {
|
|
42184
|
-
"__@BRAND@
|
|
42233
|
+
"__@BRAND@547391": {
|
|
42185
42234
|
"type": "object"
|
|
42186
42235
|
}
|
|
42187
42236
|
},
|
|
42188
42237
|
"required": [
|
|
42189
|
-
"__@BRAND@
|
|
42238
|
+
"__@BRAND@547391"
|
|
42190
42239
|
]
|
|
42191
42240
|
},
|
|
42192
42241
|
"pattern": {
|
|
42193
42242
|
"type": "object",
|
|
42194
42243
|
"properties": {
|
|
42195
|
-
"__@BRAND@
|
|
42244
|
+
"__@BRAND@547391": {
|
|
42196
42245
|
"type": "object"
|
|
42197
42246
|
}
|
|
42198
42247
|
},
|
|
42199
42248
|
"required": [
|
|
42200
|
-
"__@BRAND@
|
|
42249
|
+
"__@BRAND@547391"
|
|
42201
42250
|
]
|
|
42202
42251
|
},
|
|
42203
42252
|
"default": {
|
|
@@ -42331,12 +42380,12 @@
|
|
|
42331
42380
|
"value": {
|
|
42332
42381
|
"type": "object",
|
|
42333
42382
|
"properties": {
|
|
42334
|
-
"__@BRAND@
|
|
42383
|
+
"__@BRAND@547391": {
|
|
42335
42384
|
"type": "object"
|
|
42336
42385
|
}
|
|
42337
42386
|
},
|
|
42338
42387
|
"required": [
|
|
42339
|
-
"__@BRAND@
|
|
42388
|
+
"__@BRAND@547391"
|
|
42340
42389
|
]
|
|
42341
42390
|
},
|
|
42342
42391
|
"disabled": {
|
|
@@ -44371,6 +44420,9 @@
|
|
|
44371
44420
|
],
|
|
44372
44421
|
"type": "object"
|
|
44373
44422
|
},
|
|
44423
|
+
"appliedCve55182Migration": {
|
|
44424
|
+
"type": "boolean"
|
|
44425
|
+
},
|
|
44374
44426
|
"speedInsights": {
|
|
44375
44427
|
"properties": {
|
|
44376
44428
|
"id": {
|
|
@@ -45488,8 +45540,7 @@
|
|
|
45488
45540
|
"owner_id",
|
|
45489
45541
|
"project",
|
|
45490
45542
|
"project_id",
|
|
45491
|
-
"environment"
|
|
45492
|
-
"plan"
|
|
45543
|
+
"environment"
|
|
45493
45544
|
],
|
|
45494
45545
|
"type": "object"
|
|
45495
45546
|
},
|
|
@@ -46343,6 +46394,12 @@
|
|
|
46343
46394
|
"skewProtectionMaxAge": {
|
|
46344
46395
|
"type": "number"
|
|
46345
46396
|
},
|
|
46397
|
+
"skewProtectionAllowedDomains": {
|
|
46398
|
+
"items": {
|
|
46399
|
+
"type": "string"
|
|
46400
|
+
},
|
|
46401
|
+
"type": "array"
|
|
46402
|
+
},
|
|
46346
46403
|
"skipGitConnectDuringLink": {
|
|
46347
46404
|
"type": "boolean"
|
|
46348
46405
|
},
|
|
@@ -46385,6 +46442,16 @@
|
|
|
46385
46442
|
"prod_deployment_urls_and_all_previews",
|
|
46386
46443
|
"all_except_custom_domains"
|
|
46387
46444
|
]
|
|
46445
|
+
},
|
|
46446
|
+
"cve55182MigrationAppliedFrom": {
|
|
46447
|
+
"nullable": true,
|
|
46448
|
+
"type": "string",
|
|
46449
|
+
"enum": [
|
|
46450
|
+
"preview",
|
|
46451
|
+
"all",
|
|
46452
|
+
"prod_deployment_urls_and_all_previews",
|
|
46453
|
+
"all_except_custom_domains"
|
|
46454
|
+
]
|
|
46388
46455
|
}
|
|
46389
46456
|
},
|
|
46390
46457
|
"required": [
|
|
@@ -46606,8 +46673,7 @@
|
|
|
46606
46673
|
"owner_id",
|
|
46607
46674
|
"project",
|
|
46608
46675
|
"project_id",
|
|
46609
|
-
"environment"
|
|
46610
|
-
"plan"
|
|
46676
|
+
"environment"
|
|
46611
46677
|
],
|
|
46612
46678
|
"type": "object"
|
|
46613
46679
|
},
|
|
@@ -49367,6 +49433,9 @@
|
|
|
49367
49433
|
],
|
|
49368
49434
|
"type": "object"
|
|
49369
49435
|
},
|
|
49436
|
+
"appliedCve55182Migration": {
|
|
49437
|
+
"type": "boolean"
|
|
49438
|
+
},
|
|
49370
49439
|
"speedInsights": {
|
|
49371
49440
|
"properties": {
|
|
49372
49441
|
"id": {
|
|
@@ -50484,8 +50553,7 @@
|
|
|
50484
50553
|
"owner_id",
|
|
50485
50554
|
"project",
|
|
50486
50555
|
"project_id",
|
|
50487
|
-
"environment"
|
|
50488
|
-
"plan"
|
|
50556
|
+
"environment"
|
|
50489
50557
|
],
|
|
50490
50558
|
"type": "object"
|
|
50491
50559
|
},
|
|
@@ -51339,6 +51407,12 @@
|
|
|
51339
51407
|
"skewProtectionMaxAge": {
|
|
51340
51408
|
"type": "number"
|
|
51341
51409
|
},
|
|
51410
|
+
"skewProtectionAllowedDomains": {
|
|
51411
|
+
"items": {
|
|
51412
|
+
"type": "string"
|
|
51413
|
+
},
|
|
51414
|
+
"type": "array"
|
|
51415
|
+
},
|
|
51342
51416
|
"skipGitConnectDuringLink": {
|
|
51343
51417
|
"type": "boolean"
|
|
51344
51418
|
},
|
|
@@ -51381,6 +51455,16 @@
|
|
|
51381
51455
|
"prod_deployment_urls_and_all_previews",
|
|
51382
51456
|
"all_except_custom_domains"
|
|
51383
51457
|
]
|
|
51458
|
+
},
|
|
51459
|
+
"cve55182MigrationAppliedFrom": {
|
|
51460
|
+
"nullable": true,
|
|
51461
|
+
"type": "string",
|
|
51462
|
+
"enum": [
|
|
51463
|
+
"preview",
|
|
51464
|
+
"all",
|
|
51465
|
+
"prod_deployment_urls_and_all_previews",
|
|
51466
|
+
"all_except_custom_domains"
|
|
51467
|
+
]
|
|
51384
51468
|
}
|
|
51385
51469
|
},
|
|
51386
51470
|
"required": [
|
|
@@ -51602,8 +51686,7 @@
|
|
|
51602
51686
|
"owner_id",
|
|
51603
51687
|
"project",
|
|
51604
51688
|
"project_id",
|
|
51605
|
-
"environment"
|
|
51606
|
-
"plan"
|
|
51689
|
+
"environment"
|
|
51607
51690
|
],
|
|
51608
51691
|
"type": "object"
|
|
51609
51692
|
},
|
|
@@ -54163,6 +54246,12 @@
|
|
|
54163
54246
|
"type": "boolean",
|
|
54164
54247
|
"nullable": true
|
|
54165
54248
|
},
|
|
54249
|
+
"previewDeploymentSuffix": {
|
|
54250
|
+
"description": "Custom domain suffix for preview deployments. Takes precedence over team-level suffix. Must be a domain owned by the team.",
|
|
54251
|
+
"type": "string",
|
|
54252
|
+
"maxLength": 253,
|
|
54253
|
+
"nullable": true
|
|
54254
|
+
},
|
|
54166
54255
|
"buildCommand": {
|
|
54167
54256
|
"description": "The build command for this project. When `null` is used this value will be automatically detected",
|
|
54168
54257
|
"maxLength": 256,
|
|
@@ -54572,6 +54661,9 @@
|
|
|
54572
54661
|
],
|
|
54573
54662
|
"type": "object"
|
|
54574
54663
|
},
|
|
54664
|
+
"appliedCve55182Migration": {
|
|
54665
|
+
"type": "boolean"
|
|
54666
|
+
},
|
|
54575
54667
|
"speedInsights": {
|
|
54576
54668
|
"properties": {
|
|
54577
54669
|
"id": {
|
|
@@ -55687,8 +55779,7 @@
|
|
|
55687
55779
|
"owner_id",
|
|
55688
55780
|
"project",
|
|
55689
55781
|
"project_id",
|
|
55690
|
-
"environment"
|
|
55691
|
-
"plan"
|
|
55782
|
+
"environment"
|
|
55692
55783
|
],
|
|
55693
55784
|
"type": "object"
|
|
55694
55785
|
},
|
|
@@ -56542,6 +56633,12 @@
|
|
|
56542
56633
|
"skewProtectionMaxAge": {
|
|
56543
56634
|
"type": "number"
|
|
56544
56635
|
},
|
|
56636
|
+
"skewProtectionAllowedDomains": {
|
|
56637
|
+
"items": {
|
|
56638
|
+
"type": "string"
|
|
56639
|
+
},
|
|
56640
|
+
"type": "array"
|
|
56641
|
+
},
|
|
56545
56642
|
"skipGitConnectDuringLink": {
|
|
56546
56643
|
"type": "boolean"
|
|
56547
56644
|
},
|
|
@@ -56584,6 +56681,16 @@
|
|
|
56584
56681
|
"prod_deployment_urls_and_all_previews",
|
|
56585
56682
|
"all_except_custom_domains"
|
|
56586
56683
|
]
|
|
56684
|
+
},
|
|
56685
|
+
"cve55182MigrationAppliedFrom": {
|
|
56686
|
+
"nullable": true,
|
|
56687
|
+
"type": "string",
|
|
56688
|
+
"enum": [
|
|
56689
|
+
"preview",
|
|
56690
|
+
"all",
|
|
56691
|
+
"prod_deployment_urls_and_all_previews",
|
|
56692
|
+
"all_except_custom_domains"
|
|
56693
|
+
]
|
|
56587
56694
|
}
|
|
56588
56695
|
},
|
|
56589
56696
|
"required": [
|
|
@@ -56805,8 +56912,7 @@
|
|
|
56805
56912
|
"owner_id",
|
|
56806
56913
|
"project",
|
|
56807
56914
|
"project_id",
|
|
56808
|
-
"environment"
|
|
56809
|
-
"plan"
|
|
56915
|
+
"environment"
|
|
56810
56916
|
],
|
|
56811
56917
|
"type": "object"
|
|
56812
56918
|
},
|
|
@@ -59401,6 +59507,9 @@
|
|
|
59401
59507
|
],
|
|
59402
59508
|
"type": "object"
|
|
59403
59509
|
},
|
|
59510
|
+
"appliedCve55182Migration": {
|
|
59511
|
+
"type": "boolean"
|
|
59512
|
+
},
|
|
59404
59513
|
"speedInsights": {
|
|
59405
59514
|
"properties": {
|
|
59406
59515
|
"id": {
|
|
@@ -60509,8 +60618,7 @@
|
|
|
60509
60618
|
"owner_id",
|
|
60510
60619
|
"project",
|
|
60511
60620
|
"project_id",
|
|
60512
|
-
"environment"
|
|
60513
|
-
"plan"
|
|
60621
|
+
"environment"
|
|
60514
60622
|
],
|
|
60515
60623
|
"type": "object"
|
|
60516
60624
|
},
|
|
@@ -61364,6 +61472,12 @@
|
|
|
61364
61472
|
"skewProtectionMaxAge": {
|
|
61365
61473
|
"type": "number"
|
|
61366
61474
|
},
|
|
61475
|
+
"skewProtectionAllowedDomains": {
|
|
61476
|
+
"items": {
|
|
61477
|
+
"type": "string"
|
|
61478
|
+
},
|
|
61479
|
+
"type": "array"
|
|
61480
|
+
},
|
|
61367
61481
|
"skipGitConnectDuringLink": {
|
|
61368
61482
|
"type": "boolean"
|
|
61369
61483
|
},
|
|
@@ -61406,6 +61520,16 @@
|
|
|
61406
61520
|
"prod_deployment_urls_and_all_previews",
|
|
61407
61521
|
"all_except_custom_domains"
|
|
61408
61522
|
]
|
|
61523
|
+
},
|
|
61524
|
+
"cve55182MigrationAppliedFrom": {
|
|
61525
|
+
"nullable": true,
|
|
61526
|
+
"type": "string",
|
|
61527
|
+
"enum": [
|
|
61528
|
+
"preview",
|
|
61529
|
+
"all",
|
|
61530
|
+
"prod_deployment_urls_and_all_previews",
|
|
61531
|
+
"all_except_custom_domains"
|
|
61532
|
+
]
|
|
61409
61533
|
}
|
|
61410
61534
|
},
|
|
61411
61535
|
"required": [
|
|
@@ -61627,8 +61751,7 @@
|
|
|
61627
61751
|
"owner_id",
|
|
61628
61752
|
"project",
|
|
61629
61753
|
"project_id",
|
|
61630
|
-
"environment"
|
|
61631
|
-
"plan"
|
|
61754
|
+
"environment"
|
|
61632
61755
|
],
|
|
61633
61756
|
"type": "object"
|
|
61634
61757
|
},
|
|
@@ -64414,6 +64537,15 @@
|
|
|
64414
64537
|
"minimum": 0,
|
|
64415
64538
|
"type": "integer"
|
|
64416
64539
|
},
|
|
64540
|
+
"skewProtectionAllowedDomains": {
|
|
64541
|
+
"description": "Cross-site domains allowed to fetch skew-protected assets (hostnames, optionally with leading wildcard like *.example.com).",
|
|
64542
|
+
"type": "array",
|
|
64543
|
+
"items": {
|
|
64544
|
+
"type": "string",
|
|
64545
|
+
"maxLength": 254
|
|
64546
|
+
},
|
|
64547
|
+
"maxItems": 12
|
|
64548
|
+
},
|
|
64417
64549
|
"skipGitConnectDuringLink": {
|
|
64418
64550
|
"description": "Opts-out of the message prompting a CLI user to connect a Git repository in `vercel link`.",
|
|
64419
64551
|
"type": "boolean",
|
|
@@ -80868,6 +81000,24 @@
|
|
|
80868
81000
|
"secretsSync": {
|
|
80869
81001
|
"type": "boolean"
|
|
80870
81002
|
},
|
|
81003
|
+
"secretRotation": {
|
|
81004
|
+
"oneOf": [
|
|
81005
|
+
{
|
|
81006
|
+
"type": "boolean"
|
|
81007
|
+
},
|
|
81008
|
+
{
|
|
81009
|
+
"properties": {
|
|
81010
|
+
"maxDelayHours": {
|
|
81011
|
+
"type": "number"
|
|
81012
|
+
}
|
|
81013
|
+
},
|
|
81014
|
+
"required": [
|
|
81015
|
+
"maxDelayHours"
|
|
81016
|
+
],
|
|
81017
|
+
"type": "object"
|
|
81018
|
+
}
|
|
81019
|
+
]
|
|
81020
|
+
},
|
|
80871
81021
|
"projects": {
|
|
80872
81022
|
"type": "boolean"
|
|
80873
81023
|
}
|
|
@@ -80952,6 +81102,24 @@
|
|
|
80952
81102
|
"secretsSync": {
|
|
80953
81103
|
"type": "boolean"
|
|
80954
81104
|
},
|
|
81105
|
+
"secretRotation": {
|
|
81106
|
+
"oneOf": [
|
|
81107
|
+
{
|
|
81108
|
+
"type": "boolean"
|
|
81109
|
+
},
|
|
81110
|
+
{
|
|
81111
|
+
"properties": {
|
|
81112
|
+
"maxDelayHours": {
|
|
81113
|
+
"type": "number"
|
|
81114
|
+
}
|
|
81115
|
+
},
|
|
81116
|
+
"required": [
|
|
81117
|
+
"maxDelayHours"
|
|
81118
|
+
],
|
|
81119
|
+
"type": "object"
|
|
81120
|
+
}
|
|
81121
|
+
]
|
|
81122
|
+
},
|
|
80955
81123
|
"sandbox": {
|
|
80956
81124
|
"type": "boolean"
|
|
80957
81125
|
},
|
|
@@ -81001,34 +81169,34 @@
|
|
|
81001
81169
|
"maxLength": {
|
|
81002
81170
|
"type": "object",
|
|
81003
81171
|
"properties": {
|
|
81004
|
-
"__@BRAND@
|
|
81172
|
+
"__@BRAND@8845": {
|
|
81005
81173
|
"type": "object"
|
|
81006
81174
|
}
|
|
81007
81175
|
},
|
|
81008
81176
|
"required": [
|
|
81009
|
-
"__@BRAND@
|
|
81177
|
+
"__@BRAND@8845"
|
|
81010
81178
|
]
|
|
81011
81179
|
},
|
|
81012
81180
|
"minLength": {
|
|
81013
81181
|
"type": "object",
|
|
81014
81182
|
"properties": {
|
|
81015
|
-
"__@BRAND@
|
|
81183
|
+
"__@BRAND@8845": {
|
|
81016
81184
|
"type": "object"
|
|
81017
81185
|
}
|
|
81018
81186
|
},
|
|
81019
81187
|
"required": [
|
|
81020
|
-
"__@BRAND@
|
|
81188
|
+
"__@BRAND@8845"
|
|
81021
81189
|
]
|
|
81022
81190
|
},
|
|
81023
81191
|
"pattern": {
|
|
81024
81192
|
"type": "object",
|
|
81025
81193
|
"properties": {
|
|
81026
|
-
"__@BRAND@
|
|
81194
|
+
"__@BRAND@8845": {
|
|
81027
81195
|
"type": "object"
|
|
81028
81196
|
}
|
|
81029
81197
|
},
|
|
81030
81198
|
"required": [
|
|
81031
|
-
"__@BRAND@
|
|
81199
|
+
"__@BRAND@8845"
|
|
81032
81200
|
]
|
|
81033
81201
|
},
|
|
81034
81202
|
"description": {
|
|
@@ -81711,34 +81879,34 @@
|
|
|
81711
81879
|
"maxLength": {
|
|
81712
81880
|
"type": "object",
|
|
81713
81881
|
"properties": {
|
|
81714
|
-
"__@BRAND@
|
|
81882
|
+
"__@BRAND@8845": {
|
|
81715
81883
|
"type": "object"
|
|
81716
81884
|
}
|
|
81717
81885
|
},
|
|
81718
81886
|
"required": [
|
|
81719
|
-
"__@BRAND@
|
|
81887
|
+
"__@BRAND@8845"
|
|
81720
81888
|
]
|
|
81721
81889
|
},
|
|
81722
81890
|
"minLength": {
|
|
81723
81891
|
"type": "object",
|
|
81724
81892
|
"properties": {
|
|
81725
|
-
"__@BRAND@
|
|
81893
|
+
"__@BRAND@8845": {
|
|
81726
81894
|
"type": "object"
|
|
81727
81895
|
}
|
|
81728
81896
|
},
|
|
81729
81897
|
"required": [
|
|
81730
|
-
"__@BRAND@
|
|
81898
|
+
"__@BRAND@8845"
|
|
81731
81899
|
]
|
|
81732
81900
|
},
|
|
81733
81901
|
"pattern": {
|
|
81734
81902
|
"type": "object",
|
|
81735
81903
|
"properties": {
|
|
81736
|
-
"__@BRAND@
|
|
81904
|
+
"__@BRAND@8845": {
|
|
81737
81905
|
"type": "object"
|
|
81738
81906
|
}
|
|
81739
81907
|
},
|
|
81740
81908
|
"required": [
|
|
81741
|
-
"__@BRAND@
|
|
81909
|
+
"__@BRAND@8845"
|
|
81742
81910
|
]
|
|
81743
81911
|
},
|
|
81744
81912
|
"description": {
|
|
@@ -81887,34 +82055,34 @@
|
|
|
81887
82055
|
"minLength": {
|
|
81888
82056
|
"type": "object",
|
|
81889
82057
|
"properties": {
|
|
81890
|
-
"__@BRAND@
|
|
82058
|
+
"__@BRAND@8845": {
|
|
81891
82059
|
"type": "object"
|
|
81892
82060
|
}
|
|
81893
82061
|
},
|
|
81894
82062
|
"required": [
|
|
81895
|
-
"__@BRAND@
|
|
82063
|
+
"__@BRAND@8845"
|
|
81896
82064
|
]
|
|
81897
82065
|
},
|
|
81898
82066
|
"maxLength": {
|
|
81899
82067
|
"type": "object",
|
|
81900
82068
|
"properties": {
|
|
81901
|
-
"__@BRAND@
|
|
82069
|
+
"__@BRAND@8845": {
|
|
81902
82070
|
"type": "object"
|
|
81903
82071
|
}
|
|
81904
82072
|
},
|
|
81905
82073
|
"required": [
|
|
81906
|
-
"__@BRAND@
|
|
82074
|
+
"__@BRAND@8845"
|
|
81907
82075
|
]
|
|
81908
82076
|
},
|
|
81909
82077
|
"pattern": {
|
|
81910
82078
|
"type": "object",
|
|
81911
82079
|
"properties": {
|
|
81912
|
-
"__@BRAND@
|
|
82080
|
+
"__@BRAND@8845": {
|
|
81913
82081
|
"type": "object"
|
|
81914
82082
|
}
|
|
81915
82083
|
},
|
|
81916
82084
|
"required": [
|
|
81917
|
-
"__@BRAND@
|
|
82085
|
+
"__@BRAND@8845"
|
|
81918
82086
|
]
|
|
81919
82087
|
},
|
|
81920
82088
|
"default": {
|
|
@@ -82231,12 +82399,12 @@
|
|
|
82231
82399
|
{
|
|
82232
82400
|
"type": "object",
|
|
82233
82401
|
"properties": {
|
|
82234
|
-
"__@BRAND@
|
|
82402
|
+
"__@BRAND@8845": {
|
|
82235
82403
|
"type": "object"
|
|
82236
82404
|
}
|
|
82237
82405
|
},
|
|
82238
82406
|
"required": [
|
|
82239
|
-
"__@BRAND@
|
|
82407
|
+
"__@BRAND@8845"
|
|
82240
82408
|
]
|
|
82241
82409
|
},
|
|
82242
82410
|
{
|
|
@@ -82244,12 +82412,12 @@
|
|
|
82244
82412
|
"value": {
|
|
82245
82413
|
"type": "object",
|
|
82246
82414
|
"properties": {
|
|
82247
|
-
"__@BRAND@
|
|
82415
|
+
"__@BRAND@8845": {
|
|
82248
82416
|
"type": "object"
|
|
82249
82417
|
}
|
|
82250
82418
|
},
|
|
82251
82419
|
"required": [
|
|
82252
|
-
"__@BRAND@
|
|
82420
|
+
"__@BRAND@8845"
|
|
82253
82421
|
]
|
|
82254
82422
|
},
|
|
82255
82423
|
"disabled": {
|
|
@@ -82321,34 +82489,34 @@
|
|
|
82321
82489
|
"maxLength": {
|
|
82322
82490
|
"type": "object",
|
|
82323
82491
|
"properties": {
|
|
82324
|
-
"__@BRAND@
|
|
82492
|
+
"__@BRAND@8845": {
|
|
82325
82493
|
"type": "object"
|
|
82326
82494
|
}
|
|
82327
82495
|
},
|
|
82328
82496
|
"required": [
|
|
82329
|
-
"__@BRAND@
|
|
82497
|
+
"__@BRAND@8845"
|
|
82330
82498
|
]
|
|
82331
82499
|
},
|
|
82332
82500
|
"minLength": {
|
|
82333
82501
|
"type": "object",
|
|
82334
82502
|
"properties": {
|
|
82335
|
-
"__@BRAND@
|
|
82503
|
+
"__@BRAND@8845": {
|
|
82336
82504
|
"type": "object"
|
|
82337
82505
|
}
|
|
82338
82506
|
},
|
|
82339
82507
|
"required": [
|
|
82340
|
-
"__@BRAND@
|
|
82508
|
+
"__@BRAND@8845"
|
|
82341
82509
|
]
|
|
82342
82510
|
},
|
|
82343
82511
|
"pattern": {
|
|
82344
82512
|
"type": "object",
|
|
82345
82513
|
"properties": {
|
|
82346
|
-
"__@BRAND@
|
|
82514
|
+
"__@BRAND@8845": {
|
|
82347
82515
|
"type": "object"
|
|
82348
82516
|
}
|
|
82349
82517
|
},
|
|
82350
82518
|
"required": [
|
|
82351
|
-
"__@BRAND@
|
|
82519
|
+
"__@BRAND@8845"
|
|
82352
82520
|
]
|
|
82353
82521
|
},
|
|
82354
82522
|
"description": {
|
|
@@ -82498,34 +82666,34 @@
|
|
|
82498
82666
|
"maxLength": {
|
|
82499
82667
|
"type": "object",
|
|
82500
82668
|
"properties": {
|
|
82501
|
-
"__@BRAND@
|
|
82669
|
+
"__@BRAND@8845": {
|
|
82502
82670
|
"type": "object"
|
|
82503
82671
|
}
|
|
82504
82672
|
},
|
|
82505
82673
|
"required": [
|
|
82506
|
-
"__@BRAND@
|
|
82674
|
+
"__@BRAND@8845"
|
|
82507
82675
|
]
|
|
82508
82676
|
},
|
|
82509
82677
|
"minLength": {
|
|
82510
82678
|
"type": "object",
|
|
82511
82679
|
"properties": {
|
|
82512
|
-
"__@BRAND@
|
|
82680
|
+
"__@BRAND@8845": {
|
|
82513
82681
|
"type": "object"
|
|
82514
82682
|
}
|
|
82515
82683
|
},
|
|
82516
82684
|
"required": [
|
|
82517
|
-
"__@BRAND@
|
|
82685
|
+
"__@BRAND@8845"
|
|
82518
82686
|
]
|
|
82519
82687
|
},
|
|
82520
82688
|
"pattern": {
|
|
82521
82689
|
"type": "object",
|
|
82522
82690
|
"properties": {
|
|
82523
|
-
"__@BRAND@
|
|
82691
|
+
"__@BRAND@8845": {
|
|
82524
82692
|
"type": "object"
|
|
82525
82693
|
}
|
|
82526
82694
|
},
|
|
82527
82695
|
"required": [
|
|
82528
|
-
"__@BRAND@
|
|
82696
|
+
"__@BRAND@8845"
|
|
82529
82697
|
]
|
|
82530
82698
|
},
|
|
82531
82699
|
"description": {
|
|
@@ -82656,12 +82824,12 @@
|
|
|
82656
82824
|
"value": {
|
|
82657
82825
|
"type": "object",
|
|
82658
82826
|
"properties": {
|
|
82659
|
-
"__@BRAND@
|
|
82827
|
+
"__@BRAND@8845": {
|
|
82660
82828
|
"type": "object"
|
|
82661
82829
|
}
|
|
82662
82830
|
},
|
|
82663
82831
|
"required": [
|
|
82664
|
-
"__@BRAND@
|
|
82832
|
+
"__@BRAND@8845"
|
|
82665
82833
|
]
|
|
82666
82834
|
},
|
|
82667
82835
|
"disabled": {
|
|
@@ -82917,12 +83085,12 @@
|
|
|
82917
83085
|
"value": {
|
|
82918
83086
|
"type": "object",
|
|
82919
83087
|
"properties": {
|
|
82920
|
-
"__@BRAND@
|
|
83088
|
+
"__@BRAND@8845": {
|
|
82921
83089
|
"type": "object"
|
|
82922
83090
|
}
|
|
82923
83091
|
},
|
|
82924
83092
|
"required": [
|
|
82925
|
-
"__@BRAND@
|
|
83093
|
+
"__@BRAND@8845"
|
|
82926
83094
|
]
|
|
82927
83095
|
},
|
|
82928
83096
|
"disabled": {
|
|
@@ -83158,6 +83326,22 @@
|
|
|
83158
83326
|
"paymentMethodRequired"
|
|
83159
83327
|
],
|
|
83160
83328
|
"type": "object"
|
|
83329
|
+
},
|
|
83330
|
+
"secretRotationRequestedAt": {
|
|
83331
|
+
"type": "number",
|
|
83332
|
+
"description": "The timestamp when secret rotation was requested."
|
|
83333
|
+
},
|
|
83334
|
+
"secretRotationRequestedReason": {
|
|
83335
|
+
"type": "string",
|
|
83336
|
+
"description": "The reason for the secret rotation request."
|
|
83337
|
+
},
|
|
83338
|
+
"secretRotationRequestedBy": {
|
|
83339
|
+
"type": "string",
|
|
83340
|
+
"description": "The ID of the user/team who requested the secret rotation."
|
|
83341
|
+
},
|
|
83342
|
+
"secretRotationCompletedAt": {
|
|
83343
|
+
"type": "number",
|
|
83344
|
+
"description": "The timestamp when secret rotation was completed."
|
|
83161
83345
|
}
|
|
83162
83346
|
},
|
|
83163
83347
|
"required": [
|
|
@@ -94272,6 +94456,10 @@
|
|
|
94272
94456
|
"type": "string",
|
|
94273
94457
|
"description": "Since November 2021. Guides the abuse scanner in build container."
|
|
94274
94458
|
},
|
|
94459
|
+
"scheduledUnblockAt": {
|
|
94460
|
+
"type": "string",
|
|
94461
|
+
"description": "Since December 2025. UTC timestamp string of when an auto-unblock is scheduled. Format: \"Wed, 03 Dec 2025 20:32:13 GMT\""
|
|
94462
|
+
},
|
|
94275
94463
|
"updatedAt": {
|
|
94276
94464
|
"type": "number",
|
|
94277
94465
|
"description": "Since November 2021"
|
|
@@ -94729,6 +94917,9 @@
|
|
|
94729
94917
|
}
|
|
94730
94918
|
},
|
|
94731
94919
|
"type": "object"
|
|
94920
|
+
},
|
|
94921
|
+
"bulkRedirectsFreeLimitOverride": {
|
|
94922
|
+
"type": "number"
|
|
94732
94923
|
}
|
|
94733
94924
|
},
|
|
94734
94925
|
"type": "object"
|
|
@@ -97193,6 +97384,16 @@
|
|
|
97193
97384
|
"prod_deployment_urls_and_all_previews",
|
|
97194
97385
|
"all_except_custom_domains"
|
|
97195
97386
|
]
|
|
97387
|
+
},
|
|
97388
|
+
"cve55182MigrationAppliedFrom": {
|
|
97389
|
+
"nullable": true,
|
|
97390
|
+
"type": "string",
|
|
97391
|
+
"enum": [
|
|
97392
|
+
"all",
|
|
97393
|
+
"preview",
|
|
97394
|
+
"prod_deployment_urls_and_all_previews",
|
|
97395
|
+
"all_except_custom_domains"
|
|
97396
|
+
]
|
|
97196
97397
|
}
|
|
97197
97398
|
},
|
|
97198
97399
|
"required": [
|
|
@@ -97224,6 +97425,16 @@
|
|
|
97224
97425
|
"prod_deployment_urls_and_all_previews",
|
|
97225
97426
|
"all_except_custom_domains"
|
|
97226
97427
|
]
|
|
97428
|
+
},
|
|
97429
|
+
"cve55182MigrationAppliedFrom": {
|
|
97430
|
+
"nullable": true,
|
|
97431
|
+
"type": "string",
|
|
97432
|
+
"enum": [
|
|
97433
|
+
"all",
|
|
97434
|
+
"preview",
|
|
97435
|
+
"prod_deployment_urls_and_all_previews",
|
|
97436
|
+
"all_except_custom_domains"
|
|
97437
|
+
]
|
|
97227
97438
|
}
|
|
97228
97439
|
},
|
|
97229
97440
|
"required": [
|
|
@@ -97443,8 +97654,12 @@
|
|
|
97443
97654
|
"enum": [
|
|
97444
97655
|
"enabled",
|
|
97445
97656
|
"disabled",
|
|
97446
|
-
"regenerated"
|
|
97657
|
+
"regenerated",
|
|
97658
|
+
"updated"
|
|
97447
97659
|
]
|
|
97660
|
+
},
|
|
97661
|
+
"envVarName": {
|
|
97662
|
+
"type": "string"
|
|
97448
97663
|
}
|
|
97449
97664
|
},
|
|
97450
97665
|
"required": [
|
|
@@ -98516,6 +98731,9 @@
|
|
|
98516
98731
|
"by": {
|
|
98517
98732
|
"type": "string"
|
|
98518
98733
|
},
|
|
98734
|
+
"byUid": {
|
|
98735
|
+
"type": "string"
|
|
98736
|
+
},
|
|
98519
98737
|
"reasons": {
|
|
98520
98738
|
"items": {
|
|
98521
98739
|
"properties": {
|
|
@@ -102090,6 +102308,10 @@
|
|
|
102090
102308
|
},
|
|
102091
102309
|
"type": "object",
|
|
102092
102310
|
"description": "An object containing infomation related to the amount of platform resources may be allocated to the User account."
|
|
102311
|
+
},
|
|
102312
|
+
"bulkRedirectsFreeLimitOverride": {
|
|
102313
|
+
"type": "number",
|
|
102314
|
+
"description": "An object containing infomation related to the amount of platform resources may be allocated to the User account."
|
|
102093
102315
|
}
|
|
102094
102316
|
},
|
|
102095
102317
|
"type": "object",
|