@chargehive/types 2.1.0 → 2.1.3

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.
Files changed (2) hide show
  1. package/chargehive.d.ts +2 -2
  2. package/package.json +3 -2
package/chargehive.d.ts CHANGED
@@ -33,7 +33,7 @@ export interface ChargeHiveType extends ChargeType, ChargeHiveEventTarget
33
33
  /**
34
34
  * PCIBridge Major Version
35
35
  */
36
- get version(): string;
36
+ readonly version: string;
37
37
 
38
38
  initialize(placementToken: string, projectId: string, options: ChargeHiveInitOptions);
39
39
 
@@ -254,7 +254,7 @@ export type ChargeHiveEventData = {
254
254
  }
255
255
  }
256
256
 
257
- export type Dictionary = { [key: PropertyKey]: string };
257
+ export type Dictionary = { [key: string]: string };
258
258
 
259
259
  export interface AuthorizeResponse
260
260
  {
package/package.json CHANGED
@@ -6,7 +6,8 @@
6
6
  "*.d.ts"
7
7
  ],
8
8
  "dependencies": {
9
- "@pci-bridge/types": "^1.0.2"
9
+ "typescript": "^3 || ^4",
10
+ "@pci-bridge/types": "^1.0.7"
10
11
  },
11
- "version": "2.1.0"
12
+ "version": "2.1.3"
12
13
  }