@stack-spot/portal-network 0.194.2 → 0.195.0-beta.1
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/CHANGELOG.md +174 -0
- package/dist/api/agent-tools.d.ts +6 -0
- package/dist/api/agent-tools.d.ts.map +1 -1
- package/dist/api/agent-tools.js.map +1 -1
- package/dist/api/agent.d.ts +55 -55
- package/dist/api/agent.d.ts.map +1 -1
- package/dist/api/ai.d.ts +189 -86
- package/dist/api/ai.d.ts.map +1 -1
- package/dist/api/ai.js +238 -142
- package/dist/api/ai.js.map +1 -1
- package/dist/api/cloudPlatform.d.ts +70 -129
- package/dist/api/cloudPlatform.d.ts.map +1 -1
- package/dist/api/cloudPlatform.js +79 -72
- package/dist/api/cloudPlatform.js.map +1 -1
- package/dist/api/codeShift.d.ts +315 -62
- package/dist/api/codeShift.d.ts.map +1 -1
- package/dist/api/codeShift.js +153 -12
- package/dist/api/codeShift.js.map +1 -1
- package/dist/api/discover.d.ts +23 -12
- package/dist/api/discover.d.ts.map +1 -1
- package/dist/api/discover.js +10 -0
- package/dist/api/discover.js.map +1 -1
- package/dist/api-addresses.d.ts.map +1 -1
- package/dist/client/account.d.ts +233 -233
- package/dist/client/account.d.ts.map +1 -1
- package/dist/client/agent-tools.d.ts +124 -124
- package/dist/client/agent-tools.d.ts.map +1 -1
- package/dist/client/agent-tools.js +10 -1
- package/dist/client/agent-tools.js.map +1 -1
- package/dist/client/agent.d.ts +46 -46
- package/dist/client/agent.d.ts.map +1 -1
- package/dist/client/ai.d.ts +123 -77
- package/dist/client/ai.d.ts.map +1 -1
- package/dist/client/ai.js +44 -1
- package/dist/client/ai.js.map +1 -1
- package/dist/client/api-management.d.ts +2 -2
- package/dist/client/cloud-account.d.ts +13 -13
- package/dist/client/cloud-platform-horizon.d.ts +19 -19
- package/dist/client/cloud-platform.d.ts +114 -89
- package/dist/client/cloud-platform.d.ts.map +1 -1
- package/dist/client/cloud-platform.js +73 -46
- package/dist/client/cloud-platform.js.map +1 -1
- package/dist/client/cloud-runtimes.d.ts +4 -4
- package/dist/client/cloud-services.d.ts +17 -17
- package/dist/client/cloud-services.d.ts.map +1 -1
- package/dist/client/code-shift.d.ts +356 -258
- package/dist/client/code-shift.d.ts.map +1 -1
- package/dist/client/code-shift.js +91 -1
- package/dist/client/code-shift.js.map +1 -1
- package/dist/client/content.d.ts +127 -132
- package/dist/client/content.d.ts.map +1 -1
- package/dist/client/data-integration.d.ts +55 -55
- package/dist/client/data-integration.d.ts.map +1 -1
- package/dist/client/discover.d.ts +15 -9
- package/dist/client/discover.d.ts.map +1 -1
- package/dist/client/discover.js +208 -0
- package/dist/client/discover.js.map +1 -1
- package/dist/client/event-bus.d.ts.map +1 -1
- package/dist/client/gen-ai-inference.d.ts +20 -20
- package/dist/client/insights.d.ts +7 -7
- package/dist/client/notification.d.ts +10 -10
- package/dist/client/runtime-manager.d.ts +8 -8
- package/dist/client/types.d.ts +14 -0
- package/dist/client/types.d.ts.map +1 -1
- package/dist/client/workflow.d.ts +10 -10
- package/dist/client/workspace-ai.d.ts +48 -48
- package/dist/client/workspace-manager.d.ts +77 -77
- package/dist/client/workspace-search.d.ts +2 -2
- package/dist/client/workspace.d.ts +58 -105
- package/dist/client/workspace.d.ts.map +1 -1
- package/dist/error/dictionary/cloud-platform.d.ts +6 -0
- package/dist/error/dictionary/cloud-platform.d.ts.map +1 -1
- package/dist/error/dictionary/cloud-platform.js +6 -0
- package/dist/error/dictionary/cloud-platform.js.map +1 -1
- package/dist/utils/StreamedJson.d.ts.map +1 -1
- package/dist/utils/StreamedJson.js +9 -1
- package/dist/utils/StreamedJson.js.map +1 -1
- package/package.json +2 -2
- package/readme.md +2 -1
- package/src/api/account.ts +1 -0
- package/src/api/agent-tools.ts +9 -0
- package/src/api/agent.ts +2 -0
- package/src/api/ai.ts +364 -157
- package/src/api/cloudPlatform.ts +142 -216
- package/src/api/codeShift.ts +607 -69
- package/src/api/discover.ts +35 -12
- package/src/api/notification.ts +2 -0
- package/src/client/agent-tools.ts +10 -1
- package/src/client/ai.ts +37 -0
- package/src/client/cloud-platform.ts +40 -25
- package/src/client/code-shift.ts +54 -1
- package/src/client/discover.ts +220 -3
- package/src/client/types.ts +17 -2
- package/src/error/dictionary/cloud-platform.ts +6 -0
- package/src/utils/StreamedJson.tsx +9 -2
|
@@ -9,8 +9,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
9
9
|
* Generates a url to upload the file
|
|
10
10
|
*/
|
|
11
11
|
generateUrlToFileUpload: import("../network/types.js").MutationObject<Omit<{
|
|
12
|
-
xAccountId?: string | null
|
|
13
|
-
xUsername?: string | null
|
|
12
|
+
xAccountId?: string | null;
|
|
13
|
+
xUsername?: string | null;
|
|
14
14
|
authorization: string;
|
|
15
15
|
newFileUploadRequest: import("../api/dataIntegration.js").NewFileUploadRequest;
|
|
16
16
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").NewFileUploadFormResponse>;
|
|
@@ -19,8 +19,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
19
19
|
*/
|
|
20
20
|
getFileProcessingStatusById: import("../network/types.js").QueryObject<Omit<{
|
|
21
21
|
fileUploadId: string;
|
|
22
|
-
xAccountId?: string | null
|
|
23
|
-
xUsername?: string | null
|
|
22
|
+
xAccountId?: string | null;
|
|
23
|
+
xUsername?: string | null;
|
|
24
24
|
authorization: string;
|
|
25
25
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").FileUploadStatusResponse>;
|
|
26
26
|
/**
|
|
@@ -29,8 +29,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
29
29
|
*/
|
|
30
30
|
saveKnowledgeObjects: import("../network/types.js").MutationObject<Omit<{
|
|
31
31
|
fileUploadId: string;
|
|
32
|
-
xAccountId?: string | null
|
|
33
|
-
xUsername?: string | null
|
|
32
|
+
xAccountId?: string | null;
|
|
33
|
+
xUsername?: string | null;
|
|
34
34
|
authorization: string;
|
|
35
35
|
fileUploadSaveChunksRequest: import("../api/dataIntegration.js").FileUploadSaveChunksRequest;
|
|
36
36
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
@@ -39,8 +39,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
39
39
|
*/
|
|
40
40
|
saveChunkedKnowledgeObjects: import("../network/types.js").MutationObject<Omit<{
|
|
41
41
|
fileUploadId: string;
|
|
42
|
-
xAccountId?: string | null
|
|
43
|
-
xUsername?: string | null
|
|
42
|
+
xAccountId?: string | null;
|
|
43
|
+
xUsername?: string | null;
|
|
44
44
|
authorization: string;
|
|
45
45
|
fileUploadSaveChunksRequest: import("../api/dataIntegration.js").FileUploadSaveChunksRequest;
|
|
46
46
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
@@ -49,8 +49,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
49
49
|
*/
|
|
50
50
|
splitFile: import("../network/types.js").MutationObject<Omit<{
|
|
51
51
|
fileUploadId: string;
|
|
52
|
-
xAccountId?: string | null
|
|
53
|
-
xUsername?: string | null
|
|
52
|
+
xAccountId?: string | null;
|
|
53
|
+
xUsername?: string | null;
|
|
54
54
|
authorization: string;
|
|
55
55
|
fileSplitRequest: import("../api/dataIntegration.js").FileSplitRequest;
|
|
56
56
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
@@ -66,19 +66,19 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
66
66
|
previewFromSplit: import("../network/types.js").QueryObject<Omit<{
|
|
67
67
|
fileUploadId: string;
|
|
68
68
|
splitStrategy: import("../api/dataIntegration.js").FileSplitStrategy;
|
|
69
|
-
xAccountId?: string | null
|
|
70
|
-
xUsername?: string | null
|
|
69
|
+
xAccountId?: string | null;
|
|
70
|
+
xUsername?: string | null;
|
|
71
71
|
authorization: string;
|
|
72
72
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
73
73
|
/**
|
|
74
74
|
* List of knowledge sources
|
|
75
75
|
*/
|
|
76
76
|
knowledgeSources: import("../network/types.js").QueryObject<Omit<{
|
|
77
|
-
visibility?: import("../api/dataIntegration.js").VisibilityLevelEnum
|
|
78
|
-
order?: import("../api/dataIntegration.js").OrderEnum
|
|
79
|
-
types?: import("../api/dataIntegration.js").KnowledgeSourceTypeEnum[]
|
|
80
|
-
xAccountId?: string | null
|
|
81
|
-
xUsername?: string | null
|
|
77
|
+
visibility?: import("../api/dataIntegration.js").VisibilityLevelEnum;
|
|
78
|
+
order?: import("../api/dataIntegration.js").OrderEnum;
|
|
79
|
+
types?: import("../api/dataIntegration.js").KnowledgeSourceTypeEnum[];
|
|
80
|
+
xAccountId?: string | null;
|
|
81
|
+
xUsername?: string | null;
|
|
82
82
|
authorization: string;
|
|
83
83
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").KnowledgeSourceItemResponse[]>;
|
|
84
84
|
/**
|
|
@@ -86,8 +86,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
86
86
|
*/
|
|
87
87
|
addFavoriteKnowledgeSource: import("../network/types.js").MutationObject<Omit<{
|
|
88
88
|
slug: string;
|
|
89
|
-
xAccountId?: string | null
|
|
90
|
-
xUsername?: string | null
|
|
89
|
+
xAccountId?: string | null;
|
|
90
|
+
xUsername?: string | null;
|
|
91
91
|
authorization: string;
|
|
92
92
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
93
93
|
/**
|
|
@@ -95,8 +95,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
95
95
|
*/
|
|
96
96
|
removeFavoriteKnowledgeSource: import("../network/types.js").MutationObject<Omit<{
|
|
97
97
|
slug: string;
|
|
98
|
-
xAccountId?: string | null
|
|
99
|
-
xUsername?: string | null
|
|
98
|
+
xAccountId?: string | null;
|
|
99
|
+
xUsername?: string | null;
|
|
100
100
|
authorization: string;
|
|
101
101
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
102
102
|
/**
|
|
@@ -104,11 +104,11 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
104
104
|
*/
|
|
105
105
|
listKnowledgeObjects: import("../network/types.js").QueryObject<Omit<{
|
|
106
106
|
ksSlug: string;
|
|
107
|
-
standalone?: boolean | null
|
|
108
|
-
filePath?: string[]
|
|
109
|
-
contentLimit?: number | null
|
|
110
|
-
xAccountId?: string | null
|
|
111
|
-
xUsername?: string | null
|
|
107
|
+
standalone?: boolean | null;
|
|
108
|
+
filePath?: string[];
|
|
109
|
+
contentLimit?: number | null;
|
|
110
|
+
xAccountId?: string | null;
|
|
111
|
+
xUsername?: string | null;
|
|
112
112
|
authorization: string;
|
|
113
113
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").KnowledgeObjectResponse[]>;
|
|
114
114
|
/**
|
|
@@ -117,21 +117,21 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
117
117
|
getKnowledgeObjectById: import("../network/types.js").QueryObject<Omit<{
|
|
118
118
|
ksSlug: string;
|
|
119
119
|
koId: string;
|
|
120
|
-
xAccountId?: string | null
|
|
121
|
-
xUsername?: string | null
|
|
120
|
+
xAccountId?: string | null;
|
|
121
|
+
xUsername?: string | null;
|
|
122
122
|
authorization: string;
|
|
123
123
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").KnowledgeObjectResponse>;
|
|
124
124
|
uploadFiles: Omit<import("../network/types.js").MutationObject<{
|
|
125
125
|
files: File[];
|
|
126
126
|
type: FileUploadType;
|
|
127
|
-
targetId?: string
|
|
127
|
+
targetId?: string;
|
|
128
128
|
}, string[]>, keyof import("../network/types.js").OperationObject<any>>;
|
|
129
129
|
/**
|
|
130
130
|
* Uploads a KO file
|
|
131
131
|
*/
|
|
132
132
|
fileUploadFormKnowledgeObject: import("../network/types.js").MutationObject<Omit<{
|
|
133
|
-
xAccountId?: string | null
|
|
134
|
-
xUsername?: string | null
|
|
133
|
+
xAccountId?: string | null;
|
|
134
|
+
xUsername?: string | null;
|
|
135
135
|
authorization: string;
|
|
136
136
|
newFileUploadRequest: import("../api/dataIntegration.js").NewFileUploadRequest;
|
|
137
137
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").NewFileUploadFormResponse>;
|
|
@@ -139,8 +139,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
139
139
|
* Create Ks
|
|
140
140
|
*/
|
|
141
141
|
createKnowledgeSource: import("../network/types.js").MutationObject<Omit<{
|
|
142
|
-
xAccountId?: string | null
|
|
143
|
-
xUsername?: string | null
|
|
142
|
+
xAccountId?: string | null;
|
|
143
|
+
xUsername?: string | null;
|
|
144
144
|
authorization: string;
|
|
145
145
|
newKnowledgeSourceRequest: import("../api/dataIntegration.js").NewKnowledgeSourceRequest;
|
|
146
146
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
@@ -148,8 +148,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
148
148
|
* Search Ks
|
|
149
149
|
*/
|
|
150
150
|
listKnowledgeSourcesDataByIds: import("../network/types.js").QueryObject<Omit<{
|
|
151
|
-
xAccountId?: string | null
|
|
152
|
-
xUsername?: string | null
|
|
151
|
+
xAccountId?: string | null;
|
|
152
|
+
xUsername?: string | null;
|
|
153
153
|
authorization: string;
|
|
154
154
|
knowledgeSourceSearchRequest: import("../api/dataIntegration.js").KnowledgeSourceSearchRequest;
|
|
155
155
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").KnowledgeSourceResponse[]>;
|
|
@@ -158,16 +158,16 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
158
158
|
*/
|
|
159
159
|
findKnowledgeSourceBySlug: import("../network/types.js").QueryObject<Omit<{
|
|
160
160
|
slug: string;
|
|
161
|
-
xAccountId?: string | null
|
|
162
|
-
xUsername?: string | null
|
|
161
|
+
xAccountId?: string | null;
|
|
162
|
+
xUsername?: string | null;
|
|
163
163
|
authorization: string;
|
|
164
164
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").KnowledgeSourceResponse>;
|
|
165
165
|
/**
|
|
166
166
|
* Search Objects
|
|
167
167
|
*/
|
|
168
168
|
searchObjects: import("../network/types.js").MutationObject<Omit<{
|
|
169
|
-
xAccountId?: string | null
|
|
170
|
-
xUsername?: string | null
|
|
169
|
+
xAccountId?: string | null;
|
|
170
|
+
xUsername?: string | null;
|
|
171
171
|
authorization: string;
|
|
172
172
|
searchKnowledgeObjectRequest: import("../api/dataIntegration.js").SearchKnowledgeObjectRequest;
|
|
173
173
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").SearchKnowledgeObjectResponse[]>;
|
|
@@ -176,8 +176,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
176
176
|
*/
|
|
177
177
|
updateKnowledgeSource: import("../network/types.js").MutationObject<Omit<{
|
|
178
178
|
slug: string;
|
|
179
|
-
xAccountId?: string | null
|
|
180
|
-
xUsername?: string | null
|
|
179
|
+
xAccountId?: string | null;
|
|
180
|
+
xUsername?: string | null;
|
|
181
181
|
authorization: string;
|
|
182
182
|
knowledgeSourcePatchesRequest: import("../api/dataIntegration.js").KnowledgeSourcePatchesRequest;
|
|
183
183
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
@@ -186,8 +186,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
186
186
|
*/
|
|
187
187
|
shareKnowledgeSource: import("../network/types.js").MutationObject<Omit<{
|
|
188
188
|
slug: string;
|
|
189
|
-
xAccountId?: string | null
|
|
190
|
-
xUsername?: string | null
|
|
189
|
+
xAccountId?: string | null;
|
|
190
|
+
xUsername?: string | null;
|
|
191
191
|
authorization: string;
|
|
192
192
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
193
193
|
/**
|
|
@@ -195,18 +195,18 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
195
195
|
*/
|
|
196
196
|
publishKnowledgeSource: import("../network/types.js").MutationObject<Omit<{
|
|
197
197
|
slug: string;
|
|
198
|
-
xAccountId?: string | null
|
|
199
|
-
xUsername?: string | null
|
|
198
|
+
xAccountId?: string | null;
|
|
199
|
+
xUsername?: string | null;
|
|
200
200
|
authorization: string;
|
|
201
|
-
body?: import("../api/dataIntegration.js").KnowledgeSourcesPublishRequest | null
|
|
201
|
+
body?: import("../api/dataIntegration.js").KnowledgeSourcesPublishRequest | null;
|
|
202
202
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
203
203
|
/**
|
|
204
204
|
* Fork Knowledge Source
|
|
205
205
|
*/
|
|
206
206
|
forkKnowledgeSource: import("../network/types.js").MutationObject<Omit<{
|
|
207
207
|
slug: string;
|
|
208
|
-
xAccountId?: string | null
|
|
209
|
-
xUsername?: string | null
|
|
208
|
+
xAccountId?: string | null;
|
|
209
|
+
xUsername?: string | null;
|
|
210
210
|
authorization: string;
|
|
211
211
|
forkKnowledgeSourceRequest: import("../api/dataIntegration.js").ForkKnowledgeSourceRequest;
|
|
212
212
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
@@ -215,9 +215,9 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
215
215
|
*/
|
|
216
216
|
deleteKnowledgeObjectsByStandalone: import("../network/types.js").MutationObject<Omit<{
|
|
217
217
|
ksSlug: string;
|
|
218
|
-
standalone?: boolean | null
|
|
219
|
-
xAccountId?: string | null
|
|
220
|
-
xUsername?: string | null
|
|
218
|
+
standalone?: boolean | null;
|
|
219
|
+
xAccountId?: string | null;
|
|
220
|
+
xUsername?: string | null;
|
|
221
221
|
authorization: string;
|
|
222
222
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
223
223
|
/**
|
|
@@ -226,8 +226,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
226
226
|
deleteKnowledgeObjectFromKnowledgeSource: import("../network/types.js").MutationObject<Omit<{
|
|
227
227
|
ksSlug: string;
|
|
228
228
|
koId: string;
|
|
229
|
-
xAccountId?: string | null
|
|
230
|
-
xUsername?: string | null
|
|
229
|
+
xAccountId?: string | null;
|
|
230
|
+
xUsername?: string | null;
|
|
231
231
|
authorization: string;
|
|
232
232
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
233
233
|
/**
|
|
@@ -235,8 +235,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
235
235
|
*/
|
|
236
236
|
listIndexedProjectFiles: import("../network/types.js").QueryObject<Omit<{
|
|
237
237
|
ksSlug: string;
|
|
238
|
-
xAccountId?: string | null
|
|
239
|
-
xUsername?: string | null
|
|
238
|
+
xAccountId?: string | null;
|
|
239
|
+
xUsername?: string | null;
|
|
240
240
|
authorization: string;
|
|
241
241
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").KnowledgeSourceFilesIngestedResponse[]>;
|
|
242
242
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"data-integration.d.ts","sourceRoot":"","sources":["../../src/client/data-integration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAC7C,OAAO,EAML,cAAc,EAoBf,MAAM,wBAAwB,CAAA;AAI/B,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAA;AAI5E,cAAM,qBAAsB,SAAQ,uBAAuB;;IAKzD,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;IAGlE;;OAEG;IACH,uBAAuB;;;;;+HAA+E;IACtG;;OAEG;IACH,2BAA2B;;;;;8HAAuF;IAClH;;;OAGG;IACH,oBAAoB;;;;;;wEAAkG;IACtH;;OAEG;IACH,2BAA2B;;;;;;wEAAwG;IACnI;;OAEG;IACH,SAAS;;;;;;wEAA8F;IACvG;;OAEG;IACH,sBAAsB,CACpB,YAAY,EAAE,MAAM,EACpB,aAAa,EAAE,MAAM,EACrB,OAAO,CAAC,EAAE;QAAE,MAAM,CAAC,EAAE,WAAW,CAAA;KAAE;IAapC;;OAEG;IACH,gBAAgB;;;;;;wEAAqH;IACrI;;OAEG;IACH,gBAAgB;;;;;;;mIAAoE;IACpF;;OAEG;IACH,0BAA0B;;;;;4EAAyF;IACnH;;OAEG;IACH,6BAA6B;;;;;4EAA8F;IAC3H;;OAEG;IACH,oBAAoB;;;;;;;;+HAAkF;IACtG;;OAEG;IACH,sBAAsB;;;;;;6HAAyF;IAG/G,WAAW;eAE+B,IAAI,EAAE;cAAQ,cAAc
|
|
1
|
+
{"version":3,"file":"data-integration.d.ts","sourceRoot":"","sources":["../../src/client/data-integration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAC7C,OAAO,EAML,cAAc,EAoBf,MAAM,wBAAwB,CAAA;AAI/B,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAA;AAI5E,cAAM,qBAAsB,SAAQ,uBAAuB;;IAKzD,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;IAGlE;;OAEG;IACH,uBAAuB;;;;;+HAA+E;IACtG;;OAEG;IACH,2BAA2B;;;;;8HAAuF;IAClH;;;OAGG;IACH,oBAAoB;;;;;;wEAAkG;IACtH;;OAEG;IACH,2BAA2B;;;;;;wEAAwG;IACnI;;OAEG;IACH,SAAS;;;;;;wEAA8F;IACvG;;OAEG;IACH,sBAAsB,CACpB,YAAY,EAAE,MAAM,EACpB,aAAa,EAAE,MAAM,EACrB,OAAO,CAAC,EAAE;QAAE,MAAM,CAAC,EAAE,WAAW,CAAA;KAAE;IAapC;;OAEG;IACH,gBAAgB;;;;;;wEAAqH;IACrI;;OAEG;IACH,gBAAgB;;;;;;;mIAAoE;IACpF;;OAEG;IACH,0BAA0B;;;;;4EAAyF;IACnH;;OAEG;IACH,6BAA6B;;;;;4EAA8F;IAC3H;;OAEG;IACH,oBAAoB;;;;;;;;+HAAkF;IACtG;;OAEG;IACH,sBAAsB;;;;;;6HAAyF;IAG/G,WAAW;eAE+B,IAAI,EAAE;cAAQ,cAAc;mBAAa,MAAM;yEAoBvF;IAEF;;MAEE;IACF,6BAA6B;;;;;+HACiC;IAE9D;;QAEI;IACJ,qBAAqB;;;;;wEAA0E;IAE/F;;QAEI;IACJ,6BAA6B;;;;;+HAA6E;IAE1G;;QAEI;IACJ,yBAAyB;;;;;6HAAwE;IAEjG;;OAEG;IACH,aAAa;;;;;qIAAqE;IAClF;;OAEG;IACH,qBAAqB;;;;;;4EAA+E;IACpG;;OAEG;IACH,oBAAoB;;;;;4EAAkF;IACtG;;OAEG;IACH,sBAAsB;;;;;;4EAAsF;IAC5G;;OAEG;IACH,mBAAmB;;;;;;4EAAgF;IACnG;;OAEG;IACH,kCAAkC;;;;;;4EAAyF;IAC3H;;OAEG;IACH,wCAAwC;;;;;;4EAAiG;IACzI;;OAEG;IACH,uBAAuB;;;;;4IAAwF;CAEhH;AAED,eAAO,MAAM,qBAAqB,uBAA8B,CAAA"}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { HttpError } from '@oazapfts/runtime';
|
|
2
2
|
import { ConversationResponse } from '../api/ai.js';
|
|
3
|
-
import { GetOpportunityResponse } from '../api/discover.js';
|
|
3
|
+
import { GetOpportunityResponse, MessageRequest } from '../api/discover.js';
|
|
4
4
|
import { StackspotAPIError } from '../error/StackspotAPIError.js';
|
|
5
|
+
import { StreamedJson } from '../utils/StreamedJson.js';
|
|
5
6
|
import { ReactQueryNetworkClient } from '../network/ReactQueryNetworkClient.js';
|
|
7
|
+
import { ChatResponseWithSteps } from './types.js';
|
|
6
8
|
export interface ChatConversionDetails extends ConversationResponse {
|
|
7
9
|
opportunityName?: string;
|
|
8
10
|
hypothesisCount?: number;
|
|
@@ -11,11 +13,11 @@ declare class DiscoverClient extends ReactQueryNetworkClient {
|
|
|
11
13
|
constructor();
|
|
12
14
|
protected buildStackSpotError(error: HttpError): StackspotAPIError;
|
|
13
15
|
opportunities: import("../network/types.js").QueryObject<{
|
|
14
|
-
filter?: string
|
|
15
|
-
page?: number
|
|
16
|
-
size?: number
|
|
17
|
-
sort?: string
|
|
18
|
-
direction?: string
|
|
16
|
+
filter?: string;
|
|
17
|
+
page?: number;
|
|
18
|
+
size?: number;
|
|
19
|
+
sort?: string;
|
|
20
|
+
direction?: string;
|
|
19
21
|
}, import("../api/discover.js").PageResponseGetOpportunityResponse>;
|
|
20
22
|
opportunity: import("../network/types.js").QueryObject<{
|
|
21
23
|
opportunityId: string;
|
|
@@ -54,10 +56,14 @@ declare class DiscoverClient extends ReactQueryNetworkClient {
|
|
|
54
56
|
documentId: string;
|
|
55
57
|
}, never>;
|
|
56
58
|
chats: Omit<import("../network/types.js").QueryObject<{
|
|
57
|
-
filter?: string
|
|
58
|
-
page?: number
|
|
59
|
-
size?: number
|
|
59
|
+
filter?: string;
|
|
60
|
+
page?: number;
|
|
61
|
+
size?: number;
|
|
60
62
|
}, ChatConversionDetails[]>, "isAllowed" | "useAllowed" | "getPermissionKey">;
|
|
63
|
+
private static toolsOfAgent;
|
|
64
|
+
sendChatMessage(request: MessageRequest & {
|
|
65
|
+
agentId: string;
|
|
66
|
+
}, minChangeIntervalMS?: number): StreamedJson<ChatResponseWithSteps>;
|
|
61
67
|
}
|
|
62
68
|
export declare const discoverClient: DiscoverClient;
|
|
63
69
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"discover.d.ts","sourceRoot":"","sources":["../../src/client/discover.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;
|
|
1
|
+
{"version":3,"file":"discover.d.ts","sourceRoot":"","sources":["../../src/client/discover.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAG7C,OAAO,EAAE,oBAAoB,EAAE,MAAM,WAAW,CAAA;AAChD,OAAO,EAAuJ,sBAAsB,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAA;AAE7N,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAGpD,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAA;AAE5E,OAAO,EAAiB,qBAAqB,EAAmC,MAAM,SAAS,CAAA;AAG/F,MAAM,WAAW,qBAAsB,SAAQ,oBAAoB;IACjE,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,cAAM,cAAe,SAAQ,uBAAuB;;IAKlD,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;IAIlE,aAAa;;;;;;qEAAqB;IAElC,WAAW;;+BAAsB;IAEjC,UAAU;;0DAAsB;IAEhC,cAAc;;wDAAuB;IAErC,SAAS;;wDAAiC;IAE1C,QAAQ;;sDAAuB;IAE/B,SAAS;;wDAAsB;IAE/B,iBAAiB;;4DAAwB;IAEzC,gBAAgB;;2DAAyB;IAEzC,cAAc;;yDAAyB;IAEvC,iBAAiB;;cAA4B;IAE7C,gBAAgB;;cAA6B;IAE7C,cAAc;;cAA6B;IAE3C,KAAK;iBAE4C,MAAM;eAAS,MAAM;eAAS,MAAM;kFAiCnF;mBAEmB,YAAY;IAkBjC,eAAe,CAAC,OAAO,EAAE,cAAc,GAAG;QAAE,OAAO,EAAE,MAAM,CAAA;KAAE,EAAE,mBAAmB,CAAC,EAAE,MAAM,GAAG,YAAY,CAAC,qBAAqB,CAAC;CAiMlI;AAED,eAAO,MAAM,cAAc,gBAAuB,CAAA"}
|
package/dist/client/discover.js
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
|
+
import { findLast, last } from 'lodash';
|
|
1
2
|
import { getApiAddresses } from '../api-addresses.js';
|
|
2
3
|
import { create, create1, create2, defaults, deleteById, deleteById1, deleteById2, getAll, getAll1, getAll2, getAllByHypothesis, getById, getById1, getById2 } from '../api/discover.js';
|
|
3
4
|
import { DefaultAPIError } from '../error/DefaultAPIError.js';
|
|
5
|
+
import { StreamedJson } from '../utils/StreamedJson.js';
|
|
4
6
|
import { baseDictionary } from '../error/dictionary/base.js';
|
|
7
|
+
import { formatJson } from '../utils/string.js';
|
|
5
8
|
import { ReactQueryNetworkClient } from '../network/ReactQueryNetworkClient.js';
|
|
6
9
|
import { aiClient } from './ai.js';
|
|
10
|
+
import { agentToolsClient } from './agent-tools.js';
|
|
7
11
|
class DiscoverClient extends ReactQueryNetworkClient {
|
|
8
12
|
constructor() {
|
|
9
13
|
super(getApiAddresses().discover.url, defaults);
|
|
@@ -119,6 +123,210 @@ class DiscoverClient extends ReactQueryNetworkClient {
|
|
|
119
123
|
buildStackSpotError(error) {
|
|
120
124
|
return new DefaultAPIError(error.data, error.status, baseDictionary, error.headers);
|
|
121
125
|
}
|
|
126
|
+
static async toolsOfAgent(agentId) {
|
|
127
|
+
try {
|
|
128
|
+
const agent = agentId ? await agentToolsClient.agent.query({ agentId }) : undefined;
|
|
129
|
+
if (!agent)
|
|
130
|
+
return [];
|
|
131
|
+
const tools = [];
|
|
132
|
+
agent.toolkits?.builtin_toolkits?.forEach(kit => kit.tools?.forEach(({ id, name, description }) => {
|
|
133
|
+
if (id)
|
|
134
|
+
tools.push({ image: kit.image_url, id, name: name || id, description });
|
|
135
|
+
}));
|
|
136
|
+
agent.toolkits?.custom_toolkits?.forEach(kit => kit.tools?.forEach(({ id, name, description }) => {
|
|
137
|
+
if (id)
|
|
138
|
+
tools.push({ image: kit.avatar ?? undefined, id, name: name || id, description });
|
|
139
|
+
}));
|
|
140
|
+
return tools;
|
|
141
|
+
}
|
|
142
|
+
catch {
|
|
143
|
+
return [];
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
sendChatMessage(request, minChangeIntervalMS) {
|
|
147
|
+
const abortController = new AbortController();
|
|
148
|
+
const headers = {
|
|
149
|
+
'Content-Type': 'application/json',
|
|
150
|
+
'Accept': 'text/event-stream',
|
|
151
|
+
};
|
|
152
|
+
const events = this.stream(this.resolveURL('/v2/ai/chat'), { method: 'post', body: JSON.stringify(request), headers, signal: abortController.signal });
|
|
153
|
+
/**
|
|
154
|
+
* This function treats events in the streaming that deals with the execution of tools. Since these events are not concatenated like
|
|
155
|
+
* normal streamings of data, we need this separate function to deal with them. It transforms the internal data model of the
|
|
156
|
+
* StreamedJson object whenever an event is triggered.
|
|
157
|
+
*/
|
|
158
|
+
async function transform(event, data) {
|
|
159
|
+
const info = event.agent_info;
|
|
160
|
+
if (!info)
|
|
161
|
+
return;
|
|
162
|
+
const tools = await DiscoverClient.toolsOfAgent(request.agentId);
|
|
163
|
+
data.steps = data.steps ? [...data.steps] : [];
|
|
164
|
+
if (info.type === 'planning' && info.action === 'end') {
|
|
165
|
+
data.steps.push({
|
|
166
|
+
id: 'planning',
|
|
167
|
+
type: 'planning',
|
|
168
|
+
status: 'success',
|
|
169
|
+
duration: info.duration || 0,
|
|
170
|
+
steps: info.data?.steps?.map(s => s.goal) ?? [],
|
|
171
|
+
goal: info.data?.plan_goal ?? '',
|
|
172
|
+
});
|
|
173
|
+
info.data?.steps.forEach(s => data.steps?.push({
|
|
174
|
+
id: s.id,
|
|
175
|
+
type: 'step',
|
|
176
|
+
status: 'pending',
|
|
177
|
+
input: s.goal,
|
|
178
|
+
attempts: [{
|
|
179
|
+
tools: s.tools?.map(t => ({
|
|
180
|
+
...(tools.find(({ id }) => id === t.tool_id) ?? { id: t.tool_id, name: t.tool_id }),
|
|
181
|
+
executionId: t.tool_execution_id,
|
|
182
|
+
goal: t.goal,
|
|
183
|
+
})),
|
|
184
|
+
}],
|
|
185
|
+
}));
|
|
186
|
+
data.steps.push({ id: 'answer', type: 'answer', status: 'pending' });
|
|
187
|
+
}
|
|
188
|
+
if (info.type === 'planning' && info.action === 'awaiting_approval') {
|
|
189
|
+
data.steps.push({
|
|
190
|
+
id: 'planning',
|
|
191
|
+
type: 'planning',
|
|
192
|
+
status: 'awaiting_approval',
|
|
193
|
+
user_question: info.data?.user_question,
|
|
194
|
+
duration: info.duration || 0,
|
|
195
|
+
steps: info.data?.steps?.map(s => s.goal) ?? [],
|
|
196
|
+
goal: info.data?.plan_goal ?? '',
|
|
197
|
+
});
|
|
198
|
+
info.data?.steps.forEach(s => data.steps?.push({
|
|
199
|
+
id: s.id,
|
|
200
|
+
type: 'step',
|
|
201
|
+
status: 'pending',
|
|
202
|
+
input: s.goal,
|
|
203
|
+
attempts: [{
|
|
204
|
+
tools: s.tools?.map(t => ({
|
|
205
|
+
...(tools.find(({ id }) => id === t.tool_id) ?? { id: t.tool_id, name: t.tool_id }),
|
|
206
|
+
executionId: t.tool_execution_id,
|
|
207
|
+
goal: t.goal,
|
|
208
|
+
})),
|
|
209
|
+
}],
|
|
210
|
+
}));
|
|
211
|
+
data.steps.push({ id: 'answer', type: 'answer', status: 'pending' });
|
|
212
|
+
}
|
|
213
|
+
if (info.type === 'step' && info.action === 'start') {
|
|
214
|
+
const step = data.steps.find(s => s.id === info.id);
|
|
215
|
+
if (step)
|
|
216
|
+
step.status = 'running';
|
|
217
|
+
}
|
|
218
|
+
if (info.type === 'step' && info.action === 'end') {
|
|
219
|
+
const step = data.steps.find(s => s.id === info.id);
|
|
220
|
+
if (step) {
|
|
221
|
+
step.status = 'success';
|
|
222
|
+
step.duration = info.duration;
|
|
223
|
+
const lastToolId = last(step.attempts[0].tools)?.id;
|
|
224
|
+
const lastAttemptOfLastTool = findLast(step.attempts.map(a => a.tools).flat(), t => t?.id === lastToolId);
|
|
225
|
+
step.output = lastAttemptOfLastTool?.output;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
if (info.type === 'tool' && info.action === 'awaiting_approval') {
|
|
229
|
+
const tool = tools.find(({ id }) => id === info.data?.tool_id);
|
|
230
|
+
data.steps.push({
|
|
231
|
+
id: info.id,
|
|
232
|
+
type: 'tool',
|
|
233
|
+
status: 'awaiting_approval',
|
|
234
|
+
duration: info.duration || 0,
|
|
235
|
+
input: info.data?.input,
|
|
236
|
+
user_question: info.data?.user_question,
|
|
237
|
+
attempts: [{
|
|
238
|
+
tools: [{
|
|
239
|
+
executionId: info.id,
|
|
240
|
+
id: info.data?.tool_id ?? '',
|
|
241
|
+
name: tool?.name ?? '',
|
|
242
|
+
goal: tool?.goal,
|
|
243
|
+
...tool,
|
|
244
|
+
}],
|
|
245
|
+
}],
|
|
246
|
+
});
|
|
247
|
+
data.steps.push({ id: 'answer', type: 'answer', status: 'pending' });
|
|
248
|
+
}
|
|
249
|
+
if (info.type === 'tool' && info.action === 'start') {
|
|
250
|
+
const currentStep = data.steps.find(s => s.status === 'running');
|
|
251
|
+
if (!info.data)
|
|
252
|
+
return;
|
|
253
|
+
//There might be a tool with status awaiting_approval, so we want to inform tool has already started
|
|
254
|
+
if (!currentStep || !currentStep.attempts[0].tools) {
|
|
255
|
+
const input = formatJson(info.data.input);
|
|
256
|
+
const tool = tools.find(({ id }) => id === info.data?.tool_id) ?? { id: info.data?.tool_id, name: info.data?.tool_id };
|
|
257
|
+
data.steps.push({
|
|
258
|
+
id: info.id,
|
|
259
|
+
type: 'tool',
|
|
260
|
+
status: 'running',
|
|
261
|
+
duration: info.duration || 0,
|
|
262
|
+
input: info.data?.input,
|
|
263
|
+
user_question: info.data?.user_question,
|
|
264
|
+
attempts: [{
|
|
265
|
+
tools: [{ ...tool, executionId: info.id, input }],
|
|
266
|
+
}],
|
|
267
|
+
});
|
|
268
|
+
}
|
|
269
|
+
else {
|
|
270
|
+
const toolInFirstAttempt = currentStep.attempts[0].tools?.find(t => t.executionId === info.id);
|
|
271
|
+
//One step might have multiple tools. When in an approval mode, we might not have all the tools in the array yet.
|
|
272
|
+
//So we make sure to add any tools that are not in there.
|
|
273
|
+
if (!toolInFirstAttempt) {
|
|
274
|
+
const input = formatJson(info.data.input);
|
|
275
|
+
const tool = tools?.find(({ id }) => id === info.data?.tool_id) ?? { id: info.data?.tool_id, name: info.data?.tool_id };
|
|
276
|
+
currentStep.attempts[info.data.attempt - 1].tools?.push({
|
|
277
|
+
...tool,
|
|
278
|
+
executionId: info.id,
|
|
279
|
+
input,
|
|
280
|
+
});
|
|
281
|
+
}
|
|
282
|
+
else {
|
|
283
|
+
const input = formatJson(info.data.input);
|
|
284
|
+
if (info.data.attempt === 1) {
|
|
285
|
+
toolInFirstAttempt.input = input;
|
|
286
|
+
}
|
|
287
|
+
else {
|
|
288
|
+
const tool = tools.find(({ id }) => id === info.data?.tool_id) ?? { id: info.data?.tool_id, name: info.data?.tool_id };
|
|
289
|
+
currentStep.attempts[info.data.attempt - 1] ??= { tools: [] };
|
|
290
|
+
currentStep.attempts[info.data.attempt - 1].tools?.push({
|
|
291
|
+
...tool,
|
|
292
|
+
executionId: info.id,
|
|
293
|
+
input,
|
|
294
|
+
});
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
if (info.type === 'tool' && info.action === 'end') {
|
|
300
|
+
const currentStep = data.steps.find(s => s.status === 'running');
|
|
301
|
+
if (!currentStep || !info.data)
|
|
302
|
+
return;
|
|
303
|
+
const tool = currentStep.attempts[info.data.attempt - 1]?.tools?.find(t => t.executionId === info.id);
|
|
304
|
+
if (tool) {
|
|
305
|
+
tool.output = formatJson(info.data.output);
|
|
306
|
+
tool.duration = info.duration;
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
if (info.type === 'final_answer' && info.action === 'start') {
|
|
310
|
+
const answerStep = last(data.steps);
|
|
311
|
+
if (answerStep)
|
|
312
|
+
answerStep.status = 'running';
|
|
313
|
+
}
|
|
314
|
+
if (info.type === 'chat' && info.action === 'end') {
|
|
315
|
+
const answerStep = last(data.steps);
|
|
316
|
+
if (answerStep) {
|
|
317
|
+
answerStep.status = 'success';
|
|
318
|
+
answerStep.duration = info.duration;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
return new StreamedJson({
|
|
323
|
+
eventsPromise: events,
|
|
324
|
+
abortController,
|
|
325
|
+
minChangeIntervalMS,
|
|
326
|
+
ignoreKeys: ['agent_info'],
|
|
327
|
+
transform,
|
|
328
|
+
});
|
|
329
|
+
}
|
|
122
330
|
}
|
|
123
331
|
export const discoverClient = new DiscoverClient();
|
|
124
332
|
//# sourceMappingURL=discover.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"discover.js","sourceRoot":"","sources":["../../src/client/discover.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"discover.js","sourceRoot":"","sources":["../../src/client/discover.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"event-bus.d.ts","sourceRoot":"","sources":["../../src/client/event-bus.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAG7C,OAAO,EAAqC,KAAK,IAAI,SAAS,EAAc,MAAM,iBAAiB,CAAA;AAGnG,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAA;AAGxD,eAAO,MAAM,yBAAyB,gBAAgB,CAAA;AAEtD,cAAM,cAAe,SAAQ,aAAa;IACxC,OAAO,CAAC,KAAK,CAAkB;IAC/B,OAAO,CAAC,QAAQ,CAAoD;IACpE,OAAO,CAAC,OAAO,CAAoB;IACnC,OAAO,CAAC,IAAI,CAAQ;;IAQpB,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;YAIpD,OAAO;YAkCP,GAAG;IAajB;;OAEG;IACH,SAAS,
|
|
1
|
+
{"version":3,"file":"event-bus.d.ts","sourceRoot":"","sources":["../../src/client/event-bus.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAG7C,OAAO,EAAqC,KAAK,IAAI,SAAS,EAAc,MAAM,iBAAiB,CAAA;AAGnG,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAA;AAGxD,eAAO,MAAM,yBAAyB,gBAAgB,CAAA;AAEtD,cAAM,cAAe,SAAQ,aAAa;IACxC,OAAO,CAAC,KAAK,CAAkB;IAC/B,OAAO,CAAC,QAAQ,CAAoD;IACpE,OAAO,CAAC,OAAO,CAAoB;IACnC,OAAO,CAAC,IAAI,CAAQ;;IAQpB,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;YAIpD,OAAO;YAkCP,GAAG;IAajB;;OAEG;IACH,SAAS,GAAU,OAAO,SAAS,mBAElC;CACF;AAED,eAAO,MAAM,cAAc,gBAAuB,CAAA"}
|