@camstack/addon-agent-ui 1.2.122 → 1.2.123
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/addon.js +17 -2
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -27271,7 +27271,16 @@ var GridProfileOfferSchema = object({
|
|
|
27271
27271
|
* grid came out as, and because it is the number an operator would otherwise
|
|
27272
27272
|
* expect to type.
|
|
27273
27273
|
*/
|
|
27274
|
-
canvas: string()
|
|
27274
|
+
canvas: string(),
|
|
27275
|
+
/**
|
|
27276
|
+
* Whether this profile is PUBLISHED, of the ones the grid could serve.
|
|
27277
|
+
*
|
|
27278
|
+
* A grid's `high` is composed of its sources' `high`, so on a 4K fleet it is
|
|
27279
|
+
* a 4K canvas built from 4K decodes — something to opt into, not something a
|
|
27280
|
+
* viewer's adaptive should be handed by climbing to the top rung it can see.
|
|
27281
|
+
* Default is `mid` + `low`.
|
|
27282
|
+
*/
|
|
27283
|
+
published: boolean()
|
|
27275
27284
|
});
|
|
27276
27285
|
var GridLayoutViewSchema = object({
|
|
27277
27286
|
/** The persisted grid row this camera was declared from. */
|
|
@@ -27294,6 +27303,12 @@ var GridLayoutPatchSchema = object({
|
|
|
27294
27303
|
deviceId: number().int().nonnegative(),
|
|
27295
27304
|
name: string().min(1).max(160).optional(),
|
|
27296
27305
|
fps: number().int().min(1).max(60).optional(),
|
|
27306
|
+
/** Which profiles to publish. See `GridProfileOffer.published`. */
|
|
27307
|
+
publishedProfiles: array(_enum([
|
|
27308
|
+
"high",
|
|
27309
|
+
"mid",
|
|
27310
|
+
"low"
|
|
27311
|
+
])).max(3).optional(),
|
|
27297
27312
|
/**
|
|
27298
27313
|
* The whole cell list at once. A per-cell patch would need an ordering the
|
|
27299
27314
|
* editor does not have, and a half-applied layout is a picture nobody asked
|
|
@@ -40470,7 +40485,7 @@ var AgentUIAddon = class extends BaseAddon {
|
|
|
40470
40485
|
capability: adminUiCapability,
|
|
40471
40486
|
provider: {
|
|
40472
40487
|
getStaticDir: async () => ({ staticDir: path.resolve(__dirname) }),
|
|
40473
|
-
getVersion: async () => ({ version: "1.2.
|
|
40488
|
+
getVersion: async () => ({ version: "1.2.123" })
|
|
40474
40489
|
}
|
|
40475
40490
|
}];
|
|
40476
40491
|
}
|