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

@vepler/http-sdk

Package Overview
Dependencies
Maintainers
0
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.15 to 1.0.16

example-comparables.ts

6

dist/services/area-reference/routes/get-areas.d.ts

@@ -6,2 +6,6 @@ export interface GetPropertyByPropertyIdParams {

}
export declare function getAreas(params: GetPropertyByPropertyIdParams): Promise<object[]>;
export interface GetAreasResponse {
result: object[];
success: boolean;
}
export declare function getAreas(params: GetPropertyByPropertyIdParams): Promise<GetAreasResponse>;

2

package.json
{
"name": "@vepler/http-sdk",
"version": "1.0.15",
"version": "1.0.16",
"description": "The Official Propbar HTTP SDK.",

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

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

export async function getAreas(params: GetPropertyByPropertyIdParams): Promise<object[]> {
export interface GetAreasResponse {
result: object[];
success: boolean;
}
export async function getAreas(params: GetPropertyByPropertyIdParams): Promise<GetAreasResponse> {
const { field, ids = [], groupBy = undefined } = params;

@@ -12,0 +17,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