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 +1 -1
- package/dist/index.mjs +1 -1
- package/dist/otel/index.d.mts +2 -1
- package/dist/otel/index.d.ts +2 -1
- package/dist/otel/index.js +3 -1
- package/dist/otel/index.mjs +3 -1
- package/package.json +1 -1
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.
|
|
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
package/dist/otel/index.d.mts
CHANGED
|
@@ -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;
|
package/dist/otel/index.d.ts
CHANGED
|
@@ -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;
|
package/dist/otel/index.js
CHANGED
|
@@ -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 = {
|
package/dist/otel/index.mjs
CHANGED
|
@@ -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 = {
|