@camstack/addon-provider-rtsp 1.2.37 → 1.2.38

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 CHANGED
@@ -5940,6 +5940,40 @@ var BaseAddon = class {
5940
5940
  deviceSettingsSchema() {
5941
5941
  return null;
5942
5942
  }
5943
+ /**
5944
+ * INTEGRATION-LEVEL SETTINGS — declare which of this addon's global sections
5945
+ * ARE the configuration of its integration.
5946
+ *
5947
+ * Return the `ConfigSection.id`s, from {@link globalSettingsSchema}, that an
5948
+ * operator should find on the addon's integration page (System →
5949
+ * Integrations → <name>) rather than only in the cluster-wide list of every
5950
+ * addon. Empty (the default) means the addon has no integration-level
5951
+ * settings and no such surface is offered — this is opt-in, because whether
5952
+ * an addon's configuration IS its integration's configuration depends on the
5953
+ * nature of the integration.
5954
+ *
5955
+ * WHAT THIS IS NOT. It is not a scope. The selected sections keep living in
5956
+ * the ONE global schema, in the ONE addon store, written by the ONE
5957
+ * `updateGlobalSettings` path. There is deliberately no
5958
+ * `updateIntegrationSettings`: a second write path is how a surface acquires
5959
+ * a second store key, and this repo has shipped that twice (`btmPath@hub`,
5960
+ * D266). Selecting sections cannot introduce a key that selecting cannot.
5961
+ *
5962
+ * WHY IT IS A LIST OF SECTION IDS AND NOT A MARKER ON THE SECTION.
5963
+ * `ConfigFieldBase` used to carry `scope?: 'device' | 'global'` and it was
5964
+ * removed with the reason recorded at
5965
+ * `packages/types/src/interfaces/config-ui.ts:249` — *"a field's scope is
5966
+ * determined by WHICH schema it lives in, not by a field-level marker."* A
5967
+ * marker sprinkled across sections also has to borrow a field that already
5968
+ * means something else; borrowing `section.tab` put the literal word
5969
+ * "integration" into an operator-facing tab bar, because `tab` means "how to
5970
+ * GROUP this visually" and cannot also mean "where this lives" (D269
5971
+ * supersedes D268). One declaration, in one place, next to the schema whose
5972
+ * ids it names.
5973
+ */
5974
+ integrationSettingSections() {
5975
+ return [];
5976
+ }
5943
5977
  async getGlobalSettings(overlay, cap, nodeId) {
5944
5978
  const schema = this.globalSettingsSchema(cap);
5945
5979
  if (!schema) return { sections: [] };
@@ -5950,6 +5984,55 @@ var BaseAddon = class {
5950
5984
  } : projected);
5951
5985
  }
