keyring-chatbot-agent-sdk-test 0.0.19 → 0.0.30
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/chat-widget.es.js +3984 -3759
- package/dist/chat-widget.umd.js +78 -67
- package/dist/lib.d.ts +9 -0
- package/package.json +1 -1
package/dist/lib.d.ts
CHANGED
|
@@ -96,6 +96,7 @@ export declare interface Message {
|
|
|
96
96
|
parameters: Record<string, string>;
|
|
97
97
|
status?: 'pending' | 'submitted' | 'success' | 'fail';
|
|
98
98
|
tokenInfo?: MessageTokenInfo;
|
|
99
|
+
nftInfo?: MessageNftInfo;
|
|
99
100
|
};
|
|
100
101
|
}
|
|
101
102
|
|
|
@@ -108,6 +109,14 @@ export declare interface MessageButton {
|
|
|
108
109
|
fullWidth?: boolean;
|
|
109
110
|
}
|
|
110
111
|
|
|
112
|
+
declare interface MessageNftInfo {
|
|
113
|
+
name: string;
|
|
114
|
+
image?: string;
|
|
115
|
+
tokenId: string;
|
|
116
|
+
contractAddress: string;
|
|
117
|
+
tokenStandard?: string;
|
|
118
|
+
}
|
|
119
|
+
|
|
111
120
|
export declare interface MessageTokenInfo {
|
|
112
121
|
symbol: string;
|
|
113
122
|
name: string;
|