@voltro/plugin-storage 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.
@@ -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-storage itself, which is proprietary (see LICENSE).
7
7
 
8
- Generated from the resolved runtime dependency closure (118 packages).
8
+ Generated from the resolved runtime dependency closure (117 packages).
9
9
 
10
10
  ---
11
11
 
@@ -3928,34 +3928,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3928
3928
  SOFTWARE.
3929
3929
  ```
3930
3930
 
3931
- ## @effect/opentelemetry@0.64.0
3932
-
3933
- License: MIT
3934
-
3935
- ```
3936
- MIT License
3937
-
3938
- Copyright (c) 2020-present The Contributors
3939
-
3940
- Permission is hereby granted, free of charge, to any person obtaining a copy
3941
- of this software and associated documentation files (the "Software"), to deal
3942
- in the Software without restriction, including without limitation the rights
3943
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3944
- copies of the Software, and to permit persons to whom the Software is
3945
- furnished to do so, subject to the following conditions:
3946
-
3947
- The above copyright notice and this permission notice shall be included in all
3948
- copies or substantial portions of the Software.
3949
-
3950
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3951
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3952
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3953
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3954
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3955
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3956
- SOFTWARE.
3957
- ```
3958
-
3959
3931
  ## @effect/platform-node@0.108.0
3960
3932
 
3961
3933
  License: MIT
package/dist/index.d.ts CHANGED
@@ -648,6 +648,24 @@ export declare interface StoragePluginOptions {
648
648
  * transcoder is set; false to only transcode via `service.transcode(refId)`. */
649
649
  readonly autoTranscode?: boolean;
650
650
  /** Disambiguates multiple instances of this plugin in one app. */
651
+ /**
652
+ * Namespace for this plugin's rpc tags + inspect endpoints. Default `storage`.
653
+ *
654
+ * Set it when your app already publishes under that name — an exact tag
655
+ * collision is fatal at codegen, and this is the way out. Orthogonal to
656
+ * `name` below: `alias` REPLACES the namespace, `name` distinguishes two
657
+ * installations within it.
658
+ *
659
+ * The cost, stated because nothing else states it: the local and cloud
660
+ * dashboards fetch this plugin's panel at the DEFAULT slug, so an aliased
661
+ * install keeps working while its dashboard panel 404s. Alias to escape a
662
+ * collision, not for taste.
663
+ */
664
+ readonly alias?: string;
665
+ /**
666
+ * Discriminator for a SECOND installation of this plugin, when one app runs
667
+ * two (`@voltro/plugin-storage#analytics`). Not a rename — for that use `alias`.
668
+ */
651
669
  readonly name?: string;
652
670
  }
653
671