@sentry/junior-memory 0.186.0 → 0.188.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/dist/agent.d.ts +36 -0
- package/dist/store.d.ts +18 -0
- package/dist/types.d.ts +18 -0
- package/package.json +2 -2
package/dist/agent.d.ts
CHANGED
|
@@ -41,6 +41,12 @@ declare const createMemoryRequestSchema: z.ZodObject<{
|
|
|
41
41
|
platform: z.ZodLiteral<"slack">;
|
|
42
42
|
teamId: z.ZodString;
|
|
43
43
|
channelId: z.ZodString;
|
|
44
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
45
|
+
id: z.ZodString;
|
|
46
|
+
provider: z.ZodString;
|
|
47
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
48
|
+
providerId: z.ZodString;
|
|
49
|
+
}, z.core.$strict>>;
|
|
44
50
|
visibility: z.ZodEnum<{
|
|
45
51
|
public: "public";
|
|
46
52
|
private: "private";
|
|
@@ -48,10 +54,22 @@ declare const createMemoryRequestSchema: z.ZodObject<{
|
|
|
48
54
|
messageTs: z.ZodOptional<z.ZodString>;
|
|
49
55
|
threadTs: z.ZodOptional<z.ZodString>;
|
|
50
56
|
}, z.core.$strict>, z.ZodObject<{
|
|
57
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
58
|
+
id: z.ZodString;
|
|
59
|
+
provider: z.ZodString;
|
|
60
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
61
|
+
providerId: z.ZodString;
|
|
62
|
+
}, z.core.$strict>>;
|
|
51
63
|
platform: z.ZodLiteral<"local">;
|
|
52
64
|
visibility: z.ZodLiteral<"private">;
|
|
53
65
|
conversationId: z.ZodString;
|
|
54
66
|
}, z.core.$strict>, z.ZodObject<{
|
|
67
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
68
|
+
id: z.ZodString;
|
|
69
|
+
provider: z.ZodString;
|
|
70
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
71
|
+
providerId: z.ZodString;
|
|
72
|
+
}, z.core.$strict>>;
|
|
55
73
|
platform: z.ZodLiteral<"web">;
|
|
56
74
|
visibility: z.ZodEnum<{
|
|
57
75
|
public: "public";
|
|
@@ -122,6 +140,12 @@ declare const extractSessionRequestSchema: z.ZodObject<{
|
|
|
122
140
|
platform: z.ZodLiteral<"slack">;
|
|
123
141
|
teamId: z.ZodString;
|
|
124
142
|
channelId: z.ZodString;
|
|
143
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
144
|
+
id: z.ZodString;
|
|
145
|
+
provider: z.ZodString;
|
|
146
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
147
|
+
providerId: z.ZodString;
|
|
148
|
+
}, z.core.$strict>>;
|
|
125
149
|
visibility: z.ZodEnum<{
|
|
126
150
|
public: "public";
|
|
127
151
|
private: "private";
|
|
@@ -129,10 +153,22 @@ declare const extractSessionRequestSchema: z.ZodObject<{
|
|
|
129
153
|
messageTs: z.ZodOptional<z.ZodString>;
|
|
130
154
|
threadTs: z.ZodOptional<z.ZodString>;
|
|
131
155
|
}, z.core.$strict>, z.ZodObject<{
|
|
156
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
157
|
+
id: z.ZodString;
|
|
158
|
+
provider: z.ZodString;
|
|
159
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
160
|
+
providerId: z.ZodString;
|
|
161
|
+
}, z.core.$strict>>;
|
|
132
162
|
platform: z.ZodLiteral<"local">;
|
|
133
163
|
visibility: z.ZodLiteral<"private">;
|
|
134
164
|
conversationId: z.ZodString;
|
|
135
165
|
}, z.core.$strict>, z.ZodObject<{
|
|
166
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
167
|
+
id: z.ZodString;
|
|
168
|
+
provider: z.ZodString;
|
|
169
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
170
|
+
providerId: z.ZodString;
|
|
171
|
+
}, z.core.$strict>>;
|
|
136
172
|
platform: z.ZodLiteral<"web">;
|
|
137
173
|
visibility: z.ZodEnum<{
|
|
138
174
|
public: "public";
|
package/dist/store.d.ts
CHANGED
|
@@ -95,6 +95,12 @@ export declare const memorySupersessionInputSchema: z.ZodObject<{
|
|
|
95
95
|
platform: z.ZodLiteral<"slack">;
|
|
96
96
|
teamId: z.ZodString;
|
|
97
97
|
channelId: z.ZodString;
|
|
98
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
99
|
+
id: z.ZodString;
|
|
100
|
+
provider: z.ZodString;
|
|
101
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
102
|
+
providerId: z.ZodString;
|
|
103
|
+
}, z.core.$strict>>;
|
|
98
104
|
visibility: z.ZodEnum<{
|
|
99
105
|
public: "public";
|
|
100
106
|
private: "private";
|
|
@@ -102,10 +108,22 @@ export declare const memorySupersessionInputSchema: z.ZodObject<{
|
|
|
102
108
|
messageTs: z.ZodOptional<z.ZodString>;
|
|
103
109
|
threadTs: z.ZodOptional<z.ZodString>;
|
|
104
110
|
}, z.core.$strict>, z.ZodObject<{
|
|
111
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
112
|
+
id: z.ZodString;
|
|
113
|
+
provider: z.ZodString;
|
|
114
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
115
|
+
providerId: z.ZodString;
|
|
116
|
+
}, z.core.$strict>>;
|
|
105
117
|
platform: z.ZodLiteral<"local">;
|
|
106
118
|
visibility: z.ZodLiteral<"private">;
|
|
107
119
|
conversationId: z.ZodString;
|
|
108
120
|
}, z.core.$strict>, z.ZodObject<{
|
|
121
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
122
|
+
id: z.ZodString;
|
|
123
|
+
provider: z.ZodString;
|
|
124
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
125
|
+
providerId: z.ZodString;
|
|
126
|
+
}, z.core.$strict>>;
|
|
109
127
|
platform: z.ZodLiteral<"web">;
|
|
110
128
|
visibility: z.ZodEnum<{
|
|
111
129
|
public: "public";
|
package/dist/types.d.ts
CHANGED
|
@@ -41,6 +41,12 @@ export declare const memoryRuntimeContextSchema: z.ZodObject<{
|
|
|
41
41
|
platform: z.ZodLiteral<"slack">;
|
|
42
42
|
teamId: z.ZodString;
|
|
43
43
|
channelId: z.ZodString;
|
|
44
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
45
|
+
id: z.ZodString;
|
|
46
|
+
provider: z.ZodString;
|
|
47
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
48
|
+
providerId: z.ZodString;
|
|
49
|
+
}, z.core.$strict>>;
|
|
44
50
|
visibility: z.ZodEnum<{
|
|
45
51
|
public: "public";
|
|
46
52
|
private: "private";
|
|
@@ -48,10 +54,22 @@ export declare const memoryRuntimeContextSchema: z.ZodObject<{
|
|
|
48
54
|
messageTs: z.ZodOptional<z.ZodString>;
|
|
49
55
|
threadTs: z.ZodOptional<z.ZodString>;
|
|
50
56
|
}, z.core.$strict>, z.ZodObject<{
|
|
57
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
58
|
+
id: z.ZodString;
|
|
59
|
+
provider: z.ZodString;
|
|
60
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
61
|
+
providerId: z.ZodString;
|
|
62
|
+
}, z.core.$strict>>;
|
|
51
63
|
platform: z.ZodLiteral<"local">;
|
|
52
64
|
visibility: z.ZodLiteral<"private">;
|
|
53
65
|
conversationId: z.ZodString;
|
|
54
66
|
}, z.core.$strict>, z.ZodObject<{
|
|
67
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
68
|
+
id: z.ZodString;
|
|
69
|
+
provider: z.ZodString;
|
|
70
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
71
|
+
providerId: z.ZodString;
|
|
72
|
+
}, z.core.$strict>>;
|
|
55
73
|
platform: z.ZodLiteral<"web">;
|
|
56
74
|
visibility: z.ZodEnum<{
|
|
57
75
|
public: "public";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentry/junior-memory",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.188.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"commander": "^14.0.3",
|
|
28
28
|
"drizzle-orm": "^0.45.2",
|
|
29
29
|
"zod": "^4.4.3",
|
|
30
|
-
"@sentry/junior-plugin-api": "0.
|
|
30
|
+
"@sentry/junior-plugin-api": "0.188.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@oxlint/plugins": "1.79.0",
|