@vercel/sdk 1.10.1 → 1.10.3

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 (81) hide show
  1. package/bin/mcp-server.js +436 -1558
  2. package/bin/mcp-server.js.map +19 -19
  3. package/esm/__tests__/teams.test.js +2 -4
  4. package/esm/__tests__/teams.test.js.map +1 -1
  5. package/esm/funcs/domainsBuyDomain.js +2 -2
  6. package/esm/funcs/domainsBuyDomain.js.map +1 -1
  7. package/esm/funcs/domainsGetDomainConfig.js +1 -0
  8. package/esm/funcs/domainsGetDomainConfig.js.map +1 -1
  9. package/esm/funcs/domainsPatchDomain.js +2 -2
  10. package/esm/funcs/domainsPatchDomain.js.map +1 -1
  11. package/esm/lib/config.d.ts +3 -3
  12. package/esm/lib/config.js +3 -3
  13. package/esm/mcp-server/mcp-server.js +1 -1
  14. package/esm/mcp-server/server.js +1 -1
  15. package/esm/models/canceldeploymentop.d.ts +49 -49
  16. package/esm/models/canceldeploymentop.d.ts.map +1 -1
  17. package/esm/models/canceldeploymentop.js +53 -55
  18. package/esm/models/canceldeploymentop.js.map +1 -1
  19. package/esm/models/createdeploymentop.d.ts +174 -174
  20. package/esm/models/createdeploymentop.d.ts.map +1 -1
  21. package/esm/models/createdeploymentop.js +166 -165
  22. package/esm/models/createdeploymentop.js.map +1 -1
  23. package/esm/models/createprojectop.d.ts +33 -585
  24. package/esm/models/createprojectop.d.ts.map +1 -1
  25. package/esm/models/createprojectop.js +31 -530
  26. package/esm/models/createprojectop.js.map +1 -1
  27. package/esm/models/getdeploymentop.d.ts +90 -90
  28. package/esm/models/getdeploymentop.d.ts.map +1 -1
  29. package/esm/models/getdeploymentop.js +101 -102
  30. package/esm/models/getdeploymentop.js.map +1 -1
  31. package/esm/models/getdomainconfigop.d.ts +63 -0
  32. package/esm/models/getdomainconfigop.d.ts.map +1 -1
  33. package/esm/models/getdomainconfigop.js +52 -0
  34. package/esm/models/getdomainconfigop.js.map +1 -1
  35. package/esm/models/getprojectsop.d.ts +33 -585
  36. package/esm/models/getprojectsop.d.ts.map +1 -1
  37. package/esm/models/getprojectsop.js +31 -530
  38. package/esm/models/getprojectsop.js.map +1 -1
  39. package/esm/models/team.d.ts +13 -12
  40. package/esm/models/team.d.ts.map +1 -1
  41. package/esm/models/team.js +6 -7
  42. package/esm/models/team.js.map +1 -1
  43. package/esm/models/teamlimited.d.ts +0 -2
  44. package/esm/models/teamlimited.d.ts.map +1 -1
  45. package/esm/models/teamlimited.js +0 -2
  46. package/esm/models/teamlimited.js.map +1 -1
  47. package/esm/models/updateprojectdatacacheop.d.ts +41 -593
  48. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  49. package/esm/models/updateprojectdatacacheop.js +43 -561
  50. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  51. package/esm/models/updateprojectop.d.ts +33 -585
  52. package/esm/models/updateprojectop.d.ts.map +1 -1
  53. package/esm/models/updateprojectop.js +31 -530
  54. package/esm/models/updateprojectop.js.map +1 -1
  55. package/esm/models/userevent.d.ts +154 -124
  56. package/esm/models/userevent.d.ts.map +1 -1
  57. package/esm/models/userevent.js +166 -135
  58. package/esm/models/userevent.js.map +1 -1
  59. package/examples/package-lock.json +1 -1
  60. package/examples/projectsUpdateProject.example.ts +1 -1
  61. package/jsr.json +1 -1
  62. package/package.json +1 -1
  63. package/src/__tests__/teams.test.ts +2 -4
  64. package/src/funcs/domainsBuyDomain.ts +2 -2
  65. package/src/funcs/domainsGetDomainConfig.ts +1 -0
  66. package/src/funcs/domainsPatchDomain.ts +2 -2
  67. package/src/lib/config.ts +3 -3
  68. package/src/mcp-server/mcp-server.ts +1 -1
  69. package/src/mcp-server/server.ts +1 -1
  70. package/src/models/canceldeploymentop.ts +78 -104
  71. package/src/models/createdeploymentop.ts +347 -350
  72. package/src/models/createprojectop.ts +197 -1221
  73. package/src/models/getdeploymentop.ts +214 -216
  74. package/src/models/getdomainconfigop.ts +129 -0
  75. package/src/models/getprojectsop.ts +202 -1207
  76. package/src/models/team.ts +13 -16
  77. package/src/models/teamlimited.ts +0 -4
  78. package/src/models/updateprojectdatacacheop.ts +171 -1168
  79. package/src/models/updateprojectop.ts +197 -1221
  80. package/src/models/userevent.ts +309 -236
  81. package/vercel-spec.json +141 -1530
package/vercel-spec.json CHANGED
@@ -6882,6 +6882,12 @@
6882
6882
  },
6883
6883
  "type": "array"
6884
6884
  },
