@camstack/types 0.1.21 → 0.1.22
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-Bsjs9Xri.mjs → auth-records-COv3plzv.mjs} +3 -28
- package/dist/{auth-records-Bsjs9Xri.mjs.map → auth-records-COv3plzv.mjs.map} +1 -1
- package/dist/{auth-records-BPN2YvK2.js → auth-records-Q5ocndX5.js} +3 -28
- package/dist/{auth-records-BPN2YvK2.js.map → auth-records-Q5ocndX5.js.map} +1 -1
- package/dist/capabilities/authentication.cap.d.ts +0 -14
- package/dist/capabilities/authentication.cap.d.ts.map +1 -1
- package/dist/capabilities/remote-access.cap.d.ts +0 -12
- package/dist/capabilities/remote-access.cap.d.ts.map +1 -1
- package/dist/capabilities/turn-orchestrator.cap.d.ts +0 -12
- package/dist/capabilities/turn-orchestrator.cap.d.ts.map +1 -1
- package/dist/generated/addon-api.d.ts +24 -24
- 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
|
@@ -5348,15 +5348,6 @@ const AuthProviderInfoSchema = z.object({
|
|
|
5348
5348
|
addonId: z.string(),
|
|
5349
5349
|
/** Display label shown on the login button + admin row. */
|
|
5350
5350
|
displayName: z.string(),
|
|
5351
|
-
/**
|
|
5352
|
-
* Provider kind — drives icon + grouping in admin UI.
|
|
5353
|
-
* - `local` — username/password form (always at top of login page)
|
|
5354
|
-
* - `oidc` — OpenID Connect (Google, Microsoft, Okta, generic)
|
|
5355
|
-
* - `saml` — SAML 2.0
|
|
5356
|
-
* - `ldap` — LDAP / Active Directory
|
|
5357
|
-
* - `other` — anything else (custom integrations)
|
|
5358
|
-
*/
|
|
5359
|
-
kind: z.enum(["local", "oidc", "saml", "ldap", "other"]),
|
|
5360
5351
|
/** Optional iconography hint (lucide-react icon name OR emoji). */
|
|
5361
5352
|
icon: z.string().optional(),
|
|
5362
5353
|
/** When true, the provider exposes a redirect-based login flow
|
|
@@ -5422,16 +5413,8 @@ const RemoteAccessEndpointSchema = z.object({
|
|
|
5422
5413
|
const RemoteAccessProviderInfoSchema = z.object({
|
|
5423
5414
|
/** Stable id matching the addon id. */
|
|
5424
5415
|
addonId: z.string(),
|
|
5425
|
-
/** Display label shown on the admin row. */
|
|
5416
|
+
/** Display label shown on the admin row — sourced from the addon manifest. */
|
|
5426
5417
|
displayName: z.string(),
|
|
5427
|
-
/**
|
|
5428
|
-
* Provider kind — drives icon + status formatting.
|
|
5429
|
-
* - `cloudflare-tunnel`
|
|
5430
|
-
* - `ngrok`
|
|
5431
|
-
* - `tailscale`
|
|
5432
|
-
* - `other`
|
|
5433
|
-
*/
|
|
5434
|
-
kind: z.enum(["cloudflare-tunnel", "ngrok", "tailscale", "other"]),
|
|
5435
5418
|
/** When false, the provider is registered but disabled. */
|
|
5436
5419
|
enabled: z.boolean(),
|
|
5437
5420
|
/** True when the underlying tunnel/connection is up. */
|
|
@@ -5491,16 +5474,8 @@ const turnProviderCapability = {
|
|
|
5491
5474
|
const TurnProviderInfoSchema = z.object({
|
|
5492
5475
|
/** Stable id matching the addon id. */
|
|
5493
5476
|
addonId: z.string(),
|
|
5494
|
-
/** Display label shown on the admin row. */
|
|
5477
|
+
/** Display label shown on the admin row — sourced from the addon manifest. */
|
|
5495
5478
|
displayName: z.string(),
|
|
5496
|
-
/**
|
|
5497
|
-
* Provider kind — drives icon + grouping.
|
|
5498
|
-
* - `cloudflare` — Cloudflare TURN
|
|
5499
|
-
* - `coturn` — self-hosted coturn
|
|
5500
|
-
* - `twilio` — Twilio Network Traversal
|
|
5501
|
-
* - `other` — anything else
|
|
5502
|
-
*/
|
|
5503
|
-
kind: z.enum(["cloudflare", "coturn", "twilio", "other"]),
|
|
5504
5479
|
/** When false, the provider is registered but disabled. */
|
|
5505
5480
|
enabled: z.boolean(),
|
|
5506
5481
|
/** Number of servers this provider is currently exposing. */
|
|
@@ -8312,4 +8287,4 @@ export {
|
|
|
8312
8287
|
addonsCapability as y,
|
|
8313
8288
|
zonesCapability as z
|
|
8314
8289
|
};
|
|
8315
|
-
//# sourceMappingURL=auth-records-
|
|
8290
|
+
//# sourceMappingURL=auth-records-COv3plzv.mjs.map
|