this repo has no description
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n SELECT\n created_at,\n channel as \"channel: String\",\n comms_type as \"comms_type: String\",\n status as \"status: String\",\n subject,\n body\n FROM comms_queue\n WHERE user_id = $1\n ORDER BY created_at DESC\n LIMIT 50\n ", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "created_at", 9 "type_info": "Timestamptz" 10 }, 11 { 12 "ordinal": 1, 13 "name": "channel: String", 14 "type_info": { 15 "Custom": { 16 "name": "comms_channel", 17 "kind": { 18 "Enum": [ 19 "email", 20 "discord", 21 "telegram", 22 "signal" 23 ] 24 } 25 } 26 } 27 }, 28 { 29 "ordinal": 2, 30 "name": "comms_type: String", 31 "type_info": { 32 "Custom": { 33 "name": "comms_type", 34 "kind": { 35 "Enum": [ 36 "welcome", 37 "email_verification", 38 "password_reset", 39 "email_update", 40 "account_deletion", 41 "admin_email", 42 "plc_operation", 43 "two_factor_code", 44 "channel_verification", 45 "passkey_recovery", 46 "legacy_login_alert" 47 ] 48 } 49 } 50 } 51 }, 52 { 53 "ordinal": 3, 54 "name": "status: String", 55 "type_info": { 56 "Custom": { 57 "name": "comms_status", 58 "kind": { 59 "Enum": [ 60 "pending", 61 "processing", 62 "sent", 63 "failed" 64 ] 65 } 66 } 67 } 68 }, 69 { 70 "ordinal": 4, 71 "name": "subject", 72 "type_info": "Text" 73 }, 74 { 75 "ordinal": 5, 76 "name": "body", 77 "type_info": "Text" 78 } 79 ], 80 "parameters": { 81 "Left": [ 82 "Uuid" 83 ] 84 }, 85 "nullable": [ 86 false, 87 false, 88 false, 89 false, 90 true, 91 false 92 ] 93 }, 94 "hash": "fde01bb40898f8a5d45a6e8f89c635c06b4179b5858a7b388404c4b03fc92ab4" 95}