@voltro/plugin-notifications 0.54.0 → 0.56.0

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/index.d.ts CHANGED
@@ -380,10 +380,12 @@ export declare interface NotificationsPluginOptions {
380
380
  * `name` below: `alias` REPLACES the namespace, `name` distinguishes two
381
381
  * installations within it.
382
382
  *
383
- * The cost, stated because nothing else states it: the local and cloud
384
- * dashboards fetch this plugin's panel at the DEFAULT slug, so an aliased
385
- * install keeps working while its dashboard panel 404s. Alias to escape a
386
- * collision, not for taste.
383
+ * The dashboard panel follows: the plugin's inspect endpoints keep a mount
384
+ * under its CANONICAL name alongside the aliased one, so aliasing does not
385
+ * take the panel away. The one case it cannot cover is two installs of this
386
+ * plugin — one canonical name, two panels — which get no shared mount at
387
+ * all, on purpose. Read `inspectSlug` from `/_voltro/inspect/plugins` to
388
+ * reach a specific install.
387
389
  */
388
390
  readonly alias?: string;
389
391
  /**
@@ -403,10 +405,21 @@ export declare interface NotificationsPluginOptions {
403
405
  *
404
406
  * It is not offered on every plugin, and the omissions are deliberate rather
405
407
  * than unfinished: a `tables: false` that quietly disables a table carrying an
406
- * AUTHORIZATION or SAFETY decision the SAML replay cache, SCIM provisioning
407
- * state, billing's usage counters, cdc-out's outbox is a security regression
408
- * shipped as an ergonomics feature. Those plugins need a named store seam
409
- * first, not a boolean.
408
+ * AUTHORIZATION or SAFETY decision is a security regression shipped as an
409
+ * ergonomics feature. The SAML replay cache, SCIM provisioning state,
410
+ * billing's usage counters and cdc-out's outbox are EXAMPLES, not the whole
411
+ * list — read "not offered on that plugin" as the answer, never "so every
412
+ * other plugin's tables are safe to take over". Those plugins need a named
413
+ * store seam first, not a boolean.
414
+ *
415
+ * `plugin-storage` is the case that reads like an oversight and is not one.
416
+ * `_voltro_storage_grants` decides who may read and write an object, so it
417
+ * belongs to the paragraph above — but the field would not reach it in any
418
+ * case: storage's four tables are contributed as FRAMEWORK tables
419
+ * (`cli/src/frameworkTables.ts`, `when: 'always'`), not through `extendSchema`,
420
+ * so there is nothing for a `tables: false` to switch off. An app that wants
421
+ * to own the grant table needs a grant-store seam, and that seam does not
422
+ * exist yet.
410
423
  */
411
424
  readonly tables?: boolean;
412
425
  /**