teodor-new-chat-ui 4.3.358 → 4.3.361
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/api/chat-api.d.ts +2 -1
- package/dist/components/ui/resizable.d.ts +1 -1
- package/dist/context/providers/ChatSessionProvider.d.ts +4 -1
- package/dist/index.esm.js +7173 -6731
- package/dist/index.umd.js +46 -46
- package/dist/types/models.d.ts +21 -0
- package/package.json +1 -1
package/dist/types/models.d.ts
CHANGED
|
@@ -171,6 +171,27 @@ export interface ThreadShareResponse {
|
|
|
171
171
|
sharedWithUserId: string;
|
|
172
172
|
sharedAt: string;
|
|
173
173
|
}
|
|
174
|
+
export interface SmartOrgUser {
|
|
175
|
+
id?: string;
|
|
176
|
+
user_id?: string;
|
|
177
|
+
username?: string;
|
|
178
|
+
email?: string;
|
|
179
|
+
name?: string;
|
|
180
|
+
organisation?: string;
|
|
181
|
+
created?: string;
|
|
182
|
+
description?: string;
|
|
183
|
+
locked?: boolean;
|
|
184
|
+
email_verified?: boolean;
|
|
185
|
+
phone1?: string;
|
|
186
|
+
admin?: {
|
|
187
|
+
force_password_change?: boolean;
|
|
188
|
+
};
|
|
189
|
+
passwordAttempts?: number;
|
|
190
|
+
active_key?: string;
|
|
191
|
+
active_expire?: string;
|
|
192
|
+
isFirstLogin?: boolean;
|
|
193
|
+
modified?: string;
|
|
194
|
+
}
|
|
174
195
|
export interface ThreadInfo extends ThreadSummary {
|
|
175
196
|
lastMessage?: string | null;
|
|
176
197
|
}
|
package/package.json
CHANGED