@moostjs/otel 0.5.15 → 0.5.17

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -0
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -105,6 +105,7 @@ interface TPipeMetas<T extends TObject = TEmpty> {
105
105
  paramMeta?: TMoostParamsMetadata & T;
106
106
  targetMeta?: TMoostParamsMetadata & T;
107
107
  instance?: TObject;
108
+ scopeId?: string | symbol;
108
109
  type: TFunction;
109
110
  index?: number;
110
111
  key: string | symbol;
@@ -155,6 +156,7 @@ interface TMoostParamsMetadata extends TCommonMetaFields, TCommonMoostMeta {
155
156
  nullable?: boolean;
156
157
  paramSource?: string;
157
158
  paramName?: string;
159
+ fromScope?: string | symbol;
158
160
  }
159
161
  type TInjectableScope = 'FOR_EVENT' | 'SINGLETON';
160
162
  type TMoostHandler<T> = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moostjs/otel",
3
- "version": "0.5.15",
3
+ "version": "0.5.17",
4
4
  "description": "@moostjs/otel",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",
@@ -39,6 +39,6 @@
39
39
  "dependencies": {
40
40
  "@opentelemetry/api": "^1.9.0",
41
41
  "@opentelemetry/sdk-trace-base": "^1.25.1",
42
- "moost": "0.5.15"
42
+ "moost": "0.5.17"
43
43
  }
44
44
  }