6885
+ "vercelAppInstallationRequest": {
6886
+ "items": {
6887
+ "$ref": "#/components/schemas/ACLAction"
6888
+ },
6889
+ "type": "array"
6890
+ },
6885
6891
  "paymentMethod": {
6886
6892
  "items": {
6887
6893
  "$ref": "#/components/schemas/ACLAction"
@@ -7868,298 +7874,6 @@
7868
7874
  "firewallConfigVersion": {
7869
7875
  "type": "number"
7870
7876
  },
7871
- "firewallRoutes": {
7872
- "items": {
7873
- "properties": {
7874
- "src": {
7875
- "oneOf": [
7876
- {
7877
- "type": "string"
7878
- },
7879
- {
7880
- "properties": {
7881
- "re": {
7882
- "type": "string"
7883
- },
7884
- "eq": {
7885
- "type": "string"
7886
- },
7887
- "neq": {
7888
- "type": "string"
7889
- },
7890
- "inc": {
7891
- "items": {
7892
- "type": "string"
7893
- },
7894
- "type": "array"
7895
- },
7896
- "ninc": {
7897
- "items": {
7898
- "type": "string"
7899
- },
7900
- "type": "array"
7901
- },
7902
- "pre": {
7903
- "type": "string"
7904
- },
7905
- "suf": {
7906
- "type": "string"
7907
- },
7908
- "gt": {
7909
- "type": "number"
7910
- },
7911
- "gte": {
7912
- "type": "number"
7913
- },
7914
- "lt": {
7915
- "type": "number"
7916
- },
7917
- "lte": {
7918
- "type": "number"
7919
- }
7920
- },
7921
- "type": "object"
7922
- }
7923
- ]
7924
- },
7925
- "has": {
7926
- "items": {
7927
- "properties": {
7928
- "type": {
7929
- "type": "string",
7930
- "enum": [
7931
- "path",
7932
- "host",
7933
- "method",
7934
- "header",
7935
- "cookie",
7936
- "query",
7937
- "ip_address",
7938
- "protocol",
7939
- "scheme",
7940
- "environment",
7941
- "region",
7942
- "initial_request_path"
7943
- ]
7944
- },
7945
- "key": {
7946
- "type": "string"
7947
- },
7948
- "value": {
7949
- "oneOf": [
7950
- {
7951
- "type": "string"
7952
- },
7953
- {
7954
- "properties": {
7955
- "re": {
7956
- "type": "string"
7957
- },
7958
- "eq": {
7959
- "type": "string"
7960
- },
7961
- "neq": {
7962
- "type": "string"
7963
- },
7964
- "inc": {
7965
- "items": {
7966
- "type": "string"
7967
- },
7968
- "type": "array"
7969
- },
7970
- "ninc": {
7971
- "items": {
7972
- "type": "string"
7973
- },
7974
- "type": "array"
7975
- },
7976
- "pre": {
7977
- "type": "string"
7978
- },
7979
- "suf": {
7980
- "type": "string"
7981
- },
7982
- "gt": {
7983
- "type": "number"
7984
- },
7985
- "gte": {
7986
- "type": "number"
7987
- },
7988
- "lt": {
7989
- "type": "number"
7990
- },
7991
- "lte": {
7992
- "type": "number"
7993
- }
7994
- },
7995
- "type": "object"
7996
- }
7997
- ]
7998
- }
7999
- },
8000
- "required": [
8001
- "type"
8002
- ],
8003
- "type": "object"
8004
- },
8005
- "type": "array"
8006
- },
8007
- "missing": {
8008
- "items": {
8009
- "properties": {
8010
- "type": {
8011
- "type": "string",
8012
- "enum": [
8013
- "path",
8014
- "host",
8015
- "method",
8016
- "header",
8017
- "cookie",
8018
- "query",
8019
- "ip_address",
8020
- "protocol",
8021
- "scheme",
8022
- "environment",
8023
- "region",
8024
- "initial_request_path"
8025
- ]
8026
- },
8027
- "key": {
8028
- "type": "string"
8029
- },
8030
- "value": {
8031
- "oneOf": [
8032
- {
8033
- "type": "string"
8034
- },
8035
- {
8036
- "properties": {
8037
- "re": {
8038
- "type": "string"
8039
- },
8040
- "eq": {
8041
- "type": "string"
8042
- },
8043
- "neq": {
8044
- "type": "string"
8045
- },
8046
- "inc": {
8047
- "items": {
8048
- "type": "string"
8049
- },
8050
- "type": "array"
8051
- },
8052
- "ninc": {
8053
- "items": {
8054
- "type": "string"
8055
- },
8056
- "type": "array"
8057
- },
8058
- "pre": {
8059
- "type": "string"
8060
- },
8061
- "suf": {
8062
- "type": "string"
8063
- },
8064
- "gt": {
8065
- "type": "number"
8066
- },
8067
- "gte": {
8068
- "type": "number"
8069
- },
8070
- "lt": {
8071
- "type": "number"
8072
- },
8073
- "lte": {
8074
- "type": "number"
8075
- }
8076
- },
8077
- "type": "object"
8078
- }
8079
- ]
8080
- }
8081
- },
8082
- "required": [
8083
- "type"
8084
- ],
8085
- "type": "object"
8086
- },
8087
- "type": "array"
8088
- },
8089
- "dest": {
8090
- "type": "string"
8091
- },
8092
- "status": {
8093
- "type": "number"
8094
- },
8095
- "handle": {
8096
- "type": "string",
8097
- "enum": [
8098
- "init",
8099
- "finalize"
8100
- ]
8101
- },
8102
- "mitigate": {
8103
- "properties": {
8104
- "action": {
8105
- "type": "string",
8106
- "enum": [
8107
- "deny",
8108
- "challenge",
8109
- "log",
8110
- "bypass",
8111
- "rate_limit",
8112
- "redirect"
8113
- ]
8114
- },
8115
- "rule_id": {
8116
- "type": "string"
8117
- },
8118
- "ttl": {
8119
- "type": "number"
8120
- },
8121
- "erl": {
8122
- "properties": {
8123
- "algo": {
8124
- "type": "string",
8125
- "enum": [
8126
- "fixed_window",
8127
- "token_bucket"
8128
- ]
8129
- },
8130
- "window": {
8131
- "type": "number"
8132
- },
8133
- "limit": {
8134
- "type": "number"
8135
- },
8136
- "keys": {
8137
- "items": {
8138
- "type": "string"
8139
- },
8140
- "type": "array"
8141
- }
8142
- },
8143
- "required": [
8144
- "algo",
8145
- "window",
8146
- "limit",
8147
- "keys"
8148
- ],
8149
- "type": "object"
8150
- }
8151
- },
8152
- "required": [
8153
- "action",
8154
- "rule_id"
8155
- ],
8156
- "type": "object"
8157
- }
8158
- },
8159
- "type": "object"
8160
- },
8161
- "type": "array"
8162
- },
8163
7877
  "firewallSeawallEnabled": {
8164
7878
  "type": "boolean"
8165
7879
  },
@@ -8186,9 +7900,9 @@
8186
7900
  "action": {
8187
7901
  "type": "string",
8188
7902
  "enum": [
8189
- "deny",
7903
+ "log",
8190
7904
  "challenge",
8191
- "log"
7905
+ "deny"
8192
7906
  ]
8193
7907
  }
8194
7908
  },
@@ -8205,9 +7919,9 @@
8205
7919
  "action": {
8206
7920
  "type": "string",
8207
7921
  "enum": [
8208
- "deny",
7922
+ "log",
8209
7923
  "challenge",
8210
- "log"
7924
+ "deny"
8211
7925
  ]
8212
7926
  }
8213
7927
  },
@@ -8224,9 +7938,9 @@
8224
7938
  "action": {
8225
7939
  "type": "string",
8226
7940
  "enum": [
8227
- "deny",
7941
+ "log",
8228
7942
  "challenge",
8229
- "log"
7943
+ "deny"
8230
7944
  ]
8231
7945
  }
8232
7946
  },
@@ -13279,11 +12993,11 @@
13279
12993
  "status": {
13280
12994
  "type": "string",
13281
12995
  "enum": [
13282
- "error",
13283
- "timeout",
13284
12996
  "skipped",
13285
12997
  "pending",
13286
- "ready"
12998
+ "ready",
12999
+ "error",
13000
+ "timeout"
13287
13001
  ]
13288
13002
  },
