gap-nodejs-sdk 1.0.46 → 1.0.49

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.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import Clover from './clover/Clover';
1
2
  import * as GapError from './error';
2
3
  import PosClientApi from "./pos_client_api/PosClientApi";
3
4
  import SettingsApi from "./settings_api/SettingsApi";
@@ -6,6 +7,7 @@ export declare const Gap: {
6
7
  PosClientApi: typeof PosClientApi;
7
8
  SettingsApi: typeof SettingsApi;
8
9
  Errors: typeof GapError;
10
+ Clover: typeof Clover;
9
11
  };
10
12
  export default Gap;
11
13
  export * from './types';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,QAAQ,MAAM,SAAS,CAAC;AACpC,OAAO,YAAY,MAAM,+BAA+B,CAAC;AACzD,OAAO,WAAW,MAAM,4BAA4B,CAAC;AAErD,eAAO,MAAM,GAAG;;;;;CAKf,CAAC;AAIF,eAAe,GAAG,CAAC;AACnB,cAAc,SAAS,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,MAAM,MAAM,iBAAiB,CAAC;AAErC,OAAO,KAAK,QAAQ,MAAM,SAAS,CAAC;AACpC,OAAO,YAAY,MAAM,+BAA+B,CAAC;AACzD,OAAO,WAAW,MAAM,4BAA4B,CAAC;AAErD,eAAO,MAAM,GAAG;;;;;;CAMf,CAAC;AAIF,eAAe,GAAG,CAAC;AACnB,cAAc,SAAS,CAAC"}
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ import Clover from './clover/Clover';
1
2
  import { Context } from './context';
2
3
  import * as GapError from './error';
3
4
  import PosClientApi from "./pos_client_api/PosClientApi";
@@ -7,6 +8,7 @@ export const Gap = {
7
8
  PosClientApi,
8
9
  SettingsApi,
9
10
  Errors: GapError,
11
+ Clover
10
12
  };
11
13
  window.Gap = Gap;
12
14
  export default Gap;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gap-nodejs-sdk",
3
- "version": "1.0.46",
3
+ "version": "1.0.49",
4
4
  "description": "GCI App Platform Library",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -13,7 +13,7 @@
13
13
  "build": "tsc && webpack",
14
14
  "lint": "eslint '**/*.{ts,tsx}' --max-warnings 0",
15
15
  "clean": "rimraf ./dist tsconfig.tsbuildinfo",
16
- "bundle": "tsc && browserify -p esmify dist/index.js -o javascript/bundle.js"
16
+ "bundle": "npm run clean && tsc && browserify -p esmify dist/index.js -o javascript/bundle.js"
17
17
  },
18
18
  "repository": {
19
19
  "type": "git",
@@ -34,6 +34,7 @@
34
34
  "axios": "^0.27.2",
35
35
  "dayjs": "^1.11.3",
36
36
  "js-file-download": "^0.4.12",
37
+ "remote-pay-cloud": "^4.1.2",
37
38
  "tslib": "^2.4.0"
38
39
  }
39
40
  }