@neat.is/core 0.4.26-dev.20260702 → 0.4.26-dev.20260703
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/{chunk-ZX7PCMGZ.js → chunk-2LNICOVU.js} +30 -3
- package/dist/chunk-2LNICOVU.js.map +1 -0
- package/dist/{chunk-XOOCA5T7.js → chunk-4OR4RQEO.js} +13 -1
- package/dist/chunk-4OR4RQEO.js.map +1 -0
- package/dist/{chunk-GAFTW2OX.js → chunk-C5NCCKPZ.js} +2 -2
- package/dist/{chunk-IABNGQT2.js → chunk-S7TDPQDD.js} +15 -3
- package/dist/chunk-S7TDPQDD.js.map +1 -0
- package/dist/{chunk-O25KZNZK.js → chunk-WZYH5DVG.js} +957 -238
- package/dist/chunk-WZYH5DVG.js.map +1 -0
- package/dist/cli.cjs +1149 -406
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +5 -5
- package/dist/index.cjs +1011 -269
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +4 -4
- package/dist/neatd.cjs +1112 -278
- package/dist/neatd.cjs.map +1 -1
- package/dist/neatd.js +3 -3
- package/dist/{otel-grpc-QYHUJ4OY.js → otel-grpc-LFYZDSK3.js} +3 -3
- package/dist/server.cjs +954 -211
- package/dist/server.cjs.map +1 -1
- package/dist/server.js +4 -4
- package/package.json +2 -2
- package/dist/chunk-IABNGQT2.js.map +0 -1
- package/dist/chunk-O25KZNZK.js.map +0 -1
- package/dist/chunk-XOOCA5T7.js.map +0 -1
- package/dist/chunk-ZX7PCMGZ.js.map +0 -1
- /package/dist/{chunk-GAFTW2OX.js.map → chunk-C5NCCKPZ.js.map} +0 -0
- /package/dist/{otel-grpc-QYHUJ4OY.js.map → otel-grpc-LFYZDSK3.js.map} +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -152,6 +152,10 @@ interface ParsedSpan {
|
|
|
152
152
|
attributes: Record<string, AttributeValue>;
|
|
153
153
|
dbSystem?: string;
|
|
154
154
|
dbName?: string;
|
|
155
|
+
messagingSystem?: string;
|
|
156
|
+
messagingDestination?: string;
|
|
157
|
+
graphqlOperationName?: string;
|
|
158
|
+
graphqlOperationType?: string;
|
|
155
159
|
statusCode?: number;
|
|
156
160
|
errorMessage?: string;
|
|
157
161
|
exception?: {
|
|
@@ -393,6 +397,7 @@ interface ProjectSlot {
|
|
|
393
397
|
outPath: string;
|
|
394
398
|
paths: ProjectPaths;
|
|
395
399
|
stopPersist: () => void;
|
|
400
|
+
stopStaleness: () => void;
|
|
396
401
|
detachEvents: () => void;
|
|
397
402
|
status: 'active' | 'broken';
|
|
398
403
|
errorReason?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -152,6 +152,10 @@ interface ParsedSpan {
|
|
|
152
152
|
attributes: Record<string, AttributeValue>;
|
|
153
153
|
dbSystem?: string;
|
|
154
154
|
dbName?: string;
|
|
155
|
+
messagingSystem?: string;
|
|
156
|
+
messagingDestination?: string;
|
|
157
|
+
graphqlOperationName?: string;
|
|
158
|
+
graphqlOperationType?: string;
|
|
155
159
|
statusCode?: number;
|
|
156
160
|
errorMessage?: string;
|
|
157
161
|
exception?: {
|
|
@@ -393,6 +397,7 @@ interface ProjectSlot {
|
|
|
393
397
|
outPath: string;
|
|
394
398
|
paths: ProjectPaths;
|
|
395
399
|
stopPersist: () => void;
|
|
400
|
+
stopStaleness: () => void;
|
|
396
401
|
detachEvents: () => void;
|
|
397
402
|
status: 'active' | 'broken';
|
|
398
403
|
errorReason?: string;
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
routeSpanToProject,
|
|
3
3
|
startDaemon
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-S7TDPQDD.js";
|
|
5
5
|
import {
|
|
6
6
|
ProjectNameCollisionError,
|
|
7
7
|
addProject,
|
|
@@ -37,15 +37,15 @@ import {
|
|
|
37
37
|
thresholdForEdgeType,
|
|
38
38
|
touchLastSeen,
|
|
39
39
|
writeAtomically
|
|
40
|
-
} from "./chunk-
|
|
40
|
+
} from "./chunk-WZYH5DVG.js";
|
|
41
41
|
import {
|
|
42
42
|
startOtelGrpcReceiver
|
|
43
|
-
} from "./chunk-
|
|
43
|
+
} from "./chunk-C5NCCKPZ.js";
|
|
44
44
|
import {
|
|
45
45
|
buildOtelReceiver,
|
|
46
46
|
logSpanHandler,
|
|
47
47
|
parseOtlpRequest
|
|
48
|
-
} from "./chunk-
|
|
48
|
+
} from "./chunk-2LNICOVU.js";
|
|
49
49
|
export {
|
|
50
50
|
ProjectNameCollisionError,
|
|
51
51
|
addProject,
|