@voltro/plugin-billing 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/CHANGELOG.md +639 -2
- package/dist/index.d.ts +6 -4
- package/dist/index.js +397 -375
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -204,10 +204,12 @@ export declare interface BillingPluginOptions {
|
|
|
204
204
|
* `name` below: `alias` REPLACES the namespace, `name` distinguishes two
|
|
205
205
|
* installations within it.
|
|
206
206
|
*
|
|
207
|
-
* The
|
|
208
|
-
*
|
|
209
|
-
*
|
|
210
|
-
*
|
|
207
|
+
* The dashboard panel follows: the plugin's inspect endpoints keep a mount
|
|
208
|
+
* under its CANONICAL name alongside the aliased one, so aliasing does not
|
|
209
|
+
* take the panel away. The one case it cannot cover is two installs of this
|
|
210
|
+
* plugin — one canonical name, two panels — which get no shared mount at
|
|
211
|
+
* all, on purpose. Read `inspectSlug` from `/_voltro/inspect/plugins` to
|
|
212
|
+
* reach a specific install.
|
|
211
213
|
*/
|
|
212
214
|
readonly alias?: string;
|
|
213
215
|
/**
|