@voltro/plugin-mail 0.32.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 +2006 -0
- package/THIRD-PARTY-NOTICES.md +1 -29
- package/dist/index.d.ts +18 -0
- package/dist/index.js +174 -168
- package/package.json +6 -5
package/THIRD-PARTY-NOTICES.md
CHANGED
|
@@ -5,7 +5,7 @@ property of its respective copyright holders and is used under the terms of
|
|
|
5
5
|
its license. This file is provided for attribution; it grants no rights in
|
|
6
6
|
@voltro/plugin-mail itself, which is proprietary (see LICENSE).
|
|
7
7
|
|
|
8
|
-
Generated from the resolved runtime dependency closure (
|
|
8
|
+
Generated from the resolved runtime dependency closure (77 packages).
|
|
9
9
|
|
|
10
10
|
---
|
|
11
11
|
|
|
@@ -37,34 +37,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
37
37
|
SOFTWARE.
|
|
38
38
|
```
|
|
39
39
|
|
|
40
|
-
## @effect/opentelemetry@0.64.0
|
|
41
|
-
|
|
42
|
-
License: MIT
|
|
43
|
-
|
|
44
|
-
```
|
|
45
|
-
MIT License
|
|
46
|
-
|
|
47
|
-
Copyright (c) 2020-present The Contributors
|
|
48
|
-
|
|
49
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
50
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
51
|
-
in the Software without restriction, including without limitation the rights
|
|
52
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
53
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
54
|
-
furnished to do so, subject to the following conditions:
|
|
55
|
-
|
|
56
|
-
The above copyright notice and this permission notice shall be included in all
|
|
57
|
-
copies or substantial portions of the Software.
|
|
58
|
-
|
|
59
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
60
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
61
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
62
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
63
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
64
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
65
|
-
SOFTWARE.
|
|
66
|
-
```
|
|
67
|
-
|
|
68
40
|
## @effect/platform@0.97.0
|
|
69
41
|
|
|
70
42
|
License: MIT
|
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
|
|