@trigger.dev/core 0.0.0-v3-canary-20240322152211 → 0.0.0-v3-canary-20240322220011
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/v3/index.d.mts +5 -1
- package/dist/v3/index.d.ts +5 -1
- package/dist/v3/index.js.map +1 -1
- package/dist/v3/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/v3/index.d.mts
CHANGED
|
@@ -13,7 +13,7 @@ import { SpanProcessor, Span as Span$1 } from '@opentelemetry/sdk-trace-base';
|
|
|
13
13
|
export { e as eventFilterMatches } from '../eventFilterMatches-2kHImluE.mjs';
|
|
14
14
|
import { TracingSDK } from './otel/index.mjs';
|
|
15
15
|
export { TracingDiagnosticLogLevel, recordSpanException } from './otel/index.mjs';
|
|
16
|
-
import '@opentelemetry/instrumentation';
|
|
16
|
+
import { InstrumentationOption } from '@opentelemetry/instrumentation';
|
|
17
17
|
import '@opentelemetry/resources';
|
|
18
18
|
import '@opentelemetry/sdk-logs';
|
|
19
19
|
import '@opentelemetry/instrumentation-http';
|
|
@@ -11797,6 +11797,10 @@ interface ProjectConfig {
|
|
|
11797
11797
|
* The path to your project's tsconfig.json file. Will use tsconfig.json in the project directory if not provided.
|
|
11798
11798
|
*/
|
|
11799
11799
|
tsconfigPath?: string;
|
|
11800
|
+
/**
|
|
11801
|
+
* The OpenTelemetry instrumentations to enable
|
|
11802
|
+
*/
|
|
11803
|
+
instrumentations?: InstrumentationOption[];
|
|
11800
11804
|
}
|
|
11801
11805
|
|
|
11802
11806
|
type InitOutput = Record<string, any> | void | undefined;
|
package/dist/v3/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ import { SpanProcessor, Span as Span$1 } from '@opentelemetry/sdk-trace-base';
|
|
|
13
13
|
export { e as eventFilterMatches } from '../eventFilterMatches-2kHImluE.js';
|
|
14
14
|
import { TracingSDK } from './otel/index.js';
|
|
15
15
|
export { TracingDiagnosticLogLevel, recordSpanException } from './otel/index.js';
|
|
16
|
-
import '@opentelemetry/instrumentation';
|
|
16
|
+
import { InstrumentationOption } from '@opentelemetry/instrumentation';
|
|
17
17
|
import '@opentelemetry/resources';
|
|
18
18
|
import '@opentelemetry/sdk-logs';
|
|
19
19
|
import '@opentelemetry/instrumentation-http';
|
|
@@ -11797,6 +11797,10 @@ interface ProjectConfig {
|
|
|
11797
11797
|
* The path to your project's tsconfig.json file. Will use tsconfig.json in the project directory if not provided.
|
|
11798
11798
|
*/
|
|
11799
11799
|
tsconfigPath?: string;
|
|
11800
|
+
/**
|
|
11801
|
+
* The OpenTelemetry instrumentations to enable
|
|
11802
|
+
*/
|
|
11803
|
+
instrumentations?: InstrumentationOption[];
|
|
11800
11804
|
}
|
|
11801
11805
|
|
|
11802
11806
|
type InitOutput = Record<string, any> | void | undefined;
|