Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@spinque/query-api

Package Overview
Dependencies
Maintainers
0
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@spinque/query-api - npm Package Compare versions

Comparing version 0.17.2 to 0.17.3

6

dist/Api.js

@@ -180,3 +180,3 @@ "use strict";

}
if (response.status === 400 && json.message.startsWith('no endpoint')) {
if (response.status === 400 && json.message.includes('no endpoint')) {
throw new types_1.EndpointNotFoundError(json.message, 400);

@@ -187,6 +187,6 @@ }

}
if (response.status === 404 && json.message.contains('No such api')) {
if (response.status === 404 && json.message.includes('No such api')) {
throw new types_1.ApiNotFoundError(json.message, 404);
}
if (response.status === 404 && json.message.contains('No such workspace configuration')) {
if (response.status === 404 && json.message.includes('No such workspace configuration')) {
throw new types_1.WorkspaceConfigNotFoundError(json.message, 404);

@@ -193,0 +193,0 @@ }

{
"name": "@spinque/query-api",
"version": "0.17.2",
"version": "0.17.3",
"description": "",

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

Sorry, the diff of this file is not supported yet

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