13289
13003
  "startedAt": {
@@ -13459,19 +13173,19 @@
13459
13173
  "createdAt": {
13460
13174
  "type": "number"
13461
13175
  },
13176
+ "entrypoint": {
13177
+ "nullable": true,
13178
+ "type": "string"
13179
+ },
13462
13180
  "readyState": {
13463
13181
  "type": "string",
13464
13182
  "enum": [
13465
- "ERROR",
13466
13183
  "BUILDING",
13184
+ "ERROR",
13467
13185
  "INITIALIZING",
13468
13186
  "READY"
13469
13187
  ]
13470
13188
  },
13471
- "entrypoint": {
13472
- "nullable": true,
13473
- "type": "string"
13474
- },
13475
13189
  "readyStateAt": {
13476
13190
  "type": "number"
13477
13191
  },
@@ -14531,15 +14245,15 @@
14531
14245
  "functionType": {
14532
14246
  "type": "string",
14533
14247
  "enum": [
14534
- "standard",
14535
- "fluid"
14248
+ "fluid",
14249
+ "standard"
14536
14250
  ]
14537
14251
  },
14538
14252
  "functionMemoryType": {
14539
14253
  "type": "string",
14540
14254
  "enum": [
14541
- "standard_legacy",
14542
14255
  "standard",
14256
+ "standard_legacy",
14543
14257
  "performance"
14544
14258
  ]
14545
14259
  },
@@ -15028,8 +14742,8 @@
15028
14742
  "op": {
15029
14743
  "type": "string",
15030
14744
  "enum": [
15031
- "set",
15032
14745
  "append",
14746
+ "set",
15033
14747
  "delete"
15034
14748
  ]
15035
14749
  },
@@ -15159,12 +14873,12 @@
15159
14873
  "handle": {
15160
14874
  "type": "string",
15161
14875
  "enum": [
15162
- "filesystem",
15163
14876
  "error",
14877
+ "filesystem",
15164
14878
  "hit",
15165
14879
  "miss",
15166
- "resource",
15167
- "rewrite"
14880
+ "rewrite",
14881
+ "resource"
15168
14882
  ]
15169
14883
  },
15170
14884
  "src": {
@@ -15419,8 +15133,8 @@
15419
15133
  "ownerType": {
15420
15134
  "type": "string",
15421
15135
  "enum": [
15422
- "user",
15423
- "team"
15136
+ "team",
15137
+ "user"
15424
15138
  ]
15425
15139
  }
15426
15140
  },
@@ -15472,8 +15186,8 @@
15472
15186
  "ownerType": {
15473
15187
  "type": "string",
15474
15188
  "enum": [
15475
- "user",
15476
- "team"
15189
+ "team",
15190
+ "user"
15477
15191
  ]
15478
15192
  }
15479
15193
  },
@@ -15526,8 +15240,8 @@
15526
15240
  "ownerType": {
15527
15241
  "type": "string",
15528
15242
  "enum": [
15529
- "user",
15530
- "team"
15243
+ "team",
15244
+ "user"
15531
15245
  ]
15532
15246
  }
15533
15247
  },
@@ -18998,6 +18712,9 @@
18998
18712
  }
18999
18713
  }
19000
18714
  }
18715
+ },
18716
+ "500": {
18717
+ "description": ""
19001
18718
  }
19002
18719
  },
19003
18720
  "parameters": [
@@ -20801,6 +20518,22 @@
20801
20518
  "type": "array",
20802
20519
  "description": "Which challenge types the domain can use for issuing certs."
20803
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
+ },
20804
20537
  "misconfigured": {
20805
20538
  "type": "boolean",
20806
20539
  "description": "Whether or not the domain is configured AND we can automatically generate a TLS certificate."
@@ -20850,6 +20583,16 @@
20850
20583
  "example": "example.com"
20851
20584
  }
20852
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
+ },
20853
20596
  {
20854
20597
  "name": "strict",
20855
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.",
@@ -21860,6 +21603,9 @@
21860
21603
  },
21861
21604
  "409": {
21862
21605
  "description": ""
21606
+ },
21607
+ "500": {
21608
+ "description": ""
21863
21609
  }
21864
21610
  },
21865
21611
  "parameters": [
@@ -33183,6 +32929,12 @@
33183
32929
  },
33184
32930
  "type": "array"
33185
32931
  },
32932
+ "vercelAppInstallationRequest": {
32933
+ "items": {
32934
+ "$ref": "#/components/schemas/ACLAction"
32935
+ },
32936
+ "type": "array"
32937
+ },
33186
32938
  "paymentMethod": {
33187
32939
  "items": {
33188
32940
  "$ref": "#/components/schemas/ACLAction"
@@ -33773,298 +33525,6 @@
33773
33525
  "firewallConfigVersion": {
33774
33526
  "type": "number"
33775
33527
  },
33776
- "firewallRoutes": {
33777
- "items": {
33778
- "properties": {
33779
- "src": {
33780
- "oneOf": [
33781
- {
33782
- "type": "string"
33783
- },
33784
- {
33785
- "properties": {
33786
- "re": {
33787
- "type": "string"
33788
- },
33789
- "eq": {
33790
- "type": "string"
33791
- },
33792
- "neq": {
33793
- "type": "string"
33794
- },
33795
- "inc": {
33796
- "items": {
33797
- "type": "string"
33798
- },
33799
- "type": "array"
33800
- },
33801
- "ninc": {
33802
- "items": {
33803
- "type": "string"
33804
- },
33805
- "type": "array"
33806
- },
33807
- "pre": {
33808
- "type": "string"
33809
- },
33810
- "suf": {
33811
- "type": "string"
33812
- },
33813
- "gt": {
33814
- "type": "number"
33815
- },
33816
- "gte": {
33817
- "type": "number"
33818
- },
33819
- "lt": {
33820
- "type": "number"
33821
- },
33822
- "lte": {
33823
- "type": "number"
33824
- }
33825
- },
33826
- "type": "object"
33827
- }
33828
- ]
33829
- },
33830
- "has": {
33831
- "items": {
33832
- "properties": {
33833
- "type": {
33834
- "type": "string",
33835
- "enum": [
33836
- "path",
33837
- "host",
33838
- "method",
33839
- "header",
33840
- "cookie",
33841
- "query",
33842
- "ip_address",
33843
- "protocol",
33844
- "scheme",
33845
- "environment",
33846
- "region",
33847
- "initial_request_path"
33848
- ]
33849
- },
33850
- "key": {
33851
- "type": "string"
33852
- },
33853
- "value": {
33854
- "oneOf": [
33855
- {
33856
- "type": "string"
33857
- },
33858
- {
33859
- "properties": {
33860
- "re": {
33861
- "type": "string"
33862
- },
33863
- "eq": {
33864
- "type": "string"
33865
- },
33866
- "neq": {
33867
- "type": "string"
33868
- },
33869
- "inc": {
33870
- "items": {
33871
- "type": "string"
33872
- },
33873
- "type": "array"
33874
- },
33875
- "ninc": {
33876
- "items": {
33877
- "type": "string"
33878
- },
33879
- "type": "array"
33880
- },
33881
- "pre": {
33882
- "type": "string"
33883
- },
33884
- "suf": {
33885
- "type": "string"
33886
- },
33887
- "gt": {
33888
- "type": "number"
33889
- },
33890
- "gte": {
33891
- "type": "number"
33892
- },
33893
- "lt": {
33894
- "type": "number"
33895
- },
33896
- "lte": {
33897
- "type": "number"
33898
- }
33899
- },
33900
- "type": "object"
33901
- }
33902
- ]
33903
- }
33904
- },
33905
- "required": [
33906
- "type"
33907
- ],
33908
- "type": "object"
33909
- },
33910
- "type": "array"
33911
- },
33912
- "missing": {
33913
- "items": {
33914
- "properties": {
33915
- "type": {
33916
- "type": "string",
33917
- "enum": [
33918
- "path",
33919
- "host",
33920
- "method",
33921
- "header",
33922
- "cookie",
33923
- "query",
33924
- "ip_address",
33925
- "protocol",
33926
- "scheme",
33927
- "environment",
33928
- "region",
33929
- "initial_request_path"
33930
- ]
33931
- },
33932
- "key": {
33933
- "type": "string"
33934
- },
33935
- "value": {
33936
- "oneOf": [
33937
- {
33938
- "type": "string"
33939
- },
33940
- {
33941
- "properties": {
33942
- "re": {
33943
- "type": "string"
33944
- },
33945
- "eq": {
33946
- "type": "string"
33947
- },
33948
- "neq": {
33949
- "type": "string"
33950
- },
33951
- "inc": {
33952
- "items": {
33953
- "type": "string"
33954
- },
33955
- "type": "array"
33956
- },
33957
- "ninc": {
33958
- "items": {
33959
- "type": "string"
33960
- },
33961
- "type": "array"
33962
- },
33963
- "pre": {
33964
- "type": "string"
33965
- },
33966
- "suf": {
33967
- "type": "string"
33968
- },
33969
- "gt": {
33970
- "type": "number"
33971
- },
33972
- "gte": {
33973
- "type": "number"
33974
- },
33975
- "lt": {
33976
- "type": "number"
33977
- },
33978
- "lte": {
33979
- "type": "number"
33980
- }
33981
- },
33982
- "type": "object"
33983
- }
33984
- ]
33985
- }
33986
- },
33987
- "required": [
33988
- "type"
33989
- ],
33990
- "type": "object"
33991
- },
33992
- "type": "array"
33993
- },
33994
- "dest": {
33995
- "type": "string"
33996
- },
33997
- "status": {
33998
- "type": "number"
33999
- },
34000
- "handle": {
34001
- "type": "string",
34002
- "enum": [
34003
- "init",
34004
- "finalize"
34005
- ]
34006
- },
34007
- "mitigate": {
34008
- "properties": {
34009
- "action": {
34010
- "type": "string",
34011
- "enum": [
34012
- "deny",
34013
- "challenge",
34014
- "log",
34015
- "bypass",
34016
- "rate_limit",
34017
- "redirect"
34018
- ]
34019
- },
34020
- "rule_id": {
34021
- "type": "string"
34022
- },
34023
- "ttl": {
34024
- "type": "number"
34025
- },
34026
- "erl": {
34027
- "properties": {
34028
- "algo": {
34029
- "type": "string",
34030
- "enum": [
34031
- "fixed_window",
34032
- "token_bucket"
34033
- ]
34034
- },
34035
- "window": {
34036
- "type": "number"
34037
- },
34038
- "limit": {
34039
- "type": "number"
34040
- },
34041
- "keys": {
34042
- "items": {
34043
- "type": "string"
34044
- },
34045
- "type": "array"
34046
- }
34047
- },
34048
- "required": [
34049
- "algo",
34050
- "window",
34051
- "limit",
34052
- "keys"
34053
- ],
34054
- "type": "object"
34055
- }
34056
- },
34057
- "required": [
34058
- "action",
34059
- "rule_id"
34060
- ],
34061
- "type": "object"
34062
- }
34063
- },
34064
- "type": "object"
34065
- },
34066
- "type": "array"
34067
- },
34068
33528
  "firewallSeawallEnabled": {
34069
33529
  "type": "boolean"
34070
33530
  },
@@ -34091,9 +33551,9 @@
34091
33551
  "action": {
34092
33552
  "type": "string",
34093
33553
  "enum": [
34094
- "deny",
33554
+ "log",
34095
33555
  "challenge",
34096
- "log"
33556
+ "deny"
34097
33557
  ]
34098
33558
  }
34099
33559
  },
@@ -34110,9 +33570,9 @@
34110
33570
  "action": {
34111
33571
  "type": "string",
34112
33572
  "enum": [
34113
- "deny",
33573
+ "log",
34114
33574
  "challenge",
34115
- "log"
33575
+ "deny"
34116
33576
  ]
34117
33577
  }
34118
33578
  },
@@ -34129,9 +33589,9 @@
34129
33589
  "action": {
34130
33590
  "type": "string",
34131
33591
  "enum": [
34132
- "deny",
33592
+ "log",
34133
33593
  "challenge",
34134
- "log"
33594
+ "deny"
34135
33595
  ]
34136
33596
  }
34137
33597
  },
@@ -37570,6 +37030,12 @@
37570
37030
  },
37571
37031
  "type": "array"
37572
37032
  },
