snapback4 0.0.14 → 0.0.16

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 (2) hide show
  1. package/README.md +5 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -135,10 +135,11 @@ mutation edit(messageId: messages, body: text <=4000):
135
135
 
136
136
  ### Maintains
137
137
 
138
- `maintain counts: count messages by conversationId` (or `sum messages.x
139
- by ...`) keeps an aggregate table the engine writes: columns are the `by`
140
- columns and `value`, the id is the group's canonical key, programs read it
141
- by group (`counts[conversationId]`, `counts[.conversationId]` in a shape).
138
+ `maintain counts: count messages by conversationId` (or `maintain totals:
139
+ sum posts of score by authorId`) keeps an aggregate table the engine
140
+ writes: columns are the `by` columns and `value`, the id is the group's
141
+ canonical key, programs read it by group (`counts[conversationId]`,
142
+ `counts[.conversationId]` in a shape).
142
143
  It takes its own `read` rule and inherits the source's `sync` when it
143
144
  groups by the audience columns.
144
145
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snapback4",
3
- "version": "0.0.14",
3
+ "version": "0.0.16",
4
4
  "type": "module",
5
5
  "description": "Snapback 4: the card (contract), the online and local-first clients (IndexedDB, SQLite), React hooks, sign-in, a labelled mock, and the `snapback4` CLI. LLP 3000.",
6
6
  "bin": {
@@ -42,7 +42,7 @@
42
42
  "README.md"
43
43
  ],
44
44
  "optionalDependencies": {
45
- "snapback4-darwin-arm64": "0.0.14"
45
+ "snapback4-darwin-arm64": "0.0.16"
46
46
  },
47
47
  "scripts": {
48
48
  "build": "tsc -p tsconfig.build.json",