@akinon/next 1.23.0-rc.2 → 1.23.0-rc.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.
- package/CHANGELOG.md +6 -0
- package/global.d.ts +11 -0
- package/package.json +2 -2
- package/plugins.d.ts +13 -1
package/CHANGELOG.md
CHANGED
package/global.d.ts
ADDED
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.23.0-rc.
|
|
4
|
+
"version": "1.23.0-rc.3",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"bin": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@typescript-eslint/eslint-plugin": "6.7.4",
|
|
33
33
|
"@typescript-eslint/parser": "6.7.4",
|
|
34
34
|
"eslint": "^8.14.0",
|
|
35
|
-
"@akinon/eslint-plugin-projectzero": "1.23.0-rc.
|
|
35
|
+
"@akinon/eslint-plugin-projectzero": "1.23.0-rc.3",
|
|
36
36
|
"eslint-config-prettier": "8.5.0"
|
|
37
37
|
}
|
|
38
38
|
}
|
package/plugins.d.ts
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
|
+
|
|
1
3
|
declare module '@akinon/pz-masterpass' {
|
|
2
|
-
export const masterpassReducer:
|
|
4
|
+
export const masterpassReducer: any;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
declare module '@akinon/pz-masterpass/src/utils' {
|
|
8
|
+
export const buildDirectPurchaseForm: any;
|
|
9
|
+
export const buildPurchaseForm: any;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
declare module '@akinon/pz-masterpass/src/redux/reducer' {
|
|
13
|
+
export const setError: any;
|
|
14
|
+
export const setOtpModalVisible: any;
|
|
3
15
|
}
|
|
4
16
|
|
|
5
17
|
declare module '@akinon/pz-otp' {
|