expo-callkit-telecom 0.2.5 β 0.2.7
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 +24 -0
- package/README.md +4 -3
- package/SECURITY.md +23 -0
- package/package.json +9 -2
- package/typedoc.json +17 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,28 @@ 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.7] β 2026-05-16
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- VitePress now emits a `sitemap.xml` on each docs build for better search-engine crawling.
|
|
12
|
+
- Prominent "π Full documentation" link near the top of the README, plus a `docs` badge in the badge row.
|
|
13
|
+
- `SECURITY.md` describing how to report vulnerabilities via GitHub Security Advisories.
|
|
14
|
+
- `.github/ISSUE_TEMPLATE/` with bug-report and feature-request templates, plus a `config.yml` that points casual readers at the docs and the callkeep comparison first.
|
|
15
|
+
- `exports` field in `package.json` alongside the existing `main` and `types` (modern dual-export shape; no behavior change for consumers).
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- `homepage` field in `package.json` now points at the docs site (`https://mfairley.github.io/expo-callkit-telecom/`) instead of the README anchor β affects the "Homepage" link on npm's package page.
|
|
19
|
+
- README `<h1>` expanded to "expo-callkit-telecom β native calling UI for Expo (CallKit + Jetpack Core-Telecom)" for clearer SEO and first-impression scannability.
|
|
20
|
+
|
|
21
|
+
## [0.2.6] β 2026-05-16
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
- 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.
|
|
25
|
+
- 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.
|
|
26
|
+
|
|
27
|
+
### Removed
|
|
28
|
+
- 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.
|
|
29
|
+
|
|
8
30
|
## [0.2.5] β 2026-05-16
|
|
9
31
|
|
|
10
32
|
### Changed
|
|
@@ -59,6 +81,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
59
81
|
- Config plugin: entitlements, background modes, microphone permission, ringtone/dialtone bundling, FCM service registration.
|
|
60
82
|
- CI: trusted publishing on Node 24 / npm 11.
|
|
61
83
|
|
|
84
|
+
[0.2.7]: https://github.com/mfairley/expo-callkit-telecom/releases/tag/v0.2.7
|
|
85
|
+
[0.2.6]: https://github.com/mfairley/expo-callkit-telecom/releases/tag/v0.2.6
|
|
62
86
|
[0.2.5]: https://github.com/mfairley/expo-callkit-telecom/releases/tag/v0.2.5
|
|
63
87
|
[0.2.4]: https://github.com/mfairley/expo-callkit-telecom/releases/tag/v0.2.4
|
|
64
88
|
[0.2.3]: https://github.com/mfairley/expo-callkit-telecom/releases/tag/v0.2.3
|
package/README.md
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
|
-
# π expo-callkit-telecom
|
|
1
|
+
# π expo-callkit-telecom β native calling UI for Expo (CallKit + Jetpack Core-Telecom)
|
|
2
2
|
|
|
3
3
|
> A modern Expo module β written in Swift and Kotlin β that wraps **CallKit** on iOS and **Jetpack Core-Telecom** on Android with API parity. It owns the system call UI, the audio session, and VoIP push β your app owns the media (e.g. LiveKit, plain WebRTC, etc.).
|
|
4
4
|
|
|
5
5
|
The module is opinionated about *system integration* and unopinionated about *media*. You wire your media library to the events it emits.
|
|
6
6
|
|
|
7
|
+
π **Full documentation:** [mfairley.github.io/expo-callkit-telecom](https://mfairley.github.io/expo-callkit-telecom/)
|
|
8
|
+
|
|
7
9
|
<p>
|
|
8
10
|
<a href="https://www.npmjs.com/package/expo-callkit-telecom"><img alt="npm version" src="https://img.shields.io/npm/v/expo-callkit-telecom.svg"></a>
|
|
9
11
|
<a href="https://www.npmjs.com/package/expo-callkit-telecom"><img alt="npm downloads" src="https://img.shields.io/npm/dm/expo-callkit-telecom.svg"></a>
|
|
12
|
+
<a href="https://mfairley.github.io/expo-callkit-telecom/"><img alt="docs" src="https://img.shields.io/badge/docs-online-blue"></a>
|
|
10
13
|
<img alt="platform" src="https://img.shields.io/badge/platform-iOS%20%7C%20Android-blue">
|
|
11
14
|
<img alt="license" src="https://img.shields.io/npm/l/expo-callkit-telecom">
|
|
12
15
|
</p>
|
|
@@ -36,8 +39,6 @@ This release is exercised end-to-end on real devices via the runnable `example/`
|
|
|
36
39
|
| New Architecture | Yes |
|
|
37
40
|
| Media transport | LiveKit RN SDK |
|
|
38
41
|
|
|
39
|
-
Each release updates this table β so the recency signal is the version number on npm, not a promise in prose.
|
|
40
|
-
|
|
41
42
|
## π¦ Install
|
|
42
43
|
|
|
43
44
|
```sh
|
package/SECURITY.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Security Policy
|
|
2
|
+
|
|
3
|
+
## Supported versions
|
|
4
|
+
|
|
5
|
+
The latest minor version on `main` is supported. Earlier versions may receive security fixes at the maintainer's discretion.
|
|
6
|
+
|
|
7
|
+
## Reporting a vulnerability
|
|
8
|
+
|
|
9
|
+
Please report security issues **privately** via [GitHub Security Advisories](https://github.com/mfairley/expo-callkit-telecom/security/advisories/new) rather than as a public issue.
|
|
10
|
+
|
|
11
|
+
I'll acknowledge within 7 days and aim to ship a fix within 30 days where reasonable. If you don't get a response in that window, please open a private follow-up via the same channel.
|
|
12
|
+
|
|
13
|
+
## Scope
|
|
14
|
+
|
|
15
|
+
In scope:
|
|
16
|
+
|
|
17
|
+
- Vulnerabilities in this module's TypeScript, Swift, or Kotlin source.
|
|
18
|
+
- Vulnerabilities in the config plugin that produce insecure entitlements, permissions, or background-mode configuration in consumer apps.
|
|
19
|
+
|
|
20
|
+
Out of scope:
|
|
21
|
+
|
|
22
|
+
- Vulnerabilities in third-party packages this module depends on β please report those to the upstream maintainer (and feel free to flag them here so they can be tracked).
|
|
23
|
+
- Vulnerabilities in the system platforms (iOS CallKit / PushKit, Android Jetpack `androidx.core:core-telecom`, FCM) β report those to Apple / Google.
|
package/package.json
CHANGED
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-callkit-telecom",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
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",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./build/index.d.ts",
|
|
10
|
+
"default": "./build/index.js"
|
|
11
|
+
},
|
|
12
|
+
"./package.json": "./package.json"
|
|
13
|
+
},
|
|
7
14
|
"scripts": {
|
|
8
15
|
"build": "expo-module build && expo-module build plugin",
|
|
9
16
|
"clean": "expo-module clean",
|
|
@@ -51,7 +58,7 @@
|
|
|
51
58
|
"url": "https://github.com/mfairley"
|
|
52
59
|
},
|
|
53
60
|
"license": "MIT",
|
|
54
|
-
"homepage": "https://github.
|
|
61
|
+
"homepage": "https://mfairley.github.io/expo-callkit-telecom/",
|
|
55
62
|
"dependencies": {},
|
|
56
63
|
"devDependencies": {
|
|
57
64
|
"@types/react": "~19.2.14",
|
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
|
}
|