vercel-api-js 0.19.3 → 0.19.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.
- package/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +17 -0
- package/dist/index.cjs +6 -0
- package/dist/index.d.cts +287 -44
- package/dist/index.d.mts +287 -44
- package/dist/index.d.ts +287 -44
- package/dist/index.mjs +6 -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.5 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:
|
|
9
|
+
[log] dist/index.cjs (total size: 31.1 kB, chunk size: 31.1 kB, exports: VercelApi)
|
|
10
10
|
|
|
11
|
-
[log] dist/index.mjs (total size:
|
|
11
|
+
[log] dist/index.mjs (total size: 31 kB, chunk size: 31 kB, exports: VercelApi)
|
|
12
12
|
|
|
13
|
-
Σ Total dist size (byte size):
|
|
13
|
+
Σ Total dist size (byte size): 3.03 MB
|
|
14
14
|
[log]
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# vercel-api-js
|
|
2
2
|
|
|
3
|
+
## 0.19.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1b2a9f5: Add response type for creating project transfer request
|
|
8
|
+
- 108a247: Change functionDefaultRegion type to accept null
|
|
9
|
+
- 75e9f57: Update descriptions
|
|
10
|
+
|
|
11
|
+
## 0.19.4
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- e1ca271: Add fluid property to resourceConfig in multiple endpoints
|
|
16
|
+
- 2ace464: Add new image optimization metrics to AuthUser schema
|
|
17
|
+
- b32db47: Add new endpoint to retrieve active attack status within the last 24h window
|
|
18
|
+
- 6ba6722: Add new field customEnvironmentId to AddProjectDomainRequestBody type
|
|
19
|
+
|
|
3
20
|
## 0.19.3
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/dist/index.cjs
CHANGED
|
@@ -361,6 +361,8 @@ const getProjectEnv = (variables, signal) => fetch$1({ url: "/v1/projects/{idOrN
|
|
|
361
361
|
const createProjectEnv = (variables, signal) => fetch$1({ url: "/v10/projects/{idOrName}/env", method: "post", ...variables, signal });
|
|
362
362
|
const removeProjectEnv = (variables, signal) => fetch$1({ url: "/v9/projects/{idOrName}/env/{id}", method: "delete", ...variables, signal });
|
|
363
363
|
const editProjectEnv = (variables, signal) => fetch$1({ url: "/v9/projects/{idOrName}/env/{id}", method: "patch", ...variables, signal });
|
|
364
|
+
const createProjectTransferRequest = (variables, signal) => fetch$1({ url: "/projects/{idOrName}/transfer-request", method: "post", ...variables, signal });
|
|
365
|
+
const acceptProjectTransferRequest = (variables, signal) => fetch$1({ url: "/projects/transfer-request/{code}", method: "put", ...variables, signal });
|
|
364
366
|
const updateProjectProtectionBypass = (variables, signal) => fetch$1({ url: "/v1/projects/{idOrName}/protection-bypass", method: "patch", ...variables, signal });
|
|
365
367
|
const requestPromote = (variables, signal) => fetch$1({
|
|
366
368
|
url: "/v10/projects/{projectId}/promote/{deploymentId}",
|
|
@@ -390,6 +392,7 @@ const getFirewallConfig = (variables, signal) => fetch$1({
|
|
|
390
392
|
...variables,
|
|
391
393
|
signal
|
|
392
394
|
});
|
|
395
|
+
const getActiveAttackStatus = (variables, signal) => fetch$1({ url: "/v1/security/firewall/attack-status", method: "get", ...variables, signal });
|
|
393
396
|
const getBypassIp = (variables, signal) => fetch$1({ url: "/v1/security/firewall/bypass", method: "get", ...variables, signal });
|
|
394
397
|
const addBypassIp = (variables, signal) => fetch$1({ url: "/v1/security/firewall/bypass", method: "post", ...variables, signal });
|
|
395
398
|
const removeBypassIp = (variables, signal) => fetch$1({ url: "/v1/security/firewall/bypass", method: "delete", ...variables, signal });
|
|
@@ -624,6 +627,8 @@ const operationsByTag = {
|
|
|
624
627
|
createProjectEnv,
|
|
625
628
|
removeProjectEnv,
|
|
626
629
|
editProjectEnv,
|
|
630
|
+
createProjectTransferRequest,
|
|
631
|
+
acceptProjectTransferRequest,
|
|
627
632
|
updateProjectProtectionBypass,
|
|
628
633
|
requestPromote,
|
|
629
634
|
listPromoteAliases,
|
|
@@ -710,6 +715,7 @@ const operationsByTag = {
|
|
|
710
715
|
putFirewallConfig,
|
|
711
716
|
updateFirewallConfig,
|
|
712
717
|
getFirewallConfig,
|
|
718
|
+
getActiveAttackStatus,
|
|
713
719
|
getBypassIp,
|
|
714
720
|
addBypassIp,
|
|
715
721
|
removeBypassIp
|