@volorio/rte-uikit 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 +21 -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/rte-uikit
2
2
 
3
- UI model helpers for Volorio Real-Time Engagement rooms.
3
+ Volorio RTE UI model helpers for live engagement rooms.
4
+
5
+ ## Install
4
6
 
5
7
  ```bash
6
- npm install @volorio/rte-uikit
8
+ npm install @volorio/rte-uikit@0.2.1
9
+ ```
10
+
11
+ ## Runtime and security
12
+
13
+ - Runtime: React web 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: UI packages do not create server sessions or bypass product entitlements.
20
+
21
+ ## Public API
22
+
23
+ - `VolorioRteUIKitModel`
24
+ - `createVolorioRteUIKitModel`
25
+
26
+ ```ts
27
+ import { createVolorioRteUIKitModel } from "@volorio/rte-uikit";
7
28
  ```
29
+
30
+
31
+ ## Dependencies
32
+
33
+ - `@volorio/rte` `^0.2.0`
34
+ - `react` `>=18`
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/rte-uikit",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "private": false,
5
5
  "description": "Volorio RTE UI model helpers for live engagement rooms.",
6
6
  "main": "dist/src/index.js",
@@ -11,7 +11,11 @@
11
11
  "default": "./dist/src/index.js"
12
12
  }
13
13
  },
14
- "files": ["dist/src", "README.md"],
14
+ "files": [
15
+ "dist/src",
16
+ "README.md",
17
+ "LICENSE"
18
+ ],
15
19
  "publishConfig": {
16
20
  "access": "public",
17
21
  "registry": "https://registry.npmjs.org/"
@@ -26,5 +30,19 @@
26
30
  },
27
31
  "dependencies": {
28
32
  "@volorio/rte": "^0.2.0"
29
- }
33
+ },
34
+ "homepage": "https://volor.io/docs/packages/npm-overview",
35
+ "license": "SEE LICENSE IN LICENSE",
36
+ "keywords": [
37
+ "volorio",
38
+ "realtime",
39
+ "rtc",
40
+ "sdk",
41
+ "rte-uikit",
42
+ "model",
43
+ "helpers",
44
+ "live",
45
+ "engagement",
46
+ "rooms"
47
+ ]
30
48
  }