37033
+ "vercelAppInstallationRequest": {
37034
+ "items": {
37035
+ "$ref": "#/components/schemas/ACLAction"
37036
+ },
37037
+ "type": "array"
37038
+ },
37573
37039
  "paymentMethod": {
37574
37040
  "items": {
37575
37041
  "$ref": "#/components/schemas/ACLAction"
@@ -38160,298 +37626,6 @@
38160
37626
  "firewallConfigVersion": {
38161
37627
  "type": "number"
38162
37628
  },
38163
- "firewallRoutes": {
38164
- "items": {
38165
- "properties": {
38166
- "src": {
38167
- "oneOf": [
38168
- {
38169
- "type": "string"
38170
- },
38171
- {
38172
- "properties": {
38173
- "re": {
38174
- "type": "string"
38175
- },
38176
- "eq": {
38177
- "type": "string"
38178
- },
38179
- "neq": {
38180
- "type": "string"
38181
- },
38182
- "inc": {
38183
- "items": {
38184
- "type": "string"
38185
- },
38186
- "type": "array"
38187
- },
38188
- "ninc": {
38189
- "items": {
38190
- "type": "string"
38191
- },
38192
- "type": "array"
38193
- },
38194
- "pre": {
38195
- "type": "string"
38196
- },
38197
- "suf": {
38198
- "type": "string"
38199
- },
38200
- "gt": {
38201
- "type": "number"
38202
- },
38203
- "gte": {
38204
- "type": "number"
38205
- },
38206
- "lt": {
38207
- "type": "number"
38208
- },
38209
- "lte": {
38210
- "type": "number"
38211
- }
38212
- },
38213
- "type": "object"
38214
- }
38215
- ]
38216
- },
38217
- "has": {
38218
- "items": {
38219
- "properties": {
38220
- "type": {
38221
- "type": "string",
38222
- "enum": [
38223
- "path",
38224
- "host",
38225
- "method",
38226
- "header",
38227
- "cookie",
38228
- "query",
38229
- "ip_address",
38230
- "protocol",
38231
- "scheme",
38232
- "environment",
38233
- "region",
38234
- "initial_request_path"
38235
- ]
38236
- },
38237
- "key": {
38238
- "type": "string"
38239
- },
38240
- "value": {
38241
- "oneOf": [
38242
- {
38243
- "type": "string"
38244
- },
38245
- {
38246
- "properties": {
38247
- "re": {
38248
- "type": "string"
38249
- },
38250
- "eq": {
38251
- "type": "string"
38252
- },
38253
- "neq": {
38254
- "type": "string"
38255
- },
38256
- "inc": {
38257
- "items": {
38258
- "type": "string"
38259
- },
38260
- "type": "array"
38261
- },
38262
- "ninc": {
38263
- "items": {
38264
- "type": "string"
38265
- },
38266
- "type": "array"
38267
- },
38268
- "pre": {
38269
- "type": "string"
38270
- },
38271
- "suf": {
38272
- "type": "string"
38273
- },
38274
- "gt": {
38275
- "type": "number"
38276
- },
38277
- "gte": {
38278
- "type": "number"
38279
- },
38280
- "lt": {
38281
- "type": "number"
38282
- },
38283
- "lte": {
38284
- "type": "number"
38285
- }
38286
- },
38287
- "type": "object"
38288
- }
38289
- ]
38290
- }
38291
- },
38292
- "required": [
38293
- "type"
38294
- ],
38295
- "type": "object"
38296
- },
38297
- "type": "array"
38298
- },
38299
- "missing": {
38300
- "items": {
38301
- "properties": {
38302
- "type": {
38303
- "type": "string",
38304
- "enum": [
38305
- "path",
38306
- "host",
38307
- "method",
38308
- "header",
38309
- "cookie",
38310
- "query",
38311
- "ip_address",
38312
- "protocol",
38313
- "scheme",
38314
- "environment",
38315
- "region",
38316
- "initial_request_path"
38317
- ]
38318
- },
38319
- "key": {
38320
- "type": "string"
38321
- },
38322
- "value": {
38323
- "oneOf": [
38324
- {
38325
- "type": "string"
38326
- },
38327
- {
38328
- "properties": {
38329
- "re": {
38330
- "type": "string"
38331
- },
38332
- "eq": {
38333
- "type": "string"
38334
- },
38335
- "neq": {
38336
- "type": "string"
38337
- },
38338
- "inc": {
38339
- "items": {
38340
- "type": "string"
38341
- },
38342
- "type": "array"
38343
- },
38344
- "ninc": {
38345
- "items": {
38346
- "type": "string"
38347
- },
38348
- "type": "array"
38349
- },
38350
- "pre": {
38351
- "type": "string"
38352
- },
38353
- "suf": {
38354
- "type": "string"
38355
- },
38356
- "gt": {
38357
- "type": "number"
38358
- },
38359
- "gte": {
38360
- "type": "number"
38361
- },
38362
- "lt": {
38363
- "type": "number"
38364
- },
38365
- "lte": {
38366
- "type": "number"
38367
- }
38368
- },
38369
- "type": "object"
38370
- }
38371
- ]
38372
- }
38373
- },
38374
- "required": [
38375
- "type"
38376
- ],
38377
- "type": "object"
38378
- },
38379
- "type": "array"
38380
- },
38381
- "dest": {
38382
- "type": "string"
38383
- },
38384
- "status": {
38385
- "type": "number"
38386
- },
38387
- "handle": {
38388
- "type": "string",
38389
- "enum": [
38390
- "init",
38391
- "finalize"
38392
- ]
38393
- },
38394
- "mitigate": {
38395
- "properties": {
38396
- "action": {
38397
- "type": "string",
38398
- "enum": [
38399
- "deny",
38400
- "challenge",
38401
- "log",
38402
- "bypass",
38403
- "rate_limit",
38404
- "redirect"
38405
- ]
38406
- },
38407
- "rule_id": {
38408
- "type": "string"
38409
- },
38410
- "ttl": {
38411
- "type": "number"
38412
- },
38413
- "erl": {
38414
- "properties": {
38415
- "algo": {
38416
- "type": "string",
38417
- "enum": [
38418
- "fixed_window",
38419
- "token_bucket"
38420
- ]
38421
- },
38422
- "window": {
38423
- "type": "number"
38424
- },
38425
- "limit": {
38426
- "type": "number"
38427
- },
38428
- "keys": {
38429
- "items": {
38430
- "type": "string"
38431
- },
38432
- "type": "array"
38433
- }
38434
- },
38435
- "required": [
38436
- "algo",
38437
- "window",
38438
- "limit",
38439
- "keys"
38440
- ],
38441
- "type": "object"
38442
- }
38443
- },
38444
- "required": [
38445
- "action",
38446
- "rule_id"
38447
- ],
38448
- "type": "object"
38449
- }
38450
- },
38451
- "type": "object"
38452
- },
38453
- "type": "array"
38454
- },
38455
37629
  "firewallSeawallEnabled": {
38456
37630
  "type": "boolean"
38457
37631
  },
@@ -38478,9 +37652,9 @@
38478
37652
  "action": {
38479
37653
  "type": "string",
38480
37654
  "enum": [
38481
- "deny",
37655
+ "log",
38482
37656
  "challenge",
38483
- "log"
37657
+ "deny"
38484
37658
  ]
38485
37659
  }
38486
37660
  },
@@ -38497,9 +37671,9 @@
38497
37671
  "action": {
38498
37672
  "type": "string",
38499
37673
  "enum": [
38500
- "deny",
37674
+ "log",
38501
37675
  "challenge",
38502
- "log"
37676
+ "deny"
38503
37677
  ]
38504
37678
  }
38505
37679
  },
@@ -38516,9 +37690,9 @@
38516
37690
  "action": {
38517
37691
  "type": "string",
38518
37692
  "enum": [
38519
- "deny",
37693
+ "log",
38520
37694
  "challenge",
38521
- "log"
37695
+ "deny"
38522
37696
  ]
38523
37697
  }
