@dxos/echo-protocol 0.8.4-main.9be5663bfe → 0.8.4-main.abd8ff62ef

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/echo-protocol",
3
- "version": "0.8.4-main.9be5663bfe",
3
+ "version": "0.8.4-main.abd8ff62ef",
4
4
  "description": "Core ECHO APIs.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -20,20 +20,17 @@
20
20
  }
21
21
  },
22
22
  "types": "dist/types/src/index.d.ts",
23
- "typesVersions": {
24
- "*": {}
25
- },
26
23
  "files": [
27
24
  "dist",
28
25
  "src"
29
26
  ],
30
27
  "dependencies": {
31
28
  "effect": "3.20.0",
32
- "@dxos/crypto": "0.8.4-main.9be5663bfe",
33
- "@dxos/invariant": "0.8.4-main.9be5663bfe",
34
- "@dxos/keys": "0.8.4-main.9be5663bfe",
35
- "@dxos/protocols": "0.8.4-main.9be5663bfe",
36
- "@dxos/util": "0.8.4-main.9be5663bfe"
29
+ "@dxos/crypto": "0.8.4-main.abd8ff62ef",
30
+ "@dxos/keys": "0.8.4-main.abd8ff62ef",
31
+ "@dxos/invariant": "0.8.4-main.abd8ff62ef",
32
+ "@dxos/protocols": "0.8.4-main.abd8ff62ef",
33
+ "@dxos/util": "0.8.4-main.abd8ff62ef"
37
34
  },
38
35
  "publishConfig": {
39
36
  "access": "public"
package/src/query/ast.ts CHANGED
@@ -425,6 +425,11 @@ export const QueryOptions = Schema.Struct({
425
425
  * Nested select statements will use this option to filter deleted objects.
426
426
  */
427
427
  deleted: Schema.optional(Schema.Literal('include', 'exclude', 'only')),
428
+
429
+ /**
430
+ * Diagnostics-only label for logs / tooling (not used by execution semantics).
431
+ */
432
+ debugLabel: Schema.optional(Schema.String),
428
433
  });
429
434
 
430
435
  export interface QueryOptions extends Schema.Schema.Type<typeof QueryOptions> {}