vercel-api-js 0.24.2 → 0.25.0

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/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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vercel-api-js",
3
- "version": "0.24.2",
3
+ "version": "0.25.0",
4
4
  "description": "Vercel auto-generated type-safe API client",
5
5
  "author": "SferaDev",
6
6
  "license": "ISC",