trigger.dev 0.0.0-v3-canary-20240322152839 → 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.
@@ -11,5 +11,5 @@ export const config: TriggerConfig = {
11
11
  factor: 2,
12
12
  randomize: true,
13
13
  },
14
- },
14
+ },${triggerDirectoriesOption}
15
15
  };
@@ -3,7 +3,6 @@ import {
3
3
  TaskExecutor,
4
4
  preciseDateOriginNow
5
5
  } from "@trigger.dev/core/v3";
6
- import "source-map-support/register.js";
7
6
  import {
8
7
  ConsoleInterceptor,
9
8
  DevRuntimeManager,
@@ -17,7 +16,7 @@ import {
17
16
  } from "@trigger.dev/core/v3";
18
17
 
19
18
  // package.json
20
- var version = "0.0.0-v3-canary-20240322152839";
19
+ var version = "0.0.0-v3-canary-20240322220011";
21
20
 
22
21
  // src/workers/dev/worker-facade.ts
23
22
  __WORKER_SETUP__;
@@ -1,18 +1,19 @@
1
1
  // src/workers/dev/worker-setup.ts
2
+ import "source-map-support/register.js";
2
3
  import { Resource } from "@opentelemetry/resources";
3
- import { OpenAIInstrumentation } from "@traceloop/instrumentation-openai";
4
4
  import {
5
5
  SemanticInternalAttributes,
6
6
  TracingSDK,
7
7
  ZodMessageSender,
8
8
  childToWorkerMessages
9
9
  } from "@trigger.dev/core/v3";
10
+ __SETUP_IMPORTED_PROJECT_CONFIG__;
10
11
  var tracingSDK = new TracingSDK({
11
12
  url: process.env.OTEL_EXPORTER_OTLP_ENDPOINT ?? "http://0.0.0.0:4318",
12
13
  resource: new Resource({
13
14
  [SemanticInternalAttributes.CLI_VERSION]: "3.0.0"
14
15
  }),
15
- instrumentations: [new OpenAIInstrumentation()],
16
+ instrumentations: setupImportedConfig?.instrumentations ?? [],
16
17
  diagLogLevel: process.env.OTEL_LOG_LEVEL ?? "none"
17
18
  });
18
19
  var sender = new ZodMessageSender({
@@ -18,7 +18,7 @@ import {
18
18
  } from "@trigger.dev/core/v3";
19
19
 
20
20
  // package.json
21
- var version = "0.0.0-v3-canary-20240322152839";
21
+ var version = "0.0.0-v3-canary-20240322220011";
22
22
 
23
23
  // src/workers/prod/worker-facade.ts
24
24
  __WORKER_SETUP__;
@@ -1,16 +1,16 @@
1
1
  // src/workers/prod/worker-setup.ts
2
2
  import { Resource } from "@opentelemetry/resources";
3
- import { OpenAIInstrumentation } from "@traceloop/instrumentation-openai";
4
3
  import {
5
4
  SemanticInternalAttributes,
6
5
  TracingSDK
7
6
  } from "@trigger.dev/core/v3";
7
+ __SETUP_IMPORTED_PROJECT_CONFIG__;
8
8
  var tracingSDK = new TracingSDK({
9
9
  url: process.env.OTEL_EXPORTER_OTLP_ENDPOINT ?? "http://0.0.0.0:4318",
10
10
  resource: new Resource({
11
11
  [SemanticInternalAttributes.CLI_VERSION]: "3.0.0"
12
12
  }),
13
- instrumentations: [new OpenAIInstrumentation()],
13
+ instrumentations: setupImportedConfig?.instrumentations ?? [],
14
14
  diagLogLevel: process.env.OTEL_LOG_LEVEL ?? "none"
15
15
  });
16
16
  process.on("uncaughtException", (error, origin) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trigger.dev",
3
- "version": "0.0.0-v3-canary-20240322152839",
3
+ "version": "0.0.0-v3-canary-20240322220011",
4
4
  "description": "A Command-Line Interface for Trigger.dev (v3) projects",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -55,7 +55,7 @@
55
55
  "vitest": "^0.34.4",
56
56
  "xdg-app-paths": "^8.3.0",
57
57
  "@trigger.dev/tsconfig": "0.0.0",
58
- "@trigger.dev/core-apps": "0.0.0-v3-canary-20240322152839"
58
+ "@trigger.dev/core-apps": "0.0.0-v3-canary-20240322220011"
59
59
  },
60
60
  "watch": {
61
61
  "build:prod-containerfile": "src/Containerfile.prod"
@@ -79,8 +79,7 @@
79
79
  "@opentelemetry/sdk-trace-base": "^1.21.0",
80
80
  "@opentelemetry/sdk-trace-node": "^1.21.0",
81
81
  "@opentelemetry/semantic-conventions": "^1.21.0",
82
- "@traceloop/instrumentation-openai": "^0.3.9",
83
- "@trigger.dev/core": "0.0.0-v3-canary-20240322152839",
82
+ "@trigger.dev/core": "0.0.0-v3-canary-20240322220011",
84
83
  "@types/degit": "^2.8.3",
85
84
  "chalk": "^5.2.0",
86
85
  "chokidar": "^3.5.3",