@vercel/sdk 1.17.4 → 1.17.5

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 (87) hide show
  1. package/bin/mcp-server.js +331 -369
  2. package/bin/mcp-server.js.map +14 -14
  3. package/esm/__tests__/accessgroups.test.js +2 -6
  4. package/esm/__tests__/accessgroups.test.js.map +1 -1
  5. package/esm/__tests__/checks.test.js +1 -1
  6. package/esm/__tests__/checks.test.js.map +1 -1
  7. package/esm/__tests__/domains.test.js +1 -1
  8. package/esm/__tests__/domains.test.js.map +1 -1
  9. package/esm/__tests__/integrations.test.js +1 -1
  10. package/esm/__tests__/logdrains.test.js +1 -3
  11. package/esm/__tests__/logdrains.test.js.map +1 -1
  12. package/esm/__tests__/rollingrelease.test.js +2 -2
  13. package/esm/__tests__/rollingrelease.test.js.map +1 -1
  14. package/esm/__tests__/security.test.js +4 -4
  15. package/esm/__tests__/security.test.js.map +1 -1
  16. package/esm/__tests__/teams.test.js +2 -2
  17. package/esm/__tests__/teams.test.js.map +1 -1
  18. package/esm/lib/config.d.ts +3 -3
  19. package/esm/lib/config.js +3 -3
  20. package/esm/mcp-server/mcp-server.js +1 -1
  21. package/esm/mcp-server/server.js +1 -1
  22. package/esm/models/canceldeploymentop.d.ts +0 -37
  23. package/esm/models/canceldeploymentop.d.ts.map +1 -1
  24. package/esm/models/canceldeploymentop.js +0 -23
  25. package/esm/models/canceldeploymentop.js.map +1 -1
  26. package/esm/models/createdeploymentop.d.ts +0 -37
  27. package/esm/models/createdeploymentop.d.ts.map +1 -1
  28. package/esm/models/createdeploymentop.js +0 -22
  29. package/esm/models/createdeploymentop.js.map +1 -1
  30. package/esm/models/createintegrationstoredirectop.d.ts +152 -152
  31. package/esm/models/createintegrationstoredirectop.js +218 -218
  32. package/esm/models/createprojectop.d.ts +18 -18
  33. package/esm/models/createprojectop.d.ts.map +1 -1
  34. package/esm/models/createprojectop.js +18 -18
  35. package/esm/models/createprojectop.js.map +1 -1
  36. package/esm/models/getconfigurationproductsop.d.ts +200 -200
  37. package/esm/models/getconfigurationproductsop.js +290 -290
  38. package/esm/models/getdeploymentop.d.ts +0 -37
  39. package/esm/models/getdeploymentop.d.ts.map +1 -1
  40. package/esm/models/getdeploymentop.js +0 -22
  41. package/esm/models/getdeploymentop.js.map +1 -1
  42. package/esm/models/getmemberop.d.ts +4 -0
  43. package/esm/models/getmemberop.d.ts.map +1 -1
  44. package/esm/models/getmemberop.js +4 -0
  45. package/esm/models/getmemberop.js.map +1 -1
  46. package/esm/models/team.d.ts +11 -11
  47. package/esm/models/team.d.ts.map +1 -1
  48. package/esm/models/team.js +8 -8
  49. package/esm/models/team.js.map +1 -1
  50. package/esm/models/updateprojectop.d.ts +18 -18
  51. package/esm/models/updateprojectop.d.ts.map +1 -1
  52. package/esm/models/updateprojectop.js +18 -18
  53. package/esm/models/updateprojectop.js.map +1 -1
  54. package/esm/types/enums.d.ts +1 -8
  55. package/esm/types/enums.d.ts.map +1 -1
  56. package/esm/types/enums.js +1 -18
  57. package/esm/types/enums.js.map +1 -1
  58. package/esm/types/unrecognized.d.ts +10 -0
  59. package/esm/types/unrecognized.d.ts.map +1 -0
  60. package/esm/types/unrecognized.js +23 -0
  61. package/esm/types/unrecognized.js.map +1 -0
  62. package/examples/package-lock.json +1 -1
  63. package/jsr.json +1 -1
  64. package/package.json +1 -1
  65. package/src/__tests__/accessgroups.test.ts +2 -6
  66. package/src/__tests__/checks.test.ts +1 -1
  67. package/src/__tests__/domains.test.ts +1 -1
  68. package/src/__tests__/integrations.test.ts +1 -1
  69. package/src/__tests__/logdrains.test.ts +1 -3
  70. package/src/__tests__/rollingrelease.test.ts +2 -2
  71. package/src/__tests__/security.test.ts +4 -4
  72. package/src/__tests__/teams.test.ts +2 -2
  73. package/src/lib/config.ts +3 -3
  74. package/src/mcp-server/mcp-server.ts +1 -1
  75. package/src/mcp-server/server.ts +1 -1
  76. package/src/models/canceldeploymentop.ts +0 -76
  77. package/src/models/createdeploymentop.ts +0 -87
  78. package/src/models/createintegrationstoredirectop.ts +471 -471
  79. package/src/models/createprojectop.ts +30 -30
  80. package/src/models/getconfigurationproductsop.ts +627 -627
  81. package/src/models/getdeploymentop.ts +0 -88
  82. package/src/models/getmemberop.ts +8 -0
  83. package/src/models/team.ts +15 -15
  84. package/src/models/updateprojectop.ts +30 -30
  85. package/src/types/enums.ts +1 -21
  86. package/src/types/unrecognized.ts +27 -0
  87. package/vercel-spec.json +155 -230
