vercel-api-js 0.24.0 → 0.24.2
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 +27 -0
- package/dist/index.cjs +4 -1
- package/dist/index.d.cts +2572 -424
- package/dist/index.d.mts +2572 -424
- package/dist/index.d.ts +2572 -424
- package/dist/index.mjs +4 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -375,6 +375,7 @@ const getProjectDomain = (variables, signal) => fetch$1({ url: "/v9/projects/{id
|
|
|
375
375
|
const updateProjectDomain = (variables, signal) => fetch$1({ url: "/v9/projects/{idOrName}/domains/{domain}", method: "patch", ...variables, signal });
|
|
376
376
|
const removeProjectDomain = (variables, signal) => fetch$1({ url: "/v9/projects/{idOrName}/domains/{domain}", method: "delete", ...variables, signal });
|
|
377
377
|
const addProjectDomain = (variables, signal) => fetch$1({ url: "/v10/projects/{idOrName}/domains", method: "post", ...variables, signal });
|
|
378
|
+
const moveProjectDomain = (variables, signal) => fetch$1({ url: "/v1/projects/{idOrName}/domains/{domain}/move", method: "post", ...variables, signal });
|
|
378
379
|
const verifyProjectDomain = (variables, signal) => fetch$1({ url: "/v9/projects/{idOrName}/domains/{domain}/verify", method: "post", ...variables, signal });
|
|
379
380
|
const filterProjectEnvs = (variables, signal) => fetch$1({ url: "/v10/projects/{idOrName}/env", method: "get", ...variables, signal });
|
|
380
381
|
const createProjectEnv = (variables, signal) => fetch$1({ url: "/v10/projects/{idOrName}/env", method: "post", ...variables, signal });
|
|
@@ -555,6 +556,7 @@ const deleteAlias = (variables, signal) => fetch$1({
|
|
|
555
556
|
...variables,
|
|
556
557
|
signal
|
|
557
558
|
});
|
|
559
|
+
const patchUrlProtectionBypass = (variables, signal) => fetch$1({ url: "/aliases/{id}/protection-bypass", method: "patch", ...variables, signal });
|
|
558
560
|
const getCertById = (variables, signal) => fetch$1({
|
|
559
561
|
url: "/v7/certs/{id}",
|
|
560
562
|
method: "get",
|
|
@@ -641,6 +643,7 @@ const operationsByTag = {
|
|
|
641
643
|
updateProjectDomain,
|
|
642
644
|
removeProjectDomain,
|
|
643
645
|
addProjectDomain,
|
|
646
|
+
moveProjectDomain,
|
|
644
647
|
verifyProjectDomain,
|
|
645
648
|
filterProjectEnvs,
|
|
646
649
|
createProjectEnv,
|
|
@@ -755,7 +758,7 @@ const operationsByTag = {
|
|
|
755
758
|
deleteTeamInviteCode
|
|
756
759
|
},
|
|
757
760
|
webhooks: { createWebhook, getWebhooks, getWebhook, deleteWebhook },
|
|
758
|
-
aliases: { listDeploymentAliases, assignAlias, listAliases, getAlias, deleteAlias },
|
|
761
|
+
aliases: { listDeploymentAliases, assignAlias, listAliases, getAlias, deleteAlias, patchUrlProtectionBypass },
|
|
759
762
|
certs: { getCertById, removeCert, issueCert, uploadCert },
|
|
760
763
|
secrets: { getSecrets, createSecret, renameSecret, getSecret, deleteSecret }
|
|
761
764
|
};
|