neatlogs 1.0.6 → 1.0.9
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/azure-openai.cjs +344 -0
- package/dist/azure-openai.cjs.map +1 -0
- package/dist/azure-openai.d.ts +30 -0
- package/dist/azure-openai.mjs +318 -0
- package/dist/azure-openai.mjs.map +1 -0
- package/dist/bedrock.cjs +540 -0
- package/dist/bedrock.cjs.map +1 -0
- package/dist/bedrock.d.ts +29 -0
- package/dist/bedrock.mjs +514 -0
- package/dist/bedrock.mjs.map +1 -0
- package/dist/browser.cjs +121 -0
- package/dist/browser.cjs.map +1 -0
- package/dist/browser.d.ts +143 -0
- package/dist/browser.mjs +96 -0
- package/dist/browser.mjs.map +1 -0
- package/dist/claude-agent-sdk.cjs +406 -0
- package/dist/claude-agent-sdk.cjs.map +1 -0
- package/dist/claude-agent-sdk.d.ts +49 -0
- package/dist/claude-agent-sdk.mjs +381 -0
- package/dist/claude-agent-sdk.mjs.map +1 -0
- package/dist/index.cjs +3642 -1126
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.mjs +3637 -1132
- package/dist/index.mjs.map +1 -1
- package/dist/langchain.cjs +9 -9
- package/dist/langchain.cjs.map +1 -1
- package/dist/langchain.mjs +9 -9
- package/dist/langchain.mjs.map +1 -1
- package/dist/mastra-wrap.cjs +25 -25
- package/dist/mastra-wrap.cjs.map +1 -1
- package/dist/mastra-wrap.mjs +25 -25
- package/dist/mastra-wrap.mjs.map +1 -1
- package/dist/openai-agents.cjs +6 -6
- package/dist/openai-agents.cjs.map +1 -1
- package/dist/openai-agents.mjs +6 -6
- package/dist/openai-agents.mjs.map +1 -1
- package/dist/opencode-plugin.cjs +682 -0
- package/dist/opencode-plugin.cjs.map +1 -0
- package/dist/opencode-plugin.d.ts +39 -0
- package/dist/opencode-plugin.mjs +644 -0
- package/dist/opencode-plugin.mjs.map +1 -0
- package/dist/openrouter-agent.cjs +273 -0
- package/dist/openrouter-agent.cjs.map +1 -0
- package/dist/openrouter-agent.d.ts +34 -0
- package/dist/openrouter-agent.mjs +247 -0
- package/dist/openrouter-agent.mjs.map +1 -0
- package/dist/pi-agent.cjs +10 -10
- package/dist/pi-agent.cjs.map +1 -1
- package/dist/pi-agent.mjs +10 -10
- package/dist/pi-agent.mjs.map +1 -1
- package/dist/vertex-ai.cjs +424 -0
- package/dist/vertex-ai.cjs.map +1 -0
- package/dist/vertex-ai.d.ts +39 -0
- package/dist/vertex-ai.mjs +397 -0
- package/dist/vertex-ai.mjs.map +1 -0
- package/package.json +78 -2
package/dist/index.d.ts
CHANGED
|
@@ -2,11 +2,17 @@ import { Span as Span$1 } from '@opentelemetry/api';
|
|
|
2
2
|
export { createAITelemetry, wrapAISDK } from './ai-sdk.js';
|
|
3
3
|
export { traceTool as traceToolOpenAI, wrapOpenAI } from './openai.js';
|
|
4
4
|
export { traceTool as traceToolAnthropic, wrapAnthropic } from './anthropic.js';
|
|
5
|
+
export { traceTool as traceToolAzureOpenAI, wrapAzureOpenAI } from './azure-openai.js';
|
|
6
|
+
export { traceTool as traceToolVertexAI, wrapVertexAI, wrapVertexAIChat } from './vertex-ai.js';
|
|
7
|
+
export { traceTool as traceToolBedrock, wrapBedrock } from './bedrock.js';
|
|
5
8
|
export { langchainHandler } from './langchain.js';
|
|
6
9
|
export { strandsHooks } from './strands.js';
|
|
7
10
|
export { openaiAgentsProcessor } from './openai-agents.js';
|
|
8
11
|
export { wrapMastra } from './mastra-wrap.js';
|
|
9
12
|
export { piAgentHooks } from './pi-agent.js';
|
|
13
|
+
export { wrapClaudeAgentSDK } from './claude-agent-sdk.js';
|
|
14
|
+
export { wrapCallModel, wrapOpenRouterAgent } from './openrouter-agent.js';
|
|
15
|
+
export { NeatlogsOpencodePlugin } from './opencode-plugin.js';
|
|
10
16
|
|
|
11
17
|
/**
|
|
12
18
|
* Span kind for categorizing instrumented operations.
|
|
@@ -535,6 +541,6 @@ declare function registerCrewaiTask(task: {
|
|
|
535
541
|
* SDK version. Kept in sync with package.json by the `version:sync` script
|
|
536
542
|
* (runs automatically on `prebuild`). Do not edit by hand — bump package.json.
|
|
537
543
|
*/
|
|
538
|
-
declare const __version__ = "1.0.
|
|
544
|
+
declare const __version__ = "1.0.9";
|
|
539
545
|
|
|
540
546
|
export { type CachedPrompt, type InitOptions, type MaskFunction, PromptApiError, PromptClient, PromptClientError, PromptHandle, type PromptMessage, PromptNotFoundError, PromptTemplate, Span, type SpanKind, type SpanOptions, type TraceOptions, UserPromptTemplate, __version__, bindTemplates, createPrompt, deletePrompt, fetchPrompt, flush, getMastraObservability, getPrompt, getSessionConfig, init, isDebugEnabled, listPrompts, log, registerCrewaiTask, removeTag, saveAsVersion, shutdown, span, trace, updatePrompt };
|