gap-nodejs-sdk 1.0.47 → 1.0.50

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";
3
4
  import SettingsApi from "./settings_api";
@@ -8,6 +9,7 @@ export declare const Gap: {
8
9
  SettingsApi: typeof SettingsApi;
9
10
  GoCheckInApi: typeof GoCheckInApi;
10
11
  Errors: typeof GapError;
12
+ Clover: typeof Clover;
11
13
  };
12
14
  export default Gap;
13
15
  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,kBAAkB,CAAC;AAC5C,OAAO,WAAW,MAAM,gBAAgB,CAAC;AACzC,OAAO,YAAY,MAAM,mBAAmB,CAAC;AAE7C,eAAO,MAAM,GAAG;;;;;;CAMf,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,kBAAkB,CAAC;AAC5C,OAAO,WAAW,MAAM,gBAAgB,CAAC;AACzC,OAAO,YAAY,MAAM,mBAAmB,CAAC;AAE7C,eAAO,MAAM,GAAG;;;;;;;CAOf,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";
@@ -9,6 +10,7 @@ export const Gap = {
9
10
  SettingsApi,
10
11
  GoCheckInApi,
11
12
  Errors: GapError,
13
+ Clover
12
14
  };
13
15
  window.Gap = Gap;
14
16
  export default Gap;
@@ -5,4 +5,6 @@ export * from '../pos_client_api/1.0.0/types/request';
5
5
  export * from '../pos_client_api/1.0.0/types/response';
6
6
  export * from '../settings_api/1.0.0/types/request';
7
7
  export * from '../settings_api/1.0.0/types/response';
8
+ export * from '../go_check_in_api/1.0.0/types/request';
9
+ export * from '../go_check_in_api/1.0.0/types/response';
8
10
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,sBAAsB,CAAC;AACrC,cAAc,uCAAuC,CAAC;AACtD,cAAc,wCAAwC,CAAC;AACvD,cAAc,qCAAqC,CAAC;AACpD,cAAc,sCAAsC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,sBAAsB,CAAC;AACrC,cAAc,uCAAuC,CAAC;AACtD,cAAc,wCAAwC,CAAC;AACvD,cAAc,qCAAqC,CAAC;AACpD,cAAc,sCAAsC,CAAC;AACrD,cAAc,wCAAwC,CAAC;AACvD,cAAc,yCAAyC,CAAC"}
@@ -5,3 +5,5 @@ export * from '../pos_client_api/1.0.0/types/request';
5
5
  export * from '../pos_client_api/1.0.0/types/response';
6
6
  export * from '../settings_api/1.0.0/types/request';
7
7
  export * from '../settings_api/1.0.0/types/response';
8
+ export * from '../go_check_in_api/1.0.0/types/request';
9
+ export * from '../go_check_in_api/1.0.0/types/response';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gap-nodejs-sdk",
3
- "version": "1.0.47",
3
+ "version": "1.0.50",
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
  }