@arbidocs/client 0.3.20 → 0.3.21
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.d.cts +10 -0
- package/dist/index.d.ts +10 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2771,6 +2771,8 @@ interface components {
|
|
|
2771
2771
|
is_shared: boolean;
|
|
2772
2772
|
/** Message Count */
|
|
2773
2773
|
message_count: number;
|
|
2774
|
+
/** Last Message Status */
|
|
2775
|
+
last_message_status?: string | null;
|
|
2774
2776
|
};
|
|
2775
2777
|
/** ConversationTitleUpdateRequest */
|
|
2776
2778
|
ConversationTitleUpdateRequest: {
|
|
@@ -6384,6 +6386,10 @@ interface components {
|
|
|
6384
6386
|
* @default []
|
|
6385
6387
|
*/
|
|
6386
6388
|
muted_users: string[];
|
|
6389
|
+
/** Premium Model */
|
|
6390
|
+
premium_model?: string | null;
|
|
6391
|
+
/** Picture */
|
|
6392
|
+
picture?: string | null;
|
|
6387
6393
|
} & {
|
|
6388
6394
|
[key: string]: unknown;
|
|
6389
6395
|
};
|
|
@@ -6424,6 +6430,10 @@ interface components {
|
|
|
6424
6430
|
hide_online_status?: boolean | null;
|
|
6425
6431
|
/** Muted Users */
|
|
6426
6432
|
muted_users?: string[] | null;
|
|
6433
|
+
/** Premium Model */
|
|
6434
|
+
premium_model?: string | null;
|
|
6435
|
+
/** Picture */
|
|
6436
|
+
picture?: string | null;
|
|
6427
6437
|
};
|
|
6428
6438
|
/** ValidationError */
|
|
6429
6439
|
ValidationError: {
|
package/dist/index.d.ts
CHANGED
|
@@ -2771,6 +2771,8 @@ interface components {
|
|
|
2771
2771
|
is_shared: boolean;
|
|
2772
2772
|
/** Message Count */
|
|
2773
2773
|
message_count: number;
|
|
2774
|
+
/** Last Message Status */
|
|
2775
|
+
last_message_status?: string | null;
|
|
2774
2776
|
};
|
|
2775
2777
|
/** ConversationTitleUpdateRequest */
|
|
2776
2778
|
ConversationTitleUpdateRequest: {
|
|
@@ -6384,6 +6386,10 @@ interface components {
|
|
|
6384
6386
|
* @default []
|
|
6385
6387
|
*/
|
|
6386
6388
|
muted_users: string[];
|
|
6389
|
+
/** Premium Model */
|
|
6390
|
+
premium_model?: string | null;
|
|
6391
|
+
/** Picture */
|
|
6392
|
+
picture?: string | null;
|
|
6387
6393
|
} & {
|
|
6388
6394
|
[key: string]: unknown;
|
|
6389
6395
|
};
|
|
@@ -6424,6 +6430,10 @@ interface components {
|
|
|
6424
6430
|
hide_online_status?: boolean | null;
|
|
6425
6431
|
/** Muted Users */
|
|
6426
6432
|
muted_users?: string[] | null;
|
|
6433
|
+
/** Premium Model */
|
|
6434
|
+
premium_model?: string | null;
|
|
6435
|
+
/** Picture */
|
|
6436
|
+
picture?: string | null;
|
|
6427
6437
|
};
|
|
6428
6438
|
/** ValidationError */
|
|
6429
6439
|
ValidationError: {
|
package/package.json
CHANGED