@vepler/http-sdk
Advanced tools
Comparing version 1.0.15 to 1.0.16
@@ -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>; |
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
43736
44
907