@proteos/sdk 0.30.0 → 0.32.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/index.cjs +136 -25
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +138 -84
- package/dist/index.d.ts +138 -84
- package/dist/index.js +136 -25
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/conversation/index.ts +217 -58
- package/src/conversation/types.ts +40 -2
- package/src/index.ts +40 -39
package/src/index.ts
CHANGED
|
@@ -180,10 +180,16 @@ export type {
|
|
|
180
180
|
export { ConnectorClient } from './connector/index.js'
|
|
181
181
|
// Conversation types (conversation-service: connections, conversations, messages, listeners)
|
|
182
182
|
export type {
|
|
183
|
+
AddressFilterConfig,
|
|
183
184
|
AgentListener,
|
|
184
185
|
AgentListenerService,
|
|
185
186
|
AgentListenerTriggerType,
|
|
187
|
+
AllFilterConfig,
|
|
188
|
+
AttachContactAddressRequest,
|
|
186
189
|
Attachment,
|
|
190
|
+
AutomatedFilterConfig,
|
|
191
|
+
AutomatedSignal,
|
|
192
|
+
BlockContactRequest,
|
|
187
193
|
Channel,
|
|
188
194
|
Connection,
|
|
189
195
|
ConnectionCredentials,
|
|
@@ -192,82 +198,74 @@ export type {
|
|
|
192
198
|
ConnectionStatus,
|
|
193
199
|
ConnectorKey,
|
|
194
200
|
ConnectorProvider,
|
|
201
|
+
ConsentStatus,
|
|
202
|
+
Contact,
|
|
203
|
+
ContactAddress,
|
|
204
|
+
ContactAddressKind,
|
|
205
|
+
ContactAddressSource,
|
|
206
|
+
ContactErasureRequest,
|
|
207
|
+
ContactMergeProposal,
|
|
208
|
+
ContactRef,
|
|
209
|
+
ContactService,
|
|
210
|
+
ContactSource,
|
|
211
|
+
ContactStatus,
|
|
195
212
|
// Aliased: the agent module already exports its own ContentBlock.
|
|
196
213
|
ContentBlock as MessageContentBlock,
|
|
197
214
|
Conversation,
|
|
215
|
+
ConversationFilter,
|
|
216
|
+
ConversationFilterAction,
|
|
217
|
+
ConversationFilterConfig,
|
|
218
|
+
ConversationFilterEvent,
|
|
219
|
+
ConversationFilterService,
|
|
220
|
+
ConversationFilterType,
|
|
198
221
|
ConversationParticipant,
|
|
199
|
-
ContactService,
|
|
200
222
|
ConversationService,
|
|
201
223
|
ConversationStatus,
|
|
202
224
|
CreateAgentListenerRequest,
|
|
203
225
|
CreateConnectionRequest,
|
|
226
|
+
CreateConversationFilterRequest,
|
|
204
227
|
CreateGlossaryTermRequest,
|
|
205
228
|
DispatchMeetingBotRequest,
|
|
229
|
+
DomainFilterConfig,
|
|
230
|
+
ErasureRequestStatus,
|
|
231
|
+
FilterMatchOn,
|
|
206
232
|
GlossaryTerm,
|
|
207
233
|
GlossaryTermService,
|
|
208
234
|
InstallConnectionResponse,
|
|
235
|
+
InternalConversationsFilterConfig,
|
|
209
236
|
ListAgentListenersQuery,
|
|
210
237
|
ListConnectionsQuery,
|
|
211
|
-
ListConversationsQuery,
|
|
212
|
-
ListGlossaryTermsQuery,
|
|
213
|
-
ListMessagesQuery,
|
|
214
238
|
ListContactAddressesQuery,
|
|
215
239
|
ListContactMergeProposalsQuery,
|
|
216
240
|
ListContactsQuery,
|
|
241
|
+
ListConversationFilterEventsQuery,
|
|
242
|
+
ListConversationFiltersQuery,
|
|
243
|
+
ListConversationsQuery,
|
|
244
|
+
ListGlossaryTermsQuery,
|
|
245
|
+
ListMessagesQuery,
|
|
217
246
|
// Conversation-local page envelope ({meta, data}) — distinct from the
|
|
218
247
|
// PageIterator-based ListResult used by the other modules.
|
|
219
248
|
ListResponse,
|
|
220
249
|
ListRoomsQuery,
|
|
221
250
|
MeetingService,
|
|
251
|
+
MergeContactsRequest,
|
|
252
|
+
MergeProposalStatus,
|
|
222
253
|
Message,
|
|
223
254
|
MessageDirection,
|
|
224
255
|
MessagePreview,
|
|
225
256
|
MessageRecipient,
|
|
226
257
|
MessageService,
|
|
227
258
|
MessageStatus,
|
|
228
|
-
AttachContactAddressRequest,
|
|
229
|
-
BlockContactRequest,
|
|
230
|
-
ConsentStatus,
|
|
231
|
-
Contact,
|
|
232
|
-
ContactAddress,
|
|
233
|
-
ContactAddressKind,
|
|
234
|
-
ContactAddressSource,
|
|
235
|
-
ContactErasureRequest,
|
|
236
|
-
ContactMergeProposal,
|
|
237
|
-
ContactRef,
|
|
238
|
-
ContactSource,
|
|
239
|
-
ContactStatus,
|
|
240
|
-
AddressFilterConfig,
|
|
241
|
-
AllFilterConfig,
|
|
242
|
-
AutomatedFilterConfig,
|
|
243
|
-
AutomatedSignal,
|
|
244
|
-
ConversationFilter,
|
|
245
|
-
ConversationFilterAction,
|
|
246
|
-
ConversationFilterConfig,
|
|
247
|
-
ConversationFilterEvent,
|
|
248
|
-
ConversationFilterService,
|
|
249
|
-
ConversationFilterType,
|
|
250
|
-
CreateConversationFilterRequest,
|
|
251
|
-
DomainFilterConfig,
|
|
252
|
-
FilterMatchOn,
|
|
253
|
-
InternalConversationsFilterConfig,
|
|
254
|
-
ListConversationFilterEventsQuery,
|
|
255
|
-
ListConversationFiltersQuery,
|
|
256
|
-
RoleBasedFilterConfig,
|
|
257
|
-
UpdateConversationFilterRequest,
|
|
258
|
-
ErasureRequestStatus,
|
|
259
|
-
MergeContactsRequest,
|
|
260
|
-
MergeProposalStatus,
|
|
261
259
|
PermissionEventSource,
|
|
262
260
|
PermissionEventType,
|
|
263
|
-
RecordPermissionEventRequest,
|
|
264
|
-
UpdateContactRequest,
|
|
265
261
|
Reaction,
|
|
266
262
|
ReactionCapability,
|
|
267
263
|
ReactionOption,
|
|
268
264
|
ReactionSetKind,
|
|
269
265
|
RecipientKind,
|
|
270
266
|
RecipientRole,
|
|
267
|
+
RecordPermissionEventRequest,
|
|
268
|
+
RoleBasedFilterConfig,
|
|
271
269
|
Room,
|
|
272
270
|
SendMessageRequest,
|
|
273
271
|
SendRecipient,
|
|
@@ -276,6 +274,9 @@ export type {
|
|
|
276
274
|
UnreadCounts,
|
|
277
275
|
UpdateAgentListenerRequest,
|
|
278
276
|
UpdateConnectionRequest,
|
|
277
|
+
UpdateContactRequest,
|
|
278
|
+
UpdateConversationFilterRequest,
|
|
279
|
+
UpdateDraftRequest,
|
|
279
280
|
UpdateGlossaryTermRequest,
|
|
280
281
|
VoiceService,
|
|
281
282
|
VoiceTranscriptionStream,
|