@abto-app/event 0.1.7 → 0.2.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.
- package/README.md +1 -1
- package/dist/client.d.ts +1 -1
- package/dist/client.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/client.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { type TraceHeaders } from './context.js';
|
|
|
2
2
|
import { type EventRegistry } from './event-registry.js';
|
|
3
3
|
import type { BrowserIdentity } from './identity.js';
|
|
4
4
|
import type { AbtoBrowserConfig, CommonProperties, EventNameFor, EventPropertiesFor, LlmTrace, ResolvedConfig, StartLlmTraceOptions } from './types.js';
|
|
5
|
-
export declare const SDK_VERSION = "0.
|
|
5
|
+
export declare const SDK_VERSION = "0.2.0";
|
|
6
6
|
export declare class AbtoBrowserClient<R extends EventRegistry = EventRegistry> {
|
|
7
7
|
#private;
|
|
8
8
|
readonly config: ResolvedConfig<R>;
|
package/dist/client.js
CHANGED
|
@@ -12,7 +12,7 @@ import { deriveTextMeta } from './privacy.js';
|
|
|
12
12
|
import { Transport } from './transport.js';
|
|
13
13
|
import { ABTO_SCHEMA_VERSION as SCHEMA_VERSION } from './types.js';
|
|
14
14
|
import { ABTO_AI_INTERACTION_TYPES, isAIInteractionType } from './system-events.generated.js';
|
|
15
|
-
export const SDK_VERSION = '0.
|
|
15
|
+
export const SDK_VERSION = '0.2.0';
|
|
16
16
|
function normalizeEnvironment(value) {
|
|
17
17
|
return value === 'development' ? 'development' : 'production';
|
|
18
18
|
}
|
package/package.json
CHANGED