teodor-new-chat-ui 4.3.360 → 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/index.esm.js +180 -180
- package/dist/index.umd.js +7 -7
- package/dist/types/models.d.ts +14 -0
- package/package.json +1 -1
package/dist/types/models.d.ts
CHANGED
|
@@ -177,6 +177,20 @@ export interface SmartOrgUser {
|
|
|
177
177
|
username?: string;
|
|
178
178
|
email?: string;
|
|
179
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;
|
|
180
194
|
}
|
|
181
195
|
export interface ThreadInfo extends ThreadSummary {
|
|
182
196
|
lastMessage?: string | null;
|
package/package.json
CHANGED