@gonvex/protocol 0.1.29 → 0.1.31

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/dist/index.d.ts +5 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -287,6 +287,7 @@ export type ServerMessage = {
287
287
  cacheScope?: string;
288
288
  cacheRevision?: string;
289
289
  subscriptionRevision?: SubscriptionRevision;
290
+ mutationIds?: string[];
290
291
  } | {
291
292
  type: "query.progress";
292
293
  id: string;
@@ -294,6 +295,7 @@ export type ServerMessage = {
294
295
  reason?: "initial" | "invalidate" | "recover";
295
296
  throughRevision: SubscriptionRevision;
296
297
  trace?: MessageTrace;
298
+ mutationIds?: string[];
297
299
  } | {
298
300
  type: "query.patch";
299
301
  id: string;
@@ -310,6 +312,7 @@ export type ServerMessage = {
310
312
  cacheScope?: string;
311
313
  cacheRevision?: string;
312
314
  trace?: MessageTrace;
315
+ mutationIds?: string[];
313
316
  } | {
314
317
  type: "query.pagePatch";
315
318
  id: string;
@@ -327,6 +330,7 @@ export type ServerMessage = {
327
330
  cacheScope?: string;
328
331
  cacheRevision?: string;
329
332
  trace?: MessageTrace;
333
+ mutationIds?: string[];
330
334
  } | {
331
335
  type: "query.objectPatch";
332
336
  id: string;
@@ -338,6 +342,7 @@ export type ServerMessage = {
338
342
  cacheScope?: string;
339
343
  cacheRevision?: string;
340
344
  trace?: MessageTrace;
345
+ mutationIds?: string[];
341
346
  } | {
342
347
  type: "sync.snapshot";
343
348
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gonvex/protocol",
3
- "version": "0.1.29",
3
+ "version": "0.1.31",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"