38524
37698
  },
@@ -41805,6 +40979,12 @@
41805
40979
  },
41806
40980
  "type": "array"
41807
40981
  },
40982
+ "vercelAppInstallationRequest": {
40983
+ "items": {
40984
+ "$ref": "#/components/schemas/ACLAction"
40985
+ },
40986
+ "type": "array"
40987
+ },
41808
40988
  "paymentMethod": {
41809
40989
  "items": {
41810
40990
  "$ref": "#/components/schemas/ACLAction"
@@ -42791,298 +41971,6 @@
42791
41971
  "firewallConfigVersion": {
42792
41972
  "type": "number"
42793
41973
  },
42794
- "firewallRoutes": {
42795
- "items": {
42796
- "properties": {
42797
- "src": {
42798
- "oneOf": [
42799
- {
42800
- "type": "string"
42801
- },
42802
- {
42803
- "properties": {
42804
- "re": {
42805
- "type": "string"
42806
- },
42807
- "eq": {
42808
- "type": "string"
42809
- },
42810
- "neq": {
42811
- "type": "string"
42812
- },
42813
- "inc": {
42814
- "items": {
42815
- "type": "string"
42816
- },
42817
- "type": "array"
42818
- },
42819
- "ninc": {
42820
- "items": {
42821
- "type": "string"
42822
- },
42823
- "type": "array"
42824
- },
42825
- "pre": {
42826
- "type": "string"
42827
- },
42828
- "suf": {
42829
- "type": "string"
42830
- },
42831
- "gt": {
42832
- "type": "number"
42833
- },
42834
- "gte": {
42835
- "type": "number"
42836
- },
42837
- "lt": {
42838
- "type": "number"
42839
- },
42840
- "lte": {
42841
- "type": "number"
42842
- }
42843
- },
42844
- "type": "object"
42845
- }
42846
- ]
42847
- },
42848
- "has": {
42849
- "items": {
42850
- "properties": {
42851
- "type": {
42852
- "type": "string",
42853
- "enum": [
42854
- "path",
42855
- "host",
42856
- "method",
42857
- "header",
42858
- "cookie",
42859
- "query",
42860
- "ip_address",
42861
- "protocol",
42862
- "scheme",
42863
- "environment",
42864
- "region",
42865
- "initial_request_path"
42866
- ]
42867
- },
42868
- "key": {
42869
- "type": "string"
42870
- },
42871
- "value": {
42872
- "oneOf": [
42873
- {
42874
- "type": "string"
42875
- },
42876
- {
42877
- "properties": {
42878
- "re": {
42879
- "type": "string"
42880
- },
42881
- "eq": {
42882
- "type": "string"
42883
- },
42884
- "neq": {
42885
- "type": "string"
42886
- },
42887
- "inc": {
42888
- "items": {
42889
- "type": "string"
42890
- },
42891
- "type": "array"
42892
- },
42893
- "ninc": {
42894
- "items": {
42895
- "type": "string"
42896
- },
42897
- "type": "array"
42898
- },
42899
- "pre": {
42900
- "type": "string"
42901
- },
42902
- "suf": {
42903
- "type": "string"
42904
- },
42905
- "gt": {
42906
- "type": "number"
42907
- },
42908
- "gte": {
42909
- "type": "number"
42910
- },
42911
- "lt": {
42912
- "type": "number"
42913
- },
42914
- "lte": {
42915
- "type": "number"
42916
- }
42917
- },
42918
- "type": "object"
42919
- }
42920
- ]
42921
- }
42922
- },
42923
- "required": [
42924
- "type"
42925
- ],
42926
- "type": "object"
42927
- },
42928
- "type": "array"
42929
- },
42930
- "missing": {
42931
- "items": {
42932
- "properties": {
42933
- "type": {
42934
- "type": "string",
42935
- "enum": [
42936
- "path",
42937
- "host",
42938
- "method",
42939
- "header",
42940
- "cookie",
42941
- "query",
42942
- "ip_address",
42943
- "protocol",
42944
- "scheme",
42945
- "environment",
42946
- "region",
42947
- "initial_request_path"
42948
- ]
42949
- },
42950
- "key": {
42951
- "type": "string"
42952
- },
42953
- "value": {
42954
- "oneOf": [
42955
- {
42956
- "type": "string"
42957
- },
42958
- {
42959
- "properties": {
42960
- "re": {
42961
- "type": "string"
42962
- },
42963
- "eq": {
42964
- "type": "string"
42965
- },
42966
- "neq": {
42967
- "type": "string"
42968
- },
42969
- "inc": {
42970
- "items": {
42971
- "type": "string"
42972
- },
42973
- "type": "array"
42974
- },
42975
- "ninc": {
42976
- "items": {
42977
- "type": "string"
42978
- },
42979
- "type": "array"
42980
- },
42981
- "pre": {
42982
- "type": "string"
42983
- },
42984
- "suf": {
42985
- "type": "string"
42986
- },
42987
- "gt": {
42988
- "type": "number"
42989
- },
42990
- "gte": {
42991
- "type": "number"
42992
- },
42993
- "lt": {
42994
- "type": "number"
42995
- },
42996
- "lte": {
42997
- "type": "number"
42998
- }
42999
- },
43000
- "type": "object"
43001
- }
43002
- ]
43003
- }
43004
- },
43005
- "required": [
43006
- "type"
43007
- ],
43008
- "type": "object"
43009
- },
43010
- "type": "array"
43011
- },
43012
- "dest": {
43013
- "type": "string"
43014
- },
43015
- "status": {
43016
- "type": "number"
43017
- },
43018
- "handle": {
43019
- "type": "string",
43020
- "enum": [
43021
- "init",
43022
- "finalize"
43023
- ]
43024
- },
43025
- "mitigate": {
43026
- "properties": {
43027
- "action": {
43028
- "type": "string",
43029
- "enum": [
43030
- "deny",
43031
- "challenge",
43032
- "log",
43033
- "bypass",
43034
- "rate_limit",
43035
- "redirect"
43036
- ]
43037
- },
43038
- "rule_id": {
43039
- "type": "string"
43040
- },
43041
- "ttl": {
43042
- "type": "number"
43043
- },
43044
- "erl": {
43045
- "properties": {
43046
- "algo": {
43047
- "type": "string",
43048
- "enum": [
43049
- "fixed_window",
43050
- "token_bucket"
43051
- ]
43052
- },
43053
- "window": {
43054
- "type": "number"
43055
- },
43056
- "limit": {
43057
- "type": "number"
43058
- },
43059
- "keys": {
43060
- "items": {
43061
- "type": "string"
43062
- },
43063
- "type": "array"
43064
- }
43065
- },
43066
- "required": [
43067
- "algo",
43068
- "window",
43069
- "limit",
43070
- "keys"
43071
- ],
43072
- "type": "object"
43073
- }
43074
- },
43075
- "required": [
43076
- "action",
43077
- "rule_id"
43078
- ],
43079
- "type": "object"
43080
- }
43081
- },
43082
- "type": "object"
43083
- },
43084
- "type": "array"
43085
- },
43086
41974
  "firewallSeawallEnabled": {
43087
41975
  "type": "boolean"
43088
41976
  },
@@ -43109,9 +41997,9 @@
43109
41997
  "action": {
43110
41998
  "type": "string",
43111
41999
  "enum": [
43112
- "deny",
42000
+ "log",
43113
42001
  "challenge",
43114
- "log"
42002
+ "deny"
43115
42003
  ]
43116
42004
  }
43117
42005
  },
@@ -43128,9 +42016,9 @@
43128
42016
  "action": {
43129
42017
  "type": "string",
43130
42018
  "enum": [
43131
- "deny",
42019
+ "log",
43132
42020
  "challenge",
43133
- "log"
42021
+ "deny"
43134
42022
  ]
43135
42023
  }
43136
42024
  },
