robbyson-frontend-library 1.0.31 → 1.0.32
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/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export class ProfileInfoModel {
|
|
2
2
|
nickname: string;
|
|
3
3
|
about: string;
|
|
4
|
-
|
|
4
|
+
allowAngelFriend: boolean;
|
|
5
5
|
currentPassword: string;
|
|
6
6
|
newPassword: string;
|
|
7
|
-
|
|
7
|
+
confirmationNewPassword: string;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
export class ProfileImageModel {
|
|
@@ -73,6 +73,7 @@ export interface IGetMessagesDTO {
|
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
export type MessageBotType =
|
|
76
|
+
| "table"
|
|
76
77
|
| "text"
|
|
77
78
|
| "image"
|
|
78
79
|
| "button"
|
|
@@ -95,6 +96,15 @@ export interface IChatBotMessage {
|
|
|
95
96
|
child: [];
|
|
96
97
|
requestPayload?: RequestPayload;
|
|
97
98
|
}[];
|
|
99
|
+
header?: { value: string }[];
|
|
100
|
+
};
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
export interface IChatBotTableMessage {
|
|
104
|
+
footer: string;
|
|
105
|
+
payload: {
|
|
106
|
+
content: { value: string }[][];
|
|
107
|
+
header: { value: string }[];
|
|
98
108
|
};
|
|
99
109
|
}
|
|
100
110
|
|