@volorio/react-native-chat-callkit 0.2.0 → 0.2.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 (3) hide show
  1. package/LICENSE +16 -0
  2. package/README.md +35 -2
  3. package/package.json +20 -3
package/LICENSE ADDED
@@ -0,0 +1,16 @@
1
+ Volorio SDK Commercial License
2
+
3
+ Copyright (c) 2026 Volorio. All rights reserved.
4
+
5
+ Permission to install and use this SDK is granted only to an authorized Volorio
6
+ customer or evaluator, solely to integrate an application with Volorio services,
7
+ and subject to the Volorio Terms at https://volor.io/terms.
8
+
9
+ Except where the Volorio Terms expressly allow it, you may not redistribute,
10
+ sublicense, sell, publish, reverse engineer, or create a competing service from
11
+ this SDK or its source code. No ownership rights are transferred.
12
+
13
+ Third-party dependencies remain subject to their respective licenses.
14
+
15
+ THE SDK IS PROVIDED WITHOUT WARRANTIES EXCEPT TO THE EXTENT EXPRESSLY STATED IN
16
+ THE VOLORIO TERMS.
package/README.md CHANGED
@@ -1,7 +1,40 @@
1
1
  # @volorio/react-native-chat-callkit
2
2
 
3
- React Native helpers for starting Volorio voice or video calls from chat conversations.
3
+ Volorio React Native chat call helpers for starting voice or video sessions from chat.
4
+
5
+ ## Install
4
6
 
5
7
  ```bash
6
- npm install @volorio/react-native-chat-callkit
8
+ npm install @volorio/react-native-chat-callkit@0.2.1
9
+ ```
10
+
11
+ ## Runtime and security
12
+
13
+ - Runtime: React Native application
14
+ - Source version: `0.2.1`
15
+ - Registry status: published as 0.2.1
16
+ - API base URL for server calls: `https://api.volor.io`
17
+ - License: proprietary commercial SDK; see the included `LICENSE` and [Volorio Terms](https://volor.io/terms).
18
+ - Never expose a Volorio API key in browser, React Native, or Flutter code. Create short-lived sessions in your backend.
19
+ - Capability note: Requested products must be granted to the API key and accepted by the session endpoint.
20
+
21
+ ## Public API
22
+
23
+ - `VolorioReactNativeChatCallInvite`
24
+ - `VolorioReactNativeChatCallkitClient`
25
+
26
+ ```ts
27
+ import { VolorioReactNativeChatCallkitClient } from "@volorio/react-native-chat-callkit";
7
28
  ```
29
+
30
+
31
+ ## Dependencies
32
+
33
+ - `@volorio/react-native` `^0.2.0`
34
+ - `@volorio/react-native-chat` `^0.2.0`
35
+
36
+ ## Documentation
37
+
38
+ - [Volorio npm integration guide](https://volor.io/docs/packages/npm-overview)
39
+ - [REST and SDK documentation](https://volor.io/docs)
40
+ - [Volorio Console](https://app.volor.io)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volorio/react-native-chat-callkit",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "private": false,
5
5
  "description": "Volorio React Native chat call helpers for starting voice or video sessions from chat.",
6
6
  "main": "dist/src/index.js",
@@ -13,7 +13,8 @@
13
13
  },
14
14
  "files": [
15
15
  "dist/src",
16
- "README.md"
16
+ "README.md",
17
+ "LICENSE"
17
18
  ],
18
19
  "publishConfig": {
19
20
  "access": "public",
@@ -27,5 +28,21 @@
27
28
  "dependencies": {
28
29
  "@volorio/react-native": "^0.2.0",
29
30
  "@volorio/react-native-chat": "^0.2.0"
30
- }
31
+ },
32
+ "homepage": "https://volor.io/docs/packages/npm-overview",
33
+ "license": "SEE LICENSE IN LICENSE",
34
+ "keywords": [
35
+ "volorio",
36
+ "realtime",
37
+ "rtc",
38
+ "sdk",
39
+ "react-native-chat-callkit",
40
+ "react",
41
+ "native",
42
+ "chat",
43
+ "call",
44
+ "helpers",
45
+ "starting",
46
+ "voice"
47
+ ]
31
48
  }