@synnaxlabs/alamos 0.26.0 → 0.27.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.
@@ -1,4 +1,3 @@
1
1
  import { Instrumentation } from '../instrumentation';
2
-
3
2
  export declare const instrumentation: () => Instrumentation;
4
3
  //# sourceMappingURL=index.d.ts.map
@@ -1,7 +1,6 @@
1
1
  import { Logger } from './log';
2
2
  import { Meta } from './meta';
3
3
  import { Tracer } from './trace';
4
-
5
4
  export interface InstrumentationOptions {
6
5
  key?: string;
7
6
  serviceName?: string;
package/dist/log.d.ts CHANGED
@@ -1,6 +1,5 @@
1
1
  import { UnknownRecord } from '@synnaxlabs/x';
2
2
  import { Meta } from './meta';
3
-
4
3
  export declare const LOG_LEVELS: readonly ["debug", "info", "warn", "error"];
5
4
  export type LogLevel = (typeof LOG_LEVELS)[number];
6
5
  export interface LogLevelFilterProps {
package/dist/trace.d.ts CHANGED
@@ -1,7 +1,6 @@
1
1
  import { AttributeValue, Span as OtelSpan, Tracer as OtelTracer } from '@opentelemetry/api';
2
2
  import { Environment, EnvironmentFilter } from './environment';
3
3
  import { Meta } from './meta';
4
-
5
4
  /** Carrier is an entitty that can carry trace metadata across process bounds */
6
5
  export type Carrier = Record<string, string>;
7
6
  /** Function that executes under the given span */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synnaxlabs/alamos",
3
- "version": "0.26.0",
3
+ "version": "0.27.0",
4
4
  "type": "module",
5
5
  "description": "Distributed instrumentation for Synnax",
6
6
  "repository": "https://github.com/synnaxlabs/synnax/tree/main/freighter/ts",
@@ -24,7 +24,7 @@
24
24
  "@opentelemetry/sdk-trace-web": "^1.23.0",
25
25
  "@uptrace/node": "^1.19.0",
26
26
  "@uptrace/web": "^1.19.0",
27
- "@synnaxlabs/x": "0.26.0"
27
+ "@synnaxlabs/x": "0.27.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@vitest/coverage-v8": "^1.5.0",
@@ -32,8 +32,8 @@
32
32
  "vite": "5.2.11",
33
33
  "vitest": "^1.5.0",
34
34
  "@synnaxlabs/vite-plugin": "0.0.1",
35
- "eslint-config-synnaxlabs": "0.0.1",
36
- "@synnaxlabs/tsconfig": "0.0.2"
35
+ "@synnaxlabs/tsconfig": "0.0.2",
36
+ "eslint-config-synnaxlabs": "0.0.1"
37
37
  },
38
38
  "main": "dist/index.js",
39
39
  "module": "dist/index.js",