@pdpp/local-collector 0.16.6 → 0.16.7

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.
@@ -1,8 +1,8 @@
1
1
  const COLLECTOR_BUILD_SOURCE_SENTINEL = "source";
2
2
  const COLLECTOR_BUILD_INFO = {
3
- builtAt: "2026-06-25T20:45:10.407Z",
4
- revision: "4d1347ec64cc",
5
- version: "0.16.6",
3
+ builtAt: "2026-06-25T21:41:51.440Z",
4
+ revision: "eb6e76051969",
5
+ version: "0.16.7",
6
6
  };
7
7
  function buildAgentVersion(info = COLLECTOR_BUILD_INFO) {
8
8
  return `${info.version}+${info.revision}`;
@@ -311,12 +311,12 @@ function makeEmitRecord(deps) {
311
311
  for (const [streamName, scope] of requested) {
312
312
  resFilters.set(streamName, resourceSet(scope));
313
313
  }
314
- const emitRecord = (stream, data) => {
314
+ const emitRecord = (stream, data, options = {}) => {
315
315
  if (data.id == null) {
316
316
  return Promise.resolve();
317
317
  }
318
318
  const rs = resFilters.get(stream);
319
- if (rs && !rs.has(String(data.id))) {
319
+ if (!options.skipResourceFilter && rs && !rs.has(String(data.id))) {
320
320
  return Promise.resolve();
321
321
  }
322
322
  if (isTombstone?.(stream, data)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdpp/local-collector",
3
- "version": "0.16.6",
3
+ "version": "0.16.7",
4
4
  "description": "Publishable local collector runtime for PDPP: filesystem-class connectors (Claude Code, Codex) plus the device-exporter ingest client.",
5
5
  "type": "module",
6
6
  "private": false,