@trigger.dev/core 0.0.0-v3-prerelease-20240916181030 → 0.0.0-v3-prerelease-20240923150540

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.
Files changed (31) hide show
  1. package/dist/commonjs/schemas/api.d.ts +8 -8
  2. package/dist/commonjs/v3/apiClient/index.d.ts +238 -60
  3. package/dist/commonjs/v3/build/resolvedConfig.d.ts +1 -0
  4. package/dist/commonjs/v3/schemas/api.d.ts +901 -194
  5. package/dist/commonjs/v3/schemas/api.js +23 -3
  6. package/dist/commonjs/v3/schemas/api.js.map +1 -1
  7. package/dist/commonjs/v3/schemas/build.d.ts +126 -126
  8. package/dist/commonjs/v3/schemas/fetch.d.ts +14 -14
  9. package/dist/commonjs/v3/schemas/messages.d.ts +3799 -3104
  10. package/dist/commonjs/v3/schemas/messages.js +28 -14
  11. package/dist/commonjs/v3/schemas/messages.js.map +1 -1
  12. package/dist/commonjs/v3/schemas/resources.d.ts +30 -30
  13. package/dist/commonjs/v3/schemas/schemas.d.ts +460 -460
  14. package/dist/commonjs/v3/utils/ioSerialization.d.ts +1 -0
  15. package/dist/commonjs/v3/utils/ioSerialization.js +26 -1
  16. package/dist/commonjs/v3/utils/ioSerialization.js.map +1 -1
  17. package/dist/commonjs/version.js +1 -1
  18. package/dist/esm/schemas/api.d.ts +8 -8
  19. package/dist/esm/v3/apiClient/index.d.ts +178 -0
  20. package/dist/esm/v3/build/resolvedConfig.d.ts +1 -0
  21. package/dist/esm/v3/schemas/api.d.ts +707 -0
  22. package/dist/esm/v3/schemas/api.js +21 -1
  23. package/dist/esm/v3/schemas/api.js.map +1 -1
  24. package/dist/esm/v3/schemas/messages.d.ts +695 -0
  25. package/dist/esm/v3/schemas/messages.js +28 -14
  26. package/dist/esm/v3/schemas/messages.js.map +1 -1
  27. package/dist/esm/v3/utils/ioSerialization.d.ts +1 -0
  28. package/dist/esm/v3/utils/ioSerialization.js +25 -1
  29. package/dist/esm/v3/utils/ioSerialization.js.map +1 -1
  30. package/dist/esm/version.js +1 -1
  31. package/package.json +1 -1
@@ -2977,10 +2977,10 @@ export declare const IndexEndpointResponseSchema: z.ZodObject<{
2977
2977
  id: string;
2978
2978
  } | undefined;
