@telia-ace/widget-conversation-flamingo 1.0.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/LICENSE.txt +6 -0
- package/README.md +490 -0
- package/dist/agent.d.ts +21 -0
- package/dist/agent.d.ts.map +1 -0
- package/dist/components/conversation/conversation.d.ts +29 -0
- package/dist/components/conversation/conversation.d.ts.map +1 -0
- package/dist/components/conversation/plugin.d.ts +46 -0
- package/dist/components/conversation/plugin.d.ts.map +1 -0
- package/dist/components/conversation/ui/message-list.d.ts +10 -0
- package/dist/components/conversation/ui/message-list.d.ts.map +1 -0
- package/dist/components/conversation/ui/message-types/message-type-html.d.ts +8 -0
- package/dist/components/conversation/ui/message-types/message-type-html.d.ts.map +1 -0
- package/dist/components/conversation/ui/message-types/message-type-link-list.d.ts +9 -0
- package/dist/components/conversation/ui/message-types/message-type-link-list.d.ts.map +1 -0
- package/dist/components/conversation/ui/message-types/message-type-separator.d.ts +8 -0
- package/dist/components/conversation/ui/message-types/message-type-separator.d.ts.map +1 -0
- package/dist/components/conversation/ui/message.d.ts +9 -0
- package/dist/components/conversation/ui/message.d.ts.map +1 -0
- package/dist/components/conversation/utils.d.ts +2 -0
- package/dist/components/conversation/utils.d.ts.map +1 -0
- package/dist/conversation-31b48ff2.js +2312 -0
- package/dist/conversation-31b48ff2.js.map +1 -0
- package/dist/conversation-controller.d.ts +122 -0
- package/dist/conversation-controller.d.ts.map +1 -0
- package/dist/conversation-form-adapter.d.ts +7 -0
- package/dist/conversation-form-adapter.d.ts.map +1 -0
- package/dist/conversation-history.d.ts +27 -0
- package/dist/conversation-history.d.ts.map +1 -0
- package/dist/conversation-platform.d.ts +55 -0
- package/dist/conversation-platform.d.ts.map +1 -0
- package/dist/conversation-provider.d.ts +33 -0
- package/dist/conversation-provider.d.ts.map +1 -0
- package/dist/index-d8edc7b3.js +4615 -0
- package/dist/index-d8edc7b3.js.map +1 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -0
- package/dist/resolve-entity-value.d.ts +11 -0
- package/dist/resolve-entity-value.d.ts.map +1 -0
- package/dist/store.d.ts +32 -0
- package/dist/store.d.ts.map +1 -0
- package/dist/types.d.ts +131 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/user.d.ts +10 -0
- package/dist/user.d.ts.map +1 -0
- package/dist/utils/custom-message.d.ts +3 -0
- package/dist/utils/custom-message.d.ts.map +1 -0
- package/dist/utils/index.d.ts +2 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/map-actions.d.ts +2 -0
- package/dist/utils/map-actions.d.ts.map +1 -0
- package/dist/utils/open-chat-widget.d.ts +5 -0
- package/dist/utils/open-chat-widget.d.ts.map +1 -0
- package/dist/utils/swap-provider.d.ts +9 -0
- package/dist/utils/swap-provider.d.ts.map +1 -0
- package/package.json +50 -0
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
import { Container, EventListener, EventManager } from '@webprovisions/platform';
|
|
2
|
+
import { AgentSettings } from './agent';
|
|
3
|
+
import { ConversationProvider } from './conversation-provider';
|
|
4
|
+
import { ConversationMessageContent, ConversationMessageSender, ConversationMessageSettings, ConversationMessageUpdateSettings, ConverstationMessageItem, NormalizedMessageSettings } from './types';
|
|
5
|
+
import { User } from './user';
|
|
6
|
+
export type ValidateHandler = (formValues: {
|
|
7
|
+
[key: string]: any;
|
|
8
|
+
}) => Promise<any>;
|
|
9
|
+
export type SubmitHandler = (formValues: {
|
|
10
|
+
[key: string]: any;
|
|
11
|
+
}) => Promise<any>;
|
|
12
|
+
export type ConversationOptions = {
|
|
13
|
+
silent: boolean;
|
|
14
|
+
};
|
|
15
|
+
export type Print = (content: string | ConversationMessageContent) => ConversationEntry;
|
|
16
|
+
export type FormHandlers = {
|
|
17
|
+
[key: string]: FormHandler;
|
|
18
|
+
};
|
|
19
|
+
export type FormHandler = {
|
|
20
|
+
validate?: ValidateHandler;
|
|
21
|
+
submit: SubmitHandler;
|
|
22
|
+
};
|
|
23
|
+
export type CancelLoaderDelegate = () => void;
|
|
24
|
+
export declare class ConversationEntry {
|
|
25
|
+
private writer;
|
|
26
|
+
constructor(writer: EntryWriter);
|
|
27
|
+
update(content: string | ConversationMessageUpdateSettings | ConverstationMessageItem<any> | ConverstationMessageItem<any>[]): void;
|
|
28
|
+
remove(): void;
|
|
29
|
+
private getNormalizedSettings;
|
|
30
|
+
}
|
|
31
|
+
export declare enum ConversationMessageType {
|
|
32
|
+
User = "user",
|
|
33
|
+
Agent = "agent",
|
|
34
|
+
System = "system"
|
|
35
|
+
}
|
|
36
|
+
export type ConversationMessage = {
|
|
37
|
+
key: string;
|
|
38
|
+
timestamp: number | null;
|
|
39
|
+
content: ConversationMessageContent | null;
|
|
40
|
+
sender: ConversationMessageSender | null;
|
|
41
|
+
type: ConversationMessageType;
|
|
42
|
+
};
|
|
43
|
+
export type EntryWriter = (content: ConversationMessageUpdateSettings | null) => void;
|
|
44
|
+
export declare const getNormalizedMessageSettings: (settings: string | ConversationMessageSettings | ConverstationMessageItem<any> | ConverstationMessageItem<any>[], options?: {
|
|
45
|
+
key?: string;
|
|
46
|
+
}) => NormalizedMessageSettings;
|
|
47
|
+
/**
|
|
48
|
+
* Manages the stream of messages inside a `ConversationComponent` and provides external read-write
|
|
49
|
+
* access to it as well as exposing emitted actions.
|
|
50
|
+
*/
|
|
51
|
+
export declare class ConversationController {
|
|
52
|
+
container: Container;
|
|
53
|
+
id: string;
|
|
54
|
+
formHandlers: FormHandlers;
|
|
55
|
+
/**
|
|
56
|
+
* Represents the current end user.
|
|
57
|
+
*/
|
|
58
|
+
user: User;
|
|
59
|
+
events: EventManager;
|
|
60
|
+
providers: string[];
|
|
61
|
+
active: boolean;
|
|
62
|
+
queuedProviders: string[];
|
|
63
|
+
registeredProviders: ConversationProvider[];
|
|
64
|
+
private loaders;
|
|
65
|
+
private componentMounted;
|
|
66
|
+
private store;
|
|
67
|
+
messages: ConversationMessage[];
|
|
68
|
+
private typingActors;
|
|
69
|
+
private conversationHistory;
|
|
70
|
+
constructor(container: Container, id: string, options: {
|
|
71
|
+
rehydrate: boolean;
|
|
72
|
+
});
|
|
73
|
+
setInitialStorage(data: {
|
|
74
|
+
agents: AgentSettings[];
|
|
75
|
+
}): void;
|
|
76
|
+
setProviders(providers: string[]): void;
|
|
77
|
+
createProvider(name: string): ConversationProvider;
|
|
78
|
+
providerIndex(name: string): number;
|
|
79
|
+
getAgentById(id?: string): {
|
|
80
|
+
id: string;
|
|
81
|
+
name: string;
|
|
82
|
+
avatar?: string | undefined;
|
|
83
|
+
providerName: string;
|
|
84
|
+
} | undefined;
|
|
85
|
+
dispose(): void;
|
|
86
|
+
onDispose(fn: EventListener): import("@webprovisions/platform").EventSubscriptionCancellation;
|
|
87
|
+
onStarted(fn: EventListener): import("@webprovisions/platform").EventSubscriptionCancellation;
|
|
88
|
+
onMessageCreated(fn: EventListener): import("@webprovisions/platform").EventSubscriptionCancellation;
|
|
89
|
+
isRehydrated(): Promise<boolean>;
|
|
90
|
+
disposeProvider(target: ConversationProvider): void;
|
|
91
|
+
onProvidersChange(fn: EventListener): import("@webprovisions/platform").EventSubscriptionCancellation;
|
|
92
|
+
setComponentMountedState(mounted: boolean): void;
|
|
93
|
+
setProviderOptions(providerName: string, options: ConversationOptions): void;
|
|
94
|
+
changeProvider(providerName: string): void;
|
|
95
|
+
queueProviders(providers: string[]): void;
|
|
96
|
+
onCompleteProvider(): void;
|
|
97
|
+
getComponentMountedState(): boolean;
|
|
98
|
+
onUnreadMessage(fn: EventListener): import("@webprovisions/platform").EventSubscriptionCancellation;
|
|
99
|
+
createEntry(key: string, content: ConversationMessageContent, type: ConversationMessageType, sender?: ConversationMessageSender, timestamp?: number | null): ConversationEntry;
|
|
100
|
+
print: (settings: string | ConversationMessageSettings) => ConversationEntry;
|
|
101
|
+
update(): void;
|
|
102
|
+
getMessageStream(): {
|
|
103
|
+
messages: ConversationMessage[];
|
|
104
|
+
loading: boolean;
|
|
105
|
+
typingActors: ConversationMessageSender[];
|
|
106
|
+
};
|
|
107
|
+
setTypingState(sender: ConversationMessageSender, _type?: ConversationMessageType): () => void;
|
|
108
|
+
/**
|
|
109
|
+
* Displays a loader in the conversation.
|
|
110
|
+
*/
|
|
111
|
+
loader(): CancelLoaderDelegate;
|
|
112
|
+
submitForm(key: string, handler: SubmitHandler): void;
|
|
113
|
+
validateForm(key: string, handler: ValidateHandler): void;
|
|
114
|
+
getHistory(): {
|
|
115
|
+
message?: string | undefined;
|
|
116
|
+
options?: string[] | undefined;
|
|
117
|
+
alias: string;
|
|
118
|
+
source: string;
|
|
119
|
+
timestamp: number | null;
|
|
120
|
+
}[];
|
|
121
|
+
}
|
|
122
|
+
//# sourceMappingURL=conversation-controller.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"conversation-controller.d.ts","sourceRoot":"","sources":["../src/conversation-controller.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ConversationPlatform } from './conversation-platform';
|
|
2
|
+
export declare class ConversationFormAdapter {
|
|
3
|
+
constructor(_platform: ConversationPlatform);
|
|
4
|
+
submit: (_invoke: any, _cancel: any) => (_contactMethod: any) => Promise<any>;
|
|
5
|
+
updateContactMethod: (_contactMethod: any, _errors?: any) => void;
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=conversation-form-adapter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"conversation-form-adapter.d.ts","sourceRoot":"","sources":["../src/conversation-form-adapter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAC;AAE/D,qBAAa,uBAAuB;gBACtB,SAAS,EAAE,oBAAoB;IAE3C,MAAM,YAEO,GAAG,WACH,GAAG,sBAES,GAAG,KAAG,QAAQ,GAAG,CAAC,CAAO;IAyClD,mBAAmB,mBAAoB,GAAG,YAAY,GAAG,UAAQ;CAwClE"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ConversationController, ConversationMessageType } from './conversation-controller';
|
|
2
|
+
import { ConversationMessageContent, ConversationMessageSender } from './types';
|
|
3
|
+
type ConversationLogMessage = {
|
|
4
|
+
message?: string;
|
|
5
|
+
options?: string[];
|
|
6
|
+
alias: string;
|
|
7
|
+
source: string;
|
|
8
|
+
timestamp: number | null;
|
|
9
|
+
};
|
|
10
|
+
export declare class ConversationHistory {
|
|
11
|
+
private controller;
|
|
12
|
+
private cache;
|
|
13
|
+
private subscriptions;
|
|
14
|
+
constructor(controller: ConversationController);
|
|
15
|
+
getConversationLogs(): ConversationLogMessage[];
|
|
16
|
+
parseEntry(content: ConversationMessageContent, type: ConversationMessageType, sender?: ConversationMessageSender, timestamp?: any | null): ConversationLogMessage;
|
|
17
|
+
private createMessageSource;
|
|
18
|
+
private createAlias;
|
|
19
|
+
private handleContactMethod;
|
|
20
|
+
private getDetails;
|
|
21
|
+
private createMessageContent;
|
|
22
|
+
private createMessageOptions;
|
|
23
|
+
private appendText;
|
|
24
|
+
dispose(): void;
|
|
25
|
+
}
|
|
26
|
+
export {};
|
|
27
|
+
//# sourceMappingURL=conversation-history.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"conversation-history.d.ts","sourceRoot":"","sources":["../src/conversation-history.ts"],"names":[],"mappings":"AACA,OAAO,EACL,sBAAsB,EACtB,uBAAuB,EAExB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EAAE,0BAA0B,EAAE,yBAAyB,EAAE,MAAM,SAAS,CAAC;AAEhF,KAAK,sBAAsB,GAAG;IAC5B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B,CAAC;AAEF,qBAAa,mBAAmB;IAKlB,OAAO,CAAC,UAAU;IAJ9B,OAAO,CAAC,KAAK,CAA+B;IAE5C,OAAO,CAAC,aAAa,CAAuC;gBAExC,UAAU,EAAE,sBAAsB;IAWtD,mBAAmB,IAAI,sBAAsB,EAAE;IAoB/C,UAAU,CACR,OAAO,EAAE,0BAA0B,EACnC,IAAI,EAAE,uBAAuB,EAC7B,MAAM,CAAC,EAAE,yBAAyB,EAClC,SAAS,CAAC,EAAE,GAAG,GAAG,IAAI;IA2DxB,OAAO,CAAC,mBAAmB;IAI3B,OAAO,CAAC,WAAW;IAUnB,OAAO,CAAC,mBAAmB;IAkB3B,OAAO,CAAC,UAAU;IAkDlB,OAAO,CAAC,oBAAoB;IAQ5B,OAAO,CAAC,oBAAoB;IAuB5B,OAAO,CAAC,UAAU;IASlB,OAAO;CAKR"}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { ComponentNodeController, ComponentPlatform } from '@telia-ace/widget-core';
|
|
2
|
+
import { RouteData } from '@telia-ace/widget-routing';
|
|
3
|
+
import { Container, EventManager, EventSubscriptionCancellation } from '@webprovisions/platform';
|
|
4
|
+
import { ConversationController } from './conversation-controller';
|
|
5
|
+
import { ConversationProvider } from './conversation-provider';
|
|
6
|
+
export type ConversationHandler = (conversation: ConversationProvider, component: ComponentNodeController) => void | (() => void);
|
|
7
|
+
export type UnregisterControllerDelegate = () => void;
|
|
8
|
+
export type ConversationProviderRegistration = {
|
|
9
|
+
name: string;
|
|
10
|
+
handler: ConversationHandler;
|
|
11
|
+
};
|
|
12
|
+
export declare enum ConversationEndedBehavior {
|
|
13
|
+
Deactivate = "deactivate",
|
|
14
|
+
Navigate = "navigate",
|
|
15
|
+
None = "none"
|
|
16
|
+
}
|
|
17
|
+
export type SessionInfo = {
|
|
18
|
+
id?: string;
|
|
19
|
+
route?: RouteData;
|
|
20
|
+
conversationEndedBehavior?: ConversationEndedBehavior;
|
|
21
|
+
};
|
|
22
|
+
export declare class ConversationPlatform {
|
|
23
|
+
private container;
|
|
24
|
+
private components;
|
|
25
|
+
events: EventManager;
|
|
26
|
+
controllers: {
|
|
27
|
+
conversation: ConversationController;
|
|
28
|
+
component: ComponentNodeController;
|
|
29
|
+
}[];
|
|
30
|
+
private providers;
|
|
31
|
+
private disposeProviders;
|
|
32
|
+
private subscriptions;
|
|
33
|
+
private storageWriter;
|
|
34
|
+
private router;
|
|
35
|
+
private buttonQuery;
|
|
36
|
+
private sessionInfo;
|
|
37
|
+
constructor(container: Container, components: ComponentPlatform);
|
|
38
|
+
initialize(): void;
|
|
39
|
+
addSubscription(sub: EventSubscriptionCancellation): void;
|
|
40
|
+
static getInstance(container: Container, key?: string): Promise<ConversationPlatform>;
|
|
41
|
+
navigateToConversationIfActive(id: string): Promise<void>;
|
|
42
|
+
setConversationEndedBehavior(behavior: ConversationEndedBehavior): Promise<void>;
|
|
43
|
+
createController(id: string, options: {
|
|
44
|
+
rehydrate: boolean;
|
|
45
|
+
}): Promise<ConversationController>;
|
|
46
|
+
registerProvider(name: string, handler: ConversationHandler): void;
|
|
47
|
+
registerController(conversation: ConversationController, component: ComponentNodeController): boolean;
|
|
48
|
+
private writeToComponents;
|
|
49
|
+
private invokeHandler;
|
|
50
|
+
getComponentRoute(): Promise<RouteData | undefined>;
|
|
51
|
+
dispose(): void;
|
|
52
|
+
static handleContactMethodClick(event: any, container: Container, contactMethod: any, _callback?: Function): Promise<void>;
|
|
53
|
+
static handleContactMethodSubmit(container: Container, contactMethod: any): Promise<any>;
|
|
54
|
+
}
|
|
55
|
+
//# sourceMappingURL=conversation-platform.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"conversation-platform.d.ts","sourceRoot":"","sources":["../src/conversation-platform.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,uBAAuB,EACvB,iBAAiB,EAElB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,SAAS,EAAkB,MAAM,2BAA2B,CAAC;AAStE,OAAO,EACL,SAAS,EACT,YAAY,EACZ,6BAA6B,EAE9B,MAAM,yBAAyB,CAAC;AAEjC,OAAO,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAC;AAW/D,MAAM,MAAM,mBAAmB,GAAG,CAChC,YAAY,EAAE,oBAAoB,EAClC,SAAS,EAAE,uBAAuB,KAC/B,IAAI,GAAG,CAAC,MAAM,IAAI,CAAC,CAAC;AAEzB,MAAM,MAAM,4BAA4B,GAAG,MAAM,IAAI,CAAC;AAEtD,MAAM,MAAM,gCAAgC,GAAG;IAC7C,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,mBAAmB,CAAC;CAC9B,CAAC;AAEF,oBAAY,yBAAyB;IACnC,UAAU,eAAe;IACzB,QAAQ,aAAa;IACrB,IAAI,SAAS;CACd;AAED,MAAM,MAAM,WAAW,GAAG;IACxB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,yBAAyB,CAAC,EAAE,yBAAyB,CAAC;CACvD,CAAC;AAEF,qBAAa,oBAAoB;IAe7B,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,UAAU;IAfpB,MAAM,EAAE,YAAY,CAAC;IACd,WAAW,EAAE;QAClB,YAAY,EAAE,sBAAsB,CAAC;QACrC,SAAS,EAAE,uBAAuB,CAAC;KACpC,EAAE,CAAM;IACT,OAAO,CAAC,SAAS,CAA0C;IAC3D,OAAO,CAAC,gBAAgB,CAAiD;IACzE,OAAO,CAAC,aAAa,CAAuC;IAC5D,OAAO,CAAC,aAAa,CAA8B;IACnD,OAAO,CAAC,MAAM,CAA+B;IAC7C,OAAO,CAAC,WAAW,CAA+B;IAClD,OAAO,CAAC,WAAW,CAA4B;gBAGrC,SAAS,EAAE,SAAS,EACpB,UAAU,EAAE,iBAAiB;IAMvC,UAAU;IAgDV,eAAe,CAAC,GAAG,EAAE,6BAA6B;IAIlD,MAAM,CAAC,WAAW,CAChB,SAAS,EAAE,SAAS,EACpB,GAAG,GAAE,MAAuB,GAC3B,OAAO,CAAC,oBAAoB,CAAC;IAkBhC,8BAA8B,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAezD,4BAA4B,CAAC,QAAQ,EAAE,yBAAyB;IAoB1D,gBAAgB,CAAC,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE;QAAE,SAAS,EAAE,OAAO,CAAA;KAAE;IAkBlE,gBAAgB,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,mBAAmB,GAAG,IAAI;IAgBlE,kBAAkB,CAChB,YAAY,EAAE,sBAAsB,EACpC,SAAS,EAAE,uBAAuB,GACjC,OAAO;IA+EV,OAAO,CAAC,iBAAiB;IAczB,OAAO,CAAC,aAAa;IAgBrB,iBAAiB;IAQjB,OAAO;WAaa,wBAAwB,CAC1C,KAAK,EAAE,GAAG,EACV,SAAS,EAAE,SAAS,EACpB,aAAa,EAAE,GAAG,EAClB,SAAS,CAAC,EAAE,QAAQ;WAgBF,yBAAyB,CAC3C,SAAS,EAAE,SAAS,EACpB,aAAa,EAAE,GAAG;CAcrB"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { Container, EventListener, EventSubscriptionCancellation } from '@webprovisions/platform';
|
|
2
|
+
import { Agent, AgentSettings } from './agent';
|
|
3
|
+
import { CancelLoaderDelegate, ConversationController, ConversationEntry, ConversationMessageType, ConversationOptions } from './conversation-controller';
|
|
4
|
+
import { ConversationMessageContent, ConversationMessageSender, ConversationMessageSettings } from './types';
|
|
5
|
+
export declare class ConversationProvider {
|
|
6
|
+
name: string;
|
|
7
|
+
controller: ConversationController | null;
|
|
8
|
+
private subscriptions;
|
|
9
|
+
options: ConversationOptions;
|
|
10
|
+
user: any;
|
|
11
|
+
private constructor();
|
|
12
|
+
static create(name: string, container: Container, controller: ConversationController): ConversationProvider;
|
|
13
|
+
createAgent(settings?: AgentSettings): Agent | undefined;
|
|
14
|
+
print(settings: string | ConversationMessageSettings): ConversationEntry | undefined;
|
|
15
|
+
setTypingState(sender: ConversationMessageSender, type?: ConversationMessageType): (() => void) | undefined;
|
|
16
|
+
loading(): CancelLoaderDelegate;
|
|
17
|
+
createEntry(key: string, content: ConversationMessageContent, type: ConversationMessageType, sender?: ConversationMessageSender, timestamp?: number | null): ConversationEntry | undefined;
|
|
18
|
+
dispose(): void;
|
|
19
|
+
isRehydrated(): Promise<boolean>;
|
|
20
|
+
getHistory(): {
|
|
21
|
+
message?: string | undefined;
|
|
22
|
+
options?: string[] | undefined;
|
|
23
|
+
alias: string;
|
|
24
|
+
source: string;
|
|
25
|
+
timestamp: number | null;
|
|
26
|
+
}[];
|
|
27
|
+
complete(): void;
|
|
28
|
+
setOptions(options?: ConversationOptions): void;
|
|
29
|
+
onUnreadMessage(fn: EventListener): EventSubscriptionCancellation | void;
|
|
30
|
+
onMounted(fn: EventListener): EventSubscriptionCancellation | void;
|
|
31
|
+
}
|
|
32
|
+
export default ConversationProvider;
|
|
33
|
+
//# sourceMappingURL=conversation-provider.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"conversation-provider.d.ts","sourceRoot":"","sources":["../src/conversation-provider.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,SAAS,EACT,aAAa,EAEb,6BAA6B,EAC9B,MAAM,yBAAyB,CAAC;AACjC,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAC/C,OAAO,EACL,oBAAoB,EACpB,sBAAsB,EACtB,iBAAiB,EACjB,uBAAuB,EACvB,mBAAmB,EACpB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EACL,0BAA0B,EAC1B,yBAAyB,EACzB,2BAA2B,EAC5B,MAAM,SAAS,CAAC;AAEjB,qBAAa,oBAAoB;IAMtB,IAAI,EAAE,MAAM;IAEZ,UAAU,EAAE,sBAAsB,GAAG,IAAI;IAPlD,OAAO,CAAC,aAAa,CAAuC;IACrD,OAAO,EAAE,mBAAmB,CAAC;IAC7B,IAAI,EAAE,GAAG,CAAC;IAEjB,OAAO;IAWP,MAAM,CAAC,MAAM,CACX,IAAI,EAAE,MAAM,EACZ,SAAS,EAAE,SAAS,EACpB,UAAU,EAAE,sBAAsB;IAKpC,WAAW,CAAC,QAAQ,GAAE,aAAkB,GAAG,KAAK,GAAG,SAAS;IAgB5D,KAAK,CACH,QAAQ,EAAE,MAAM,GAAG,2BAA2B,GAC7C,iBAAiB,GAAG,SAAS;IAIhC,cAAc,CACZ,MAAM,EAAE,yBAAyB,EACjC,IAAI,CAAC,EAAE,uBAAuB;IAKhC,OAAO,IAAI,oBAAoB;IAO/B,WAAW,CACT,GAAG,EAAE,MAAM,EACX,OAAO,EAAE,0BAA0B,EACnC,IAAI,EAAE,uBAAuB,EAC7B,MAAM,CAAC,EAAE,yBAAyB,EAClC,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI;IAK3B,OAAO;IASP,YAAY;IAIZ,UAAU;;;;;;;IAIV,QAAQ;IAIR,UAAU,CAAC,OAAO,GAAE,mBAAuC;IAI3D,eAAe,CAAC,EAAE,EAAE,aAAa,GAAG,6BAA6B,GAAG,IAAI;IAUxE,SAAS,CAAC,EAAE,EAAE,aAAa,GAAG,6BAA6B,GAAG,IAAI;CAanE;AAED,eAAe,oBAAoB,CAAC"}
|