package/vercel-spec.json CHANGED
@@ -11911,33 +11911,6 @@
11911
11911
  "isDefaultApp": {
11912
11912
  "type": "boolean"
11913
11913
  },
11914
- "applications": {
11915
- "additionalProperties": {
11916
- "properties": {
11917
- "isDefaultApp": {
11918
- "type": "boolean"
11919
- },
11920
- "productionHost": {
11921
- "type": "string",
11922
- "description": "This is the production alias, it will always show the most up to date of each application."
11923
- },
11924
- "deploymentAlias": {
11925
- "type": "string",
11926
- "description": "Use the fixed deploymentAlias and deploymentHost so that the microfrontend preview stays in sync with the deployment. These are only present for mono-repos when a single commit creates multiple deployments. If they are not present, productionHost will be used."
11927
- },
11928
- "deploymentHost": {
11929
- "type": "string"
11930
- }
11931
- },
11932
- "required": [
11933
- "productionHost"
11934
- ],
11935
- "type": "object",
11936
- "description": "A map of the other applications that are part of this group. Only defined on the default application. The field is set after deployments have been created, so can be undefined, but should be there for a successful deployment. Note: this field will be removed when MFE alias routing is fully rolled out."
11937
- },
11938
- "type": "object",
11939
- "description": "A map of the other applications that are part of this group. Only defined on the default application. The field is set after deployments have been created, so can be undefined, but should be there for a successful deployment. Note: this field will be removed when MFE alias routing is fully rolled out."
11940
- },
11941
11914
  "mfeConfigUploadState": {
11942
11915
  "type": "string",
11943
11916
  "enum": [
@@ -15804,33 +15777,6 @@
15804
15777
  "isDefaultApp": {
15805
15778
  "type": "boolean"
15806
15779
  },
15807
- "applications": {
15808
- "additionalProperties": {
15809
- "properties": {
15810
- "isDefaultApp": {
15811
- "type": "boolean"
15812
- },
15813
- "productionHost": {
15814
- "type": "string",
15815
- "description": "This is the production alias, it will always show the most up to date of each application."
15816
- },
15817
- "deploymentAlias": {
15818
- "type": "string",
15819
- "description": "Use the fixed deploymentAlias and deploymentHost so that the microfrontend preview stays in sync with the deployment. These are only present for mono-repos when a single commit creates multiple deployments. If they are not present, productionHost will be used."
15820
- },
15821
- "deploymentHost": {
15822
- "type": "string"
15823
- }
15824
- },
15825
- "required": [
15826
- "productionHost"
15827
- ],
15828
- "type": "object",
15829
- "description": "A map of the other applications that are part of this group. Only defined on the default application. The field is set after deployments have been created, so can be undefined, but should be there for a successful deployment. Note: this field will be removed when MFE alias routing is fully rolled out."
15830
- },
15831
- "type": "object",
15832
- "description": "A map of the other applications that are part of this group. Only defined on the default application. The field is set after deployments have been created, so can be undefined, but should be there for a successful deployment. Note: this field will be removed when MFE alias routing is fully rolled out."
15833
- },
15834
15780
  "mfeConfigUploadState": {
15835
15781
  "type": "string",
15836
15782
  "enum": [
@@ -19089,33 +19035,6 @@
19089
19035
  "isDefaultApp": {
19090
19036
  "type": "boolean"
19091
19037
  },
19092
- "applications": {
19093
- "additionalProperties": {
19094
- "properties": {
19095
- "isDefaultApp": {
19096
- "type": "boolean"
19097
- },
19098
- "productionHost": {
19099
- "type": "string",
19100
- "description": "This is the production alias, it will always show the most up to date of each application."
19101
- },
19102
- "deploymentAlias": {
19103
- "type": "string",
19104
- "description": "Use the fixed deploymentAlias and deploymentHost so that the microfrontend preview stays in sync with the deployment. These are only present for mono-repos when a single commit creates multiple deployments. If they are not present, productionHost will be used."
19105
- },
19106
- "deploymentHost": {
19107
- "type": "string"
19108
- }
19109
- },
19110
- "required": [
19111
- "productionHost"
19112
- ],
19113
- "type": "object",
19114
- "description": "A map of the other applications that are part of this group. Only defined on the default application. The field is set after deployments have been created, so can be undefined, but should be there for a successful deployment. Note: this field will be removed when MFE alias routing is fully rolled out."
19115
- },
19116
- "type": "object",
19117
- "description": "A map of the other applications that are part of this group. Only defined on the default application. The field is set after deployments have been created, so can be undefined, but should be there for a successful deployment. Note: this field will be removed when MFE alias routing is fully rolled out."
19118
- },
19119
19038
  "mfeConfigUploadState": {
19120
19039
  "type": "string",
19121
19040
  "enum": [
@@ -36552,6 +36471,12 @@
36552
36471
  "USER"
36553
36472
  ],
36554
36473
  "description": "\"The `ADMIN` role, by default, is provided to users capable of installing integrations, while the `USER` role can be granted to Vercel users with the Vercel `Billing` or Vercel `Viewer` role, which are considered to be Read-Only roles.\""
36474
+ },
36475
+ "globalUserId": {
36476
+ "type": "string"
36477
+ },
36478
+ "userEmail": {
36479
+ "type": "string"
36555
36480
  }
36556
36481
  },
36557
36482
  "required": [
@@ -40262,34 +40187,34 @@
40262
40187
  "minLength": {
40263
40188
  "type": "object",
40264
40189
  "properties": {
40265
- "__@BRAND@666792": {
40190
+ "__@BRAND@670050": {
40266
40191
  "type": "object"
40267
40192
  }
40268
40193
  },
40269
40194
  "required": [
40270
- "__@BRAND@666792"
40195
+ "__@BRAND@670050"
40271
40196
  ]
40272
40197
  },
40273
40198
  "maxLength": {
40274
40199
  "type": "object",
40275
40200
  "properties": {
40276
- "__@BRAND@666792": {
40201
+ "__@BRAND@670050": {
40277
40202
  "type": "object"
40278
40203
  }
40279
40204
  },
40280
40205
  "required": [
40281
- "__@BRAND@666792"
40206
+ "__@BRAND@670050"
40282
40207
  ]
40283
40208
  },
40284
40209
  "pattern": {
40285
40210
  "type": "object",
40286
40211
  "properties": {
40287
- "__@BRAND@666792": {
40212
+ "__@BRAND@670050": {
40288
40213
  "type": "object"
40289
40214
  }
40290
40215
  },
40291
40216
  "required": [
40292
- "__@BRAND@666792"
40217
+ "__@BRAND@670050"
40293
40218
  ]
40294
40219
  },
40295
40220
  "default": {
@@ -40972,34 +40897,34 @@
40972
40897
  "minLength": {
40973
40898
  "type": "object",
40974
40899
  "properties": {
40975
- "__@BRAND@666792": {
40900
+ "__@BRAND@670050": {
40976
40901
  "type": "object"
40977
40902
  }
40978
40903
  },
40979
40904
  "required": [
40980
- "__@BRAND@666792"
40905
+ "__@BRAND@670050"
40981
40906
  ]
40982
40907
  },
40983
40908
  "maxLength": {
40984
40909
  "type": "object",
40985
40910
  "properties": {
40986
- "__@BRAND@666792": {
40911
+ "__@BRAND@670050": {
40987
40912
  "type": "object"
40988
40913
  }
40989
40914
  },
40990
40915
  "required": [
40991
- "__@BRAND@666792"
40916
+ "__@BRAND@670050"
40992
40917
  ]
40993
40918
  },
40994
40919
  "pattern": {
40995
40920
  "type": "object",
40996
40921
  "properties": {
40997
- "__@BRAND@666792": {
40922
+ "__@BRAND@670050": {
40998
40923
  "type": "object"
40999
40924
  }
41000
40925
  },
41001
40926
  "required": [
41002
- "__@BRAND@666792"
40927
+ "__@BRAND@670050"
41003
40928
  ]
41004
40929
  },
41005
40930
  "default": {
@@ -41157,34 +41082,34 @@
41157
41082
  "minLength": {
41158
41083
  "type": "object",
41159
41084
  "properties": {
41160
- "__@BRAND@666792": {
41085
+ "__@BRAND@670050": {
41161
41086
  "type": "object"
41162
41087
  }
41163
41088
  },
41164
41089
  "required": [
41165
- "__@BRAND@666792"
41090
+ "__@BRAND@670050"
41166
41091
  ]
41167
41092
  },
41168
41093
  "maxLength": {
41169
41094
  "type": "object",
41170
41095
  "properties": {
41171
- "__@BRAND@666792": {
41096
+ "__@BRAND@670050": {
41172
41097
  "type": "object"
41173
41098
  }
41174
41099
  },
41175
41100
  "required": [
41176
- "__@BRAND@666792"
41101
+ "__@BRAND@670050"
41177
41102
  ]
41178
41103
  },
41179
41104
  "pattern": {
41180
41105
  "type": "object",
41181
41106
  "properties": {
41182
- "__@BRAND@666792": {
41107
+ "__@BRAND@670050": {
41183
41108
  "type": "object"
41184
41109
  }
41185
41110
  },
41186
41111
  "required": [
41187
- "__@BRAND@666792"
41112
+ "__@BRAND@670050"
41188
41113
  ]
41189
41114
  },
41190
41115
  "default": {
@@ -41495,12 +41420,12 @@
41495
41420
  {
41496
41421
  "type": "object",
41497
41422
  "properties": {
41498
- "__@BRAND@666792": {
41423
+ "__@BRAND@670050": {
41499
41424
  "type": "object"
41500
41425
  }
41501
41426
  },
41502
41427
  "required": [
41503
- "__@BRAND@666792"
41428
+ "__@BRAND@670050"
41504
41429
  ]
41505
41430
  },
41506
41431
  {
@@ -41508,12 +41433,12 @@
41508
41433
  "value": {
41509
41434
  "type": "object",
41510
41435
  "properties": {
41511
- "__@BRAND@666792": {
41436
+ "__@BRAND@670050": {
41512
41437
  "type": "object"
41513
41438
  }
41514
41439
  },
41515
41440
  "required": [
41516
- "__@BRAND@666792"
41441
+ "__@BRAND@670050"
41517
41442
  ]
41518
41443
  },
41519
41444
  "disabled": {
@@ -41582,34 +41507,34 @@
41582
41507
  "minLength": {
41583
41508
  "type": "object",
41584
41509
  "properties": {
41585
- "__@BRAND@666792": {
41510
+ "__@BRAND@670050": {
41586
41511
  "type": "object"
41587
41512
  }
41588
41513
  },
41589
41514
  "required": [
41590
- "__@BRAND@666792"
41515
+ "__@BRAND@670050"
41591
41516
  ]
41592
41517
  },
41593
41518
  "maxLength": {
41594
41519
  "type": "object",
41595
41520
  "properties": {
41596
- "__@BRAND@666792": {
41521
+ "__@BRAND@670050": {
41597
41522
  "type": "object"
41598
41523
  }
41599
41524
  },
41600
41525
  "required": [
41601
- "__@BRAND@666792"
41526
+ "__@BRAND@670050"
41602
41527
  ]
41603
41528
  },
41604
41529
  "pattern": {
41605
41530
  "type": "object",
41606
41531
  "properties": {
41607
- "__@BRAND@666792": {
41532
+ "__@BRAND@670050": {
41608
41533
  "type": "object"
41609
41534
  }
41610
41535
  },
41611
41536
  "required": [
41612
- "__@BRAND@666792"
41537
+ "__@BRAND@670050"
41613
41538
  ]
41614
41539
  },
41615
41540
  "default": {
@@ -41767,34 +41692,34 @@
41767
41692
  "minLength": {
41768
41693
  "type": "object",
41769
41694
  "properties": {
41770
- "__@BRAND@666792": {
41695
+ "__@BRAND@670050": {
41771
41696
  "type": "object"
41772
41697
  }
41773
41698
  },
41774
41699
  "required": [
41775
- "__@BRAND@666792"
41700
+ "__@BRAND@670050"
41776
41701
  ]
41777
41702
  },
41778
41703
  "maxLength": {
41779
41704
  "type": "object",
41780
41705
  "properties": {
41781
- "__@BRAND@666792": {
41706
+ "__@BRAND@670050": {
41782
41707
  "type": "object"
41783
41708
  }
41784
41709
  },
41785
41710
  "required": [
41786
- "__@BRAND@666792"
41711
+ "__@BRAND@670050"
41787
41712
  ]
41788
41713
  },
41789
41714
  "pattern": {
41790
41715
  "type": "object",
41791
41716
  "properties": {
41792
- "__@BRAND@666792": {
41717
+ "__@BRAND@670050": {
41793
41718
  "type": "object"
41794
41719
  }
41795
41720
  },
41796
41721
  "required": [
41797
- "__@BRAND@666792"
41722
+ "__@BRAND@670050"
41798
41723
  ]
41799
41724
  },
41800
41725
  "default": {
@@ -41883,12 +41808,12 @@
41883
41808
  {
41884
41809
  "type": "object",
41885
41810
  "properties": {
41886
- "__@BRAND@666792": {
41811
+ "__@BRAND@670050": {
41887
41812
  "type": "object"
41888
41813
  }
41889
41814
  },
41890
41815
  "required": [
41891
- "__@BRAND@666792"
41816
+ "__@BRAND@670050"
41892
41817
  ]
41893
41818
  },
41894
41819
  {
@@ -41896,12 +41821,12 @@
41896
41821
  "value": {
41897
41822
  "type": "object",
41898
41823
  "properties": {
41899
- "__@BRAND@666792": {
41824
+ "__@BRAND@670050": {
41900
41825
  "type": "object"
41901
41826
  }
41902
41827
  },
41903
41828
  "required": [
41904
- "__@BRAND@666792"
41829
+ "__@BRAND@670050"
41905
41830
  ]
41906
41831
  },
41907
41832
  "disabled": {
@@ -42087,12 +42012,12 @@
42087
42012
  "items": {
42088
42013
  "type": "object",
42089
42014
  "properties": {
42090
- "__@BRAND@666792": {
42015
+ "__@BRAND@670050": {
42091
42016
  "type": "object"
42092
42017
  }
42093
42018
  },
42094
42019
  "required": [
42095
- "__@BRAND@666792"
42020
+ "__@BRAND@670050"
42096
42021
  ]
42097
42022
  },
42098
42023
  "type": "array"
@@ -42101,12 +42026,12 @@
42101
42026
  "items": {
42102
42027
  "type": "object",
42103
42028
  "properties": {
42104
- "__@BRAND@666792": {
42029
+ "__@BRAND@670050": {
42105
42030
  "type": "object"
42106
42031
  }
42107
42032
  },
42108
42033
  "required": [
42109
- "__@BRAND@666792"
42034
+ "__@BRAND@670050"
42110
42035
  ]
42111
42036
  },
42112
42037
  "type": "array"
@@ -42140,34 +42065,34 @@
42140
42065
  "minLength": {
42141
42066
  "type": "object",
42142
42067
  "properties": {
42143
- "__@BRAND@666792": {
42068
+ "__@BRAND@670050": {
42144
42069
  "type": "object"
42145
42070
  }
42146
42071
  },
42147
42072
  "required": [
42148
- "__@BRAND@666792"
42073
+ "__@BRAND@670050"
42149
42074
  ]
42150
42075
  },
42151
42076
  "maxLength": {
42152
42077
  "type": "object",
42153
42078
  "properties": {
42154
- "__@BRAND@666792": {
42079
+ "__@BRAND@670050": {
42155
42080
  "type": "object"
42156
42081
  }
42157
42082
  },
42158
42083
  "required": [
42159
- "__@BRAND@666792"
42084
+ "__@BRAND@670050"
42160
42085
  ]
42161
42086
  },
42162
42087
  "pattern": {
42163
42088
  "type": "object",
42164
42089
  "properties": {
42165
- "__@BRAND@666792": {
42090
+ "__@BRAND@670050": {
42166
42091
  "type": "object"
42167
42092
  }
42168
42093
  },
42169
42094
  "required": [
42170
- "__@BRAND@666792"
42095
+ "__@BRAND@670050"
42171
42096
  ]
42172
42097
  },
42173
42098
  "default": {
@@ -42301,12 +42226,12 @@
42301
42226
  "value": {
42302
42227
  "type": "object",
42303
42228
  "properties": {
42304
- "__@BRAND@666792": {
42229
+ "__@BRAND@670050": {
42305
42230
  "type": "object"
42306
42231
  }
42307
42232
  },
42308
42233
  "required": [
42309
- "__@BRAND@666792"
42234
+ "__@BRAND@670050"
42310
42235
  ]
42311
42236
  },
42312
42237
  "disabled": {
@@ -49605,10 +49530,10 @@
49605
49530
  "type": "string",
49606
49531
  "enum": [
49607
49532
  "system",
49608
- "secret",
49609
49533
  "encrypted",
49610
49534
  "plain",
49611
- "sensitive"
49535
+ "sensitive",
49536
+ "secret"
49612
49537
  ]
49613
49538
  },
49614
49539
  "sunsetSecretId": {
@@ -50621,17 +50546,17 @@
50621
50546
  "github-limited"
50622
50547
  ]
50623
50548
  },
50624
- "updatedAt": {
50549
+ "repo": {
50550
+ "type": "string"
50551
+ },
50552
+ "repoId": {
50625
50553
  "type": "number"
50626
50554
  },
50627
50555
  "createdAt": {
50628
50556
  "type": "number"
50629
50557
  },
50630
- "repo": {
50631
- "type": "string"
50632
- },
50633
- "sourceless": {
50634
- "type": "boolean"
50558
+ "updatedAt": {
50559
+ "type": "number"
50635
50560
  },
50636
50561
  "org": {
50637
50562
  "type": "string"
@@ -50640,9 +50565,6 @@
50640
50565
  "type": "number",
50641
50566
  "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."
50642
50567
  },
50643
- "repoId": {
50644
- "type": "number"
50645
- },
50646
50568
  "deployHooks": {
50647
50569
  "items": {
50648
50570
  "properties": {
@@ -50675,6 +50597,9 @@
50675
50597
  "gitCredentialId": {
50676
50598
  "type": "string"
50677
50599
  },
50600
+ "sourceless": {
50601
+ "type": "boolean"
50602
+ },
50678
50603
  "productionBranch": {
50679
50604
  "type": "string"
50680
50605
  }
@@ -51122,6 +51047,9 @@
51122
51047
  },
51123
51048
  "resourceConfig": {
51124
51049
  "properties": {
51050
+ "elasticConcurrencyEnabled": {
51051
+ "type": "boolean"
51052
+ },
51125
51053
  "fluid": {
51126
51054
  "type": "boolean"
51127
51055
  },
@@ -51145,9 +51073,6 @@
51145
51073
  "functionZeroConfigFailover": {
51146
51074
  "type": "boolean"
51147
51075
  },
51148
- "elasticConcurrencyEnabled": {
51149
- "type": "boolean"
51150
- },
51151
51076
  "buildMachineType": {
51152
51077
  "type": "string",
51153
51078
  "enum": [
@@ -51248,6 +51173,9 @@
51248
51173
  },
51249
51174
  "defaultResourceConfig": {
51250
51175
  "properties": {
51176
+ "elasticConcurrencyEnabled": {
51177
+ "type": "boolean"
51178
+ },
51251
51179
  "fluid": {
51252
51180
  "type": "boolean"
51253
51181
  },
@@ -51271,9 +51199,6 @@
51271
51199
  "functionZeroConfigFailover": {
51272
51200
  "type": "boolean"
51273
51201
  },
51274
- "elasticConcurrencyEnabled": {
51275
- "type": "boolean"
51276
- },
51277
51202
  "buildMachineType": {
51278
51203
  "type": "string",
51279
51204
  "enum": [
@@ -51340,8 +51265,8 @@
51340
51265
  "deploymentType": {
51341
51266
  "type": "string",
51342
51267
  "enum": [
51343
- "all",
51344
51268
  "preview",
51269
+ "all",
51345
51270
  "prod_deployment_urls_and_all_previews",
51346
51271
  "all_except_custom_domains"
51347
51272
  ]
@@ -53116,11 +53041,11 @@
53116
53041
  "deploymentType": {
53117
53042
  "type": "string",
53118
53043
  "enum": [
53119
- "all",
53120
53044
  "preview",
53045
+ "production",
53046
+ "all",
53121
53047
  "prod_deployment_urls_and_all_previews",
53122
- "all_except_custom_domains",
53123
- "production"
53048
+ "all_except_custom_domains"
53124
53049
  ]
53125
53050
  },
53126
53051
  "addresses": {
@@ -53160,11 +53085,11 @@
53160
53085
  "deploymentType": {
53161
53086
  "type": "string",
53162
53087
  "enum": [
53163
- "all",
53164
53088
  "preview",
53089
+ "production",
53090
+ "all",
53165
53091
  "prod_deployment_urls_and_all_previews",
53166
- "all_except_custom_domains",
53167
- "production"
53092
+ "all_except_custom_domains"
53168
53093
  ]
53169
53094
  }
53170
53095
  },
@@ -59618,10 +59543,10 @@
59618
59543
  "type": "string",
59619
59544
  "enum": [
59620
59545
  "system",
59621
- "secret",
59622
59546
  "encrypted",
59623
59547
  "plain",
59624
- "sensitive"
59548
+ "sensitive",
59549
+ "secret"
59625
59550
  ]
59626
59551
  },
59627
59552
  "sunsetSecretId": {
@@ -60634,17 +60559,17 @@
60634
60559
  "github-limited"
60635
60560
  ]
60636
60561
  },
60637
- "updatedAt": {
60562
+ "repo": {
60563
+ "type": "string"
60564
+ },
60565
+ "repoId": {
60638
60566
  "type": "number"
60639
60567
  },
60640
60568
  "createdAt": {
60641
60569
  "type": "number"
60642
60570
  },
60643
- "repo": {
60644
- "type": "string"
60645
- },
60646
- "sourceless": {
60647
- "type": "boolean"
60571
+ "updatedAt": {
60572
+ "type": "number"
60648
60573
  },
60649
60574
  "org": {
60650
60575
  "type": "string"
@@ -60653,9 +60578,6 @@
60653
60578
  "type": "number",
60654
60579
  "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."
60655
60580
  },
60656
- "repoId": {
60657
- "type": "number"
60658
- },
60659
60581
  "deployHooks": {
60660
60582
  "items": {
60661
60583
  "properties": {
@@ -60688,6 +60610,9 @@
60688
60610
  "gitCredentialId": {
60689
60611
  "type": "string"
60690
60612
  },
60613
+ "sourceless": {
60614
+ "type": "boolean"
60615
+ },
60691
60616
  "productionBranch": {
60692
60617
  "type": "string"
60693
60618
  }
@@ -61135,6 +61060,9 @@
61135
61060
  },
61136
61061
  "resourceConfig": {
61137
61062
  "properties": {
61063
+ "elasticConcurrencyEnabled": {
61064
+ "type": "boolean"
61065
+ },
61138
61066
  "fluid": {
61139
61067
  "type": "boolean"
61140
61068
  },
@@ -61158,9 +61086,6 @@
61158
61086
  "functionZeroConfigFailover": {
61159
61087
  "type": "boolean"
61160
61088
  },
61161
- "elasticConcurrencyEnabled": {
61162
- "type": "boolean"
61163
- },
61164
61089
  "buildMachineType": {
61165
61090
  "type": "string",
61166
61091
  "enum": [
@@ -61261,6 +61186,9 @@
61261
61186
  },
61262
61187
  "defaultResourceConfig": {
61263
61188
  "properties": {
61189
+ "elasticConcurrencyEnabled": {
61190
+ "type": "boolean"
61191
+ },
61264
61192
  "fluid": {
61265
61193
  "type": "boolean"
61266
61194
  },
@@ -61284,9 +61212,6 @@
61284
61212
  "functionZeroConfigFailover": {
61285
61213
  "type": "boolean"
61286
61214
  },
61287
- "elasticConcurrencyEnabled": {
61288
- "type": "boolean"
61289
- },
61290
61215
  "buildMachineType": {
61291
61216
  "type": "string",
61292
61217
  "enum": [
@@ -61353,8 +61278,8 @@
61353
61278
  "deploymentType": {
61354
61279
  "type": "string",
61355
61280
  "enum": [
61356
- "all",
61357
61281
  "preview",
61282
+ "all",
61358
61283
  "prod_deployment_urls_and_all_previews",
61359
61284
  "all_except_custom_domains"
61360
61285
  ]
@@ -63129,11 +63054,11 @@
63129
63054
  "deploymentType": {
63130
63055
  "type": "string",
63131
63056
  "enum": [
63132
- "all",
63133
63057
  "preview",
63058
+ "production",
63059
+ "all",
63134
63060
  "prod_deployment_urls_and_all_previews",
63135
- "all_except_custom_domains",
63136
- "production"
63061
+ "all_except_custom_domains"
63137
63062
  ]
63138
63063
  },
63139
63064
  "addresses": {
@@ -63173,11 +63098,11 @@
63173
63098
  "deploymentType": {
63174
63099
  "type": "string",
63175
63100
  "enum": [
63176
- "all",
63177
63101
  "preview",
63102
+ "production",
63103
+ "all",
63178
63104
  "prod_deployment_urls_and_all_previews",
63179
- "all_except_custom_domains",
63180
- "production"
63105
+ "all_except_custom_domains"
63181
63106
  ]
63182
63107
  }
63183
63108
  },
@@ -80947,34 +80872,34 @@
80947
80872
  "maxLength": {
80948
80873
  "type": "object",
80949
80874
  "properties": {
80950
- "__@BRAND@8805": {
80875
+ "__@BRAND@8878": {
80951
80876
  "type": "object"
80952
80877
  }
80953
80878
  },
80954
80879
  "required": [
80955
- "__@BRAND@8805"
80880
+ "__@BRAND@8878"
80956
80881
  ]
80957
80882
  },
80958
80883
  "minLength": {
80959
80884
  "type": "object",
80960
80885
  "properties": {
80961
- "__@BRAND@8805": {
80886
+ "__@BRAND@8878": {
80962
80887
  "type": "object"
80963
80888
  }
80964
80889
  },
80965
80890
  "required": [
80966
- "__@BRAND@8805"
80891
+ "__@BRAND@8878"
80967
80892
  ]
80968
80893
  },
80969
80894
  "pattern": {
80970
80895
  "type": "object",
80971
80896
  "properties": {
80972
- "__@BRAND@8805": {
80897
+ "__@BRAND@8878": {
80973
80898
  "type": "object"
80974
80899
  }
80975
80900
  },
80976
80901
  "required": [
80977
- "__@BRAND@8805"
80902
+ "__@BRAND@8878"
80978
80903
  ]
80979
80904
  },
80980
80905
  "description": {
@@ -81657,34 +81582,34 @@
81657
81582
  "maxLength": {
81658
81583
  "type": "object",
81659
81584
  "properties": {
81660
- "__@BRAND@8805": {
81585
+ "__@BRAND@8878": {
81661
81586
  "type": "object"
81662
81587
  }
81663
81588
  },
81664
81589
  "required": [
81665
- "__@BRAND@8805"
81590
+ "__@BRAND@8878"
81666
81591
  ]
81667
81592
  },
81668
81593
  "minLength": {
81669
81594
  "type": "object",
81670
81595
  "properties": {
81671
- "__@BRAND@8805": {
81596
+ "__@BRAND@8878": {
81672
81597
  "type": "object"
81673
81598
  }
81674
81599
  },
81675
81600
  "required": [
81676
- "__@BRAND@8805"
81601
+ "__@BRAND@8878"
81677
81602
  ]
81678
81603
  },
81679
81604
  "pattern": {
81680
81605
  "type": "object",
81681
81606
  "properties": {
81682
- "__@BRAND@8805": {
81607
+ "__@BRAND@8878": {
81683
81608
  "type": "object"
81684
81609
  }
81685
81610
  },
81686
81611
  "required": [
81687
- "__@BRAND@8805"
81612
+ "__@BRAND@8878"
81688
81613
  ]
81689
81614
  },
81690
81615
  "description": {
@@ -81833,34 +81758,34 @@
81833
81758
  "minLength": {
81834
81759
  "type": "object",
81835
81760
  "properties": {
81836
- "__@BRAND@8805": {
81761
+ "__@BRAND@8878": {
81837
81762
  "type": "object"
81838
81763
  }
81839
81764
  },
81840
81765
  "required": [
81841
- "__@BRAND@8805"
81766
+ "__@BRAND@8878"
81842
81767
  ]
81843
81768
  },
81844
81769
  "maxLength": {
81845
81770
  "type": "object",
81846
81771
  "properties": {
81847
- "__@BRAND@8805": {
81772
+ "__@BRAND@8878": {
81848
81773
  "type": "object"
81849
81774
  }
81850
81775
  },
81851
81776
  "required": [
81852
- "__@BRAND@8805"
81777
+ "__@BRAND@8878"
81853
81778
  ]
81854
81779
  },
81855
81780
  "pattern": {
81856
81781
  "type": "object",
81857
81782
  "properties": {
81858
- "__@BRAND@8805": {
81783
+ "__@BRAND@8878": {
81859
81784
  "type": "object"
81860
81785
  }
81861
81786
  },
81862
81787
  "required": [
81863
- "__@BRAND@8805"
81788
+ "__@BRAND@8878"
81864
81789
  ]
81865
81790
  },
81866
81791
  "default": {
@@ -82177,12 +82102,12 @@
82177
82102
  {
82178
82103
  "type": "object",
82179
82104
  "properties": {
82180
- "__@BRAND@8805": {
82105
+ "__@BRAND@8878": {
82181
82106
  "type": "object"
82182
82107
  }
82183
82108
  },
82184
82109
  "required": [
82185
- "__@BRAND@8805"
82110
+ "__@BRAND@8878"
82186
82111
  ]
82187
82112
  },
82188
82113
  {
@@ -82190,12 +82115,12 @@
82190
82115
  "value": {
82191
82116
  "type": "object",
82192
82117
  "properties": {
82193
- "__@BRAND@8805": {
82118
+ "__@BRAND@8878": {
82194
82119
  "type": "object"
82195
82120
  }
82196
82121
  },
82197
82122
  "required": [
82198
- "__@BRAND@8805"
82123
+ "__@BRAND@8878"
82199
82124
  ]
82200
82125
  },
82201
82126
  "disabled": {
@@ -82267,34 +82192,34 @@
82267
82192
  "maxLength": {
82268
82193
  "type": "object",
82269
82194
  "properties": {
82270
- "__@BRAND@8805": {
82195
+ "__@BRAND@8878": {
82271
82196
  "type": "object"
82272
82197
  }
82273
82198
  },
82274
82199
  "required": [
82275
- "__@BRAND@8805"
82200
+ "__@BRAND@8878"
82276
82201
  ]
82277
82202
  },
82278
82203
  "minLength": {
82279
82204
  "type": "object",
82280
82205
  "properties": {
82281
- "__@BRAND@8805": {
82206
+ "__@BRAND@8878": {
82282
82207
  "type": "object"
82283
82208
  }
82284
82209
  },
82285
82210
  "required": [
82286
- "__@BRAND@8805"
82211
+ "__@BRAND@8878"
82287
82212
  ]
82288
82213
  },
82289
82214
  "pattern": {
82290
82215
  "type": "object",
82291
82216
  "properties": {
82292
- "__@BRAND@8805": {
82217
+ "__@BRAND@8878": {
82293
82218
  "type": "object"
82294
82219
  }
82295
82220
  },
82296
82221
  "required": [
82297
- "__@BRAND@8805"
82222
+ "__@BRAND@8878"
82298
82223
  ]
82299
82224
  },
82300
82225
  "description": {
@@ -82444,34 +82369,34 @@
82444
82369
  "maxLength": {
82445
82370
  "type": "object",
82446
82371
  "properties": {
82447
- "__@BRAND@8805": {
82372
+ "__@BRAND@8878": {
82448
82373
  "type": "object"
82449
82374
  }
82450
82375
  },
82451
82376
  "required": [
82452
- "__@BRAND@8805"
82377
+ "__@BRAND@8878"
82453
82378
  ]
82454
82379
  },
82455
82380
  "minLength": {
82456
82381
  "type": "object",
82457
82382
  "properties": {
82458
- "__@BRAND@8805": {
82383
+ "__@BRAND@8878": {
82459
82384
  "type": "object"
82460
82385
  }
82461
82386
  },
82462
82387
  "required": [
82463
- "__@BRAND@8805"
82388
+ "__@BRAND@8878"
82464
82389
  ]
82465
82390
  },
82466
82391
  "pattern": {
82467
82392
  "type": "object",
82468
82393
  "properties": {
82469
- "__@BRAND@8805": {
82394
+ "__@BRAND@8878": {
82470
82395
  "type": "object"
82471
82396
  }
82472
82397
  },
82473
82398
  "required": [
82474
- "__@BRAND@8805"
82399
+ "__@BRAND@8878"
82475
82400
  ]
82476
82401
  },
82477
82402
  "description": {
@@ -82602,12 +82527,12 @@
82602
82527
  "value": {
82603
82528
  "type": "object",
82604
82529
  "properties": {
82605
- "__@BRAND@8805": {
82530
+ "__@BRAND@8878": {
82606
82531
  "type": "object"
82607
82532
  }
82608
82533
  },
82609
82534
  "required": [
82610
- "__@BRAND@8805"
82535
+ "__@BRAND@8878"
82611
82536
  ]
82612
82537
  },
82613
82538
  "disabled": {
@@ -82863,12 +82788,12 @@
82863
82788
  "value": {
82864
82789
  "type": "object",
82865
82790
  "properties": {
82866
- "__@BRAND@8805": {
82791
+ "__@BRAND@8878": {
82867
82792
  "type": "object"
82868
82793
  }
82869
82794
  },
82870
82795
  "required": [
82871
- "__@BRAND@8805"
82796
+ "__@BRAND@8878"
82872
82797
  ]
82873
82798
  },
82874
82799
  "disabled": {
@@ -100571,16 +100496,16 @@
100571
100496
  "properties": {
100572
100497
  "connection": {
100573
100498
  "properties": {
100574
- "status": {
100575
- "type": "string",
100576
- "description": "Current status of the connection.",
100577
- "example": "linked"
100578
- },
100579
100499
  "type": {
100580
100500
  "type": "string",
100581
100501
  "description": "The Identity Provider \"type\", for example Okta.",
100582
100502
  "example": "OktaSAML"
100583
100503
  },
100504
+ "status": {
100505
+ "type": "string",
100506
+ "description": "Current status of the connection.",
100507
+ "example": "linked"
100508
+ },
100584
100509
  "state": {
100585
100510
  "type": "string",
100586
100511
  "description": "Current state of the connection.",
@@ -100598,8 +100523,8 @@
100598
100523
  }
100599
100524
  },
100600
100525
  "required": [
100601
- "status",
100602
100526
  "type",
100527
+ "status",
100603
100528
  "state",
100604
100529
  "connectedAt"
100605
100530
  ],
@@ -100973,6 +100898,9 @@
100973
100898
  },
100974
100899
  "type": "array"
100975
100900
  },
100901
+ "teamId": {
100902
+ "type": "string"
100903
+ },
100976
100904
  "confirmed": {
100977
100905
  "type": "boolean"
100978
100906
  },
@@ -101025,9 +100953,6 @@
101025
100953
  },
101026
100954
  "type": "array"
101027
100955
  },
101028
- "teamId": {
101029
- "type": "string"
101030
- },
101031
100956
  "createdAt": {
101032
100957
  "type": "number"
101033
100958
  },
@@ -101039,14 +100964,14 @@
101039
100964
  "origin": {
101040
100965
  "type": "string",
101041
100966
  "enum": [
101042
- "saml",
101043
- "gitlab",
101044
- "bitbucket",
101045
- "github",
101046
100967
  "link",
100968
+ "saml",
101047
100969
  "mail",
101048
100970
  "import",
101049
100971
  "teams",
100972
+ "github",
100973
+ "gitlab",
100974
+ "bitbucket",
101050
100975
  "dsync",
101051
100976
  "feedback",
101052
100977
  "organization-teams"