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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "teodor-new-chat-ui",
3
- "version": "4.3.358",
3
+ "version": "4.3.361",
4
4
  "description": "React chat UI components with streaming support, tool calls, and modern design",
5
5
  "main": "dist/index.umd.js",
6
6
  "module": "dist/index.esm.js",