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