@openfort/react-native 0.1.7 → 0.1.8

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.
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export const SDK_INFO = {
5
5
  name: '@openfort/react-native',
6
- version: '0.1.0',
6
+ version: '0.1.8',
7
7
  description: 'React Native client for Openfort',
8
8
  homepage: 'https://openfort.io/docs',
9
9
  };
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@
6
6
  * for building decentralized applications on React Native.
7
7
  *
8
8
  * @author Openfort
9
- * @version 0.1.0
9
+ * @version 0.1.8
10
10
  */
11
11
  // Re-export commonly used types from @openfort/openfort-js
12
12
  export { OpenfortError, RecoveryMethod, Openfort as OpenfortClient, OpenfortConfiguration, ShieldConfiguration, EmbeddedState, } from '@openfort/openfort-js';
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export declare const SDK_INFO: {
5
5
  readonly name: "@openfort/react-native";
6
- readonly version: "0.1.0";
6
+ readonly version: "0.1.8";
7
7
  readonly description: "React Native client for Openfort";
8
8
  readonly homepage: "https://openfort.io/docs";
9
9
  };
@@ -6,7 +6,7 @@
6
6
  * for building decentralized applications on React Native.
7
7
  *
8
8
  * @author Openfort
9
- * @version 0.1.0
9
+ * @version 0.1.8
10
10
  */
11
11
  export { AuthPlayerResponse, OpenfortError, RecoveryMethod, Openfort as OpenfortClient, Provider, OpenfortConfiguration, ShieldConfiguration, EmbeddedState, } from '@openfort/openfort-js';
12
12
  export { OAuthProvider, } from '@openfort/openfort-js';
package/package.json CHANGED
@@ -1,14 +1,15 @@
1
1
  {
2
2
  "name": "@openfort/react-native",
3
3
  "main": "dist/index.js",
4
- "version": "0.1.7",
4
+ "version": "0.1.8",
5
5
  "license": "MIT",
6
6
  "description": "React Native SDK for Openfort platform integration",
7
7
  "scripts": {
8
8
  "build": "rimraf dist && tsc",
9
9
  "lint": "eslint . --ignore-pattern dist",
10
10
  "link": "yarn link",
11
- "unlink": "yarn unlink"
11
+ "unlink": "yarn unlink",
12
+ "docs:build": "typedoc"
12
13
  },
13
14
  "types": "dist/types/index.d.ts",
14
15
  "files": [
@@ -22,7 +23,7 @@
22
23
  }
23
24
  },
24
25
  "dependencies": {
25
- "@openfort/openfort-js": "^0.10.9"
26
+ "@openfort/openfort-js": "^0.10.16"
26
27
  },
27
28
  "peerDependencies": {
28
29
  "expo-apple-authentication": "*",
@@ -51,6 +52,7 @@
51
52
  "react": "^18.3.1",
52
53
  "react-native": "0.77.1",
53
54
  "react-native-webview": "^13.15.0",
55
+ "typedoc": "^0.26.5",
54
56
  "typescript": "^5.5.3",
55
57
  "typescript-eslint": "^8.19.0"
56
58
  },