@camstack/core 0.1.18 → 0.1.19
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/dist/builtins/remote-access-orchestrator/remote-access-orchestrator.addon.d.ts +10 -1
- package/dist/builtins/remote-access-orchestrator/remote-access-orchestrator.addon.d.ts.map +1 -1
- package/dist/builtins/remote-access-orchestrator/remote-access-orchestrator.addon.js +53 -4
- package/dist/builtins/remote-access-orchestrator/remote-access-orchestrator.addon.js.map +1 -1
- package/dist/builtins/remote-access-orchestrator/remote-access-orchestrator.addon.mjs +53 -4
- package/dist/builtins/remote-access-orchestrator/remote-access-orchestrator.addon.mjs.map +1 -1
- package/dist/builtins/turn-orchestrator/turn-orchestrator.addon.d.ts +25 -1
- package/dist/builtins/turn-orchestrator/turn-orchestrator.addon.d.ts.map +1 -1
- package/dist/builtins/turn-orchestrator/turn-orchestrator.addon.js +60 -11
- package/dist/builtins/turn-orchestrator/turn-orchestrator.addon.js.map +1 -1
- package/dist/builtins/turn-orchestrator/turn-orchestrator.addon.mjs +60 -11
- package/dist/builtins/turn-orchestrator/turn-orchestrator.addon.mjs.map +1 -1
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -31,7 +31,7 @@ import { promisify } from "node:util";
|
|
|
31
31
|
import { errMsg, parseJsonObject } from "@camstack/types";
|
|
32
32
|
import * as vm from "node:vm";
|
|
33
33
|
import * as os from "node:os";
|
|
34
|
-
//#region ../types/dist/auth-records-
|
|
34
|
+
//#region ../types/dist/auth-records-BpjTmlhM.mjs
|
|
35
35
|
var MODEL_FORMATS = [
|
|
36
36
|
"onnx",
|
|
37
37
|
"coreml",
|
|
@@ -3419,6 +3419,14 @@ var TurnProviderInfoSchema = z.object({
|
|
|
3419
3419
|
enabled: z.boolean(),
|
|
3420
3420
|
/** Number of servers this provider is currently exposing. */
|
|
3421
3421
|
serverCount: z.number(),
|
|
3422
|
+
/**
|
|
3423
|
+
* Flat list of every TURN/STUN URL this provider currently exposes.
|
|
3424
|
+
* One row per URL (multi-URL ICE server entries are flattened). The
|
|
3425
|
+
* admin UI shows this in a compact per-provider list so operators
|
|
3426
|
+
* can verify what's actually being negotiated without having to dig
|
|
3427
|
+
* into the combined `getAllServers` output.
|
|
3428
|
+
*/
|
|
3429
|
+
urls: z.array(z.string()).readonly(),
|
|
3422
3430
|
/** Last fetch error (when serverCount=0 due to API failure), if any. */
|
|
3423
3431
|
error: z.string().optional()
|
|
3424
3432
|
});
|