@akinon/next 1.24.0-rc.0 → 1.24.0-rc.1

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,11 @@
1
1
  # @akinon/next
2
2
 
3
+ ## 1.24.0-rc.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 9b10323: ZERO-2440: Add type declarations for @akinon/pz-otp modules
8
+
3
9
  ## 1.24.0-rc.0
4
10
 
5
11
  ### Minor Changes
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.24.0-rc.0",
4
+ "version": "1.24.0-rc.1",
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.24.0-rc.0",
35
+ "@akinon/eslint-plugin-projectzero": "1.24.0-rc.1",
36
36
  "eslint-config-prettier": "8.5.0"
37
37
  }
38
38
  }
package/plugins.d.ts CHANGED
@@ -15,5 +15,9 @@ declare module '@akinon/pz-masterpass/src/redux/reducer' {
15
15
  }
16
16
 
17
17
  declare module '@akinon/pz-otp' {
18
- export const otpReducer: unknown;
18
+ export const otpReducer: any;
19
+ }
20
+
21
+ declare module '@akinon/pz-otp/src/redux/reducer' {
22
+ export const showPopup: any;
19
23
  }