New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@vtex/api

Package Overview
Dependencies
Maintainers
17
Versions
890
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vtex/api - npm Package Compare versions

Comparing version 0.31.0 to 0.31.1

1

lib/HttpClient/axios.js

@@ -16,3 +16,2 @@ "use strict";

const { url, method } = err.response.config;
console.log(`Error calling ${method.toUpperCase()} ${url}`);
}

@@ -19,0 +18,0 @@ try {

1

lib/Registry.d.ts

@@ -12,2 +12,3 @@ /// <reference types="node" />

listVersionsByApp: (app: string) => Promise<RegistryAppVersionsList>;
deprecateApp: (app: string, version: string) => Promise<void>;
getAppManifest: (app: string, version: string, opts?: AppsManifestOptions | undefined) => Promise<AppManifest>;

@@ -14,0 +15,0 @@ listAppFiles: (app: string, version: string) => Promise<AppFilesList>;

@@ -41,2 +41,5 @@ "use strict";

};
this.deprecateApp = (app, version) => {
return this.http.patch(routes.AppVersion(app, version), { deprecated: true });
};
this.getAppManifest = (app, version, opts) => {

@@ -43,0 +46,0 @@ return this.http.get(routes.AppVersion(app, version), { params: opts });

{
"name": "@vtex/api",
"version": "0.31.0",
"version": "0.31.1",
"description": "VTEX I/O API client",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc