@bootpay/client-js 4.1.4 → 4.1.6-beta.2

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/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  import Bootpay from "./bootpay";
2
2
  import BootpaySDK from "./bootpay-sdk";
3
- export { Bootpay, BootpaySDK };
3
+ import BootpayEnvironment from "./bootpay-enviroment";
4
+ export { Bootpay, BootpaySDK, BootpayEnvironment };
package/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  import Bootpay from './bootpay'
2
2
  import BootpaySDK from './bootpay-sdk'
3
+ import BootpayEnvironment from "./bootpay-enviroment"
3
4
 
4
- export { Bootpay, BootpaySDK };
5
+ export { Bootpay, BootpaySDK, BootpayEnvironment };
@@ -190,6 +190,7 @@ export interface ExtraModel {
190
190
  automatic_tax?: boolean;
191
191
  dynamic_tax_rates?: number;
192
192
  tax_rates?: number;
193
+ show_close_button?: boolean;
193
194
  }
194
195
  export interface ConfirmModel {
195
196
  event: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bootpay/client-js",
3
- "version": "4.1.4",
3
+ "version": "4.1.6-beta.2",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "scripts": {