vercel-api-js 0.19.4 → 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 +8 -0
- package/dist/index.cjs +4 -0
- package/dist/index.d.cts +139 -43
- package/dist/index.d.mts +139 -43
- package/dist/index.d.ts +139 -43
- package/dist/index.mjs +4 -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): 3.
|
|
13
|
+
Σ Total dist size (byte size): 3.03 MB
|
|
14
14
|
[log]
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
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
|
+
|
|
3
11
|
## 0.19.4
|
|
4
12
|
|
|
5
13
|
### 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}",
|
|
@@ -625,6 +627,8 @@ const operationsByTag = {
|
|
|
625
627
|
createProjectEnv,
|
|
626
628
|
removeProjectEnv,
|
|
627
629
|
editProjectEnv,
|
|
630
|
+
createProjectTransferRequest,
|
|
631
|
+
acceptProjectTransferRequest,
|
|
628
632
|
updateProjectProtectionBypass,
|
|
629
633
|
requestPromote,
|
|
630
634
|
listPromoteAliases,
|