vercel-api-js 0.19.2 → 0.19.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.
- package/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +15 -0
- package/dist/index.cjs +2 -0
- package/dist/index.d.cts +163 -6
- package/dist/index.d.mts +163 -6
- package/dist/index.d.ts +163 -6
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
|
|
2
|
-
> vercel-api-js@0.19.
|
|
2
|
+
> vercel-api-js@0.19.4 build /home/runner/work/openapi-clients/openapi-clients/packages/vercel-api-js
|
|
3
3
|
> unbuild
|
|
4
4
|
|
|
5
5
|
[info] Automatically detected entries: src/index [esm] [cjs] [dts]
|
|
6
6
|
[info] Building vercel-api-js
|
|
7
7
|
[info] Cleaning dist directory: `./dist`
|
|
8
8
|
[success] Build succeeded for vercel-api-js
|
|
9
|
-
[log] dist/index.cjs (total size: 30.
|
|
9
|
+
[log] dist/index.cjs (total size: 30.7 kB, chunk size: 30.7 kB, exports: VercelApi)
|
|
10
10
|
|
|
11
|
-
[log] dist/index.mjs (total size: 30.
|
|
11
|
+
[log] dist/index.mjs (total size: 30.6 kB, chunk size: 30.6 kB, exports: VercelApi)
|
|
12
12
|
|
|
13
|
-
Σ Total dist size (byte size):
|
|
13
|
+
Σ Total dist size (byte size): 3.01 MB
|
|
14
14
|
[log]
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# vercel-api-js
|
|
2
2
|
|
|
3
|
+
## 0.19.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e1ca271: Add fluid property to resourceConfig in multiple endpoints
|
|
8
|
+
- 2ace464: Add new image optimization metrics to AuthUser schema
|
|
9
|
+
- b32db47: Add new endpoint to retrieve active attack status within the last 24h window
|
|
10
|
+
- 6ba6722: Add new field customEnvironmentId to AddProjectDomainRequestBody type
|
|
11
|
+
|
|
12
|
+
## 0.19.3
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 1d85bc3: [BREAKING] Add 'functionZeroConfigFailover' to resourceConfig
|
|
17
|
+
|
|
3
18
|
## 0.19.2
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/index.cjs
CHANGED
|
@@ -390,6 +390,7 @@ const getFirewallConfig = (variables, signal) => fetch$1({
|
|
|
390
390
|
...variables,
|
|
391
391
|
signal
|
|
392
392
|
});
|
|
393
|
+
const getActiveAttackStatus = (variables, signal) => fetch$1({ url: "/v1/security/firewall/attack-status", method: "get", ...variables, signal });
|
|
393
394
|
const getBypassIp = (variables, signal) => fetch$1({ url: "/v1/security/firewall/bypass", method: "get", ...variables, signal });
|
|
394
395
|
const addBypassIp = (variables, signal) => fetch$1({ url: "/v1/security/firewall/bypass", method: "post", ...variables, signal });
|
|
395
396
|
const removeBypassIp = (variables, signal) => fetch$1({ url: "/v1/security/firewall/bypass", method: "delete", ...variables, signal });
|
|
@@ -710,6 +711,7 @@ const operationsByTag = {
|
|
|
710
711
|
putFirewallConfig,
|
|
711
712
|
updateFirewallConfig,
|
|
712
713
|
getFirewallConfig,
|
|
714
|
+
getActiveAttackStatus,
|
|
713
715
|
getBypassIp,
|
|
714
716
|
addBypassIp,
|
|
715
717
|
removeBypassIp
|