@devopsplaybook.io/otel-utils-fastify 0.0.1-beta9 → 1.0.0-beta1

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/dist/index.d.ts CHANGED
@@ -1,2 +1 @@
1
1
  export * from "./src/StandardTracerFastify";
2
- export * from "./src/RequestOTel";
package/dist/index.js CHANGED
@@ -1,6 +1,4 @@
1
1
  "use strict";
2
- // Entry point for the otel-utils npm package
3
- // Export all modules from src
4
2
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5
3
  if (k2 === undefined) k2 = k;
6
4
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -17,4 +15,3 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
17
15
  };
18
16
  Object.defineProperty(exports, "__esModule", { value: true });
19
17
  __exportStar(require("./src/StandardTracerFastify"), exports);
20
- __exportStar(require("./src/RequestOTel"), exports);
package/index.ts CHANGED
@@ -1,5 +1 @@
1
- // Entry point for the otel-utils npm package
2
- // Export all modules from src
3
-
4
1
  export * from "./src/StandardTracerFastify";
5
- export * from "./src/RequestOTel";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopsplaybook.io/otel-utils-fastify",
3
- "version": "0.0.1-beta9",
3
+ "version": "1.0.0-beta1",
4
4
  "description": "Utility to simplify integration with Open Telemetry for Fastify API Server",
5
5
  "keywords": [
6
6
  "Open",
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "dependencies": {
22
22
  "fastify": "^5.5.0",
23
- "@devopsplaybook.io/otel-utils": "1.0.1-beta6"
23
+ "@devopsplaybook.io/otel-utils": "1.0.1-beta8"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@eslint/js": "^9.34.0",
@@ -1,4 +0,0 @@
1
- import { Span } from "@opentelemetry/sdk-trace-base";
2
- export interface RequestOTel {
3
- tracerSpanApi: Span;
4
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,5 +0,0 @@
1
- import { Span } from "@opentelemetry/sdk-trace-base";
2
-
3
- export interface RequestOTel {
4
- tracerSpanApi: Span;
5
- }