@vepler/http-sdk
Advanced tools
Comparing version 1.0.3 to 1.0.4
import { initializeSDK as initSDK } from './config'; | ||
import * as PropertyService from './services/property/service'; | ||
import * as AreaReferenceService from './services/area-reference/service'; | ||
export { initSDK as initializeSDK }; | ||
declare const routes: { | ||
property: typeof PropertyService; | ||
areaReference: typeof AreaReferenceService; | ||
property: { | ||
property: { | ||
getProperty: typeof import("./services/property/routes/get-property").getProperty; | ||
getPropertyById: typeof import("./services/property/routes/get-property-by-location-id").getPropertyById; | ||
}; | ||
areaReference: { | ||
getAreas: typeof import("./services/area-reference/routes/get-areas").getAreas; | ||
}; | ||
}; | ||
areaReference: { | ||
areaReference: { | ||
getAreas: typeof import("./services/area-reference/routes/get-areas").getAreas; | ||
}; | ||
}; | ||
}; | ||
export declare const property: typeof PropertyService; | ||
export declare const area: typeof AreaReferenceService; | ||
export declare const property: { | ||
property: { | ||
getProperty: typeof import("./services/property/routes/get-property").getProperty; | ||
getPropertyById: typeof import("./services/property/routes/get-property-by-location-id").getPropertyById; | ||
}; | ||
areaReference: { | ||
getAreas: typeof import("./services/area-reference/routes/get-areas").getAreas; | ||
}; | ||
}; | ||
export declare const area: { | ||
areaReference: { | ||
getAreas: typeof import("./services/area-reference/routes/get-areas").getAreas; | ||
}; | ||
}; | ||
export default routes; |
@@ -32,4 +32,4 @@ "use strict"; | ||
var routes = { | ||
property: PropertyService, | ||
areaReference: AreaReferenceService, | ||
property: PropertyService.default, | ||
areaReference: AreaReferenceService.default, | ||
}; | ||
@@ -36,0 +36,0 @@ exports.property = routes.property; |
{ | ||
"name": "@vepler/http-sdk", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "The Official Propbar HTTP SDK.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -8,4 +8,4 @@ import { initializeSDK as initSDK } from './config'; | ||
const routes = { | ||
property: PropertyService, | ||
areaReference: AreaReferenceService, | ||
property: PropertyService.default, | ||
areaReference: AreaReferenceService.default, | ||
} | ||
@@ -12,0 +12,0 @@ |
Sorry, the diff of this file is not supported yet
37561
720