@ptkl/sdk 0.9.10 → 0.9.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.iife.js +1 -1
- package/dist/types/api/integrations.d.ts +6 -3
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -20269,7 +20269,7 @@ class DMS extends IntegrationsBaseClient {
|
|
|
20269
20269
|
async request(method, endpoint, params) {
|
|
20270
20270
|
return await this.client.request({
|
|
20271
20271
|
method: method,
|
|
20272
|
-
url: `/v2/${endpoint}`,
|
|
20272
|
+
url: `/v2/dms/${endpoint}`,
|
|
20273
20273
|
...params
|
|
20274
20274
|
});
|
|
20275
20275
|
}
|
package/dist/index.esm.js
CHANGED
package/dist/index.iife.js
CHANGED
|
@@ -1301,7 +1301,7 @@ var ProtokolSDK09 = (function (exports, axios) {
|
|
|
1301
1301
|
async request(method, endpoint, params) {
|
|
1302
1302
|
return await this.client.request({
|
|
1303
1303
|
method: method,
|
|
1304
|
-
url: `/v2/${endpoint}`,
|
|
1304
|
+
url: `/v2/dms/${endpoint}`,
|
|
1305
1305
|
...params
|
|
1306
1306
|
});
|
|
1307
1307
|
}
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import Invoicing from "./integrations/invoicing";
|
|
2
|
+
import DMS from "./integrations/dms";
|
|
3
|
+
import VPFR from "./integrations/vpfr";
|
|
1
4
|
import IntegrationsBaseClient from "./integrationsBaseClient";
|
|
2
5
|
import Payments from "./integrations/payments";
|
|
3
6
|
export default class Integrations extends IntegrationsBaseClient {
|
|
@@ -8,9 +11,9 @@ export default class Integrations extends IntegrationsBaseClient {
|
|
|
8
11
|
host?: string;
|
|
9
12
|
});
|
|
10
13
|
getSerbiaUtilities(): any;
|
|
11
|
-
getDMS():
|
|
12
|
-
getVPFR():
|
|
13
|
-
getInvoicing():
|
|
14
|
+
getDMS(): DMS;
|
|
15
|
+
getVPFR(): VPFR;
|
|
16
|
+
getInvoicing(): Invoicing;
|
|
14
17
|
getPayments(): Payments;
|
|
15
18
|
isInstalled(id: string): Promise<boolean>;
|
|
16
19
|
getInterfaceOf(id: string): any;
|