@@ -43147,9 +42035,9 @@
43147
42035
  "action": {
43148
42036
  "type": "string",
43149
42037
  "enum": [
43150
- "deny",
42038
+ "log",
43151
42039
  "challenge",
43152
- "log"
42040
+ "deny"
43153
42041
  ]
43154
42042
  }
43155
42043
  },
@@ -46477,6 +45365,12 @@
46477
45365
  },
46478
45366
  "type": "array"
46479
45367
  },
45368
+ "vercelAppInstallationRequest": {
45369
+ "items": {
45370
+ "$ref": "#/components/schemas/ACLAction"
45371
+ },
45372
+ "type": "array"
45373
+ },
46480
45374
  "paymentMethod": {
46481
45375
  "items": {
46482
45376
  "$ref": "#/components/schemas/ACLAction"
@@ -47067,298 +45961,6 @@
47067
45961
  "firewallConfigVersion": {
47068
45962
  "type": "number"
47069
45963
  },
47070
- "firewallRoutes": {
47071
- "items": {
47072
- "properties": {
47073
- "src": {
47074
- "oneOf": [
47075
- {
47076
- "type": "string"
47077
- },
47078
- {
47079
- "properties": {
47080
- "re": {
47081
- "type": "string"
47082
- },
47083
- "eq": {
47084
- "type": "string"
47085
- },
47086
- "neq": {
47087
- "type": "string"
47088
- },
47089
- "inc": {
47090
- "items": {
47091
- "type": "string"
47092
- },
47093
- "type": "array"
47094
- },
47095
- "ninc": {
47096
- "items": {
47097
- "type": "string"
47098
- },
47099
- "type": "array"
47100
- },
47101
- "pre": {
47102
- "type": "string"
47103
- },
47104
- "suf": {
47105
- "type": "string"
47106
- },
47107
- "gt": {
47108
- "type": "number"
47109
- },
47110
- "gte": {
47111
- "type": "number"
47112
- },
47113
- "lt": {
47114
- "type": "number"
47115
- },
47116
- "lte": {
47117
- "type": "number"
47118
- }
47119
- },
47120
- "type": "object"
47121
- }
47122
- ]
47123
- },
47124
- "has": {
47125
- "items": {
47126
- "properties": {
47127
- "type": {
47128
- "type": "string",
47129
- "enum": [
47130
- "path",
47131
- "host",
47132
- "method",
47133
- "header",
47134
- "cookie",
47135
- "query",
47136
- "ip_address",
47137
- "protocol",
47138
- "scheme",
47139
- "environment",
47140
- "region",
47141
- "initial_request_path"
47142
- ]
47143
- },
47144
- "key": {
47145
- "type": "string"
47146
- },
47147
- "value": {
47148
- "oneOf": [
47149
- {
47150
- "type": "string"
47151
- },
47152
- {
47153
- "properties": {
47154
- "re": {
47155
- "type": "string"
47156
- },
47157
- "eq": {
47158
- "type": "string"
47159
- },
47160
- "neq": {
47161
- "type": "string"
47162
- },
47163
- "inc": {
47164
- "items": {
47165
- "type": "string"
47166
- },
47167
- "type": "array"
47168
- },
47169
- "ninc": {
47170
- "items": {
47171
- "type": "string"
47172
- },
47173
- "type": "array"
47174
- },
47175
- "pre": {
47176
- "type": "string"
47177
- },
47178
- "suf": {
47179
- "type": "string"
47180
- },
47181
- "gt": {
47182
- "type": "number"
47183
- },
47184
- "gte": {
47185
- "type": "number"
47186
- },
47187
- "lt": {
47188
- "type": "number"
47189
- },
47190
- "lte": {
47191
- "type": "number"
47192
- }
47193
- },
47194
- "type": "object"
47195
- }
47196
- ]
47197
- }
47198
- },
47199
- "required": [
47200
- "type"
47201
- ],
47202
- "type": "object"
47203
- },
47204
- "type": "array"
47205
- },
47206
- "missing": {
47207
- "items": {
47208
- "properties": {
47209
- "type": {
47210
- "type": "string",
47211
- "enum": [
47212
- "path",
47213
- "host",
47214
- "method",
47215
- "header",
47216
- "cookie",
47217
- "query",
47218
- "ip_address",
47219
- "protocol",
47220
- "scheme",
47221
- "environment",
47222
- "region",
47223
- "initial_request_path"
47224
- ]
47225
- },
47226
- "key": {
47227
- "type": "string"
47228
- },
47229
- "value": {
47230
- "oneOf": [
47231
- {
47232
- "type": "string"
47233
- },
47234
- {
47235
- "properties": {
47236
- "re": {
47237
- "type": "string"
47238
- },
47239
- "eq": {
47240
- "type": "string"
47241
- },
47242
- "neq": {
47243
- "type": "string"
47244
- },
47245
- "inc": {
47246
- "items": {
47247
- "type": "string"
47248
- },
47249
- "type": "array"
47250
- },
47251
- "ninc": {
47252
- "items": {
47253
- "type": "string"
47254
- },
47255
- "type": "array"
47256
- },
47257
- "pre": {
47258
- "type": "string"
47259
- },
47260
- "suf": {
47261
- "type": "string"
47262
- },
47263
- "gt": {
47264
- "type": "number"
47265
- },
47266
- "gte": {
47267
- "type": "number"
47268
- },
47269
- "lt": {
47270
- "type": "number"
47271
- },
47272
- "lte": {
47273
- "type": "number"
47274
- }
47275
- },
47276
- "type": "object"
47277
- }
47278
- ]
47279
- }
47280
- },
47281
- "required": [
47282
- "type"
47283
- ],
47284
- "type": "object"
47285
- },
47286
- "type": "array"
47287
- },
47288
- "dest": {
47289
- "type": "string"
47290
- },
47291
- "status": {
47292
- "type": "number"
47293
- },
47294
- "handle": {
47295
- "type": "string",
47296
- "enum": [
47297
- "init",
47298
- "finalize"
47299
- ]
47300
- },
47301
- "mitigate": {
47302
- "properties": {
47303
- "action": {
47304
- "type": "string",
47305
- "enum": [
47306
- "deny",
47307
- "challenge",
47308
- "log",
47309
- "bypass",
47310
- "rate_limit",
47311
- "redirect"
47312
- ]
47313
- },
47314
- "rule_id": {
47315
- "type": "string"
47316
- },
47317
- "ttl": {
47318
- "type": "number"
47319
- },
47320
- "erl": {
47321
- "properties": {
47322
- "algo": {
47323
- "type": "string",
47324
- "enum": [
47325
- "fixed_window",
47326
- "token_bucket"
47327
- ]
47328
- },
47329
- "window": {
47330
- "type": "number"
47331
- },
47332
- "limit": {
47333
- "type": "number"
47334
- },
47335
- "keys": {
47336
- "items": {
47337
- "type": "string"
47338
- },
47339
- "type": "array"
47340
- }
47341
- },
47342
- "required": [
47343
- "algo",
47344
- "window",
47345
- "limit",
47346
- "keys"
47347
- ],
47348
- "type": "object"
47349
- }
47350
- },
47351
- "required": [
47352
- "action",
47353
- "rule_id"
47354
- ],
47355
- "type": "object"
47356
- }
47357
- },
47358
- "type": "object"
47359
- },
47360
- "type": "array"
47361
- },
47362
45964
  "firewallSeawallEnabled": {
47363
45965
  "type": "boolean"
47364
45966
  },
@@ -47385,9 +45987,9 @@
47385
45987
  "action": {
47386
45988
  "type": "string",
47387
45989
  "enum": [
47388
- "deny",
45990
+ "log",
47389
45991
  "challenge",
47390
- "log"
45992
+ "deny"
47391
45993
  ]
47392
45994
  }
47393
45995
  },
@@ -47404,9 +46006,9 @@
47404
46006
  "action": {
47405
46007
  "type": "string",
47406
46008
  "enum": [
47407
- "deny",
46009
+ "log",
47408
46010
  "challenge",
47409
- "log"
46011
+ "deny"
47410
46012
  ]
47411
46013
  }
47412
46014
  },