5952
5986
  /**
5987
+ * The integration-level view of this addon's settings: exactly the sections
5988
+ * named by {@link integrationSettingSections}, hydrated from the SAME store
5989
+ * `getGlobalSettings` reads, and narrowed to cluster-scoped fields.
5990
+ *
5991
+ * Returns `null` when the addon declared nothing — an addon that opts out has
5992
+ * no integration settings surface at all, rather than an empty one that reads
5993
+ * as a failed load.
5994
+ *
5995
+ * Three properties hold BY CONSTRUCTION, which is why they are here in core
5996
+ * and not in whichever UI happens to render this:
5997
+ *
5998
+ * 1. **One key.** The payload is a SUBSET of the global schema, so a field
5999
+ * shown here is the same field, with the same bare key, that the addon's
6000
+ * own page shows. There is no integration-specific writer — callers save
6001
+ * through `updateGlobalSettings` — so a second store key is unreachable,
6002
+ * not merely discouraged.
6003
+ * 2. **No node scope.** `perNode: true` fields are DROPPED. Their store key
6004
+ * is `<key>@<nodeId>` and an integration is not a node; whichever node
6005
+ * such a field silently picked would be a wrong answer for the operator
6006
+ * who opened the page (D266).
6007
+ * 3. **No silent typo.** A declared id that names no section throws. The
6008
+ * alternative — skip it — turns a rename into a surface that quietly
6009
+ * empties, which looks exactly like an addon with nothing to configure.
6010
+ */
6011
+ async getIntegrationSettings(nodeId) {
6012
+ const declared = this.integrationSettingSections();
6013
+ if (declared.length === 0) return null;
6014
+ const schema = this.globalSettingsSchema();
6015
+ if (!schema) throw new Error(`${this.constructor.name}: integrationSettingSections() names [${declared.join(", ")}] but globalSettingsSchema() returns null.`);
6016
+ const byId = new Map(schema.sections.map((section) => [section.id, section]));
6017
+ const sections = [];
6018
+ for (const id of declared) {
6019
+ const section = byId.get(id);
6020
+ if (!section) throw new Error(`${this.constructor.name}: integrationSettingSections() names unknown section "${id}". Known sections: [${[...byId.keys()].join(", ")}].`);
6021
+ const fields = dropPerNodeFields(section.fields);
6022
+ if (fields.length === 0) continue;
6023
+ sections.push({
6024
+ ...section,
6025
+ fields
6026
+ });
6027
+ }
6028
+ if (sections.length === 0) return null;
6029
+ const projected = await this.resolveGlobalStore(nodeId);
6030
+ return hydrateSchema({
6031
+ ...schema,
6032
+ sections
6033
+ }, projected);
6034
+ }
6035
+ /**
5953
6036
  * The raw addon store PROJECTED onto the target node's bare per-node keys:
5954
6037
  * every `perNode: true` field carries THAT node's scoped value on its bare
5955
6038
  * key (absent scoped key ⇒ key absent, so the schema `default` wins — no
@@ -6253,6 +6336,41 @@ var BaseAddon = class {
6253
6336
  * `hydrateSchema` does. Valueless structural fields (separator/info/…)
6254
6337
  * don't declare `perNode` and are excluded by the `in` narrowing.
6255
6338
  */
