neatlogs 1.0.3 → 1.0.5

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,5 +1,11 @@
1
1
  import { Span as Span$1 } from '@opentelemetry/api';
2
2
  export { createAITelemetry, wrapAISDK } from './ai-sdk.js';
3
+ export { traceTool as traceToolOpenAI, wrapOpenAI } from './openai.js';
4
+ export { traceTool as traceToolAnthropic, wrapAnthropic } from './anthropic.js';
5
+ export { langchainHandler } from './langchain.js';
6
+ export { strandsHooks } from './strands.js';
7
+ export { openaiAgentsProcessor } from './openai-agents.js';
8
+ export { wrapMastra } from './mastra-wrap.js';
3
9
 
4
10
  /**
5
11
  * Span kind for categorizing instrumented operations.
@@ -47,7 +53,7 @@ interface InitOptions {
47
53
  mask?: MaskFunction;
48
54
  /** Sampling rate (0.0 to 1.0). Defaults to 1.0. */
49
55
  sampleRate?: number;
50
- /** Whether to capture log records. Defaults to true. */
56
+ /** Whether to capture log records. Defaults to false. */
51
57
  captureLogs?: boolean;
52
58
  /** Whether to capture input/output content. Defaults to true. */
53
59
  traceContent?: boolean;
@@ -55,7 +61,7 @@ interface InitOptions {
55
61
  pii?: 'redact' | 'hash' | false;
56
62
  /** SDK version override. */
57
63
  version?: string;
58
- /** Backend endpoint URL. Defaults to https://staging-cloud.neatlogs.com/api/data/v4/batch */
64
+ /** Backend endpoint URL. Defaults to https://staging-cloud.neatlogs.com */
59
65
  endpoint?: string;
60
66
  /** Maximum spans per export batch. Defaults to 100. */
61
67
  batchSize?: number;