wa_strapi
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
538 B

  1. {
  2. "kind": "collectionType",
  3. "collectionName": "chats",
  4. "info": {
  5. "name": "Chats",
  6. "description": ""
  7. },
  8. "options": {
  9. "increments": true,
  10. "timestamps": true,
  11. "draftAndPublish": true
  12. },
  13. "attributes": {
  14. "session_key": {
  15. "model": "session-data"
  16. },
  17. "name": {
  18. "type": "string"
  19. },
  20. "unreadCount": {
  21. "type": "integer"
  22. },
  23. "chatId": {
  24. "type": "json"
  25. },
  26. "phoneNumber": {
  27. "type": "string"
  28. },
  29. "timestamp": {
  30. "type": "datetime"
  31. }
  32. }
  33. }