@pinwheel/react-native-pinwheel 2.3.15-alpha.3 → 2.3.15

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/README.md CHANGED
@@ -46,7 +46,7 @@ The link token returned is valid for 15 minutes, after which it expires and can
46
46
  The PinwheelLink component is a view that you can integrate into your app's flow like so:
47
47
 
48
48
  ```javascript
49
- import PinwheelLink from "react-native-pinwheel";
49
+ import PinwheelLink from "@pinwheel/react-native-pinwheel";
50
50
 
51
51
  <PinwheelLink
52
52
  linkToken={response.data.token}
package/lib/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export declare const PINWHEEL_MESSAGE_TYPES: {
2
3
  PINWHEEL_EXIT: string;
3
4
  PINWHEEL_MODAL_CLOSE: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pinwheel/react-native-pinwheel",
3
- "version": "2.3.15-alpha.3",
3
+ "version": "2.3.15",
4
4
  "type": "module",
5
5
  "description": "Pinwheel React Native SDK",
6
6
  "main": "lib/index.js",
@@ -16,7 +16,7 @@
16
16
  "author": "Pinwheel",
17
17
  "license": "MIT",
18
18
  "peerDependencies": {
19
- "react": ">=16.13.1",
19
+ "react": "^16.13.1 || ^17 || ^18",
20
20
  "react-native": "*",
21
21
  "react-native-webview": "^10.10.0 || ^11.0.0"
22
22
  },