@smart_links/core 2.0.0 → 2.0.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.
Files changed (2) hide show
  1. package/README.md +13 -0
  2. package/package.json +4 -3
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # @smart_links/core
2
+
3
+ HTTP client, identity, customization store, and AI gateway helpers for SmartLinks.
4
+
5
+ This package is included automatically when you install the umbrella SDK:
6
+
7
+ ```bash
8
+ npm install smartlinks react-native-smartlinks
9
+ ```
10
+
11
+ Use `SmartLinksApi` directly for headless integrations, or import types and utilities from `smartlinks`.
12
+
13
+ **Docs:** [API reference](https://gitlab.com/elmansoryanas/smartlinks-react-native/-/blob/main/docs/api-reference.md)
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@smart_links/core",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "SmartLinks HTTP client, identity, and API helpers for React Native",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "files": [
8
- "dist"
8
+ "dist",
9
+ "README.md"
9
10
  ],
10
11
  "publishConfig": {
11
12
  "access": "public"
@@ -23,7 +24,7 @@
23
24
  "dependencies": {
24
25
  "@react-native-async-storage/async-storage": "^2.1.2",
25
26
  "axios": "^1.7.9",
26
- "react-native-smartlinks": "2.0.0"
27
+ "react-native-smartlinks": "2.0.1"
27
28
  },
28
29
  "peerDependencies": {
29
30
  "react-native": "*",