turbodesk-livechat-react-native 0.1.0-alpha.17 → 0.1.0-alpha.19

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/CHANGELOG.md +5 -0
  2. package/package.json +1 -5
package/CHANGELOG.md CHANGED
@@ -10,6 +10,11 @@ A breaking API change = major bump.
10
10
 
11
11
  ## [Unreleased]
12
12
 
13
+ ## [0.1.0-alpha.19] — 2026-05-13
14
+
15
+ ### Fixed
16
+ - **iOS linker crash on client apps** — `@react-native-documents/picker` was listed in `peerDependencies` causing npm to auto-install it. On iOS this requires `pod install` to link native code — client apps that skipped this got a linker error (`NativeDocumentPickerSpecJSI` undefined). Removed from `peerDependencies` entirely since it is loaded via `require()` at runtime only (attachment picking is optional).
17
+
13
18
  ## [0.1.0-alpha.17] — 2026-06-08
14
19
 
15
20
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "turbodesk-livechat-react-native",
3
- "version": "0.1.0-alpha.17",
3
+ "version": "0.1.0-alpha.19",
4
4
  "description": "Headless Live Chat SDK for React Native - REST, WebSocket, hooks, and optional UI kit",
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.js",
@@ -29,14 +29,10 @@
29
29
  "peerDependencies": {
30
30
  "react": ">=18.0.0",
31
31
  "react-native": ">=0.72.0",
32
- "@react-native-documents/picker": "*",
33
32
  "react-native-image-picker": "*",
34
33
  "react-native-reanimated": ">=3.0.0"
35
34
  },
36
35
  "peerDependenciesMeta": {
37
- "@react-native-documents/picker": {
38
- "optional": true
39
- },
40
36
  "@react-native-async-storage/async-storage": {
41
37
  "optional": true
42
38
  },