vercel-api-js 0.24.2 → 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 +7 -0
- package/dist/index.cjs +7 -0
- package/dist/index.d.cts +420 -22
- package/dist/index.d.mts +420 -22
- package/dist/index.d.ts +420 -22
- package/dist/index.mjs +7 -0
- 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",
|
|
@@ -724,6 +730,7 @@ const operationsByTag = {
|
|
|
724
730
|
putV1InstallationsIntegrationConfigurationIdResourcesResourceIdExperimentationEdgeConfig
|
|
725
731
|
},
|
|
726
732
|
authentication: { exchangeSsoToken, listAuthTokens, createAuthToken, getAuthToken, deleteAuthToken },
|
|
733
|
+
logs: { getRuntimeLogs },
|
|
727
734
|
projectMembers: { getProjectMembers, addProjectMember, removeProjectMember },
|
|
728
735
|
environment: {
|
|
729
736
|
createCustomEnvironment,
|