6339
+ /**
6340
+ * The same fields with every `perNode: true` one removed, recursing into layout
6341
+ * containers exactly as {@link collectPerNodeFieldKeys} does. A container left
6342
+ * with no child is dropped rather than rendered empty.
6343
+ *
6344
+ * Used by `getIntegrationSettings`: an integration is not a node, so a field
6345
+ * whose store key is `<key>@<nodeId>` has no node to belong to there.
6346
+ */
6347
+ function dropPerNodeFields(fields) {
6348
+ const kept = [];
6349
+ for (const field of fields) {
6350
+ if (field.type === "group") {
6351
+ const inner = dropPerNodeFields(field.fields);
6352
+ if (inner.length > 0) kept.push({
6353
+ ...field,
6354
+ fields: inner
6355
+ });
6356
+ continue;
6357
+ }
6358
+ if (field.type === "sub-tabs") {
6359
+ const tabs = field.tabs.map((tab) => ({
6360
+ ...tab,
6361
+ fields: dropPerNodeFields(tab.fields)
6362
+ })).filter((tab) => tab.fields.length > 0);
6363
+ if (tabs.length > 0) kept.push({
6364
+ ...field,
6365
+ tabs
6366
+ });
6367
+ continue;
6368
+ }
6369
+ if ("perNode" in field && field.perNode === true) continue;
6370
+ kept.push(field);
6371
+ }
6372
+ return kept;
6373
+ }
6256
6374
  function collectPerNodeFieldKeys(fields) {
6257
6375
  const collected = [];
6258
6376
  for (const field of fields) {
@@ -9454,6 +9572,9 @@ method(object({
9454
9572
  kind: "mutation",
9455
9573
  auth: "admin"
9456
9574
  }), method(object({
9575
+ addonId: string(),
9576
+ nodeId: string().optional()
9577
+ }), SettingsSchemaWithValuesSchema.nullable()), method(object({
9457
9578
  addonId: string(),
9458
9579
  deviceId: number(),
9459
9580
  nodeId: string().optional()
@@ -31725,6 +31846,12 @@ Object.freeze({
31725
31846
  addonId: null,
31726
31847
  access: "view"
31727
31848
  },
31849
+ "addonSettings.getIntegrationSettings": {
31850
+ capName: "addon-settings",
31851
+ capScope: "system",
31852
+ addonId: null,
31853
+ access: "view"
31854
+ },
31728
31855
  "addonSettings.updateDeviceSettings": {
31729
31856
  capName: "addon-settings",
31730
31857
  capScope: "system",
package/dist/addon.mjs CHANGED
@@ -5916,6 +5916,40 @@ var BaseAddon = class {
5916
5916
  deviceSettingsSchema() {
5917
5917
  return null;
5918
5918
  }
5919
+ /**
5920
+ * INTEGRATION-LEVEL SETTINGS — declare which of this addon's global sections
5921
+ * ARE the configuration of its integration.
5922
+ *
5923
+ * Return the `ConfigSection.id`s, from {@link globalSettingsSchema}, that an
5924
+ * operator should find on the addon's integration page (System →
5925
+ * Integrations → <name>) rather than only in the cluster-wide list of every
5926
+ * addon. Empty (the default) means the addon has no integration-level
5927
+ * settings and no such surface is offered — this is opt-in, because whether
5928
+ * an addon's configuration IS its integration's configuration depends on the
5929
+ * nature of the integration.
5930
+ *
5931
+ * WHAT THIS IS NOT. It is not a scope. The selected sections keep living in
5932
+ * the ONE global schema, in the ONE addon store, written by the ONE
5933
+ * `updateGlobalSettings` path. There is deliberately no
5934
+ * `updateIntegrationSettings`: a second write path is how a surface acquires
5935
+ * a second store key, and this repo has shipped that twice (`btmPath@hub`,
5936
+ * D266). Selecting sections cannot introduce a key that selecting cannot.
5937
+ *
5938
+ * WHY IT IS A LIST OF SECTION IDS AND NOT A MARKER ON THE SECTION.
5939
+ * `ConfigFieldBase` used to carry `scope?: 'device' | 'global'` and it was
5940
+ * removed with the reason recorded at
5941
+ * `packages/types/src/interfaces/config-ui.ts:249` — *"a field's scope is
5942
+ * determined by WHICH schema it lives in, not by a field-level marker."* A
5943
+ * marker sprinkled across sections also has to borrow a field that already
5944
+ * means something else; borrowing `section.tab` put the literal word
5945
+ * "integration" into an operator-facing tab bar, because `tab` means "how to
5946
+ * GROUP this visually" and cannot also mean "where this lives" (D269
5947
+ * supersedes D268). One declaration, in one place, next to the schema whose
5948
+ * ids it names.
5949
+ */
5950
+ integrationSettingSections() {
5951
+ return [];
5952
+ }
5919
5953
  async getGlobalSettings(overlay, cap, nodeId) {
5920
5954
  const schema = this.globalSettingsSchema(cap);
5921
5955
  if (!schema) return { sections: [] };
@@ -5926,6 +5960,55 @@ var BaseAddon = class {
5926
5960
  } : projected);
5927
5961
  }
5928
5962
  /**
5963
+ * The integration-level view of this addon's settings: exactly the sections
5964
+ * named by {@link integrationSettingSections}, hydrated from the SAME store
5965
+ * `getGlobalSettings` reads, and narrowed to cluster-scoped fields.
5966
+ *
5967
+ * Returns `null` when the addon declared nothing — an addon that opts out has
5968
+ * no integration settings surface at all, rather than an empty one that reads
5969
+ * as a failed load.
5970
+ *
5971
+ * Three properties hold BY CONSTRUCTION, which is why they are here in core
5972
+ * and not in whichever UI happens to render this:
5973
+ *
5974
+ * 1. **One key.** The payload is a SUBSET of the global schema, so a field
5975
+ * shown here is the same field, with the same bare key, that the addon's
5976
+ * own page shows. There is no integration-specific writer — callers save
5977
+ * through `updateGlobalSettings` — so a second store key is unreachable,
5978
+ * not merely discouraged.
5979
+ * 2. **No node scope.** `perNode: true` fields are DROPPED. Their store key
5980
+ * is `<key>@<nodeId>` and an integration is not a node; whichever node
5981
+ * such a field silently picked would be a wrong answer for the operator
5982
+ * who opened the page (D266).
5983
+ * 3. **No silent typo.** A declared id that names no section throws. The
5984
+ * alternative — skip it — turns a rename into a surface that quietly
5985
+ * empties, which looks exactly like an addon with nothing to configure.
5986
+ */
5987
+ async getIntegrationSettings(nodeId) {
5988
+ const declared = this.integrationSettingSections();
5989
+ if (declared.length === 0) return null;
5990
+ const schema = this.globalSettingsSchema();
5991
+ if (!schema) throw new Error(`${this.constructor.name}: integrationSettingSections() names [${declared.join(", ")}] but globalSettingsSchema() returns null.`);
5992
+ const byId = new Map(schema.sections.map((section) => [section.id, section]));
5993
+ const sections = [];
5994
+ for (const id of declared) {
5995
+ const section = byId.get(id);
5996
+ if (!section) throw new Error(`${this.constructor.name}: integrationSettingSections() names unknown section "${id}". Known sections: [${[...byId.keys()].join(", ")}].`);
5997
+ const fields = dropPerNodeFields(section.fields);
5998
+ if (fields.length === 0) continue;
5999
+ sections.push({
6000
+ ...section,
6001
+ fields
6002
+ });
6003
+ }
6004
+ if (sections.length === 0) return null;
6005
+ const projected = await this.resolveGlobalStore(nodeId);
6006
+ return hydrateSchema({
6007
+ ...schema,
6008
+ sections
6009
+ }, projected);
6010
+ }
6011
+ /**
5929
6012
  * The raw addon store PROJECTED onto the target node's bare per-node keys:
5930
6013
  * every `perNode: true` field carries THAT node's scoped value on its bare
5931
6014
  * key (absent scoped key ⇒ key absent, so the schema `default` wins — no
@@ -6229,6 +6312,41 @@ var BaseAddon = class {
6229
6312
  * `hydrateSchema` does. Valueless structural fields (separator/info/…)
6230
6313
  * don't declare `perNode` and are excluded by the `in` narrowing.
6231
6314
  */
6315
+ /**
6316
+ * The same fields with every `perNode: true` one removed, recursing into layout
6317
+ * containers exactly as {@link collectPerNodeFieldKeys} does. A container left
6318
+ * with no child is dropped rather than rendered empty.
6319
+ *
6320
+ * Used by `getIntegrationSettings`: an integration is not a node, so a field
6321
+ * whose store key is `<key>@<nodeId>` has no node to belong to there.
6322
+ */
6323
+ function dropPerNodeFields(fields) {
6324
+ const kept = [];
6325
+ for (const field of fields) {
6326
+ if (field.type === "group") {
6327
+ const inner = dropPerNodeFields(field.fields);
6328
+ if (inner.length > 0) kept.push({
6329
+ ...field,
6330
+ fields: inner
6331
+ });
6332
+ continue;
6333
+ }
6334
+ if (field.type === "sub-tabs") {
6335
+ const tabs = field.tabs.map((tab) => ({
6336
+ ...tab,
6337
+ fields: dropPerNodeFields(tab.fields)
6338
+ })).filter((tab) => tab.fields.length > 0);
6339
+ if (tabs.length > 0) kept.push({
6340
+ ...field,
6341
+ tabs
6342
+ });
6343
+ continue;
6344
+ }
6345
+ if ("perNode" in field && field.perNode === true) continue;
6346
+ kept.push(field);
6347
+ }
6348
+ return kept;
6349
+ }
6232
6350
  function collectPerNodeFieldKeys(fields) {
6233
6351
  const collected = [];
6234
6352
  for (const field of fields) {
@@ -9430,6 +9548,9 @@ method(object({
9430
9548
  kind: "mutation",
9431
9549
  auth: "admin"
9432
9550
  }), method(object({
9551
+ addonId: string(),
9552
+ nodeId: string().optional()
9553
+ }), SettingsSchemaWithValuesSchema.nullable()), method(object({
9433
9554
  addonId: string(),
9434
9555
  deviceId: number(),
9435
9556
  nodeId: string().optional()
@@ -31701,6 +31822,12 @@ Object.freeze({
31701
31822
  addonId: null,
31702
31823
  access: "view"
31703
31824
  },
31825
+ "addonSettings.getIntegrationSettings": {
31826
+ capName: "addon-settings",
31827
+ capScope: "system",
31828
+ addonId: null,
31829
+ access: "view"
31830
+ },
31704
31831
  "addonSettings.updateDeviceSettings": {
31705
31832
  capName: "addon-settings",
31706
31833
  capScope: "system",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-provider-rtsp",
3
- "version": "1.2.37",
3
+ "version": "1.2.38",
4
4
  "description": "Generic RTSP camera device provider addon for CamStack",
5
5
  "keywords": [
6
6
  "camstack",