@vepler/http-sdk
Advanced tools
Comparing version 1.0.8 to 1.0.9
export interface GetPropertyBySourceParams { | ||
sourceIds: string[]; | ||
sourceIds?: string[]; | ||
limit?: number; | ||
@@ -4,0 +4,0 @@ offset?: number; |
@@ -49,3 +49,4 @@ "use strict"; | ||
api = (0, config_1.getApiInstance)('property'); | ||
return [4 /*yield*/, api.get("/sources/".concat(sourceIds.join(',')), { | ||
return [4 /*yield*/, api.get("/query", { | ||
sourceIds: sourceIds, | ||
limit: limit, | ||
@@ -52,0 +53,0 @@ offset: offset, |
{ | ||
"name": "@vepler/http-sdk", | ||
"version": "1.0.8", | ||
"version": "1.0.9", | ||
"description": "The Official Propbar HTTP SDK.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
import { getApiInstance, initialisedConfig } from '../../../config'; | ||
export interface GetPropertyBySourceParams { | ||
sourceIds: string[]; | ||
sourceIds?: string[]; | ||
limit?: number; | ||
@@ -40,4 +40,5 @@ offset?: number; | ||
return await api.get( | ||
`/sources/${sourceIds.join(',')}`, | ||
`/query`, | ||
{ | ||
sourceIds, | ||
limit, | ||
@@ -44,0 +45,0 @@ offset, |
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
751
38825