@neat.is/core 0.6.2 → 0.6.3-dev.20260726
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-OY7FGJAX.js → chunk-7QXN726V.js} +2 -2
- package/dist/{chunk-AOWANF2K.js → chunk-L64CATKE.js} +4271 -4008
- package/dist/chunk-L64CATKE.js.map +1 -0
- package/dist/{chunk-MSZ4NALT.js → chunk-PWIT35Z4.js} +21 -12
- package/dist/chunk-PWIT35Z4.js.map +1 -0
- package/dist/{chunk-2MAGU6RB.js → chunk-ZLAZ7PLC.js} +7 -2
- package/dist/chunk-ZLAZ7PLC.js.map +1 -0
- package/dist/cli.cjs +4122 -3855
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +4 -4
- package/dist/index.cjs +3945 -3669
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +4 -4
- package/dist/neatd.cjs +3975 -3699
- package/dist/neatd.cjs.map +1 -1
- package/dist/neatd.js +3 -3
- package/dist/{otel-grpc-AHNPM5LX.js → otel-grpc-WXKM7YBW.js} +3 -3
- package/dist/server.cjs +4540 -4273
- package/dist/server.cjs.map +1 -1
- package/dist/server.js +3 -3
- package/package.json +2 -2
- package/dist/chunk-2MAGU6RB.js.map +0 -1
- package/dist/chunk-AOWANF2K.js.map +0 -1
- package/dist/chunk-MSZ4NALT.js.map +0 -1
- /package/dist/{chunk-OY7FGJAX.js.map → chunk-7QXN726V.js.map} +0 -0
- /package/dist/{otel-grpc-AHNPM5LX.js.map → otel-grpc-WXKM7YBW.js.map} +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -155,6 +155,8 @@ interface ParsedSpan {
|
|
|
155
155
|
dbName?: string;
|
|
156
156
|
dbCollection?: string;
|
|
157
157
|
dbTable?: string;
|
|
158
|
+
httpRoute?: string;
|
|
159
|
+
httpMethod?: string;
|
|
158
160
|
messagingSystem?: string;
|
|
159
161
|
messagingDestination?: string;
|
|
160
162
|
graphqlOperationName?: string;
|
|
@@ -179,6 +181,7 @@ interface BuildOtelReceiverOptions {
|
|
|
179
181
|
onErrorSpanSync?: (span: ParsedSpan) => Promise<void>;
|
|
180
182
|
onProjectSpan?: ProjectSpanHandler;
|
|
181
183
|
onProjectErrorSpanSync?: (project: string, span: ParsedSpan) => Promise<void>;
|
|
184
|
+
isProjectRegistered?: (project: string) => boolean;
|
|
182
185
|
bodyLimit?: number;
|
|
183
186
|
authToken?: string;
|
|
184
187
|
trustProxy?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -155,6 +155,8 @@ interface ParsedSpan {
|
|
|
155
155
|
dbName?: string;
|
|
156
156
|
dbCollection?: string;
|
|
157
157
|
dbTable?: string;
|
|
158
|
+
httpRoute?: string;
|
|
159
|
+
httpMethod?: string;
|
|
158
160
|
messagingSystem?: string;
|
|
159
161
|
messagingDestination?: string;
|
|
160
162
|
graphqlOperationName?: string;
|
|
@@ -179,6 +181,7 @@ interface BuildOtelReceiverOptions {
|
|
|
179
181
|
onErrorSpanSync?: (span: ParsedSpan) => Promise<void>;
|
|
180
182
|
onProjectSpan?: ProjectSpanHandler;
|
|
181
183
|
onProjectErrorSpanSync?: (project: string, span: ParsedSpan) => Promise<void>;
|
|
184
|
+
isProjectRegistered?: (project: string) => boolean;
|
|
182
185
|
bodyLimit?: number;
|
|
183
186
|
authToken?: string;
|
|
184
187
|
trustProxy?: boolean;
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
routeSpanToProject,
|
|
3
3
|
startDaemon
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-PWIT35Z4.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-L64CATKE.js";
|
|
41
41
|
import {
|
|
42
42
|
startOtelGrpcReceiver
|
|
43
|
-
} from "./chunk-
|
|
43
|
+
} from "./chunk-7QXN726V.js";
|
|
44
44
|
import {
|
|
45
45
|
buildOtelReceiver,
|
|
46
46
|
logSpanHandler,
|
|
47
47
|
parseOtlpRequest
|
|
48
|
-
} from "./chunk-
|
|
48
|
+
} from "./chunk-ZLAZ7PLC.js";
|
|
49
49
|
export {
|
|
50
50
|
ProjectNameCollisionError,
|
|
51
51
|
addProject,
|