raindrop-ai 0.0.63 → 0.0.64
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.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { Attachment } from '@dawn/schemas/ingest';
|
|
2
|
-
export { Attachment } from '@dawn/schemas/ingest';
|
|
1
|
+
import { Attachment as Attachment$1 } from '@dawn/schemas/ingest';
|
|
3
2
|
import { Span } from '@opentelemetry/api';
|
|
4
3
|
import { z } from 'zod';
|
|
5
4
|
import { SpanProcessor } from '@opentelemetry/sdk-trace-node';
|
|
6
5
|
import { SpanProcessorOptions } from '@traceloop/node-server-sdk';
|
|
7
6
|
|
|
7
|
+
type Attachment = Attachment$1;
|
|
8
8
|
/**
|
|
9
9
|
* Interface for tracking events.
|
|
10
10
|
*
|
|
@@ -487,4 +487,4 @@ declare class Raindrop {
|
|
|
487
487
|
close(): Promise<void>;
|
|
488
488
|
}
|
|
489
489
|
|
|
490
|
-
export { type AiTrackEvent, type AttachmentType, type BeginInteractionOptions, type FinishInteractionOptions, type IdentifyEvent, type Interaction, MAX_INGEST_SIZE_BYTES, type PartialAiTrackEvent, Raindrop, type SignalEvent, type SpanParams, type ToolParams, type TraceContext, type Tracer, type WorkflowParams, Raindrop as default };
|
|
490
|
+
export { type AiTrackEvent, type Attachment, type AttachmentType, type BeginInteractionOptions, type FinishInteractionOptions, type IdentifyEvent, type Interaction, MAX_INGEST_SIZE_BYTES, type PartialAiTrackEvent, Raindrop, type SignalEvent, type SpanParams, type ToolParams, type TraceContext, type Tracer, type WorkflowParams, Raindrop as default };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { Attachment } from '@dawn/schemas/ingest';
|
|
2
|
-
export { Attachment } from '@dawn/schemas/ingest';
|
|
1
|
+
import { Attachment as Attachment$1 } from '@dawn/schemas/ingest';
|
|
3
2
|
import { Span } from '@opentelemetry/api';
|
|
4
3
|
import { z } from 'zod';
|
|
5
4
|
import { SpanProcessor } from '@opentelemetry/sdk-trace-node';
|
|
6
5
|
import { SpanProcessorOptions } from '@traceloop/node-server-sdk';
|
|
7
6
|
|
|
7
|
+
type Attachment = Attachment$1;
|
|
8
8
|
/**
|
|
9
9
|
* Interface for tracking events.
|
|
10
10
|
*
|
|
@@ -487,4 +487,4 @@ declare class Raindrop {
|
|
|
487
487
|
close(): Promise<void>;
|
|
488
488
|
}
|
|
489
489
|
|
|
490
|
-
export { type AiTrackEvent, type AttachmentType, type BeginInteractionOptions, type FinishInteractionOptions, type IdentifyEvent, type Interaction, MAX_INGEST_SIZE_BYTES, type PartialAiTrackEvent, Raindrop, type SignalEvent, type SpanParams, type ToolParams, type TraceContext, type Tracer, type WorkflowParams, Raindrop as default };
|
|
490
|
+
export { type AiTrackEvent, type Attachment, type AttachmentType, type BeginInteractionOptions, type FinishInteractionOptions, type IdentifyEvent, type Interaction, MAX_INGEST_SIZE_BYTES, type PartialAiTrackEvent, Raindrop, type SignalEvent, type SpanParams, type ToolParams, type TraceContext, type Tracer, type WorkflowParams, Raindrop as default };
|
package/dist/index.js
CHANGED
|
@@ -128,7 +128,7 @@ var CategorizationRequestSchema = import_zod.z.object({
|
|
|
128
128
|
// package.json
|
|
129
129
|
var package_default = {
|
|
130
130
|
name: "raindrop-ai",
|
|
131
|
-
version: "0.0.
|
|
131
|
+
version: "0.0.64",
|
|
132
132
|
main: "dist/index.js",
|
|
133
133
|
module: "dist/index.mjs",
|
|
134
134
|
types: "dist/index.d.ts",
|
package/dist/index.mjs
CHANGED