vercel-api-js 0.24.1 → 0.24.3
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 +23 -0
- package/dist/index.cjs +9 -1
- package/dist/index.d.cts +2241 -291
- package/dist/index.d.mts +2241 -291
- package/dist/index.d.ts +2241 -291
- package/dist/index.mjs +9 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -303,6 +303,12 @@ const createLogDrain = (variables, signal) => fetch$1({
|
|
|
303
303
|
signal
|
|
304
304
|
});
|
|
305
305
|
const deleteIntegrationLogDrain = (variables, signal) => fetch$1({ url: "/v1/integrations/log-drains/{id}", method: "delete", ...variables, signal });
|
|
306
|
+
const getRuntimeLogs = (variables, signal) => fetch$1({
|
|
307
|
+
url: "/v1/projects/{projectId}/deployments/{deploymentId}/runtime-logs",
|
|
308
|
+
method: "get",
|
|
309
|
+
...variables,
|
|
310
|
+
signal
|
|
311
|
+
});
|
|
306
312
|
const postV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationItems = (variables, signal) => fetch$1({
|
|
307
313
|
url: "/v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items",
|
|
308
314
|
method: "post",
|
|
@@ -556,6 +562,7 @@ const deleteAlias = (variables, signal) => fetch$1({
|
|
|
556
562
|
...variables,
|
|
557
563
|
signal
|
|
558
564
|
});
|
|
565
|
+
const patchUrlProtectionBypass = (variables, signal) => fetch$1({ url: "/aliases/{id}/protection-bypass", method: "patch", ...variables, signal });
|
|
559
566
|
const getCertById = (variables, signal) => fetch$1({
|
|
560
567
|
url: "/v7/certs/{id}",
|
|
561
568
|
method: "get",
|
|
@@ -723,6 +730,7 @@ const operationsByTag = {
|
|
|
723
730
|
putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig
|
|
724
731
|
},
|
|
725
732
|
authentication: { exchangeSsoToken, listAuthTokens, createAuthToken, getAuthToken, deleteAuthToken },
|
|
733
|
+
logs: { getRuntimeLogs },
|
|
726
734
|
projectMembers: { getProjectMembers, addProjectMember, removeProjectMember },
|
|
727
735
|
environment: {
|
|
728
736
|
createCustomEnvironment,
|
|
@@ -757,7 +765,7 @@ const operationsByTag = {
|
|
|
757
765
|
deleteTeamInviteCode
|
|
758
766
|
},
|
|
759
767
|
webhooks: { createWebhook, getWebhooks, getWebhook, deleteWebhook },
|
|
760
|
-
aliases: { listDeploymentAliases, assignAlias, listAliases, getAlias, deleteAlias },
|
|
768
|
+
aliases: { listDeploymentAliases, assignAlias, listAliases, getAlias, deleteAlias, patchUrlProtectionBypass },
|
|
761
769
|
certs: { getCertById, removeCert, issueCert, uploadCert },
|
|
762
770
|
secrets: { getSecrets, createSecret, renameSecret, getSecret, deleteSecret }
|
|
763
771
|
};
|