@vercel/sdk 1.10.2 → 1.10.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (98) hide show
  1. package/bin/mcp-server.js +582 -281
  2. package/bin/mcp-server.js.map +21 -21
  3. package/docs/sdks/aliases/README.md +1 -1
  4. package/esm/__tests__/aliases.test.js +1 -20
  5. package/esm/__tests__/aliases.test.js.map +1 -1
  6. package/esm/__tests__/teams.test.js +0 -2
  7. package/esm/__tests__/teams.test.js.map +1 -1
  8. package/esm/funcs/aliasesGetAlias.d.ts +2 -2
  9. package/esm/funcs/aliasesGetAlias.d.ts.map +1 -1
  10. package/esm/funcs/aliasesGetAlias.js +2 -2
  11. package/esm/funcs/aliasesGetAlias.js.map +1 -1
  12. package/esm/funcs/domainsGetDomainConfig.js +1 -0
  13. package/esm/funcs/domainsGetDomainConfig.js.map +1 -1
  14. package/esm/lib/config.d.ts +3 -3
  15. package/esm/lib/config.js +3 -3
  16. package/esm/mcp-server/mcp-server.js +1 -1
  17. package/esm/mcp-server/server.js +1 -1
  18. package/esm/models/createdeploymentop.d.ts +50 -50
  19. package/esm/models/createdeploymentop.d.ts.map +1 -1
  20. package/esm/models/createdeploymentop.js +28 -28
  21. package/esm/models/createdeploymentop.js.map +1 -1
  22. package/esm/models/createprojectenvop.d.ts +6 -6
  23. package/esm/models/createprojectenvop.js +2 -2
  24. package/esm/models/createprojectenvop.js.map +1 -1
  25. package/esm/models/createprojectop.d.ts +156 -156
  26. package/esm/models/createprojectop.d.ts.map +1 -1
  27. package/esm/models/createprojectop.js +148 -148
  28. package/esm/models/createprojectop.js.map +1 -1
  29. package/esm/models/editprojectenvop.d.ts +3 -3
  30. package/esm/models/editprojectenvop.js +1 -1
  31. package/esm/models/editprojectenvop.js.map +1 -1
  32. package/esm/models/filterprojectenvsop.d.ts +9 -9
  33. package/esm/models/filterprojectenvsop.js +3 -3
  34. package/esm/models/filterprojectenvsop.js.map +1 -1
  35. package/esm/models/getaliasop.d.ts +654 -0
  36. package/esm/models/getaliasop.d.ts.map +1 -1
  37. package/esm/models/getaliasop.js +546 -0
  38. package/esm/models/getaliasop.js.map +1 -1
  39. package/esm/models/getdomainconfigop.d.ts +63 -0
  40. package/esm/models/getdomainconfigop.d.ts.map +1 -1
  41. package/esm/models/getdomainconfigop.js +52 -0
  42. package/esm/models/getdomainconfigop.js.map +1 -1
  43. package/esm/models/getfirewallconfigop.d.ts +0 -3
  44. package/esm/models/getfirewallconfigop.d.ts.map +1 -1
  45. package/esm/models/getfirewallconfigop.js +0 -1
  46. package/esm/models/getfirewallconfigop.js.map +1 -1
  47. package/esm/models/listaliasesop.d.ts +66 -66
  48. package/esm/models/listaliasesop.d.ts.map +1 -1
  49. package/esm/models/listaliasesop.js +78 -78
  50. package/esm/models/listaliasesop.js.map +1 -1
  51. package/esm/models/listdeploymentaliasesop.d.ts +30 -30
  52. package/esm/models/listdeploymentaliasesop.d.ts.map +1 -1
  53. package/esm/models/listdeploymentaliasesop.js +34 -34
  54. package/esm/models/listdeploymentaliasesop.js.map +1 -1
  55. package/esm/models/putfirewallconfigop.d.ts +0 -3
  56. package/esm/models/putfirewallconfigop.d.ts.map +1 -1
  57. package/esm/models/putfirewallconfigop.js +0 -1
  58. package/esm/models/putfirewallconfigop.js.map +1 -1
  59. package/esm/models/removeprojectenvop.d.ts +9 -9
  60. package/esm/models/removeprojectenvop.js +3 -3
  61. package/esm/models/removeprojectenvop.js.map +1 -1
  62. package/esm/models/team.d.ts +0 -2
  63. package/esm/models/team.d.ts.map +1 -1
  64. package/esm/models/team.js +0 -2
  65. package/esm/models/team.js.map +1 -1
  66. package/esm/models/teamlimited.d.ts +0 -2
  67. package/esm/models/teamlimited.d.ts.map +1 -1
  68. package/esm/models/teamlimited.js +0 -2
  69. package/esm/models/teamlimited.js.map +1 -1
  70. package/esm/sdk/aliases.d.ts +2 -2
  71. package/esm/sdk/aliases.d.ts.map +1 -1
  72. package/examples/package-lock.json +1 -1
  73. package/examples/projectsUpdateProject.example.ts +1 -1
  74. package/jsr.json +1 -1
  75. package/package.json +1 -1
  76. package/src/__tests__/aliases.test.ts +1 -20
  77. package/src/__tests__/teams.test.ts +0 -2
  78. package/src/funcs/aliasesGetAlias.ts +6 -4
  79. package/src/funcs/domainsGetDomainConfig.ts +1 -0
  80. package/src/lib/config.ts +3 -3
  81. package/src/mcp-server/mcp-server.ts +1 -1
  82. package/src/mcp-server/server.ts +1 -1
  83. package/src/models/createdeploymentop.ts +76 -54
  84. package/src/models/createprojectenvop.ts +2 -2
  85. package/src/models/createprojectop.ts +286 -286
  86. package/src/models/editprojectenvop.ts +1 -1
  87. package/src/models/filterprojectenvsop.ts +3 -3
  88. package/src/models/getaliasop.ts +1262 -0
  89. package/src/models/getdomainconfigop.ts +129 -0
  90. package/src/models/getfirewallconfigop.ts +0 -1
  91. package/src/models/listaliasesop.ts +143 -124
  92. package/src/models/listdeploymentaliasesop.ts +70 -58
  93. package/src/models/putfirewallconfigop.ts +0 -1
  94. package/src/models/removeprojectenvop.ts +3 -3
  95. package/src/models/team.ts +0 -4
  96. package/src/models/teamlimited.ts +0 -4
  97. package/src/sdk/aliases.ts +2 -2
  98. package/vercel-spec.json +874 -509
package/vercel-spec.json CHANGED
@@ -12993,11 +12993,11 @@
12993
12993
  "status": {
12994
12994
  "type": "string",
12995
12995
  "enum": [
12996
- "error",
12997
- "timeout",
12998
12996
  "skipped",
12999
12997
  "pending",
13000
- "ready"
12998
+ "ready",
12999
+ "error",
13000
+ "timeout"
13001
13001
  ]
13002
13002
  },
13003
13003
  "startedAt": {
@@ -13173,19 +13173,19 @@
13173
13173
  "createdAt": {
13174
13174
  "type": "number"
13175
13175
  },
13176
+ "entrypoint": {
13177
+ "nullable": true,
13178
+ "type": "string"
13179
+ },
13176
13180
  "readyState": {
13177
13181
  "type": "string",
13178
13182
  "enum": [
13179
- "ERROR",
13180
13183
  "BUILDING",
13184
+ "ERROR",
13181
13185
  "INITIALIZING",
13182
13186
  "READY"
13183
13187
  ]
13184
13188
  },
13185
- "entrypoint": {
13186
- "nullable": true,
13187
- "type": "string"
13188
- },
13189
13189
  "readyStateAt": {
13190
13190
  "type": "number"
13191
13191
  },
@@ -14245,15 +14245,15 @@
14245
14245
  "functionType": {
14246
14246
  "type": "string",
14247
14247
  "enum": [
14248
- "standard",
14249
- "fluid"
14248
+ "fluid",
14249
+ "standard"
14250
14250
  ]
14251
14251
  },
14252
14252
  "functionMemoryType": {
14253
14253
  "type": "string",
14254
14254
  "enum": [
14255
- "standard_legacy",
14256
14255
  "standard",
14256
+ "standard_legacy",
14257
14257
  "performance"
14258
14258
  ]
14259
14259
  },
@@ -14742,8 +14742,8 @@
14742
14742
  "op": {
14743
14743
  "type": "string",
14744
14744
  "enum": [
14745
- "set",
14746
14745
  "append",
14746
+ "set",
14747
14747
  "delete"
14748
14748
  ]
14749
14749
  },
@@ -14873,12 +14873,12 @@
14873
14873
  "handle": {
14874
14874
  "type": "string",
14875
14875
  "enum": [
14876
- "filesystem",
14877
14876
  "error",
14877
+ "filesystem",
14878
14878
  "hit",
14879
14879
  "miss",
14880
- "resource",
14881
- "rewrite"
14880
+ "rewrite",
14881
+ "resource"
14882
14882
  ]
14883
14883
  },
14884
14884
  "src": {
@@ -15133,8 +15133,8 @@
15133
15133
  "ownerType": {
15134
15134
  "type": "string",
15135
15135
  "enum": [
15136
- "user",
15137
- "team"
15136
+ "team",
15137
+ "user"
15138
15138
  ]
15139
15139
  }
15140
15140
  },
@@ -15186,8 +15186,8 @@
15186
15186
  "ownerType": {
15187
15187
  "type": "string",
15188
15188
  "enum": [
15189
- "user",
15190
- "team"
15189
+ "team",
15190
+ "user"
15191
15191
  ]
15192
15192
  }
15193
15193
  },
@@ -15240,8 +15240,8 @@
15240
15240
  "ownerType": {
15241
15241
  "type": "string",
15242
15242
  "enum": [
15243
- "user",
15244
- "team"
15243
+ "team",
15244
+ "user"
15245
15245
  ]
15246
15246
  }
15247
15247
  },
@@ -20518,6 +20518,22 @@
20518
20518
  "type": "array",
20519
20519
  "description": "Which challenge types the domain can use for issuing certs."
20520
20520
  },
20521
+ "recommendedIPv4": {
20522
+ "items": {
20523
+ "type": "object",
20524
+ "description": "Recommended IPv4s for the domain. rank=1 is the preferred value(s) to use. Only using 1 ip value is acceptable."
20525
+ },
20526
+ "type": "array",
20527
+ "description": "Recommended IPv4s for the domain. rank=1 is the preferred value(s) to use. Only using 1 ip value is acceptable."
20528
+ },
20529
+ "recommendedCNAME": {
20530
+ "items": {
20531
+ "type": "object",
20532
+ "description": "Recommended CNAMEs for the domain. rank=1 is the preferred value to use."
20533
+ },
20534
+ "type": "array",
20535
+ "description": "Recommended CNAMEs for the domain. rank=1 is the preferred value to use."
20536
+ },
20521
20537
  "misconfigured": {
20522
20538
  "type": "boolean",
20523
20539
  "description": "Whether or not the domain is configured AND we can automatically generate a TLS certificate."
@@ -20567,6 +20583,16 @@
20567
20583
  "example": "example.com"
20568
20584
  }
20569
20585
  },
20586
+ {
20587
+ "name": "projectIdOrName",
20588
+ "description": "The project id or name that will be associated with the domain. Use this when the domain is not yet associated with a project.",
20589
+ "in": "query",
20590
+ "required": false,
20591
+ "schema": {
20592
+ "description": "The project id or name that will be associated with the domain. Use this when the domain is not yet associated with a project.",
20593
+ "type": "string"
20594
+ }
20595
+ },
20570
20596
  {
20571
20597
  "name": "strict",
20572
20598
  "description": "When true, the response will only include the nameservers assigned directly to the specified domain. When false and there are no nameservers assigned directly to the specified domain, the response will include the nameservers of the domain's parent zone.",
@@ -34127,10 +34153,10 @@
34127
34153
  "type": "string",
34128
34154
  "enum": [
34129
34155
  "system",
34130
- "secret",
34131
34156
  "encrypted",
34132
34157
  "plain",
34133
- "sensitive"
34158
+ "sensitive",
34159
+ "secret"
34134
34160
  ]
34135
34161
  },
34136
34162
  "sunsetSecretId": {
@@ -35126,18 +35152,221 @@
35126
35152
  "github-limited"
35127
35153
  ]
