@unicitylabs/sphere-sdk 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/dist/connect/index.cjs +3 -1
  2. package/dist/connect/index.cjs.map +1 -1
  3. package/dist/connect/index.js +3 -1
  4. package/dist/connect/index.js.map +1 -1
  5. package/dist/core/index.cjs +205 -41
  6. package/dist/core/index.cjs.map +1 -1
  7. package/dist/core/index.d.cts +22 -0
  8. package/dist/core/index.d.ts +22 -0
  9. package/dist/core/index.js +205 -41
  10. package/dist/core/index.js.map +1 -1
  11. package/dist/impl/browser/connect/index.cjs +3 -1
  12. package/dist/impl/browser/connect/index.cjs.map +1 -1
  13. package/dist/impl/browser/connect/index.js +3 -1
  14. package/dist/impl/browser/connect/index.js.map +1 -1
  15. package/dist/impl/browser/index.cjs +3 -1
  16. package/dist/impl/browser/index.cjs.map +1 -1
  17. package/dist/impl/browser/index.js +3 -1
  18. package/dist/impl/browser/index.js.map +1 -1
  19. package/dist/impl/browser/ipfs.cjs +3 -1
  20. package/dist/impl/browser/ipfs.cjs.map +1 -1
  21. package/dist/impl/browser/ipfs.js +3 -1
  22. package/dist/impl/browser/ipfs.js.map +1 -1
  23. package/dist/impl/nodejs/connect/index.cjs +3 -1
  24. package/dist/impl/nodejs/connect/index.cjs.map +1 -1
  25. package/dist/impl/nodejs/connect/index.js +3 -1
  26. package/dist/impl/nodejs/connect/index.js.map +1 -1
  27. package/dist/impl/nodejs/index.cjs +3 -1
  28. package/dist/impl/nodejs/index.cjs.map +1 -1
  29. package/dist/impl/nodejs/index.js +3 -1
  30. package/dist/impl/nodejs/index.js.map +1 -1
  31. package/dist/index.cjs +205 -41
  32. package/dist/index.cjs.map +1 -1
  33. package/dist/index.d.cts +26 -0
  34. package/dist/index.d.ts +26 -0
  35. package/dist/index.js +205 -41
  36. package/dist/index.js.map +1 -1
  37. package/dist/l1/index.cjs +3 -1
  38. package/dist/l1/index.cjs.map +1 -1
  39. package/dist/l1/index.js +3 -1
  40. package/dist/l1/index.js.map +1 -1
  41. package/package.json +1 -1
@@ -58,7 +58,9 @@ var STORAGE_KEYS_ADDRESS = {
58
58
  /** Group chat: members for this address */
59
59
  GROUP_CHAT_MEMBERS: "group_chat_members",
60
60
  /** Group chat: processed event IDs for deduplication */
61
- GROUP_CHAT_PROCESSED_EVENTS: "group_chat_processed_events"
61
+ GROUP_CHAT_PROCESSED_EVENTS: "group_chat_processed_events",
62
+ /** Processed V5 split group IDs for Nostr re-delivery dedup */
63
+ PROCESSED_SPLIT_GROUP_IDS: "processed_split_group_ids"
62
64
  };
63
65
  var STORAGE_KEYS = {
64
66
  ...STORAGE_KEYS_GLOBAL,