@camstack/addon-pipeline-orchestrator 1.2.19 → 1.2.20
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/assets/viewer/.viewer-version +1 -1
- package/assets/viewer/_expo/static/js/web/{index-828e970048ddd656c522e4d3464f529b.js → index-223a4ccab3b72180f131345985c4faa3.js} +23 -23
- package/assets/viewer/index.html +2 -2
- package/assets/viewer/manifest.json +1 -1
- package/dist/_stub.js +203 -203
- package/dist/{_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-BFHkpm_S.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-B8aSpSuW.mjs} +2 -2
- package/dist/_virtual_mf___mfe_internal__addon_pipeline_orchestrator_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-BZaZ-Hv7.mjs +26 -0
- package/dist/{_virtual_mf___mfe_internal__addon_pipeline_orchestrator_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-BtNndoLO.mjs → _virtual_mf___mfe_internal__addon_pipeline_orchestrator_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-sgTNGmJ3.mjs} +2 -2
- package/dist/{hostInit-C7gaLg0N.mjs → hostInit-DHnfh4gP.mjs} +2 -2
- package/dist/index.js +236 -6
- package/dist/index.mjs +236 -6
- package/dist/remoteEntry.js +1 -1
- package/package.json +1 -1
- package/dist/_virtual_mf___mfe_internal__addon_pipeline_orchestrator_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-BkBC1i4O.mjs +0 -26
package/dist/index.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import fs from "node:fs";
|
|
2
2
|
import path from "node:path";
|
|
3
3
|
import { fileURLToPath } from "node:url";
|
|
4
|
-
//#region ../types/dist/event-category-
|
|
4
|
+
//#region ../types/dist/event-category-41fKf-q9.mjs
|
|
5
5
|
var EventCategory = /* @__PURE__ */ function(EventCategory) {
|
|
6
6
|
EventCategory["SystemBoot"] = "system.boot";
|
|
7
7
|
EventCategory["SystemAddonsReady"] = "system.addons-ready";
|
|
@@ -61,6 +61,26 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
|
|
|
61
61
|
*/
|
|
62
62
|
EventCategory["AddonRetryScheduled"] = "addon.retry-scheduled";
|
|
63
63
|
/**
|
|
64
|
+
* A liveness invariant of this node is false — it has no devices, every
|
|
65
|
+
* camera is offline, or a camera that was recording has stopped producing
|
|
66
|
+
* segments. Emitted by the `liveness-monitor` builtin, once per fault (the
|
|
67
|
+
* `findingId` is stable across ticks), only after its boot grace period.
|
|
68
|
+
* AlertCenter raises a persistent operator-visible alert.
|
|
69
|
+
*
|
|
70
|
+
* It exists because on 2026-08-03 the hub ran four hours with zero devices
|
|
71
|
+
* and zero recordings while every surface stayed quiet.
|
|
72
|
+
*
|
|
73
|
+
* Payload: `{ findingId, severity, title, message, deviceId? }`.
|
|
74
|
+
*/
|
|
75
|
+
EventCategory["SystemLivenessFailed"] = "system.liveness-failed";
|
|
76
|
+
/**
|
|
77
|
+
* A previously reported liveness fault is true again. AlertCenter dismisses
|
|
78
|
+
* the matching `SystemLivenessFailed` alert.
|
|
79
|
+
*
|
|
80
|
+
* Payload: `{ findingId }`.
|
|
81
|
+
*/
|
|
82
|
+
EventCategory["SystemLivenessRecovered"] = "system.liveness-recovered";
|
|
83
|
+
/**
|
|
64
84
|
* Monitor is attempting to reload a failed addon NOW. UI uses this
|
|
65
85
|
* to show a spinner during the retry attempt. Same transient nature
|
|
66
86
|
* as AddonRetryScheduled.
|
|
@@ -9889,6 +9909,14 @@ var NcMediaPolicySchema = object({
|
|
|
9889
9909
|
clipPreRollSec: number().int().min(0).max(30).optional(),
|
|
9890
9910
|
clipPostRollSec: number().int().min(0).max(30).optional(),
|
|
9891
9911
|
/**
|
|
9912
|
+
* Playback rate of the attached gif / clip. Absent = 2x.
|
|
9913
|
+
*
|
|
9914
|
+
* A notification clip is GLANCED at on a lock screen, not watched: at real
|
|
9915
|
+
* time an eight-second passage is eight seconds of the recipient's attention
|
|
9916
|
+
* and twice the bytes. 1 is real time for the operator who wants it.
|
|
9917
|
+
*/
|
|
9918
|
+
clipSpeed: number().min(1).max(8).optional(),
|
|
9919
|
+
/**
|
|
9892
9920
|
* Which stream profile the footage is cut from. Absent = the CHEAPEST
|
|
9893
9921
|
* assigned profile: a notification is watched on a phone, so the 4K
|
|
9894
9922
|
* rendition would burn CPU to produce a file the client downscales anyway.
|
|
@@ -9960,7 +9988,21 @@ var NcRuleInputSchema = object({
|
|
|
9960
9988
|
* behaviour, visible to all, read-only in the viewer). Present = personal
|
|
9961
9989
|
* rule owned by this userId. Server-stamped; never trusted from a client.
|
|
9962
9990
|
*/
|
|
9963
|
-
ownerUserId: string().optional()
|
|
9991
|
+
ownerUserId: string().optional(),
|
|
9992
|
+
/**
|
|
9993
|
+
* May a non-admin snooze this rule for EVERYONE, not just themselves?
|
|
9994
|
+
*
|
|
9995
|
+
* A snooze is personal by default — it silences the person who set it. This
|
|
9996
|
+
* opts THIS rule into the "the gardener is here all afternoon" case, where
|
|
9997
|
+
* silencing the camera for the whole household is legitimate. It silences
|
|
9998
|
+
* other people, so it is off unless a rule deliberately allows it.
|
|
9999
|
+
*
|
|
10000
|
+
* `.optional()`, deliberately NOT `.default()`: a Zod default does not run on
|
|
10001
|
+
* the addon cap path (three production failures in one day), so absent is
|
|
10002
|
+
* read as `false` by {@link canSetGlobal} in the engine. Admins are not bound
|
|
10003
|
+
* by this flag — see the scope rules on that function.
|
|
10004
|
+
*/
|
|
10005
|
+
snoozeAllowGlobal: boolean().optional()
|
|
9964
10006
|
});
|
|
9965
10007
|
/**
|
|
9966
10008
|
* Partial patch for `updateRule` — any subset of the input fields, plus the
|
|
@@ -10045,7 +10087,28 @@ var NcConditionDescriptorSchema = object({
|
|
|
10045
10087
|
/** Which delivery kinds the condition applies to. */
|
|
10046
10088
|
appliesTo: array(NcDeliverySchema),
|
|
10047
10089
|
phase: string(),
|
|
10048
|
-
description: string().optional()
|
|
10090
|
+
description: string().optional(),
|
|
10091
|
+
/**
|
|
10092
|
+
* The CHOICES for a single-choice widget (`sourceSelect`, `crossingSelect`,
|
|
10093
|
+
* `packagePhase`, …), served with the descriptor.
|
|
10094
|
+
*
|
|
10095
|
+
* Before this the descriptor said which widget to render and not what to put
|
|
10096
|
+
* in it, so every option list lived in three places: this file's enums, the
|
|
10097
|
+
* admin's `NC_*_OPTIONS` and the viewer's `NC_*_VALUES`. That triple mirror
|
|
10098
|
+
* is the drift that emptied the viewer's rule editor on 2026-08-04 — the app
|
|
10099
|
+
* mirrors the cap by hand, so it is only ever as current as its last build.
|
|
10100
|
+
*
|
|
10101
|
+
* With the options on the wire, a condition of an EXISTING `valueType` costs
|
|
10102
|
+
* zero client changes. Clients keep a local fallback for an older hub that
|
|
10103
|
+
* does not send them; absent here is "use your own list", not "no choices".
|
|
10104
|
+
*/
|
|
10105
|
+
options: array(object({
|
|
10106
|
+
/** Written to the rule verbatim. `''` means the ABSENT state. */
|
|
10107
|
+
value: string(),
|
|
10108
|
+
label: string(),
|
|
10109
|
+
/** What THIS choice matches — shown one at a time, under the control. */
|
|
10110
|
+
hint: string().optional()
|
|
10111
|
+
})).readonly().optional()
|
|
10049
10112
|
});
|
|
10050
10113
|
/**
|
|
10051
10114
|
* The delivery lifecycle status of a history row — a straight read of the
|
|
@@ -10130,6 +10193,74 @@ var NcHistoryFilterSchema = object({
|
|
|
10130
10193
|
until: number().optional(),
|
|
10131
10194
|
limit: number().int().min(1).max(500).default(100)
|
|
10132
10195
|
});
|
|
10196
|
+
/**
|
|
10197
|
+
* What a snooze covers. Broader scopes win when several overlap, so one window
|
|
10198
|
+
* leaves ONE digest rather than a rule snooze and a whole-feed snooze both
|
|
10199
|
+
* summarising the same silence.
|
|
10200
|
+
*/
|
|
10201
|
+
var NcSnoozeScopeSchema = _enum([
|
|
10202
|
+
"rule",
|
|
10203
|
+
"device",
|
|
10204
|
+
"all"
|
|
10205
|
+
]);
|
|
10206
|
+
/**
|
|
10207
|
+
* Client-authored snooze. The server stamps `userId`, `startedAt` and
|
|
10208
|
+
* `expiresAt` — a DURATION is sent rather than an instant so a client with a
|
|
10209
|
+
* skewed clock cannot author a window that is already over, or never ends.
|
|
10210
|
+
*/
|
|
10211
|
+
var NcSnoozeInputSchema = object({
|
|
10212
|
+
scope: NcSnoozeScopeSchema,
|
|
10213
|
+
/** Required when `scope: 'rule'` — a scoped snooze with no id matches
|
|
10214
|
+
* NOTHING rather than degrading to "everything". */
|
|
10215
|
+
ruleId: string().optional(),
|
|
10216
|
+
/** Required when `scope: 'device'`. */
|
|
10217
|
+
deviceId: number().int().optional(),
|
|
10218
|
+
durationMinutes: number().int().min(1).max(1440),
|
|
10219
|
+
/**
|
|
10220
|
+
* Silence this for EVERY recipient, not just the caller. Permission is
|
|
10221
|
+
* checked server-side (the rule's `snoozeAllowGlobal`, or admin for the
|
|
10222
|
+
* broader scopes). Absent = personal.
|
|
10223
|
+
*/
|
|
10224
|
+
global: boolean().optional(),
|
|
10225
|
+
/**
|
|
10226
|
+
* Deliver a summary of what was suppressed when the window ends. Absent =
|
|
10227
|
+
* ON: someone silencing a nuisance camera wants it off, someone silencing a
|
|
10228
|
+
* SECURITY camera wants to know what they missed, and choosing "off" for
|
|
10229
|
+
* everybody is how a snooze becomes an outage. Resolved to a concrete
|
|
10230
|
+
* boolean by the server at create time — never left to a Zod default, which
|
|
10231
|
+
* does not run on the addon cap path.
|
|
10232
|
+
*/
|
|
10233
|
+
summary: boolean().optional()
|
|
10234
|
+
});
|
|
10235
|
+
/** A persisted snooze window. */
|
|
10236
|
+
var NcSnoozeSchema = object({
|
|
10237
|
+
id: string(),
|
|
10238
|
+
/** Who set it. Also who it silences, unless `global`. */
|
|
10239
|
+
userId: string(),
|
|
10240
|
+
scope: NcSnoozeScopeSchema,
|
|
10241
|
+
ruleId: string().optional(),
|
|
10242
|
+
deviceId: number().int().optional(),
|
|
10243
|
+
startedAt: number(),
|
|
10244
|
+
/** Exclusive: at exactly this instant the snooze is over. Expiry is a
|
|
10245
|
+
* COMPARISON, not a job — no sweeper can leave the operator silenced. */
|
|
10246
|
+
expiresAt: number(),
|
|
10247
|
+
global: boolean(),
|
|
10248
|
+
summary: boolean(),
|
|
10249
|
+
/** When the end-of-window digest went out. Absent = not sent (yet, or the
|
|
10250
|
+
* window has not closed, or `summary` is false). */
|
|
10251
|
+
digestSentAt: number().optional()
|
|
10252
|
+
});
|
|
10253
|
+
object({
|
|
10254
|
+
snoozeId: string(),
|
|
10255
|
+
targetId: string(),
|
|
10256
|
+
ruleId: string(),
|
|
10257
|
+
ruleName: string(),
|
|
10258
|
+
deviceId: number().int(),
|
|
10259
|
+
/** How many notifications this snooze hid for that pair. */
|
|
10260
|
+
count: number().int(),
|
|
10261
|
+
firstAt: number(),
|
|
10262
|
+
lastAt: number()
|
|
10263
|
+
});
|
|
10133
10264
|
method(object({}), object({ rules: array(NcRuleSchema) }), { auth: "admin" }), method(object({ ruleId: string() }), object({ rule: NcRuleSchema.nullable() }), { auth: "admin" }), method(object({ rule: NcRuleInputSchema }), object({ rule: NcRuleSchema }), {
|
|
10134
10265
|
kind: "mutation",
|
|
10135
10266
|
auth: "admin",
|
|
@@ -10159,7 +10290,13 @@ method(object({}), object({ rules: array(NcRuleSchema) }), { auth: "admin" }), m
|
|
|
10159
10290
|
}), method(object({}), object({
|
|
10160
10291
|
catalog: array(NcConditionDescriptorSchema),
|
|
10161
10292
|
taxonomy: NcTaxonomySchema.optional()
|
|
10162
|
-
})), method(object({ filter: NcHistoryFilterSchema.default({ limit: 100 }) }), object({ entries: array(NcHistoryEntrySchema) }), { auth: "admin" })
|
|
10293
|
+
})), method(object({ filter: NcHistoryFilterSchema.default({ limit: 100 }) }), object({ entries: array(NcHistoryEntrySchema) }), { auth: "admin" }), method(object({}), object({ snoozes: array(NcSnoozeSchema) }), { caller: "required" }), method(object({ snooze: NcSnoozeInputSchema }), object({ snooze: NcSnoozeSchema }), {
|
|
10294
|
+
kind: "mutation",
|
|
10295
|
+
caller: "required"
|
|
10296
|
+
}), method(object({ snoozeId: string() }), object({ success: literal(true) }), {
|
|
10297
|
+
kind: "mutation",
|
|
10298
|
+
caller: "required"
|
|
10299
|
+
});
|
|
10163
10300
|
/**
|
|
10164
10301
|
* TimelapseRule — the STANDALONE scheduled timelapse producer's rule model.
|
|
10165
10302
|
*
|
|
@@ -10907,7 +11044,15 @@ method(object({
|
|
|
10907
11044
|
format: _enum(["gif", "mp4"]).default("gif"),
|
|
10908
11045
|
maxWidth: number().int().min(120).max(1920).default(480),
|
|
10909
11046
|
/** GIF only — MP4 keeps the source cadence. */
|
|
10910
|
-
fps: number().int().min(1).max(15).default(5)
|
|
11047
|
+
fps: number().int().min(1).max(15).default(5),
|
|
11048
|
+
/**
|
|
11049
|
+
* Playback rate. A notification clip is GLANCED at on a lock screen,
|
|
11050
|
+
* not watched, so 2x is the default: the recipient sees the whole
|
|
11051
|
+
* passage in half the time and the GIF is half the bytes. `1` is real
|
|
11052
|
+
* time. Applies to MP4 as well — the operator set a speed, not a GIF
|
|
11053
|
+
* speed.
|
|
11054
|
+
*/
|
|
11055
|
+
speed: number().min(1).max(8).default(2)
|
|
10911
11056
|
}), object({
|
|
10912
11057
|
base64: string(),
|
|
10913
11058
|
mime: string(),
|
|
@@ -16105,6 +16250,20 @@ var QueryFilterSchema = object({
|
|
|
16105
16250
|
limit: number().optional(),
|
|
16106
16251
|
offset: number().optional()
|
|
16107
16252
|
});
|
|
16253
|
+
/**
|
|
16254
|
+
* The predicate half of a filter, for BULK MUTATIONS.
|
|
16255
|
+
*
|
|
16256
|
+
* Deliberately not `QueryFilterSchema`: `orderBy` / `limit` / `offset` have no
|
|
16257
|
+
* meaning for a statement that rewrites a set, and accepting them would invite
|
|
16258
|
+
* a caller to believe `limit` bounds the damage. Every field is optional here
|
|
16259
|
+
* only so the shape stays composable — the implementation REJECTS a filter
|
|
16260
|
+
* that compiles to no predicate, because that is the whole collection.
|
|
16261
|
+
*/
|
|
16262
|
+
var MutationFilterSchema = object({
|
|
16263
|
+
where: record(string(), unknown()).optional(),
|
|
16264
|
+
whereIn: record(string(), array(unknown())).optional(),
|
|
16265
|
+
whereBetween: record(string(), tuple([unknown(), unknown()])).optional()
|
|
16266
|
+
});
|
|
16108
16267
|
/** A single stored record: `{ id, data }`. */
|
|
16109
16268
|
var SettingsRecordSchema = object({
|
|
16110
16269
|
id: string(),
|
|
@@ -16130,7 +16289,18 @@ var CollectionColumnSchema = object({
|
|
|
16130
16289
|
]),
|
|
16131
16290
|
primaryKey: boolean().optional(),
|
|
16132
16291
|
notNull: boolean().optional(),
|
|
16133
|
-
unique: boolean().optional()
|
|
16292
|
+
unique: boolean().optional(),
|
|
16293
|
+
/**
|
|
16294
|
+
* Column DEFAULT. Required for B2: the four `ensureTable` consumers declare
|
|
16295
|
+
* columns like `enabled INTEGER NOT NULL DEFAULT 1`, and without this the
|
|
16296
|
+
* collection surface simply cannot express their existing tables — which is
|
|
16297
|
+
* why they were still on the uncapped `table*` API.
|
|
16298
|
+
*/
|
|
16299
|
+
defaultValue: union([
|
|
16300
|
+
string(),
|
|
16301
|
+
number(),
|
|
16302
|
+
boolean()
|
|
16303
|
+
]).optional()
|
|
16134
16304
|
});
|
|
16135
16305
|
var CollectionIndexSchema = object({
|
|
16136
16306
|
name: string(),
|
|
@@ -16164,6 +16334,15 @@ method(object({
|
|
|
16164
16334
|
collection: string(),
|
|
16165
16335
|
key: string()
|
|
16166
16336
|
}), _void(), { kind: "mutation" }), method(object({
|
|
16337
|
+
namespace: string().optional(),
|
|
16338
|
+
collection: string(),
|
|
16339
|
+
filter: MutationFilterSchema
|
|
16340
|
+
}), object({ deleted: number().int() }), { kind: "mutation" }), method(object({
|
|
16341
|
+
namespace: string().optional(),
|
|
16342
|
+
collection: string(),
|
|
16343
|
+
filter: MutationFilterSchema,
|
|
16344
|
+
data: record(string(), unknown())
|
|
16345
|
+
}), object({ updated: number().int() }), { kind: "mutation" }), method(object({
|
|
16167
16346
|
namespace: string().optional(),
|
|
16168
16347
|
collection: string(),
|
|
16169
16348
|
filter: QueryFilterSchema.optional()
|
|
@@ -16230,6 +16409,15 @@ method(_void(), EngineInfoSchema), method(object({
|
|
|
16230
16409
|
collection: string(),
|
|
16231
16410
|
key: string()
|
|
16232
16411
|
}), _void(), { kind: "mutation" }), method(object({
|
|
16412
|
+
namespace: string().optional(),
|
|
16413
|
+
collection: string(),
|
|
16414
|
+
filter: MutationFilterSchema
|
|
16415
|
+
}), object({ deleted: number().int() }), { kind: "mutation" }), method(object({
|
|
16416
|
+
namespace: string().optional(),
|
|
16417
|
+
collection: string(),
|
|
16418
|
+
filter: MutationFilterSchema,
|
|
16419
|
+
data: record(string(), unknown())
|
|
16420
|
+
}), object({ updated: number().int() }), { kind: "mutation" }), method(object({
|
|
16233
16421
|
namespace: string().optional(),
|
|
16234
16422
|
collection: string(),
|
|
16235
16423
|
filter: QueryFilterSchema.optional()
|
|
@@ -23760,6 +23948,12 @@ Object.freeze({
|
|
|
23760
23948
|
addonId: null,
|
|
23761
23949
|
access: "delete"
|
|
23762
23950
|
},
|
|
23951
|
+
"dataStoreProvider.deleteWhere": {
|
|
23952
|
+
capName: "data-store-provider",
|
|
23953
|
+
capScope: "system",
|
|
23954
|
+
addonId: null,
|
|
23955
|
+
access: "delete"
|
|
23956
|
+
},
|
|
23763
23957
|
"dataStoreProvider.get": {
|
|
23764
23958
|
capName: "data-store-provider",
|
|
23765
23959
|
capScope: "system",
|
|
@@ -23808,6 +24002,12 @@ Object.freeze({
|
|
|
23808
24002
|
addonId: null,
|
|
23809
24003
|
access: "create"
|
|
23810
24004
|
},
|
|
24005
|
+
"dataStoreProvider.updateWhere": {
|
|
24006
|
+
capName: "data-store-provider",
|
|
24007
|
+
capScope: "system",
|
|
24008
|
+
addonId: null,
|
|
24009
|
+
access: "create"
|
|
24010
|
+
},
|
|
23811
24011
|
"dayNight.getOptions": {
|
|
23812
24012
|
capName: "day-night",
|
|
23813
24013
|
capScope: "device",
|
|
@@ -25602,12 +25802,24 @@ Object.freeze({
|
|
|
25602
25802
|
addonId: null,
|
|
25603
25803
|
access: "create"
|
|
25604
25804
|
},
|
|
25805
|
+
"notificationRules.cancelSnooze": {
|
|
25806
|
+
capName: "notification-rules",
|
|
25807
|
+
capScope: "system",
|
|
25808
|
+
addonId: null,
|
|
25809
|
+
access: "create"
|
|
25810
|
+
},
|
|
25605
25811
|
"notificationRules.createRule": {
|
|
25606
25812
|
capName: "notification-rules",
|
|
25607
25813
|
capScope: "system",
|
|
25608
25814
|
addonId: null,
|
|
25609
25815
|
access: "create"
|
|
25610
25816
|
},
|
|
25817
|
+
"notificationRules.createSnooze": {
|
|
25818
|
+
capName: "notification-rules",
|
|
25819
|
+
capScope: "system",
|
|
25820
|
+
addonId: null,
|
|
25821
|
+
access: "create"
|
|
25822
|
+
},
|
|
25611
25823
|
"notificationRules.deleteRule": {
|
|
25612
25824
|
capName: "notification-rules",
|
|
25613
25825
|
capScope: "system",
|
|
@@ -25638,6 +25850,12 @@ Object.freeze({
|
|
|
25638
25850
|
addonId: null,
|
|
25639
25851
|
access: "view"
|
|
25640
25852
|
},
|
|
25853
|
+
"notificationRules.listSnoozes": {
|
|
25854
|
+
capName: "notification-rules",
|
|
25855
|
+
capScope: "system",
|
|
25856
|
+
addonId: null,
|
|
25857
|
+
access: "view"
|
|
25858
|
+
},
|
|
25641
25859
|
"notificationRules.setRuleEnabled": {
|
|
25642
25860
|
capName: "notification-rules",
|
|
25643
25861
|
capScope: "system",
|
|
@@ -26886,6 +27104,12 @@ Object.freeze({
|
|
|
26886
27104
|
addonId: null,
|
|
26887
27105
|
access: "delete"
|
|
26888
27106
|
},
|
|
27107
|
+
"settingsStore.deleteWhere": {
|
|
27108
|
+
capName: "settings-store",
|
|
27109
|
+
capScope: "system",
|
|
27110
|
+
addonId: null,
|
|
27111
|
+
access: "delete"
|
|
27112
|
+
},
|
|
26889
27113
|
"settingsStore.get": {
|
|
26890
27114
|
capName: "settings-store",
|
|
26891
27115
|
capScope: "system",
|
|
@@ -26928,6 +27152,12 @@ Object.freeze({
|
|
|
26928
27152
|
addonId: null,
|
|
26929
27153
|
access: "create"
|
|
26930
27154
|
},
|
|
27155
|
+
"settingsStore.updateWhere": {
|
|
27156
|
+
capName: "settings-store",
|
|
27157
|
+
capScope: "system",
|
|
27158
|
+
addonId: null,
|
|
27159
|
+
access: "create"
|
|
27160
|
+
},
|
|
26931
27161
|
"smtpProvider.getStatus": {
|
|
26932
27162
|
capName: "smtp-provider",
|
|
26933
27163
|
capScope: "system",
|
package/dist/remoteEntry.js
CHANGED
|
@@ -30,7 +30,7 @@ async function d(e) {
|
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
async function f() {
|
|
33
|
-
return l ||= d(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-
|
|
33
|
+
return l ||= d(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-B8aSpSuW.mjs")).catch((e) => {
|
|
34
34
|
throw l = void 0, e;
|
|
35
35
|
}), l;
|
|
36
36
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-pipeline-orchestrator",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.20",
|
|
4
4
|
"description": "Hub-side camera-to-agent load balancer — tracks runner capacity and dispatches attachCamera calls to the optimal pipeline-runner instance",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
//#region \0virtual:mf:__mfe_internal__addon_pipeline_orchestrator_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js
|
|
2
|
-
var e = "__mf_init__virtual:mf:__mfe_internal__addon_pipeline_orchestrator_widgets__mf_v__runtimeInit__mf_v__.js__", t = globalThis[e];
|
|
3
|
-
if (!t) {
|
|
4
|
-
let n, r, i = new Promise((e, t) => {
|
|
5
|
-
n = e, r = t;
|
|
6
|
-
});
|
|
7
|
-
t = globalThis[e] = {
|
|
8
|
-
initPromise: i,
|
|
9
|
-
initResolve: n,
|
|
10
|
-
initReject: r
|
|
11
|
-
};
|
|
12
|
-
}
|
|
13
|
-
var n = t.initPromise, r = "__mf_module_cache__";
|
|
14
|
-
globalThis[r] ||= {
|
|
15
|
-
share: {},
|
|
16
|
-
remote: {}
|
|
17
|
-
}, globalThis[r].share ||= {}, globalThis[r].remote ||= {};
|
|
18
|
-
var i = globalThis[r], a, o, s, c = (e) => {
|
|
19
|
-
e.ACCESSORY_LABEL, e.ALL_CAPABILITY_DEFINITIONS, e.APPLE_SA_TO_MACRO, e.AUDIO_BACKEND_CHOICES, e.AUDIO_MACRO_LABELS, e.AccessoriesStatusSchema, e.AccessoryKind, e.AddBrokerInputSchema, e.AddonAutoUpdateSchema, e.AddonListItemSchema, e.AddonPageDeclarationSchema, e.AddonPageInfoSchema, e.AdoptionAdoptInputSchema, e.AdoptionAdoptResultSchema, e.AdoptionFilterSchema, e.AdoptionGetCandidateInputSchema, e.AdoptionListCandidatesInputSchema, e.AdoptionListCandidatesOutputSchema, e.AdoptionReleaseInputSchema, e.AdoptionStatusSchema, e.AgentLoadSummarySchema, e.AirQualitySensorStatusSchema, e.AlarmArmModeSchema, e.AlarmPanelStatusSchema, e.AlarmStateSchema, e.AlertSchema, e.AlertSeveritySchema, e.AlertSourceSchema, e.AlertStatusSchema, e.AmbientLightSensorStatusSchema, e.ApiKeyRecordSchema, e.ApiKeySummarySchema, e.ArchiveEntrySchema, e.ArchiveManifestSchema, e.AttachmentMediaTypeSchema, e.AttachmentSchema, e.AudioAnalysisResultSchema, e.AudioAnalysisSettingsSchema, e.AudioChunkInputSchema, e.AudioClassSummarySchema, e.AudioClassificationLabelSchema, e.AudioClassificationResultSchema, e.AudioCodecInfoSchema, e.AudioDecodeSessionConfigSchema, e.AudioEncodeSchema, e.AudioEncodeSessionConfigSchema, e.AudioEncodedChunkSchema, e.AudioEventSchema, e.AudioLevelSchema, e.AudioMetricsHistoryPointSchema, e.AudioMetricsHistorySchema, e.AudioMetricsSnapshotSchema, e.AudioPcmChunkSchema, e.AuthResultSchema, e.AutoUpdateSettingsSchema, e.AutomationControlStatusSchema, e.AvailableIntegrationTypeSchema, e.BACKEND_TO_FORMAT, e.BATTERY_DEVICE_PROFILE, e.BacklightModeSchema, e.BackupDestinationInfoSchema, e.BackupEntrySchema, e.BaseAddon, e.BaseDevice, e.BaseDeviceProvider, e.BatteryStatusSchema, e.BinaryStatusSchema, e.BoundingBoxSchema, e.BrightnessStatusSchema, e.BrokerAddInputSchema, e.BrokerAudioClientSchema, e.BrokerClientsSchema, e.BrokerConnectionDetailsSchema, e.BrokerConsumerAttributionSchema, e.BrokerConsumerKindSchema, e.BrokerDecodedClientSchema, e.BrokerEncodedClientSchema, e.BrokerGetStateInputSchema, e.BrokerInfoSchema, e.BrokerProviderInfoSchema, e.BrokerPublishInputSchema, e.BrokerRegistryStatusSchema, e.BrokerRtspClientSchema, e.BrokerStatsSchema, e.BrokerStatusEnum, e.BrokerStatusSchema, e.BrokerSubscribeInputSchema, e.BrokerSubscribeResultSchema, e.BrokerTestConnectionResultSchema, e.BrokerUnsubscribeInputSchema, e.CAM_PROFILE_ORDER, e.CAPABILITY_NAMES, e.CAPABILITY_ROUTER_KEYS, e.CAP_NAMES_WITH_STATUS, e.CAP_NODE_PIN_CONTEXT_KEY, e.CAP_PROVIDER_KIND_MAP, e.COCO_80_LABELS, e.COCO_TO_MACRO, e.CamProfileSchema, e.CamStreamDescriptorSchema, e.CamStreamKindSchema, e.CamStreamResolutionSchema, e.CameraAssignmentStatusSchema, e.CameraAudioStatusSchema, e.CameraBrokerProfileSchema, e.CameraBrokerStatusSchema, e.CameraCredentialsSchema, e.CameraCredentialsStatusSchema, e.CameraDecoderShmSchema, e.CameraDecoderStatusSchema, e.CameraDetectionPhaseSchema, e.CameraDetectionProvisioningSchema, e.CameraDetectionProvisioningStateSchema, e.CameraDetectionStatusSchema, e.CameraMetricsSchema, e.CameraMetricsWithDeviceIdSchema, e.CameraMotionStatusSchema, e.CameraRecordingModeSchema, e.CameraRecordingStatusSchema, e.CameraSourceStatusSchema, e.CameraSourceStreamSchema, e.CameraStatusSchema, e.CameraStreamSchema, e.CandidateQueryFilterSchema, e.CapScopeSchema, e.CapabilityBindingsSchema, e.CarbonMonoxideStatusSchema, e.ChargingStatus, e.ClientNetworkStatsSchema, e.ClimateControlStatusSchema, e.ClipPlaybackSchema, e.ClipSchema, e.ClusterAddonNodeDeploymentSchema, e.ClusterAddonStatusEntrySchema, e.CollectionColumnSchema, e.CollectionIndexSchema, e.ColorStatusSchema, e.ConfigEntrySchema, e.ConfigSectionWithValuesSchema, e.ConfigTabDeclarationSchema, e.ConnectivityStatusSchema, e.ConsumableItemSchema, e.ConsumablesStatusSchema, e.ContactStatusSchema, e.ControlKindSchema, e.ControlStatusSchema, e.ConvertArtifactSchema, e.ConvertResultSchema, e.ConvertTargetSchema, e.CoverStateSchema, e.CoverStatusSchema, e.CreateApiKeyInputSchema, e.CreateApiKeyResultSchema, e.CreateIntegrationInputSchema, e.CreateScopedTokenInputSchema, e.CreateScopedTokenResultSchema, e.CreateUserInputSchema, e.CustomActionInputSchema, e.CustomModelDescriptorSchema, e.DATAPLANE_SECRET_HEADER, e.DEFAULT_ADDON_PLACEMENT, e.DEFAULT_AUDIO_ANALYZER_CONFIG, e.DEFAULT_DECODER_HWACCEL_CONFIG, e.DEFAULT_EVENT_COLOR, e.DEFAULT_FEATURES, e.DEFAULT_RETENTION, e.DEFAULT_SCRUB_THUMBNAIL_PRESET, e.DEVICE_BACKEND_TO_FORMAT, e.DEVICE_CAP_NAMES, e.DEVICE_PROFILES, e.DEVICE_SETTINGS_CONTRIBUTION_METHODS, e.DEVICE_STATUS_METHOD, e.DEVICE_TYPE_CONTROL_KIND, e.DEVICE_TYPE_INFO, e.DataStoreEngineInfoSchema, e.DayNightModeSchema, e.DayNightOptionsSchema, e.DayNightSettingsPatchSchema, e.DayNightStatusSchema, e.DecodedAudioChunkSchema, e.DecodedFrameSchema, e.DecoderSessionConfigSchema, e.DecoderStatsSchema, e.DeleteIntegrationResultSchema, e.DetectionSourceSchema, e.DeviceCodeSeveritySchema, e.DeviceConfig, e.DeviceDiscoveryStatusSchema, e.DeviceExportExposeInputSchema, e.DeviceExportStatusSchema, e.DeviceExportUnexposeInputSchema, e.DeviceFeature, e.DeviceInfoSchema, e.DeviceLinkModeSchema, e.DeviceNetworkStatsSchema, e.DeviceRole, e.DeviceRuntimeState, e.DeviceStatusSchema, e.DeviceType, e.DiscoveredChildDeviceSchema, e.DiscoveredChildStatusSchema, e.DiscoveredDeviceSchema, e.DiscoveredTargetSchema, e.DisposerChain, e.DoorbellPressEventSchema, e.DoorbellStatusSchema, e.EVENTFUL_CAP_NAMES, e.EVENT_KIND_BY_CAP, e.EVENT_PAD_MS, e.EVENT_TAXONOMY, e.EXPRESSION_BUILTINS, e.EXPRESSION_BUILTIN_NAMES, e.EXPRESSION_COMPILE_CACHE_CAPACITY, e.EXPRESSION_IDENTIFIER_RE, e.EXPRESSION_INJECTED_NOW, e.ElementConfigStore, e.EmbeddingInfoSchema, e.EmbeddingResultSchema, e.EncodeProfileSchema, e.EncodedPacketSchema, e.EnrichedWidgetMetadataSchema, e.EnumSensorDateTimeFormatSchema, e.EnumSensorStatusSchema, e.EventCategory, e.EventEmitterStatusSchema, e.EventFireSchema, e.EventItemSchema, e.EventKindCategorySchema, e.EventKindDescriptorSchema, e.EventKindIconSchema, e.EventKindSchema, e.EventSourceType, e.ExportDownloadSchema, e.ExportOptionsSchema, e.ExportRecordSchema, e.ExportSetupFieldSchema, e.ExportSetupSchema, e.ExportSpeedSchema, e.ExportStateSchema, e.ExportTimelapseSchema, e.ExposedDeviceSchema, e.ExposureModeSchema, e.ExpressionEvalError, e.ExpressionParseError, e.FanControlStatusSchema, e.FanDirectionSchema, e.FeatureManifestSchema, e.FeatureProbeStatusSchema, e.FloodStatusSchema, e.FrameHandleFormatSchema, e.FrameHandleSchema, e.FrameInputSchema, e.GasStatusSchema, e.GetStreamWithCodecInputSchema, e.GlobalMetricsSchema, e.HF_BASE_URL, e.HF_REPO, e.HWACCEL_OPTIONS, e.HealthStatusSchema, e.HistoryPointSchema, e.HistoryResolutionEnum, e.HumidifierStatusSchema, e.HumiditySensorStatusSchema, e.HvacModeSchema, e.ImageContractSchema, e.ImageContractStateSchema, e.ImageRotateSchema, e.ImageSettingsOptionsSchema, e.ImageSettingsPatchSchema, e.ImageSettingsStatusSchema, e.ImageStatusSchema, e.IngestOwnerSchema, e.InstalledPackageSchema, e.IntegrationLiteSchema, e.IntegrationWithStateSchema, e.IntercomAbilitySchema, e.IntercomStatusSchema, e.KNOWN_CAP_NAMES, e.KeyEventSchema, e.LOG_LEVEL_RANK, e.LabelDefinitionSchema, e.LawnMowerActivitySchema, e.LawnMowerControlStatusSchema, e.LinkedDeviceSchema, e.LlmDefaultSchema, e.LlmDefaultSelectorSchema, e.LlmErrorCodeSchema, e.LlmGenerateBaseInputSchema, e.LlmGenerateErrSchema, e.LlmGenerateOkSchema, e.LlmGenerateResultSchema, e.LlmImageSchema, e.LlmNodeModelSchema, e.LlmProfileKindDescriptorSchema, e.LlmProfileKindSchema, e.LlmProfileSchema, e.LlmRuntimeCompleteInputSchema, e.LlmRuntimeDiskUsageSchema, e.LlmRuntimeNodeSchema, e.LlmRuntimeStatusSchema, e.LlmUsageRollupSchema, e.LlmUsageSchema, e.LocateSegmentResultSchema, e.LocationStatSchema, e.LockControlStatusSchema, e.LockStateSchema, e.LogEntrySchema, e.LogLevelSchema, e.LogStreamEntrySchema, e.LoginMethodContributionSchema, e.LoginStageEnum, a = e.MACRO_LABELS, e.MAX_EXPRESSION_AST_NODES, e.MAX_EXPRESSION_BINDINGS, e.MAX_EXPRESSION_CALL_ARGS, e.MAX_EXPRESSION_EVAL_STEPS, e.MAX_EXPRESSION_SOURCE_LENGTH, e.METHOD_ACCESS_MAP, e.MODEL_FORMATS, e.MOTION_TRIGGER_FEATURE, e.ManagedModelCatalogEntrySchema, e.ManagedModelRefSchema, e.ManagedRuntimeConfigSchema, e.MaskGridDimsSchema, e.MaskGridShapeSchema, e.MaskLineShapeSchema, e.MaskPointSchema, e.MaskPolygonShapeSchema, e.MaskPolygonVerticesSchema, e.MaskRectShapeSchema, e.MaskShapeKindSchema, e.MaskShapeSchema, e.MediaFileSchema, e.MediaPlayerRepeatSchema, e.MediaPlayerStateSchema, e.MediaPlayerStatusSchema, e.MeshPeerSchema, e.MeshStatusSchema, e.MethodAccessSchema, e.ModelCatalogEntrySchema, e.ModelConvertInputSchema, e.ModelConvertMetadataSchema, e.ModelDistributeInputSchema, e.ModelDistributeResultSchema, e.ModelExtraFileSchema, e.ModelFormatEntrySchema, e.ModelFormatsSchema, e.ModelSubstitutionSchema, e.ModelVariantGroupSchema, e.MotionAnalysisResultSchema, e.MotionEventSchema, e.MotionOnMotionChangedDataSchema, e.MotionRegionSchema, e.MotionSourceEnum, e.MotionSourcesSchema, e.MotionStatusSchema, e.MotionTriggerRuntimeStateSchema, e.MotionTriggerStatusSchema, e.MotionZoneOptionsSchema, e.MotionZonePatchSchema, e.MotionZoneRegionSchema, e.MotionZoneStatusSchema, e.MqttBrokerStatusSchema, e.NC_BASE_CONDITION_KEYS, e.NC_CONDITION_CATALOG, e.NC_HISTORY_LIMIT_DEFAULT, e.NC_HISTORY_LIMIT_MAX, e.NC_MAX_PER_TRACK_IMMEDIATE, e.NC_TAXONOMY, e.NativeCropBboxSchema, e.NativeCropRefSchema, e.NativeCropResultSchema, e.NativeDetectionSchema, e.NativeObjectClassEnum, e.NativeObjectDetectionRuntimeStateSchema, e.NativeObjectDetectionStatusSchema, e.NcConditionDescriptorSchema, e.NcConditionsSchema, e.NcCrossingSchema, e.NcDeliverySchema, e.NcHistoryEntrySchema, e.NcHistoryFilterSchema, e.NcHistoryRecordKindSchema, e.NcHistoryStatusSchema, e.NcHistorySubjectSchema, e.NcMediaFrameSchema, e.NcMediaPolicySchema, e.NcOccupancyConditionSchema, e.NcPlateMatcherSchema, e.NcRuleInputSchema, e.NcRulePatchSchema, e.NcRuleSchema, e.NcRuleTargetSchema, e.NcScheduleSchema, e.NcScheduleWindowSchema, e.NcTaxonomyEntrySchema, e.NcTaxonomySchema, e.NcTestResultSchema, e.NcThrottleGranularitySchema, e.NcThrottleSchema, e.NcZoneConditionSchema, e.NetworkAccessStatusSchema, e.NetworkAddressSchema, e.NetworkEndpointSchema, e.NotificationActionSchema, e.NotificationFormatSchema, e.NotificationSchema, e.NotifierStatusSchema, e.NumericSensorStatusSchema, e.OPS_LOG_DEFAULT_LIMIT, e.OPS_LOG_RING_DEFAULT_MAX, e.OauthIntegrationDescriptorSchema, e.ObjectEventSchema, e.OpsLogDomainSchema, e.OpsLogEntrySchema, e.OpsLogOpSchema, e.OpsLogQueryInputSchema, e.OpsLogReasonSchema, e.OrchestratorMetricsSchema, e.OsdOverlayKindEnum, e.OsdOverlayPatchSchema, e.OsdOverlaySchema, e.OsdPositionEnum, e.OsdStatusSchema, e.PET_FEEDER_MANUAL_FEED_MAX, e.PET_FEEDER_MANUAL_FEED_MIN, e.PIPELINE_FLOW_CAPABILITY_NAMES, e.PIPELINE_OWNER_CAPABILITY_NAMES, e.PROVIDER_KIND_CAP_NAMES, e.PYTHON_SCRIPT, e.PackageUpdateSchema, e.PackageVersionInfoSchema, e.PasskeyLoginMethodSchema, e.PasskeySummarySchema, e.PcmSampleFormatSchema, e.PerScopeBreakdownSchema, e.PetFeederStatusSchema, e.PickStreamPreferencesSchema, e.PickStreamRequirementsSchema, e.PickedCamStreamSchema, e.PipelineAssignmentSchema, e.PipelineDefaultStepSchema, e.PipelineEngineChoiceSchema, e.PipelineRunResultBridge, e.PipelineStepInputSchema, e.PipelineValidationIssueSchema, e.PipelineValidationResultSchema, e.PlaceholderReasonSchema, e.PolygonPointSchema, e.PowerMeterStatusSchema, e.PresenceStatusSchema, e.PressureSensorStatusSchema, e.PrivacyMaskOptionsSchema, e.PrivacyMaskPatchSchema, e.PrivacyMaskRegionSchema, e.PrivacyMaskShapeSchema, e.PrivacyMaskStatusSchema, e.ProfileRtspEntrySchema, e.ProfileSlotSchema, e.ProfileSlotStatusSchema, e.ProviderStatusSchema, e.PtzAutotrackRuntimeStateSchema, e.PtzAutotrackSettingsSchema, e.PtzAutotrackStatusSchema, e.PtzAutotrackTargetOptionSchema, e.PtzMoveCommandSchema, e.PtzOptionsSchema, e.PtzPositionSchema, e.PtzPresetSchema, e.PtzStatusSchema, e.QueryFilterSchema, e.REACHABILITY_FAILURES_TO_OFFLINE, e.REACHABILITY_POLL_INTERVAL_MS, e.REACHABILITY_PROBE_TIMEOUT_MS, e.RECOGNITION_TYPES, e.RESERVED_BINDING_NAMES, e.RUNTIME_DEFAULTS, e.RUNTIME_TO_FORMAT, e.RawStateResultSchema, e.ReadSegmentBytesResultSchema, e.ReadinessRegistry, e.ReadinessTimeoutError, e.RecentTracksPageSchema, e.RecentTracksQueryInput, e.RecordingAvailabilitySchema, e.RecordingBandModeSchema, e.RecordingBandSchema, e.RecordingBandTriggersSchema, e.RecordingConfigSchema, e.RecordingDaysSchema, e.RecordingDeviceUsageSchema, e.RecordingLocationUsageSchema, e.RecordingManifestSchema, e.RecordingRangeSchema, e.RecordingRetentionSchema, e.RecordingStatusSchema, e.RecordingStorageModeSchema, e.RecordingStorageUsageSchema, e.RecordingTriggersSchema, e.RecordingWeekdaySchema, e.RedirectLoginMethodSchema, e.RelocateFootageInputSchema, e.RelocateJobSchema, e.RelocateJobStateSchema, e.RelocateMediaInputSchema, e.RenderedAsSchema, e.ReportMotionInputSchema, e.RingBuffer, e.RtpSourceSchema, e.RtspRestreamEntrySchema, e.RunnerCameraConfigSchema, e.RunnerCameraDeviceUIFields, e.RunnerFrameSourceSchema, e.RunnerInferenceDeviceSchema, e.RunnerLocalLoadSchema, e.RunnerLocalMetricsSchema, e.SCOPE_PRESETS, e.SCRUB_THUMBNAIL_PRESETS, e.SCRUB_THUMBNAIL_PRESET_LABELS, e.SCRUB_THUMBNAIL_PRESET_ORDER, e.SENSOR_FEATURES, e.SENSOR_MAP, e.SOURCE_INFO_METADATA_KEY, e.STREAM_PROFILE_META, e.STREAM_QUALITY_LABELS, e.SUB_DETECTION_TYPES, e.SYSTEM_CAP_NAMES, e.SceneCheckSchema, e.SceneConditionSchema, e.SceneMonitorSchema, e.SceneMonitorStateSchema, e.SceneMonitorStatusSchema, e.SceneReferenceSchema, e.ScopedTokenSchema, e.ScopedTokenSummarySchema, e.ScoredObjectEventSchema, e.ScriptRunnerStatusSchema, e.ScrubThumbnailPresetSchema, e.SearchResultSchema, e.SendEmailInputSchema, e.SendEmailResultSchema, e.SendResultSchema, e.SensorEventSchema, e.ServerBootModeSchema, e.ServerPackageStatusSchema, e.ServerRollbackInfoSchema, e.ServerUpdateActionResultSchema, e.ServerUpdateCheckResultSchema, e.ServerUpdateStateSchema, e.SettingsPatchSchema, e.SettingsRecordSchema, e.SettingsSchemaWithValuesSchema, e.SettingsUpdateResultSchema, e.ShmRingStatsSchema, e.SmokeStatusSchema, e.SmtpStatusSchema, e.SnapshotImageSchema, e.SourceInfoSchema, e.SpatialDetectionSchema, e.SsoBridgeClaimsSchema, e.StartEmbeddedInputSchema, e.StationaryObjectSchema, e.StorageAbortUploadInputSchema, e.StorageBeginDownloadInputSchema, e.StorageBeginDownloadResultSchema, e.StorageBeginUploadInputSchema, e.StorageBeginUploadResultSchema, e.StorageEndDownloadInputSchema, e.StorageFinalizeUploadInputSchema, e.StorageLocationDeclarationSchema, e.StorageLocationRefSchema, e.StorageLocationSchema, e.StorageLocationTypeSchema, e.StorageProviderInfoSchema, e.StorageReadChunkInputSchema, e.StorageTestLocationResultSchema, e.StorageWriteChunkInputSchema, e.StreamCodecSchema, e.StreamFormatSchema, e.StreamNetworkStatsSchema, e.StreamParamsOptionsSchema, e.StreamParamsStatusSchema, e.StreamProfileConfigSchema, e.StreamProfileOptionsSchema, e.StreamProfilePatchSchema, e.StreamProfileSchema, e.StreamSourceEntrySchema, e.StreamSourceSchema, e.SubscribeAudioChunksInputSchema, e.SubscribeAudioChunksResultSchema, e.SubscribeFramesInputSchema, e.SubscribeFramesResultSchema, e.SwitchStatusSchema, e.SystemMetricsSchema, e.SystemMirror, e.TAXONOMY_COLORS, e.TIMEZONES, e.TamperStatusSchema, e.TankStatusSchema, e.TargetKindCapsSchema, e.TargetKindLevelSchema, e.TargetKindSchema, e.TargetSchema, e.TemperatureSensorStatusSchema, e.TerminalProfileInfoSchema, e.TerminalSessionInfoSchema, e.TestConnectionResultSchema, e.TestResultSchema, e.TimelapseRuleInputSchema, e.TimelapseRulePatchSchema, e.TimelapseRuleSchema, e.TimelapseTemplateSchema, e.ToastSchema, e.TokenScopeSchema, e.TopologyNodeSchema, e.TopologyProcessSchema, e.TopologyServiceSchema, e.TrackCascadeCountsSchema, e.TrackEnvelopeSchema, e.TrackProjectionSchema, e.TrackSchema, e.TrackStateSchema, e.TrackZoneFilterSchema, e.TrackedDetectionSchema, e.TurnServerSchema, e.UNIT_TABLE, e.UnifiedBrokerInfoSchema, e.UnitConversionError, e.UpdateIntegrationInputSchema, e.UpdateStatusSchema, e.UpdateUserInputSchema, e.UserRecordSchema, e.UserSummarySchema, e.VacuumControlStatusSchema, e.VacuumStateSchema, e.ValveStateSchema, e.ValveStatusSchema, e.VibrationStatusSchema, e.VideoEncodeSchema, e.WELL_KNOWN_TABS, e.WELL_KNOWN_TAB_MAP, e.WaterHeaterStatusSchema, e.WeatherStatusSchema, e.WebrtcStreamChoiceSchema, e.WebrtcStreamTargetSchema, e.WhiteBalanceModeSchema, e.WidgetHostEnum, e.WidgetLoginMethodSchema, e.WidgetMetadataSchema, e.WidgetRemoteSchema, e.WidgetSizeEnum, e.YAMNET_TO_MACRO, e.ZoneCrossingDirectionSchema, e.ZoneCrossingSchema, e.ZoneKindEnum, e.ZoneRuleModeEnum, e.ZoneRuleSchema, o = e.ZoneRuleStageEnum, e.ZoneRulesArraySchema, e.ZoneSchema, e.ZoneScopeBreakdownSchema, e.accessoriesCapability, e.accessoryStableId, e.addonPagesCapability, e.addonPagesSourceCapability, e.addonRoutesCapability, e.addonSettingsCapability, e.addonWidgetsCapability, e.addonWidgetsSourceCapability, e.addonsCapability, e.adminUiCapability, e.airQualitySensorCapability, e.alarmPanelCapability, e.alertsCapability, e.ambientLightSensorCapability, e.applyTransform, e.asBoolean, e.asJsonArray, e.asJsonObject, e.asNumber, e.asString, e.audioAnalysisCapability, e.audioAnalyzerCapability, e.audioCodecCapability, e.audioMetricsCapability, e.authProviderCapability, e.autoAssignProfiles, e.automationControlCapability, e.backupCapability, e.batteryCapability, e.bestLocationMatch, e.binaryCapability, e.bindAddonActions, e.brightnessCapability, e.brokerCapability, e.buildAddonRouteProvider, e.buildEventKindDescriptor, e.buildModelVariantGroups, e.buildNcTaxonomy, e.buildStreamParamsConfigSchema, e.buttonCapability, e.cameraCredentialsCapability, e.cameraPipelineConfigCapability, e.cameraStreamsCapability, e.canConvertUnit, e.carbonMonoxideCapability, e.cellsToRects, e.classifyStream, e.classifyStreams, e.climateControlCapability, e.collectHydratedFieldEntries, e.collectHydratedFieldValues, e.colorCapability, e.colorForKind, e.compileExpression, e.compileExpressionSafe, e.connectivityCapability, e.consumablesCapability, e.contactCapability, e.controlCapability, e.convertUnit, e.cosineSimilarity, e.coverCapability, e.createDeviceProxy, e.createDurableState, e.createEvent, e.createExpressionScope, e.createLazyTrpcSource, e.createMirrorSource, e.createRuntimeStateBridge, e.createSliceHandle, e.createSystemProxy, e.customAction, e.customModelRegistryCapability, e.dataStoreProviderCapability, e.dayNightCapability, e.decoderCapability, e.defaultDeviceFor, e.defineCustomActions, e.deriveRecordingMode, e.describeModelVariant, e.detectionPipelineCapability, e.deviceAdoptionCapability, e.deviceBackendToFormat, e.deviceCustomAction, e.deviceDiscoveryCapability, e.deviceExportCapability, e.deviceManagerCapability, e.deviceMatchesProfile, e.deviceOpsCapability, e.deviceProviderCapability, e.deviceStateCapability, e.deviceStatusCapability, e.doorbellCapability, e.embeddingEncoderCapability, e.emitDownForOwnedCaps, e.emitReadiness, e.encodeProfileFromStreamShape, e.enumSensorCapability, e.enumerateInferenceDevices, e.enumerateItemArrayFields, e.enumerateSchemaFields, e.errMsg, e.evaluateAst, e.evaluateLinkExpression, e.evaluateZoneRules, e.event, e.eventEmitterCapability, e.eventsCapability, e.expandCapMethods, e.extractNestedAddonId, e.extractSourceInfoFromMetadata, e.faceGalleryCapability, e.fanControlCapability, e.featureProbeCapability, e.filesystemBrowseCapability, e.findTimezone, e.floodCapability, e.formatForBackend, e.formatForRuntime, e.gasCapability, e.getAudioMacroClassIds, e.getByPath, e.getCapsByProviderKind, e.getTaxonomyEntry, e.hasMotionTrigger, e.hfModelUrl, e.htmlToText, e.humidifierCapability, e.humiditySensorCapability, e.hydrateSchema, e.imageCapability, e.imageSettingsCapability, e.integrationsCapability, e.intercomCapability, e.isAgentOnlyPlacement, e.isArrayOutputSchema, e.isBaseConditionKey, e.isCollectionArrayMethod, e.isDeployableToAgent, e.isDeviceConfigCap, e.isEvent, e.isNode, e.isObjectInput, e.isVoidInput, e.jobKindSchema, e.kebabToCamel, e.knownValues, e.lawnMowerControlCapability, e.lifecycleJobSchema, e.lifecycleJobScopeSchema, e.lifecycleJobStateSchema, e.lifecycleTaskSchema, e.llmCapability, e.llmRuntimeCapability, e.localNetworkCapability, e.locationSimilarity, e.lockControlCapability, e.logDestinationCapability, e.logLevelAtMost, e.loginMethodCapability, e.looseSchema, e.makeProfileBrokerId, e.makeSourceBrokerId, e.mapAudioLabelToMacro, e.markdownToHtmlLite, e.markdownToText, e.maskUrlCredentials, e.mediaPlayerCapability, e.mergeSourceInfo, e.meshNetworkCapability, e.method, e.metricsProviderCapability, e.modelConvertCapability, e.modelDistributorCapability, e.modelFormatForRuntime, e.motionCapability, e.motionDetectionCapability, e.motionTriggerCapability, e.motionZonesCapability, e.mqttBrokerCapability, e.nativeObjectDetectionCapability, e.networkAccessCapability, e.networkQualityCapability, e.nodePin, e.nodesCapability, e.normalizeAddonInitResult, e.normalizeUnit, e.notificationOutputCapability, e.notificationRulesCapability, e.notifierCapability, e.numericSensorCapability, e.oauthIntegrationCapability, e.objectInputDeclaresAddonId, e.osdCapability, e.parseCameraStreamConfig, e.parseExpression, e.parseJsonArray, e.parseJsonObject, e.parseJsonUnknown, e.parseProfileBrokerId, e.parseStreamParamsFormPatch, e.petFeederCapability, e.pickAccessoryControl, e.pickPreferredRtspEntry, e.pickerForCondition, e.pipelineAnalyticsCapability, e.pipelineExecutorCapability, e.pipelineOrchestratorCapability, e.pipelineRunnerCapability, e.plateGalleryCapability, e.platformProbeCapability, e.powerMeterCapability, e.prepareNotification, e.presenceCapability, e.pressureSensorCapability, e.privacyMaskCapability, e.procedureAuthKey, e.ptzAutotrackCapability, e.ptzCapability, e.pythonScriptForBackend, e.readNodePin, e.readinessKey, e.rebootCapability, e.recordingCapability, e.recordingExportCapability, e.rectsToCells, e.requiresPython, e.resolveAddonExecution, e.resolveAddonGroup, e.resolveAddonPlacement, e.resolveAddonRuntime, e.resolveCapMount, e.resolveDetectionRuntime, e.resolveDeviceControlKind, e.resolveDeviceProfile, e.resolveFormat, s = e.resolveHydratedFieldValue, e.resolveModelFormat, e.resolveMutate, e.resolveRunnerId, e.resolveScrubThumbnailGeometry, e.resolveVariantModelId, e.runInferenceStep, e.runtimeDevices, e.sceneMonitorCapability, e.scopeKey, e.scoreRuntimes, e.scriptRunnerCapability, e.selectAssignedProfileSlots, e.serverManagementCapability, e.setByPath, e.settingsStoreCapability, e.sleep, e.sleepCancellable, e.smokeCapability, e.smtpProviderCapability, e.snapshotCapability, e.ssoBridgeCapability, e.startReachabilityPoll, e.storageCapability, e.storageEvictableCapability, e.storageProviderCapability, e.streamBrokerCapability, e.streamCatalogCapability, e.streamParamsCapability, e.streamPixels, e.streamQualityLabel, e.subKindsOf, e.supportedRuntimes, e.switchCapability, e.synthesizeSourceInfo, e.systemCapability, e.tamperCapability, e.taskLogEntrySchema, e.taskPhaseSchema, e.taskTargetSchema, e.temperatureSensorCapability, e.terminalSessionCapability, e.textToHtml, e.toDeviceSummary, e.toExpressionValue, e.toStreamSourceEntry, e.toastCapability, e.tokenize, e.transcodeBody, e.tryConvertUnit, e.turnProviderCapability, e.unitDimension, e.unitsForDimension, e.updateCapability, e.userManagementCapability, e.userPasskeysCapability, e.vacuumControlCapability, e.validateExpressionSource, e.valveCapability, e.vibrationCapability, e.videoclipsCapability, e.viewerUiCapability, e.waterHeaterCapability, e.weatherCapability, e.webrtcClientHintsSchema, e.webrtcSessionCapability, e.wiringAddonHealthSchema, e.wiringHealthSnapshotSchema, e.wiringNodeHealthSchema, e.wiringProbeKindSchema, e.wiringProbeResultSchema, e.zodEntriesToConfigUI, e.zoneAnalyticsCapability, e.zoneRulesCapability, e.zonesCapability, e.default;
|
|
20
|
-
}, l = i.share["default:@camstack/types"];
|
|
21
|
-
l === void 0 ? n.then(() => {
|
|
22
|
-
if (l = i.share["default:@camstack/types"], l === void 0) throw Error("[Module Federation] Shared module @camstack/types was imported before federation bootstrap finished.");
|
|
23
|
-
c(l);
|
|
24
|
-
}) : c(l);
|
|
25
|
-
//#endregion
|
|
26
|
-
export { o as n, s as r, a as t };
|