@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 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
@@ -1300,7 +1300,7 @@ class DMS extends IntegrationsBaseClient {
1300
1300
  async request(method, endpoint, params) {
1301
1301
  return await this.client.request({
1302
1302
  method: method,
1303
- url: `/v2/${endpoint}`,
1303
+ url: `/v2/dms/${endpoint}`,
1304
1304
  ...params
1305
1305
  });
1306
1306
  }
@@ -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(): any;
12
- getVPFR(): any;
13
- getInvoicing(): any;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ptkl/sdk",
3
- "version": "0.9.10",
3
+ "version": "0.9.11",
4
4
  "scripts": {
5
5
  "build": "rollup -c",
6
6
  "build:monaco": "npm run build && node scripts/generate-monaco-types.cjs",