2979
2979
  }>]>, {
2980
- version: "1";
2980
+ options: Record<string, string[]>;
2981
+ version: "2";
2981
2982
  key: string;
2982
2983
  channel: "HTTP" | "SMTP" | "SQS";
2983
- events: string[];
2984
2984
  integration: {
2985
2985
  id: string;
2986
2986
  metadata: {
@@ -2996,10 +2996,10 @@ export declare const IndexEndpointResponseSchema: z.ZodObject<{
2996
2996
  id: string;
2997
2997
  } | undefined;
2998
2998
  } | {
2999
- options: Record<string, string[]>;
3000
- version: "2";
2999
+ version: "1";
3001
3000
  key: string;
3002
3001
  channel: "HTTP" | "SMTP" | "SQS";
3002
+ events: string[];
3003
3003
  integration: {
3004
3004
  id: string;
3005
3005
  metadata: {
@@ -3863,10 +3863,10 @@ export declare const IndexEndpointResponseSchema: z.ZodObject<{
3863
3863
  } | undefined;
3864
3864
  }[];
3865
3865
  sources: ({
3866
- version: "1";
3866
+ options: Record<string, string[]>;
3867
+ version: "2";
3867
3868
  key: string;
3868
3869
  channel: "HTTP" | "SMTP" | "SQS";
3869
- events: string[];
3870
3870
  integration: {
3871
3871
  id: string;
3872
3872
  metadata: {
@@ -3882,10 +3882,10 @@ export declare const IndexEndpointResponseSchema: z.ZodObject<{
3882
3882
  id: string;
3883
3883
  } | undefined;
3884
3884
  } | {
3885
- options: Record<string, string[]>;
3886
- version: "2";
3885
+ version: "1";
3887
3886
  key: string;
3888
3887
  channel: "HTTP" | "SMTP" | "SQS";
3888
+ events: string[];
3889
3889
  integration: {
3890
3890
  id: string;
3891
3891
  metadata: {
@@ -23,8 +23,8 @@ export declare class ApiClient {
23
23
  id: string;
24
24
  }>;
25
25
  batchTriggerTask(taskId: string, body: BatchTriggerTaskRequestBody, options?: TriggerOptions, requestOptions?: ZodFetchOptions): import("./core.js").ApiPromise<{
26
- runs: string[];
27
26
  batchId: string;
27
+ runs: string[];
28
28
  }>;
29
29
  createUploadPayloadUrl(filename: string, requestOptions?: ZodFetchOptions): import("./core.js").ApiPromise<{
30
30
  presignedUrl: string;
@@ -33,13 +33,115 @@ export declare class ApiClient {
33
33
  presignedUrl: string;
34
34
  }>;
35
35
  retrieveRun(runId: string, requestOptions?: ZodFetchOptions): import("./core.js").ApiPromise<{
36
- status: "COMPLETED" | "CANCELED" | "QUEUED" | "EXECUTING" | "FAILED" | "WAITING_FOR_DEPLOY" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
36
+ status: "CANCELED" | "COMPLETED" | "FAILED" | "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
37
37
  id: string;
38
+ createdAt: Date;
39
+ tags: string[];
40
+ depth: number;
41
+ triggerFunction: "triggerAndWait" | "trigger" | "batchTriggerAndWait" | "batchTrigger";
42
+ taskIdentifier: string;
43
+ isQueued: boolean;
44
+ isExecuting: boolean;
45
+ isCompleted: boolean;
46
+ isSuccess: boolean;
47
+ isFailed: boolean;
48
+ isCancelled: boolean;
49
+ isTest: boolean;
50
+ updatedAt: Date;
51
+ costInCents: number;
52
+ baseCostInCents: number;
53
+ durationMs: number;
54
+ relatedRuns: {
55
+ root?: {
56
+ status: "CANCELED" | "COMPLETED" | "FAILED" | "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
57
+ id: string;
58
+ createdAt: Date;
59
+ tags: string[];
60
+ depth: number;
61
+ triggerFunction: "triggerAndWait" | "trigger" | "batchTriggerAndWait" | "batchTrigger";
62
+ taskIdentifier: string;
63
+ isQueued: boolean;
64
+ isExecuting: boolean;
65
+ isCompleted: boolean;
66
+ isSuccess: boolean;
67
+ isFailed: boolean;
68
+ isCancelled: boolean;
69
+ isTest: boolean;
70
+ updatedAt: Date;
71
+ costInCents: number;
72
+ baseCostInCents: number;
73
+ durationMs: number;
74
+ batchId?: string | undefined;
75
+ idempotencyKey?: string | undefined;
76
+ version?: string | undefined;
77
+ startedAt?: Date | undefined;
78
+ finishedAt?: Date | undefined;
79
+ delayedUntil?: Date | undefined;
80
+ ttl?: string | undefined;
81
+ expiredAt?: Date | undefined;
82
+ } | undefined;
83
+ parent?: {
84
+ status: "CANCELED" | "COMPLETED" | "FAILED" | "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
85
+ id: string;
86
+ createdAt: Date;
87
+ tags: string[];
88
+ depth: number;
89
+ triggerFunction: "triggerAndWait" | "trigger" | "batchTriggerAndWait" | "batchTrigger";
90
+ taskIdentifier: string;
91
+ isQueued: boolean;
92
+ isExecuting: boolean;
93
+ isCompleted: boolean;
94
+ isSuccess: boolean;
95
+ isFailed: boolean;
96
+ isCancelled: boolean;
97
+ isTest: boolean;
98
+ updatedAt: Date;
99
+ costInCents: number;
100
+ baseCostInCents: number;
101
+ durationMs: number;
102
+ batchId?: string | undefined;
103
+ idempotencyKey?: string | undefined;
104
+ version?: string | undefined;
105
+ startedAt?: Date | undefined;
106
+ finishedAt?: Date | undefined;
107
+ delayedUntil?: Date | undefined;
108
+ ttl?: string | undefined;
109
+ expiredAt?: Date | undefined;
110
+ } | undefined;
111
+ children?: {
112
+ status: "CANCELED" | "COMPLETED" | "FAILED" | "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
113
+ id: string;
114
+ createdAt: Date;
115
+ tags: string[];
116
+ depth: number;
117
+ triggerFunction: "triggerAndWait" | "trigger" | "batchTriggerAndWait" | "batchTrigger";
118
+ taskIdentifier: string;
119
+ isQueued: boolean;
120
+ isExecuting: boolean;
121
+ isCompleted: boolean;
122
+ isSuccess: boolean;
123
+ isFailed: boolean;
124
+ isCancelled: boolean;
125
+ isTest: boolean;
126
+ updatedAt: Date;
127
+ costInCents: number;
128
+ baseCostInCents: number;
129
+ durationMs: number;
130
+ batchId?: string | undefined;
131
+ idempotencyKey?: string | undefined;
132
+ version?: string | undefined;
133
+ startedAt?: Date | undefined;
134
+ finishedAt?: Date | undefined;
135
+ delayedUntil?: Date | undefined;
136
+ ttl?: string | undefined;
137
+ expiredAt?: Date | undefined;
138
+ }[] | undefined;
139
+ };
38
140
  attempts: ({
39
- status: "PENDING" | "COMPLETED" | "CANCELED" | "EXECUTING" | "FAILED" | "PAUSED";
141
+ status: "PENDING" | "CANCELED" | "COMPLETED" | "FAILED" | "EXECUTING" | "PAUSED";
40
142
  id: string;
41
- updatedAt: Date;
42
143
  createdAt: Date;
144
+ updatedAt: Date;
43
145
  startedAt?: Date | undefined;
44
146
  completedAt?: Date | undefined;
45
147
  error?: {
@@ -48,20 +150,6 @@ export declare class ApiClient {
48
150
  stackTrace?: string | undefined;
49
151
  } | undefined;
50
152
  } | undefined)[];
51
- updatedAt: Date;
52
- isTest: boolean;
53
- createdAt: Date;
54
- tags: string[];
55
- durationMs: number;
56
- costInCents: number;
57
- baseCostInCents: number;
58
- taskIdentifier: string;
59
- isQueued: boolean;
60
- isExecuting: boolean;
61
- isCompleted: boolean;
62
- isSuccess: boolean;
63
- isFailed: boolean;
64
- isCancelled: boolean;
65
153
  payload?: any;
66
154
  payloadPresignedUrl?: string | undefined;
67
155
  output?: any;
@@ -70,12 +158,13 @@ export declare class ApiClient {
70
158
  id: string;
71
159
  generator: {
72
160
  type: "CRON";
73
- description: string;
74
161
  expression: string;
162
+ description: string;
75
163
  };
76
164
  externalId?: string | undefined;
77
165
  deduplicationKey?: string | undefined;
78
166
  } | undefined;
167
+ batchId?: string | undefined;
79
168
  idempotencyKey?: string | undefined;
80
169
  version?: string | undefined;
81
170
  startedAt?: Date | undefined;
@@ -93,13 +182,115 @@ export declare class ApiClient {
93
182
  id: string;
94
183
  }>;
95
184
  rescheduleRun(runId: string, body: RescheduleRunRequestBody, requestOptions?: ZodFetchOptions): import("./core.js").ApiPromise<{
96
- status: "COMPLETED" | "CANCELED" | "QUEUED" | "EXECUTING" | "FAILED" | "WAITING_FOR_DEPLOY" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
185
+ status: "CANCELED" | "COMPLETED" | "FAILED" | "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
97
186
  id: string;
187
+ createdAt: Date;
188
+ tags: string[];
189
+ depth: number;
190
+ triggerFunction: "triggerAndWait" | "trigger" | "batchTriggerAndWait" | "batchTrigger";
191
+ taskIdentifier: string;
192
+ isQueued: boolean;
193
+ isExecuting: boolean;
194
+ isCompleted: boolean;
195
+ isSuccess: boolean;
196
+ isFailed: boolean;
197
+ isCancelled: boolean;
198
+ isTest: boolean;
199
+ updatedAt: Date;
200
+ costInCents: number;
201
+ baseCostInCents: number;
202
+ durationMs: number;
203
+ relatedRuns: {
204
+ root?: {
205
+ status: "CANCELED" | "COMPLETED" | "FAILED" | "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
206
+ id: string;
207
+ createdAt: Date;
208
+ tags: string[];
209
+ depth: number;
210
+ triggerFunction: "triggerAndWait" | "trigger" | "batchTriggerAndWait" | "batchTrigger";
211
+ taskIdentifier: string;
212
+ isQueued: boolean;
213
+ isExecuting: boolean;
214
+ isCompleted: boolean;
215
+ isSuccess: boolean;
216
+ isFailed: boolean;
217
+ isCancelled: boolean;
218
+ isTest: boolean;
219
+ updatedAt: Date;
220
+ costInCents: number;
221
+ baseCostInCents: number;
222
+ durationMs: number;
223
+ batchId?: string | undefined;
224
+ idempotencyKey?: string | undefined;
225
+ version?: string | undefined;
226
+ startedAt?: Date | undefined;
227
+ finishedAt?: Date | undefined;
228
+ delayedUntil?: Date | undefined;
229
+ ttl?: string | undefined;
230
+ expiredAt?: Date | undefined;
231
+ } | undefined;
232
+ parent?: {
233
+ status: "CANCELED" | "COMPLETED" | "FAILED" | "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
234
+ id: string;
235
+ createdAt: Date;
236
+ tags: string[];
237
+ depth: number;
238
+ triggerFunction: "triggerAndWait" | "trigger" | "batchTriggerAndWait" | "batchTrigger";
239
+ taskIdentifier: string;
240
+ isQueued: boolean;
241
+ isExecuting: boolean;
242
+ isCompleted: boolean;
243
+ isSuccess: boolean;
244
+ isFailed: boolean;
245
+ isCancelled: boolean;
246
+ isTest: boolean;
247
+ updatedAt: Date;
248
+ costInCents: number;
249
+ baseCostInCents: number;
250
+ durationMs: number;
251
+ batchId?: string | undefined;
252
+ idempotencyKey?: string | undefined;
253
+ version?: string | undefined;
254
+ startedAt?: Date | undefined;
255
+ finishedAt?: Date | undefined;
256
+ delayedUntil?: Date | undefined;
257
+ ttl?: string | undefined;
258
+ expiredAt?: Date | undefined;
259
+ } | undefined;
260
+ children?: {
261
+ status: "CANCELED" | "COMPLETED" | "FAILED" | "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
262
+ id: string;
263
+ createdAt: Date;
264
+ tags: string[];
265
+ depth: number;
266
+ triggerFunction: "triggerAndWait" | "trigger" | "batchTriggerAndWait" | "batchTrigger";
267
+ taskIdentifier: string;
268
+ isQueued: boolean;
269
+ isExecuting: boolean;
270
+ isCompleted: boolean;
271
+ isSuccess: boolean;
272
+ isFailed: boolean;
273
+ isCancelled: boolean;
274
+ isTest: boolean;
275
+ updatedAt: Date;
276
+ costInCents: number;
277
+ baseCostInCents: number;
278
+ durationMs: number;
279
+ batchId?: string | undefined;
280
+ idempotencyKey?: string | undefined;
281
+ version?: string | undefined;
282
+ startedAt?: Date | undefined;
283
+ finishedAt?: Date | undefined;
284
+ delayedUntil?: Date | undefined;
285
+ ttl?: string | undefined;
286
+ expiredAt?: Date | undefined;
287
+ }[] | undefined;
288
+ };
98
289
  attempts: ({
99
- status: "PENDING" | "COMPLETED" | "CANCELED" | "EXECUTING" | "FAILED" | "PAUSED";
290
+ status: "PENDING" | "CANCELED" | "COMPLETED" | "FAILED" | "EXECUTING" | "PAUSED";
100
291
  id: string;
101
- updatedAt: Date;
102
292
  createdAt: Date;
293
+ updatedAt: Date;
103
294
  startedAt?: Date | undefined;
104
295
  completedAt?: Date | undefined;
105
296
  error?: {
@@ -108,20 +299,6 @@ export declare class ApiClient {
108
299
  stackTrace?: string | undefined;
109
300
  } | undefined;
110
301
  } | undefined)[];
111
- updatedAt: Date;
112
- isTest: boolean;
113
- createdAt: Date;
114
- tags: string[];
115
- durationMs: number;
116
- costInCents: number;
117
- baseCostInCents: number;
118
- taskIdentifier: string;
119
- isQueued: boolean;
120
- isExecuting: boolean;
121
- isCompleted: boolean;
122
- isSuccess: boolean;
123
- isFailed: boolean;
124
- isCancelled: boolean;
125
302
  payload?: any;
126
303
  payloadPresignedUrl?: string | undefined;
127
304
  output?: any;
@@ -130,12 +307,13 @@ export declare class ApiClient {
130
307
  id: string;
131
308
  generator: {
132
309
  type: "CRON";
133
- description: string;
134
310
  expression: string;
311
+ description: string;
135
312
  };
136
313
  externalId?: string | undefined;
137
314
  deduplicationKey?: string | undefined;
138
315
  } | undefined;
316
+ batchId?: string | undefined;
139
317
  idempotencyKey?: string | undefined;
140
318
  version?: string | undefined;
141
319
  startedAt?: Date | undefined;
@@ -150,13 +328,13 @@ export declare class ApiClient {
150
328
  createSchedule(options: CreateScheduleOptions, requestOptions?: ZodFetchOptions): import("./core.js").ApiPromise<{
151
329
  type: "DECLARATIVE" | "IMPERATIVE";
152
330
  id: string;
153
- active: boolean;
154
- task: string;
155
331
  timezone: string;
332
+ task: string;
333
+ active: boolean;
156
334
  generator: {
157
335
  type: "CRON";
158
- description: string;
159
336
  expression: string;
337
+ description: string;
160
338
  };
161
339
  environments: {
162
340
  type: string;
@@ -180,12 +358,12 @@ export declare class ApiClient {
180
358
  description: z.ZodString;
181
359
  }, "strip", z.ZodTypeAny, {
182
360
  type: "CRON";
183
- description: string;
184
361
  expression: string;
362
+ description: string;
185
363
  }, {
186
364
  type: "CRON";
187
- description: string;
188
365
  expression: string;
366
+ description: string;
189
367
  }>;
190
368
  timezone: z.ZodString;
191
369
  nextRun: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
@@ -205,13 +383,13 @@ export declare class ApiClient {
205
383
  }, "strip", z.ZodTypeAny, {
206
384
  type: "DECLARATIVE" | "IMPERATIVE";
207
385
  id: string;
208
- active: boolean;
209
- task: string;
210
386
  timezone: string;
387
+ task: string;
388
+ active: boolean;
211
389
  generator: {
212
390
  type: "CRON";
213
- description: string;
214
391
  expression: string;
392
+ description: string;
215
393
  };
216
394
  environments: {
217
395
  type: string;
@@ -224,13 +402,13 @@ export declare class ApiClient {
224
402
  }, {
225
403
  type: "DECLARATIVE" | "IMPERATIVE";
226
404
  id: string;
227
- active: boolean;
228
- task: string;
229
405
  timezone: string;
406
+ task: string;
407
+ active: boolean;
230
408
  generator: {
231
409
  type: "CRON";
232
- description: string;
233
410
  expression: string;
411
+ description: string;
234
412
  };
235
413
  environments: {
236
414
  type: string;
@@ -244,13 +422,13 @@ export declare class ApiClient {
244
422
  retrieveSchedule(scheduleId: string, requestOptions?: ZodFetchOptions): import("./core.js").ApiPromise<{
245
423
  type: "DECLARATIVE" | "IMPERATIVE";
246
424
  id: string;
247
- active: boolean;
248
- task: string;
249
425
  timezone: string;
426
+ task: string;
427
+ active: boolean;
250
428
  generator: {
251
429
  type: "CRON";
252
- description: string;
253
430
  expression: string;
431
+ description: string;
254
432
  };
255
433
  environments: {
256
434
  type: string;
@@ -264,13 +442,13 @@ export declare class ApiClient {
264
442
  updateSchedule(scheduleId: string, options: UpdateScheduleOptions, requestOptions?: ZodFetchOptions): import("./core.js").ApiPromise<{
265
443
  type: "DECLARATIVE" | "IMPERATIVE";
266
444
  id: string;
267
- active: boolean;
268
- task: string;
269
445
  timezone: string;
446
+ task: string;
447
+ active: boolean;
270
448
  generator: {
271
449
  type: "CRON";
272
- description: string;
273
450
  expression: string;
451
+ description: string;
274
452
  };
275
453
  environments: {
276
454
  type: string;
@@ -284,13 +462,13 @@ export declare class ApiClient {
284
462
  deactivateSchedule(scheduleId: string, requestOptions?: ZodFetchOptions): import("./core.js").ApiPromise<{
285
463
  type: "DECLARATIVE" | "IMPERATIVE";
286
464
  id: string;
287
- active: boolean;
288
- task: string;
289
465
  timezone: string;
466
+ task: string;
467
+ active: boolean;
290
468
  generator: {
291
469
  type: "CRON";
292
- description: string;
293
470
  expression: string;
471
+ description: string;
294
472
  };
295
473
  environments: {
296
474
  type: string;
@@ -304,13 +482,13 @@ export declare class ApiClient {
304
482
  activateSchedule(scheduleId: string, requestOptions?: ZodFetchOptions): import("./core.js").ApiPromise<{
305
483
  type: "DECLARATIVE" | "IMPERATIVE";
306
484
  id: string;
307
- active: boolean;
308
- task: string;
309
485
  timezone: string;
486
+ task: string;
487
+ active: boolean;
310
488
  generator: {
311
489
  type: "CRON";
312
- description: string;
313
490
  expression: string;
491
+ description: string;
314
492
  };
315
493
  environments: {
316
494
  type: string;
@@ -23,6 +23,7 @@ export type ResolvedConfig = Prettify<Defu<TriggerConfig, [
23
23
  packageJsonPath: string;
24
24
  lockfilePath: string;
25
25
  configFile?: string;
26
+ tsconfigPath?: string;
26
27
  resolveEnvVars?: ResolveEnvironmentVariablesFunction;
27
28
  instrumentedPackageNames?: string[];
28
29
  }>;