@@ -47423,9 +46025,9 @@
47423
46025
  "action": {
47424
46026
  "type": "string",
47425
46027
  "enum": [
47426
- "deny",
46028
+ "log",
47427
46029
  "challenge",
47428
- "log"
46030
+ "deny"
47429
46031
  ]
47430
46032
  }
47431
46033
  },
@@ -78725,6 +77327,22 @@
78725
77327
  "type": "object",
78726
77328
  "description": "The payload of the event, if requested."
78727
77329
  },
77330
+ {
77331
+ "properties": {
77332
+ "appName": {
77333
+ "type": "string"
77334
+ },
77335
+ "appId": {
77336
+ "type": "string"
77337
+ }
77338
+ },
77339
+ "required": [
77340
+ "appName",
77341
+ "appId"
77342
+ ],
77343
+ "type": "object",
77344
+ "description": "The payload of the event, if requested."
77345
+ },
78728
77346
  {
78729
77347
  "properties": {
78730
77348
  "team": {
@@ -78996,16 +77614,16 @@
78996
77614
  "properties": {
78997
77615
  "connection": {
78998
77616
  "properties": {
78999
- "status": {
79000
- "type": "string",
79001
- "description": "Current status of the connection.",
79002
- "example": "linked"
79003
- },
79004
77617
  "type": {
79005
77618
  "type": "string",
79006
77619
  "description": "The Identity Provider \"type\", for example Okta.",
79007
77620
  "example": "OktaSAML"
79008
77621
  },
77622
+ "status": {
77623
+ "type": "string",
77624
+ "description": "Current status of the connection.",
77625
+ "example": "linked"
77626
+ },
79009
77627
  "state": {
79010
77628
  "type": "string",
79011
77629
  "description": "Current state of the connection.",
@@ -79023,8 +77641,8 @@
79023
77641
  }
79024
77642
  },
79025
77643
  "required": [
79026
- "status",
79027
77644
  "type",
77645
+ "status",
79028
77646
  "state",
79029
77647
  "connectedAt"
79030
77648
  ],
@@ -79070,7 +77688,8 @@
79070
77688
  "type": "string",
79071
77689
  "enum": [
79072
77690
  "vercel.com",
79073
- "v0.dev"
77691
+ "v0.dev",
77692
+ "v0.app"
79074
77693
  ],
79075
77694
  "description": "The default redirect URI to use after successful SAML authentication."
79076
77695
  },
@@ -79317,12 +77936,12 @@
79317
77936
  },
79318
77937
  "type": "array"
79319
77938
  },
77939
+ "teamId": {
77940
+ "type": "string"
77941
+ },
79320
77942
  "confirmed": {
79321
77943
  "type": "boolean"
79322
77944
  },
79323
- "confirmedAt": {
79324
- "type": "number"
79325
- },
79326
77945
  "accessRequestedAt": {
79327
77946
  "type": "number"
79328
77947
  },
@@ -79371,9 +77990,6 @@
79371
77990
  },
79372
77991
  "type": "array"
79373
77992
  },
79374
- "teamId": {
79375
- "type": "string"
79376
- },
79377
77993
  "createdAt": {
79378
77994
  "type": "number"
79379
77995
  },
@@ -79385,9 +78001,9 @@
79385
78001
  "origin": {
79386
78002
  "type": "string",
79387
78003
  "enum": [
78004
+ "link",
79388
78005
  "saml",
79389
78006
  "mail",
79390
- "link",
79391
78007
  "import",
79392
78008
  "teams",
79393
78009
  "github",
@@ -79444,7 +78060,6 @@
79444
78060
  },
79445
78061
  "required": [
79446
78062
  "confirmed",
79447
- "confirmedAt",
79448
78063
  "role",
79449
78064
  "createdAt",
79450
78065
  "created"
@@ -79618,9 +78233,6 @@
79618
78233
  "confirmed": {
79619
78234
  "type": "boolean"
79620
78235
  },
79621
- "confirmedAt": {
79622
- "type": "number"
79623
- },
79624
78236
  "accessRequestedAt": {
79625
78237
  "type": "number"
79626
78238
  },
@@ -79739,7 +78351,6 @@
79739
78351
  },
79740
78352
  "required": [
79741
78353
  "confirmed",
79742
- "confirmedAt",
79743
78354
  "role",
79744
78355
  "createdAt",
79745
78356
  "created"