|
13 | 13 | }, |
14 | 14 | "language": { "type": "string" }, |
15 | 15 | "blocked_user_ids": { "type": "array", "items": { "type": "string" } }, |
16 | | - "blocked_by_user_ids": { "type": "array", "items": { "type": "string" } }, |
17 | 16 | "invisible": { "type": "boolean" }, |
18 | 17 | "deactivated_at": { "type": "string", "format": "date-time" }, |
19 | 18 | "deleted_at": { "type": "string", "format": "date-time" }, |
20 | 19 | "created_at": { "type": "string", "format": "date-time" }, |
21 | | - "updated_at": { "type": "string", "format": "date-time" }, |
22 | 20 | "channel_mutes": { "type": "array", "items": { "type": "string" } }, |
23 | | - "user_mutes": { "type": "array", "items": { "type": "string" } } |
| 21 | + "user_mutes": { "type": "array", "items": { "type": "string" } }, |
| 22 | + "push_preferences": { |
| 23 | + "type": "object", |
| 24 | + "description": "User push preferences", |
| 25 | + "additionalProperties": false, |
| 26 | + "properties": { |
| 27 | + "chat_level": { "type": "string", "enum": ["all", "none", "mentions"] }, |
| 28 | + "disabled_until": { "type": "string", "format": "date-time" } |
| 29 | + } |
| 30 | + }, |
| 31 | + "privacy_settings": { |
| 32 | + "type": "object", |
| 33 | + "description": "User privacy settings", |
| 34 | + "additionalProperties": false, |
| 35 | + "properties": { |
| 36 | + "typing_indicators": { |
| 37 | + "type": "object", |
| 38 | + "additionalProperties": false, |
| 39 | + "required": ["enabled"], |
| 40 | + "properties": { "enabled": { "type": "boolean" } } |
| 41 | + }, |
| 42 | + "read_receipts": { |
| 43 | + "type": "object", |
| 44 | + "additionalProperties": false, |
| 45 | + "required": ["enabled"], |
| 46 | + "properties": { "enabled": { "type": "boolean" } } |
| 47 | + }, |
| 48 | + "delivery_receipts": { |
| 49 | + "type": "object", |
| 50 | + "additionalProperties": false, |
| 51 | + "required": ["enabled"], |
| 52 | + "properties": { "enabled": { "type": "boolean" } } |
| 53 | + } |
| 54 | + } |
| 55 | + } |
24 | 56 | } |
25 | 57 | } |
0 commit comments