@camstack/types 0.1.17 → 0.1.18
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/{auth-records-BDg37fy9.mjs → auth-records-BpjTmlhM.mjs} +9 -1
- package/dist/{auth-records-BDg37fy9.mjs.map → auth-records-BpjTmlhM.mjs.map} +1 -1
- package/dist/{auth-records-D5ZNaUos.js → auth-records-dZTcJ-2e.js} +9 -1
- package/dist/{auth-records-D5ZNaUos.js.map → auth-records-dZTcJ-2e.js.map} +1 -1
- package/dist/capabilities/turn-orchestrator.cap.d.ts +2 -0
- package/dist/capabilities/turn-orchestrator.cap.d.ts.map +1 -1
- package/dist/generated/addon-api.d.ts +2 -0
- package/dist/generated/addon-api.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/node.js +1 -1
- package/dist/node.mjs +1 -1
- package/package.json +1 -1
|
@@ -5505,6 +5505,14 @@ const TurnProviderInfoSchema = z.object({
|
|
|
5505
5505
|
enabled: z.boolean(),
|
|
5506
5506
|
/** Number of servers this provider is currently exposing. */
|
|
5507
5507
|
serverCount: z.number(),
|
|
5508
|
+
/**
|
|
5509
|
+
* Flat list of every TURN/STUN URL this provider currently exposes.
|
|
5510
|
+
* One row per URL (multi-URL ICE server entries are flattened). The
|
|
5511
|
+
* admin UI shows this in a compact per-provider list so operators
|
|
5512
|
+
* can verify what's actually being negotiated without having to dig
|
|
5513
|
+
* into the combined `getAllServers` output.
|
|
5514
|
+
*/
|
|
5515
|
+
urls: z.array(z.string()).readonly(),
|
|
5508
5516
|
/** Last fetch error (when serverCount=0 due to API failure), if any. */
|
|
5509
5517
|
error: z.string().optional()
|
|
5510
5518
|
});
|
|
@@ -8294,4 +8302,4 @@ export {
|
|
|
8294
8302
|
addonsCapability as y,
|
|
8295
8303
|
zonesCapability as z
|
|
8296
8304
|
};
|
|
8297
|
-
//# sourceMappingURL=auth-records-
|
|
8305
|
+
//# sourceMappingURL=auth-records-BpjTmlhM.mjs.map
|