Mailbox support + crafting api
Deploy Promiscuity Auth API / deploy (push) Successful in 48s
Deploy Promiscuity Character API / deploy (push) Successful in 46s
Deploy Promiscuity Crafting API / deploy (push) Successful in 1m9s
Deploy Promiscuity Inventory API / deploy (push) Successful in 46s
Deploy Promiscuity Locations API / deploy (push) Successful in 48s
Deploy Promiscuity Mail API / deploy (push) Successful in 46s
k8s smoke test / test (push) Successful in 8s

This commit is contained in:
2026-03-26 09:36:42 -05:00
parent a8db66b93e
commit a283969e4c
22 changed files with 1026 additions and 17 deletions
+9 -9
View File
@@ -1032,15 +1032,15 @@ func _parse_mail_messages(value: Variant) -> Array:
continue
var message := entry as Dictionary
messages.append({
"id": String(message.get("id", "")).strip_edges(),
"senderCharacterId": String(message.get("senderCharacterId", "")).strip_edges(),
"senderCharacterName": String(message.get("senderCharacterName", "")).strip_edges(),
"recipientCharacterId": String(message.get("recipientCharacterId", "")).strip_edges(),
"recipientCharacterName": String(message.get("recipientCharacterName", "")).strip_edges(),
"subject": String(message.get("subject", "")).strip_edges(),
"body": String(message.get("body", "")).strip_edges(),
"createdUtc": String(message.get("createdUtc", "")).strip_edges(),
"readUtc": String(message.get("readUtc", "")).strip_edges()
"id": str(message.get("id", "")).strip_edges(),
"senderCharacterId": str(message.get("senderCharacterId", "")).strip_edges(),
"senderCharacterName": str(message.get("senderCharacterName", "")).strip_edges(),
"recipientCharacterId": str(message.get("recipientCharacterId", "")).strip_edges(),
"recipientCharacterName": str(message.get("recipientCharacterName", "")).strip_edges(),
"subject": str(message.get("subject", "")).strip_edges(),
"body": str(message.get("body", "")).strip_edges(),
"createdUtc": str(message.get("createdUtc", "")).strip_edges(),
"readUtc": str(message.get("readUtc", "")).strip_edges()
})
return messages