@nice2dev/ui-communication 1.0.4 → 1.0.6
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 +17 -2
- package/dist/index.d.ts +9 -1
- package/dist/index.mjs +4665 -2939
- package/dist/services/emailTrackingService.d.ts +279 -0
- package/dist/services/mailMergeService.d.ts +365 -0
- package/dist/services/pstnGatewayService.d.ts +341 -0
- package/dist/services/slackImportService.d.ts +426 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -12,12 +12,20 @@ export { NiceStorageSettings } from './components/NiceStorageSettings';
|
|
|
12
12
|
export { NiceRecordingPanel } from './components/NiceRecordingPanel';
|
|
13
13
|
export { NiceCollaborativeEditor } from './components/NiceCollaborativeEditor';
|
|
14
14
|
export { useCommunication, buildOptimisticMessage, findConversationPartner, getUnreadCount, getMentionCount, getDefaultMode, } from './hooks/useCommunication';
|
|
15
|
-
export type { CommunicationState, UseCommunicationOptions
|
|
15
|
+
export type { CommunicationState, UseCommunicationOptions } from './hooks/useCommunication';
|
|
16
16
|
export { useWhiteboard } from './hooks/useWhiteboard';
|
|
17
17
|
export type { UseWhiteboardOptions, UseWhiteboardReturn, WhiteboardState, } from './hooks/useWhiteboard';
|
|
18
18
|
export { EncryptionService, getEncryptionService, disposeEncryptionService, } from './services/encryptionService';
|
|
19
19
|
export { StorageService, getStorageService, disposeStorageService, DEFAULT_RETENTION_RULES, } from './services/storageService';
|
|
20
20
|
export { RecordingService, getRecordingService, disposeRecordingService, } from './services/recordingService';
|
|
21
|
+
export { EmailTrackingService, getEmailTrackingService, disposeEmailTrackingService, useEmailTracking, } from './services/emailTrackingService';
|
|
22
|
+
export type { TrackingEventType, TrackingEvent, TrackingPixelOptions, TrackedLinkOptions, EmailTrackingStats, LinkStats, EmailTrackingConfig, UseEmailTrackingOptions, UseEmailTrackingReturn, } from './services/emailTrackingService';
|
|
23
|
+
export { MailMergeService, getMailMergeService, disposeMailMergeService, useMailMerge, } from './services/mailMergeService';
|
|
24
|
+
export type { MergeFieldType, MergeField, MergeRecipient, MergeTemplate, MergeCampaign, MergeProgress, MergeValidationResult, MergeValidationError, MergeValidationWarning, MailMergeConfig, SendEmailParams, UseMailMergeOptions, UseMailMergeReturn, } from './services/mailMergeService';
|
|
25
|
+
export { SlackImportService, getSlackImportService, disposeSlackImportService, useSlackImport, } from './services/slackImportService';
|
|
26
|
+
export type { SlackChannelType, ImportStatus, SlackUser, SlackChannel, SlackMessage, SlackReaction, SlackFile, SlackAttachment, SlackExportData, ImportMapping, ImportOptions, ImportProgress, ImportError, ImportResult, SlackImportConfig, MappedUser, MappedChannel, MappedMessage, UseSlackImportOptions, UseSlackImportReturn, } from './services/slackImportService';
|
|
27
|
+
export { PstnGatewayService, getPstnGateway, createPstnGateway, usePstnGateway, DEFAULT_DTMF_COMMANDS, DEFAULT_IVR_TEXT, REGION_CODES, } from './services/pstnGatewayService';
|
|
28
|
+
export type { PhoneRegion, DialInNumber, MeetingDialInInfo, PstnParticipantState, PstnParticipant, PstnGatewayConfig, DtmfCommands, PstnGatewayEvents, PstnGatewayError, UsePstnGatewayReturn, } from './services/pstnGatewayService';
|
|
21
29
|
export { WebRTCTransport, MockTransport, createTransport, } from './transport/communicationTransport';
|
|
22
30
|
export type { ICommunicationTransport, TransportEventMap, } from './transport/communicationTransport';
|
|
23
31
|
export type { CommunicationMode, PresenceStatus, UserRole, MessageContentType, MessageStatus, ConversationType, ChannelType, CallStatus, CallType, TransportType, NiceCommunicationBaseProps, PresenceInfo, CommunicationUser, TeamMember, MessageReaction, MessageAttachment, MessageMention, PollOption, PollData, CodeSnippet, CallEventData, ChatMessage, Conversation, Channel, Team, CallParticipant, CallSession, IncomingCall, Meeting, IceServerConfig, RTCTransportConfig, CommunicationCallbacks, NiceCommunicationProps, NicePresenceIndicatorProps, NiceChatWindowProps, NiceMessengerProps, NiceCallScreenProps, NiceVideoConferenceProps, NiceChannelViewProps, NiceTeamsWorkspaceProps, NiceWhiteboardProps, NiceStorageSettingsProps, NiceRecordingPanelProps, NiceCollaborativeEditorProps, CollaborativeEditorType, CollaborativeEditorParticipant, EncryptionAlgorithm, EncryptionScope, EncryptionScopeConfig, EncryptionConfig, RetentionUnit, RetentionPeriod, RetentionDataType, RetentionRule, IStorageAdapter, StorageConfig, RecordingState, TranscriptSegment, RecordingSession, WhiteboardToolType, WhiteboardObjectType, WhiteboardPoint, WhiteboardStroke, WhiteboardShape, WhiteboardTextObject, WhiteboardStickyNote, WhiteboardImage, WhiteboardFrame, WhiteboardConnector, WhiteboardObject, WhiteboardLayer, WhiteboardCollaborator, WhiteboardViewport, WhiteboardSession, WhiteboardOpType, WhiteboardOperation, } from './types/communicationTypes';
|