@akinon/next 1.19.0 → 1.19.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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @akinon/next
2
2
 
3
+ ## 1.19.2
4
+
5
+ ## 1.19.1
6
+
3
7
  ## 1.19.0
4
8
 
5
9
  ### Minor Changes
@@ -17,7 +17,7 @@ import { buildClientRequestUrl } from '../../utils';
17
17
  import { api } from './api';
18
18
  import { checkout } from '../urls';
19
19
  import { AppDispatch, AppStore, store } from 'redux/store';
20
- import settings from '@theme/settings';
20
+ import settings from 'settings';
21
21
  import { showMobile3dIframe } from '../../utils/mobile-3d-iframe';
22
22
  import {
23
23
  setError,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@akinon/next",
3
3
  "description": "Core package for Project Zero Next",
4
- "version": "1.19.0",
4
+ "version": "1.19.2",
5
5
  "private": false,
6
6
  "license": "MIT",
7
7
  "bin": {
@@ -31,7 +31,7 @@
31
31
  "@typescript-eslint/eslint-plugin": "6.7.4",
32
32
  "@typescript-eslint/parser": "6.7.4",
33
33
  "eslint": "^8.14.0",
34
- "@akinon/eslint-plugin-projectzero": "1.19.0",
34
+ "@akinon/eslint-plugin-projectzero": "1.19.2",
35
35
  "eslint-config-prettier": "8.5.0"
36
36
  }
37
37
  }
package/types/index.ts CHANGED
@@ -176,6 +176,7 @@ export interface Settings {
176
176
  */
177
177
  iframeExcludedPaymentOptions?: string[];
178
178
  extraPaymentTypes?: string[];
179
+ masterpassJsUrl?: string;
179
180
  };
180
181
  }
181
182