raindrop-ai 0.0.76 → 0.0.77

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.js CHANGED
@@ -138,7 +138,7 @@ var CategorizationRequestSchema = import_zod.z.object({
138
138
  // package.json
139
139
  var package_default = {
140
140
  name: "raindrop-ai",
141
- version: "0.0.76",
141
+ version: "0.0.77",
142
142
  main: "dist/index.js",
143
143
  module: "dist/index.mjs",
144
144
  types: "dist/index.d.ts",
package/dist/index.mjs CHANGED
@@ -104,7 +104,7 @@ var CategorizationRequestSchema = z.object({
104
104
  // package.json
105
105
  var package_default = {
106
106
  name: "raindrop-ai",
107
- version: "0.0.76",
107
+ version: "0.0.77",
108
108
  main: "dist/index.js",
109
109
  module: "dist/index.mjs",
110
110
  types: "dist/index.d.ts",
@@ -23,11 +23,12 @@
23
23
  * });
24
24
  * ```
25
25
  */
26
- declare function metadata({ userId, convoId, eventName, eventId, }: {
26
+ declare function metadata({ userId, convoId, eventName, eventId, wizardSession, }: {
27
27
  userId: string;
28
28
  convoId?: string;
29
29
  eventName?: string;
30
30
  eventId?: string;
31
+ wizardSession?: string;
31
32
  }): Record<string, string>;
32
33
  declare const _default: {
33
34
  metadata: typeof metadata;
@@ -23,11 +23,12 @@
23
23
  * });
24
24
  * ```
25
25
  */
26
- declare function metadata({ userId, convoId, eventName, eventId, }: {
26
+ declare function metadata({ userId, convoId, eventName, eventId, wizardSession, }: {
27
27
  userId: string;
28
28
  convoId?: string;
29
29
  eventName?: string;
30
30
  eventId?: string;
31
+ wizardSession?: string;
31
32
  }): Record<string, string>;
32
33
  declare const _default: {
33
34
  metadata: typeof metadata;
@@ -28,7 +28,8 @@ function metadata({
28
28
  userId,
29
29
  convoId,
30
30
  eventName,
31
- eventId
31
+ eventId,
32
+ wizardSession
32
33
  }) {
33
34
  const result = {
34
35
  "raindrop.userId": userId,
@@ -36,6 +37,7 @@ function metadata({
36
37
  };
37
38
  if (convoId) result["raindrop.convoId"] = convoId;
38
39
  if (eventName) result["raindrop.eventName"] = eventName;
40
+ if (wizardSession) result["raindrop.wizardSession"] = wizardSession;
39
41
  return result;
40
42
  }
41
43
  var otel_default = {
@@ -3,7 +3,8 @@ function metadata({
3
3
  userId,
4
4
  convoId,
5
5
  eventName,
6
- eventId
6
+ eventId,
7
+ wizardSession
7
8
  }) {
8
9
  const result = {
9
10
  "raindrop.userId": userId,
@@ -11,6 +12,7 @@ function metadata({
11
12
  };
12
13
  if (convoId) result["raindrop.convoId"] = convoId;
13
14
  if (eventName) result["raindrop.eventName"] = eventName;
15
+ if (wizardSession) result["raindrop.wizardSession"] = wizardSession;
14
16
  return result;
15
17
  }
16
18
  var otel_default = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "raindrop-ai",
3
- "version": "0.0.76",
3
+ "version": "0.0.77",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",