@dxos/echo-pipeline 0.8.4-main.c85a9c8dae → 0.8.4-main.d05673bc65
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/dist/lib/neutral/{chunk-FJPXA75J.mjs → chunk-BU37PJWX.mjs} +1 -1
- package/dist/lib/neutral/{chunk-FJPXA75J.mjs.map → chunk-BU37PJWX.mjs.map} +1 -1
- package/dist/lib/neutral/filter/index.mjs +1 -1
- package/dist/lib/neutral/index.mjs +1 -1
- package/dist/lib/neutral/meta.json +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +37 -37
- package/src/db-host/automerge-data-source.test.ts +3 -3
- package/src/filter/filter-match.ts +5 -5
- package/src/query/query-planner.test.ts +57 -57
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/filter/filter-match.ts"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nimport { ATTR_META, type ObjectJSON } from '@dxos/echo/internal';\nimport { EncodedReference, ObjectStructure, type QueryAST, isEncodedReference } from '@dxos/echo-protocol';\nimport { DXN, type ObjectId, type SpaceId } from '@dxos/keys';\n\nexport type MatchedObject = {\n id: ObjectId;\n spaceId: SpaceId;\n doc: ObjectStructure;\n};\n\n/**\n * Matches an object against a filter AST.\n * @param obj object structure as stored in automerge.\n */\nexport const filterMatchObject = (filter: QueryAST.Filter, obj: MatchedObject): boolean => {\n switch (filter.type) {\n case 'object': {\n // Check typename if specified.\n if (filter.typename !== null) {\n // TODO(dmaretskyi): `system` is missing in some cases.\n if (!obj.doc.system?.type?.['/']) {\n // Objects with no type are deprecated.\n return false;\n } else {\n const actualDXN = DXN.parse(obj.doc.system.type['/']);\n const expectedDXN = DXN.parse(filter.typename);\n if (!compareTypename(expectedDXN, actualDXN)) {\n return false;\n }\n }\n }\n\n // Check IDs if specified.\n if (filter.id && filter.id.length > 0 && !filter.id.includes(obj.id)) {\n return false;\n }\n\n // Check properties.\n if (filter.props) {\n for (const [key, valueFilter] of Object.entries(filter.props)) {\n const value = obj.doc.data[key];\n if (!filterMatchValue(valueFilter, value)) {\n return false;\n }\n }\n }\n\n // Check foreign keys if specified.\n if (filter.foreignKeys && filter.foreignKeys.length > 0) {\n const hasMatchingKey = filter.foreignKeys.some((filterKey) =>\n obj.doc.meta.keys.some((objKey) => objKey.source === filterKey.source && objKey.id === filterKey.id),\n );\n if (!hasMatchingKey) {\n return false;\n }\n }\n\n return true;\n }\n\n case 'tag': {\n const tags = ObjectStructure.getTags(obj.doc);\n return tags.some((tag) => tag === filter.tag);\n }\n\n case 'text-search': {\n // TODO(???): Implement text search.\n return false;\n }\n\n case 'not': {\n return !filterMatchObject(filter.filter, obj);\n }\n\n case 'and': {\n return filter.filters.every((f) => filterMatchObject(f, obj));\n }\n\n case 'or': {\n return filter.filters.some((f) => filterMatchObject(f, obj));\n }\n\n default:\n return false;\n }\n};\n\n// TODO(burdon): Reconcile with filterMatchObject.\nexport const filterMatchObjectJSON = (filter: QueryAST.Filter, obj: ObjectJSON): boolean => {\n switch (filter.type) {\n case 'object': {\n // Check typename if specified\n if (filter.typename !== null) {\n // TODO(dmaretskyi): `system` is missing in some cases.\n if (!obj['@type']) {\n // Objects with no type are deprecated.\n return false;\n } else {\n const actualDXN = DXN.parse(obj['@type']);\n const expectedDXN = DXN.parse(filter.typename);\n if (!compareTypename(expectedDXN, actualDXN)) {\n return false;\n }\n }\n }\n\n // Check IDs if specified\n if (filter.id && filter.id.length > 0 && !filter.id.includes(obj.id)) {\n return false;\n }\n\n // Check properties\n if (filter.props) {\n for (const [key, valueFilter] of Object.entries(filter.props)) {\n if (key.startsWith('@')) {\n // ignore meta properties\n continue;\n }\n const value = (obj as any)[key];\n if (!filterMatchValue(valueFilter, value)) {\n return false;\n }\n }\n }\n\n // Check foreign keys if specified\n if (filter.foreignKeys && filter.foreignKeys.length > 0) {\n const hasMatchingKey = filter.foreignKeys.some((filterKey) =>\n obj['@meta']?.keys?.some((objKey) => objKey.source === filterKey.source && objKey.id === filterKey.id),\n );\n if (!hasMatchingKey) {\n return false;\n }\n }\n\n return true;\n }\n\n case 'tag': {\n const tags = obj[ATTR_META]?.tags ?? [];\n return tags.some((tag) => tag === filter.tag);\n }\n\n // TODO: Implement text search.\n case 'text-search': {\n return false;\n }\n\n case 'not': {\n return !filterMatchObjectJSON(filter.filter, obj);\n }\n\n case 'and': {\n return filter.filters.every((f) => filterMatchObjectJSON(f, obj));\n }\n\n case 'or': {\n return filter.filters.some((f) => filterMatchObjectJSON(f, obj));\n }\n\n default:\n return false;\n }\n};\n\n/**\n * Performs structural matching between a filter object and a target object.\n * This handles nested object comparison for array matching scenarios.\n */\n// TODO(wittjosiah): Add ast support for non-strict matching.\nconst structuralMatch = (filterObj: any, targetObj: any, strict = true): boolean => {\n if (typeof filterObj !== 'object' || filterObj === null) {\n return filterObj === targetObj;\n }\n\n if (typeof targetObj !== 'object' || targetObj === null) {\n return false;\n }\n\n // Prohibit extra keys in targetObj.\n const filterKeys = Object.keys(filterObj);\n const targetKeys = Object.keys(targetObj);\n if (strict && filterKeys.length !== targetKeys.length) {\n return false;\n }\n\n return filterKeys.every((key) => {\n if (!(key in targetObj)) {\n return false;\n }\n const filterValue = filterObj[key];\n const targetValue = targetObj[key];\n\n if (typeof filterValue === 'object' && filterValue !== null) {\n return structuralMatch(filterValue, targetValue);\n }\n\n return filterValue === targetValue;\n });\n};\n\nexport const filterMatchValue = (filter: QueryAST.Filter, value: unknown): boolean => {\n switch (filter.type) {\n case 'compare': {\n const compareValue = filter.value as any;\n switch (filter.operator) {\n case 'eq':\n if (isEncodedReference(compareValue)) {\n if (!isEncodedReference(value)) {\n return false;\n }\n return DXN.equals(EncodedReference.toDXN(value), EncodedReference.toDXN(compareValue));\n }\n return value === compareValue;\n case 'neq':\n return value !== compareValue;\n case 'gt':\n return (value as any) > compareValue;\n case 'gte':\n return (value as any) >= compareValue;\n case 'lt':\n return (value as any) < compareValue;\n case 'lte':\n return (value as any) <= compareValue;\n default:\n return false;\n }\n }\n case 'object': {\n // Handle nested object filters for property matching\n if (typeof value !== 'object' || value === null) {\n return false;\n }\n\n // Check properties\n if (filter.props) {\n for (const [key, valueFilter] of Object.entries(filter.props)) {\n const nestedValue = (value as any)[key];\n if (!filterMatchValue(valueFilter, nestedValue)) {\n return false;\n }\n }\n }\n\n return true;\n }\n case 'in': {\n return filter.values.includes(value);\n }\n case 'contains': {\n if (!Array.isArray(value)) {\n return false;\n }\n\n return value.some((element) => {\n if (typeof filter.value === 'object' && filter.value !== null && !Array.isArray(filter.value)) {\n return structuralMatch(filter.value, element);\n }\n\n return element === filter.value;\n });\n }\n case 'range': {\n return (value as any) >= filter.from && (value as any) <= filter.to;\n }\n case 'not': {\n return !filterMatchValue(filter.filter, value);\n }\n case 'and': {\n return filter.filters.every((f) => filterMatchValue(f, value));\n }\n case 'or': {\n return filter.filters.some((f) => filterMatchValue(f, value));\n }\n default:\n return false;\n }\n};\n\n/**\n * Compares typename DXNs.\n * @returns true if they match\n *\n * Compares typename string.\n * Missing version (on either actual or expected) matches any version.\n * non `type` DXNs are compared exactly.\n *\n * Examples: (expected) (actual)\n *\n * dxn:type:example.
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nimport { ATTR_META, type ObjectJSON } from '@dxos/echo/internal';\nimport { EncodedReference, ObjectStructure, type QueryAST, isEncodedReference } from '@dxos/echo-protocol';\nimport { DXN, type ObjectId, type SpaceId } from '@dxos/keys';\n\nexport type MatchedObject = {\n id: ObjectId;\n spaceId: SpaceId;\n doc: ObjectStructure;\n};\n\n/**\n * Matches an object against a filter AST.\n * @param obj object structure as stored in automerge.\n */\nexport const filterMatchObject = (filter: QueryAST.Filter, obj: MatchedObject): boolean => {\n switch (filter.type) {\n case 'object': {\n // Check typename if specified.\n if (filter.typename !== null) {\n // TODO(dmaretskyi): `system` is missing in some cases.\n if (!obj.doc.system?.type?.['/']) {\n // Objects with no type are deprecated.\n return false;\n } else {\n const actualDXN = DXN.parse(obj.doc.system.type['/']);\n const expectedDXN = DXN.parse(filter.typename);\n if (!compareTypename(expectedDXN, actualDXN)) {\n return false;\n }\n }\n }\n\n // Check IDs if specified.\n if (filter.id && filter.id.length > 0 && !filter.id.includes(obj.id)) {\n return false;\n }\n\n // Check properties.\n if (filter.props) {\n for (const [key, valueFilter] of Object.entries(filter.props)) {\n const value = obj.doc.data[key];\n if (!filterMatchValue(valueFilter, value)) {\n return false;\n }\n }\n }\n\n // Check foreign keys if specified.\n if (filter.foreignKeys && filter.foreignKeys.length > 0) {\n const hasMatchingKey = filter.foreignKeys.some((filterKey) =>\n obj.doc.meta.keys.some((objKey) => objKey.source === filterKey.source && objKey.id === filterKey.id),\n );\n if (!hasMatchingKey) {\n return false;\n }\n }\n\n return true;\n }\n\n case 'tag': {\n const tags = ObjectStructure.getTags(obj.doc);\n return tags.some((tag) => tag === filter.tag);\n }\n\n case 'text-search': {\n // TODO(???): Implement text search.\n return false;\n }\n\n case 'not': {\n return !filterMatchObject(filter.filter, obj);\n }\n\n case 'and': {\n return filter.filters.every((f) => filterMatchObject(f, obj));\n }\n\n case 'or': {\n return filter.filters.some((f) => filterMatchObject(f, obj));\n }\n\n default:\n return false;\n }\n};\n\n// TODO(burdon): Reconcile with filterMatchObject.\nexport const filterMatchObjectJSON = (filter: QueryAST.Filter, obj: ObjectJSON): boolean => {\n switch (filter.type) {\n case 'object': {\n // Check typename if specified\n if (filter.typename !== null) {\n // TODO(dmaretskyi): `system` is missing in some cases.\n if (!obj['@type']) {\n // Objects with no type are deprecated.\n return false;\n } else {\n const actualDXN = DXN.parse(obj['@type']);\n const expectedDXN = DXN.parse(filter.typename);\n if (!compareTypename(expectedDXN, actualDXN)) {\n return false;\n }\n }\n }\n\n // Check IDs if specified\n if (filter.id && filter.id.length > 0 && !filter.id.includes(obj.id)) {\n return false;\n }\n\n // Check properties\n if (filter.props) {\n for (const [key, valueFilter] of Object.entries(filter.props)) {\n if (key.startsWith('@')) {\n // ignore meta properties\n continue;\n }\n const value = (obj as any)[key];\n if (!filterMatchValue(valueFilter, value)) {\n return false;\n }\n }\n }\n\n // Check foreign keys if specified\n if (filter.foreignKeys && filter.foreignKeys.length > 0) {\n const hasMatchingKey = filter.foreignKeys.some((filterKey) =>\n obj['@meta']?.keys?.some((objKey) => objKey.source === filterKey.source && objKey.id === filterKey.id),\n );\n if (!hasMatchingKey) {\n return false;\n }\n }\n\n return true;\n }\n\n case 'tag': {\n const tags = obj[ATTR_META]?.tags ?? [];\n return tags.some((tag) => tag === filter.tag);\n }\n\n // TODO: Implement text search.\n case 'text-search': {\n return false;\n }\n\n case 'not': {\n return !filterMatchObjectJSON(filter.filter, obj);\n }\n\n case 'and': {\n return filter.filters.every((f) => filterMatchObjectJSON(f, obj));\n }\n\n case 'or': {\n return filter.filters.some((f) => filterMatchObjectJSON(f, obj));\n }\n\n default:\n return false;\n }\n};\n\n/**\n * Performs structural matching between a filter object and a target object.\n * This handles nested object comparison for array matching scenarios.\n */\n// TODO(wittjosiah): Add ast support for non-strict matching.\nconst structuralMatch = (filterObj: any, targetObj: any, strict = true): boolean => {\n if (typeof filterObj !== 'object' || filterObj === null) {\n return filterObj === targetObj;\n }\n\n if (typeof targetObj !== 'object' || targetObj === null) {\n return false;\n }\n\n // Prohibit extra keys in targetObj.\n const filterKeys = Object.keys(filterObj);\n const targetKeys = Object.keys(targetObj);\n if (strict && filterKeys.length !== targetKeys.length) {\n return false;\n }\n\n return filterKeys.every((key) => {\n if (!(key in targetObj)) {\n return false;\n }\n const filterValue = filterObj[key];\n const targetValue = targetObj[key];\n\n if (typeof filterValue === 'object' && filterValue !== null) {\n return structuralMatch(filterValue, targetValue);\n }\n\n return filterValue === targetValue;\n });\n};\n\nexport const filterMatchValue = (filter: QueryAST.Filter, value: unknown): boolean => {\n switch (filter.type) {\n case 'compare': {\n const compareValue = filter.value as any;\n switch (filter.operator) {\n case 'eq':\n if (isEncodedReference(compareValue)) {\n if (!isEncodedReference(value)) {\n return false;\n }\n return DXN.equals(EncodedReference.toDXN(value), EncodedReference.toDXN(compareValue));\n }\n return value === compareValue;\n case 'neq':\n return value !== compareValue;\n case 'gt':\n return (value as any) > compareValue;\n case 'gte':\n return (value as any) >= compareValue;\n case 'lt':\n return (value as any) < compareValue;\n case 'lte':\n return (value as any) <= compareValue;\n default:\n return false;\n }\n }\n case 'object': {\n // Handle nested object filters for property matching\n if (typeof value !== 'object' || value === null) {\n return false;\n }\n\n // Check properties\n if (filter.props) {\n for (const [key, valueFilter] of Object.entries(filter.props)) {\n const nestedValue = (value as any)[key];\n if (!filterMatchValue(valueFilter, nestedValue)) {\n return false;\n }\n }\n }\n\n return true;\n }\n case 'in': {\n return filter.values.includes(value);\n }\n case 'contains': {\n if (!Array.isArray(value)) {\n return false;\n }\n\n return value.some((element) => {\n if (typeof filter.value === 'object' && filter.value !== null && !Array.isArray(filter.value)) {\n return structuralMatch(filter.value, element);\n }\n\n return element === filter.value;\n });\n }\n case 'range': {\n return (value as any) >= filter.from && (value as any) <= filter.to;\n }\n case 'not': {\n return !filterMatchValue(filter.filter, value);\n }\n case 'and': {\n return filter.filters.every((f) => filterMatchValue(f, value));\n }\n case 'or': {\n return filter.filters.some((f) => filterMatchValue(f, value));\n }\n default:\n return false;\n }\n};\n\n/**\n * Compares typename DXNs.\n * @returns true if they match\n *\n * Compares typename string.\n * Missing version (on either actual or expected) matches any version.\n * non `type` DXNs are compared exactly.\n *\n * Examples: (expected) (actual)\n *\n * dxn:type:com.example.type.task !== dxn:type:com.example.type.contact\n * dxn:type:com.example.type.task === dxn:type:com.example.type.task\n * dxn:type:com.example.type.task:0.1.0 !== dxn:type:com.example.type.task:0.2.0\n * dxn:type:com.example.type.task === dxn:type:com.example.type.task:0.1.0\n * dxn:type:com.example.type.task:0.1.0 === dxn:type:com.example.type.task\n *\n */\nconst compareTypename = (expectedDXN: DXN, actualDXN: DXN): boolean => {\n const expectedTypeDXN = expectedDXN.asTypeDXN();\n if (expectedTypeDXN) {\n const actualTypeDXN = actualDXN.asTypeDXN();\n if (!actualTypeDXN) {\n return false;\n }\n if (\n actualTypeDXN.type !== expectedTypeDXN.type ||\n (expectedTypeDXN.version !== undefined &&\n actualTypeDXN.version !== undefined &&\n actualTypeDXN.version !== expectedTypeDXN.version)\n ) {\n return false;\n }\n } else {\n if (!DXN.equals(actualDXN, expectedDXN)) {\n return false;\n }\n }\n return true;\n};\n"],
|
|
5
5
|
"mappings": "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",
|
|
6
6
|
"names": ["ATTR_META", "EncodedReference", "ObjectStructure", "isEncodedReference", "DXN", "filterMatchObject", "filter", "obj", "type", "typename", "doc", "system", "actualDXN", "DXN", "parse", "expectedDXN", "compareTypename", "id", "length", "includes", "props", "key", "valueFilter", "Object", "entries", "value", "data", "filterMatchValue", "foreignKeys", "hasMatchingKey", "some", "filterKey", "meta", "keys", "objKey", "source", "tags", "ObjectStructure", "getTags", "tag", "filters", "every", "f", "filterMatchObjectJSON", "startsWith", "ATTR_META", "structuralMatch", "filterObj", "targetObj", "strict", "filterKeys", "targetKeys", "filterValue", "targetValue", "compareValue", "operator", "isEncodedReference", "equals", "EncodedReference", "toDXN", "nestedValue", "values", "Array", "isArray", "element", "from", "to", "expectedTypeDXN", "asTypeDXN", "actualTypeDXN", "version", "undefined"]
|
|
7
7
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"src/filter/filter-match.ts":{"bytes":32726,"imports":[{"path":"@dxos/echo/internal","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true}],"format":"esm"},"src/filter/index.ts":{"bytes":478,"imports":[{"path":"src/filter/filter-match.ts","kind":"import-statement","original":"./filter-match"}],"format":"esm"},"src/common/codec.ts":{"bytes":1651,"imports":[{"path":"@dxos/hypercore","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true}],"format":"esm"},"src/common/feeds.ts":{"bytes":2125,"imports":[{"path":"@dxos/invariant","kind":"import-statement","external":true}],"format":"esm"},"src/common/space-id.ts":{"bytes":3554,"imports":[{"path":"@dxos/crypto","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/common/index.ts":{"bytes":628,"imports":[{"path":"src/common/codec.ts","kind":"import-statement","original":"./codec"},{"path":"src/common/feeds.ts","kind":"import-statement","original":"./feeds"},{"path":"src/common/space-id.ts","kind":"import-statement","original":"./space-id"}],"format":"esm"},"src/db-host/automerge-data-source.ts":{"bytes":16027,"imports":[{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/echo/internal","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"src/common/index.ts","kind":"import-statement","original":"../common"}],"format":"esm"},"src/automerge/collection-synchronizer.ts":{"bytes":35970,"imports":[{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"effect/Array","kind":"import-statement","external":true},{"path":"effect/Record","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/automerge/network-protocol.ts":{"bytes":1910,"imports":[{"path":"@dxos/protocols","kind":"import-statement","external":true}],"format":"esm"},"src/automerge/echo-network-adapter.ts":{"bytes":40836,"imports":[{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/common/space-id.ts","kind":"import-statement","original":"../common/space-id"},{"path":"src/automerge/network-protocol.ts","kind":"import-statement","original":"./network-protocol"}],"format":"esm"},"src/automerge/heads-store.ts":{"bytes":7714,"imports":[{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true}],"format":"esm"},"src/automerge/leveldb-storage-adapter.ts":{"bytes":13528,"imports":[{"path":"@dxos/context","kind":"import-statement","external":true}],"format":"esm"},"src/automerge/automerge-host.ts":{"bytes":113033,"imports":[{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/automerge/collection-synchronizer.ts","kind":"import-statement","original":"./collection-synchronizer"},{"path":"src/automerge/echo-network-adapter.ts","kind":"import-statement","original":"./echo-network-adapter"},{"path":"src/automerge/heads-store.ts","kind":"import-statement","original":"./heads-store"},{"path":"src/automerge/leveldb-storage-adapter.ts","kind":"import-statement","original":"./leveldb-storage-adapter"}],"format":"esm"},"src/automerge/mesh-echo-replicator-connection.ts":{"bytes":18086,"imports":[{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-automerge-replicator","kind":"import-statement","external":true}],"format":"esm"},"src/automerge/space-collection.ts":{"bytes":2395,"imports":[{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true}],"format":"esm"},"src/automerge/mesh-echo-replicator.ts":{"bytes":26964,"imports":[{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/common/space-id.ts","kind":"import-statement","original":"../common/space-id"},{"path":"src/automerge/mesh-echo-replicator-connection.ts","kind":"import-statement","original":"./mesh-echo-replicator-connection"},{"path":"src/automerge/space-collection.ts","kind":"import-statement","original":"./space-collection"}],"format":"esm"},"src/automerge/echo-data-monitor.ts":{"bytes":46194,"imports":[{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/automerge/network-protocol.ts","kind":"import-statement","original":"./network-protocol"}],"format":"esm"},"src/automerge/index.ts":{"bytes":1228,"imports":[{"path":"src/automerge/automerge-host.ts","kind":"import-statement","original":"./automerge-host"},{"path":"src/automerge/leveldb-storage-adapter.ts","kind":"import-statement","original":"./leveldb-storage-adapter"},{"path":"src/automerge/mesh-echo-replicator.ts","kind":"import-statement","original":"./mesh-echo-replicator"},{"path":"src/automerge/collection-synchronizer.ts","kind":"import-statement","original":"./collection-synchronizer"},{"path":"src/automerge/space-collection.ts","kind":"import-statement","original":"./space-collection"},{"path":"src/automerge/echo-data-monitor.ts","kind":"import-statement","original":"./echo-data-monitor"}],"format":"esm"},"src/db-host/documents-synchronizer.ts":{"bytes":22159,"imports":[{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/db-host/data-service.ts":{"bytes":18460,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/codec-protobuf/stream","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"src/automerge/index.ts","kind":"import-statement","original":"../automerge"},{"path":"src/db-host/documents-synchronizer.ts","kind":"import-statement","original":"./documents-synchronizer"}],"format":"esm"},"src/db-host/local-queue-service.ts":{"bytes":14029,"imports":[{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/effect","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true}],"format":"esm"},"src/query/errors.ts":{"bytes":1065,"imports":[{"path":"@dxos/errors","kind":"import-statement","external":true}],"format":"esm"},"src/query/plan.ts":{"bytes":11027,"imports":[],"format":"esm"},"src/query/query-planner.ts":{"bytes":80124,"imports":[{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"src/query/errors.ts","kind":"import-statement","original":"./errors"},{"path":"src/query/plan.ts","kind":"import-statement","original":"./plan"}],"format":"esm"},"src/query/query-executor.ts":{"bytes":175471,"imports":[{"path":"effect/Runtime","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/echo/internal","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/effect","kind":"import-statement","external":true},{"path":"@dxos/index-core","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/filter/index.ts","kind":"import-statement","original":"../filter"},{"path":"src/query/query-planner.ts","kind":"import-statement","original":"./query-planner"}],"format":"esm"},"src/query/index.ts":{"bytes":784,"imports":[{"path":"src/query/query-executor.ts","kind":"import-statement","original":"./query-executor"},{"path":"src/query/query-planner.ts","kind":"import-statement","original":"./query-planner"},{"path":"src/query/plan.ts","kind":"import-statement","original":"./plan"},{"path":"src/filter/filter-match.ts","kind":"import-statement","original":"../filter/filter-match"}],"format":"esm"},"src/db-host/query-service.ts":{"bytes":19365,"imports":[{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/codec-protobuf/stream","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"src/query/index.ts","kind":"import-statement","original":"../query"}],"format":"esm"},"src/db-host/queue-data-source.ts":{"bytes":15293,"imports":[{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/effect","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true}],"format":"esm"},"src/db-host/automerge-metrics.ts":{"bytes":3465,"imports":[{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"src/db-host/database-root.ts":{"bytes":8887,"imports":[{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"src/db-host/automerge-metrics.ts","kind":"import-statement","original":"./automerge-metrics"}],"format":"esm"},"src/db-host/space-state-manager.ts":{"bytes":13460,"imports":[{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"fast-deep-equal","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"src/db-host/database-root.ts","kind":"import-statement","original":"./database-root"}],"format":"esm"},"src/db-host/echo-host.ts":{"bytes":43146,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/effect","kind":"import-statement","external":true},{"path":"@dxos/feed","kind":"import-statement","external":true},{"path":"@dxos/index-core","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"src/automerge/index.ts","kind":"import-statement","original":"../automerge"},{"path":"src/db-host/automerge-data-source.ts","kind":"import-statement","original":"./automerge-data-source"},{"path":"src/db-host/data-service.ts","kind":"import-statement","original":"./data-service"},{"path":"src/db-host/local-queue-service.ts","kind":"import-statement","original":"./local-queue-service"},{"path":"src/db-host/query-service.ts","kind":"import-statement","original":"./query-service"},{"path":"src/db-host/queue-data-source.ts","kind":"import-statement","original":"./queue-data-source"},{"path":"src/db-host/space-state-manager.ts","kind":"import-statement","original":"./space-state-manager"}],"format":"esm"},"src/db-host/index.ts":{"bytes":1136,"imports":[{"path":"src/db-host/automerge-data-source.ts","kind":"import-statement","original":"./automerge-data-source"},{"path":"src/db-host/data-service.ts","kind":"import-statement","original":"./data-service"},{"path":"src/db-host/documents-synchronizer.ts","kind":"import-statement","original":"./documents-synchronizer"},{"path":"src/db-host/echo-host.ts","kind":"import-statement","original":"./echo-host"},{"path":"src/db-host/database-root.ts","kind":"import-statement","original":"./database-root"},{"path":"src/db-host/query-service.ts","kind":"import-statement","original":"./query-service"},{"path":"src/db-host/space-state-manager.ts","kind":"import-statement","original":"./space-state-manager"}],"format":"esm"},"src/metadata/metadata-store.ts":{"bytes":42632,"imports":[{"path":"crc-32","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/metadata/index.ts":{"bytes":486,"imports":[{"path":"src/metadata/metadata-store.ts","kind":"import-statement","original":"./metadata-store"}],"format":"esm"},"src/pipeline/message-selector.ts":{"bytes":3772,"imports":[{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"src/pipeline/timeframe-clock.ts":{"bytes":9576,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/timeframe","kind":"import-statement","external":true}],"format":"esm"},"src/pipeline/pipeline.ts":{"bytes":47442,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/feed-store","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/timeframe","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/common/index.ts","kind":"import-statement","original":"../common"},{"path":"src/pipeline/message-selector.ts","kind":"import-statement","original":"./message-selector"},{"path":"src/pipeline/timeframe-clock.ts","kind":"import-statement","original":"./timeframe-clock"}],"format":"esm"},"src/pipeline/index.ts":{"bytes":662,"imports":[{"path":"src/pipeline/pipeline.ts","kind":"import-statement","original":"./pipeline"},{"path":"src/pipeline/timeframe-clock.ts","kind":"import-statement","original":"./timeframe-clock"}],"format":"esm"},"src/space/auth.ts":{"bytes":10433,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/crypto","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true},{"path":"@dxos/teleport","kind":"import-statement","external":true}],"format":"esm"},"src/space/control-pipeline.ts":{"bytes":31225,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"import-statement","external":true},{"path":"@dxos/timeframe","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/pipeline/index.ts","kind":"import-statement","original":"../pipeline"}],"format":"esm"},"src/space/space.ts":{"bytes":22294,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/space/control-pipeline.ts","kind":"import-statement","original":"./control-pipeline"}],"format":"esm"},"src/space/admission-discovery-extension.ts":{"bytes":8897,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true},{"path":"@dxos/teleport","kind":"import-statement","external":true}],"format":"esm"},"src/space/space-protocol.ts":{"bytes":28654,"imports":[{"path":"@dxos/crypto","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"@dxos/teleport","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-object-sync","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-replicator","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/space/auth.ts","kind":"import-statement","original":"./auth"}],"format":"esm"},"src/space/space-manager.ts":{"bytes":22131,"imports":[{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/common/space-id.ts","kind":"import-statement","original":"../common/space-id"},{"path":"src/space/admission-discovery-extension.ts","kind":"import-statement","original":"./admission-discovery-extension"},{"path":"src/space/space.ts","kind":"import-statement","original":"./space"},{"path":"src/space/space-protocol.ts","kind":"import-statement","original":"./space-protocol"}],"format":"esm"},"src/space/index.ts":{"bytes":886,"imports":[{"path":"src/space/auth.ts","kind":"import-statement","original":"./auth"},{"path":"src/space/space.ts","kind":"import-statement","original":"./space"},{"path":"src/space/space-manager.ts","kind":"import-statement","original":"./space-manager"},{"path":"src/space/space-protocol.ts","kind":"import-statement","original":"./space-protocol"},{"path":"src/space/admission-discovery-extension.ts","kind":"import-statement","original":"./admission-discovery-extension"}],"format":"esm"},"src/edge/inflight-request-limiter.ts":{"bytes":7582,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"src/edge/echo-edge-replicator.ts":{"bytes":57015,"imports":[{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/crypto","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/protocols/buf","kind":"import-statement","external":true},{"path":"@dxos/protocols/buf/dxos/edge/messenger_pb","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/automerge/index.ts","kind":"import-statement","original":"../automerge"},{"path":"src/edge/inflight-request-limiter.ts","kind":"import-statement","original":"./inflight-request-limiter"}],"format":"esm"},"src/edge/index.ts":{"bytes":496,"imports":[{"path":"src/edge/echo-edge-replicator.ts","kind":"import-statement","original":"./echo-edge-replicator"}],"format":"esm"},"src/util.ts":{"bytes":2732,"imports":[{"path":"@dxos/echo-protocol","kind":"import-statement","external":true}],"format":"esm"},"src/index.ts":{"bytes":1127,"imports":[{"path":"src/common/index.ts","kind":"import-statement","original":"./common"},{"path":"src/db-host/index.ts","kind":"import-statement","original":"./db-host"},{"path":"src/metadata/index.ts","kind":"import-statement","original":"./metadata"},{"path":"src/pipeline/index.ts","kind":"import-statement","original":"./pipeline"},{"path":"src/space/index.ts","kind":"import-statement","original":"./space"},{"path":"src/automerge/index.ts","kind":"import-statement","original":"./automerge"},{"path":"src/edge/index.ts","kind":"import-statement","original":"./edge"},{"path":"src/util.ts","kind":"import-statement","original":"./util"},{"path":"src/query/index.ts","kind":"import-statement","original":"./query"}],"format":"esm"},"src/testing/change-metadata.ts":{"bytes":3558,"imports":[{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true},{"path":"src/metadata/index.ts","kind":"import-statement","original":"../metadata"}],"format":"esm"},"src/testing/test-feed-builder.ts":{"bytes":1441,"imports":[{"path":"@dxos/feed-store/testing","kind":"import-statement","external":true},{"path":"src/common/index.ts","kind":"import-statement","original":"../common"}],"format":"esm"},"src/testing/test-agent-builder.ts":{"bytes":29636,"imports":[{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/messaging","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"import-statement","external":true},{"path":"@dxos/random-access-storage","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-gossip","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-object-sync","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/metadata/index.ts","kind":"import-statement","original":"../metadata"},{"path":"src/space/index.ts","kind":"import-statement","original":"../space"},{"path":"src/testing/test-feed-builder.ts","kind":"import-statement","original":"./test-feed-builder"}],"format":"esm"},"src/testing/test-network-adapter.ts":{"bytes":8194,"imports":[{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"src/testing/test-replicator.ts":{"bytes":22835,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-automerge-replicator","kind":"import-statement","external":true}],"format":"esm"},"src/testing/index.ts":{"bytes":940,"imports":[{"path":"src/testing/change-metadata.ts","kind":"import-statement","original":"./change-metadata"},{"path":"src/testing/test-agent-builder.ts","kind":"import-statement","original":"./test-agent-builder"},{"path":"src/testing/test-feed-builder.ts","kind":"import-statement","original":"./test-feed-builder"},{"path":"src/testing/test-network-adapter.ts","kind":"import-statement","original":"./test-network-adapter"},{"path":"src/testing/test-replicator.ts","kind":"import-statement","original":"./test-replicator"}],"format":"esm"}},"outputs":{"dist/lib/neutral/filter/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"dist/lib/neutral/filter/index.mjs":{"imports":[{"path":"dist/lib/neutral/chunk-FJPXA75J.mjs","kind":"import-statement"}],"exports":["filterMatchObject","filterMatchObjectJSON","filterMatchValue"],"entryPoint":"src/filter/index.ts","inputs":{},"bytes":251},"dist/lib/neutral/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":395805},"dist/lib/neutral/index.mjs":{"imports":[{"path":"dist/lib/neutral/chunk-FJPXA75J.mjs","kind":"import-statement"},{"path":"dist/lib/neutral/chunk-FE3UY2NU.mjs","kind":"import-statement"},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/echo/internal","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/codec-protobuf/stream","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"effect/Array","kind":"import-statement","external":true},{"path":"effect/Record","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-automerge-replicator","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/effect","kind":"import-statement","external":true},{"path":"@dxos/feed","kind":"import-statement","external":true},{"path":"@dxos/index-core","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/effect","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/codec-protobuf/stream","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"effect/Runtime","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/echo/internal","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/effect","kind":"import-statement","external":true},{"path":"@dxos/index-core","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/errors","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/effect","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"fast-deep-equal","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/crypto","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/protocols/buf","kind":"import-statement","external":true},{"path":"@dxos/protocols/buf/dxos/edge/messenger_pb","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true}],"exports":["AuthExtension","AuthStatus","AutomergeDataSource","AutomergeHost","CredentialRetrieverExtension","CredentialServerExtension","DataServiceImpl","DatabaseRoot","DocumentsSynchronizer","EchoDataMonitor","EchoEdgeReplicator","EchoHost","ExecutionTrace","FIND_PARAMS","LevelDBStorageAdapter","MOCK_AUTH_PROVIDER","MOCK_AUTH_VERIFIER","MeshEchoReplicator","MetadataStore","Pipeline","QueryExecutor","QueryPlan","QueryPlanner","QueryServiceImpl","Space","SpaceDocumentListUpdatedEvent","SpaceManager","SpaceProtocol","SpaceProtocolSession","SpaceStateManager","TimeframeClock","codec","createIdFromSpaceKey","createMappedFeedWriter","deriveCollectionIdFromSpaceId","diffCollectionState","encodingOptions","filterMatchObject","filterMatchObjectJSON","filterMatchValue","findInlineObjectOfType","getSpaceIdFromCollectionId","hasInvitationExpired","headsCodec","mapFeedIndexesToTimeframe","mapTimeframeToFeedIndexes","startAfter","valueEncoding"],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":0},"src/db-host/automerge-data-source.ts":{"bytesInOutput":3562},"src/db-host/data-service.ts":{"bytesInOutput":4461},"src/automerge/automerge-host.ts":{"bytesInOutput":29582},"src/automerge/collection-synchronizer.ts":{"bytesInOutput":10056},"src/automerge/echo-network-adapter.ts":{"bytesInOutput":11171},"src/automerge/network-protocol.ts":{"bytesInOutput":280},"src/automerge/heads-store.ts":{"bytesInOutput":1704},"src/automerge/leveldb-storage-adapter.ts":{"bytesInOutput":2744},"src/automerge/index.ts":{"bytesInOutput":0},"src/automerge/mesh-echo-replicator.ts":{"bytesInOutput":7677},"src/automerge/mesh-echo-replicator-connection.ts":{"bytesInOutput":4440},"src/automerge/space-collection.ts":{"bytesInOutput":624},"src/automerge/echo-data-monitor.ts":{"bytesInOutput":11386},"src/db-host/documents-synchronizer.ts":{"bytesInOutput":5810},"src/db-host/echo-host.ts":{"bytesInOutput":10380},"src/db-host/local-queue-service.ts":{"bytesInOutput":3279},"src/db-host/query-service.ts":{"bytesInOutput":5226},"src/query/query-executor.ts":{"bytesInOutput":43327},"src/query/query-planner.ts":{"bytesInOutput":20226},"src/query/errors.ts":{"bytesInOutput":191},"src/query/plan.ts":{"bytesInOutput":626},"src/db-host/queue-data-source.ts":{"bytesInOutput":3365},"src/db-host/space-state-manager.ts":{"bytesInOutput":3522},"src/db-host/database-root.ts":{"bytesInOutput":2128},"src/db-host/automerge-metrics.ts":{"bytesInOutput":864},"src/edge/echo-edge-replicator.ts":{"bytesInOutput":16600},"src/edge/inflight-request-limiter.ts":{"bytesInOutput":2039},"src/util.ts":{"bytesInOutput":572}},"bytes":208833},"dist/lib/neutral/chunk-FJPXA75J.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":15648},"dist/lib/neutral/chunk-FJPXA75J.mjs":{"imports":[{"path":"@dxos/echo/internal","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true}],"exports":["filterMatchObject","filterMatchObjectJSON","filterMatchValue"],"inputs":{"src/filter/filter-match.ts":{"bytesInOutput":6860},"src/filter/index.ts":{"bytesInOutput":0}},"bytes":7046},"dist/lib/neutral/testing/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":32520},"dist/lib/neutral/testing/index.mjs":{"imports":[{"path":"dist/lib/neutral/chunk-FE3UY2NU.mjs","kind":"import-statement"},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/messaging","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"import-statement","external":true},{"path":"@dxos/random-access-storage","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-gossip","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-object-sync","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/feed-store/testing","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-automerge-replicator","kind":"import-statement","external":true}],"exports":["MemoryNetworkManagerProvider","TestAdapter","TestAgent","TestAgentBuilder","TestFeedBuilder","TestReplicationNetwork","TestReplicator","TestReplicatorConnection","WebsocketNetworkManagerProvider","brokenAutomergeReplicatorFactory","changeStorageVersionInMetadata","testAutomergeReplicatorFactory"],"entryPoint":"src/testing/index.ts","inputs":{"src/testing/change-metadata.ts":{"bytesInOutput":831},"src/testing/index.ts":{"bytesInOutput":0},"src/testing/test-agent-builder.ts":{"bytesInOutput":7016},"src/testing/test-feed-builder.ts":{"bytesInOutput":171},"src/testing/test-network-adapter.ts":{"bytesInOutput":2323},"src/testing/test-replicator.ts":{"bytesInOutput":6566}},"bytes":17670},"dist/lib/neutral/chunk-FE3UY2NU.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":111955},"dist/lib/neutral/chunk-FE3UY2NU.mjs":{"imports":[{"path":"@dxos/hypercore","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/crypto","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"crc-32","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/timeframe","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/feed-store","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/timeframe","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/crypto","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true},{"path":"@dxos/teleport","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"import-statement","external":true},{"path":"@dxos/timeframe","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true},{"path":"@dxos/teleport","kind":"import-statement","external":true},{"path":"@dxos/crypto","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"@dxos/teleport","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-object-sync","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-replicator","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"exports":["AuthExtension","AuthStatus","CredentialRetrieverExtension","CredentialServerExtension","MOCK_AUTH_PROVIDER","MOCK_AUTH_VERIFIER","MetadataStore","Pipeline","Space","SpaceManager","SpaceProtocol","SpaceProtocolSession","TimeframeClock","codec","createIdFromSpaceKey","createMappedFeedWriter","hasInvitationExpired","mapFeedIndexesToTimeframe","mapTimeframeToFeedIndexes","startAfter","valueEncoding"],"inputs":{"src/common/codec.ts":{"bytesInOutput":217},"src/common/feeds.ts":{"bytesInOutput":535},"src/common/space-id.ts":{"bytesInOutput":604},"src/metadata/metadata-store.ts":{"bytesInOutput":11515},"src/pipeline/timeframe-clock.ts":{"bytesInOutput":2912},"src/pipeline/pipeline.ts":{"bytesInOutput":13122},"src/pipeline/message-selector.ts":{"bytesInOutput":756},"src/pipeline/index.ts":{"bytesInOutput":0},"src/space/auth.ts":{"bytesInOutput":3011},"src/space/space.ts":{"bytesInOutput":6527},"src/space/control-pipeline.ts":{"bytesInOutput":8914},"src/space/admission-discovery-extension.ts":{"bytesInOutput":2126},"src/space/space-protocol.ts":{"bytesInOutput":7529},"src/space/space-manager.ts":{"bytesInOutput":5942}},"bytes":64673}}}
|
|
1
|
+
{"inputs":{"src/filter/filter-match.ts":{"bytes":32726,"imports":[{"path":"@dxos/echo/internal","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true}],"format":"esm"},"src/filter/index.ts":{"bytes":478,"imports":[{"path":"src/filter/filter-match.ts","kind":"import-statement","original":"./filter-match"}],"format":"esm"},"src/common/codec.ts":{"bytes":1651,"imports":[{"path":"@dxos/hypercore","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true}],"format":"esm"},"src/common/feeds.ts":{"bytes":2125,"imports":[{"path":"@dxos/invariant","kind":"import-statement","external":true}],"format":"esm"},"src/common/space-id.ts":{"bytes":3554,"imports":[{"path":"@dxos/crypto","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/common/index.ts":{"bytes":628,"imports":[{"path":"src/common/codec.ts","kind":"import-statement","original":"./codec"},{"path":"src/common/feeds.ts","kind":"import-statement","original":"./feeds"},{"path":"src/common/space-id.ts","kind":"import-statement","original":"./space-id"}],"format":"esm"},"src/db-host/automerge-data-source.ts":{"bytes":16027,"imports":[{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/echo/internal","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"src/common/index.ts","kind":"import-statement","original":"../common"}],"format":"esm"},"src/automerge/collection-synchronizer.ts":{"bytes":35970,"imports":[{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"effect/Array","kind":"import-statement","external":true},{"path":"effect/Record","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/automerge/network-protocol.ts":{"bytes":1910,"imports":[{"path":"@dxos/protocols","kind":"import-statement","external":true}],"format":"esm"},"src/automerge/echo-network-adapter.ts":{"bytes":40836,"imports":[{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/common/space-id.ts","kind":"import-statement","original":"../common/space-id"},{"path":"src/automerge/network-protocol.ts","kind":"import-statement","original":"./network-protocol"}],"format":"esm"},"src/automerge/heads-store.ts":{"bytes":7714,"imports":[{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true}],"format":"esm"},"src/automerge/leveldb-storage-adapter.ts":{"bytes":13528,"imports":[{"path":"@dxos/context","kind":"import-statement","external":true}],"format":"esm"},"src/automerge/automerge-host.ts":{"bytes":113033,"imports":[{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/automerge/collection-synchronizer.ts","kind":"import-statement","original":"./collection-synchronizer"},{"path":"src/automerge/echo-network-adapter.ts","kind":"import-statement","original":"./echo-network-adapter"},{"path":"src/automerge/heads-store.ts","kind":"import-statement","original":"./heads-store"},{"path":"src/automerge/leveldb-storage-adapter.ts","kind":"import-statement","original":"./leveldb-storage-adapter"}],"format":"esm"},"src/automerge/mesh-echo-replicator-connection.ts":{"bytes":18086,"imports":[{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-automerge-replicator","kind":"import-statement","external":true}],"format":"esm"},"src/automerge/space-collection.ts":{"bytes":2395,"imports":[{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true}],"format":"esm"},"src/automerge/mesh-echo-replicator.ts":{"bytes":26964,"imports":[{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/common/space-id.ts","kind":"import-statement","original":"../common/space-id"},{"path":"src/automerge/mesh-echo-replicator-connection.ts","kind":"import-statement","original":"./mesh-echo-replicator-connection"},{"path":"src/automerge/space-collection.ts","kind":"import-statement","original":"./space-collection"}],"format":"esm"},"src/automerge/echo-data-monitor.ts":{"bytes":46194,"imports":[{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/automerge/network-protocol.ts","kind":"import-statement","original":"./network-protocol"}],"format":"esm"},"src/automerge/index.ts":{"bytes":1228,"imports":[{"path":"src/automerge/automerge-host.ts","kind":"import-statement","original":"./automerge-host"},{"path":"src/automerge/leveldb-storage-adapter.ts","kind":"import-statement","original":"./leveldb-storage-adapter"},{"path":"src/automerge/mesh-echo-replicator.ts","kind":"import-statement","original":"./mesh-echo-replicator"},{"path":"src/automerge/collection-synchronizer.ts","kind":"import-statement","original":"./collection-synchronizer"},{"path":"src/automerge/space-collection.ts","kind":"import-statement","original":"./space-collection"},{"path":"src/automerge/echo-data-monitor.ts","kind":"import-statement","original":"./echo-data-monitor"}],"format":"esm"},"src/db-host/documents-synchronizer.ts":{"bytes":22159,"imports":[{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/db-host/data-service.ts":{"bytes":18460,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/codec-protobuf/stream","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"src/automerge/index.ts","kind":"import-statement","original":"../automerge"},{"path":"src/db-host/documents-synchronizer.ts","kind":"import-statement","original":"./documents-synchronizer"}],"format":"esm"},"src/db-host/local-queue-service.ts":{"bytes":14029,"imports":[{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/effect","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true}],"format":"esm"},"src/query/errors.ts":{"bytes":1065,"imports":[{"path":"@dxos/errors","kind":"import-statement","external":true}],"format":"esm"},"src/query/plan.ts":{"bytes":11027,"imports":[],"format":"esm"},"src/query/query-planner.ts":{"bytes":80124,"imports":[{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"src/query/errors.ts","kind":"import-statement","original":"./errors"},{"path":"src/query/plan.ts","kind":"import-statement","original":"./plan"}],"format":"esm"},"src/query/query-executor.ts":{"bytes":175471,"imports":[{"path":"effect/Runtime","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/echo/internal","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/effect","kind":"import-statement","external":true},{"path":"@dxos/index-core","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/filter/index.ts","kind":"import-statement","original":"../filter"},{"path":"src/query/query-planner.ts","kind":"import-statement","original":"./query-planner"}],"format":"esm"},"src/query/index.ts":{"bytes":784,"imports":[{"path":"src/query/query-executor.ts","kind":"import-statement","original":"./query-executor"},{"path":"src/query/query-planner.ts","kind":"import-statement","original":"./query-planner"},{"path":"src/query/plan.ts","kind":"import-statement","original":"./plan"},{"path":"src/filter/filter-match.ts","kind":"import-statement","original":"../filter/filter-match"}],"format":"esm"},"src/db-host/query-service.ts":{"bytes":19365,"imports":[{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/codec-protobuf/stream","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"src/query/index.ts","kind":"import-statement","original":"../query"}],"format":"esm"},"src/db-host/queue-data-source.ts":{"bytes":15293,"imports":[{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/effect","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true}],"format":"esm"},"src/db-host/automerge-metrics.ts":{"bytes":3465,"imports":[{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"src/db-host/database-root.ts":{"bytes":8887,"imports":[{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"src/db-host/automerge-metrics.ts","kind":"import-statement","original":"./automerge-metrics"}],"format":"esm"},"src/db-host/space-state-manager.ts":{"bytes":13460,"imports":[{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"fast-deep-equal","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"src/db-host/database-root.ts","kind":"import-statement","original":"./database-root"}],"format":"esm"},"src/db-host/echo-host.ts":{"bytes":43146,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/effect","kind":"import-statement","external":true},{"path":"@dxos/feed","kind":"import-statement","external":true},{"path":"@dxos/index-core","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"src/automerge/index.ts","kind":"import-statement","original":"../automerge"},{"path":"src/db-host/automerge-data-source.ts","kind":"import-statement","original":"./automerge-data-source"},{"path":"src/db-host/data-service.ts","kind":"import-statement","original":"./data-service"},{"path":"src/db-host/local-queue-service.ts","kind":"import-statement","original":"./local-queue-service"},{"path":"src/db-host/query-service.ts","kind":"import-statement","original":"./query-service"},{"path":"src/db-host/queue-data-source.ts","kind":"import-statement","original":"./queue-data-source"},{"path":"src/db-host/space-state-manager.ts","kind":"import-statement","original":"./space-state-manager"}],"format":"esm"},"src/db-host/index.ts":{"bytes":1136,"imports":[{"path":"src/db-host/automerge-data-source.ts","kind":"import-statement","original":"./automerge-data-source"},{"path":"src/db-host/data-service.ts","kind":"import-statement","original":"./data-service"},{"path":"src/db-host/documents-synchronizer.ts","kind":"import-statement","original":"./documents-synchronizer"},{"path":"src/db-host/echo-host.ts","kind":"import-statement","original":"./echo-host"},{"path":"src/db-host/database-root.ts","kind":"import-statement","original":"./database-root"},{"path":"src/db-host/query-service.ts","kind":"import-statement","original":"./query-service"},{"path":"src/db-host/space-state-manager.ts","kind":"import-statement","original":"./space-state-manager"}],"format":"esm"},"src/metadata/metadata-store.ts":{"bytes":42632,"imports":[{"path":"crc-32","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/metadata/index.ts":{"bytes":486,"imports":[{"path":"src/metadata/metadata-store.ts","kind":"import-statement","original":"./metadata-store"}],"format":"esm"},"src/pipeline/message-selector.ts":{"bytes":3772,"imports":[{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"src/pipeline/timeframe-clock.ts":{"bytes":9576,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/timeframe","kind":"import-statement","external":true}],"format":"esm"},"src/pipeline/pipeline.ts":{"bytes":47442,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/feed-store","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/timeframe","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/common/index.ts","kind":"import-statement","original":"../common"},{"path":"src/pipeline/message-selector.ts","kind":"import-statement","original":"./message-selector"},{"path":"src/pipeline/timeframe-clock.ts","kind":"import-statement","original":"./timeframe-clock"}],"format":"esm"},"src/pipeline/index.ts":{"bytes":662,"imports":[{"path":"src/pipeline/pipeline.ts","kind":"import-statement","original":"./pipeline"},{"path":"src/pipeline/timeframe-clock.ts","kind":"import-statement","original":"./timeframe-clock"}],"format":"esm"},"src/space/auth.ts":{"bytes":10433,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/crypto","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true},{"path":"@dxos/teleport","kind":"import-statement","external":true}],"format":"esm"},"src/space/control-pipeline.ts":{"bytes":31225,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"import-statement","external":true},{"path":"@dxos/timeframe","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/pipeline/index.ts","kind":"import-statement","original":"../pipeline"}],"format":"esm"},"src/space/space.ts":{"bytes":22294,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/space/control-pipeline.ts","kind":"import-statement","original":"./control-pipeline"}],"format":"esm"},"src/space/admission-discovery-extension.ts":{"bytes":8897,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true},{"path":"@dxos/teleport","kind":"import-statement","external":true}],"format":"esm"},"src/space/space-protocol.ts":{"bytes":28654,"imports":[{"path":"@dxos/crypto","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"@dxos/teleport","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-object-sync","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-replicator","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/space/auth.ts","kind":"import-statement","original":"./auth"}],"format":"esm"},"src/space/space-manager.ts":{"bytes":22131,"imports":[{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/common/space-id.ts","kind":"import-statement","original":"../common/space-id"},{"path":"src/space/admission-discovery-extension.ts","kind":"import-statement","original":"./admission-discovery-extension"},{"path":"src/space/space.ts","kind":"import-statement","original":"./space"},{"path":"src/space/space-protocol.ts","kind":"import-statement","original":"./space-protocol"}],"format":"esm"},"src/space/index.ts":{"bytes":886,"imports":[{"path":"src/space/auth.ts","kind":"import-statement","original":"./auth"},{"path":"src/space/space.ts","kind":"import-statement","original":"./space"},{"path":"src/space/space-manager.ts","kind":"import-statement","original":"./space-manager"},{"path":"src/space/space-protocol.ts","kind":"import-statement","original":"./space-protocol"},{"path":"src/space/admission-discovery-extension.ts","kind":"import-statement","original":"./admission-discovery-extension"}],"format":"esm"},"src/edge/inflight-request-limiter.ts":{"bytes":7582,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"src/edge/echo-edge-replicator.ts":{"bytes":57015,"imports":[{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/crypto","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/protocols/buf","kind":"import-statement","external":true},{"path":"@dxos/protocols/buf/dxos/edge/messenger_pb","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/automerge/index.ts","kind":"import-statement","original":"../automerge"},{"path":"src/edge/inflight-request-limiter.ts","kind":"import-statement","original":"./inflight-request-limiter"}],"format":"esm"},"src/edge/index.ts":{"bytes":496,"imports":[{"path":"src/edge/echo-edge-replicator.ts","kind":"import-statement","original":"./echo-edge-replicator"}],"format":"esm"},"src/util.ts":{"bytes":2732,"imports":[{"path":"@dxos/echo-protocol","kind":"import-statement","external":true}],"format":"esm"},"src/index.ts":{"bytes":1127,"imports":[{"path":"src/common/index.ts","kind":"import-statement","original":"./common"},{"path":"src/db-host/index.ts","kind":"import-statement","original":"./db-host"},{"path":"src/metadata/index.ts","kind":"import-statement","original":"./metadata"},{"path":"src/pipeline/index.ts","kind":"import-statement","original":"./pipeline"},{"path":"src/space/index.ts","kind":"import-statement","original":"./space"},{"path":"src/automerge/index.ts","kind":"import-statement","original":"./automerge"},{"path":"src/edge/index.ts","kind":"import-statement","original":"./edge"},{"path":"src/util.ts","kind":"import-statement","original":"./util"},{"path":"src/query/index.ts","kind":"import-statement","original":"./query"}],"format":"esm"},"src/testing/change-metadata.ts":{"bytes":3558,"imports":[{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true},{"path":"src/metadata/index.ts","kind":"import-statement","original":"../metadata"}],"format":"esm"},"src/testing/test-feed-builder.ts":{"bytes":1441,"imports":[{"path":"@dxos/feed-store/testing","kind":"import-statement","external":true},{"path":"src/common/index.ts","kind":"import-statement","original":"../common"}],"format":"esm"},"src/testing/test-agent-builder.ts":{"bytes":29636,"imports":[{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/messaging","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"import-statement","external":true},{"path":"@dxos/random-access-storage","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-gossip","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-object-sync","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/metadata/index.ts","kind":"import-statement","original":"../metadata"},{"path":"src/space/index.ts","kind":"import-statement","original":"../space"},{"path":"src/testing/test-feed-builder.ts","kind":"import-statement","original":"./test-feed-builder"}],"format":"esm"},"src/testing/test-network-adapter.ts":{"bytes":8194,"imports":[{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"src/testing/test-replicator.ts":{"bytes":22835,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-automerge-replicator","kind":"import-statement","external":true}],"format":"esm"},"src/testing/index.ts":{"bytes":940,"imports":[{"path":"src/testing/change-metadata.ts","kind":"import-statement","original":"./change-metadata"},{"path":"src/testing/test-agent-builder.ts","kind":"import-statement","original":"./test-agent-builder"},{"path":"src/testing/test-feed-builder.ts","kind":"import-statement","original":"./test-feed-builder"},{"path":"src/testing/test-network-adapter.ts","kind":"import-statement","original":"./test-network-adapter"},{"path":"src/testing/test-replicator.ts","kind":"import-statement","original":"./test-replicator"}],"format":"esm"}},"outputs":{"dist/lib/neutral/filter/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"dist/lib/neutral/filter/index.mjs":{"imports":[{"path":"dist/lib/neutral/chunk-BU37PJWX.mjs","kind":"import-statement"}],"exports":["filterMatchObject","filterMatchObjectJSON","filterMatchValue"],"entryPoint":"src/filter/index.ts","inputs":{},"bytes":251},"dist/lib/neutral/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":395805},"dist/lib/neutral/index.mjs":{"imports":[{"path":"dist/lib/neutral/chunk-BU37PJWX.mjs","kind":"import-statement"},{"path":"dist/lib/neutral/chunk-FE3UY2NU.mjs","kind":"import-statement"},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/echo/internal","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/codec-protobuf/stream","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"effect/Array","kind":"import-statement","external":true},{"path":"effect/Record","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-automerge-replicator","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/effect","kind":"import-statement","external":true},{"path":"@dxos/feed","kind":"import-statement","external":true},{"path":"@dxos/index-core","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/effect","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/codec-protobuf/stream","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"effect/Runtime","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/echo/internal","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/effect","kind":"import-statement","external":true},{"path":"@dxos/index-core","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/errors","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/effect","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"fast-deep-equal","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@automerge/automerge","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/crypto","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/protocols/buf","kind":"import-statement","external":true},{"path":"@dxos/protocols/buf/dxos/edge/messenger_pb","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true}],"exports":["AuthExtension","AuthStatus","AutomergeDataSource","AutomergeHost","CredentialRetrieverExtension","CredentialServerExtension","DataServiceImpl","DatabaseRoot","DocumentsSynchronizer","EchoDataMonitor","EchoEdgeReplicator","EchoHost","ExecutionTrace","FIND_PARAMS","LevelDBStorageAdapter","MOCK_AUTH_PROVIDER","MOCK_AUTH_VERIFIER","MeshEchoReplicator","MetadataStore","Pipeline","QueryExecutor","QueryPlan","QueryPlanner","QueryServiceImpl","Space","SpaceDocumentListUpdatedEvent","SpaceManager","SpaceProtocol","SpaceProtocolSession","SpaceStateManager","TimeframeClock","codec","createIdFromSpaceKey","createMappedFeedWriter","deriveCollectionIdFromSpaceId","diffCollectionState","encodingOptions","filterMatchObject","filterMatchObjectJSON","filterMatchValue","findInlineObjectOfType","getSpaceIdFromCollectionId","hasInvitationExpired","headsCodec","mapFeedIndexesToTimeframe","mapTimeframeToFeedIndexes","startAfter","valueEncoding"],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":0},"src/db-host/automerge-data-source.ts":{"bytesInOutput":3562},"src/db-host/data-service.ts":{"bytesInOutput":4461},"src/automerge/automerge-host.ts":{"bytesInOutput":29582},"src/automerge/collection-synchronizer.ts":{"bytesInOutput":10056},"src/automerge/echo-network-adapter.ts":{"bytesInOutput":11171},"src/automerge/network-protocol.ts":{"bytesInOutput":280},"src/automerge/heads-store.ts":{"bytesInOutput":1704},"src/automerge/leveldb-storage-adapter.ts":{"bytesInOutput":2744},"src/automerge/index.ts":{"bytesInOutput":0},"src/automerge/mesh-echo-replicator.ts":{"bytesInOutput":7677},"src/automerge/mesh-echo-replicator-connection.ts":{"bytesInOutput":4440},"src/automerge/space-collection.ts":{"bytesInOutput":624},"src/automerge/echo-data-monitor.ts":{"bytesInOutput":11386},"src/db-host/documents-synchronizer.ts":{"bytesInOutput":5810},"src/db-host/echo-host.ts":{"bytesInOutput":10380},"src/db-host/local-queue-service.ts":{"bytesInOutput":3279},"src/db-host/query-service.ts":{"bytesInOutput":5226},"src/query/query-executor.ts":{"bytesInOutput":43327},"src/query/query-planner.ts":{"bytesInOutput":20226},"src/query/errors.ts":{"bytesInOutput":191},"src/query/plan.ts":{"bytesInOutput":626},"src/db-host/queue-data-source.ts":{"bytesInOutput":3365},"src/db-host/space-state-manager.ts":{"bytesInOutput":3522},"src/db-host/database-root.ts":{"bytesInOutput":2128},"src/db-host/automerge-metrics.ts":{"bytesInOutput":864},"src/edge/echo-edge-replicator.ts":{"bytesInOutput":16600},"src/edge/inflight-request-limiter.ts":{"bytesInOutput":2039},"src/util.ts":{"bytesInOutput":572}},"bytes":208833},"dist/lib/neutral/chunk-BU37PJWX.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":15648},"dist/lib/neutral/chunk-BU37PJWX.mjs":{"imports":[{"path":"@dxos/echo/internal","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true}],"exports":["filterMatchObject","filterMatchObjectJSON","filterMatchValue"],"inputs":{"src/filter/filter-match.ts":{"bytesInOutput":6860},"src/filter/index.ts":{"bytesInOutput":0}},"bytes":7046},"dist/lib/neutral/testing/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":32520},"dist/lib/neutral/testing/index.mjs":{"imports":[{"path":"dist/lib/neutral/chunk-FE3UY2NU.mjs","kind":"import-statement"},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/messaging","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"import-statement","external":true},{"path":"@dxos/random-access-storage","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-gossip","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-object-sync","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/feed-store/testing","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-automerge-replicator","kind":"import-statement","external":true}],"exports":["MemoryNetworkManagerProvider","TestAdapter","TestAgent","TestAgentBuilder","TestFeedBuilder","TestReplicationNetwork","TestReplicator","TestReplicatorConnection","WebsocketNetworkManagerProvider","brokenAutomergeReplicatorFactory","changeStorageVersionInMetadata","testAutomergeReplicatorFactory"],"entryPoint":"src/testing/index.ts","inputs":{"src/testing/change-metadata.ts":{"bytesInOutput":831},"src/testing/index.ts":{"bytesInOutput":0},"src/testing/test-agent-builder.ts":{"bytesInOutput":7016},"src/testing/test-feed-builder.ts":{"bytesInOutput":171},"src/testing/test-network-adapter.ts":{"bytesInOutput":2323},"src/testing/test-replicator.ts":{"bytesInOutput":6566}},"bytes":17670},"dist/lib/neutral/chunk-FE3UY2NU.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":111955},"dist/lib/neutral/chunk-FE3UY2NU.mjs":{"imports":[{"path":"@dxos/hypercore","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/crypto","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"crc-32","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/timeframe","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/feed-store","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/timeframe","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/crypto","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true},{"path":"@dxos/teleport","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/halo/credentials","kind":"import-statement","external":true},{"path":"@dxos/timeframe","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto","kind":"import-statement","external":true},{"path":"@dxos/teleport","kind":"import-statement","external":true},{"path":"@dxos/crypto","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/network-manager","kind":"import-statement","external":true},{"path":"@dxos/teleport","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-object-sync","kind":"import-statement","external":true},{"path":"@dxos/teleport-extension-replicator","kind":"import-statement","external":true},{"path":"@dxos/tracing","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@automerge/automerge-repo","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/credentials","kind":"import-statement","external":true},{"path":"@dxos/debug","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/protocols","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"exports":["AuthExtension","AuthStatus","CredentialRetrieverExtension","CredentialServerExtension","MOCK_AUTH_PROVIDER","MOCK_AUTH_VERIFIER","MetadataStore","Pipeline","Space","SpaceManager","SpaceProtocol","SpaceProtocolSession","TimeframeClock","codec","createIdFromSpaceKey","createMappedFeedWriter","hasInvitationExpired","mapFeedIndexesToTimeframe","mapTimeframeToFeedIndexes","startAfter","valueEncoding"],"inputs":{"src/common/codec.ts":{"bytesInOutput":217},"src/common/feeds.ts":{"bytesInOutput":535},"src/common/space-id.ts":{"bytesInOutput":604},"src/metadata/metadata-store.ts":{"bytesInOutput":11515},"src/pipeline/timeframe-clock.ts":{"bytesInOutput":2912},"src/pipeline/pipeline.ts":{"bytesInOutput":13122},"src/pipeline/message-selector.ts":{"bytesInOutput":756},"src/pipeline/index.ts":{"bytesInOutput":0},"src/space/auth.ts":{"bytesInOutput":3011},"src/space/space.ts":{"bytesInOutput":6527},"src/space/control-pipeline.ts":{"bytesInOutput":8914},"src/space/admission-discovery-extension.ts":{"bytesInOutput":2126},"src/space/space-protocol.ts":{"bytesInOutput":7529},"src/space/space-manager.ts":{"bytesInOutput":5942}},"bytes":64673}}}
|