@volorio/core 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.
- package/LICENSE +16 -0
- package/README.md +45 -1
- package/dist/src/index.d.ts +18 -0
- package/dist/src/index.js +7 -7
- package/dist/src/index.js.map +1 -1
- package/package.json +23 -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,3 +1,47 @@
|
|
|
1
1
|
# @volorio/core
|
|
2
2
|
|
|
3
|
-
Shared Volorio product
|
|
3
|
+
Shared Volorio product, pricing, session, entitlement, and wallet types.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @volorio/core@0.2.1
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Runtime and security
|
|
12
|
+
|
|
13
|
+
- Runtime: Universal TypeScript
|
|
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
|
+
- `VolorioProductUnit`
|
|
24
|
+
- `VolorioProductPrice`
|
|
25
|
+
- `VolorioProductId`
|
|
26
|
+
- `VolorioMediaQuality`
|
|
27
|
+
- `VolorioRemoteVideoQuality`
|
|
28
|
+
- `VolorioVideoProfile`
|
|
29
|
+
- `VolorioBlackFrameWatchdogPolicy`
|
|
30
|
+
- `VolorioVideoPolicy`
|
|
31
|
+
- `VolorioEntitlement`
|
|
32
|
+
- `VolorioWalletBalance`
|
|
33
|
+
|
|
34
|
+
```ts
|
|
35
|
+
import { volorioPricingCatalog } from "@volorio/core";
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
## Dependencies
|
|
40
|
+
|
|
41
|
+
This package has no runtime dependency.
|
|
42
|
+
|
|
43
|
+
## Documentation
|
|
44
|
+
|
|
45
|
+
- [Volorio npm integration guide](https://volor.io/docs/packages/npm-overview)
|
|
46
|
+
- [REST and SDK documentation](https://volor.io/docs)
|
|
47
|
+
- [Volorio Console](https://app.volor.io)
|
package/dist/src/index.d.ts
CHANGED
|
@@ -12,6 +12,24 @@ export interface VolorioProductPrice {
|
|
|
12
12
|
}
|
|
13
13
|
export type VolorioProductId = "conversational_ai_platform" | "rtc_voice" | "rtc_video_hd" | "rtc_video_fullhd" | "rtc_video_2k" | "rtc_video_4k" | "live_streaming" | "screen_share" | "signaling" | "chat_mau" | "chat_e2ee" | "speech_to_text" | "real_time_translation" | "recording" | "media_gateway" | "cloud_transcoding" | "media_push" | "media_pull" | "ai_noise_suppression" | "virtual_background" | "beauty_effect" | "video_super_clarity" | "video_watermark" | "vad" | "video_compositor" | "spatial_audio_3d" | "interactive_whiteboard" | "analytics" | "flexible_classroom" | "games_catalog" | "games_session" | "games_minute" | "games_premium" | "games_leaderboard";
|
|
14
14
|
export type VolorioMediaQuality = "voice" | "hd" | "fullhd" | "2k" | "4k";
|
|
15
|
+
export type VolorioRemoteVideoQuality = "low" | "medium" | "high";
|
|
16
|
+
export interface VolorioVideoProfile {
|
|
17
|
+
width: number;
|
|
18
|
+
height: number;
|
|
19
|
+
maxFps: number;
|
|
20
|
+
maxBitrateKbps: number;
|
|
21
|
+
}
|
|
22
|
+
export interface VolorioBlackFrameWatchdogPolicy {
|
|
23
|
+
enabled: boolean;
|
|
24
|
+
freezeAfterMs: number;
|
|
25
|
+
recoverAfterMs: number;
|
|
26
|
+
}
|
|
27
|
+
export interface VolorioVideoPolicy {
|
|
28
|
+
publishProfile: VolorioVideoProfile;
|
|
29
|
+
simulcastLadder: VolorioVideoProfile[];
|
|
30
|
+
subscriberProfiles: Record<VolorioRemoteVideoQuality, VolorioVideoProfile>;
|
|
31
|
+
blackFrameWatchdog: VolorioBlackFrameWatchdogPolicy;
|
|
32
|
+
}
|
|
15
33
|
export interface VolorioEntitlement {
|
|
16
34
|
productId: VolorioProductId;
|
|
17
35
|
enabled: boolean;
|
package/dist/src/index.js
CHANGED
|
@@ -10,27 +10,27 @@ exports.volorioPricingCatalog = [
|
|
|
10
10
|
{ id: "rtc_video_4k", name: "RTC Video 4K", category: "core", unit: "participant_minute", unitPriceMicros: 2_490 },
|
|
11
11
|
{ id: "live_streaming", name: "Live Streaming", category: "core", unit: "participant_minute", unitPriceMicros: 590 },
|
|
12
12
|
{ id: "screen_share", name: "Screen Share", category: "core", unit: "participant_minute", unitPriceMicros: 590 },
|
|
13
|
-
{ id: "signaling", name: "Signaling", category: "core", unit: "message", unitPriceMicros:
|
|
13
|
+
{ id: "signaling", name: "Signaling", category: "core", unit: "message", unitPriceMicros: 1.5, freeAllowance: { quantity: 1_000_000, period: "month" } },
|
|
14
14
|
{ id: "chat_mau", name: "Chat MAU", category: "core", unit: "monthly_active_user", unitPriceMicros: 50_000, freeAllowance: { quantity: 500, period: "month" } },
|
|
15
15
|
{ id: "chat_e2ee", name: "Chat End-to-End Encryption", category: "addon", unit: "monthly_active_user", unitPriceMicros: 20_000 },
|
|
16
16
|
{ id: "speech_to_text", name: "Real-Time Speech to Text", category: "media_service", unit: "minute", unitPriceMicros: 16_990, freeAllowance: { quantity: 300, period: "one_time" } },
|
|
17
17
|
{ id: "real_time_translation", name: "Real-Time Translation", category: "media_service", unit: "minute", unitPriceMicros: 8_990, freeAllowance: { quantity: 300, period: "one_time" } },
|
|
18
|
-
{ id: "recording", name: "Recording", category: "media_service", unit: "minute", unitPriceMicros: 990, freeAllowance: { quantity:
|
|
18
|
+
{ id: "recording", name: "Recording", category: "media_service", unit: "minute", unitPriceMicros: 990, freeAllowance: { quantity: 15_000, period: "month" } },
|
|
19
19
|
{ id: "media_gateway", name: "Media Gateway", category: "media_service", unit: "minute", unitPriceMicros: 990 },
|
|
20
20
|
{ id: "cloud_transcoding", name: "Cloud Transcoding", category: "media_service", unit: "minute", unitPriceMicros: 1_990 },
|
|
21
21
|
{ id: "media_push", name: "Media Push", category: "media_service", unit: "minute", unitPriceMicros: 1_990 },
|
|
22
22
|
{ id: "media_pull", name: "Media Pull", category: "media_service", unit: "minute", unitPriceMicros: 1_150 },
|
|
23
|
-
{ id: "ai_noise_suppression", name: "AI Noise Suppression", category: "ai_extension", unit: "minute", unitPriceMicros: 590, freeAllowance: { quantity:
|
|
24
|
-
{ id: "virtual_background", name: "Virtual Background", category: "ai_extension", unit: "minute", unitPriceMicros: 590, freeAllowance: { quantity:
|
|
23
|
+
{ id: "ai_noise_suppression", name: "AI Noise Suppression", category: "ai_extension", unit: "minute", unitPriceMicros: 590, freeAllowance: { quantity: 15_000, period: "month" } },
|
|
24
|
+
{ id: "virtual_background", name: "Virtual Background", category: "ai_extension", unit: "minute", unitPriceMicros: 590, freeAllowance: { quantity: 15_000, period: "month" } },
|
|
25
25
|
{ id: "beauty_effect", name: "Beauty Effect", category: "ai_extension", unit: "minute", unitPriceMicros: 590 },
|
|
26
26
|
{ id: "video_super_clarity", name: "Video Super Clarity", category: "ai_extension", unit: "minute", unitPriceMicros: 990 },
|
|
27
27
|
{ id: "video_watermark", name: "Video Watermark", category: "addon", unit: "minute", unitPriceMicros: 390 },
|
|
28
28
|
{ id: "vad", name: "Voice Activity Detection", category: "ai_extension", unit: "minute", unitPriceMicros: 290 },
|
|
29
29
|
{ id: "video_compositor", name: "Video Compositor", category: "addon", unit: "minute", unitPriceMicros: 1_490 },
|
|
30
|
-
{ id: "spatial_audio_3d", name: "3D Spatial Audio", category: "ai_extension", unit: "minute", unitPriceMicros: 990, freeAllowance: { quantity:
|
|
31
|
-
{ id: "interactive_whiteboard", name: "Interactive Whiteboard", category: "addon", unit: "minute", unitPriceMicros: 1_400, freeAllowance: { quantity:
|
|
30
|
+
{ id: "spatial_audio_3d", name: "3D Spatial Audio", category: "ai_extension", unit: "minute", unitPriceMicros: 990, freeAllowance: { quantity: 15_000, period: "month" } },
|
|
31
|
+
{ id: "interactive_whiteboard", name: "Interactive Whiteboard", category: "addon", unit: "minute", unitPriceMicros: 1_400, freeAllowance: { quantity: 15_000, period: "month" } },
|
|
32
32
|
{ id: "analytics", name: "Analytics", category: "addon", unit: "month", unitPriceMicros: 449_000_000 },
|
|
33
|
-
{ id: "flexible_classroom", name: "Flexible Classroom", category: "apaas", unit: "minute", unitPriceMicros: 2_190, freeAllowance: { quantity:
|
|
33
|
+
{ id: "flexible_classroom", name: "Flexible Classroom", category: "apaas", unit: "minute", unitPriceMicros: 2_190, freeAllowance: { quantity: 15_000, period: "month" } },
|
|
34
34
|
{ id: "games_catalog", name: "Games Catalog", category: "games", unit: "month", unitPriceMicros: 0 },
|
|
35
35
|
{ id: "games_session", name: "Games Session", category: "games", unit: "game_session", unitPriceMicros: 1_000, freeAllowance: { quantity: 1_000, period: "month" } },
|
|
36
36
|
{ id: "games_minute", name: "Games Runtime Minute", category: "games", unit: "minute", unitPriceMicros: 250, freeAllowance: { quantity: 15_000, period: "month" } },
|
package/dist/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@volorio/core",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Shared Volorio product, pricing, session, entitlement, and wallet types.",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -11,7 +11,11 @@
|
|
|
11
11
|
"default": "./dist/src/index.js"
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
|
-
"files": [
|
|
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/"
|
|
@@ -20,5 +24,21 @@
|
|
|
20
24
|
"build": "tsc -p tsconfig.build.json",
|
|
21
25
|
"test": "pnpm build",
|
|
22
26
|
"pack:local": "pnpm build && npm pack --pack-destination dist"
|
|
23
|
-
}
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://volor.io/docs/packages/npm-overview",
|
|
29
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
30
|
+
"keywords": [
|
|
31
|
+
"volorio",
|
|
32
|
+
"realtime",
|
|
33
|
+
"rtc",
|
|
34
|
+
"sdk",
|
|
35
|
+
"core",
|
|
36
|
+
"shared",
|
|
37
|
+
"product",
|
|
38
|
+
"pricing",
|
|
39
|
+
"session",
|
|
40
|
+
"entitlement",
|
|
41
|
+
"wallet",
|
|
42
|
+
"types"
|
|
43
|
+
]
|
|
24
44
|
}
|