@voltro/plugin-mail 0.33.0 → 0.34.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 +1801 -0
- package/dist/index.d.ts +18 -0
- package/dist/index.js +174 -168
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -247,6 +247,24 @@ export declare interface MailPluginOptions {
|
|
|
247
247
|
* messages. Default 1000. Ignored when the provider schedules natively. */
|
|
248
248
|
readonly scheduleTickMs?: number;
|
|
249
249
|
/** Disambiguates multiple instances of this plugin in one app. */
|
|
250
|
+
/**
|
|
251
|
+
* Namespace for this plugin's inspect endpoints. Default `mail`.
|
|
252
|
+
*
|
|
253
|
+
* Set it when your app already publishes under that name — an exact tag
|
|
254
|
+
* collision is fatal at codegen, and this is the way out. Orthogonal to
|
|
255
|
+
* `name` below: `alias` REPLACES the namespace, `name` distinguishes two
|
|
256
|
+
* installations within it.
|
|
257
|
+
*
|
|
258
|
+
* The cost, stated because nothing else states it: the local and cloud
|
|
259
|
+
* dashboards fetch this plugin's panel at the DEFAULT slug, so an aliased
|
|
260
|
+
* install keeps working while its dashboard panel 404s. Alias to escape a
|
|
261
|
+
* collision, not for taste.
|
|
262
|
+
*/
|
|
263
|
+
readonly alias?: string;
|
|
264
|
+
/**
|
|
265
|
+
* Discriminator for a SECOND installation of this plugin, when one app runs
|
|
266
|
+
* two (`@voltro/plugin-mail#analytics`). Not a rename — for that use `alias`.
|
|
267
|
+
*/
|
|
250
268
|
readonly name?: string;
|
|
251
269
|
}
|
|
252
270
|
|