expo-callkit-telecom 0.2.5 → 0.2.6
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 +10 -0
- package/README.md +0 -2
- package/package.json +1 -1
- package/typedoc.json +17 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ All notable changes to `expo-callkit-telecom` are documented here.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.2.6] — 2026-05-16
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- API reference sections now appear in a learn-the-module order (Sessions → Requests → Reporters → Fulfillers → Call Events → Audio → Audio Events → Capture → VoIP Push → Hooks → Permissions → Core) instead of alphabetical.
|
|
12
|
+
- Within each interface, type, and category, members are now listed in source order — so `CallParticipant` reads `id` → `displayName` → `avatarUrl` → `phoneNumber` → `email` as defined, rather than alphabetically.
|
|
13
|
+
|
|
14
|
+
### Removed
|
|
15
|
+
- The self-referential "each release updates this matrix…" sentence following the Verified-against table in `README.md`, `docs/index.md`, and `docs/vs-callkeep.md`. The table itself stays; the meta-commentary was unnecessary.
|
|
16
|
+
|
|
8
17
|
## [0.2.5] — 2026-05-16
|
|
9
18
|
|
|
10
19
|
### Changed
|
|
@@ -59,6 +68,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
59
68
|
- Config plugin: entitlements, background modes, microphone permission, ringtone/dialtone bundling, FCM service registration.
|
|
60
69
|
- CI: trusted publishing on Node 24 / npm 11.
|
|
61
70
|
|
|
71
|
+
[0.2.6]: https://github.com/mfairley/expo-callkit-telecom/releases/tag/v0.2.6
|
|
62
72
|
[0.2.5]: https://github.com/mfairley/expo-callkit-telecom/releases/tag/v0.2.5
|
|
63
73
|
[0.2.4]: https://github.com/mfairley/expo-callkit-telecom/releases/tag/v0.2.4
|
|
64
74
|
[0.2.3]: https://github.com/mfairley/expo-callkit-telecom/releases/tag/v0.2.3
|
package/README.md
CHANGED
|
@@ -36,8 +36,6 @@ This release is exercised end-to-end on real devices via the runnable `example/`
|
|
|
36
36
|
| New Architecture | Yes |
|
|
37
37
|
| Media transport | LiveKit RN SDK |
|
|
38
38
|
|
|
39
|
-
Each release updates this table — so the recency signal is the version number on npm, not a promise in prose.
|
|
40
|
-
|
|
41
39
|
## 📦 Install
|
|
42
40
|
|
|
43
41
|
```sh
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-callkit-telecom",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "CallKit + Jetpack Core-Telecom for Expo / React Native — native call UI, VoIP push, LiveKit-friendly audio. A modern react-native-callkeep alternative.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
package/typedoc.json
CHANGED
|
@@ -15,5 +15,21 @@
|
|
|
15
15
|
"parametersFormat": "table",
|
|
16
16
|
"indexFormat": "table",
|
|
17
17
|
"entryFileName": "index.md",
|
|
18
|
-
"fileExtension": ".md"
|
|
18
|
+
"fileExtension": ".md",
|
|
19
|
+
"sort": ["source-order"],
|
|
20
|
+
"categoryOrder": [
|
|
21
|
+
"Sessions",
|
|
22
|
+
"Requests",
|
|
23
|
+
"Reporters",
|
|
24
|
+
"Fulfillers",
|
|
25
|
+
"Call Events",
|
|
26
|
+
"Audio",
|
|
27
|
+
"Audio Events",
|
|
28
|
+
"Capture",
|
|
29
|
+
"VoIP Push",
|
|
30
|
+
"Hooks",
|
|
31
|
+
"Permissions",
|
|
32
|
+
"Core",
|
|
33
|
+
"*"
|
|
34
|
+
]
|
|
19
35
|
}
|