@databuddy/sdk 2.3.25 → 2.3.26
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/ai/vercel/index.d.mts +7 -1
- package/dist/ai/vercel/index.d.ts +7 -1
- package/dist/ai/vercel/index.mjs +2 -2
- package/dist/core/index.mjs +1 -1
- package/dist/react/index.mjs +1 -1
- package/dist/shared/@databuddy/{sdk.d6Qh5SSI.mjs → sdk.ClnhxS25.mjs} +1 -1
- package/dist/vue/index.mjs +1 -1
- package/package.json +1 -1
|
@@ -233,7 +233,13 @@ declare const httpTransport: (url: string, clientId?: string, apiKey?: string) =
|
|
|
233
233
|
*/
|
|
234
234
|
declare const databuddyLLM: (options?: DatabuddyLLMOptions) => {
|
|
235
235
|
track: <T extends LanguageModel>(model: T, trackOptions?: TrackOptions) => T;
|
|
236
|
+
transport: Transport;
|
|
236
237
|
};
|
|
237
238
|
|
|
238
|
-
|
|
239
|
+
/**
|
|
240
|
+
* Generate a simple trace ID
|
|
241
|
+
*/
|
|
242
|
+
declare const generateTraceId: () => string;
|
|
243
|
+
|
|
244
|
+
export { databuddyLLM, generateTraceId, httpTransport };
|
|
239
245
|
export type { AICall, AIError, DatabuddyLLMOptions, TokenCost, TokenUsage, ToolCallInfo, TrackOptions, Transport };
|
|
@@ -233,7 +233,13 @@ declare const httpTransport: (url: string, clientId?: string, apiKey?: string) =
|
|
|
233
233
|
*/
|
|
234
234
|
declare const databuddyLLM: (options?: DatabuddyLLMOptions) => {
|
|
235
235
|
track: <T extends LanguageModel>(model: T, trackOptions?: TrackOptions) => T;
|
|
236
|
+
transport: Transport;
|
|
236
237
|
};
|
|
237
238
|
|
|
238
|
-
|
|
239
|
+
/**
|
|
240
|
+
* Generate a simple trace ID
|
|
241
|
+
*/
|
|
242
|
+
declare const generateTraceId: () => string;
|
|
243
|
+
|
|
244
|
+
export { databuddyLLM, generateTraceId, httpTransport };
|
|
239
245
|
export type { AICall, AIError, DatabuddyLLMOptions, TokenCost, TokenUsage, ToolCallInfo, TrackOptions, Transport };
|
package/dist/ai/vercel/index.mjs
CHANGED
package/dist/core/index.mjs
CHANGED
package/dist/react/index.mjs
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import { detectClientId } from '../core/index.mjs';
|
|
4
4
|
export { clear, flush, getAnonymousId, getSessionId, getTracker, getTrackingIds, getTrackingParams, isTrackerAvailable, track, trackError } from '../core/index.mjs';
|
|
5
|
-
import { i as isScriptInjected, c as createScript } from '../shared/@databuddy/sdk.
|
|
5
|
+
import { i as isScriptInjected, c as createScript } from '../shared/@databuddy/sdk.ClnhxS25.mjs';
|
|
6
6
|
import React, { useRef, useMemo, useEffect, useSyncExternalStore, createContext, useContext } from 'react';
|
|
7
7
|
import { B as BrowserFlagStorage, C as CoreFlagsManager } from '../shared/@databuddy/sdk.DE24-JrU.mjs';
|
|
8
8
|
import { l as logger } from '../shared/@databuddy/sdk.CALvx07o.mjs';
|
package/dist/vue/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, ref, onMounted, onUnmounted, watch, reactive, watchEffect, computed } from 'vue';
|
|
2
|
-
import { i as isScriptInjected, c as createScript } from '../shared/@databuddy/sdk.
|
|
2
|
+
import { i as isScriptInjected, c as createScript } from '../shared/@databuddy/sdk.ClnhxS25.mjs';
|
|
3
3
|
import { B as BrowserFlagStorage, C as CoreFlagsManager } from '../shared/@databuddy/sdk.DE24-JrU.mjs';
|
|
4
4
|
import '../shared/@databuddy/sdk.CALvx07o.mjs';
|
|
5
5
|
|