This commit is contained in:
eric
2026-06-08 03:06:12 -05:00
parent 60dfe538b0
commit ebfec37e47
34 changed files with 1753 additions and 31 deletions

View File

@@ -362,8 +362,25 @@ COLLECTIONS: dict[str, list[dict[str, Any]]] = {
text("profileAId", max=80),
text("profileBId", max=80),
text("intent", max=40),
text("conversationId", max=80),
date("matchedAt"),
],
"conversations": [
text("pairKey", max=160),
text("type", max=40),
text("userAId", max=80),
text("userBId", max=80),
text("matchConnectionId", max=80),
text("intent", max=40),
text("lastMessagePreview", max=200),
date("lastMessageAt"),
json_field("readState"),
],
"messages": [
text("conversationId", required=True, max=80),
text("senderId", required=True, max=80),
text("body", required=True, max=2000),
],
"content_items": [
text("slug", required=True, max=120),
text("type", required=True, max=40),