35128
35154
  },
35155
+ "repo": {
35156
+ "type": "string"
35157
+ },
35158
+ "repoId": {
35159
+ "type": "number"
35160
+ },
35129
35161
  "updatedAt": {
35130
35162
  "type": "number"
35131
35163
  },
35132
35164
  "createdAt": {
35133
35165
  "type": "number"
35134
35166
  },
35135
- "repo": {
35167
+ "org": {
35168
+ "type": "string"
35169
+ },
35170
+ "repoOwnerId": {
35171
+ "type": "number",
35172
+ "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."
35173
+ },
35174
+ "deployHooks": {
35175
+ "items": {
35176
+ "properties": {
35177
+ "createdAt": {
35178
+ "type": "number"
35179
+ },
35180
+ "id": {
35181
+ "type": "string"
35182
+ },
35183
+ "name": {
35184
+ "type": "string"
35185
+ },
35186
+ "ref": {
35187
+ "type": "string"
35188
+ },
35189
+ "url": {
35190
+ "type": "string"
35191
+ }
35192
+ },
35193
+ "required": [
35194
+ "id",
35195
+ "name",
35196
+ "ref",
35197
+ "url"
35198
+ ],
35199
+ "type": "object"
35200
+ },
35201
+ "type": "array"
35202
+ },
35203
+ "gitCredentialId": {
35204
+ "type": "string"
35205
+ },
35206
+ "sourceless": {
35207
+ "type": "boolean"
35208
+ },
35209
+ "productionBranch": {
35210
+ "type": "string"
35211
+ }
35212
+ },
35213
+ "required": [
35214
+ "deployHooks"
35215
+ ],
35216
+ "type": "object"
35217
+ },
35218
+ {
35219
+ "properties": {
35220
+ "projectId": {
35221
+ "type": "string"
35222
+ },
35223
+ "projectName": {
35224
+ "type": "string"
35225
+ },
35226
+ "projectNameWithNamespace": {
35227
+ "type": "string"
35228
+ },
35229
+ "projectNamespace": {
35230
+ "type": "string"
35231
+ },
35232
+ "projectOwnerId": {
35233
+ "type": "number",
35234
+ "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)."
35235
+ },
35236
+ "projectUrl": {
35237
+ "type": "string"
35238
+ },
35239
+ "type": {
35240
+ "type": "string",
35241
+ "enum": [
35242
+ "gitlab"
35243
+ ]
35244
+ },
35245
+ "createdAt": {
35246
+ "type": "number"
35247
+ },
35248
+ "deployHooks": {
35249
+ "items": {
35250
+ "properties": {
35251
+ "createdAt": {
35252
+ "type": "number"
35253
+ },
35254
+ "id": {
35255
+ "type": "string"
35256
+ },
35257
+ "name": {
35258
+ "type": "string"
35259
+ },
35260
+ "ref": {
35261
+ "type": "string"
35262
+ },
35263
+ "url": {
35264
+ "type": "string"
35265
+ }
35266
+ },
35267
+ "required": [
35268
+ "id",
35269
+ "name",
35270
+ "ref",
35271
+ "url"
35272
+ ],
35273
+ "type": "object"
35274
+ },
35275
+ "type": "array"
35276
+ },
35277
+ "gitCredentialId": {
35278
+ "type": "string"
35279
+ },
35280
+ "updatedAt": {
35281
+ "type": "number"
35282
+ },
35283
+ "sourceless": {
35284
+ "type": "boolean"
35285
+ },
35286
+ "productionBranch": {
35287
+ "type": "string"
35288
+ }
35289
+ },
35290
+ "required": [
35291
+ "deployHooks"
35292
+ ],
35293
+ "type": "object"
35294
+ },
35295
+ {
35296
+ "properties": {
35297
+ "name": {
35298
+ "type": "string"
35299
+ },
35300
+ "slug": {
35301
+ "type": "string"
35302
+ },
35303
+ "owner": {
35304
+ "type": "string"
35305
+ },
35306
+ "type": {
35307
+ "type": "string",
35308
+ "enum": [
35309
+ "bitbucket"
35310
+ ]
35311
+ },
35312
+ "uuid": {
35313
+ "type": "string"
35314
+ },
35315
+ "workspaceUuid": {
35316
+ "type": "string"
35317
+ },
35318
+ "createdAt": {
35319
+ "type": "number"
35320
+ },
35321
+ "deployHooks": {
35322
+ "items": {
35323
+ "properties": {
35324
+ "createdAt": {
35325
+ "type": "number"
35326
+ },
35327
+ "id": {
35328
+ "type": "string"
35329
+ },
35330
+ "name": {
35331
+ "type": "string"
35332
+ },
35333
+ "ref": {
35334
+ "type": "string"
35335
+ },
35336
+ "url": {
35337
+ "type": "string"
35338
+ }
35339
+ },
35340
+ "required": [
35341
+ "id",
35342
+ "name",
35343
+ "ref",
35344
+ "url"
35345
+ ],
35346
+ "type": "object"
35347
+ },
35348
+ "type": "array"
35349
+ },
35350
+ "gitCredentialId": {
35136
35351
  "type": "string"
35137
35352
  },
35353
+ "updatedAt": {
35354
+ "type": "number"
35355
+ },
35138
35356
  "sourceless": {
35139
35357
  "type": "boolean"
35140
35358
  },
35359
+ "productionBranch": {
35360
+ "type": "string"
35361
+ }
35362
+ },
35363
+ "required": [
35364
+ "deployHooks"
35365
+ ],
35366
+ "type": "object"
35367
+ },
35368
+ {
35369
+ "properties": {
35141
35370
  "org": {
35142
35371
  "type": "string"
35143
35372
  },
@@ -35145,225 +35374,22 @@
35145
35374
  "type": "number",
35146
35375
  "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."
35147
35376
  },
35377
+ "repo": {
35378
+ "type": "string"
35379
+ },
35148
35380
  "repoId": {
35149
- "type": "number"
35150
- },
35151
- "deployHooks": {
35152
- "items": {
35153
- "properties": {
35154
- "createdAt": {
35155
- "type": "number"
35156
- },
35157
- "id": {
35158
- "type": "string"
35159
- },
35160
- "name": {
35161
- "type": "string"
35162
- },
35163
- "ref": {
35164
- "type": "string"
35165
- },
35166
- "url": {
35167
- "type": "string"
35168
- }
35169
- },
35170
- "required": [
35171
- "id",
35172
- "name",
35173
- "ref",
35174
- "url"
35175
- ],
35176
- "type": "object"
35177
- },
35178
- "type": "array"
35179
- },
35180
- "gitCredentialId": {
35181
- "type": "string"
35182
- },
35183
- "productionBranch": {
35184
- "type": "string"
35185
- }
35186
- },
35187
- "required": [
35188
- "deployHooks"
35189
- ],
35190
- "type": "object"
35191
- },
35192
- {
35193
- "properties": {
35194
- "projectId": {
35195
- "type": "string"
35196
- },
35197
- "projectName": {
35198
- "type": "string"
35199
- },
35200
- "projectNameWithNamespace": {
35201
- "type": "string"
35202
- },
35203
- "projectNamespace": {
35204
- "type": "string"
35205
- },
35206
- "projectOwnerId": {
35207
- "type": "number",
35208
- "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)."
35209
- },
35210
- "projectUrl": {
35211
- "type": "string"
35212
- },
35213
- "type": {
35214
- "type": "string",
35215
- "enum": [
35216
- "gitlab"
35217
- ]
35218
- },
35219
- "createdAt": {
35220
- "type": "number"
35221
- },
35222
- "deployHooks": {
35223
- "items": {
35224
- "properties": {
35225
- "createdAt": {
35226
- "type": "number"
35227
- },
35228
- "id": {
35229
- "type": "string"
35230
- },
35231
- "name": {
35232
- "type": "string"
35233
- },
35234
- "ref": {
35235
- "type": "string"
35236
- },
35237
- "url": {
35238
- "type": "string"
35239
- }
35240
- },
35241
- "required": [
35242
- "id",
35243
- "name",
35244
- "ref",
35245
- "url"
35246
- ],
35247
- "type": "object"
35248
- },
35249
- "type": "array"
35250
- },
35251
- "gitCredentialId": {
35252
- "type": "string"
35253
- },
35254
- "updatedAt": {
35255
- "type": "number"
35256
- },
35257
- "sourceless": {
35258
- "type": "boolean"
35259
- },
35260
- "productionBranch": {
35261
- "type": "string"
35262
- }
35263
- },
35264
- "required": [
35265
- "deployHooks"
35266
- ],
35267
- "type": "object"
35268
- },
35269
- {
35270
- "properties": {
35271
- "name": {
35272
- "type": "string"
35273
- },
35274
- "slug": {
35275
- "type": "string"
35276
- },
35277
- "owner": {
35278
- "type": "string"
35279
- },
35280
- "type": {
35281
- "type": "string",
35282
- "enum": [
35283
- "bitbucket"
35284
- ]
35285
- },
35286
- "uuid": {
35287
- "type": "string"
35288
- },
35289
- "workspaceUuid": {
35290
- "type": "string"
35291
- },
35292
- "createdAt": {
35293
- "type": "number"
35294
- },
35295
- "deployHooks": {
35296
- "items": {
35297
- "properties": {
35298
- "createdAt": {
35299
- "type": "number"
35300
- },
35301
- "id": {
35302
- "type": "string"
35303
- },
35304
- "name": {
35305
- "type": "string"
35306
- },
35307
- "ref": {
35308
- "type": "string"
35309
- },
35310
- "url": {
35311
- "type": "string"
35312
- }
35313
- },
35314
- "required": [
35315
- "id",
35316
- "name",
35317
- "ref",
35318
- "url"
35319
- ],
35320
- "type": "object"
35321
- },
35322
- "type": "array"
35323
- },
35324
- "gitCredentialId": {
35325
- "type": "string"
35326
- },
35327
- "updatedAt": {
35328
- "type": "number"
35329
- },
35330
- "sourceless": {
35331
- "type": "boolean"
35332
- },
35333
- "productionBranch": {
35334
- "type": "string"
35335
- }
35336
- },
35337
- "required": [
35338
- "deployHooks"
35339
- ],
35340
- "type": "object"
35341
- },
35342
- {
35343
- "properties": {
35344
- "org": {
35345
- "type": "string"
35346
- },
35347
- "repoOwnerId": {
35348
- "type": "number",
35349
- "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."
35350
- },
35351
- "repo": {
35352
- "type": "string"
35353
- },
35354
- "repoId": {
35355
- "type": "number"
35356
- },
35357
- "type": {
35358
- "type": "string",
35359
- "enum": [
35360
- "github-custom-host"
35361
- ]
35362
- },
35363
- "host": {
35364
- "type": "string"
35365
- },
35366
- "createdAt": {
35381
+ "type": "number"
35382
+ },
35383
+ "type": {
35384
+ "type": "string",
35385
+ "enum": [
35386
+ "github-custom-host"
35387
+ ]
35388
+ },
35389
+ "host": {
35390
+ "type": "string"
35391
+ },
35392
+ "createdAt": {
35367
35393
  "type": "number"
35368
35394
  },
35369
35395
  "deployHooks": {
@@ -35730,8 +35756,8 @@
35730
35756
  "deploymentType": {
35731
35757
  "type": "string",
35732
35758
  "enum": [
35733
- "all",
35734
35759
  "preview",
35760
+ "all",
35735
35761
  "prod_deployment_urls_and_all_previews",
35736
35762
  "all_except_custom_domains"
35737
35763
  ]
@@ -36068,1267 +36094,1267 @@
36068
36094
  },
36069
36095
  "permissions": {
36070
36096
  "properties": {
36071
- "oauth2Connection": {
36097
+ "aliasProject": {
36072
36098
  "items": {
36073
36099
  "$ref": "#/components/schemas/ACLAction"
36074
36100
  },
36075
36101
  "type": "array"
36076
36102
  },
36077
- "user": {
36103
+ "aliasProtectionBypass": {
36078
36104
  "items": {
36079
36105
  "$ref": "#/components/schemas/ACLAction"
36080
36106
  },
36081
36107
  "type": "array"
36082
36108
  },
36083
- "userConnection": {
36109
+ "buildMachine": {
36084
36110
  "items": {
36085
36111
  "$ref": "#/components/schemas/ACLAction"
36086
36112
  },
36087
36113
  "type": "array"
36088
36114
  },
36089
- "userSudo": {
36115
+ "productionAliasProtectionBypass": {
36090
36116
  "items": {
36091
36117
  "$ref": "#/components/schemas/ACLAction"
36092
36118
  },
36093
36119
  "type": "array"
36094
36120
  },
36095
- "webAuthn": {
36121
+ "connectConfigurationLink": {
36096
36122
  "items": {
36097
36123
  "$ref": "#/components/schemas/ACLAction"
36098
36124
  },
36099
36125
  "type": "array"
36100
36126
  },
36101
- "accessGroup": {
36127
+ "dataCacheNamespace": {
36102
36128
  "items": {
36103
36129
  "$ref": "#/components/schemas/ACLAction"
36104
36130
  },
36105
36131
  "type": "array"
36106
36132
  },
36107
- "aliasGlobal": {
36133
+ "deployment": {
36108
36134
  "items": {
36109
36135
  "$ref": "#/components/schemas/ACLAction"
36110
36136
  },
36111
36137
  "type": "array"
36112
36138
  },
36113
- "analyticsSampling": {
36139
+ "deploymentBuildLogs": {
36114
36140
  "items": {
36115
36141
  "$ref": "#/components/schemas/ACLAction"
36116
36142
  },
36117
36143
  "type": "array"
36118
36144
  },
36119
- "analyticsUsage": {
36145
+ "deploymentCheck": {
36120
36146
  "items": {
36121
36147
  "$ref": "#/components/schemas/ACLAction"
36122
36148
  },
36123
36149
  "type": "array"
36124
36150
  },
36125
- "auditLog": {
36151
+ "deploymentCheckPreview": {
36126
36152
  "items": {
36127
36153
  "$ref": "#/components/schemas/ACLAction"
36128
36154
  },
36129
36155
  "type": "array"
36130
36156
  },
36131
- "billingAddress": {
36157
+ "deploymentCheckReRunFromProductionBranch": {
36132
36158
  "items": {
36133
36159
  "$ref": "#/components/schemas/ACLAction"
36134
36160
  },
36135
36161
  "type": "array"
36136
36162
  },
36137
- "billingInformation": {
36163
+ "deploymentProductionGit": {
36138
36164
  "items": {
36139
36165
  "$ref": "#/components/schemas/ACLAction"
36140
36166
  },
36141
36167
  "type": "array"
36142
36168
  },
36143
- "billingInvoice": {
36169
+ "deploymentV0": {
36144
36170
  "items": {
36145
36171
  "$ref": "#/components/schemas/ACLAction"
36146
36172
  },
36147
36173
  "type": "array"
36148
36174
  },
36149
- "billingInvoiceEmailRecipient": {
36175
+ "deploymentPreview": {
36150
36176
  "items": {
36151
36177
  "$ref": "#/components/schemas/ACLAction"
36152
36178
  },
36153
36179
  "type": "array"
36154
36180
  },
36155
- "billingInvoiceLanguage": {
36181
+ "deploymentPrivate": {
36156
36182
  "items": {
36157
36183
  "$ref": "#/components/schemas/ACLAction"
36158
36184
  },
36159
36185
  "type": "array"
36160
36186
  },
36161
- "billingPlan": {
36187
+ "deploymentPromote": {
36162
36188
  "items": {
36163
36189
  "$ref": "#/components/schemas/ACLAction"
36164
36190
  },
36165
36191
  "type": "array"
36166
36192
  },
36167
- "billingPurchaseOrder": {
36193
+ "deploymentRollback": {
36168
36194
  "items": {
36169
36195
  "$ref": "#/components/schemas/ACLAction"
36170
36196
  },
36171
36197
  "type": "array"
36172
36198
  },
36173
- "billingRefund": {
36199
+ "edgeCacheNamespace": {
36174
36200
  "items": {
36175
36201
  "$ref": "#/components/schemas/ACLAction"
36176
36202
  },
36177
36203
  "type": "array"
36178
36204
  },
36179
- "billingTaxId": {
36205
+ "environments": {
36180
36206
  "items": {
36181
36207
  "$ref": "#/components/schemas/ACLAction"
36182
36208
  },
36183
36209
  "type": "array"
36184
36210
  },
36185
- "blob": {
36211
+ "logs": {
36186
36212
  "items": {
36187
36213
  "$ref": "#/components/schemas/ACLAction"
36188
36214
  },
36189
36215
  "type": "array"
36190
36216
  },
36191
- "budget": {
36217
+ "logsPreset": {
36192
36218
  "items": {
36193
36219
  "$ref": "#/components/schemas/ACLAction"
36194
36220
  },
36195
36221
  "type": "array"
36196
36222
  },
36197
- "cacheArtifact": {
36223
+ "passwordProtection": {
36198
36224
  "items": {
36199
36225
  "$ref": "#/components/schemas/ACLAction"
36200
36226
  },
36201
36227
  "type": "array"
36202
36228
  },
36203
- "cacheArtifactUsageEvent": {
36229
+ "optionsAllowlist": {
36204
36230
  "items": {
36205
36231
  "$ref": "#/components/schemas/ACLAction"
36206
36232
  },
36207
36233
  "type": "array"
36208
36234
  },
36209
- "codeChecks": {
36235
+ "job": {
36210
36236
  "items": {
36211
36237
  "$ref": "#/components/schemas/ACLAction"
36212
36238
  },
36213
36239
  "type": "array"
36214
36240
  },
36215
- "concurrentBuilds": {
36241
+ "observabilityData": {
36216
36242
  "items": {
36217
36243
  "$ref": "#/components/schemas/ACLAction"
36218
36244
  },
36219
36245
  "type": "array"
36220
36246
  },
36221
- "connect": {
36247
+ "onDemandBuild": {
36222
36248
  "items": {
36223
36249
  "$ref": "#/components/schemas/ACLAction"
36224
36250
  },
36225
36251
  "type": "array"
36226
36252
  },
36227
- "connectConfiguration": {
36253
+ "onDemandConcurrency": {
36228
36254
  "items": {
36229
36255
  "$ref": "#/components/schemas/ACLAction"
36230
36256
  },
36231
36257
  "type": "array"
36232
36258
  },
36233
- "defaultDeploymentProtection": {
36259
+ "project": {
36234
36260
  "items": {
36235
36261
  "$ref": "#/components/schemas/ACLAction"
36236
36262
  },
36237
36263
  "type": "array"
36238
36264
  },
36239
- "domain": {
36265
+ "projectFromV0": {
36240
36266
  "items": {
36241
36267
  "$ref": "#/components/schemas/ACLAction"
36242
36268
  },
36243
36269
  "type": "array"
36244
36270
  },
36245
- "domainAcceptDelegation": {
36271
+ "projectAccessGroup": {
36246
36272
  "items": {
36247
36273
  "$ref": "#/components/schemas/ACLAction"
36248
36274
  },
36249
36275
  "type": "array"
36250
36276
  },
36251
- "domainAuthCodes": {
36277
+ "projectAnalyticsSampling": {
36252
36278
  "items": {
36253
36279
  "$ref": "#/components/schemas/ACLAction"
36254
36280
  },
36255
36281
  "type": "array"
36256
36282
  },
36257
- "domainCertificate": {
36283
+ "projectCheck": {
36258
36284
  "items": {
36259
36285
  "$ref": "#/components/schemas/ACLAction"
36260
36286
  },
36261
36287
  "type": "array"
36262
36288
  },
36263
- "domainCheckConfig": {
36289
+ "projectCheckRun": {
36264
36290
  "items": {
36265
36291
  "$ref": "#/components/schemas/ACLAction"
36266
36292
  },
36267
36293
  "type": "array"
36268
36294
  },
36269
- "domainMove": {
36295
+ "projectDeploymentHook": {
36270
36296
  "items": {
36271
36297
  "$ref": "#/components/schemas/ACLAction"
36272
36298
  },
36273
36299
  "type": "array"
36274
36300
  },
36275
- "domainPurchase": {
36301
+ "projectDomain": {
36276
36302
  "items": {
36277
36303
  "$ref": "#/components/schemas/ACLAction"
36278
36304
  },
36279
36305
  "type": "array"
36280
36306
  },
36281
- "domainRecord": {
36307
+ "projectDomainMove": {
36282
36308
  "items": {
36283
36309
  "$ref": "#/components/schemas/ACLAction"
36284
36310
  },
36285
36311
  "type": "array"
36286
36312
  },
36287
- "domainTransferIn": {
36313
+ "projectDomainCheckConfig": {
36288
36314
  "items": {
36289
36315
  "$ref": "#/components/schemas/ACLAction"
36290
36316
  },
36291
36317
  "type": "array"
36292
36318
  },
36293
- "event": {
36319
+ "projectEnvVars": {
36294
36320
  "items": {
36295
36321
  "$ref": "#/components/schemas/ACLAction"
36296
36322
  },
36297
36323
  "type": "array"
36298
36324
  },
36299
- "ownEvent": {
36325
+ "projectEnvVarsProduction": {
36300
36326
  "items": {
36301
36327
  "$ref": "#/components/schemas/ACLAction"
36302
36328
  },
36303
36329
  "type": "array"
36304
36330
  },
36305
- "sensitiveEnvironmentVariablePolicy": {
36331
+ "projectEnvVarsUnownedByIntegration": {
36306
36332
  "items": {
36307
36333
  "$ref": "#/components/schemas/ACLAction"
36308
36334
  },
36309
36335
  "type": "array"
36310
36336
  },
36311
- "fileUpload": {
36337
+ "projectFlags": {
36312
36338
  "items": {
36313
36339
  "$ref": "#/components/schemas/ACLAction"
36314
36340
  },
36315
36341
  "type": "array"
36316
36342
  },
36317
- "flagsExplorerSubscription": {
36343
+ "projectId": {
36318
36344
  "items": {
36319
36345
  "$ref": "#/components/schemas/ACLAction"
36320
36346
  },
36321
36347
  "type": "array"
36322
36348
  },
36323
- "gitRepository": {
36349
+ "projectIntegrationConfiguration": {
36324
36350
  "items": {
36325
36351
  "$ref": "#/components/schemas/ACLAction"
36326
36352
  },
36327
36353
  "type": "array"
36328
36354
  },
36329
- "ipBlocking": {
36355
+ "projectLink": {
36330
36356
  "items": {
36331
36357
  "$ref": "#/components/schemas/ACLAction"
36332
36358
  },
36333
36359
  "type": "array"
36334
36360
  },
36335
- "imageOptimizationNewPrice": {
36361
+ "projectMember": {
36336
36362
  "items": {
36337
36363
  "$ref": "#/components/schemas/ACLAction"
36338
36364
  },
36339
36365
  "type": "array"
36340
36366
  },
36341
- "integration": {
36367
+ "projectMonitoring": {
36342
36368
  "items": {
36343
36369
  "$ref": "#/components/schemas/ACLAction"
36344
36370
  },
36345
36371
  "type": "array"
36346
36372
  },
36347
- "integrationAccount": {
36373
+ "projectPermissions": {
36348
36374
  "items": {
36349
36375
  "$ref": "#/components/schemas/ACLAction"
36350
36376
  },
36351
36377
  "type": "array"
36352
36378
  },
36353
- "integrationConfiguration": {
36379
+ "projectProductionBranch": {
36354
36380
  "items": {
36355
36381
  "$ref": "#/components/schemas/ACLAction"
36356
36382
  },
36357
36383
  "type": "array"
36358
36384
  },
36359
- "integrationConfigurationTransfer": {
36385
+ "projectTransfer": {
36360
36386
  "items": {
36361
36387
  "$ref": "#/components/schemas/ACLAction"
36362
36388
  },
36363
36389
  "type": "array"
36364
36390
  },
36365
- "integrationConfigurationProjects": {
36391
+ "projectTransferOut": {
36366
36392
  "items": {
36367
36393
  "$ref": "#/components/schemas/ACLAction"
36368
36394
  },
36369
36395
  "type": "array"
36370
36396
  },
36371
- "integrationVercelConfigurationOverride": {
36397
+ "projectProtectionBypass": {
36372
36398
  "items": {
36373
36399
  "$ref": "#/components/schemas/ACLAction"
36374
36400
  },
36375
36401
  "type": "array"
36376
36402
  },
36377
- "integrationConfigurationRole": {
36403
+ "projectUsage": {
36378
36404
  "items": {
36379
36405
  "$ref": "#/components/schemas/ACLAction"
36380
36406
  },
36381
36407
  "type": "array"
36382
36408
  },
36383
- "integrationSSOSession": {
36409
+ "projectAnalyticsUsage": {
36384
36410
  "items": {
36385
36411
  "$ref": "#/components/schemas/ACLAction"
36386
36412
  },
36387
36413
  "type": "array"
36388
36414
  },
36389
- "integrationResource": {
36415
+ "projectSupportCase": {
36390
36416
  "items": {
36391
36417
  "$ref": "#/components/schemas/ACLAction"
36392
36418
  },
36393
36419
  "type": "array"
36394
36420
  },
36395
- "integrationEvent": {
36421
+ "projectSupportCaseComment": {
36396
36422
  "items": {
36397
36423
  "$ref": "#/components/schemas/ACLAction"
36398
36424
  },
36399
36425
  "type": "array"
36400
36426
  },
36401
- "integrationResourceSecrets": {
36427
+ "projectDeploymentExpiration": {
36402
36428
  "items": {
36403
36429
  "$ref": "#/components/schemas/ACLAction"
36404
36430
  },
36405
36431
  "type": "array"
36406
36432
  },
36407
- "integrationDeploymentAction": {
36433
+ "projectRollingRelease": {
36408
36434
  "items": {
36409
36435
  "$ref": "#/components/schemas/ACLAction"
36410
36436
  },
36411
36437
  "type": "array"
36412
36438
  },
36413
- "marketplaceInstallationMember": {
36439
+ "projectTier": {
36414
36440
  "items": {
36415
36441
  "$ref": "#/components/schemas/ACLAction"
36416
36442
  },
36417
36443
  "type": "array"
36418
36444
  },
36419
- "marketplaceBillingData": {
36445
+ "projectOIDCToken": {
36420
36446
  "items": {
36421
36447
  "$ref": "#/components/schemas/ACLAction"
36422
36448
  },
36423
36449
  "type": "array"
36424
36450
  },
36425
- "marketplaceInvoice": {
36451
+ "seawallConfig": {
36426
36452
  "items": {
36427
36453
  "$ref": "#/components/schemas/ACLAction"
36428
36454
  },
36429
36455
  "type": "array"
36430
36456
  },
36431
- "marketplaceSettings": {
36457
+ "skewProtection": {
36432
36458
  "items": {
36433
36459
  "$ref": "#/components/schemas/ACLAction"
36434
36460
  },
36435
36461
  "type": "array"
36436
36462
  },
36437
- "marketplaceExperimentationItem": {
36463
+ "analytics": {
36438
36464
  "items": {
36439
36465
  "$ref": "#/components/schemas/ACLAction"
36440
36466
  },
36441
36467
  "type": "array"
36442
36468
  },
36443
- "marketplaceExperimentationEdgeConfigData": {
36469
+ "trustedIps": {
36444
36470
  "items": {
36445
36471
  "$ref": "#/components/schemas/ACLAction"
36446
36472
  },
36447
36473
  "type": "array"
36448
36474
  },
36449
- "jobGlobal": {
36475
+ "webAnalytics": {
36450
36476
  "items": {
36451
36477
  "$ref": "#/components/schemas/ACLAction"
36452
36478
  },
36453
36479
  "type": "array"
36454
36480
  },
36455
- "drain": {
36481
+ "sharedEnvVarConnection": {
36456
36482
  "items": {
36457
36483
  "$ref": "#/components/schemas/ACLAction"
36458
36484
  },
36459
36485
  "type": "array"
36460
36486
  },
36461
- "logDrain": {
36487
+ "sonar": {
36462
36488
  "items": {
36463
36489
  "$ref": "#/components/schemas/ACLAction"
36464
36490
  },
36465
36491
  "type": "array"
36466
36492
  },
36467
- "Monitoring": {
36493
+ "oauth2Connection": {
36468
36494
  "items": {
36469
36495
  "$ref": "#/components/schemas/ACLAction"
36470
36496
  },
36471
36497
  "type": "array"
36472
36498
  },
36473
- "monitoringSettings": {
36499
+ "user": {
36474
36500
  "items": {
36475
36501
  "$ref": "#/components/schemas/ACLAction"
36476
36502
  },
36477
36503
  "type": "array"
36478
36504
  },
36479
- "monitoringQuery": {
36505
+ "userConnection": {
36480
36506
  "items": {
36481
36507
  "$ref": "#/components/schemas/ACLAction"
36482
36508
  },
36483
36509
  "type": "array"
36484
36510
  },
36485
- "monitoringChart": {
36511
+ "userSudo": {
36486
36512
  "items": {
36487
36513
  "$ref": "#/components/schemas/ACLAction"
36488
36514
  },
36489
36515
  "type": "array"
36490
36516
  },
36491
- "monitoringAlert": {
36517
+ "webAuthn": {
36492
36518
  "items": {
36493
36519
  "$ref": "#/components/schemas/ACLAction"
36494
36520
  },
36495
36521
  "type": "array"
36496
36522
  },
36497
- "notificationDeploymentFailed": {
36523
+ "accessGroup": {
36498
36524
  "items": {
36499
36525
  "$ref": "#/components/schemas/ACLAction"
36500
36526
  },
36501
36527
  "type": "array"
36502
36528
  },
36503
- "notificationDomainConfiguration": {
36529
+ "aliasGlobal": {
36504
36530
  "items": {
36505
36531
  "$ref": "#/components/schemas/ACLAction"
36506
36532
  },
36507
36533
  "type": "array"
36508
36534
  },
36509
- "notificationDomainExpire": {
36535
+ "analyticsSampling": {
36510
36536
  "items": {
36511
36537
  "$ref": "#/components/schemas/ACLAction"
36512
36538
  },
36513
36539
  "type": "array"
36514
36540
  },
36515
- "notificationDomainMoved": {
36541
+ "analyticsUsage": {
36516
36542
  "items": {
36517
36543
  "$ref": "#/components/schemas/ACLAction"
36518
36544
  },
36519
36545
  "type": "array"
36520
36546
  },
36521
- "notificationDomainPurchase": {
36547
+ "auditLog": {
36522
36548
  "items": {
36523
36549
  "$ref": "#/components/schemas/ACLAction"
36524
36550
  },
36525
36551
  "type": "array"
36526
36552
  },
36527
- "notificationDomainRenewal": {
36553
+ "billingAddress": {
36528
36554
  "items": {
36529
36555
  "$ref": "#/components/schemas/ACLAction"
36530
36556
  },
36531
36557
  "type": "array"
36532
36558
  },
36533
- "notificationDomainTransfer": {
36559
+ "billingInformation": {
36534
36560
  "items": {
36535
36561
  "$ref": "#/components/schemas/ACLAction"
36536
36562
  },
36537
36563
  "type": "array"
36538
36564
  },
36539
- "notificationDomainUnverified": {
36565
+ "billingInvoice": {
36540
36566
  "items": {
36541
36567
  "$ref": "#/components/schemas/ACLAction"
36542
36568
  },
36543
36569
  "type": "array"
36544
36570
  },
36545
- "NotificationMonitoringAlert": {
36571
+ "billingInvoiceEmailRecipient": {
36546
36572
  "items": {
36547
36573
  "$ref": "#/components/schemas/ACLAction"
36548
36574
  },
36549
36575
  "type": "array"
36550
36576
  },
36551
- "notificationPaymentFailed": {
36577
+ "billingInvoiceLanguage": {
36552
36578
  "items": {
36553
36579
  "$ref": "#/components/schemas/ACLAction"
36554
36580
  },
36555
36581
  "type": "array"
36556
36582
  },
36557
- "notificationUsageAlert": {
36583
+ "billingPlan": {
36558
36584
  "items": {
36559
36585
  "$ref": "#/components/schemas/ACLAction"
36560
36586
  },
36561
36587
  "type": "array"
36562
36588
  },
36563
- "notificationPreferences": {
36589
+ "billingPurchaseOrder": {
36564
36590
  "items": {
36565
36591
  "$ref": "#/components/schemas/ACLAction"
36566
36592
  },
36567
36593
  "type": "array"
36568
36594
  },
36569
- "notificationCustomerBudget": {
36595
+ "billingRefund": {
36570
36596
  "items": {
36571
36597
  "$ref": "#/components/schemas/ACLAction"
36572
36598
  },
36573
36599
  "type": "array"
36574
36600
  },
36575
- "notificationStatementOfReasons": {
36601
+ "billingTaxId": {
36576
36602
  "items": {
36577
36603
  "$ref": "#/components/schemas/ACLAction"
36578
36604
  },
36579
36605
  "type": "array"
36580
36606
  },
36581
- "observabilityConfiguration": {
36607
+ "blob": {
36582
36608
  "items": {
36583
36609
  "$ref": "#/components/schemas/ACLAction"
36584
36610
  },
36585
36611
  "type": "array"
36586
36612
  },
36587
- "observabilityNotebook": {
36613
+ "budget": {
36588
36614
  "items": {
36589
36615
  "$ref": "#/components/schemas/ACLAction"
36590
36616
  },
36591
36617
  "type": "array"
36592
36618
  },
36593
- "observabilityFunnel": {
36619
+ "cacheArtifact": {
36594
36620
  "items": {
36595
36621
  "$ref": "#/components/schemas/ACLAction"
36596
36622
  },
36597
36623
  "type": "array"
36598
36624
  },
36599
- "openTelemetryEndpoint": {
36625
+ "cacheArtifactUsageEvent": {
36600
36626
  "items": {
36601
36627
  "$ref": "#/components/schemas/ACLAction"
36602
36628
  },
36603
36629
  "type": "array"
36604
36630
  },
36605
- "vercelAppInstallation": {
36631
+ "codeChecks": {
36606
36632
  "items": {
36607
36633
  "$ref": "#/components/schemas/ACLAction"
36608
36634
  },
36609
36635
  "type": "array"
36610
36636
  },
36611
- "vercelAppInstallationRequest": {
36637
+ "concurrentBuilds": {
36612
36638
  "items": {
36613
36639
  "$ref": "#/components/schemas/ACLAction"
36614
36640
  },
36615
36641
  "type": "array"
36616
36642
  },
36617
- "paymentMethod": {
36643
+ "connect": {
36618
36644
  "items": {
36619
36645
  "$ref": "#/components/schemas/ACLAction"
36620
36646
  },
36621
36647
  "type": "array"
36622
36648
  },
36623
- "permissions": {
36649
+ "connectConfiguration": {
36624
36650
  "items": {
36625
36651
  "$ref": "#/components/schemas/ACLAction"
36626
36652
  },
36627
36653
  "type": "array"
36628
36654
  },
36629
- "postgres": {
36655
+ "defaultDeploymentProtection": {
36630
36656
  "items": {
36631
36657
  "$ref": "#/components/schemas/ACLAction"
36632
36658
  },
36633
36659
  "type": "array"
36634
36660
  },
36635
- "previewDeploymentSuffix": {
36661
+ "domain": {
36636
36662
  "items": {
36637
36663
  "$ref": "#/components/schemas/ACLAction"
36638
36664
  },
36639
36665
  "type": "array"
36640
36666
  },
36641
- "proTrialOnboarding": {
36667
+ "domainAcceptDelegation": {
36642
36668
  "items": {
36643
36669
  "$ref": "#/components/schemas/ACLAction"
36644
36670
  },
36645
36671
  "type": "array"
36646
36672
  },
36647
- "sharedEnvVars": {
36673
+ "domainAuthCodes": {
36648
36674
  "items": {
36649
36675
  "$ref": "#/components/schemas/ACLAction"
36650
36676
  },
36651
36677
  "type": "array"
36652
36678
  },
36653
- "sharedEnvVarsProduction": {
36679
+ "domainCertificate": {
36654
36680
  "items": {
36655
36681
  "$ref": "#/components/schemas/ACLAction"
36656
36682
  },
36657
36683
  "type": "array"
36658
36684
  },
36659
- "space": {
36685
+ "domainCheckConfig": {
36660
36686
  "items": {
36661
36687
  "$ref": "#/components/schemas/ACLAction"
36662
36688
  },
36663
36689
  "type": "array"
36664
36690
  },
36665
- "spaceRun": {
36691
+ "domainMove": {
36666
36692
  "items": {
36667
36693
  "$ref": "#/components/schemas/ACLAction"
36668
36694
  },
36669
36695
  "type": "array"
36670
36696
  },
36671
- "passwordProtectionInvoiceItem": {
36697
+ "domainPurchase": {
36672
36698
  "items": {
36673
36699
  "$ref": "#/components/schemas/ACLAction"
36674
36700
  },
36675
36701
  "type": "array"
36676
36702
  },
36677
- "rateLimit": {
36703
+ "domainRecord": {
36678
36704
  "items": {
36679
36705
  "$ref": "#/components/schemas/ACLAction"
36680
36706
  },
36681
36707
  "type": "array"
36682
36708
  },
36683
- "redis": {
36709
+ "domainTransferIn": {
36684
36710
  "items": {
36685
36711
  "$ref": "#/components/schemas/ACLAction"
36686
36712
  },
36687
36713
  "type": "array"
36688
36714
  },
36689
- "repository": {
36715
+ "event": {
36690
36716
  "items": {
36691
36717
  "$ref": "#/components/schemas/ACLAction"
36692
36718
  },
36693
36719
  "type": "array"
36694
36720
  },
36695
- "remoteCaching": {
36721
+ "ownEvent": {
36696
36722
  "items": {
36697
36723
  "$ref": "#/components/schemas/ACLAction"
36698
36724
  },
36699
36725
  "type": "array"
36700
36726
  },
36701
- "samlConfig": {
36727
+ "sensitiveEnvironmentVariablePolicy": {
36702
36728
  "items": {
36703
36729
  "$ref": "#/components/schemas/ACLAction"
36704
36730
  },
36705
36731
  "type": "array"
36706
36732
  },
36707
- "secret": {
36733
+ "fileUpload": {
36708
36734
  "items": {
36709
36735
  "$ref": "#/components/schemas/ACLAction"
36710
36736
  },
36711
36737
  "type": "array"
36712
36738
  },
36713
- "redisStoreTokenSet": {
36739
+ "flagsExplorerSubscription": {
36714
36740
  "items": {
36715
36741
  "$ref": "#/components/schemas/ACLAction"
36716
36742
  },
36717
36743
  "type": "array"
36718
36744
  },
36719
- "blobStoreTokenSet": {
36745
+ "gitRepository": {
36720
36746
  "items": {
36721
36747
  "$ref": "#/components/schemas/ACLAction"
36722
36748
  },
36723
36749
  "type": "array"
36724
36750
  },
36725
- "postgresStoreTokenSet": {
36751
+ "ipBlocking": {
36726
36752
  "items": {
36727
36753
  "$ref": "#/components/schemas/ACLAction"
36728
36754
  },
36729
36755
  "type": "array"
36730
36756
  },
36731
- "integrationStoreTokenSet": {
36757
+ "imageOptimizationNewPrice": {
36732
36758
  "items": {
36733
36759
  "$ref": "#/components/schemas/ACLAction"
36734
36760
  },
36735
36761
  "type": "array"
36736
36762
  },
36737
- "integrationResourceReplCommand": {
36763
+ "integration": {
36738
36764
  "items": {
36739
36765
  "$ref": "#/components/schemas/ACLAction"
36740
36766
  },
36741
36767
  "type": "array"
36742
36768
  },
36743
- "storeTransfer": {
36769
+ "integrationAccount": {
36744
36770
  "items": {
36745
36771
  "$ref": "#/components/schemas/ACLAction"
36746
36772
  },
36747
36773
  "type": "array"
36748
36774
  },
36749
- "supportCase": {
36775
+ "integrationConfiguration": {
36750
36776
  "items": {
36751
36777
  "$ref": "#/components/schemas/ACLAction"
36752
36778
  },
36753
36779
  "type": "array"
36754
36780
  },
36755
- "supportCaseComment": {
36781
+ "integrationConfigurationTransfer": {
36756
36782
  "items": {
36757
36783
  "$ref": "#/components/schemas/ACLAction"
36758
36784
  },
36759
36785
  "type": "array"
36760
36786
  },
36761
- "dataCacheBillingSettings": {
36787
+ "integrationConfigurationProjects": {
36762
36788
  "items": {
36763
36789
  "$ref": "#/components/schemas/ACLAction"
36764
36790
  },
36765
36791
  "type": "array"
36766
36792
  },
36767
- "team": {
36793
+ "integrationVercelConfigurationOverride": {
36768
36794
  "items": {
36769
36795
  "$ref": "#/components/schemas/ACLAction"
36770
36796
  },
36771
36797
  "type": "array"
36772
36798
  },
36773
- "teamAccessRequest": {
36799
+ "integrationConfigurationRole": {
36774
36800
  "items": {
36775
36801
  "$ref": "#/components/schemas/ACLAction"
36776
36802
  },
36777
36803
  "type": "array"
36778
36804
  },
36779
- "teamFellowMembership": {
36805
+ "integrationSSOSession": {
36780
36806
  "items": {
36781
36807
  "$ref": "#/components/schemas/ACLAction"
36782
36808
  },
36783
36809
  "type": "array"
36784
36810
  },
36785
- "teamGitExclusivity": {
36811
+ "integrationResource": {
36786
36812
  "items": {
36787
36813
  "$ref": "#/components/schemas/ACLAction"
36788
36814
  },
36789
36815
  "type": "array"
36790
36816
  },
36791
- "teamInvite": {
36817
+ "integrationEvent": {
36792
36818
  "items": {
36793
36819
  "$ref": "#/components/schemas/ACLAction"
36794
36820
  },
36795
36821
  "type": "array"
36796
36822
  },
36797
- "teamInviteCode": {
36823
+ "integrationResourceSecrets": {
36798
36824
  "items": {
36799
36825
  "$ref": "#/components/schemas/ACLAction"
36800
36826
  },
36801
36827
  "type": "array"
36802
36828
  },
36803
- "teamJoin": {
36829
+ "integrationDeploymentAction": {
36804
36830
  "items": {
36805
36831
  "$ref": "#/components/schemas/ACLAction"
36806
36832
  },
36807
36833
  "type": "array"
36808
36834
  },
36809
- "teamMemberMfaStatus": {
36835
+ "marketplaceInstallationMember": {
36810
36836
  "items": {
36811
36837
  "$ref": "#/components/schemas/ACLAction"
36812
36838
  },
36813
36839
  "type": "array"
36814
36840
  },
36815
- "teamMicrofrontends": {
36841
+ "marketplaceBillingData": {
36816
36842
  "items": {
36817
36843
  "$ref": "#/components/schemas/ACLAction"
36818
36844
  },
36819
36845
  "type": "array"
36820
36846
  },
36821
- "teamOwnMembership": {
36847
+ "marketplaceInvoice": {
36822
36848
  "items": {
36823
36849
  "$ref": "#/components/schemas/ACLAction"
36824
36850
  },
36825
36851
  "type": "array"
36826
36852
  },
36827
- "teamOwnMembershipDisconnectSAML": {
36853
+ "marketplaceSettings": {
36828
36854
  "items": {
36829
36855
  "$ref": "#/components/schemas/ACLAction"
36830
36856
  },
36831
36857
  "type": "array"
36832
36858
  },
36833
- "token": {
36859
+ "marketplaceExperimentationItem": {
36834
36860
  "items": {
36835
36861
  "$ref": "#/components/schemas/ACLAction"
36836
36862
  },
36837
36863
  "type": "array"
36838
36864
  },
36839
- "usage": {
36865
+ "marketplaceExperimentationEdgeConfigData": {
36840
36866
  "items": {
36841
36867
  "$ref": "#/components/schemas/ACLAction"
36842
36868
  },
36843
36869
  "type": "array"
36844
36870
  },
36845
- "usageCycle": {
36871
+ "jobGlobal": {
36846
36872
  "items": {
36847
36873
  "$ref": "#/components/schemas/ACLAction"
36848
36874
  },
36849
36875
  "type": "array"
36850
36876
  },
36851
- "vpcPeeringConnection": {
36877
+ "drain": {
36852
36878
  "items": {
36853
36879
  "$ref": "#/components/schemas/ACLAction"
36854
36880
  },
36855
36881
  "type": "array"
36856
36882
  },
36857
- "webAnalyticsPlan": {
36883
+ "logDrain": {
36858
36884
  "items": {
36859
36885
  "$ref": "#/components/schemas/ACLAction"
36860
36886
  },
36861
36887
  "type": "array"
36862
36888
  },
36863
- "edgeConfig": {
36889
+ "Monitoring": {
36864
36890
  "items": {
36865
36891
  "$ref": "#/components/schemas/ACLAction"
36866
36892
  },
36867
36893
  "type": "array"
36868
36894
  },
36869
- "edgeConfigItem": {
36895
+ "monitoringSettings": {
36870
36896
  "items": {
36871
36897
  "$ref": "#/components/schemas/ACLAction"
36872
36898
  },
36873
36899
  "type": "array"
36874
36900
  },
36875
- "edgeConfigSchema": {
36901
+ "monitoringQuery": {
36876
36902
  "items": {
36877
36903
  "$ref": "#/components/schemas/ACLAction"
36878
36904
  },
36879
36905
  "type": "array"
36880
36906
  },
36881
- "edgeConfigToken": {
36907
+ "monitoringChart": {
36882
36908
  "items": {
36883
36909
  "$ref": "#/components/schemas/ACLAction"
36884
36910
  },
36885
36911
  "type": "array"
36886
36912
  },
36887
- "webhook": {
36913
+ "monitoringAlert": {
36888
36914
  "items": {
36889
36915
  "$ref": "#/components/schemas/ACLAction"
36890
36916
  },
36891
36917
  "type": "array"
36892
36918
  },
36893
- "webhook-event": {
36919
+ "notificationDeploymentFailed": {
36894
36920
  "items": {
36895
36921
  "$ref": "#/components/schemas/ACLAction"
36896
36922
  },
36897
36923
  "type": "array"
36898
36924
  },
36899
- "endpointVerification": {
36925
+ "notificationDomainConfiguration": {
36900
36926
  "items": {
36901
36927
  "$ref": "#/components/schemas/ACLAction"
36902
36928
  },
36903
36929
  "type": "array"
36904
36930
  },
36905
- "projectTransferIn": {
36931
+ "notificationDomainExpire": {
36906
36932
  "items": {
36907
36933
  "$ref": "#/components/schemas/ACLAction"
36908
36934
  },
36909
36935
  "type": "array"
36910
36936
  },
36911
- "oauth2Application": {
36937
+ "notificationDomainMoved": {
36912
36938
  "items": {
36913
36939
  "$ref": "#/components/schemas/ACLAction"
36914
36940
  },
36915
36941
  "type": "array"
36916
36942
  },
36917
- "vercelRun": {
36943
+ "notificationDomainPurchase": {
36918
36944
  "items": {
36919
36945
  "$ref": "#/components/schemas/ACLAction"
36920
36946
  },
36921
36947
  "type": "array"
36922
36948
  },
36923
- "vercelRunExec": {
36949
+ "notificationDomainRenewal": {
36924
36950
  "items": {
36925
36951
  "$ref": "#/components/schemas/ACLAction"
36926
36952
  },
36927
36953
  "type": "array"
36928
36954
  },
36929
- "apiKey": {
36955
+ "notificationDomainTransfer": {
36930
36956
  "items": {
36931
36957
  "$ref": "#/components/schemas/ACLAction"
36932
36958
  },
36933
36959
  "type": "array"
36934
36960
  },
36935
- "apiKeyOwnedBySelf": {
36961
+ "notificationDomainUnverified": {
36936
36962
  "items": {
36937
36963
  "$ref": "#/components/schemas/ACLAction"
36938
36964
  },
36939
36965
  "type": "array"
36940
36966
  },
36941
- "aliasProject": {
36967
+ "NotificationMonitoringAlert": {
36942
36968
  "items": {
36943
36969
  "$ref": "#/components/schemas/ACLAction"
36944
36970
  },
36945
36971
  "type": "array"
36946
36972
  },
36947
- "aliasProtectionBypass": {
36973
+ "notificationPaymentFailed": {
36948
36974
  "items": {
36949
36975
  "$ref": "#/components/schemas/ACLAction"
36950
36976
  },
36951
36977
  "type": "array"
36952
36978
  },
36953
- "buildMachine": {
36979
+ "notificationUsageAlert": {
36954
36980
  "items": {
36955
36981
  "$ref": "#/components/schemas/ACLAction"
36956
36982
  },
36957
36983
  "type": "array"
36958
36984
  },
36959
- "productionAliasProtectionBypass": {
36985
+ "notificationPreferences": {
36960
36986
  "items": {
36961
36987
  "$ref": "#/components/schemas/ACLAction"
36962
36988
  },
36963
36989
  "type": "array"
36964
36990
  },
36965
- "connectConfigurationLink": {
36991
+ "notificationCustomerBudget": {
36966
36992
  "items": {
36967
36993
  "$ref": "#/components/schemas/ACLAction"
36968
36994
  },
36969
36995
  "type": "array"
36970
36996
  },
36971
- "dataCacheNamespace": {
36997
+ "notificationStatementOfReasons": {
36972
36998
  "items": {
36973
36999
  "$ref": "#/components/schemas/ACLAction"
36974
37000
  },
36975
37001
  "type": "array"
36976
37002
  },
36977
- "deployment": {
37003
+ "observabilityConfiguration": {
36978
37004
  "items": {
36979
37005
  "$ref": "#/components/schemas/ACLAction"
36980
37006
  },
36981
37007
  "type": "array"
36982
37008
  },
36983
- "deploymentBuildLogs": {
37009
+ "observabilityNotebook": {
36984
37010
  "items": {
36985
37011
  "$ref": "#/components/schemas/ACLAction"
36986
37012
  },
36987
37013
  "type": "array"
36988
37014
  },
36989
- "deploymentCheck": {
37015
+ "observabilityFunnel": {
36990
37016
  "items": {
36991
37017
  "$ref": "#/components/schemas/ACLAction"
36992
37018
  },
36993
37019
  "type": "array"
36994
37020
  },
36995
- "deploymentCheckPreview": {
37021
+ "openTelemetryEndpoint": {
36996
37022
  "items": {
36997
37023
  "$ref": "#/components/schemas/ACLAction"
36998
37024
  },
36999
37025
  "type": "array"
37000
37026
  },
37001
- "deploymentCheckReRunFromProductionBranch": {
37027
+ "vercelAppInstallation": {
37002
37028
  "items": {
37003
37029
  "$ref": "#/components/schemas/ACLAction"
37004
37030
  },
37005
37031
  "type": "array"
37006
37032
  },
37007
- "deploymentProductionGit": {
37033
+ "vercelAppInstallationRequest": {
37008
37034
  "items": {
37009
37035
  "$ref": "#/components/schemas/ACLAction"
37010
37036
  },
37011
37037
  "type": "array"
37012
37038
  },
37013
- "deploymentV0": {
37039
+ "paymentMethod": {
37014
37040
  "items": {
37015
37041
  "$ref": "#/components/schemas/ACLAction"
37016
37042
  },
37017
37043
  "type": "array"
37018
37044
  },
37019
- "deploymentPreview": {
37045
+ "permissions": {
37020
37046
  "items": {
37021
37047
  "$ref": "#/components/schemas/ACLAction"
37022
37048
  },
37023
37049
  "type": "array"
37024
37050
  },
37025
- "deploymentPrivate": {
37051
+ "postgres": {
37026
37052
  "items": {
37027
37053
  "$ref": "#/components/schemas/ACLAction"
37028
37054
  },
37029
37055
  "type": "array"
37030
37056
  },
37031
- "deploymentPromote": {
37057
+ "previewDeploymentSuffix": {
37032
37058
  "items": {
37033
37059
  "$ref": "#/components/schemas/ACLAction"
37034
37060
  },
37035
37061
  "type": "array"
37036
37062
  },
37037
- "deploymentRollback": {
37063
+ "proTrialOnboarding": {
37038
37064
  "items": {
37039
37065
  "$ref": "#/components/schemas/ACLAction"
37040
37066
  },
37041
37067
  "type": "array"
37042
37068
  },
37043
- "edgeCacheNamespace": {
37069
+ "sharedEnvVars": {
37044
37070
  "items": {
37045
37071
  "$ref": "#/components/schemas/ACLAction"
37046
37072
  },
37047
37073
  "type": "array"
37048
37074
  },
37049
- "environments": {
37075
+ "sharedEnvVarsProduction": {
37050
37076
  "items": {
37051
37077
  "$ref": "#/components/schemas/ACLAction"
37052
37078
  },
37053
37079
  "type": "array"
37054
37080
  },
37055
- "logs": {
37081
+ "space": {
37056
37082
  "items": {
37057
37083
  "$ref": "#/components/schemas/ACLAction"
37058
37084
  },
37059
37085
  "type": "array"
37060
37086
  },
37061
- "logsPreset": {
37087
+ "spaceRun": {
37062
37088
  "items": {
37063
37089
  "$ref": "#/components/schemas/ACLAction"
37064
37090
  },
37065
37091
  "type": "array"
37066
37092
  },
37067
- "passwordProtection": {
37093
+ "passwordProtectionInvoiceItem": {
37068
37094
  "items": {
37069
37095
  "$ref": "#/components/schemas/ACLAction"
37070
37096
  },
37071
37097
  "type": "array"
37072
37098
  },
37073
- "optionsAllowlist": {
37099
+ "rateLimit": {
37074
37100
  "items": {
37075
37101
  "$ref": "#/components/schemas/ACLAction"
37076
37102
  },
37077
37103
  "type": "array"
37078
37104
  },
37079
- "job": {
37105
+ "redis": {
37080
37106
  "items": {
37081
37107
  "$ref": "#/components/schemas/ACLAction"
37082
37108
  },
37083
37109
  "type": "array"
37084
37110
  },
37085
- "observabilityData": {
37111
+ "repository": {
37086
37112
  "items": {
37087
37113
  "$ref": "#/components/schemas/ACLAction"
37088
37114
  },
37089
37115
  "type": "array"
37090
37116
  },
37091
- "onDemandBuild": {
37117
+ "remoteCaching": {
37092
37118
  "items": {
37093
37119
  "$ref": "#/components/schemas/ACLAction"
37094
37120
  },
37095
37121
  "type": "array"
37096
37122
  },
37097
- "onDemandConcurrency": {
37123
+ "samlConfig": {
37098
37124
  "items": {
37099
37125
  "$ref": "#/components/schemas/ACLAction"
37100
37126
  },
37101
37127
  "type": "array"
37102
37128
  },
37103
- "project": {
37129
+ "secret": {
37104
37130
  "items": {
37105
37131
  "$ref": "#/components/schemas/ACLAction"
37106
37132
  },
37107
37133
  "type": "array"
37108
37134
  },
37109
- "projectFromV0": {
37135
+ "redisStoreTokenSet": {
37110
37136
  "items": {
37111
37137
  "$ref": "#/components/schemas/ACLAction"
37112
37138
  },
37113
37139
  "type": "array"
37114
37140
  },
37115
- "projectAccessGroup": {
37141
+ "blobStoreTokenSet": {
37116
37142
  "items": {
37117
37143
  "$ref": "#/components/schemas/ACLAction"
37118
37144
  },
37119
37145
  "type": "array"
37120
37146
  },
37121
- "projectAnalyticsSampling": {
37147
+ "postgresStoreTokenSet": {
37122
37148
  "items": {
37123
37149
  "$ref": "#/components/schemas/ACLAction"
37124
37150
  },
37125
37151
  "type": "array"
37126
37152
  },
37127
- "projectCheck": {
37153
+ "integrationStoreTokenSet": {
37128
37154
  "items": {
37129
37155
  "$ref": "#/components/schemas/ACLAction"
37130
37156
  },
37131
37157
  "type": "array"
37132
37158
  },
37133
- "projectCheckRun": {
37159
+ "integrationResourceReplCommand": {
37134
37160
  "items": {
37135
37161
  "$ref": "#/components/schemas/ACLAction"
37136
37162
  },
37137
37163
  "type": "array"
37138
37164
  },
37139
- "projectDeploymentHook": {
37165
+ "storeTransfer": {
37140
37166
  "items": {
37141
37167
  "$ref": "#/components/schemas/ACLAction"
37142
37168
  },
37143
37169
  "type": "array"
37144
37170
  },
37145
- "projectDomain": {
37171
+ "supportCase": {
37146
37172
  "items": {
37147
37173
  "$ref": "#/components/schemas/ACLAction"
37148
37174
  },
37149
37175
  "type": "array"
37150
37176
  },
37151
- "projectDomainMove": {
37177
+ "supportCaseComment": {
37152
37178
  "items": {
37153
37179
  "$ref": "#/components/schemas/ACLAction"
37154
37180
  },
37155
37181
  "type": "array"
37156
37182
  },
37157
- "projectDomainCheckConfig": {
37183
+ "dataCacheBillingSettings": {
37158
37184
  "items": {
37159
37185
  "$ref": "#/components/schemas/ACLAction"
37160
37186
  },
37161
37187
  "type": "array"
37162
37188
  },
37163
- "projectEnvVars": {
37189
+ "team": {
37164
37190
  "items": {
37165
37191
  "$ref": "#/components/schemas/ACLAction"
37166
37192
  },
37167
37193
  "type": "array"
37168
37194
  },
37169
- "projectEnvVarsProduction": {
37195
+ "teamAccessRequest": {
37170
37196
  "items": {
37171
37197
  "$ref": "#/components/schemas/ACLAction"
37172
37198
  },
37173
37199
  "type": "array"
37174
37200
  },
37175
- "projectEnvVarsUnownedByIntegration": {
37201
+ "teamFellowMembership": {
37176
37202
  "items": {
37177
37203
  "$ref": "#/components/schemas/ACLAction"
37178
37204
  },
37179
37205
  "type": "array"
37180
37206
  },
37181
- "projectFlags": {
37207
+ "teamGitExclusivity": {
37182
37208
  "items": {
37183
37209
  "$ref": "#/components/schemas/ACLAction"
37184
37210
  },
37185
37211
  "type": "array"
37186
37212
  },
37187
- "projectId": {
37213
+ "teamInvite": {
37188
37214
  "items": {
37189
37215
  "$ref": "#/components/schemas/ACLAction"
37190
37216
  },
37191
37217
  "type": "array"
37192
37218
  },
37193
- "projectIntegrationConfiguration": {
37219
+ "teamInviteCode": {
37194
37220
  "items": {
37195
37221
  "$ref": "#/components/schemas/ACLAction"
37196
37222
  },
37197
37223
  "type": "array"
37198
37224
  },
37199
- "projectLink": {
37225
+ "teamJoin": {
37200
37226
  "items": {
37201
37227
  "$ref": "#/components/schemas/ACLAction"
37202
37228
  },
37203
37229
  "type": "array"
37204
37230
  },
37205
- "projectMember": {
37231
+ "teamMemberMfaStatus": {
37206
37232
  "items": {
37207
37233
  "$ref": "#/components/schemas/ACLAction"
37208
37234
  },
37209
37235
  "type": "array"
37210
37236
  },
37211
- "projectMonitoring": {
37237
+ "teamMicrofrontends": {
37212
37238
  "items": {
37213
37239
  "$ref": "#/components/schemas/ACLAction"
37214
37240
  },
37215
37241
  "type": "array"
37216
37242
  },
37217
- "projectPermissions": {
37243
+ "teamOwnMembership": {
37218
37244
  "items": {
37219
37245
  "$ref": "#/components/schemas/ACLAction"
37220
37246
  },
37221
37247
  "type": "array"
37222
37248
  },
37223
- "projectProductionBranch": {
37249
+ "teamOwnMembershipDisconnectSAML": {
37224
37250
  "items": {
37225
37251
  "$ref": "#/components/schemas/ACLAction"
37226
37252
  },
37227
37253
  "type": "array"
37228
37254
  },
37229
- "projectTransfer": {
37255
+ "token": {
37230
37256
  "items": {
37231
37257
  "$ref": "#/components/schemas/ACLAction"
37232
37258
  },
37233
37259
  "type": "array"
37234
37260
  },
37235
- "projectTransferOut": {
37261
+ "usage": {
37236
37262
  "items": {
37237
37263
  "$ref": "#/components/schemas/ACLAction"
37238
37264
  },
37239
37265
  "type": "array"
37240
37266
  },
37241
- "projectProtectionBypass": {
37267
+ "usageCycle": {
37242
37268
  "items": {
37243
37269
  "$ref": "#/components/schemas/ACLAction"
37244
37270
  },
37245
37271
  "type": "array"
37246
37272
  },
37247
- "projectUsage": {
37273
+ "vpcPeeringConnection": {
37248
37274
  "items": {
37249
37275
  "$ref": "#/components/schemas/ACLAction"
37250
37276
  },
37251
37277
  "type": "array"
37252
37278
  },
37253
- "projectAnalyticsUsage": {
37279
+ "webAnalyticsPlan": {
37254
37280
  "items": {
37255
37281
  "$ref": "#/components/schemas/ACLAction"
37256
37282
  },
37257
37283
  "type": "array"
37258
37284
  },
37259
- "projectSupportCase": {
37285
+ "edgeConfig": {
37260
37286
  "items": {
37261
37287
  "$ref": "#/components/schemas/ACLAction"
37262
37288
  },
37263
37289
  "type": "array"
37264
37290
  },
37265
- "projectSupportCaseComment": {
37291
+ "edgeConfigItem": {
37266
37292
  "items": {
37267
37293
  "$ref": "#/components/schemas/ACLAction"
37268
37294
  },
37269
37295
  "type": "array"
37270
37296
  },
37271
- "projectDeploymentExpiration": {
37297
+ "edgeConfigSchema": {
37272
37298
  "items": {
37273
37299
  "$ref": "#/components/schemas/ACLAction"
37274
37300
  },
37275
37301
  "type": "array"
37276
37302
  },
37277
- "projectRollingRelease": {
37303
+ "edgeConfigToken": {
37278
37304
  "items": {
37279
37305
  "$ref": "#/components/schemas/ACLAction"
37280
37306
  },
37281
37307
  "type": "array"
37282
37308
  },
37283
- "projectTier": {
37309
+ "webhook": {
37284
37310
  "items": {
37285
37311
  "$ref": "#/components/schemas/ACLAction"
37286
37312
  },
37287
37313
  "type": "array"
37288
37314
  },
37289
- "projectOIDCToken": {
37315
+ "webhook-event": {
37290
37316
  "items": {
37291
37317
  "$ref": "#/components/schemas/ACLAction"
37292
37318
  },
37293
37319
  "type": "array"
37294
37320
  },
37295
- "seawallConfig": {
37321
+ "endpointVerification": {
37296
37322
  "items": {
37297
37323
  "$ref": "#/components/schemas/ACLAction"
37298
37324
  },
37299
37325
  "type": "array"
37300
37326
  },
37301
- "skewProtection": {
37327
+ "projectTransferIn": {
37302
37328
  "items": {
37303
37329
  "$ref": "#/components/schemas/ACLAction"
37304
37330
  },
37305
37331
  "type": "array"
37306
37332
  },
37307
- "analytics": {
37333
+ "oauth2Application": {
37308
37334
  "items": {
37309
37335
  "$ref": "#/components/schemas/ACLAction"
37310
37336
  },
37311
37337
  "type": "array"
37312
37338
  },
37313
- "trustedIps": {
37339
+ "vercelRun": {
37314
37340
  "items": {
37315
37341
  "$ref": "#/components/schemas/ACLAction"
37316
37342
  },
37317
37343
  "type": "array"
37318
37344
  },
37319
- "webAnalytics": {
37345
+ "vercelRunExec": {
37320
37346
  "items": {
37321
37347
  "$ref": "#/components/schemas/ACLAction"
37322
37348
  },
37323
37349
  "type": "array"
37324
37350
  },
37325
- "sharedEnvVarConnection": {
37351
+ "apiKey": {
37326
37352
  "items": {
37327
37353
  "$ref": "#/components/schemas/ACLAction"
37328
37354
  },
37329
37355
  "type": "array"
37330
37356
  },
37331
- "sonar": {
37357
+ "apiKeyOwnedBySelf": {
37332
37358
  "items": {
37333
37359
  "$ref": "#/components/schemas/ACLAction"
37334
37360
  },
@@ -37454,11 +37480,11 @@
37454
37480
  "deploymentType": {
37455
37481
  "type": "string",
37456
37482
  "enum": [
37457
- "all",
37458
37483
  "preview",
37484
+ "production",
37485
+ "all",
37459
37486
  "prod_deployment_urls_and_all_previews",
37460
- "all_except_custom_domains",
37461
- "production"
37487
+ "all_except_custom_domains"
37462
37488
  ]
37463
37489
  },
37464
37490
  "addresses": {
@@ -37498,11 +37524,11 @@
37498
37524
  "deploymentType": {
37499
37525
  "type": "string",
37500
37526
  "enum": [
37501
- "all",
37502
37527
  "preview",
37528
+ "production",
37529
+ "all",
37503
37530
  "prod_deployment_urls_and_all_previews",
37504
- "all_except_custom_domains",
37505
- "production"
37531
+ "all_except_custom_domains"
37506
37532
  ]
37507
37533
  }
37508
37534
  },
@@ -38472,10 +38498,10 @@
38472
38498
  "type": "string",
38473
38499
  "enum": [
38474
38500
  "system",
38475
- "secret",
38476
38501
  "encrypted",
38477
38502
  "plain",
38478
- "sensitive"
38503
+ "sensitive",
38504
+ "secret"
38479
38505
  ]
38480
38506
  },
38481
38507
  "sunsetSecretId": {
@@ -39471,18 +39497,18 @@
39471
39497
  "github-limited"
39472
39498
  ]
39473
39499
  },
39500
+ "repo": {
39501
+ "type": "string"
39502
+ },
39503
+ "repoId": {
39504
+ "type": "number"
39505
+ },
39474
39506
  "updatedAt": {
39475
39507
  "type": "number"
39476
39508
  },
39477
39509
  "createdAt": {
39478
39510
  "type": "number"
39479
39511
  },
39480
- "repo": {
39481
- "type": "string"
39482
- },
39483
- "sourceless": {
39484
- "type": "boolean"
39485
- },
39486
39512
  "org": {
39487
39513
  "type": "string"
39488
39514
  },
@@ -39490,9 +39516,6 @@
39490
39516
  "type": "number",
39491
39517
  "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."
39492
39518
  },
39493
- "repoId": {
39494
- "type": "number"
39495
- },
39496
39519
  "deployHooks": {
39497
39520
  "items": {
39498
39521
  "properties": {
@@ -39525,6 +39548,9 @@
39525
39548
  "gitCredentialId": {
39526
39549
  "type": "string"
39527
39550
  },
39551
+ "sourceless": {
39552
+ "type": "boolean"
39553
+ },
39528
39554
  "productionBranch": {
39529
39555
  "type": "string"
39530
39556
  }
@@ -40075,8 +40101,8 @@
40075
40101
  "deploymentType": {
40076
40102
  "type": "string",
40077
40103
  "enum": [
40078
- "all",
40079
40104
  "preview",
40105
+ "all",
40080
40106
  "prod_deployment_urls_and_all_previews",
40081
40107
  "all_except_custom_domains"
40082
40108
  ]
@@ -41799,11 +41825,11 @@
41799
41825
  "deploymentType": {
41800
41826
  "type": "string",
41801
41827
  "enum": [
41802
- "all",
41803
41828
  "preview",
41829
+ "production",
41830
+ "all",
41804
41831
  "prod_deployment_urls_and_all_previews",
41805
- "all_except_custom_domains",
41806
- "production"
41832
+ "all_except_custom_domains"
41807
41833
  ]
41808
41834
  },
41809
41835
  "addresses": {
@@ -41843,11 +41869,11 @@
41843
41869
  "deploymentType": {
41844
41870
  "type": "string",
41845
41871
  "enum": [
41846
- "all",
41847
41872
  "preview",
41873
+ "production",
41874
+ "all",
41848
41875
  "prod_deployment_urls_and_all_previews",
41849
- "all_except_custom_domains",
41850
- "production"
41876
+ "all_except_custom_domains"
41851
41877
  ]
41852
41878
  }
41853
41879
  },
@@ -49553,10 +49579,10 @@
49553
49579
  "type": "string",
49554
49580
  "enum": [
49555
49581
  "system",
49556
- "secret",
49557
49582
  "encrypted",
49558
49583
  "plain",
49559
- "sensitive"
49584
+ "sensitive",
49585
+ "secret"
49560
49586
  ]
49561
49587
  },
49562
49588
  "sunsetSecretId": {
@@ -49966,10 +49992,10 @@
49966
49992
  "type": "string",
49967
49993
  "enum": [
49968
49994
  "system",
49969
- "secret",
49970
49995
  "encrypted",
49971
49996
  "plain",
49972
- "sensitive"
49997
+ "sensitive",
49998
+ "secret"
49973
49999
  ]
49974
50000
  },
49975
50001
  "sunsetSecretId": {
@@ -50391,10 +50417,10 @@
50391
50417
  "type": "string",
50392
50418
  "enum": [
50393
50419
  "system",
50394
- "secret",
50395
50420
  "encrypted",
50396
50421
  "plain",
50397
- "sensitive"
50422
+ "sensitive",
50423
+ "secret"
50398
50424
  ]
50399
50425
  },
50400
50426
  "sunsetSecretId": {
@@ -50950,10 +50976,10 @@
50950
50976
  "type": "string",
50951
50977
  "enum": [
50952
50978
  "system",
50953
- "secret",
50954
50979
  "encrypted",
50955
50980
  "plain",
50956
- "sensitive"
50981
+ "sensitive",
50982
+ "secret"
50957
50983
  ]
50958
50984
  },
50959
50985
  "sunsetSecretId": {
@@ -51352,10 +51378,10 @@
51352
51378
  "type": "string",
51353
51379
  "enum": [
51354
51380
  "system",
51355
- "secret",
51356
51381
  "encrypted",
51357
51382
  "plain",
51358
- "sensitive"
51383
+ "sensitive",
51384
+ "secret"
51359
51385
  ]
51360
51386
  },
51361
51387
  "sunsetSecretId": {
@@ -53435,10 +53461,10 @@
53435
53461
  "type": "string",
53436
53462
  "enum": [
53437
53463
  "system",
53438
- "secret",
53439
53464
  "encrypted",
53440
53465
  "plain",
53441
- "sensitive"
53466
+ "sensitive",
53467
+ "secret"
53442
53468
  ]
53443
53469
  },
53444
53470
  "sunsetSecretId": {
@@ -53850,10 +53876,10 @@
53850
53876
  "type": "string",
53851
53877
  "enum": [
53852
53878
  "system",
53853
- "secret",
53854
53879
  "encrypted",
53855
53880
  "plain",
53856
- "sensitive"
53881
+ "sensitive",
53882
+ "secret"
53857
53883
  ]
53858
53884
  },
53859
53885
  "sunsetSecretId": {
@@ -54260,10 +54286,10 @@
54260
54286
  "type": "string",
54261
54287
  "enum": [
54262
54288
  "system",
54263
- "secret",
54264
54289
  "encrypted",
54265
54290
  "plain",
54266
- "sensitive"
54291
+ "sensitive",
54292
+ "secret"
54267
54293
  ]
54268
54294
  },
54269
54295
  "sunsetSecretId": {
@@ -54778,10 +54804,10 @@
54778
54804
  "type": "string",
54779
54805
  "enum": [
54780
54806
  "system",
54781
- "secret",
54782
54807
  "encrypted",
54783
54808
  "plain",
54784
- "sensitive"
54809
+ "sensitive",
54810
+ "secret"
54785
54811
  ]
54786
54812
  },
54787
54813
  "sunsetSecretId": {
@@ -58746,8 +58772,7 @@
58746
58772
  "geo_as_number",
58747
58773
  "ja4_digest",
58748
58774
  "ja3_digest",
58749
- "rate_limit_api_id",
58750
- "bot_name"
58775
+ "rate_limit_api_id"
58751
58776
  ]
58752
58777
  },
58753
58778
  "op": {
@@ -60961,8 +60986,7 @@
60961
60986
  "geo_as_number",
60962
60987
  "ja4_digest",
60963
60988
  "ja3_digest",
60964
- "rate_limit_api_id",
60965
- "bot_name"
60989
+ "rate_limit_api_id"
60966
60990
  ],
60967
60991
  "description": "[Parameter](https://vercel.com/docs/security/vercel-waf/rule-configuration#parameters) from the incoming traffic."
60968
60992
  },
@@ -67533,7 +67557,356 @@
67533
67557
  "description": "The alias information",
67534
67558
  "content": {
67535
67559
  "application/json": {
67536
- "schema": {}
67560
+ "schema": {
67561
+ "items": {
67562
+ "properties": {
67563
+ "alias": {
67564
+ "type": "string",
67565
+ "description": "The alias name, it could be a `.vercel.app` subdomain or a custom domain",
67566
+ "example": "my-alias.vercel.app"
67567
+ },
67568
+ "created": {
67569
+ "type": "string",
67570
+ "format": "date-time",
67571
+ "description": "The date when the alias was created",
67572
+ "example": "2017-04-26T23:00:34.232Z"
67573
+ },
67574
+ "createdAt": {
67575
+ "type": "number",
67576
+ "description": "The date when the alias was created in milliseconds since the UNIX epoch",
67577
+ "example": 1540095775941
67578
+ },
67579
+ "creator": {
67580
+ "properties": {
67581
+ "uid": {
67582
+ "type": "string",
67583
+ "description": "ID of the user who created the alias",
67584
+ "example": "96SnxkFiMyVKsK3pnoHfx3Hz"
67585
+ },
67586
+ "email": {
67587
+ "type": "string",
67588
+ "description": "Email of the user who created the alias",
67589
+ "example": "john-doe@gmail.com"
67590
+ },
67591
+ "username": {
67592
+ "type": "string",
67593
+ "description": "Username of the user who created the alias",
67594
+ "example": "john-doe"
67595
+ }
67596
+ },
67597
+ "required": [
67598
+ "uid",
67599
+ "email",
67600
+ "username"
67601
+ ],
67602
+ "type": "object",
67603
+ "description": "Information of the user who created the alias"
67604
+ },
67605
+ "deletedAt": {
67606
+ "type": "number",
67607
+ "description": "The date when the alias was deleted in milliseconds since the UNIX epoch",
67608
+ "example": 1540095775941
67609
+ },
67610
+ "deployment": {
67611
+ "properties": {
67612
+ "id": {
67613
+ "type": "string",
67614
+ "description": "The deployment unique identifier",
67615
+ "example": "dpl_5m8CQaRBm3FnWRW1od3wKTpaECPx"
67616
+ },
67617
+ "url": {
67618
+ "type": "string",
67619
+ "description": "The deployment unique URL",
67620
+ "example": "my-instant-deployment-3ij3cxz9qr.now.sh"
67621
+ },
67622
+ "meta": {
67623
+ "type": "string",
67624
+ "description": "The deployment metadata",
67625
+ "example": {}
67626
+ }
67627
+ },
67628
+ "required": [
67629
+ "id",
67630
+ "url"
67631
+ ],
67632
+ "type": "object",
67633
+ "description": "A map with the deployment ID, URL and metadata"
67634
+ },
67635
+ "deploymentId": {
67636
+ "nullable": true,
67637
+ "type": "string",
67638
+ "description": "The deployment ID",
67639
+ "example": "dpl_5m8CQaRBm3FnWRW1od3wKTpaECPx"
67640
+ },
67641
+ "projectId": {
67642
+ "nullable": true,
67643
+ "type": "string",
67644
+ "description": "The unique identifier of the project",
67645
+ "example": "prj_12HKQaOmR5t5Uy6vdcQsNIiZgHGB"
67646
+ },
67647
+ "redirect": {
67648
+ "nullable": true,
67649
+ "type": "string",
67650
+ "description": "Target destination domain for redirect when the alias is a redirect"
67651
+ },
67652
+ "redirectStatusCode": {
67653
+ "nullable": true,
67654
+ "type": "number",
67655
+ "enum": [
67656
+ 301,
67657
+ 302,
67658
+ 307,
67659
+ 308
67660
+ ],
67661
+ "description": "Status code to be used on redirect"
67662
+ },
67663
+ "uid": {
67664
+ "type": "string",
67665
+ "description": "The unique identifier of the alias"
67666
+ },
67667
+ "updatedAt": {
67668
+ "type": "number",
67669
+ "description": "The date when the alias was updated in milliseconds since the UNIX epoch",
67670
+ "example": 1540095775941
67671
+ },
67672
+ "protectionBypass": {
67673
+ "additionalProperties": {
67674
+ "oneOf": [
67675
+ {
67676
+ "properties": {
67677
+ "createdAt": {
67678
+ "type": "number"
67679
+ },
67680
+ "createdBy": {
67681
+ "type": "string"
67682
+ },
67683
+ "scope": {
67684
+ "type": "string",
67685
+ "enum": [
67686
+ "shareable-link"
67687
+ ]
67688
+ }
67689
+ },
67690
+ "required": [
67691
+ "createdAt",
67692
+ "createdBy",
67693
+ "scope"
67694
+ ],
67695
+ "type": "object",
67696
+ "description": "The protection bypass for the alias"
67697
+ },
67698
+ {
67699
+ "properties": {
67700
+ "createdAt": {
67701
+ "type": "number"
67702
+ },
67703
+ "lastUpdatedAt": {
67704
+ "type": "number"
67705
+ },
67706
+ "lastUpdatedBy": {
67707
+ "type": "string"
67708
+ },
67709
+ "access": {
67710
+ "type": "string",
67711
+ "enum": [
67712
+ "requested",
67713
+ "granted"
67714
+ ]
67715
+ },
67716
+ "scope": {
67717
+ "type": "string",
67718
+ "enum": [
67719
+ "user"
67720
+ ]
67721
+ }
67722
+ },
67723
+ "required": [
67724
+ "createdAt",
67725
+ "lastUpdatedAt",
67726
+ "lastUpdatedBy",
67727
+ "access",
67728
+ "scope"
67729
+ ],
67730
+ "type": "object",
67731
+ "description": "The protection bypass for the alias"
67732
+ },
67733
+ {
67734
+ "properties": {
67735
+ "createdAt": {
67736
+ "type": "number"
67737
+ },
67738
+ "createdBy": {
67739
+ "type": "string"
67740
+ },
67741
+ "scope": {
67742
+ "type": "string",
67743
+ "enum": [
67744
+ "alias-protection-override"
67745
+ ]
67746
+ }
67747
+ },
67748
+ "required": [
67749
+ "createdAt",
67750
+ "createdBy",
67751
+ "scope"
67752
+ ],
67753
+ "type": "object",
67754
+ "description": "The protection bypass for the alias"
67755
+ },
67756
+ {
67757
+ "properties": {
67758
+ "createdAt": {
67759
+ "type": "number"
67760
+ },
67761
+ "lastUpdatedAt": {
67762
+ "type": "number"
67763
+ },
67764
+ "lastUpdatedBy": {
67765
+ "type": "string"
67766
+ },
67767
+ "scope": {
67768
+ "type": "string",
67769
+ "enum": [
67770
+ "email_invite"
67771
+ ]
67772
+ }
67773
+ },
67774
+ "required": [
67775
+ "createdAt",
67776
+ "lastUpdatedAt",
67777
+ "lastUpdatedBy",
67778
+ "scope"
67779
+ ],
67780
+ "type": "object",
67781
+ "description": "The protection bypass for the alias"
67782
+ }
67783
+ ]
67784
+ },
67785
+ "type": "object",
67786
+ "description": "The protection bypass for the alias"
67787
+ },
67788
+ "microfrontends": {
67789
+ "properties": {
67790
+ "defaultApp": {
67791
+ "properties": {
67792
+ "projectId": {
67793
+ "type": "string"
67794
+ }
67795
+ },
67796
+ "required": [
67797
+ "projectId"
67798
+ ],
67799
+ "type": "object"
67800
+ },
67801
+ "applications": {
67802
+ "oneOf": [
67803
+ {
67804
+ "items": {
67805
+ "properties": {
67806
+ "fallbackHost": {
67807
+ "type": "string",
67808
+ "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."
67809
+ },
67810
+ "projectId": {
67811
+ "type": "string",
67812
+ "description": "The project ID of the microfrontends application."
67813
+ }
67814
+ },
67815
+ "required": [
67816
+ "fallbackHost",
67817
+ "projectId"
67818
+ ],
67819
+ "type": "object",
67820
+ "description": "A list of the deployment routing information for each project."
67821
+ },
67822
+ "type": "array",
67823
+ "description": "A list of the deployment routing information for each project."
67824
+ },
67825
+ {
67826
+ "items": {
67827
+ "properties": {
67828
+ "fallbackHost": {
67829
+ "type": "string",
67830
+ "description": "This is always set. For branch aliases, it's used as the fallback if there is no deployment for the branch."
67831
+ },
67832
+ "branchAlias": {
67833
+ "type": "string",
67834
+ "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."
67835
+ },
67836
+ "projectId": {
67837
+ "type": "string",
67838
+ "description": "The project ID of the microfrontends application."
67839
+ }
67840
+ },
67841
+ "required": [
67842
+ "fallbackHost",
67843
+ "branchAlias",
67844
+ "projectId"
67845
+ ],
67846
+ "type": "object",
67847
+ "description": "A list of the deployment routing information for each project."
67848
+ },
67849
+ "type": "array",
67850
+ "description": "A list of the deployment routing information for each project."
67851
+ },
67852
+ {
67853
+ "items": {
67854
+ "properties": {
67855
+ "deploymentId": {
67856
+ "type": "string",
67857
+ "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."
67858
+ },
67859
+ "branchDeploymentId": {
67860
+ "type": "string",
67861
+ "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."
67862
+ },
67863
+ "fallbackDeploymentId": {
67864
+ "type": "string",
67865
+ "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."
67866
+ },
67867
+ "fallbackHost": {
67868
+ "type": "string",
67869
+ "description": "Temporary for backwards compatibility. Can remove when metadata change is released"
67870
+ },
67871
+ "branchAlias": {
67872
+ "type": "string"
67873
+ },
67874
+ "projectId": {
67875
+ "type": "string",
67876
+ "description": "The project ID of the microfrontends application."
67877
+ }
67878
+ },
67879
+ "required": [
67880
+ "projectId"
67881
+ ],
67882
+ "type": "object",
67883
+ "description": "A list of the deployment routing information for each project."
67884
+ },
67885
+ "type": "array",
67886
+ "description": "A list of the deployment routing information for each project."
67887
+ }
67888
+ ]
67889
+ }
67890
+ },
67891
+ "required": [
67892
+ "defaultApp",
67893
+ "applications"
67894
+ ],
67895
+ "type": "object",
67896
+ "description": "The microfrontends for the alias including the routing configuration"
67897
+ }
67898
+ },
67899
+ "required": [
67900
+ "alias",
67901
+ "created",
67902
+ "deploymentId",
67903
+ "projectId",
67904
+ "uid"
67905
+ ],
67906
+ "type": "object"
67907
+ },
67908
+ "type": "array"
67909
+ }
67537
67910
  }
67538
67911
  }
67539
67912
  },
@@ -77918,9 +78291,6 @@
77918
78291
  "confirmed": {
77919
78292
  "type": "boolean"
77920
78293
  },
77921
- "confirmedAt": {
77922
- "type": "number"
77923
- },
77924
78294
  "accessRequestedAt": {
77925
78295
  "type": "number"
77926
78296
  },
@@ -78039,7 +78409,6 @@
78039
78409
  },
78040
78410
  "required": [
78041
78411
  "confirmed",
78042
- "confirmedAt",
78043
78412
  "role",
78044
78413
  "createdAt",
78045
78414
  "created"
@@ -78213,9 +78582,6 @@
78213
78582
  "confirmed": {
78214
78583
  "type": "boolean"
78215
78584
  },
78216
- "confirmedAt": {
78217
- "type": "number"
78218
- },
78219
78585
  "accessRequestedAt": {
78220
78586
  "type": "number"
78221
78587
  },
@@ -78334,7 +78700,6 @@
78334
78700
  },
78335
78701
  "required": [
78336
78702
  "confirmed",
78337
- "confirmedAt",
78338
78703
  "role",
78339
78704
  "createdAt",
78340
78705
  "created"