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

@vepler/http-sdk

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vepler/http-sdk - npm Package Compare versions

Comparing version 1.0.10 to 1.0.11

4

dist/services/property/routes/query-property.js

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

case 0:
sourceIds = params.sourceIds, _a = params.limit, limit = _a === void 0 ? 25 : _a, _b = params.offset, offset = _b === void 0 ? 0 : _b, area = params.area, _c = params.attributes, attributes = _c === void 0 ? [] : _c, query = params.query;
sourceIds = params.sourceIds, _a = params.limit, limit = _a === void 0 ? 25 : _a, _b = params.offset, offset = _b === void 0 ? 0 : _b, area = params.area, _c = params.attributes, attributes = _c === void 0 ? null : _c, query = params.query;
api = (0, config_1.getApiInstance)('property');

@@ -55,3 +55,3 @@ return [4 /*yield*/, api.query("/query", {

area: area,
attributes: attributes.join(','),
attributes: attributes ? attributes.join(',') : undefined,
query: query,

@@ -58,0 +58,0 @@ }, {

{
"name": "@vepler/http-sdk",
"version": "1.0.10",
"version": "1.0.11",
"description": "The Official Propbar HTTP SDK.",

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

@@ -33,3 +33,3 @@ import { getApiInstance, initialisedConfig } from '../../../config';

area,
attributes = [],
attributes = null,
query

@@ -47,3 +47,3 @@ } = params;

area,
attributes: attributes.join(','),
attributes: attributes ? attributes.join(',') : undefined,
query,

@@ -50,0 +50,0 @@ },

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