keyring-chatbot-agent-sdk-test 0.3.6 → 0.3.8
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/ccip-B2PVVKFk.js +1 -0
- package/dist/chat-widget.es.js +34 -33
- package/dist/chat-widget.umd.js +1 -1
- package/dist/lib-BfU9aK4E.js +72 -0
- package/dist/lib.d.ts +3 -0
- package/package.json +1 -1
package/dist/lib.d.ts
CHANGED
|
@@ -102,6 +102,7 @@ export declare interface Message {
|
|
|
102
102
|
tokenInfo?: MessageTokenInfo;
|
|
103
103
|
nftInfo?: MessageNftInfo;
|
|
104
104
|
};
|
|
105
|
+
typeChat?: TypeChat;
|
|
105
106
|
}
|
|
106
107
|
|
|
107
108
|
export declare interface MessageButton {
|
|
@@ -158,4 +159,6 @@ export declare interface TransactionResult {
|
|
|
158
159
|
*/
|
|
159
160
|
export declare type TransactionStatus = 'pending' | 'process' | 'success' | 'fail';
|
|
160
161
|
|
|
162
|
+
declare type TypeChat = 'web3' | 'normal';
|
|
163
|
+
|
|
161
164
|
export { }
|