@camstack/types 0.1.34 → 0.1.35
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/capabilities/addons.cap.d.ts +21 -0
- package/dist/capabilities/addons.cap.d.ts.map +1 -1
- package/dist/capabilities/index.d.ts +3 -10
- package/dist/capabilities/index.d.ts.map +1 -1
- package/dist/capabilities/local-network.cap.d.ts +5 -5
- package/dist/capabilities/mesh-network.cap.d.ts +4 -2
- package/dist/capabilities/mesh-network.cap.d.ts.map +1 -1
- package/dist/capabilities/network-access.cap.d.ts +5 -4
- package/dist/capabilities/network-access.cap.d.ts.map +1 -1
- package/dist/generated/addon-api.d.ts +227 -499
- package/dist/generated/addon-api.d.ts.map +1 -1
- package/dist/generated/capability-router-map.d.ts +2 -14
- package/dist/generated/capability-router-map.d.ts.map +1 -1
- package/dist/generated/method-access-map.d.ts +1 -1
- package/dist/generated/method-access-map.d.ts.map +1 -1
- package/dist/generated/system-proxy.d.ts +3 -9
- package/dist/generated/system-proxy.d.ts.map +1 -1
- package/dist/{index-DS7418lf.js → index-BkSgJYP7.js} +31 -252
- package/dist/index-BkSgJYP7.js.map +1 -0
- package/dist/{index-Ce7RZWP4.mjs → index-CWhQOnm9.mjs} +352 -573
- package/dist/index-CWhQOnm9.mjs.map +1 -0
- package/dist/index.js +13 -69
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +285 -341
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/capability.d.ts +1 -6
- package/dist/interfaces/capability.d.ts.map +1 -1
- package/dist/interfaces/server-network.d.ts +8 -33
- package/dist/interfaces/server-network.d.ts.map +1 -1
- package/dist/node.js +1 -1
- package/dist/node.mjs +1 -1
- package/package.json +1 -1
- package/dist/capabilities/authentication.cap.d.ts +0 -73
- package/dist/capabilities/authentication.cap.d.ts.map +0 -1
- package/dist/capabilities/mesh-orchestrator.cap.d.ts +0 -151
- package/dist/capabilities/mesh-orchestrator.cap.d.ts.map +0 -1
- package/dist/capabilities/remote-access.cap.d.ts +0 -91
- package/dist/capabilities/remote-access.cap.d.ts.map +0 -1
- package/dist/capabilities/turn-orchestrator.cap.d.ts +0 -64
- package/dist/capabilities/turn-orchestrator.cap.d.ts.map +0 -1
- package/dist/index-Ce7RZWP4.mjs.map +0 -1
- package/dist/index-DS7418lf.js.map +0 -1
|
@@ -5669,54 +5669,6 @@ const authProviderCapability = {
|
|
|
5669
5669
|
validateToken: method(z.object({ token: z.string() }), AuthResultSchema.nullable())
|
|
5670
5670
|
}
|
|
5671
5671
|
};
|
|
5672
|
-
const AuthProviderInfoSchema = z.object({
|
|
5673
|
-
/** Stable id matching the addon id (used for `getLoginUrl({addonId,…})`). */
|
|
5674
|
-
addonId: z.string(),
|
|
5675
|
-
/**
|
|
5676
|
-
* Per-instance id when one addon registers multiple "logical"
|
|
5677
|
-
* providers (e.g. OIDC with Google + Microsoft + custom). The login
|
|
5678
|
-
* URL becomes `/addon/${addonId}/${instanceId}/start` — handler reads
|
|
5679
|
-
* `:instanceId` from the route. Empty/unset means the addon is a
|
|
5680
|
-
* single-instance provider; the URL is `/addon/${addonId}/start`.
|
|
5681
|
-
*/
|
|
5682
|
-
instanceId: z.string().optional(),
|
|
5683
|
-
/** Display label shown on the login button + admin row. */
|
|
5684
|
-
displayName: z.string(),
|
|
5685
|
-
/** Optional iconography hint (lucide-react icon name OR emoji). */
|
|
5686
|
-
icon: z.string().optional(),
|
|
5687
|
-
/** When true, the provider exposes a redirect-based login flow
|
|
5688
|
-
* (`getLoginUrl` returns a URL the browser navigates to). */
|
|
5689
|
-
hasRedirectFlow: z.boolean(),
|
|
5690
|
-
/** When true, the provider exposes a credential-form login flow
|
|
5691
|
-
* (`validateCredentials` accepts username + password). */
|
|
5692
|
-
hasCredentialFlow: z.boolean(),
|
|
5693
|
-
/** Provider kind, drives admin-UI hint dispatch (oidc / saml / totp / …). */
|
|
5694
|
-
kind: z.string().optional(),
|
|
5695
|
-
/** Operator-facing status string (e.g. "Connected to https://login.acme.com"). */
|
|
5696
|
-
status: z.string().optional(),
|
|
5697
|
-
/** When false, the provider is registered but disabled by config; the
|
|
5698
|
-
* UI surfaces it as inactive without enumerating it for login. */
|
|
5699
|
-
enabled: z.boolean()
|
|
5700
|
-
});
|
|
5701
|
-
const authenticationCapability = {
|
|
5702
|
-
name: "authentication",
|
|
5703
|
-
scope: "system",
|
|
5704
|
-
mode: "singleton",
|
|
5705
|
-
methods: {
|
|
5706
|
-
/** All registered auth providers, both enabled and disabled. */
|
|
5707
|
-
listProviders: method(z.void(), z.array(AuthProviderInfoSchema).readonly()),
|
|
5708
|
-
/**
|
|
5709
|
-
* Toggle a provider's enabled flag. Disabled providers stay
|
|
5710
|
-
* registered but aren't surfaced on the login page. The orchestrator
|
|
5711
|
-
* persists the state in `addon-settings` so it survives restarts.
|
|
5712
|
-
*/
|
|
5713
|
-
setProviderEnabled: method(
|
|
5714
|
-
z.object({ addonId: z.string(), enabled: z.boolean() }),
|
|
5715
|
-
z.object({ success: z.literal(true) }),
|
|
5716
|
-
{ kind: "mutation", auth: "admin" }
|
|
5717
|
-
)
|
|
5718
|
-
}
|
|
5719
|
-
};
|
|
5720
5672
|
const NetworkEndpointSchema = z.object({
|
|
5721
5673
|
url: z.string(),
|
|
5722
5674
|
hostname: z.string(),
|
|
@@ -5745,7 +5697,6 @@ const networkAccessCapability = {
|
|
|
5745
5697
|
name: "network-access",
|
|
5746
5698
|
scope: "system",
|
|
5747
5699
|
mode: "collection",
|
|
5748
|
-
internal: true,
|
|
5749
5700
|
providerKind: "ingress",
|
|
5750
5701
|
methods: {
|
|
5751
5702
|
start: method(z.void(), NetworkEndpointSchema, { kind: "mutation" }),
|
|
@@ -5753,58 +5704,13 @@ const networkAccessCapability = {
|
|
|
5753
5704
|
getEndpoint: method(z.void(), NetworkEndpointSchema.nullable()),
|
|
5754
5705
|
getStatus: method(z.void(), NetworkAccessStatusSchema),
|
|
5755
5706
|
/**
|
|
5756
|
-
* Enumerate every active ingress entry.
|
|
5757
|
-
*
|
|
5758
|
-
*
|
|
5707
|
+
* Enumerate every active ingress entry. Providers that expose only a
|
|
5708
|
+
* single endpoint may omit this method; callers fall back to
|
|
5709
|
+
* `getEndpoint()` in that case.
|
|
5759
5710
|
*/
|
|
5760
5711
|
listEndpoints: method(z.void(), z.array(NetworkEndpointEntrySchema).readonly())
|
|
5761
5712
|
}
|
|
5762
5713
|
};
|
|
5763
|
-
const RemoteAccessEndpointSchema = z.object({
|
|
5764
|
-
url: z.string(),
|
|
5765
|
-
hostname: z.string(),
|
|
5766
|
-
port: z.number(),
|
|
5767
|
-
protocol: z.enum(["http", "https"])
|
|
5768
|
-
});
|
|
5769
|
-
const RemoteAccessProviderInfoSchema = z.object({
|
|
5770
|
-
/** Stable id matching the addon id. */
|
|
5771
|
-
addonId: z.string(),
|
|
5772
|
-
/** Display label shown on the admin row — sourced from the addon manifest. */
|
|
5773
|
-
displayName: z.string(),
|
|
5774
|
-
/** When false, the provider is registered but disabled. */
|
|
5775
|
-
enabled: z.boolean(),
|
|
5776
|
-
/** True when the underlying tunnel/connection is up. */
|
|
5777
|
-
connected: z.boolean(),
|
|
5778
|
-
/** Public-facing endpoint, when connected. Null otherwise. */
|
|
5779
|
-
endpoint: RemoteAccessEndpointSchema.nullable(),
|
|
5780
|
-
/** Last error message (when connected=false), if available. */
|
|
5781
|
-
error: z.string().optional()
|
|
5782
|
-
});
|
|
5783
|
-
const remoteAccessCapability = {
|
|
5784
|
-
name: "remote-access",
|
|
5785
|
-
scope: "system",
|
|
5786
|
-
mode: "singleton",
|
|
5787
|
-
methods: {
|
|
5788
|
-
/** All registered remote-access providers + their live status. */
|
|
5789
|
-
listProviders: method(z.void(), z.array(RemoteAccessProviderInfoSchema).readonly()),
|
|
5790
|
-
/**
|
|
5791
|
-
* Start a specific provider's tunnel. Per-provider config still
|
|
5792
|
-
* lives on the addon's settings panel; this is just the on/off
|
|
5793
|
-
* trigger so the admin UI can manage the lifecycle from one place.
|
|
5794
|
-
*/
|
|
5795
|
-
startProvider: method(
|
|
5796
|
-
z.object({ addonId: z.string() }),
|
|
5797
|
-
RemoteAccessEndpointSchema,
|
|
5798
|
-
{ kind: "mutation", auth: "admin" }
|
|
5799
|
-
),
|
|
5800
|
-
/** Stop a specific provider's tunnel (idempotent on already-stopped). */
|
|
5801
|
-
stopProvider: method(
|
|
5802
|
-
z.object({ addonId: z.string() }),
|
|
5803
|
-
z.object({ success: z.literal(true) }),
|
|
5804
|
-
{ kind: "mutation", auth: "admin" }
|
|
5805
|
-
)
|
|
5806
|
-
}
|
|
5807
|
-
};
|
|
5808
5714
|
const TurnServerSchema = z.object({
|
|
5809
5715
|
/** Single URL or list of URLs (e.g. "turn:turn.example.com:3478?transport=udp"). */
|
|
5810
5716
|
urls: z.union([z.string(), z.array(z.string())]),
|
|
@@ -5827,48 +5733,6 @@ const turnProviderCapability = {
|
|
|
5827
5733
|
)
|
|
5828
5734
|
}
|
|
5829
5735
|
};
|
|
5830
|
-
const TurnProviderInfoSchema = z.object({
|
|
5831
|
-
/** Stable id matching the addon id. */
|
|
5832
|
-
addonId: z.string(),
|
|
5833
|
-
/** Display label shown on the admin row — sourced from the addon manifest. */
|
|
5834
|
-
displayName: z.string(),
|
|
5835
|
-
/** When false, the provider is registered but disabled. */
|
|
5836
|
-
enabled: z.boolean(),
|
|
5837
|
-
/** Number of servers this provider is currently exposing. */
|
|
5838
|
-
serverCount: z.number(),
|
|
5839
|
-
/**
|
|
5840
|
-
* Flat list of every TURN/STUN URL this provider currently exposes.
|
|
5841
|
-
* One row per URL (multi-URL ICE server entries are flattened). The
|
|
5842
|
-
* admin UI shows this in a compact per-provider list so operators
|
|
5843
|
-
* can verify what's actually being negotiated without having to dig
|
|
5844
|
-
* into the combined `getAllServers` output.
|
|
5845
|
-
*/
|
|
5846
|
-
urls: z.array(z.string()).readonly(),
|
|
5847
|
-
/** Last fetch error (when serverCount=0 due to API failure), if any. */
|
|
5848
|
-
error: z.string().optional()
|
|
5849
|
-
});
|
|
5850
|
-
const turnOrchestratorCapability = {
|
|
5851
|
-
name: "turn-orchestrator",
|
|
5852
|
-
scope: "system",
|
|
5853
|
-
mode: "singleton",
|
|
5854
|
-
methods: {
|
|
5855
|
-
/** All registered TURN providers + per-provider stats. */
|
|
5856
|
-
listProviders: method(z.void(), z.array(TurnProviderInfoSchema).readonly()),
|
|
5857
|
-
/**
|
|
5858
|
-
* Combined list of TURN/STUN servers from all ENABLED providers.
|
|
5859
|
-
* Consumed by the WebRTC layer at session-creation time —
|
|
5860
|
-
* implementations may fetch fresh short-lived credentials each
|
|
5861
|
-
* call (e.g. Cloudflare API), so consumers SHOULD call per-session.
|
|
5862
|
-
*/
|
|
5863
|
-
getAllServers: method(z.void(), z.array(TurnServerSchema).readonly()),
|
|
5864
|
-
/** Toggle a provider's enabled flag. */
|
|
5865
|
-
setProviderEnabled: method(
|
|
5866
|
-
z.object({ addonId: z.string(), enabled: z.boolean() }),
|
|
5867
|
-
z.object({ success: z.literal(true) }),
|
|
5868
|
-
{ kind: "mutation", auth: "admin" }
|
|
5869
|
-
)
|
|
5870
|
-
}
|
|
5871
|
-
};
|
|
5872
5736
|
const SnapshotImageSchema = z.object({
|
|
5873
5737
|
base64: z.string(),
|
|
5874
5738
|
contentType: z.string()
|
|
@@ -7464,7 +7328,7 @@ const localNetworkCapability = {
|
|
|
7464
7328
|
)
|
|
7465
7329
|
}
|
|
7466
7330
|
};
|
|
7467
|
-
const MeshEndpointSchema
|
|
7331
|
+
const MeshEndpointSchema = z.object({
|
|
7468
7332
|
/** Stable identifier within the provider (e.g. `mesh-ipv4`, `magicdns`, `funnel`). */
|
|
7469
7333
|
id: z.string(),
|
|
7470
7334
|
/** Operator-facing label (e.g. "Mesh IPv4", "MagicDNS"). */
|
|
@@ -7537,7 +7401,7 @@ const MeshStatusSchema = z.object({
|
|
|
7537
7401
|
/** Number of peers visible to this host (excluding self). */
|
|
7538
7402
|
peerCount: z.number(),
|
|
7539
7403
|
/** Every endpoint this provider exposes for the current host. */
|
|
7540
|
-
endpoints: z.array(MeshEndpointSchema
|
|
7404
|
+
endpoints: z.array(MeshEndpointSchema).readonly(),
|
|
7541
7405
|
/** Last error from the daemon, when not joined. */
|
|
7542
7406
|
error: z.string().optional(),
|
|
7543
7407
|
// ── Account / tenant identity (generic across providers) ────────
|
|
@@ -7704,108 +7568,6 @@ const meshNetworkCapability = {
|
|
|
7704
7568
|
// tabs driven by this cap.
|
|
7705
7569
|
}
|
|
7706
7570
|
};
|
|
7707
|
-
const MeshEndpointSchema = z.object({
|
|
7708
|
-
id: z.string(),
|
|
7709
|
-
label: z.string(),
|
|
7710
|
-
scope: z.enum(["mesh", "public"]),
|
|
7711
|
-
url: z.string(),
|
|
7712
|
-
hostname: z.string(),
|
|
7713
|
-
port: z.number(),
|
|
7714
|
-
protocol: z.enum(["http", "https"])
|
|
7715
|
-
});
|
|
7716
|
-
const MeshProviderInfoSchema = z.object({
|
|
7717
|
-
/** Stable id matching the addon id. */
|
|
7718
|
-
addonId: z.string(),
|
|
7719
|
-
/** Display label shown on the admin row — sourced from the addon manifest. */
|
|
7720
|
-
displayName: z.string(),
|
|
7721
|
-
/** True when the host is joined to this provider's mesh. */
|
|
7722
|
-
joined: z.boolean(),
|
|
7723
|
-
/** Local mesh IP (empty when not joined). */
|
|
7724
|
-
meshIp: z.string(),
|
|
7725
|
-
/** MagicDNS / mesh hostname (empty when not configured). */
|
|
7726
|
-
magicDnsHostname: z.string(),
|
|
7727
|
-
/** Peer count (excluding self). */
|
|
7728
|
-
peerCount: z.number(),
|
|
7729
|
-
/** Active endpoints (mesh IP + MagicDNS + optional public Funnel). */
|
|
7730
|
-
endpoints: z.array(MeshEndpointSchema).readonly(),
|
|
7731
|
-
/** Last error reported by the provider. */
|
|
7732
|
-
error: z.string().optional(),
|
|
7733
|
-
// ── Generic identity fields mirrored from MeshStatus ─────────────
|
|
7734
|
-
/** Tenant / tailnet / network display name. Empty pre-join. */
|
|
7735
|
-
tenantName: z.string(),
|
|
7736
|
-
/** Mesh DNS suffix (e.g. tailXXXX.ts.net). Empty when not configured. */
|
|
7737
|
-
magicDnsSuffix: z.string(),
|
|
7738
|
-
/** Authenticated user / account login. Null for token-only providers. */
|
|
7739
|
-
userLogin: z.string().nullable(),
|
|
7740
|
-
/** Provider control-plane URL. */
|
|
7741
|
-
controlPlaneUrl: z.string(),
|
|
7742
|
-
/** Machine-key expiry (epoch ms). Null when keys don't rotate. */
|
|
7743
|
-
keyExpiry: z.number().nullable()
|
|
7744
|
-
});
|
|
7745
|
-
const meshOrchestratorCapability = {
|
|
7746
|
-
name: "mesh-orchestrator",
|
|
7747
|
-
scope: "system",
|
|
7748
|
-
mode: "singleton",
|
|
7749
|
-
methods: {
|
|
7750
|
-
/** All registered mesh-network providers + live status. */
|
|
7751
|
-
listProviders: method(z.void(), z.array(MeshProviderInfoSchema).readonly()),
|
|
7752
|
-
/**
|
|
7753
|
-
* Join the mesh of a specific provider. Per-provider config still
|
|
7754
|
-
* lives on its settings panel; the orchestrator forwards.
|
|
7755
|
-
*/
|
|
7756
|
-
joinProvider: method(
|
|
7757
|
-
z.object({
|
|
7758
|
-
addonId: z.string(),
|
|
7759
|
-
authKey: z.string().min(8),
|
|
7760
|
-
hostname: z.string().optional()
|
|
7761
|
-
}),
|
|
7762
|
-
z.object({ joined: z.literal(true) }),
|
|
7763
|
-
{ kind: "mutation" }
|
|
7764
|
-
),
|
|
7765
|
-
leaveProvider: method(
|
|
7766
|
-
z.object({ addonId: z.string() }),
|
|
7767
|
-
z.object({ success: z.literal(true) }),
|
|
7768
|
-
{ kind: "mutation" }
|
|
7769
|
-
),
|
|
7770
|
-
/**
|
|
7771
|
-
* Browser-redirect login flow. Forwards to the named provider's
|
|
7772
|
-
* `mesh-network.startLogin` and returns the URL the daemon
|
|
7773
|
-
* prints. UI opens it in a new tab, then polls `listProviders`
|
|
7774
|
-
* for `joined: true`.
|
|
7775
|
-
*/
|
|
7776
|
-
startLoginProvider: method(
|
|
7777
|
-
z.object({
|
|
7778
|
-
addonId: z.string(),
|
|
7779
|
-
hostname: z.string().optional()
|
|
7780
|
-
}),
|
|
7781
|
-
z.object({ loginUrl: z.string() }),
|
|
7782
|
-
{ kind: "mutation" }
|
|
7783
|
-
),
|
|
7784
|
-
/**
|
|
7785
|
-
* Sign out of the provider's account entirely (`mesh-network.logout`).
|
|
7786
|
-
* Distinct from `leaveProvider` which only takes the host off-mesh;
|
|
7787
|
-
* `logoutProvider` wipes credentials so the next start requires a
|
|
7788
|
-
* fresh login.
|
|
7789
|
-
*/
|
|
7790
|
-
logoutProvider: method(
|
|
7791
|
-
z.object({ addonId: z.string() }),
|
|
7792
|
-
z.object({ loggedOut: z.literal(true) }),
|
|
7793
|
-
{ kind: "mutation" }
|
|
7794
|
-
),
|
|
7795
|
-
/**
|
|
7796
|
-
* Per-provider peer list. Forwards to `mesh-network.listPeers` on
|
|
7797
|
-
* the addressed provider. Separate from `listProviders` because
|
|
7798
|
-
* peer payloads can be large on a heavily-populated tailnet —
|
|
7799
|
-
* fetch only when the operator opens the Peers tab.
|
|
7800
|
-
*/
|
|
7801
|
-
listProviderPeers: method(
|
|
7802
|
-
z.object({ addonId: z.string() }),
|
|
7803
|
-
z.object({
|
|
7804
|
-
peers: z.array(MeshPeerSchema).readonly()
|
|
7805
|
-
})
|
|
7806
|
-
)
|
|
7807
|
-
}
|
|
7808
|
-
};
|
|
7809
7571
|
const MethodAccessSchema = z.enum(["view", "create", "delete"]);
|
|
7810
7572
|
const AllowedProviderSchema = z.union([z.literal("*"), z.array(z.string())]);
|
|
7811
7573
|
const AllowedDevicesSchema = z.record(z.string(), z.union([z.literal("*"), z.array(z.string())]));
|
|
@@ -8698,6 +8460,29 @@ const addonsCapability = {
|
|
|
8698
8460
|
isActive: z.boolean()
|
|
8699
8461
|
})).readonly()
|
|
8700
8462
|
),
|
|
8463
|
+
/**
|
|
8464
|
+
* Toggle a single collection-cap provider on/off. Generic write-side
|
|
8465
|
+
* counterpart of `listCapabilityProviders` — drives the per-provider
|
|
8466
|
+
* Enable/Disable affordance in admin pages (TURN servers, etc.)
|
|
8467
|
+
* without needing a bespoke orchestrator cap.
|
|
8468
|
+
*
|
|
8469
|
+
* Reaches the hub's `CapabilityRegistry` directly:
|
|
8470
|
+
* `enableCollectionProvider` / `disableCollectionProvider` flip the
|
|
8471
|
+
* registry-level `disabledProviders` set. `getCollectionEntries`
|
|
8472
|
+
* already filters disabled providers out, so a disabled provider
|
|
8473
|
+
* drops out of every collection aggregate immediately. Only valid
|
|
8474
|
+
* for `mode: 'collection'` caps — the registry no-ops + warns for
|
|
8475
|
+
* singletons.
|
|
8476
|
+
*/
|
|
8477
|
+
setCapabilityProviderEnabled: method(
|
|
8478
|
+
z.object({
|
|
8479
|
+
capName: z.string().min(1),
|
|
8480
|
+
addonId: z.string().min(1),
|
|
8481
|
+
enabled: z.boolean()
|
|
8482
|
+
}),
|
|
8483
|
+
z.object({ success: z.literal(true) }),
|
|
8484
|
+
{ kind: "mutation", auth: "admin" }
|
|
8485
|
+
),
|
|
8701
8486
|
/**
|
|
8702
8487
|
* Live-update one of the framework packages marked
|
|
8703
8488
|
* `camstack.system: true` (`@camstack/types|kernel|core|sdk|ui-library`).
|
|
@@ -8800,7 +8585,7 @@ const PIPELINE_OWNER_CAPABILITY_NAMES = [
|
|
|
8800
8585
|
"pipeline-runner"
|
|
8801
8586
|
];
|
|
8802
8587
|
export {
|
|
8803
|
-
|
|
8588
|
+
networkQualityCapability as $,
|
|
8804
8589
|
adminUiCapability as A,
|
|
8805
8590
|
advancedNotifierCapability as B,
|
|
8806
8591
|
alertsCapability as C,
|
|
@@ -8808,339 +8593,333 @@ export {
|
|
|
8808
8593
|
audioAnalyzerCapability as E,
|
|
8809
8594
|
audioCodecCapability as F,
|
|
8810
8595
|
authProviderCapability as G,
|
|
8811
|
-
|
|
8812
|
-
|
|
8813
|
-
|
|
8814
|
-
|
|
8815
|
-
|
|
8816
|
-
|
|
8817
|
-
|
|
8818
|
-
|
|
8819
|
-
|
|
8820
|
-
|
|
8821
|
-
|
|
8822
|
-
|
|
8823
|
-
|
|
8824
|
-
|
|
8825
|
-
|
|
8826
|
-
|
|
8827
|
-
|
|
8828
|
-
|
|
8829
|
-
|
|
8830
|
-
|
|
8596
|
+
backupCapability as H,
|
|
8597
|
+
cameraCredentialsCapability as I,
|
|
8598
|
+
decoderCapability as J,
|
|
8599
|
+
detectionPipelineCapability as K,
|
|
8600
|
+
deviceExportCapability as L,
|
|
8601
|
+
deviceManagerCapability as M,
|
|
8602
|
+
deviceOpsCapability as N,
|
|
8603
|
+
deviceStateCapability as O,
|
|
8604
|
+
embeddingEncoderCapability as P,
|
|
8605
|
+
eventsCapability as Q,
|
|
8606
|
+
integrationsCapability as R,
|
|
8607
|
+
intercomCapability as S,
|
|
8608
|
+
localNetworkCapability as T,
|
|
8609
|
+
logDestinationCapability as U,
|
|
8610
|
+
meshNetworkCapability as V,
|
|
8611
|
+
metricsProviderCapability as W,
|
|
8612
|
+
motionDetectionCapability as X,
|
|
8613
|
+
mqttBrokerCapability as Y,
|
|
8614
|
+
nativeObjectDetectionCapability as Z,
|
|
8615
|
+
networkAccessCapability as _,
|
|
8831
8616
|
zoneRulesCapability as a,
|
|
8832
|
-
|
|
8833
|
-
|
|
8834
|
-
|
|
8835
|
-
|
|
8836
|
-
|
|
8837
|
-
|
|
8838
|
-
|
|
8839
|
-
|
|
8840
|
-
|
|
8841
|
-
|
|
8842
|
-
|
|
8843
|
-
|
|
8844
|
-
|
|
8845
|
-
|
|
8846
|
-
|
|
8847
|
-
|
|
8848
|
-
|
|
8849
|
-
|
|
8850
|
-
|
|
8851
|
-
|
|
8852
|
-
|
|
8853
|
-
|
|
8854
|
-
|
|
8855
|
-
|
|
8856
|
-
|
|
8857
|
-
|
|
8858
|
-
|
|
8859
|
-
|
|
8860
|
-
|
|
8861
|
-
|
|
8862
|
-
|
|
8863
|
-
|
|
8864
|
-
|
|
8865
|
-
|
|
8866
|
-
|
|
8867
|
-
|
|
8868
|
-
|
|
8869
|
-
|
|
8870
|
-
|
|
8871
|
-
|
|
8872
|
-
|
|
8873
|
-
|
|
8874
|
-
|
|
8875
|
-
|
|
8876
|
-
|
|
8877
|
-
|
|
8878
|
-
|
|
8879
|
-
|
|
8880
|
-
|
|
8881
|
-
|
|
8882
|
-
|
|
8883
|
-
|
|
8884
|
-
|
|
8885
|
-
|
|
8886
|
-
|
|
8887
|
-
|
|
8888
|
-
|
|
8889
|
-
|
|
8890
|
-
|
|
8891
|
-
|
|
8892
|
-
|
|
8893
|
-
|
|
8894
|
-
|
|
8895
|
-
|
|
8617
|
+
AudioMetricsSnapshotSchema as a$,
|
|
8618
|
+
nodesCapability as a0,
|
|
8619
|
+
notificationOutputCapability as a1,
|
|
8620
|
+
osdCapability as a2,
|
|
8621
|
+
pipelineAnalyticsCapability as a3,
|
|
8622
|
+
pipelineExecutorCapability as a4,
|
|
8623
|
+
pipelineOrchestratorCapability as a5,
|
|
8624
|
+
pipelineRunnerCapability as a6,
|
|
8625
|
+
platformProbeCapability as a7,
|
|
8626
|
+
ptzCapability as a8,
|
|
8627
|
+
rebootCapability as a9,
|
|
8628
|
+
AddonAutoUpdateSchema as aA,
|
|
8629
|
+
AddonListItemSchema as aB,
|
|
8630
|
+
AddonPageDeclarationSchema as aC,
|
|
8631
|
+
AddonPageInfoSchema as aD,
|
|
8632
|
+
AgentLoadSummarySchema as aE,
|
|
8633
|
+
AlertSchema as aF,
|
|
8634
|
+
AlertSeveritySchema as aG,
|
|
8635
|
+
AlertSourceSchema as aH,
|
|
8636
|
+
AlertStatusSchema as aI,
|
|
8637
|
+
ApiKeyRecordSchema as aJ,
|
|
8638
|
+
ApiKeySummarySchema as aK,
|
|
8639
|
+
ArchiveEntrySchema as aL,
|
|
8640
|
+
ArchiveManifestSchema as aM,
|
|
8641
|
+
AudioAnalysisResultSchema as aN,
|
|
8642
|
+
AudioAnalysisSettingsSchema as aO,
|
|
8643
|
+
AudioChunkInputSchema as aP,
|
|
8644
|
+
AudioClassSummarySchema as aQ,
|
|
8645
|
+
AudioClassificationLabelSchema as aR,
|
|
8646
|
+
AudioClassificationResultSchema as aS,
|
|
8647
|
+
AudioCodecInfoSchema as aT,
|
|
8648
|
+
AudioDecodeSessionConfigSchema as aU,
|
|
8649
|
+
AudioEncodeSessionConfigSchema as aV,
|
|
8650
|
+
AudioEncodedChunkSchema as aW,
|
|
8651
|
+
AudioEventSchema as aX,
|
|
8652
|
+
AudioLevelSchema as aY,
|
|
8653
|
+
AudioMetricsHistoryPointSchema as aZ,
|
|
8654
|
+
AudioMetricsHistorySchema as a_,
|
|
8655
|
+
recordingCapability as aa,
|
|
8656
|
+
recordingEngineCapability as ab,
|
|
8657
|
+
restreamerCapability as ac,
|
|
8658
|
+
settingsStoreCapability as ad,
|
|
8659
|
+
smtpProviderCapability as ae,
|
|
8660
|
+
snapshotCapability as af,
|
|
8661
|
+
snapshotProviderCapability as ag,
|
|
8662
|
+
ssoBridgeCapability as ah,
|
|
8663
|
+
storageCapability as ai,
|
|
8664
|
+
storageProviderCapability as aj,
|
|
8665
|
+
streamBrokerCapability as ak,
|
|
8666
|
+
streamingEngineCapability as al,
|
|
8667
|
+
systemCapability as am,
|
|
8668
|
+
toastCapability as an,
|
|
8669
|
+
turnProviderCapability as ao,
|
|
8670
|
+
userManagementCapability as ap,
|
|
8671
|
+
userPasskeysCapability as aq,
|
|
8672
|
+
webrtcCapability as ar,
|
|
8673
|
+
webrtcSessionCapability as as,
|
|
8674
|
+
ACCESSORY_LABEL as at,
|
|
8675
|
+
APPLE_SA_TO_MACRO as au,
|
|
8676
|
+
AUDIO_BACKEND_CHOICES as av,
|
|
8677
|
+
AUDIO_MACRO_LABELS as aw,
|
|
8678
|
+
AccessoriesStatusSchema as ax,
|
|
8679
|
+
AccessoryKind as ay,
|
|
8680
|
+
AddBrokerInputSchema as az,
|
|
8896
8681
|
zoneAnalyticsCapability as b,
|
|
8897
|
-
|
|
8898
|
-
|
|
8899
|
-
|
|
8900
|
-
|
|
8901
|
-
|
|
8902
|
-
|
|
8903
|
-
|
|
8904
|
-
|
|
8905
|
-
|
|
8906
|
-
|
|
8907
|
-
|
|
8908
|
-
|
|
8909
|
-
|
|
8910
|
-
|
|
8911
|
-
|
|
8912
|
-
|
|
8913
|
-
|
|
8914
|
-
|
|
8915
|
-
|
|
8916
|
-
|
|
8917
|
-
|
|
8918
|
-
|
|
8919
|
-
|
|
8920
|
-
|
|
8921
|
-
|
|
8922
|
-
|
|
8923
|
-
|
|
8924
|
-
|
|
8925
|
-
|
|
8926
|
-
|
|
8927
|
-
|
|
8928
|
-
|
|
8929
|
-
|
|
8930
|
-
|
|
8931
|
-
|
|
8932
|
-
|
|
8933
|
-
|
|
8934
|
-
|
|
8935
|
-
|
|
8936
|
-
|
|
8937
|
-
|
|
8938
|
-
|
|
8939
|
-
|
|
8940
|
-
|
|
8941
|
-
|
|
8942
|
-
|
|
8943
|
-
|
|
8944
|
-
|
|
8945
|
-
|
|
8946
|
-
|
|
8947
|
-
|
|
8948
|
-
|
|
8949
|
-
|
|
8950
|
-
|
|
8951
|
-
|
|
8952
|
-
|
|
8953
|
-
|
|
8954
|
-
|
|
8955
|
-
|
|
8956
|
-
|
|
8957
|
-
|
|
8958
|
-
|
|
8959
|
-
|
|
8960
|
-
|
|
8682
|
+
DeviceRole as b$,
|
|
8683
|
+
AudioPcmChunkSchema as b0,
|
|
8684
|
+
AuthResultSchema as b1,
|
|
8685
|
+
AutoUpdateSettingsSchema as b2,
|
|
8686
|
+
AvailableIntegrationTypeSchema as b3,
|
|
8687
|
+
BATTERY_DEVICE_PROFILE as b4,
|
|
8688
|
+
BackupDestinationInfoSchema as b5,
|
|
8689
|
+
BackupEntrySchema as b6,
|
|
8690
|
+
BatteryStatusSchema as b7,
|
|
8691
|
+
BoundingBoxSchema as b8,
|
|
8692
|
+
BrightnessStatusSchema as b9,
|
|
8693
|
+
ConfigSectionWithValuesSchema as bA,
|
|
8694
|
+
ConfigTabDeclarationSchema as bB,
|
|
8695
|
+
CreateApiKeyInputSchema as bC,
|
|
8696
|
+
CreateApiKeyResultSchema as bD,
|
|
8697
|
+
CreateIntegrationInputSchema as bE,
|
|
8698
|
+
CreateScopedTokenInputSchema as bF,
|
|
8699
|
+
CreateScopedTokenResultSchema as bG,
|
|
8700
|
+
CreateUserInputSchema as bH,
|
|
8701
|
+
CustomActionInputSchema as bI,
|
|
8702
|
+
DEFAULT_AUDIO_ANALYZER_CONFIG as bJ,
|
|
8703
|
+
DEFAULT_DECODER_HWACCEL_CONFIG as bK,
|
|
8704
|
+
DEVICE_PROFILES as bL,
|
|
8705
|
+
DEVICE_SETTINGS_CONTRIBUTION_METHODS as bM,
|
|
8706
|
+
DEVICE_STATUS_METHOD as bN,
|
|
8707
|
+
DecodedFrameSchema as bO,
|
|
8708
|
+
DecoderAssignmentSchema as bP,
|
|
8709
|
+
DecoderSessionConfigSchema as bQ,
|
|
8710
|
+
DecoderStatsSchema as bR,
|
|
8711
|
+
DeleteIntegrationResultSchema as bS,
|
|
8712
|
+
DetectorOutputSchema as bT,
|
|
8713
|
+
DeviceDiscoveryStatusSchema as bU,
|
|
8714
|
+
ExposeInputSchema as bV,
|
|
8715
|
+
DeviceExportStatusSchema as bW,
|
|
8716
|
+
UnexposeInputSchema as bX,
|
|
8717
|
+
DeviceFeature as bY,
|
|
8718
|
+
DeviceInfoSchema as bZ,
|
|
8719
|
+
DeviceNetworkStatsSchema as b_,
|
|
8720
|
+
BrokerAudioClientSchema as ba,
|
|
8721
|
+
BrokerClientsSchema as bb,
|
|
8722
|
+
BrokerConnectionDetailsSchema as bc,
|
|
8723
|
+
BrokerDecodedClientSchema as bd,
|
|
8724
|
+
BrokerInfoSchema as be,
|
|
8725
|
+
BrokerRtspClientSchema as bf,
|
|
8726
|
+
BrokerStatsSchema as bg,
|
|
8727
|
+
BrokerStatusSchema$1 as bh,
|
|
8728
|
+
CAM_PROFILE_ORDER as bi,
|
|
8729
|
+
CamProfileSchema as bj,
|
|
8730
|
+
CamStreamKindSchema as bk,
|
|
8731
|
+
CamStreamResolutionSchema as bl,
|
|
8732
|
+
CameraCredentialsSchema as bm,
|
|
8733
|
+
CameraCredentialsStatusSchema as bn,
|
|
8734
|
+
CameraMetricsSchema as bo,
|
|
8735
|
+
CameraMetricsWithDeviceIdSchema as bp,
|
|
8736
|
+
CameraStreamSchema as bq,
|
|
8737
|
+
CapScopeSchema as br,
|
|
8738
|
+
CapabilityBindingsSchema as bs,
|
|
8739
|
+
ChargingStatus as bt,
|
|
8740
|
+
ClientNetworkStatsSchema as bu,
|
|
8741
|
+
ClusterAddonNodeDeploymentSchema as bv,
|
|
8742
|
+
ClusterAddonStatusEntrySchema as bw,
|
|
8743
|
+
CollectionColumnSchema as bx,
|
|
8744
|
+
CollectionIndexSchema as by,
|
|
8745
|
+
ConfigEntrySchema$1 as bz,
|
|
8961
8746
|
motionCapability as c,
|
|
8962
|
-
|
|
8963
|
-
|
|
8964
|
-
|
|
8965
|
-
|
|
8966
|
-
|
|
8967
|
-
|
|
8968
|
-
|
|
8969
|
-
|
|
8970
|
-
|
|
8971
|
-
|
|
8972
|
-
|
|
8973
|
-
|
|
8974
|
-
|
|
8975
|
-
|
|
8976
|
-
|
|
8977
|
-
|
|
8978
|
-
|
|
8979
|
-
|
|
8980
|
-
|
|
8981
|
-
|
|
8982
|
-
|
|
8983
|
-
|
|
8984
|
-
|
|
8985
|
-
|
|
8986
|
-
|
|
8987
|
-
|
|
8988
|
-
|
|
8989
|
-
|
|
8990
|
-
|
|
8991
|
-
|
|
8992
|
-
|
|
8993
|
-
|
|
8994
|
-
|
|
8995
|
-
|
|
8996
|
-
|
|
8997
|
-
|
|
8998
|
-
|
|
8999
|
-
|
|
9000
|
-
|
|
9001
|
-
|
|
9002
|
-
|
|
9003
|
-
|
|
9004
|
-
|
|
9005
|
-
|
|
9006
|
-
|
|
9007
|
-
|
|
9008
|
-
|
|
9009
|
-
|
|
9010
|
-
|
|
9011
|
-
|
|
9012
|
-
|
|
9013
|
-
|
|
9014
|
-
|
|
9015
|
-
|
|
9016
|
-
|
|
9017
|
-
|
|
9018
|
-
|
|
9019
|
-
|
|
9020
|
-
|
|
9021
|
-
|
|
9022
|
-
|
|
9023
|
-
|
|
9024
|
-
|
|
9025
|
-
|
|
8747
|
+
OsdOverlaySchema as c$,
|
|
8748
|
+
DeviceStatusSchema as c0,
|
|
8749
|
+
DeviceType as c1,
|
|
8750
|
+
DiscoveredChildDeviceSchema as c2,
|
|
8751
|
+
DiscoveredChildStatusSchema as c3,
|
|
8752
|
+
DiscoveredDeviceSchema as c4,
|
|
8753
|
+
DoorbellPressEventSchema as c5,
|
|
8754
|
+
DoorbellStatusSchema as c6,
|
|
8755
|
+
EmbeddingInfoSchema as c7,
|
|
8756
|
+
EmbeddingResultSchema as c8,
|
|
8757
|
+
EncodedPacketSchema as c9,
|
|
8758
|
+
MediaFileSchema as cA,
|
|
8759
|
+
MeshPeerSchema as cB,
|
|
8760
|
+
MeshStatusSchema as cC,
|
|
8761
|
+
MethodAccessSchema as cD,
|
|
8762
|
+
MotionAnalysisResultSchema as cE,
|
|
8763
|
+
MotionEventSchema as cF,
|
|
8764
|
+
MotionOnMotionChangedDataSchema as cG,
|
|
8765
|
+
MotionRegionSchema as cH,
|
|
8766
|
+
MotionSourceEnum as cI,
|
|
8767
|
+
MotionSourcesSchema as cJ,
|
|
8768
|
+
MotionStatusSchema as cK,
|
|
8769
|
+
MotionTriggerRuntimeStateSchema as cL,
|
|
8770
|
+
MotionTriggerStatusSchema as cM,
|
|
8771
|
+
StatusSchema as cN,
|
|
8772
|
+
NativeDetectionSchema as cO,
|
|
8773
|
+
NativeObjectClassEnum as cP,
|
|
8774
|
+
NativeObjectDetectionStatusSchema as cQ,
|
|
8775
|
+
NetworkAccessStatusSchema as cR,
|
|
8776
|
+
NetworkAddressSchema as cS,
|
|
8777
|
+
NetworkEndpointSchema as cT,
|
|
8778
|
+
NotificationHistoryEntrySchema as cU,
|
|
8779
|
+
NotificationRuleSchema as cV,
|
|
8780
|
+
NotificationSchema as cW,
|
|
8781
|
+
ObjectEventSchema as cX,
|
|
8782
|
+
OrchestratorMetricsSchema as cY,
|
|
8783
|
+
OsdOverlayKindEnum as cZ,
|
|
8784
|
+
OsdOverlayPatchSchema as c_,
|
|
8785
|
+
EnrichedWidgetMetadataSchema as ca,
|
|
8786
|
+
EventItemSchema as cb,
|
|
8787
|
+
EventKindSchema as cc,
|
|
8788
|
+
ExportSetupFieldSchema as cd,
|
|
8789
|
+
ExportSetupSchema as ce,
|
|
8790
|
+
ExposedDeviceSchema as cf,
|
|
8791
|
+
ExposedResourceSchema as cg,
|
|
8792
|
+
FeatureManifestSchema as ch,
|
|
8793
|
+
FeatureProbeStatusSchema as ci,
|
|
8794
|
+
FrameInputSchema as cj,
|
|
8795
|
+
GetStreamWithCodecInputSchema as ck,
|
|
8796
|
+
GlobalMetricsSchema as cl,
|
|
8797
|
+
HWACCEL_OPTIONS as cm,
|
|
8798
|
+
HealthStatusSchema as cn,
|
|
8799
|
+
HistoryPointSchema as co,
|
|
8800
|
+
HistoryResolutionEnum as cp,
|
|
8801
|
+
InstalledPackageSchema as cq,
|
|
8802
|
+
IntegrationLiteSchema as cr,
|
|
8803
|
+
IntegrationWithStateSchema as cs,
|
|
8804
|
+
IntercomAbilitySchema as ct,
|
|
8805
|
+
IntercomStatusSchema as cu,
|
|
8806
|
+
LocationStatSchema as cv,
|
|
8807
|
+
LogEntrySchema as cw,
|
|
8808
|
+
LogLevelSchema$1 as cx,
|
|
8809
|
+
LogStreamEntrySchema as cy,
|
|
8810
|
+
MODEL_FORMATS as cz,
|
|
9026
8811
|
doorbellCapability as d,
|
|
9027
|
-
|
|
9028
|
-
|
|
9029
|
-
|
|
9030
|
-
|
|
9031
|
-
|
|
9032
|
-
|
|
9033
|
-
|
|
9034
|
-
|
|
9035
|
-
|
|
9036
|
-
|
|
9037
|
-
|
|
9038
|
-
|
|
9039
|
-
|
|
9040
|
-
|
|
9041
|
-
|
|
9042
|
-
|
|
9043
|
-
|
|
9044
|
-
|
|
9045
|
-
|
|
9046
|
-
|
|
9047
|
-
|
|
9048
|
-
|
|
9049
|
-
|
|
9050
|
-
|
|
9051
|
-
|
|
9052
|
-
|
|
9053
|
-
|
|
9054
|
-
|
|
9055
|
-
|
|
9056
|
-
|
|
9057
|
-
|
|
9058
|
-
|
|
9059
|
-
|
|
9060
|
-
|
|
9061
|
-
|
|
9062
|
-
|
|
9063
|
-
|
|
9064
|
-
|
|
9065
|
-
|
|
9066
|
-
|
|
9067
|
-
|
|
9068
|
-
|
|
9069
|
-
|
|
9070
|
-
|
|
9071
|
-
|
|
9072
|
-
|
|
9073
|
-
|
|
9074
|
-
|
|
9075
|
-
|
|
9076
|
-
|
|
9077
|
-
|
|
9078
|
-
|
|
9079
|
-
|
|
9080
|
-
|
|
9081
|
-
|
|
9082
|
-
|
|
9083
|
-
|
|
9084
|
-
|
|
9085
|
-
|
|
9086
|
-
|
|
9087
|
-
|
|
9088
|
-
|
|
9089
|
-
|
|
8812
|
+
ReadChunkInputSchema as d$,
|
|
8813
|
+
OsdPositionEnum as d0,
|
|
8814
|
+
OsdStatusSchema as d1,
|
|
8815
|
+
PIPELINE_FLOW_CAPABILITY_NAMES as d2,
|
|
8816
|
+
PIPELINE_OWNER_CAPABILITY_NAMES as d3,
|
|
8817
|
+
PackageUpdateSchema as d4,
|
|
8818
|
+
PackageVersionInfoSchema as d5,
|
|
8819
|
+
PasskeySummarySchema as d6,
|
|
8820
|
+
PcmSampleFormatSchema as d7,
|
|
8821
|
+
PerScopeBreakdownSchema as d8,
|
|
8822
|
+
PipelineAssignmentSchema as d9,
|
|
8823
|
+
STORAGE_LOCATION_CARDINALITY as dA,
|
|
8824
|
+
ScopedTokenSchema as dB,
|
|
8825
|
+
ScopedTokenSummarySchema as dC,
|
|
8826
|
+
SearchResultSchema as dD,
|
|
8827
|
+
SegmentSchema as dE,
|
|
8828
|
+
SendEmailInputSchema as dF,
|
|
8829
|
+
SendEmailResultSchema as dG,
|
|
8830
|
+
SettingsPatchSchema as dH,
|
|
8831
|
+
SettingsRecordSchema as dI,
|
|
8832
|
+
SettingsSchemaWithValuesSchema as dJ,
|
|
8833
|
+
SettingsUpdateResultSchema as dK,
|
|
8834
|
+
SmtpStatusSchema as dL,
|
|
8835
|
+
SnapshotImageSchema as dM,
|
|
8836
|
+
SpatialDetectionSchema as dN,
|
|
8837
|
+
SsoBridgeClaimsSchema as dO,
|
|
8838
|
+
StartEmbeddedInputSchema as dP,
|
|
8839
|
+
AbortUploadInputSchema as dQ,
|
|
8840
|
+
BeginDownloadInputSchema as dR,
|
|
8841
|
+
BeginDownloadResultSchema as dS,
|
|
8842
|
+
BeginUploadInputSchema as dT,
|
|
8843
|
+
BeginUploadResultSchema as dU,
|
|
8844
|
+
EndDownloadInputSchema as dV,
|
|
8845
|
+
FinalizeUploadInputSchema as dW,
|
|
8846
|
+
StorageLocationRefSchema as dX,
|
|
8847
|
+
StorageLocationSchema as dY,
|
|
8848
|
+
StorageLocationTypeSchema as dZ,
|
|
8849
|
+
ProviderInfoSchema as d_,
|
|
8850
|
+
PipelineDefaultStepSchema as da,
|
|
8851
|
+
PipelineEngineChoiceSchema as db,
|
|
8852
|
+
PipelineRunResultBridge as dc,
|
|
8853
|
+
PipelineStepInputSchema as dd,
|
|
8854
|
+
PlaceholderReasonSchema as de,
|
|
8855
|
+
PolygonPointSchema as df,
|
|
8856
|
+
ProfileSlotSchema as dg,
|
|
8857
|
+
ProfileSlotStatusSchema as dh,
|
|
8858
|
+
ProviderStatusSchema as di,
|
|
8859
|
+
PtzAutotrackRuntimeStateSchema as dj,
|
|
8860
|
+
PtzAutotrackSettingsSchema as dk,
|
|
8861
|
+
PtzAutotrackStatusSchema as dl,
|
|
8862
|
+
PtzAutotrackTargetOptionSchema as dm,
|
|
8863
|
+
PtzMoveCommandSchema as dn,
|
|
8864
|
+
PtzPositionSchema as dp,
|
|
8865
|
+
PtzPresetSchema as dq,
|
|
8866
|
+
QueryFilterSchema as dr,
|
|
8867
|
+
RegisteredStreamSchema as ds,
|
|
8868
|
+
ReportMotionInputSchema as dt,
|
|
8869
|
+
RtpSourceSchema as du,
|
|
8870
|
+
RtspRestreamEntrySchema as dv,
|
|
8871
|
+
RunnerCameraConfigSchema as dw,
|
|
8872
|
+
RunnerCameraDeviceUIFields as dx,
|
|
8873
|
+
RunnerLocalLoadSchema as dy,
|
|
8874
|
+
RunnerLocalMetricsSchema as dz,
|
|
9090
8875
|
errMsg as e,
|
|
9091
|
-
|
|
9092
|
-
|
|
9093
|
-
|
|
9094
|
-
|
|
9095
|
-
|
|
9096
|
-
|
|
9097
|
-
|
|
9098
|
-
|
|
9099
|
-
|
|
9100
|
-
|
|
9101
|
-
|
|
9102
|
-
|
|
9103
|
-
|
|
9104
|
-
|
|
9105
|
-
|
|
9106
|
-
|
|
9107
|
-
|
|
9108
|
-
|
|
9109
|
-
|
|
9110
|
-
|
|
9111
|
-
|
|
9112
|
-
|
|
9113
|
-
|
|
9114
|
-
|
|
9115
|
-
|
|
9116
|
-
|
|
9117
|
-
|
|
9118
|
-
|
|
9119
|
-
|
|
9120
|
-
|
|
9121
|
-
|
|
9122
|
-
|
|
9123
|
-
|
|
9124
|
-
|
|
9125
|
-
|
|
9126
|
-
|
|
9127
|
-
|
|
9128
|
-
|
|
9129
|
-
|
|
9130
|
-
|
|
9131
|
-
|
|
9132
|
-
|
|
9133
|
-
|
|
9134
|
-
|
|
9135
|
-
|
|
9136
|
-
|
|
9137
|
-
|
|
9138
|
-
WELL_KNOWN_TAB_MAP as eu,
|
|
9139
|
-
WebrtcStreamChoiceSchema as ev,
|
|
9140
|
-
WebrtcStreamTargetSchema as ew,
|
|
9141
|
-
WidgetHostEnum as ex,
|
|
9142
|
-
WidgetMetadataSchema as ey,
|
|
9143
|
-
WidgetSizeEnum as ez,
|
|
8876
|
+
TestLocationResultSchema as e0,
|
|
8877
|
+
WriteChunkInputSchema as e1,
|
|
8878
|
+
StreamFormatSchema as e2,
|
|
8879
|
+
StreamInfoSchema as e3,
|
|
8880
|
+
StreamNetworkStatsSchema as e4,
|
|
8881
|
+
StreamSourceEntrySchema$1 as e5,
|
|
8882
|
+
StreamSourceSchema as e6,
|
|
8883
|
+
SwitchStatusSchema as e7,
|
|
8884
|
+
SystemMetricsSchema as e8,
|
|
8885
|
+
TestConnectionResultSchema as e9,
|
|
8886
|
+
ZoneSchema as eA,
|
|
8887
|
+
ZoneScopeBreakdownSchema as eB,
|
|
8888
|
+
accessoryStableId as eC,
|
|
8889
|
+
deviceMatchesProfile as eD,
|
|
8890
|
+
event as eE,
|
|
8891
|
+
expandCapMethods as eF,
|
|
8892
|
+
getAudioMacroClassIds as eG,
|
|
8893
|
+
mapAudioLabelToMacro as eH,
|
|
8894
|
+
method as eI,
|
|
8895
|
+
resolveDeviceProfile as eJ,
|
|
8896
|
+
webrtcClientHintsSchema as eK,
|
|
8897
|
+
ToastSchema as ea,
|
|
8898
|
+
TokenScopeSchema as eb,
|
|
8899
|
+
TopologyNodeSchema as ec,
|
|
8900
|
+
TopologyProcessSchema as ed,
|
|
8901
|
+
TopologyServiceSchema as ee,
|
|
8902
|
+
TrackSchema as ef,
|
|
8903
|
+
TrackStateSchema as eg,
|
|
8904
|
+
TrackedDetectionSchema as eh,
|
|
8905
|
+
TurnServerSchema as ei,
|
|
8906
|
+
UpdateIntegrationInputSchema as ej,
|
|
8907
|
+
UpdateUserInputSchema as ek,
|
|
8908
|
+
UserRecordSchema as el,
|
|
8909
|
+
UserSummarySchema as em,
|
|
8910
|
+
WELL_KNOWN_TABS as en,
|
|
8911
|
+
WELL_KNOWN_TAB_MAP as eo,
|
|
8912
|
+
WebrtcStreamChoiceSchema as ep,
|
|
8913
|
+
WebrtcStreamTargetSchema as eq,
|
|
8914
|
+
WidgetHostEnum as er,
|
|
8915
|
+
WidgetMetadataSchema as es,
|
|
8916
|
+
WidgetSizeEnum as et,
|
|
8917
|
+
YAMNET_TO_MACRO as eu,
|
|
8918
|
+
ZoneKindEnum as ev,
|
|
8919
|
+
ZoneRuleModeEnum as ew,
|
|
8920
|
+
ZoneRuleSchema as ex,
|
|
8921
|
+
ZoneRuleStageEnum as ey,
|
|
8922
|
+
ZoneRulesArraySchema as ez,
|
|
9144
8923
|
featureProbeCapability as f,
|
|
9145
8924
|
deviceStatusCapability as g,
|
|
9146
8925
|
hydrateSchema as h,
|
|
@@ -9163,4 +8942,4 @@ export {
|
|
|
9163
8942
|
addonsCapability as y,
|
|
9164
8943
|
zonesCapability as z
|
|
9165
8944
|
};
|
|
9166
|
-
//# sourceMappingURL=index-
|
|
8945
|
+
//# sourceMappingURL=index-CWhQOnm9.mjs.map
|