@camstack/addon-pipeline-orchestrator 1.2.129 → 1.2.131
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/_stub.js +2 -2
- package/dist/{_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-ChSa_Eh-.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-BtVE5X1U.mjs} +3 -3
- package/dist/_virtual_mf___mfe_internal__addon_pipeline_orchestrator_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-BKsbMbW-.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-5zaVvfn4.mjs +26 -0
- package/dist/{hostInit-DomAMTeV.mjs → hostInit-PaEbtfzN.mjs} +3 -3
- package/dist/index.js +234 -73
- package/dist/index.mjs +234 -73
- 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-BlzMZjfz.mjs +0 -26
- package/dist/_virtual_mf___mfe_internal__addon_pipeline_orchestrator_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-DHxtMqJ3.mjs +0 -26
package/dist/index.mjs
CHANGED
|
@@ -8944,6 +8944,13 @@ var MediaRelocateModeSchema = _enum([
|
|
|
8944
8944
|
]);
|
|
8945
8945
|
var RelocateMediaInputSchema = object({
|
|
8946
8946
|
toLocationId: string(),
|
|
8947
|
+
/**
|
|
8948
|
+
* Restrict the pass to rows currently on this location. Omitted / `'*'` =
|
|
8949
|
+
* every row that is not already on `toLocationId` (the historical
|
|
8950
|
+
* behaviour). A named source is what a from→to migration needs: without it
|
|
8951
|
+
* "move events off disk 2" also emptied disk 1.
|
|
8952
|
+
*/
|
|
8953
|
+
fromLocationId: string().optional(),
|
|
8947
8954
|
throttleMbps: number().min(1).max(1e3).optional(),
|
|
8948
8955
|
/** Omitted = `move`, the pre-existing behaviour. */
|
|
8949
8956
|
mode: MediaRelocateModeSchema.optional()
|
|
@@ -9011,6 +9018,19 @@ var StorageMigrationDestinationsSchema = object({
|
|
|
9011
9018
|
galleryMedia: string().min(1).optional()
|
|
9012
9019
|
}).refine((value) => Object.keys(value).length > 0, { message: "select at least one storage class" });
|
|
9013
9020
|
/**
|
|
9021
|
+
* Optional named source per class. Omitted = the class's current default
|
|
9022
|
+
* (the historical behaviour). A named source that is NOT the default is a
|
|
9023
|
+
* drain of that disk: bytes move, the default stays, and the source is
|
|
9024
|
+
* disabled when the move finishes.
|
|
9025
|
+
*/
|
|
9026
|
+
var StorageMigrationSourcesSchema = object({
|
|
9027
|
+
recordings: string().min(1).optional(),
|
|
9028
|
+
recordingsLow: string().min(1).optional(),
|
|
9029
|
+
eventMedia: string().min(1).optional(),
|
|
9030
|
+
backups: string().min(1).optional(),
|
|
9031
|
+
galleryMedia: string().min(1).optional()
|
|
9032
|
+
}).optional();
|
|
9033
|
+
/**
|
|
9014
9034
|
* How a migration sequences the cutover against the byte move.
|
|
9015
9035
|
*
|
|
9016
9036
|
* - `blocking` — the historical order: pause, move every byte, repoint,
|
|
@@ -9032,6 +9052,8 @@ var StorageMigrationModeSchema = _enum(["blocking", "nonBlocking"]);
|
|
|
9032
9052
|
/** Shared input for planning and starting an orchestrated storage migration. */
|
|
9033
9053
|
var StorageMigrationInputSchema = object({
|
|
9034
9054
|
destinations: StorageMigrationDestinationsSchema,
|
|
9055
|
+
/** Omitted = each class's current default. */
|
|
9056
|
+
sources: StorageMigrationSourcesSchema,
|
|
9035
9057
|
throttleMbps: number().min(1).max(1e3).optional(),
|
|
9036
9058
|
/** Omitted = `blocking`, which stays the default. */
|
|
9037
9059
|
mode: StorageMigrationModeSchema.optional()
|
|
@@ -9111,6 +9133,13 @@ var StorageMigrationMoveSchema = object({
|
|
|
9111
9133
|
storageClass: StorageMigrationClassSchema,
|
|
9112
9134
|
fromLocationId: string(),
|
|
9113
9135
|
toLocationId: string(),
|
|
9136
|
+
/**
|
|
9137
|
+
* True when `from` was NOT the class default at plan time. The move still
|
|
9138
|
+
* copies bytes, but the default is left alone and the source is disabled
|
|
9139
|
+
* once the copy verifies. Absent on jobs planned before this field existed
|
|
9140
|
+
* — those jobs always repointed, which is `false`.
|
|
9141
|
+
*/
|
|
9142
|
+
freezeSource: boolean().optional(),
|
|
9114
9143
|
moverJobId: string().nullable(),
|
|
9115
9144
|
state: RelocateJobStateSchema.nullable(),
|
|
9116
9145
|
error: string().nullable(),
|
|
@@ -9124,6 +9153,7 @@ var StorageMigrationJobSchema = object({
|
|
|
9124
9153
|
* can tell a seconds-long cutover from a thirty-hour one. */
|
|
9125
9154
|
mode: StorageMigrationModeSchema,
|
|
9126
9155
|
destinations: StorageMigrationDestinationsSchema,
|
|
9156
|
+
sources: StorageMigrationSourcesSchema,
|
|
9127
9157
|
throttleMbps: number(),
|
|
9128
9158
|
moves: array(StorageMigrationMoveSchema),
|
|
9129
9159
|
pauseLeaseId: string().nullable(),
|
|
@@ -9149,6 +9179,7 @@ var StorageMigrationFindingSchema = object({
|
|
|
9149
9179
|
});
|
|
9150
9180
|
var StorageMigrationPlanSchema = object({
|
|
9151
9181
|
destinations: StorageMigrationDestinationsSchema,
|
|
9182
|
+
sources: StorageMigrationSourcesSchema,
|
|
9152
9183
|
/** The mode this plan was built for. A plan is only valid for its mode: the
|
|
9153
9184
|
* `eventMedia` seal gate and the single-cardinality refusal both depend on
|
|
9154
9185
|
* it. */
|
|
@@ -9156,7 +9187,8 @@ var StorageMigrationPlanSchema = object({
|
|
|
9156
9187
|
moves: array(object({
|
|
9157
9188
|
storageClass: StorageMigrationClassSchema,
|
|
9158
9189
|
fromLocationId: string(),
|
|
9159
|
-
toLocationId: string()
|
|
9190
|
+
toLocationId: string(),
|
|
9191
|
+
freezeSource: boolean().optional()
|
|
9160
9192
|
})),
|
|
9161
9193
|
findings: array(StorageMigrationFindingSchema)
|
|
9162
9194
|
});
|
|
@@ -9334,10 +9366,51 @@ var LedgerWalkReportSchema = object({
|
|
|
9334
9366
|
var RelocatableMediaCountSchema = object({ rows: number().int().nonnegative() }).nullable();
|
|
9335
9367
|
var RelocatableMediaCountInputSchema = object({
|
|
9336
9368
|
toLocationId: string().min(1),
|
|
9369
|
+
/** Restrict the count to one source; omitted / `'*'` = every non-target row. */
|
|
9370
|
+
fromLocationId: string().optional(),
|
|
9337
9371
|
/** Omitted = `move`. */
|
|
9338
9372
|
mode: MediaRelocateModeSchema.optional()
|
|
9339
9373
|
});
|
|
9340
9374
|
/**
|
|
9375
|
+
* Operator cleanup of leftover analytics rows, optional debug media, and
|
|
9376
|
+
* ghost ledger entries on frozen footage locations.
|
|
9377
|
+
*
|
|
9378
|
+
* A pass is tens of minutes on a standing backlog. The hub method RETURNS
|
|
9379
|
+
* `{ jobId }` immediately; progress is `cleanupStatus`. Awaiting the work
|
|
9380
|
+
* is how `addons.custom` hit the 60 s UDS deadline while reclaim continued
|
|
9381
|
+
* with no operator-visible status.
|
|
9382
|
+
*/
|
|
9383
|
+
var StorageCleanupPhaseSchema = _enum([
|
|
9384
|
+
"orphans",
|
|
9385
|
+
"debug-media",
|
|
9386
|
+
"ghost-ledger",
|
|
9387
|
+
"done",
|
|
9388
|
+
"failed",
|
|
9389
|
+
"cancelled"
|
|
9390
|
+
]);
|
|
9391
|
+
var StorageCleanupInputSchema = object({
|
|
9392
|
+
/** Also walk motion stills / track filmstrips. Off by default. */
|
|
9393
|
+
includeDebugMedia: boolean().optional() });
|
|
9394
|
+
var StorageCleanupJobSchema = object({
|
|
9395
|
+
jobId: string(),
|
|
9396
|
+
phase: StorageCleanupPhaseSchema,
|
|
9397
|
+
includeDebugMedia: boolean(),
|
|
9398
|
+
orphansReclaimed: number().int().nonnegative(),
|
|
9399
|
+
orphanBytesReclaimed: number().int().nonnegative(),
|
|
9400
|
+
debugMediaReclaimed: number().int().nonnegative(),
|
|
9401
|
+
debugMediaBytesReclaimed: number().int().nonnegative(),
|
|
9402
|
+
ghostsForgotten: number().int().nonnegative(),
|
|
9403
|
+
ghostBytesForgotten: number().int().nonnegative(),
|
|
9404
|
+
/** Short operator-facing line: current collection, pass, or location. */
|
|
9405
|
+
detail: string().nullable(),
|
|
9406
|
+
cancelRequested: boolean(),
|
|
9407
|
+
startedAt: number(),
|
|
9408
|
+
updatedAt: number(),
|
|
9409
|
+
finishedAt: number().nullable(),
|
|
9410
|
+
error: string().nullable()
|
|
9411
|
+
});
|
|
9412
|
+
var StorageCleanupStatusInputSchema = object({ jobId: string().optional() });
|
|
9413
|
+
/**
|
|
9341
9414
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
|
9342
9415
|
* storage a location serves. Defined here (not in `capabilities/storage.cap.ts`)
|
|
9343
9416
|
* so the persisted record schema and the consumer-facing cap can both consume it
|
|
@@ -9365,11 +9438,10 @@ var StorageLocationTypeSchema = string().regex(/^[a-z][a-zA-Z0-9-]*$/);
|
|
|
9365
9438
|
* The default location for a type uses `id === <type>:default` by
|
|
9366
9439
|
* convention (the bare type ref like `'backups'` resolves to it).
|
|
9367
9440
|
*
|
|
9368
|
-
* `isSystem
|
|
9369
|
-
*
|
|
9370
|
-
*
|
|
9371
|
-
*
|
|
9372
|
-
* deleting it is rejected at the cap level.
|
|
9441
|
+
* `isSystem` is a legacy persisted flag. Seed still creates the initial
|
|
9442
|
+
* `<type>:default` locations; the flag is no longer a lock, a badge, or a
|
|
9443
|
+
* prune selector. New writes leave it false. Deletion is gated on uniqueness
|
|
9444
|
+
* / last-enabled, not on this bit.
|
|
9373
9445
|
*/
|
|
9374
9446
|
var StorageLocationSchema = object({
|
|
9375
9447
|
id: string().regex(/^[a-z][a-zA-Z0-9-]*:[a-zA-Z0-9-]+$/),
|
|
@@ -13710,6 +13782,12 @@ method(object({
|
|
|
13710
13782
|
}), _void(), {
|
|
13711
13783
|
kind: "mutation",
|
|
13712
13784
|
auth: "admin"
|
|
13785
|
+
}), method(object({
|
|
13786
|
+
from: string(),
|
|
13787
|
+
to: string()
|
|
13788
|
+
}), object({ moved: number() }), {
|
|
13789
|
+
kind: "mutation",
|
|
13790
|
+
auth: "admin"
|
|
13713
13791
|
}), method(object({
|
|
13714
13792
|
deviceId: number(),
|
|
13715
13793
|
disabled: boolean()
|
|
@@ -19864,46 +19942,6 @@ var RecentTracksPageSchema = object({
|
|
|
19864
19942
|
/** Cursor for the next page, or null when this page is the last. */
|
|
19865
19943
|
nextCursor: string().nullable()
|
|
19866
19944
|
});
|
|
19867
|
-
var LIST_GROUPS_DEFAULT_LIMIT = 40;
|
|
19868
|
-
var LIST_GROUPS_MAX_LIMIT = 100;
|
|
19869
|
-
var AnalyticsGroupRecordSchema = object({
|
|
19870
|
-
id: string(),
|
|
19871
|
-
deviceId: number().int(),
|
|
19872
|
-
openedAt: number().int(),
|
|
19873
|
-
closedAt: number().int(),
|
|
19874
|
-
timestamp: number().int(),
|
|
19875
|
-
memberCount: number().int(),
|
|
19876
|
-
memberTrackIds: array(string()).readonly(),
|
|
19877
|
-
className: string(),
|
|
19878
|
-
classes: array(string()).readonly(),
|
|
19879
|
-
/** Relative event-media path, or null when the group has no picture yet. */
|
|
19880
|
-
mediaUrl: string().nullable(),
|
|
19881
|
-
singleton: boolean()
|
|
19882
|
-
});
|
|
19883
|
-
var AnalyticsGroupMemberSchema = object({
|
|
19884
|
-
trackId: string(),
|
|
19885
|
-
deviceId: number().int(),
|
|
19886
|
-
className: string(),
|
|
19887
|
-
firstSeen: number().int(),
|
|
19888
|
-
lastSeen: number().int(),
|
|
19889
|
-
mediaUrl: string().nullable()
|
|
19890
|
-
});
|
|
19891
|
-
var AnalyticsGroupDetailSchema = AnalyticsGroupRecordSchema.extend({ members: array(AnalyticsGroupMemberSchema).readonly() });
|
|
19892
|
-
var ListGroupsQueryInput = object({
|
|
19893
|
-
/** Devices to merge. An empty array yields `{ groups: [], nextCursor: null }`. */
|
|
19894
|
-
deviceIds: array(number()),
|
|
19895
|
-
/** Window lower bound on `closedAt` (inclusive). */
|
|
19896
|
-
since: number().optional(),
|
|
19897
|
-
/** Window upper bound on `openedAt` (inclusive). */
|
|
19898
|
-
until: number().optional(),
|
|
19899
|
-
limit: number().int().min(1).max(LIST_GROUPS_MAX_LIMIT).default(LIST_GROUPS_DEFAULT_LIMIT),
|
|
19900
|
-
/** Opaque continuation cursor from a previous page's `nextCursor`. */
|
|
19901
|
-
cursor: string().optional()
|
|
19902
|
-
});
|
|
19903
|
-
var ListGroupsPageSchema = object({
|
|
19904
|
-
groups: array(AnalyticsGroupRecordSchema).readonly(),
|
|
19905
|
-
nextCursor: string().nullable()
|
|
19906
|
-
});
|
|
19907
19945
|
var KEY_EVENTS_DEFAULT_LIMIT = 50;
|
|
19908
19946
|
var KEY_EVENTS_MAX_LIMIT = 200;
|
|
19909
19947
|
var KeyEventQueryInput = object({
|
|
@@ -20007,9 +20045,7 @@ var TrackCascadeCountsSchema = object({
|
|
|
20007
20045
|
/** Unassigned plate reads removed (best-effort; plate leg deferred to plate-intelligence). */
|
|
20008
20046
|
plates: number().int(),
|
|
20009
20047
|
/** Per-track CLIP search vectors removed (best-effort). */
|
|
20010
|
-
embeddings: number().int()
|
|
20011
|
-
/** Group membership + group rows removed with their last member (best-effort). */
|
|
20012
|
-
groups: number().int()
|
|
20048
|
+
embeddings: number().int()
|
|
20013
20049
|
});
|
|
20014
20050
|
/** Disk-wins reconcile: media rows whose blobs are gone, then empty tracks. */
|
|
20015
20051
|
var DiskReconcileCountsSchema = object({
|
|
@@ -20179,6 +20215,47 @@ var RebuildStatusSchema = object({
|
|
|
20179
20215
|
/** Present when the pass ended by throwing. */
|
|
20180
20216
|
error: string().nullable()
|
|
20181
20217
|
});
|
|
20218
|
+
/**
|
|
20219
|
+
* Acknowledgement that a debug-media reclaim STARTED.
|
|
20220
|
+
*
|
|
20221
|
+
* The pass is paced at ~2 MB/s over a standing 100 GB — tens of minutes — so
|
|
20222
|
+
* it runs detached and this returns immediately. Awaiting it is how the
|
|
20223
|
+
* `addons.custom` door hit the 60 s UDS deadline while the walk carried on
|
|
20224
|
+
* with no status. Poll {@link pipelineAnalyticsCapability.methods.getMediaReclaimStatus}.
|
|
20225
|
+
*/
|
|
20226
|
+
var MediaReclaimStartResultSchema = object({
|
|
20227
|
+
started: boolean(),
|
|
20228
|
+
/** True when a pass was already running; the new request is ignored. */
|
|
20229
|
+
alreadyRunning: boolean()
|
|
20230
|
+
});
|
|
20231
|
+
var MediaReclaimInputSchema = object({
|
|
20232
|
+
mode: _enum(["report", "reclaim"]).default("report"),
|
|
20233
|
+
scopes: array(_enum(["motion-still", "track-filmstrip"])).min(1).optional(),
|
|
20234
|
+
deviceIds: array(number().int()).min(1).optional(),
|
|
20235
|
+
restart: boolean().optional(),
|
|
20236
|
+
pageSize: number().int().min(50).max(5e3).optional(),
|
|
20237
|
+
maxRowsPerDevice: number().int().min(1).max(5e5).optional(),
|
|
20238
|
+
maxReclaimPerDevice: number().int().min(1).max(5e5).optional(),
|
|
20239
|
+
maxBytesPerRun: number().int().min(1).optional(),
|
|
20240
|
+
budgetMinutes: number().int().min(1).max(720).optional(),
|
|
20241
|
+
throttleBytesPerSec: number().int().min(64 * 1024).optional(),
|
|
20242
|
+
graceMinutes: number().int().min(1).max(10080).optional()
|
|
20243
|
+
});
|
|
20244
|
+
var MediaReclaimStatusSchema = object({
|
|
20245
|
+
running: boolean(),
|
|
20246
|
+
mode: _enum(["report", "reclaim"]).nullable(),
|
|
20247
|
+
totalExamined: number(),
|
|
20248
|
+
totalEligible: number(),
|
|
20249
|
+
totalReclaimed: number(),
|
|
20250
|
+
totalBytesReclaimed: number(),
|
|
20251
|
+
totalRefused: number(),
|
|
20252
|
+
/** Device+scope windows finished in this pass. */
|
|
20253
|
+
devicesDone: number(),
|
|
20254
|
+
complete: boolean().nullable(),
|
|
20255
|
+
startedAtMs: number().nullable(),
|
|
20256
|
+
finishedAtMs: number().nullable(),
|
|
20257
|
+
error: string().nullable()
|
|
20258
|
+
});
|
|
20182
20259
|
var ReplayFrameInputSchema = object({
|
|
20183
20260
|
timestamp: number(),
|
|
20184
20261
|
frame: PipelineRunResultBridge
|
|
@@ -20217,10 +20294,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
20217
20294
|
* stationary registry). Default false: the timeline lists passages,
|
|
20218
20295
|
* not parking records (operator decision, 2026-08-15). */
|
|
20219
20296
|
includeStationary: boolean().optional()
|
|
20220
|
-
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(
|
|
20221
|
-
deviceId: number(),
|
|
20222
|
-
groupId: string().min(1)
|
|
20223
|
-
}), AnalyticsGroupDetailSchema.nullable()), method(object({ deviceId: number() }), _void(), {
|
|
20297
|
+
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
20224
20298
|
kind: "mutation",
|
|
20225
20299
|
auth: "admin"
|
|
20226
20300
|
}), method(DeviceEventQueryInput, array(MotionEventSchema).readonly()), method(ObjectEventQueryInput, array(ObjectEventSchema).readonly()), method(DeviceEventQueryInput, array(AudioEventSchema).readonly()), method(object({ deviceId: number() }), array(EventKindDescriptorSchema).readonly()), method(object({ deviceIds: array(number()).min(1).max(200) }), array(EventKindsForDeviceSchema).readonly()), method(object({
|
|
@@ -20320,6 +20394,12 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
20320
20394
|
}), method(OpsLogQueryInputSchema, array(OpsLogEntrySchema).readonly(), {
|
|
20321
20395
|
kind: "query",
|
|
20322
20396
|
auth: "admin"
|
|
20397
|
+
}), method(MediaReclaimInputSchema, MediaReclaimStartResultSchema, {
|
|
20398
|
+
kind: "mutation",
|
|
20399
|
+
auth: "admin"
|
|
20400
|
+
}), method(object({}), MediaReclaimStatusSchema, {
|
|
20401
|
+
kind: "query",
|
|
20402
|
+
auth: "admin"
|
|
20323
20403
|
}), method(object({ deviceIds: array(number()).optional() }), TrainingExportSummarySchema, {
|
|
20324
20404
|
kind: "query",
|
|
20325
20405
|
auth: "admin"
|
|
@@ -22771,7 +22851,13 @@ method(StorageMigrationInputSchema, StorageMigrationPlanSchema, { auth: "admin"
|
|
|
22771
22851
|
}), method(object({}), array(StorageMigrationMoverSchema).readonly(), { auth: "admin" }), method(object({}), array(StorageMigrationResidueSchema).readonly(), { auth: "admin" }), method(StorageMigrationDrainInputSchema, object({ jobId: string() }), {
|
|
22772
22852
|
kind: "mutation",
|
|
22773
22853
|
auth: "admin"
|
|
22774
|
-
})
|
|
22854
|
+
}), method(StorageCleanupInputSchema, object({ jobId: string() }), {
|
|
22855
|
+
kind: "mutation",
|
|
22856
|
+
auth: "admin"
|
|
22857
|
+
}), method(StorageCleanupStatusInputSchema, StorageCleanupJobSchema.nullable(), { auth: "admin" }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
|
|
22858
|
+
kind: "mutation",
|
|
22859
|
+
auth: "admin"
|
|
22860
|
+
}), method(object({}), array(StorageMigrationJobSchema).readonly(), { auth: "admin" });
|
|
22775
22861
|
var ProviderInfoSchema = discriminatedUnion("shouldSaveDiskSpace", [object({
|
|
22776
22862
|
providerId: string().min(1),
|
|
22777
22863
|
displayName: string().min(1),
|
|
@@ -28149,6 +28235,33 @@ var RecordingRebalanceInputSchema = object({
|
|
|
28149
28235
|
minMoveGb: number().min(0).optional()
|
|
28150
28236
|
});
|
|
28151
28237
|
/**
|
|
28238
|
+
* Operator-facing placement of one camera onto a recordings location.
|
|
28239
|
+
*
|
|
28240
|
+
* `pinLocationId` is the operator instruction: a location id, or `null` for
|
|
28241
|
+
* Auto (the planner may move this camera). `locationId` is where high/mid
|
|
28242
|
+
* currently write — the plan, which may disagree with the pin when Auto.
|
|
28243
|
+
*/
|
|
28244
|
+
var RecordingDevicePlacementSchema = object({
|
|
28245
|
+
deviceId: number().int(),
|
|
28246
|
+
profile: string(),
|
|
28247
|
+
locationId: string()
|
|
28248
|
+
});
|
|
28249
|
+
var RecordingDevicePinSchema = object({
|
|
28250
|
+
deviceId: number().int(),
|
|
28251
|
+
/** Recordings-class location this camera is pinned to. */
|
|
28252
|
+
locationId: string()
|
|
28253
|
+
});
|
|
28254
|
+
var RecordingPlacementViewSchema = object({
|
|
28255
|
+
assignments: array(RecordingDevicePlacementSchema),
|
|
28256
|
+
pins: array(RecordingDevicePinSchema),
|
|
28257
|
+
defaultLocations: record(string(), string())
|
|
28258
|
+
});
|
|
28259
|
+
var RecordingSetDevicePlacementInputSchema = object({
|
|
28260
|
+
deviceId: number().int(),
|
|
28261
|
+
/** `null` = Auto. Otherwise a `recordings:*` location id. */
|
|
28262
|
+
locationId: string().nullable()
|
|
28263
|
+
});
|
|
28264
|
+
/**
|
|
28152
28265
|
* Result of locating footage at a wall-clock instant for one device/profile.
|
|
28153
28266
|
* `segment` carries the covering segment's window; `gap` reports the forward
|
|
28154
28267
|
* nearest covered edge (`null` past the end of footage / when none exists)
|
|
@@ -28374,6 +28487,12 @@ method(object({
|
|
|
28374
28487
|
}), method(RecordingRebalanceInputSchema, RecordingRebalancePlanSchema, {
|
|
28375
28488
|
kind: "mutation",
|
|
28376
28489
|
auth: "admin"
|
|
28490
|
+
}), method(object({}), RecordingPlacementViewSchema, {
|
|
28491
|
+
kind: "query",
|
|
28492
|
+
auth: "admin"
|
|
28493
|
+
}), method(RecordingSetDevicePlacementInputSchema, object({ ok: literal(true) }), {
|
|
28494
|
+
kind: "mutation",
|
|
28495
|
+
auth: "admin"
|
|
28377
28496
|
});
|
|
28378
28497
|
/**
|
|
28379
28498
|
* `recording-export` cap — render a footage time range into a single downloadable
|
|
@@ -31828,6 +31947,12 @@ Object.freeze({
|
|
|
31828
31947
|
addonId: null,
|
|
31829
31948
|
access: "delete"
|
|
31830
31949
|
},
|
|
31950
|
+
"deviceManager.renameLocation": {
|
|
31951
|
+
capName: "device-manager",
|
|
31952
|
+
capScope: "system",
|
|
31953
|
+
addonId: null,
|
|
31954
|
+
access: "create"
|
|
31955
|
+
},
|
|
31831
31956
|
"deviceManager.runDeviceAction": {
|
|
31832
31957
|
capName: "device-manager",
|
|
31833
31958
|
capScope: "system",
|
|
@@ -33520,19 +33645,19 @@ Object.freeze({
|
|
|
33520
33645
|
addonId: null,
|
|
33521
33646
|
access: "view"
|
|
33522
33647
|
},
|
|
33523
|
-
"pipelineAnalytics.
|
|
33648
|
+
"pipelineAnalytics.getKeyEvents": {
|
|
33524
33649
|
capName: "pipeline-analytics",
|
|
33525
33650
|
capScope: "device",
|
|
33526
33651
|
addonId: null,
|
|
33527
33652
|
access: "view"
|
|
33528
33653
|
},
|
|
33529
|
-
"pipelineAnalytics.
|
|
33654
|
+
"pipelineAnalytics.getKeyEventsBatch": {
|
|
33530
33655
|
capName: "pipeline-analytics",
|
|
33531
33656
|
capScope: "device",
|
|
33532
33657
|
addonId: null,
|
|
33533
33658
|
access: "view"
|
|
33534
33659
|
},
|
|
33535
|
-
"pipelineAnalytics.
|
|
33660
|
+
"pipelineAnalytics.getMediaReclaimStatus": {
|
|
33536
33661
|
capName: "pipeline-analytics",
|
|
33537
33662
|
capScope: "device",
|
|
33538
33663
|
addonId: null,
|
|
@@ -33622,12 +33747,6 @@ Object.freeze({
|
|
|
33622
33747
|
addonId: null,
|
|
33623
33748
|
access: "view"
|
|
33624
33749
|
},
|
|
33625
|
-
"pipelineAnalytics.listGroups": {
|
|
33626
|
-
capName: "pipeline-analytics",
|
|
33627
|
-
capScope: "device",
|
|
33628
|
-
addonId: null,
|
|
33629
|
-
access: "view"
|
|
33630
|
-
},
|
|
33631
33750
|
"pipelineAnalytics.listOpsLog": {
|
|
33632
33751
|
capName: "pipeline-analytics",
|
|
33633
33752
|
capScope: "device",
|
|
@@ -33712,6 +33831,12 @@ Object.freeze({
|
|
|
33712
33831
|
addonId: null,
|
|
33713
33832
|
access: "create"
|
|
33714
33833
|
},
|
|
33834
|
+
"pipelineAnalytics.reclaimDebugMedia": {
|
|
33835
|
+
capName: "pipeline-analytics",
|
|
33836
|
+
capScope: "device",
|
|
33837
|
+
addonId: null,
|
|
33838
|
+
access: "create"
|
|
33839
|
+
},
|
|
33715
33840
|
"pipelineAnalytics.reconcileFromDisk": {
|
|
33716
33841
|
capName: "pipeline-analytics",
|
|
33717
33842
|
capScope: "device",
|
|
@@ -34636,6 +34761,12 @@ Object.freeze({
|
|
|
34636
34761
|
addonId: null,
|
|
34637
34762
|
access: "view"
|
|
34638
34763
|
},
|
|
34764
|
+
"recording.getPlacement": {
|
|
34765
|
+
capName: "recording",
|
|
34766
|
+
capScope: "system",
|
|
34767
|
+
addonId: null,
|
|
34768
|
+
access: "view"
|
|
34769
|
+
},
|
|
34639
34770
|
"recording.getPlaybackManifest": {
|
|
34640
34771
|
capName: "recording",
|
|
34641
34772
|
capScope: "system",
|
|
@@ -34762,6 +34893,12 @@ Object.freeze({
|
|
|
34762
34893
|
addonId: null,
|
|
34763
34894
|
access: "create"
|
|
34764
34895
|
},
|
|
34896
|
+
"recording.setDevicePlacement": {
|
|
34897
|
+
capName: "recording",
|
|
34898
|
+
capScope: "system",
|
|
34899
|
+
addonId: null,
|
|
34900
|
+
access: "create"
|
|
34901
|
+
},
|
|
34765
34902
|
"recording.startStorageMigrationMove": {
|
|
34766
34903
|
capName: "recording",
|
|
34767
34904
|
capScope: "system",
|
|
@@ -35206,12 +35343,36 @@ Object.freeze({
|
|
|
35206
35343
|
addonId: null,
|
|
35207
35344
|
access: "create"
|
|
35208
35345
|
},
|
|
35346
|
+
"storageMigration.cleanupCancel": {
|
|
35347
|
+
capName: "storage-migration",
|
|
35348
|
+
capScope: "system",
|
|
35349
|
+
addonId: null,
|
|
35350
|
+
access: "create"
|
|
35351
|
+
},
|
|
35352
|
+
"storageMigration.cleanupStart": {
|
|
35353
|
+
capName: "storage-migration",
|
|
35354
|
+
capScope: "system",
|
|
35355
|
+
addonId: null,
|
|
35356
|
+
access: "create"
|
|
35357
|
+
},
|
|
35358
|
+
"storageMigration.cleanupStatus": {
|
|
35359
|
+
capName: "storage-migration",
|
|
35360
|
+
capScope: "system",
|
|
35361
|
+
addonId: null,
|
|
35362
|
+
access: "view"
|
|
35363
|
+
},
|
|
35209
35364
|
"storageMigration.drain": {
|
|
35210
35365
|
capName: "storage-migration",
|
|
35211
35366
|
capScope: "system",
|
|
35212
35367
|
addonId: null,
|
|
35213
35368
|
access: "create"
|
|
35214
35369
|
},
|
|
35370
|
+
"storageMigration.history": {
|
|
35371
|
+
capName: "storage-migration",
|
|
35372
|
+
capScope: "system",
|
|
35373
|
+
addonId: null,
|
|
35374
|
+
access: "view"
|
|
35375
|
+
},
|
|
35215
35376
|
"storageMigration.movers": {
|
|
35216
35377
|
capName: "storage-migration",
|
|
35217
35378
|
capScope: "system",
|
|
@@ -37208,11 +37369,6 @@ Object.freeze({
|
|
|
37208
37369
|
form: "single",
|
|
37209
37370
|
optional: true
|
|
37210
37371
|
}],
|
|
37211
|
-
"pipelineAnalytics.getGroup": [{
|
|
37212
|
-
name: "deviceId",
|
|
37213
|
-
form: "single",
|
|
37214
|
-
optional: false
|
|
37215
|
-
}],
|
|
37216
37372
|
"pipelineAnalytics.getKeyEvents": [{
|
|
37217
37373
|
name: "deviceId",
|
|
37218
37374
|
form: "single",
|
|
@@ -37278,11 +37434,6 @@ Object.freeze({
|
|
|
37278
37434
|
form: "single",
|
|
37279
37435
|
optional: false
|
|
37280
37436
|
}],
|
|
37281
|
-
"pipelineAnalytics.listGroups": [{
|
|
37282
|
-
name: "deviceIds",
|
|
37283
|
-
form: "array",
|
|
37284
|
-
optional: false
|
|
37285
|
-
}],
|
|
37286
37437
|
"pipelineAnalytics.listOpsLog": [{
|
|
37287
37438
|
name: "deviceId",
|
|
37288
37439
|
form: "single",
|
|
@@ -37328,6 +37479,11 @@ Object.freeze({
|
|
|
37328
37479
|
form: "single",
|
|
37329
37480
|
optional: true
|
|
37330
37481
|
}],
|
|
37482
|
+
"pipelineAnalytics.reclaimDebugMedia": [{
|
|
37483
|
+
name: "deviceIds",
|
|
37484
|
+
form: "array",
|
|
37485
|
+
optional: true
|
|
37486
|
+
}],
|
|
37331
37487
|
"pipelineAnalytics.reconcileFromDisk": [{
|
|
37332
37488
|
name: "deviceId",
|
|
37333
37489
|
form: "single",
|
|
@@ -37693,6 +37849,11 @@ Object.freeze({
|
|
|
37693
37849
|
form: "single",
|
|
37694
37850
|
optional: false
|
|
37695
37851
|
}],
|
|
37852
|
+
"recording.setDevicePlacement": [{
|
|
37853
|
+
name: "deviceId",
|
|
37854
|
+
form: "single",
|
|
37855
|
+
optional: false
|
|
37856
|
+
}],
|
|
37696
37857
|
"recording.startStorageMigrationMove": [{
|
|
37697
37858
|
name: "deviceId",
|
|
37698
37859
|
form: "single",
|
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-BtVE5X1U.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.131",
|
|
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.ACCESS_ROLES, e.ALEXA_EGRESS_PROFILE, e.ALL_CAPABILITY_DEFINITIONS, e.APPLE_SA_TO_MACRO, e.AUDIO_ANALYSIS_CAP_NAME, e.AUDIO_BACKEND_CHOICES, e.AUDIO_MACRO_LABELS, e.AUDIO_PRESETS, e.AccessoriesStatusSchema, e.AccessoryKind, e.AddBrokerInputSchema, e.AddonAutoUpdateSchema, e.AddonListItemSchema, e.AddonPageDeclarationSchema, e.AddonPageInfoSchema, e.AdoptionAdoptInputSchema, e.AdoptionAdoptResultSchema, e.AdoptionCandidateResultSchema, e.AdoptionFilterSchema, e.AdoptionGetCandidateInputSchema, e.AdoptionJobSchema, e.AdoptionJobStateSchema, e.AdoptionListCandidatesInputSchema, e.AdoptionListCandidatesOutputSchema, e.AdoptionOutcomeSchema, 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.AnalyticsGroupDetailSchema, e.AnalyticsGroupMemberSchema, e.AnalyticsGroupRecordSchema, 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.AutomationActionSchema, e.AutomationConditionOperatorSchema, e.AutomationConditionSchema, e.AutomationControlStatusSchema, e.AutomationRecipeSchema, e.AutomationTriggerSchema, e.AvailableIntegrationTypeSchema, e.BACKEND_TO_FORMAT, e.BASE_LIVE_EGRESS_PROFILE, e.BATTERY_DEVICE_PROFILE, e.BATTERY_UNREACHABLE_AFTER_MS, e.BOOT_RECOVERY_BACKOFF_MS, 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.BulkRecordSchema, e.CAMERA_SWITCH_CATALOG, e.CAMERA_SWITCH_ORDER, 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.CLASS_MAP_MACRO_TARGETS, e.CLUSTER_MODEL_SCOPED_STEPS, e.CLUSTER_MODEL_SECTION_ID, e.CLUSTER_STEP_SETTING_FIELDS, e.COCO_80_LABELS, e.COCO_TO_MACRO, e.CONNECTION_TEST_TIMEOUT_MS, e.CORE_BLOCKS_ADDON_ID, e.CORE_BLOCK_ADDON_PREFIX, 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.CameraOccupancySnapshotForDeviceSchema, e.CameraRecordingModeSchema, e.CameraRecordingStatusSchema, e.CameraSourceStatusSchema, e.CameraSourceStreamSchema, e.CameraStatusDegradationReasonSchema, e.CameraStatusDegradationSchema, e.CameraStatusSchema, e.CameraStatusStageSchema, e.CameraStreamSchema, e.CameraSwitchAuthoritySchema, e.CameraSwitchGroupSchema, e.CameraSwitchIdSchema, e.CameraSwitchSchema, e.CameraSwitchUnavailableReasonSchema, 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.ConnectionTestDescriptorSchema, e.ConnectionTestInputSchema, e.ConnectionTestOutcomeSchema, e.ConnectivityStatusSchema, e.ConsumableItemSchema, e.ConsumablesStatusSchema, e.ContactStatusSchema, e.ControlKindSchema, e.ControlStatusSchema, e.ConvertArtifactSchema, e.ConvertResultSchema, e.ConvertTargetSchema, e.CoreBlockCompileResultSchema, e.CoreBlockInputSchema, e.CoreBlockPlacementSchema, e.CoreBlockSchema, e.CoreBlockStatusSchema, 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.DECLARED_DEVICE_SWEEP_LIMIT, e.DECLARED_INTEGRATION_FIXED_KEY, e.DEFAULT_ADDON_PLACEMENT, e.DEFAULT_AUDIO_ANALYZER_CONFIG, e.DEFAULT_CLUSTER_STEP_MODELS, e.DEFAULT_CLUSTER_STEP_SETTINGS, e.DEFAULT_DECODER_HWACCEL_CONFIG, e.DEFAULT_DETAIL_CROP_CONVENTION, e.DEFAULT_EVENTS_BAND_BUFFER_SEC, e.DEFAULT_EVENT_COLOR, e.DEFAULT_FEATURES, e.DEFAULT_FIRST_SIGHTING_FRESHNESS_MS, e.DEFAULT_MIN_LANDMARK_FACE_SIZE_PX, e.DEFAULT_NATIVE_LEASE_SETTINGS, e.DEFAULT_POOL_MEMORY_POLICY, e.DEFAULT_RECORDING_PROFILES, e.DEFAULT_RETENTION, e.DEFAULT_RUNTIME_STATE_DURABILITY, e.DEFAULT_TIMELAPSE_PREVIEW_TEXT, e.DEFAULT_TOKEN_EXPIRY, e.DETAIL_CROP_PADDING_FIELD, e.DETAIL_CROP_PADDING_KEY, e.DETAIL_CROP_SECTION_ID, e.DETAIL_CROP_SQUARE_KEY, e.DETECTION_MACRO_CLASSES, e.DETECTION_PIPELINE_CAP_NAME, e.DEVICE_BACKEND_TO_FORMAT, e.DEVICE_CAP_NAMES, e.DEVICE_CHILDREN_BATCH_MAX, e.DEVICE_PROFILES, e.DEVICE_SCOPED_CAPS, e.DEVICE_SETTINGS_CONTRIBUTION_METHODS, e.DEVICE_STATE_READERS, e.DEVICE_STATUS_METHOD, e.DEVICE_TYPE_CONTROL_KIND, e.DEVICE_TYPE_INFO, e.DataStoreEngineInfoSchema, e.DayNightModeSchema, e.DayNightOptionsSchema, e.DayNightSettingsPatchSchema, e.DayNightStatusSchema, e.DeclaredDevices, e.DecodedAudioChunkSchema, e.DecodedFrameSchema, e.DecoderSessionConfigSchema, e.DecoderStatsSchema, e.DeleteIntegrationResultSchema, e.DetailCropConventionSchema, e.DetectionCatalogClassMapSchema, e.DetectionSourceSchema, e.DeviceCodeSeveritySchema, e.DeviceConfig, e.DeviceDiscoveryStatusSchema, e.DeviceExportExposeInputSchema, e.DeviceExportStatusSchema, e.DeviceExportUnexposeInputSchema, e.DeviceFeature, e.DeviceInfoSchema, e.DeviceNetworkStatsSchema, e.DeviceRole, e.DeviceRuntimeState, e.DeviceSelectorSchema, e.DeviceStatusSchema, e.DeviceType, e.DiagnosticIdSchema, e.DiagnosticWindowPatchSchema, e.DiagnosticWindowSchema, e.DiscoveredChildDeviceSchema, e.DiscoveredChildStatusSchema, e.DiscoveredDeviceSchema, e.DiscoveredTargetSchema, e.DiskReconcileJobSchema, e.DisposerChain, e.DoorbellPressEventSchema, e.DoorbellStatusSchema, e.EVENTFUL_CAP_NAMES, e.EVENT_KIND_BY_CAP, e.EVENT_PAD_MS, e.EVENT_TAXONOMY, e.EXPORT_DENSE_MAX_RANGES, e.EXPRESSION_BUILTINS, e.EXPRESSION_BUILTIN_NAMES, e.EXPRESSION_COMPILE_CACHE_CAPACITY, e.EXPRESSION_IDENTIFIER_RE, e.EXPRESSION_INJECTED_NOW, e.EgressEncodeSchema, e.EgressRateControlSchema, e.EgressTranscodeRequestSchema, e.EgressTranscodeSchema, 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.EventKindsForDeviceSchema, e.EventMediaArtifactSchema, e.EventMediaCoverageSchema, e.EventMediaKindSchema, e.EventMediaProductionSchema, e.EventSourceType, e.ExportBytesSchema, e.ExportDenseRangeSchema, e.ExportDenseSchema, e.ExportDownloadSchema, e.ExportOptionsSchema, e.ExportRecordSchema, e.ExportSetupFieldSchema, e.ExportSetupSchema, e.ExportSpeedSchema, e.ExportStateSchema, e.ExportTimelapseSchema, e.ExposedDeviceSchema, e.ExposureModeSchema, e.ExpressionBindingSourceSchema, e.ExpressionEvalError, e.ExpressionFieldBindingSchema, e.ExpressionGlobalBindingSchema, e.ExpressionLiteralBindingSchema, e.ExpressionParseError, e.ExpressionSourceSchema, e.FIRST_LEVEL_MACRO_CLASSES, e.FULL_IMAGE_BBOX, e.FailureContributionSchema, e.FailureCounters, e.FailureReasonCountSchema, e.FanControlStatusSchema, e.FanDirectionSchema, e.FeatureManifestSchema, e.FeatureProbeStatusSchema, e.FloodStatusSchema, e.Fmp4BoxSplitter, e.FrameHandleFormatSchema, e.FrameHandleSchema, e.FrameInputSchema, e.FrameLazyCountersSchema, e.FrameLazyMetricsSchema, e.GasStatusSchema, e.GetLoggingSettingsInputSchema, e.GetStreamWithCodecInputSchema, e.GlobalMetricsSchema, e.HAP_AUDIO_BASE, e.HAP_AUDIO_BITRATE_KBPS, e.HAP_AUDIO_VBV_KBITS, e.HAP_KEYFRAME_INTERVAL_SEC, e.HF_BASE_URL, e.HF_REPO, e.HWACCEL_OPTIONS, e.HealthStatusSchema, e.HfModelResolutionSchema, e.HistoryPointSchema, e.HistoryResolutionEnum, e.HumidifierStatusSchema, e.HumiditySensorStatusSchema, e.HvacModeSchema, e.INFERENCE_DEVICE_EXCLUSION_REASONS, e.ImageContractSchema, e.ImageContractStateSchema, e.ImageRotateSchema, e.ImageSettingsOptionsSchema, e.ImageSettingsPatchSchema, e.ImageSettingsStatusSchema, e.ImageStatusSchema, e.InferenceDeviceExclusionReasonSchema, e.IngestOwnerSchema, e.InstalledPackageSchema, e.IntegrationLiteSchema, e.IntegrationWithStateSchema, e.IntercomAbilitySchema, e.IntercomStatusSchema, e.KNOWN_CAP_NAMES, e.KeyEventSchema, e.LOAD_CONTRIBUTION_ATTRIBUTIONS, e.LOAD_CONTRIBUTION_ROLES, e.LOG_CHANNEL_TICK_MS, e.LOG_LEVEL_RANK, e.LabelAttributionSchema, e.LabelDefinitionSchema, e.LabelTierSchema, e.LawnMowerActivitySchema, e.LawnMowerControlStatusSchema, e.LedgerWalkDeviceReportSchema, e.LedgerWalkInputSchema, e.LedgerWalkRefusalSchema, e.LedgerWalkReportSchema, e.LedgerWalkSkipCountsSchema, e.LedgerWalkSkipReasonSchema, e.LinkedDeviceSchema, e.LinkedDevicesModeSchema, e.ListGroupsPageSchema, e.ListGroupsQueryInput, e.LlmDefaultSchema, e.LlmDefaultSelectorSchema, e.LlmDownloadProgressSchema, e.LlmErrorCodeSchema, e.LlmGenerateBaseInputSchema, e.LlmGenerateErrSchema, e.LlmGenerateOkSchema, e.LlmGenerateResultSchema, e.LlmImageSchema, e.LlmNodeModelSchema, e.LlmProfileKindDescriptorSchema, e.LlmProfileKindSchema, e.LlmProfileSchema, e.LlmRetryPolicySchema, e.LlmRuntimeCompleteInputSchema, e.LlmRuntimeDiskUsageSchema, e.LlmRuntimeNodeSchema, e.LlmRuntimeStatusSchema, e.LlmTimeoutDefaults, e.LlmUsageRollupSchema, e.LlmUsageSchema, e.LoadContributionSchema, e.LocateSegmentResultSchema, e.LocationStatSchema, e.LockControlStatusSchema, e.LockStateSchema, e.LogChannelApplyResultSchema, e.LogChannelDescriptorSchema, e.LogChannelGate, e.LogChannelLevelSchema, e.LogChannelRegistry, e.LogChannelWindowPatchSchema, e.LogChannelWindowSchema, e.LogChannelWindowStateSchema, e.LogEntrySchema, e.LogLevelSchema, e.LogStreamEntrySchema, e.LoggingEffectiveSchema, e.LoggingExplicitSchema, e.LoggingLevelLayerSchema, e.LoggingLevelSourceSchema, e.LoggingScopeKindSchema, e.LoggingSettingsPatchSchema, e.LoggingSettingsStateSchema, e.LoginMethodContributionSchema, e.LoginStageEnum, a = e.MACRO_LABELS, e.MAX_CLIP_EVENT_IDS, e.MAX_CLIP_LABELS, e.MAX_CONDITION_DEPTH, e.MAX_CONDITION_LEAVES, 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.MAX_KEYS, e.MAX_REASONS_PER_KEY, e.MAX_SENSOR_TRIGGER_DEVICES, e.METHOD_ACCESS_MAP, e.METHOD_DEVICE_SELECTORS, e.MODEL_FORMATS, e.MODEL_PROVIDER_IDS, e.MOTION_TRIGGER_FEATURE, e.ManagedModelCatalogEntrySchema, e.ManagedModelExtraFileSchema, e.ManagedModelRefSchema, e.ManagedRuntimeConfigSchema, e.MaskGridDimsSchema, e.MaskGridShapeSchema, e.MaskLineShapeSchema, e.MaskPointSchema, e.MaskPolygonShapeSchema, e.MaskPolygonVerticesSchema, e.MaskRectShapeSchema, e.MaskShapeKindSchema, e.MaskShapeSchema, e.MediaFileInfoSchema, e.MediaFileKindEnum, e.MediaFileRefSchema, e.MediaFileSchema, e.MediaPlayerRepeatSchema, e.MediaPlayerStateSchema, e.MediaPlayerStatusSchema, e.MediaRelocateModeSchema, e.MeshPeerSchema, e.MeshStatusSchema, e.MethodAccessSchema, e.ModelCatalogEntrySchema, e.ModelConvertInputSchema, e.ModelConvertMetadataSchema, e.ModelDistributeInputSchema, e.ModelDistributeResultSchema, e.ModelExtraFileSchema, e.ModelFormatEntrySchema, e.ModelFormatsSchema, e.ModelProviderIdSchema, 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.MutationFilterSchema, e.NATIVE_LEASE_ACTIVITY_FIELD, e.NATIVE_LEASE_ACTIVITY_KEY, e.NATIVE_LEASE_ADMISSION_FIELD, e.NATIVE_LEASE_ADMISSION_KEY, e.NATIVE_LEASE_BUDGET_FIELD, e.NATIVE_LEASE_BUDGET_KEY, e.NATIVE_LEASE_HOLD_FIELD, e.NATIVE_LEASE_HOLD_KEY, e.NATIVE_LEASE_SCENE_BUDGET_FIELD, e.NATIVE_LEASE_SCENE_BUDGET_KEY, e.NATIVE_LEASE_SECTION_ID, e.NATIVE_LEASE_TILE_BUDGET_FIELD, e.NATIVE_LEASE_TILE_BUDGET_KEY, e.NC_ALARM_SYSTEM_EVENT_KINDS, e.NC_AUDIO_CONFIRM_HITS_DEFAULT, e.NC_AUDIO_CONFIRM_HITS_MAX, e.NC_AUDIO_CONFIRM_HITS_MIN, e.NC_AUDIO_CONFIRM_WINDOW_MAX_SEC, e.NC_AUDIO_CONFIRM_WINDOW_MIN_SEC, e.NC_AUDIO_CONFIRM_WINDOW_SEC_DEFAULT, e.NC_AUDIO_DBFS_FLOOR, e.NC_AUDIO_DB_MAX, e.NC_AUDIO_DB_MIN, e.NC_AUDIO_DB_OFFERED, e.NC_AUDIO_DB_STEP, e.NC_AUDIO_DEFAULTS, e.NC_AUDIO_HIT_PERCENT_MAX, e.NC_AUDIO_HIT_PERCENT_MIN, e.NC_AUDIO_SAMPLING_MAX_SEC, e.NC_AUDIO_SAMPLING_MIN_SEC, e.NC_AUDIO_SEED, e.NC_AUTHORABLE_SYSTEM_EVENT_KINDS, e.NC_BASE_CONDITION_KEYS, e.NC_CONDITION_CATALOG, e.NC_CONFIRM_DEFAULT_MAX_IMAGE_PX, e.NC_CONFIRM_DEFAULT_TIMEOUT_MS, e.NC_CONFIRM_MAX_TIMEOUT_MS, e.NC_CONFIRM_MIN_TIMEOUT_MS, e.NC_DEFAULT_SNOOZE_MINUTES, e.NC_HISTORY_LIMIT_DEFAULT, e.NC_HISTORY_LIMIT_MAX, e.NC_MAX_PER_TRACK_IMMEDIATE, e.NC_OCCUPANCY_DEFAULTS, e.NC_RULE_EDITOR_SECTION_ORDER, e.NC_RULE_KIND_SPECS, e.NC_RULE_SECTIONS, e.NC_SNOOZE_MAX_MINUTES, e.NC_SYSTEM_DELIVERY, e.NC_SYSTEM_EVENT_FILTER_KEYS, e.NC_TAXONOMY, e.NativeCropBboxSchema, e.NativeCropRefSchema, e.NativeCropResultSchema, e.NativeDetectionSchema, e.NativeLeaseAdmissionSchema, e.NativeLeaseSettingsSchema, e.NativeObjectClassEnum, e.NativeObjectDetectionRuntimeStateSchema, e.NativeObjectDetectionStatusSchema, e.NcAlarmConfigSchema, e.NcAlarmModeCoverageSchema, e.NcAlarmSettingsPatchSchema, e.NcAlarmSettingsSchema, e.NcAlarmSkipReasonSchema, e.NcAlarmSkippedDeviceSchema, e.NcAudioConditionSchema, e.NcConditionDescriptorSchema, e.NcConditionsSchema, e.NcConfirmExpectSchema, e.NcConfirmSchema, e.NcCrossingSchema, e.NcDeliverySchema, e.NcDeviceStateConditionSchema, e.NcHistoryEntrySchema, e.NcHistoryFilterSchema, e.NcHistoryRecordKindSchema, e.NcHistoryStatusSchema, e.NcHistorySubjectSchema, e.NcMediaFrameSchema, e.NcMediaPolicySchema, e.NcOccupancyConditionSchema, e.NcPlateMatcherSchema, e.NcRuleActionSchema, e.NcRuleActionSequenceSchema, e.NcRuleActionsSchema, e.NcRuleInputSchema, e.NcRuleNotificationButtonSchema, e.NcRulePatchSchema, e.NcRuleSchema, e.NcRuleTargetSchema, e.NcSceneConditionSchema, e.NcScheduleSchema, e.NcScheduleWindowSchema, e.NcSnoozeInputSchema, e.NcSnoozeSchema, e.NcSnoozeScopeSchema, e.NcSnoozeSuppressedSchema, e.NcSystemEventConditionSchema, e.NcSystemEventKindSchema, e.NcTaxonomyEntrySchema, e.NcTaxonomySchema, e.NcTestResultSchema, e.NcThrottleGranularitySchema, e.NcThrottleSchema, e.NcZoneConditionSchema, e.NetworkAccessStatusSchema, e.NetworkAddressSchema, e.NetworkEndpointSchema, e.NotificationActionIconSchema, e.NotificationActionSchema, e.NotificationFormatSchema, e.NotificationSchema, e.NotifierStatusSchema, e.NumericSensorStatusSchema, e.OPERATOR_WRITTEN_STALE_MS, e.OPS_LOG_DEFAULT_LIMIT, e.OPS_LOG_RING_DEFAULT_MAX, e.OVERFLOW_REASON, 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.OsdRenderOutcomeEnum, e.OsdRenderResultSchema, e.OsdSlotBindingSchema, e.OsdSlotViewSchema, e.OsdSourceOptionSchema, e.OsdSourceSchema, e.OsdSourceValueTypeEnum, 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.PRIVACY_MASK_CAP_NAME, 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.PoolMemoryWatchdog, 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.RATE_CONTROL_RELAXED, e.RATE_CONTROL_TIGHT, e.REACHABILITY_FAILURES_TO_OFFLINE, e.REACHABILITY_POLL_INTERVAL_MS, e.REACHABILITY_PROBE_TIMEOUT_MS, e.RECOGNITION_TYPES, e.RECORDING_EXPORT_MAX_READ_BYTES, e.REDACTED_SECRET, e.RESERVED_BINDING_NAMES, e.RESTORED_CAP_NAMES, e.ROOT_BUCKET_KEY, e.RUNTIME_DEFAULTS, e.RUNTIME_STATE_POLICY, e.RUNTIME_STATE_REFRESH_MISS_COOLDOWN_MS, e.RUNTIME_TO_FORMAT, e.RawStateResultSchema, e.ReadGopBytesResultSchema, e.ReadSegmentBytesResultSchema, e.ReadWindowBytesResultSchema, 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.RecordingObjectTriggerClassSchema, e.RecordingRangeSchema, e.RecordingRebalanceInputSchema, e.RecordingRebalanceMoveSchema, e.RecordingRebalancePlanSchema, e.RecordingRebalanceSkipReasonSchema, e.RecordingRebalanceSkipSchema, e.RecordingRetentionSchema, e.RecordingStatusSchema, e.RecordingStorageModeSchema, e.RecordingStorageUsageSchema, e.RecordingTriggersSchema, e.RecordingWeekdaySchema, e.RedirectLoginMethodSchema, e.RelocatableMediaCountInputSchema, e.RelocatableMediaCountSchema, e.RelocateFootageClassSchema, e.RelocateFootageInputSchema, e.RelocateJobSchema, e.RelocateJobStateSchema, e.RelocateMediaInputSchema, e.RelocateResidueInputSchema, e.RelocateResidueSchema, e.RenderedAsSchema, e.ReportMotionInputSchema, e.ReportedFailureContributionSchema, e.ReportedLoadContributionSchema, e.RequestCensusGroupSchema, e.RequestCensusProcedureSchema, e.RequestCensusSnapshotSchema, e.RequestCensusStatusSchema, e.RetrainAnnotationDraftSchema, e.RetrainAnnotationKindSchema, e.RetrainAnnotationSchema, e.RetrainAnnotationSourceSchema, e.RetrainAssistResultSchema, e.RetrainAssistSubjectSchema, e.RetrainCopyRefusalSchema, e.RetrainFrameCandidateSchema, e.RetrainFrameListSchema, e.RetrainFrameSchema, e.RetrainFrameSelectionSchema, e.RetrainMacroClassSchema, e.RetrainStatusSchema, e.RetrainTrackSchema, e.RetrainTransitionResultSchema, e.RingBuffer, e.RtpSourceSchema, e.RtspRestreamEntrySchema, e.RunnerCameraConfigSchema, e.RunnerCameraDeviceUIFields, e.RunnerFrameSourceSchema, e.RunnerInferenceDeviceSchema, e.RunnerLocalLoadSchema, e.RunnerLocalMetricsSchema, e.SCENE_CONDITIONS, e.SCENE_CONFIRM_DEFAULT_MAX_IMAGE_PX, e.SCENE_CONFIRM_DEFAULT_TIMEOUT_MS, e.SCENE_DEFAULT_ANCHOR_THRESHOLD, e.SCENE_DEFAULT_CHECK_INTERVAL_SEC, e.SCENE_DEFAULT_OBSERVATION_SPACING_SEC, e.SCENE_DEFAULT_QUIET_SECONDS, e.SCENE_DEFAULT_UNCOVERED_POLICY, e.SCENE_DIVERGED, e.SCENE_RESET_RECAPTURES, e.SCOPE_PRESETS, e.SENSOR_FEATURES, e.SENSOR_MAP, e.SOURCE_CAPS, e.SOURCE_CAP_ACTIVE_FIELD, e.SOURCE_CAP_CHANGED_AT_FIELD, e.SOURCE_DEVICE_TYPES, e.SOURCE_INFO_METADATA_KEY, e.STORAGE_ACCESS_FALLBACK, e.STREAM_PROFILE_META, e.STREAM_QUALITY_LABELS, e.SUB_DETECTION_TYPES, e.SYSTEM_CAP_NAMES, e.SYSTEM_SCOPE_DEVICE_METHODS, e.SceneCheckSchema, e.SceneConditionSchema, e.SceneConfirmSchema, e.SceneMonitorSchema, e.SceneMonitorStateSchema, e.SceneMonitorStatusForDeviceSchema, e.SceneMonitorStatusSchema, e.SceneReferenceSchema, e.SceneUnavailableSchema, e.SceneUncoveredPolicySchema, e.SceneVerdictSchema, e.ScopedTokenSchema, e.ScopedTokenSummarySchema, e.ScoredObjectEventSchema, e.ScriptRunnerStatusSchema, e.SearchResultSchema, e.SendEmailInputSchema, e.SendEmailResultSchema, e.SendResultSchema, e.SensorEventSchema, e.ServerBootModeSchema, e.ServerPackageStatusSchema, e.ServerRollbackInfoSchema, e.ServerUpdateActionResultSchema, e.ServerUpdateCheckResultSchema, e.ServerUpdateStateSchema, e.SetLoggingSettingsInputSchema, e.SetSiteLocationInputSchema, e.SettingsPatchSchema, e.SettingsRecordSchema, e.SettingsSchemaWithValuesSchema, e.SettingsUpdateResultSchema, e.ShmRingStatsSchema, e.SiteLocationSchema, e.SiteLocationSourceSchema, e.SiteLocationStatusSchema, e.SmokeStatusSchema, e.SmtpStatusSchema, e.SnapshotImageSchema, e.SourceInfoSchema, e.SpatialDetectionSchema, e.SsoBridgeClaimsSchema, e.StartEmbeddedInputSchema, e.StationaryObjectSchema, e.StorageAbortUploadInputSchema, e.StorageAccessSchema, e.StorageBeginDownloadInputSchema, e.StorageBeginDownloadResultSchema, e.StorageBeginUploadInputSchema, e.StorageBeginUploadResultSchema, e.StorageEndDownloadInputSchema, e.StorageFinalizeUploadInputSchema, e.StorageLocationDeclarationSchema, e.StorageLocationRefSchema, e.StorageLocationSchema, e.StorageLocationTypeSchema, e.StorageMigrationClassSchema, e.StorageMigrationDestinationsSchema, e.StorageMigrationDrainInputSchema, e.StorageMigrationFindingCodeSchema, e.StorageMigrationFindingSchema, e.StorageMigrationFootageMoveInputSchema, e.StorageMigrationInputSchema, e.StorageMigrationJobSchema, e.StorageMigrationLaneSchema, e.StorageMigrationLeaseInputSchema, e.StorageMigrationMediaMoveInputSchema, e.StorageMigrationModeSchema, e.StorageMigrationMoveProgressSchema, e.StorageMigrationMoveSchema, e.StorageMigrationMoverSchema, e.StorageMigrationParticipantSchema, e.StorageMigrationPhaseSchema, e.StorageMigrationPlanSchema, e.StorageMigrationResidueSchema, 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.TIMELAPSE_DENSE_FLOOR_SEC, e.TIMEZONES, e.TRANSCODE_DOWN_MAX_BITRATE_KBPS, e.TRANSCODE_DOWN_MAX_HEIGHT, e.TamperStatusSchema, e.TankStatusSchema, e.TargetKindCapsSchema, e.TargetKindLevelSchema, e.TargetKindSchema, e.TargetSchema, e.TemperatureSensorStatusSchema, e.TerminalInstanceInfoSchema, e.TerminalLegacyCameraSchema, e.TerminalOutputBatchSchema, e.TerminalOutputEventSchema, e.TerminalProfileInfoSchema, e.TerminalSessionInfoSchema, e.TestConnectionResultSchema, e.TestConnectionStatusEnum, 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.TrackFlagsPatchSchema, e.TrackFlagsSchema, e.TrackProjectionSchema, e.TrackSchema, e.TrackSourceSchema, e.TrackStateSchema, e.TrackZoneFilterSchema, e.TrackedDetectionSchema, e.TrainingExportDeviceTotalsSchema, e.TrainingExportSummarySchema, e.TransportPlaneCountsSchema, e.TransportPlaneSchema, e.TurnServerSchema, e.UNATTRIBUTED_BUCKET_KEY, e.UNIT_TABLE, e.UnifiedBrokerInfoSchema, e.UnitConversionError, e.UnstampedEventMediaCountSchema, e.UnstampedRowsSchema, e.UpdateIntegrationInputSchema, e.UpdateStatusSchema, e.UpdateUserInputSchema, e.UserRecordSchema, e.UserSummarySchema, e.VISIT_MERGE_GAP_MS, e.VacuumControlStatusSchema, e.VacuumStateSchema, e.ValveStateSchema, e.ValveStatusSchema, e.VectorDeclareIndexInputSchema, e.VectorDeleteByFilterInputSchema, e.VectorDeleteInputSchema, e.VectorDeleteResultSchema, e.VectorFilterSchema, e.VectorGetInputSchema, e.VectorGetResultSchema, e.VectorItemSchema, e.VectorMatchSchema, e.VectorMetadataSchema, e.VectorMetricSchema, e.VectorQueryInputSchema, e.VectorQueryResultSchema, e.VectorStatsInputSchema, e.VectorStatsResultSchema, e.VectorUpsertInputSchema, e.VectorUpsertResultSchema, e.VibrationStatusSchema, e.VideoEncodeSchema, e.WEBRTC_EGRESS_PROFILE, 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.__resetLogChannelRegistryForTests, 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.asBoolean, e.asJsonArray, e.asJsonObject, e.asNumber, e.asString, e.assertTimelapseCadences, e.audioAnalysisCapability, e.audioAnalyzerCapability, e.audioCodecCapability, e.audioIsFailClosed, e.audioKindId, e.audioLabelChoices, e.audioMetricsCapability, e.audioModeOf, e.audioOrDefaults, e.audioPlanFromEncodeProfile, e.authProviderCapability, e.autoAssignProfiles, e.automationControlCapability, e.backupCapability, e.bareAddonId, e.batteryCapability, e.bestLocationMatch, e.binaryCapability, e.bindAddonActions, e.brightnessCapability, e.brokerCapability, e.buildAddonRouteProvider, e.buildAudioArgs, e.buildEventKindDescriptor, e.buildFfmpegArgs, e.buildInputArgs, e.buildModelVariantGroups, e.buildNcTaxonomy, e.buildRoleScopes, e.buildStreamParamsConfigSchema, e.buildVideoArgs, e.buttonCapability, e.cameraCredentialsCapability, e.cameraPipelineConfigCapability, e.cameraStreamsCapability, e.canConvertUnit, e.canonicalEgressPlan, e.carbonMonoxideCapability, e.cellsToRects, e.classifyBearerPrincipal, e.classifyStream, e.classifyStreams, e.climateControlCapability, e.clusterModelSettingKey, e.clusterStepSettingFieldsFor, e.clusterStepSettingKey, e.collectHydratedFieldEntries, e.collectHydratedFieldValues, e.collectSecretConfigKeys, e.colorCapability, e.colorForKind, e.commitWatchdogRestart, e.compileExpression, e.compileExpressionSafe, e.composeSwitchedOff, e.conditionDepth, e.conditionExclusionReason, e.conditionVisibleForKind, e.connectionTestCapability, e.connectivityCapability, e.consumablesCapability, e.contactCapability, e.controlCapability, e.convertUnit, e.coreBlockAddonId, e.coreBlockIdFromAddonId, e.coreBlocksCapability, e.cosineSimilarity, e.countConditionLeaves, e.coverCapability, e.createDeviceProxy, e.createDurableState, e.createEvent, e.createEventBusSliceSource, e.createExpressionScope, e.createHwAccelCache, e.createLazyTrpcSource, e.createLogChannelsProvider, e.createMirrorSource, e.createRuntimeStateBridge, e.createSliceHandle, e.createSystemProxy, e.customAction, e.customModelRegistryCapability, e.dataStoreProviderCapability, e.dayNightCapability, e.declarationOwnerNodeId, e.declareLogChannel, e.decodeVectorBase64, e.decoderCapability, e.defaultDeliveryForSection, e.defaultDeviceFor, e.defineCustomActions, e.deriveBatteryPresence, e.deriveCameraSwitches, e.deriveDetailCropRect, e.deriveRecordingMode, e.describeModelVariant, e.detectAccessRole, e.detectionPipelineCapability, e.deviceAdoptionCapability, e.deviceBackendToFormat, e.deviceCustomAction, e.deviceDiscoveryCapability, e.deviceExportCapability, e.deviceManagerCapability, e.deviceMatchesProfile, e.deviceOpsCapability, e.deviceProviderCapability, e.deviceSelectorMatches, e.deviceStateCapability, e.deviceStatusCapability, e.doorbellCapability, e.droppedConditionsForKind, e.egressTranscodeSharingKey, e.egressTransportFromRequest, e.embeddingEncoderCapability, e.emitDownForOwnedCaps, e.emitReadiness, e.encodeProfileFromStreamShape, e.encodeVectorBase64, e.enumSensorCapability, e.enumerateInferenceDevices, e.enumerateItemArrayFields, e.enumerateSchemaFields, e.errMsg, e.evaluateAst, e.evaluateExpressionSource, e.evaluatePoolMemory, e.evaluateSensorEdge, e.evaluateZoneRules, e.event, e.eventEmitterCapability, e.eventsCapability, e.expandCapMethods, e.extractNestedAddonId, e.extractSourceInfoFromMetadata, e.faceGalleryCapability, e.failureContributionCapability, e.failureRate, e.fanControlCapability, e.featureProbeCapability, e.filesystemBrowseCapability, e.findTimezone, e.floodCapability, e.foldSnapshotByFunction, e.formatForBackend, e.formatForRuntime, e.gasCapability, e.generateAutomationBlock, e.getAudioMacroClassIds, e.getByPath, e.getCapsByProviderKind, e.getLogChannelRegistry, e.getTaxonomyEntry, e.hasMotionTrigger, e.hfModelUrl, e.htmlToText, e.humidifierCapability, e.humiditySensorCapability, e.hydrateSchema, e.imageCapability, e.imageSettingsCapability, e.inferModelProvider, e.initialPoolMemoryState, e.integrationsCapability, e.intercomCapability, e.invocationFromEncodeProfile, e.isAgentOnlyPlacement, e.isArrayOutputSchema, e.isAudioLabelSelected, e.isAudioRule, e.isBaseConditionKey, e.isBatteryPresenceFault, e.isClusterScopedStep, e.isCollectionArrayMethod, e.isDeployableToAgent, e.isDetectionMacroClass, e.isDeviceConfigCap, e.isDeviceScopedCap, e.isEvent, e.isFirstLevelMacroClass, e.isIsolatedBuiltin, e.isNode, e.isObjectInput, e.isOccupancyRule, e.isRestoredCap, e.isSameAddonId, e.isScheduleActive, e.isSecretConfigField, e.isSoftwareDecode, e.isSourceCap, e.isSystemDelivery, e.isVoidInput, e.jobKindSchema, e.kebabToCamel, e.knownValues, e.lawnMowerControlCapability, e.lifecycleJobSchema, e.lifecycleJobScopeSchema, e.lifecycleJobStateSchema, e.lifecycleTaskSchema, e.llmCapability, e.llmRuntimeCapability, e.loadContributionCapability, e.localNetworkCapability, e.locationSimilarity, e.lockControlCapability, e.logBannerArgs, e.logChannelsCapability, 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.methodAccessForHttpMethod, 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.normalizeAudioLabel, e.normalizeTokenScopes, e.normalizeUnit, e.notificationOutputCapability, e.notificationRulesCapability, e.notifierCapability, e.numericSensorCapability, e.oauthIntegrationCapability, e.objectInputDeclaresAddonId, e.osdCapability, e.osdManagerCapability, e.overlayClusterStepSettings, e.parseCameraStreamConfig, e.parseExpression, e.parseJsonArray, e.parseJsonObject, e.parseJsonUnknown, e.parseProcStatus, e.parseProfileBrokerId, e.parseRuleSection, e.parseStreamParamsFormPatch, e.patchAudio, e.petFeederCapability, e.pickAccessoryControl, e.pickClusterStepModels, e.pickClusterStepSettings, e.pickDetailCropConvention, e.pickNativeLeaseOverride, e.pickPreferredRtspEntry, e.pickRestartCandidate, e.pickVideoEncoder, e.pickerForCondition, e.pipelineAnalyticsCapability, e.pipelineExecutorCapability, e.pipelineOrchestratorCapability, e.pipelineRunnerCapability, e.plateGalleryCapability, e.platformProbeCapability, e.poolMemoryThreshold, e.powerMeterCapability, e.prepareNotification, e.presenceCapability, e.pressureSensorCapability, e.principalMayReachAddon, e.privacyMaskCapability, e.procedureAuthKey, e.ptzAutotrackCapability, e.ptzCapability, e.pythonScriptForBackend, e.readClusterStepModels, e.readClusterStepSettings, e.readDetailCropConvention, e.readDeviceStateFrom, e.readNativeLeaseOverride, e.readNodePin, e.readTimelapseGeneratedAt, e.readinessKey, e.rebootCapability, e.recordingCapability, e.recordingExportCapability, e.rectsToCells, e.reducePoints, e.requiresPython, e.resetPoolBaseline, e.resolveAddonExecution, e.resolveAddonGroup, e.resolveAddonPlacement, e.resolveAddonRuntime, e.resolveBucketMs, e.resolveCapMount, e.resolveClusterStepModelId, e.resolveDetectionRuntime, e.resolveDeviceControlKind, e.resolveDeviceProfile, e.resolveEgressDecodeHwAccel, e.resolveFormat, s = e.resolveHydratedFieldValue, e.resolveMethodAuth, e.resolveModelFormat, e.resolveMutate, e.resolvePoolMemoryPolicy, e.resolveRecordingProfiles, e.resolveRunnerId, e.resolveVariantModelId, e.resolveViewableDeviceIds, e.roleSpec, e.ruleEditorSectionsForKind, e.ruleKindOf, e.ruleKindSpec, e.ruleMatchesSection, e.ruleSection, e.ruleSectionOf, e.ruleSeedForSection, e.runInferenceStep, e.runtimeDevices, e.runtimeStatePolicyFor, e.sceneMonitorCapability, e.schemaDeclaresAnyField, e.scopeInherits, e.scopeKey, e.scopesAllowAddon, e.scopesAllowDeviceCap, e.scoreRuntimes, e.scriptRunnerCapability, e.selectAssignedProfileSlots, e.serverManagementCapability, e.setByPath, e.settingsStoreCapability, e.sleep, e.sleepCancellable, e.sliceActiveValue, e.sliceChangedAt, e.smokeCapability, e.smtpProviderCapability, e.snapshotCapability, e.ssoBridgeCapability, e.startReachabilityPoll, e.stateVocabularyFor, e.storageCapability, e.storageEvictableCapability, e.storageMigrationCapability, e.storageProviderCapability, e.streamBrokerCapability, e.streamCatalogCapability, e.streamParamsCapability, e.streamPixels, e.streamQualityLabel, e.subKindsOf, e.summarisePrivacyAudio, e.summarizeEffectiveScope, e.supportedRuntimes, e.switchCapability, e.switchedOffIds, e.synthesizeSourceInfo, e.systemCapability, e.systemEventFilterApplies, e.systemEventFilterAppliesToAnyKind, e.tamperCapability, e.taskLogEntrySchema, e.taskPhaseSchema, e.taskTargetSchema, e.temperatureSensorCapability, e.terminalSessionCapability, e.textToHtml, e.toDeviceSummary, e.toExpressionValue, e.toNodeId, e.toStreamSourceEntry, e.toastCapability, e.toggleAudioLabel, e.tokenize, e.transcodeBody, e.tryConvertUnit, e.turnProviderCapability, e.unitDimension, e.unitsForDimension, e.updateCapability, e.userManagementCapability, e.userPasskeysCapability, e.vacuumControlCapability, e.validateExpressionSource, e.validateRecipeBounds, e.valveCapability, e.vectorDimFromBase64, e.vectorStoreCapability, 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 { s as n, a as r, o as t };
|