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/dist/index.mjs
CHANGED
|
@@ -359,6 +359,8 @@ const getProjectEnv = (variables, signal) => fetch$1({ url: "/v1/projects/{idOrN
|
|
|
359
359
|
const createProjectEnv = (variables, signal) => fetch$1({ url: "/v10/projects/{idOrName}/env", method: "post", ...variables, signal });
|
|
360
360
|
const removeProjectEnv = (variables, signal) => fetch$1({ url: "/v9/projects/{idOrName}/env/{id}", method: "delete", ...variables, signal });
|
|
361
361
|
const editProjectEnv = (variables, signal) => fetch$1({ url: "/v9/projects/{idOrName}/env/{id}", method: "patch", ...variables, signal });
|
|
362
|
+
const createProjectTransferRequest = (variables, signal) => fetch$1({ url: "/projects/{idOrName}/transfer-request", method: "post", ...variables, signal });
|
|
363
|
+
const acceptProjectTransferRequest = (variables, signal) => fetch$1({ url: "/projects/transfer-request/{code}", method: "put", ...variables, signal });
|
|
362
364
|
const updateProjectProtectionBypass = (variables, signal) => fetch$1({ url: "/v1/projects/{idOrName}/protection-bypass", method: "patch", ...variables, signal });
|
|
363
365
|
const requestPromote = (variables, signal) => fetch$1({
|
|
364
366
|
url: "/v10/projects/{projectId}/promote/{deploymentId}",
|
|
@@ -623,6 +625,8 @@ const operationsByTag = {
|
|
|
623
625
|
createProjectEnv,
|
|
624
626
|
removeProjectEnv,
|
|
625
627
|
editProjectEnv,
|
|
628
|
+
createProjectTransferRequest,
|
|
629
|
+
acceptProjectTransferRequest,
|
|
626
630
|
updateProjectProtectionBypass,
|
|
627
631
|
requestPromote,
|
|
628
632
|
listPromoteAliases,
|