@trigger.dev/core 3.0.0-beta.46 → 3.0.0-beta.48
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/{catalog-9G8AqnI9.d.ts → catalog-N-X0Te3W.d.mts} +5 -23
- package/dist/{catalog-Y0mRLMtJ.d.mts → catalog-NxVZnWZh.d.ts} +5 -23
- package/dist/{common-55Mqj8JP.d.mts → common-fIyU5pmz.d.mts} +13 -0
- package/dist/{common-55Mqj8JP.d.ts → common-fIyU5pmz.d.ts} +13 -0
- package/dist/{manager-6NRInm7C.d.ts → manager-2ZQ3_twq.d.ts} +1 -1
- package/dist/{manager-2AqSY67c.d.mts → manager-X_HrWQ7_.d.mts} +1 -1
- package/dist/{messages-nXkzt5CT.d.mts → messages-Sggr4tid.d.mts} +162 -0
- package/dist/{messages-nXkzt5CT.d.ts → messages-Sggr4tid.d.ts} +162 -0
- package/dist/{schemas-CeAee_C2.d.mts → schemas-Zy7mGFgD.d.mts} +19 -0
- package/dist/{schemas-CeAee_C2.d.ts → schemas-Zy7mGFgD.d.ts} +19 -0
- package/dist/tracer-N0p2Fuuv.d.mts +23 -0
- package/dist/tracer-N0p2Fuuv.d.ts +23 -0
- package/dist/v3/dev/index.d.mts +2 -2
- package/dist/v3/dev/index.d.ts +2 -2
- package/dist/v3/index.d.mts +50 -38
- package/dist/v3/index.d.ts +50 -38
- package/dist/v3/index.js +470 -303
- package/dist/v3/index.js.map +1 -1
- package/dist/v3/index.mjs +467 -304
- package/dist/v3/index.mjs.map +1 -1
- package/dist/v3/otel/index.js +15 -5
- package/dist/v3/otel/index.js.map +1 -1
- package/dist/v3/otel/index.mjs +15 -5
- package/dist/v3/otel/index.mjs.map +1 -1
- package/dist/v3/prod/index.d.mts +3 -3
- package/dist/v3/prod/index.d.ts +3 -3
- package/dist/v3/schemas/index.d.mts +16 -4
- package/dist/v3/schemas/index.d.ts +16 -4
- package/dist/v3/schemas/index.js +3 -1
- package/dist/v3/schemas/index.js.map +1 -1
- package/dist/v3/schemas/index.mjs +3 -1
- package/dist/v3/schemas/index.mjs.map +1 -1
- package/dist/v3/workers/index.d.mts +7 -6
- package/dist/v3/workers/index.d.ts +7 -6
- package/dist/v3/workers/index.js +250 -96
- package/dist/v3/workers/index.js.map +1 -1
- package/dist/v3/workers/index.mjs +250 -96
- package/dist/v3/workers/index.mjs.map +1 -1
- package/dist/v3/zodfetch.d.mts +15 -2
- package/dist/v3/zodfetch.d.ts +15 -2
- package/dist/v3/zodfetch.js +248 -28
- package/dist/v3/zodfetch.js.map +1 -1
- package/dist/v3/zodfetch.mjs +246 -29
- package/dist/v3/zodfetch.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -56,6 +56,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
56
56
|
createdAt: z.ZodDate;
|
|
57
57
|
startedAt: z.ZodDefault<z.ZodDate>;
|
|
58
58
|
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
59
|
+
maxAttempts: z.ZodOptional<z.ZodNumber>;
|
|
59
60
|
durationMs: z.ZodDefault<z.ZodNumber>;
|
|
60
61
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
61
62
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
@@ -72,6 +73,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
72
73
|
baseCostInCents: number;
|
|
73
74
|
context?: any;
|
|
74
75
|
idempotencyKey?: string | undefined;
|
|
76
|
+
maxAttempts?: number | undefined;
|
|
75
77
|
}, {
|
|
76
78
|
id: string;
|
|
77
79
|
payload: string;
|
|
@@ -82,6 +84,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
82
84
|
isTest?: boolean | undefined;
|
|
83
85
|
startedAt?: Date | undefined;
|
|
84
86
|
idempotencyKey?: string | undefined;
|
|
87
|
+
maxAttempts?: number | undefined;
|
|
85
88
|
durationMs?: number | undefined;
|
|
86
89
|
costInCents?: number | undefined;
|
|
87
90
|
baseCostInCents?: number | undefined;
|
|
@@ -188,6 +191,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
188
191
|
baseCostInCents: number;
|
|
189
192
|
context?: any;
|
|
190
193
|
idempotencyKey?: string | undefined;
|
|
194
|
+
maxAttempts?: number | undefined;
|
|
191
195
|
};
|
|
192
196
|
queue: {
|
|
193
197
|
id: string;
|
|
@@ -242,6 +246,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
242
246
|
isTest?: boolean | undefined;
|
|
243
247
|
startedAt?: Date | undefined;
|
|
244
248
|
idempotencyKey?: string | undefined;
|
|
249
|
+
maxAttempts?: number | undefined;
|
|
245
250
|
durationMs?: number | undefined;
|
|
246
251
|
costInCents?: number | undefined;
|
|
247
252
|
baseCostInCents?: number | undefined;
|
|
@@ -306,6 +311,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
306
311
|
baseCostInCents: number;
|
|
307
312
|
context?: any;
|
|
308
313
|
idempotencyKey?: string | undefined;
|
|
314
|
+
maxAttempts?: number | undefined;
|
|
309
315
|
};
|
|
310
316
|
queue: {
|
|
311
317
|
id: string;
|
|
@@ -364,6 +370,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
364
370
|
isTest?: boolean | undefined;
|
|
365
371
|
startedAt?: Date | undefined;
|
|
366
372
|
idempotencyKey?: string | undefined;
|
|
373
|
+
maxAttempts?: number | undefined;
|
|
367
374
|
durationMs?: number | undefined;
|
|
368
375
|
costInCents?: number | undefined;
|
|
369
376
|
baseCostInCents?: number | undefined;
|
|
@@ -448,6 +455,7 @@ declare const ProdTaskRunExecution: z.ZodObject<{
|
|
|
448
455
|
createdAt: z.ZodDate;
|
|
449
456
|
startedAt: z.ZodDefault<z.ZodDate>;
|
|
450
457
|
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
458
|
+
maxAttempts: z.ZodOptional<z.ZodNumber>;
|
|
451
459
|
durationMs: z.ZodDefault<z.ZodNumber>;
|
|
452
460
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
453
461
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
@@ -464,6 +472,7 @@ declare const ProdTaskRunExecution: z.ZodObject<{
|
|
|
464
472
|
baseCostInCents: number;
|
|
465
473
|
context?: any;
|
|
466
474
|
idempotencyKey?: string | undefined;
|
|
475
|
+
maxAttempts?: number | undefined;
|
|
467
476
|
}, {
|
|
468
477
|
id: string;
|
|
469
478
|
payload: string;
|
|
@@ -474,6 +483,7 @@ declare const ProdTaskRunExecution: z.ZodObject<{
|
|
|
474
483
|
isTest?: boolean | undefined;
|
|
475
484
|
startedAt?: Date | undefined;
|
|
476
485
|
idempotencyKey?: string | undefined;
|
|
486
|
+
maxAttempts?: number | undefined;
|
|
477
487
|
durationMs?: number | undefined;
|
|
478
488
|
costInCents?: number | undefined;
|
|
479
489
|
baseCostInCents?: number | undefined;
|
|
@@ -593,6 +603,7 @@ declare const ProdTaskRunExecution: z.ZodObject<{
|
|
|
593
603
|
baseCostInCents: number;
|
|
594
604
|
context?: any;
|
|
595
605
|
idempotencyKey?: string | undefined;
|
|
606
|
+
maxAttempts?: number | undefined;
|
|
596
607
|
};
|
|
597
608
|
queue: {
|
|
598
609
|
id: string;
|
|
@@ -652,6 +663,7 @@ declare const ProdTaskRunExecution: z.ZodObject<{
|
|
|
652
663
|
isTest?: boolean | undefined;
|
|
653
664
|
startedAt?: Date | undefined;
|
|
654
665
|
idempotencyKey?: string | undefined;
|
|
666
|
+
maxAttempts?: number | undefined;
|
|
655
667
|
durationMs?: number | undefined;
|
|
656
668
|
costInCents?: number | undefined;
|
|
657
669
|
baseCostInCents?: number | undefined;
|
|
@@ -739,6 +751,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
739
751
|
createdAt: z.ZodDate;
|
|
740
752
|
startedAt: z.ZodDefault<z.ZodDate>;
|
|
741
753
|
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
754
|
+
maxAttempts: z.ZodOptional<z.ZodNumber>;
|
|
742
755
|
durationMs: z.ZodDefault<z.ZodNumber>;
|
|
743
756
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
744
757
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
@@ -755,6 +768,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
755
768
|
baseCostInCents: number;
|
|
756
769
|
context?: any;
|
|
757
770
|
idempotencyKey?: string | undefined;
|
|
771
|
+
maxAttempts?: number | undefined;
|
|
758
772
|
}, {
|
|
759
773
|
id: string;
|
|
760
774
|
payload: string;
|
|
@@ -765,6 +779,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
765
779
|
isTest?: boolean | undefined;
|
|
766
780
|
startedAt?: Date | undefined;
|
|
767
781
|
idempotencyKey?: string | undefined;
|
|
782
|
+
maxAttempts?: number | undefined;
|
|
768
783
|
durationMs?: number | undefined;
|
|
769
784
|
costInCents?: number | undefined;
|
|
770
785
|
baseCostInCents?: number | undefined;
|
|
@@ -884,6 +899,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
884
899
|
baseCostInCents: number;
|
|
885
900
|
context?: any;
|
|
886
901
|
idempotencyKey?: string | undefined;
|
|
902
|
+
maxAttempts?: number | undefined;
|
|
887
903
|
};
|
|
888
904
|
queue: {
|
|
889
905
|
id: string;
|
|
@@ -943,6 +959,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
943
959
|
isTest?: boolean | undefined;
|
|
944
960
|
startedAt?: Date | undefined;
|
|
945
961
|
idempotencyKey?: string | undefined;
|
|
962
|
+
maxAttempts?: number | undefined;
|
|
946
963
|
durationMs?: number | undefined;
|
|
947
964
|
costInCents?: number | undefined;
|
|
948
965
|
baseCostInCents?: number | undefined;
|
|
@@ -1012,6 +1029,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
1012
1029
|
baseCostInCents: number;
|
|
1013
1030
|
context?: any;
|
|
1014
1031
|
idempotencyKey?: string | undefined;
|
|
1032
|
+
maxAttempts?: number | undefined;
|
|
1015
1033
|
};
|
|
1016
1034
|
queue: {
|
|
1017
1035
|
id: string;
|
|
@@ -1075,6 +1093,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
1075
1093
|
isTest?: boolean | undefined;
|
|
1076
1094
|
startedAt?: Date | undefined;
|
|
1077
1095
|
idempotencyKey?: string | undefined;
|
|
1096
|
+
maxAttempts?: number | undefined;
|
|
1078
1097
|
durationMs?: number | undefined;
|
|
1079
1098
|
costInCents?: number | undefined;
|
|
1080
1099
|
baseCostInCents?: number | undefined;
|
|
@@ -56,6 +56,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
56
56
|
createdAt: z.ZodDate;
|
|
57
57
|
startedAt: z.ZodDefault<z.ZodDate>;
|
|
58
58
|
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
59
|
+
maxAttempts: z.ZodOptional<z.ZodNumber>;
|
|
59
60
|
durationMs: z.ZodDefault<z.ZodNumber>;
|
|
60
61
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
61
62
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
@@ -72,6 +73,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
72
73
|
baseCostInCents: number;
|
|
73
74
|
context?: any;
|
|
74
75
|
idempotencyKey?: string | undefined;
|
|
76
|
+
maxAttempts?: number | undefined;
|
|
75
77
|
}, {
|
|
76
78
|
id: string;
|
|
77
79
|
payload: string;
|
|
@@ -82,6 +84,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
82
84
|
isTest?: boolean | undefined;
|
|
83
85
|
startedAt?: Date | undefined;
|
|
84
86
|
idempotencyKey?: string | undefined;
|
|
87
|
+
maxAttempts?: number | undefined;
|
|
85
88
|
durationMs?: number | undefined;
|
|
86
89
|
costInCents?: number | undefined;
|
|
87
90
|
baseCostInCents?: number | undefined;
|
|
@@ -188,6 +191,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
188
191
|
baseCostInCents: number;
|
|
189
192
|
context?: any;
|
|
190
193
|
idempotencyKey?: string | undefined;
|
|
194
|
+
maxAttempts?: number | undefined;
|
|
191
195
|
};
|
|
192
196
|
queue: {
|
|
193
197
|
id: string;
|
|
@@ -242,6 +246,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
242
246
|
isTest?: boolean | undefined;
|
|
243
247
|
startedAt?: Date | undefined;
|
|
244
248
|
idempotencyKey?: string | undefined;
|
|
249
|
+
maxAttempts?: number | undefined;
|
|
245
250
|
durationMs?: number | undefined;
|
|
246
251
|
costInCents?: number | undefined;
|
|
247
252
|
baseCostInCents?: number | undefined;
|
|
@@ -306,6 +311,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
306
311
|
baseCostInCents: number;
|
|
307
312
|
context?: any;
|
|
308
313
|
idempotencyKey?: string | undefined;
|
|
314
|
+
maxAttempts?: number | undefined;
|
|
309
315
|
};
|
|
310
316
|
queue: {
|
|
311
317
|
id: string;
|
|
@@ -364,6 +370,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
364
370
|
isTest?: boolean | undefined;
|
|
365
371
|
startedAt?: Date | undefined;
|
|
366
372
|
idempotencyKey?: string | undefined;
|
|
373
|
+
maxAttempts?: number | undefined;
|
|
367
374
|
durationMs?: number | undefined;
|
|
368
375
|
costInCents?: number | undefined;
|
|
369
376
|
baseCostInCents?: number | undefined;
|
|
@@ -448,6 +455,7 @@ declare const ProdTaskRunExecution: z.ZodObject<{
|
|
|
448
455
|
createdAt: z.ZodDate;
|
|
449
456
|
startedAt: z.ZodDefault<z.ZodDate>;
|
|
450
457
|
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
458
|
+
maxAttempts: z.ZodOptional<z.ZodNumber>;
|
|
451
459
|
durationMs: z.ZodDefault<z.ZodNumber>;
|
|
452
460
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
453
461
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
@@ -464,6 +472,7 @@ declare const ProdTaskRunExecution: z.ZodObject<{
|
|
|
464
472
|
baseCostInCents: number;
|
|
465
473
|
context?: any;
|
|
466
474
|
idempotencyKey?: string | undefined;
|
|
475
|
+
maxAttempts?: number | undefined;
|
|
467
476
|
}, {
|
|
468
477
|
id: string;
|
|
469
478
|
payload: string;
|
|
@@ -474,6 +483,7 @@ declare const ProdTaskRunExecution: z.ZodObject<{
|
|
|
474
483
|
isTest?: boolean | undefined;
|
|
475
484
|
startedAt?: Date | undefined;
|
|
476
485
|
idempotencyKey?: string | undefined;
|
|
486
|
+
maxAttempts?: number | undefined;
|
|
477
487
|
durationMs?: number | undefined;
|
|
478
488
|
costInCents?: number | undefined;
|
|
479
489
|
baseCostInCents?: number | undefined;
|
|
@@ -593,6 +603,7 @@ declare const ProdTaskRunExecution: z.ZodObject<{
|
|
|
593
603
|
baseCostInCents: number;
|
|
594
604
|
context?: any;
|
|
595
605
|
idempotencyKey?: string | undefined;
|
|
606
|
+
maxAttempts?: number | undefined;
|
|
596
607
|
};
|
|
597
608
|
queue: {
|
|
598
609
|
id: string;
|
|
@@ -652,6 +663,7 @@ declare const ProdTaskRunExecution: z.ZodObject<{
|
|
|
652
663
|
isTest?: boolean | undefined;
|
|
653
664
|
startedAt?: Date | undefined;
|
|
654
665
|
idempotencyKey?: string | undefined;
|
|
666
|
+
maxAttempts?: number | undefined;
|
|
655
667
|
durationMs?: number | undefined;
|
|
656
668
|
costInCents?: number | undefined;
|
|
657
669
|
baseCostInCents?: number | undefined;
|
|
@@ -739,6 +751,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
739
751
|
createdAt: z.ZodDate;
|
|
740
752
|
startedAt: z.ZodDefault<z.ZodDate>;
|
|
741
753
|
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
754
|
+
maxAttempts: z.ZodOptional<z.ZodNumber>;
|
|
742
755
|
durationMs: z.ZodDefault<z.ZodNumber>;
|
|
743
756
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
744
757
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
@@ -755,6 +768,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
755
768
|
baseCostInCents: number;
|
|
756
769
|
context?: any;
|
|
757
770
|
idempotencyKey?: string | undefined;
|
|
771
|
+
maxAttempts?: number | undefined;
|
|
758
772
|
}, {
|
|
759
773
|
id: string;
|
|
760
774
|
payload: string;
|
|
@@ -765,6 +779,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
765
779
|
isTest?: boolean | undefined;
|
|
766
780
|
startedAt?: Date | undefined;
|
|
767
781
|
idempotencyKey?: string | undefined;
|
|
782
|
+
maxAttempts?: number | undefined;
|
|
768
783
|
durationMs?: number | undefined;
|
|
769
784
|
costInCents?: number | undefined;
|
|
770
785
|
baseCostInCents?: number | undefined;
|
|
@@ -884,6 +899,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
884
899
|
baseCostInCents: number;
|
|
885
900
|
context?: any;
|
|
886
901
|
idempotencyKey?: string | undefined;
|
|
902
|
+
maxAttempts?: number | undefined;
|
|
887
903
|
};
|
|
888
904
|
queue: {
|
|
889
905
|
id: string;
|
|
@@ -943,6 +959,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
943
959
|
isTest?: boolean | undefined;
|
|
944
960
|
startedAt?: Date | undefined;
|
|
945
961
|
idempotencyKey?: string | undefined;
|
|
962
|
+
maxAttempts?: number | undefined;
|
|
946
963
|
durationMs?: number | undefined;
|
|
947
964
|
costInCents?: number | undefined;
|
|
948
965
|
baseCostInCents?: number | undefined;
|
|
@@ -1012,6 +1029,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
1012
1029
|
baseCostInCents: number;
|
|
1013
1030
|
context?: any;
|
|
1014
1031
|
idempotencyKey?: string | undefined;
|
|
1032
|
+
maxAttempts?: number | undefined;
|
|
1015
1033
|
};
|
|
1016
1034
|
queue: {
|
|
1017
1035
|
id: string;
|
|
@@ -1075,6 +1093,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
1075
1093
|
isTest?: boolean | undefined;
|
|
1076
1094
|
startedAt?: Date | undefined;
|
|
1077
1095
|
idempotencyKey?: string | undefined;
|
|
1096
|
+
maxAttempts?: number | undefined;
|
|
1078
1097
|
durationMs?: number | undefined;
|
|
1079
1098
|
costInCents?: number | undefined;
|
|
1080
1099
|
baseCostInCents?: number | undefined;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Context, Span, SpanOptions, Tracer } from '@opentelemetry/api';
|
|
2
|
+
import { Logger } from '@opentelemetry/api-logs';
|
|
3
|
+
|
|
4
|
+
type TriggerTracerConfig = {
|
|
5
|
+
name: string;
|
|
6
|
+
version: string;
|
|
7
|
+
} | {
|
|
8
|
+
tracer: Tracer;
|
|
9
|
+
logger: Logger;
|
|
10
|
+
};
|
|
11
|
+
declare class TriggerTracer {
|
|
12
|
+
private readonly _config;
|
|
13
|
+
constructor(_config: TriggerTracerConfig);
|
|
14
|
+
private _tracer;
|
|
15
|
+
private get tracer();
|
|
16
|
+
private _logger;
|
|
17
|
+
private get logger();
|
|
18
|
+
extractContext(traceContext?: Record<string, unknown>): Context;
|
|
19
|
+
startActiveSpan<T>(name: string, fn: (span: Span) => Promise<T>, options?: SpanOptions, ctx?: Context): Promise<T>;
|
|
20
|
+
startSpan(name: string, options?: SpanOptions, ctx?: Context): Span;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export { TriggerTracer as T };
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Context, Span, SpanOptions, Tracer } from '@opentelemetry/api';
|
|
2
|
+
import { Logger } from '@opentelemetry/api-logs';
|
|
3
|
+
|
|
4
|
+
type TriggerTracerConfig = {
|
|
5
|
+
name: string;
|
|
6
|
+
version: string;
|
|
7
|
+
} | {
|
|
8
|
+
tracer: Tracer;
|
|
9
|
+
logger: Logger;
|
|
10
|
+
};
|
|
11
|
+
declare class TriggerTracer {
|
|
12
|
+
private readonly _config;
|
|
13
|
+
constructor(_config: TriggerTracerConfig);
|
|
14
|
+
private _tracer;
|
|
15
|
+
private get tracer();
|
|
16
|
+
private _logger;
|
|
17
|
+
private get logger();
|
|
18
|
+
extractContext(traceContext?: Record<string, unknown>): Context;
|
|
19
|
+
startActiveSpan<T>(name: string, fn: (span: Span) => Promise<T>, options?: SpanOptions, ctx?: Context): Promise<T>;
|
|
20
|
+
startSpan(name: string, options?: SpanOptions, ctx?: Context): Span;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export { TriggerTracer as T };
|
package/dist/v3/dev/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { T as TaskRunExecutionResult, B as BatchTaskRunExecutionResult, a as TaskRunContext } from '../../common-
|
|
2
|
-
import { R as RuntimeManager } from '../../manager-
|
|
1
|
+
import { T as TaskRunExecutionResult, B as BatchTaskRunExecutionResult, a as TaskRunContext } from '../../common-fIyU5pmz.mjs';
|
|
2
|
+
import { R as RuntimeManager } from '../../manager-X_HrWQ7_.mjs';
|
|
3
3
|
import 'zod';
|
|
4
4
|
|
|
5
5
|
declare class DevRuntimeManager implements RuntimeManager {
|
package/dist/v3/dev/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { T as TaskRunExecutionResult, B as BatchTaskRunExecutionResult, a as TaskRunContext } from '../../common-
|
|
2
|
-
import { R as RuntimeManager } from '../../manager-
|
|
1
|
+
import { T as TaskRunExecutionResult, B as BatchTaskRunExecutionResult, a as TaskRunContext } from '../../common-fIyU5pmz.js';
|
|
2
|
+
import { R as RuntimeManager } from '../../manager-2ZQ3_twq.js';
|
|
3
3
|
import 'zod';
|
|
4
4
|
|
|
5
5
|
declare class DevRuntimeManager implements RuntimeManager {
|
package/dist/v3/index.d.mts
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
import * as zod from 'zod';
|
|
2
2
|
import { z } from 'zod';
|
|
3
|
-
import { CursorPageParams, ApiPromise, CursorPagePromise, OffsetLimitPagePromise } from './zodfetch.mjs';
|
|
4
|
-
export { APIHeaders, ApiConnectionError, ApiError, AuthenticationError, BadRequestError, ConflictError, CursorPage, CursorPageResponse, InternalServerError, NotFoundError, OffsetLimitPage, OffsetLimitPageParams, OffsetLimitPageResponse, Page, PageResponse, PermissionDeniedError, RateLimitError, UnprocessableEntityError } from './zodfetch.mjs';
|
|
3
|
+
import { CursorPageParams, ApiRequestOptions, ZodFetchOptions, ApiPromise, CursorPagePromise, OffsetLimitPagePromise } from './zodfetch.mjs';
|
|
4
|
+
export { APIHeaders, ApiConnectionError, ApiError, AuthenticationError, BadRequestError, ConflictError, CursorPage, CursorPageResponse, InternalServerError, NotFoundError, OffsetLimitPage, OffsetLimitPageParams, OffsetLimitPageResponse, Page, PageResponse, PermissionDeniedError, RateLimitError, UnprocessableEntityError, isRequestOptions } from './zodfetch.mjs';
|
|
5
5
|
import { RunStatus, TriggerTaskRequestBody, BatchTriggerTaskRequestBody, ListRunResponseItem, RescheduleRunRequestBody, CreateScheduleOptions, ListScheduleOptions, UpdateScheduleOptions, CreateEnvironmentVariableRequestBody, UpdateEnvironmentVariableRequestBody, Accessory } from './schemas/index.mjs';
|
|
6
6
|
export { AttemptStatus, BackgroundWorkerMetadata, BatchTriggerTaskResponse, CanceledRunResponse, CancellationSpanEvent, CreateAuthorizationCodeResponse, CreateAuthorizationCodeResponseSchema, CreateBackgroundWorkerRequestBody, CreateBackgroundWorkerResponse, CreateUploadPayloadUrlResponseBody, DeletedScheduleObject, DeploymentErrorData, EnvironmentVariable, EnvironmentVariableResponseBody, EnvironmentVariableValue, EnvironmentVariables, EventFilter, ExceptionEventProperties, ExceptionSpanEvent, ExternalBuildData, FetchRetryBackoffStrategy, FetchRetryByStatusOptions, FetchRetryHeadersStrategy, FetchRetryOptions, FetchRetryStrategy, FetchTimeoutOptions, GetBatchResponseBody, GetDeploymentResponseBody, GetEnvironmentVariablesResponseBody, GetPersonalAccessTokenRequest, GetPersonalAccessTokenRequestSchema, GetPersonalAccessTokenResponse, GetPersonalAccessTokenResponseSchema, GetProjectEnvResponse, GetProjectResponseBody, GetProjectsResponseBody, ImageDetailsMetadata, ImportEnvironmentVariablesRequestBody, InitializeDeploymentRequestBody, InitializeDeploymentResponseBody, ListRunResponse, ListSchedulesResult, OtherSpanEvent, PRIMARY_VARIANT, ReplayRunResponse, RetrieveRunResponse, RunEnvironmentDetails, RunScheduleDetails, ScheduleGenerator, ScheduleObject, ScheduledTaskPayload, SpanEvent, SpanEvents, SpanMessagingEvent, StartDeploymentIndexingRequestBody, StartDeploymentIndexingResponseBody, TaskEventStyle, TaskResource, TimezonesResult, TriggerTaskResponse, Variant, WhoAmIResponse, WhoAmIResponseSchema, isCancellationSpanEvent, isExceptionSpanEvent, stringPatternMatchers } from './schemas/index.mjs';
|
|
7
|
-
import { T as TaskRunExecutionResult, B as BatchTaskRunExecutionResult, c as TaskRunError, a as TaskRunContext } from '../common-
|
|
8
|
-
export { f as MachineConfig, d as MachineCpu, e as MachineMemory, g as MachinePreset, M as MachinePresetName, m as TaskRun, h as TaskRunBuiltInError, i as TaskRunCustomErrorObject, k as TaskRunErrorCodes, b as TaskRunExecution, o as TaskRunExecutionAttempt, t as TaskRunExecutionBatch, p as TaskRunExecutionEnvironment, q as TaskRunExecutionOrganization, r as TaskRunExecutionProject, s as TaskRunExecutionQueue, u as TaskRunExecutionRetry, n as TaskRunExecutionTask, v as TaskRunExecutionUsage, w as TaskRunFailedExecutionResult, l as TaskRunInternalError, j as TaskRunStringError, x as TaskRunSuccessfulExecutionResult } from '../common-
|
|
9
|
-
import { C as Clock,
|
|
10
|
-
export {
|
|
7
|
+
import { T as TaskRunExecutionResult, B as BatchTaskRunExecutionResult, c as TaskRunError, a as TaskRunContext } from '../common-fIyU5pmz.mjs';
|
|
8
|
+
export { f as MachineConfig, d as MachineCpu, e as MachineMemory, g as MachinePreset, M as MachinePresetName, m as TaskRun, h as TaskRunBuiltInError, i as TaskRunCustomErrorObject, k as TaskRunErrorCodes, b as TaskRunExecution, o as TaskRunExecutionAttempt, t as TaskRunExecutionBatch, p as TaskRunExecutionEnvironment, q as TaskRunExecutionOrganization, r as TaskRunExecutionProject, s as TaskRunExecutionQueue, u as TaskRunExecutionRetry, n as TaskRunExecutionTask, v as TaskRunExecutionUsage, w as TaskRunFailedExecutionResult, l as TaskRunInternalError, j as TaskRunStringError, x as TaskRunSuccessfulExecutionResult } from '../common-fIyU5pmz.mjs';
|
|
9
|
+
import { C as Clock, a as ClockTime, e as TaskLogger, b as TaskCatalog, T as TaskMetadataWithFunctions } from '../catalog-N-X0Te3W.mjs';
|
|
10
|
+
export { g as Context, F as FailureFnParams, m as HandleErrorArgs, i as HandleErrorFnParams, H as HandleErrorFunction, j as HandleErrorModificationOptions, k as HandleErrorResult, f as InitFnParams, I as InitOutput, L as LogLevel, M as MiddlewareFnParams, P as ProjectConfig, p as ResolveEnvironmentVariablesFunction, o as ResolveEnvironmentVariablesParams, n as ResolveEnvironmentVariablesResult, R as RunFnParams, S as StartFnParams, h as SuccessFnParams, u as usage } from '../catalog-N-X0Te3W.mjs';
|
|
11
11
|
import { Attributes, Span } from '@opentelemetry/api';
|
|
12
|
-
import { R as RuntimeManager } from '../manager-
|
|
13
|
-
import { B as BackgroundWorkerProperties } from '../messages-
|
|
14
|
-
export { c as BackgroundWorkerClientMessages, b as BackgroundWorkerServerMessages, i as ClientToSharedQueueMessages, m as CoordinatorSocketData, C as CoordinatorToPlatformMessages, k as CoordinatorToProdWorkerMessages, h as PlatformToCoordinatorMessages, g as PlatformToProviderMessages, a as ProdChildToWorkerMessages, l as ProdWorkerSocketData, P as ProdWorkerToChildMessages, j as ProdWorkerToCoordinatorMessages, f as ProviderToPlatformMessages, S as SharedQueueToClientMessages, T as TaskMetadataFailedToParseData, U as UncaughtExceptionMessage, e as childToWorkerMessages, d as clientWebsocketMessages, s as serverWebsocketMessages, w as workerToChildMessages } from '../messages-
|
|
15
|
-
import { T as TaskFileMetadata, a as TaskMetadataWithFilePath, R as RetryOptions } from '../schemas-
|
|
16
|
-
export { C as Config, E as EnvironmentType, F as FixedWindowRateLimit, g as PostStartCauses, h as PreStopCauses, P as Prettify, d as ProdTaskRunExecution, e as ProdTaskRunExecutionPayload, Q as QueueOptions, f as RateLimitOptions, k as RequireKeys, i as ResolvedConfig, S as SlidingWindowRateLimit, b as TaskMetadata, j as TaskRunExecutionLazyAttemptPayload, c as TaskRunExecutionPayload, W as WaitReason } from '../schemas-
|
|
12
|
+
import { R as RuntimeManager } from '../manager-X_HrWQ7_.mjs';
|
|
13
|
+
import { B as BackgroundWorkerProperties } from '../messages-Sggr4tid.mjs';
|
|
14
|
+
export { c as BackgroundWorkerClientMessages, b as BackgroundWorkerServerMessages, i as ClientToSharedQueueMessages, m as CoordinatorSocketData, C as CoordinatorToPlatformMessages, k as CoordinatorToProdWorkerMessages, h as PlatformToCoordinatorMessages, g as PlatformToProviderMessages, a as ProdChildToWorkerMessages, l as ProdWorkerSocketData, P as ProdWorkerToChildMessages, j as ProdWorkerToCoordinatorMessages, f as ProviderToPlatformMessages, S as SharedQueueToClientMessages, T as TaskMetadataFailedToParseData, U as UncaughtExceptionMessage, e as childToWorkerMessages, d as clientWebsocketMessages, s as serverWebsocketMessages, w as workerToChildMessages } from '../messages-Sggr4tid.mjs';
|
|
15
|
+
import { T as TaskFileMetadata, a as TaskMetadataWithFilePath, R as RetryOptions } from '../schemas-Zy7mGFgD.mjs';
|
|
16
|
+
export { C as Config, E as EnvironmentType, F as FixedWindowRateLimit, g as PostStartCauses, h as PreStopCauses, P as Prettify, d as ProdTaskRunExecution, e as ProdTaskRunExecutionPayload, Q as QueueOptions, f as RateLimitOptions, k as RequireKeys, i as ResolvedConfig, S as SlidingWindowRateLimit, b as TaskMetadata, j as TaskRunExecutionLazyAttemptPayload, c as TaskRunExecutionPayload, W as WaitReason } from '../schemas-Zy7mGFgD.mjs';
|
|
17
17
|
export { formatDuration, formatDurationInDays, formatDurationMilliseconds, formatDurationNanoseconds, millisecondsToNanoseconds, nanosecondsToMilliseconds } from './utils/durations.mjs';
|
|
18
|
+
import { T as TriggerTracer } from '../tracer-N0p2Fuuv.mjs';
|
|
18
19
|
export { e as eventFilterMatches } from '../eventFilterMatches-2kHImluE.mjs';
|
|
19
20
|
import '@opentelemetry/api-logs';
|
|
20
21
|
import '@opentelemetry/instrumentation';
|
|
@@ -54,6 +55,7 @@ interface ListProjectRunsQueryParams extends CursorPageParams, ListRunsQueryPara
|
|
|
54
55
|
type TriggerOptions = {
|
|
55
56
|
spanParentAsLink?: boolean;
|
|
56
57
|
};
|
|
58
|
+
|
|
57
59
|
/**
|
|
58
60
|
* Trigger.dev v3 API client
|
|
59
61
|
*/
|
|
@@ -61,23 +63,24 @@ declare class ApiClient {
|
|
|
61
63
|
#private;
|
|
62
64
|
private readonly accessToken;
|
|
63
65
|
private readonly baseUrl;
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
66
|
+
private readonly defaultRequestOptions;
|
|
67
|
+
constructor(baseUrl: string, accessToken: string, requestOptions?: ApiRequestOptions);
|
|
68
|
+
getRunResult(runId: string, requestOptions?: ZodFetchOptions): Promise<TaskRunExecutionResult | undefined>;
|
|
69
|
+
getBatchResults(batchId: string, requestOptions?: ZodFetchOptions): Promise<BatchTaskRunExecutionResult | undefined>;
|
|
70
|
+
triggerTask(taskId: string, body: TriggerTaskRequestBody, options?: TriggerOptions, requestOptions?: ZodFetchOptions): ApiPromise<{
|
|
68
71
|
id: string;
|
|
69
72
|
}>;
|
|
70
|
-
batchTriggerTask(taskId: string, body: BatchTriggerTaskRequestBody, options?: TriggerOptions): ApiPromise<{
|
|
73
|
+
batchTriggerTask(taskId: string, body: BatchTriggerTaskRequestBody, options?: TriggerOptions, requestOptions?: ZodFetchOptions): ApiPromise<{
|
|
71
74
|
batchId: string;
|
|
72
75
|
runs: string[];
|
|
73
76
|
}>;
|
|
74
|
-
createUploadPayloadUrl(filename: string): ApiPromise<{
|
|
77
|
+
createUploadPayloadUrl(filename: string, requestOptions?: ZodFetchOptions): ApiPromise<{
|
|
75
78
|
presignedUrl: string;
|
|
76
79
|
}>;
|
|
77
|
-
getPayloadUrl(filename: string): ApiPromise<{
|
|
80
|
+
getPayloadUrl(filename: string, requestOptions?: ZodFetchOptions): ApiPromise<{
|
|
78
81
|
presignedUrl: string;
|
|
79
82
|
}>;
|
|
80
|
-
retrieveRun(runId: string): ApiPromise<{
|
|
83
|
+
retrieveRun(runId: string, requestOptions?: ZodFetchOptions): ApiPromise<{
|
|
81
84
|
status: "CANCELED" | "COMPLETED" | "FAILED" | "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
82
85
|
id: string;
|
|
83
86
|
isTest: boolean;
|
|
@@ -125,15 +128,15 @@ declare class ApiClient {
|
|
|
125
128
|
ttl?: string | undefined;
|
|
126
129
|
expiredAt?: Date | undefined;
|
|
127
130
|
}>;
|
|
128
|
-
listRuns(query?: ListRunsQueryParams): CursorPagePromise<typeof ListRunResponseItem>;
|
|
129
|
-
listProjectRuns(projectRef: string, query?: ListProjectRunsQueryParams): CursorPagePromise<typeof ListRunResponseItem>;
|
|
130
|
-
replayRun(runId: string): ApiPromise<{
|
|
131
|
+
listRuns(query?: ListRunsQueryParams, requestOptions?: ZodFetchOptions): CursorPagePromise<typeof ListRunResponseItem>;
|
|
132
|
+
listProjectRuns(projectRef: string, query?: ListProjectRunsQueryParams, requestOptions?: ZodFetchOptions): CursorPagePromise<typeof ListRunResponseItem>;
|
|
133
|
+
replayRun(runId: string, requestOptions?: ZodFetchOptions): ApiPromise<{
|
|
131
134
|
id: string;
|
|
132
135
|
}>;
|
|
133
|
-
cancelRun(runId: string): ApiPromise<{
|
|
136
|
+
cancelRun(runId: string, requestOptions?: ZodFetchOptions): ApiPromise<{
|
|
134
137
|
id: string;
|
|
135
138
|
}>;
|
|
136
|
-
rescheduleRun(runId: string, body: RescheduleRunRequestBody): ApiPromise<{
|
|
139
|
+
rescheduleRun(runId: string, body: RescheduleRunRequestBody, requestOptions?: ZodFetchOptions): ApiPromise<{
|
|
137
140
|
status: "CANCELED" | "COMPLETED" | "FAILED" | "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
138
141
|
id: string;
|
|
139
142
|
isTest: boolean;
|
|
@@ -181,7 +184,7 @@ declare class ApiClient {
|
|
|
181
184
|
ttl?: string | undefined;
|
|
182
185
|
expiredAt?: Date | undefined;
|
|
183
186
|
}>;
|
|
184
|
-
createSchedule(options: CreateScheduleOptions): ApiPromise<{
|
|
187
|
+
createSchedule(options: CreateScheduleOptions, requestOptions?: ZodFetchOptions): ApiPromise<{
|
|
185
188
|
id: string;
|
|
186
189
|
task: string;
|
|
187
190
|
timezone: string;
|
|
@@ -200,7 +203,7 @@ declare class ApiClient {
|
|
|
200
203
|
externalId?: string | null | undefined;
|
|
201
204
|
nextRun?: Date | null | undefined;
|
|
202
205
|
}>;
|
|
203
|
-
listSchedules(options?: ListScheduleOptions): OffsetLimitPagePromise<zod.ZodObject<{
|
|
206
|
+
listSchedules(options?: ListScheduleOptions, requestOptions?: ZodFetchOptions): OffsetLimitPagePromise<zod.ZodObject<{
|
|
204
207
|
id: zod.ZodString;
|
|
205
208
|
task: zod.ZodString;
|
|
206
209
|
active: zod.ZodBoolean;
|
|
@@ -271,7 +274,7 @@ declare class ApiClient {
|
|
|
271
274
|
externalId?: string | null | undefined;
|
|
272
275
|
nextRun?: Date | null | undefined;
|
|
273
276
|
}>>;
|
|
274
|
-
retrieveSchedule(scheduleId: string): ApiPromise<{
|
|
277
|
+
retrieveSchedule(scheduleId: string, requestOptions?: ZodFetchOptions): ApiPromise<{
|
|
275
278
|
id: string;
|
|
276
279
|
task: string;
|
|
277
280
|
timezone: string;
|
|
@@ -290,7 +293,7 @@ declare class ApiClient {
|
|
|
290
293
|
externalId?: string | null | undefined;
|
|
291
294
|
nextRun?: Date | null | undefined;
|
|
292
295
|
}>;
|
|
293
|
-
updateSchedule(scheduleId: string, options: UpdateScheduleOptions): ApiPromise<{
|
|
296
|
+
updateSchedule(scheduleId: string, options: UpdateScheduleOptions, requestOptions?: ZodFetchOptions): ApiPromise<{
|
|
294
297
|
id: string;
|
|
295
298
|
task: string;
|
|
296
299
|
timezone: string;
|
|
@@ -309,7 +312,7 @@ declare class ApiClient {
|
|
|
309
312
|
externalId?: string | null | undefined;
|
|
310
313
|
nextRun?: Date | null | undefined;
|
|
311
314
|
}>;
|
|
312
|
-
deactivateSchedule(scheduleId: string): ApiPromise<{
|
|
315
|
+
deactivateSchedule(scheduleId: string, requestOptions?: ZodFetchOptions): ApiPromise<{
|
|
313
316
|
id: string;
|
|
314
317
|
task: string;
|
|
315
318
|
timezone: string;
|
|
@@ -328,7 +331,7 @@ declare class ApiClient {
|
|
|
328
331
|
externalId?: string | null | undefined;
|
|
329
332
|
nextRun?: Date | null | undefined;
|
|
330
333
|
}>;
|
|
331
|
-
activateSchedule(scheduleId: string): ApiPromise<{
|
|
334
|
+
activateSchedule(scheduleId: string, requestOptions?: ZodFetchOptions): ApiPromise<{
|
|
332
335
|
id: string;
|
|
333
336
|
task: string;
|
|
334
337
|
timezone: string;
|
|
@@ -347,29 +350,30 @@ declare class ApiClient {
|
|
|
347
350
|
externalId?: string | null | undefined;
|
|
348
351
|
nextRun?: Date | null | undefined;
|
|
349
352
|
}>;
|
|
350
|
-
deleteSchedule(scheduleId: string): ApiPromise<{
|
|
353
|
+
deleteSchedule(scheduleId: string, requestOptions?: ZodFetchOptions): ApiPromise<{
|
|
351
354
|
id: string;
|
|
352
355
|
}>;
|
|
353
|
-
listEnvVars(projectRef: string, slug: string): ApiPromise<{
|
|
356
|
+
listEnvVars(projectRef: string, slug: string, requestOptions?: ZodFetchOptions): ApiPromise<{
|
|
354
357
|
value: string;
|
|
355
358
|
name: string;
|
|
356
359
|
}[]>;
|
|
357
|
-
importEnvVars(projectRef: string, slug: string, body: ImportEnvironmentVariablesParams): ApiPromise<{
|
|
360
|
+
importEnvVars(projectRef: string, slug: string, body: ImportEnvironmentVariablesParams, requestOptions?: ZodFetchOptions): ApiPromise<{
|
|
358
361
|
success: boolean;
|
|
359
362
|
}>;
|
|
360
|
-
retrieveEnvVar(projectRef: string, slug: string, key: string): ApiPromise<{
|
|
363
|
+
retrieveEnvVar(projectRef: string, slug: string, key: string, requestOptions?: ZodFetchOptions): ApiPromise<{
|
|
361
364
|
value: string;
|
|
362
365
|
}>;
|
|
363
|
-
createEnvVar(projectRef: string, slug: string, body: CreateEnvironmentVariableRequestBody): ApiPromise<{
|
|
366
|
+
createEnvVar(projectRef: string, slug: string, body: CreateEnvironmentVariableRequestBody, requestOptions?: ZodFetchOptions): ApiPromise<{
|
|
364
367
|
success: boolean;
|
|
365
368
|
}>;
|
|
366
|
-
updateEnvVar(projectRef: string, slug: string, key: string, body: UpdateEnvironmentVariableRequestBody): ApiPromise<{
|
|
369
|
+
updateEnvVar(projectRef: string, slug: string, key: string, body: UpdateEnvironmentVariableRequestBody, requestOptions?: ZodFetchOptions): ApiPromise<{
|
|
367
370
|
success: boolean;
|
|
368
371
|
}>;
|
|
369
|
-
deleteEnvVar(projectRef: string, slug: string, key: string): ApiPromise<{
|
|
372
|
+
deleteEnvVar(projectRef: string, slug: string, key: string, requestOptions?: ZodFetchOptions): ApiPromise<{
|
|
370
373
|
success: boolean;
|
|
371
374
|
}>;
|
|
372
375
|
}
|
|
376
|
+
declare function mergeRequestOptions(defaultOptions: ZodFetchOptions, options?: ApiRequestOptions): ZodFetchOptions;
|
|
373
377
|
|
|
374
378
|
declare class ClockAPI {
|
|
375
379
|
#private;
|
|
@@ -384,6 +388,9 @@ declare class ClockAPI {
|
|
|
384
388
|
/** Entrypoint for clock API */
|
|
385
389
|
declare const clock: ClockAPI;
|
|
386
390
|
|
|
391
|
+
declare class AbortTaskRunError extends Error {
|
|
392
|
+
constructor(message: string);
|
|
393
|
+
}
|
|
387
394
|
declare function parseError(error: unknown): TaskRunError;
|
|
388
395
|
declare function createErrorTaskError(error: TaskRunError): any;
|
|
389
396
|
declare const SerializedError: z.ZodObject<{
|
|
@@ -401,6 +408,7 @@ declare const SerializedError: z.ZodObject<{
|
|
|
401
408
|
}>;
|
|
402
409
|
type SerializedError = z.infer<typeof SerializedError>;
|
|
403
410
|
declare function createJsonErrorObject(error: TaskRunError): SerializedError;
|
|
411
|
+
declare function sanitizeError(error: TaskRunError): TaskRunError;
|
|
404
412
|
declare function correctErrorStackTrace(stackTrace: string, projectDir?: string, options?: {
|
|
405
413
|
removeFirstLine?: boolean;
|
|
406
414
|
isDev?: boolean;
|
|
@@ -493,6 +501,7 @@ declare const taskContext: TaskContextAPI;
|
|
|
493
501
|
type ApiClientConfiguration = {
|
|
494
502
|
baseURL?: string;
|
|
495
503
|
secretKey?: string;
|
|
504
|
+
requestOptions?: ApiRequestOptions;
|
|
496
505
|
};
|
|
497
506
|
|
|
498
507
|
declare class APIClientManagerAPI {
|
|
@@ -560,6 +569,9 @@ declare const SemanticInternalAttributes: {
|
|
|
560
569
|
IDEMPOTENCY_KEY: string;
|
|
561
570
|
USAGE_DURATION_MS: string;
|
|
562
571
|
USAGE_COST_IN_CENTS: string;
|
|
572
|
+
RATE_LIMIT_LIMIT: string;
|
|
573
|
+
RATE_LIMIT_REMAINING: string;
|
|
574
|
+
RATE_LIMIT_RESET: string;
|
|
563
575
|
};
|
|
564
576
|
|
|
565
577
|
declare class TaskCatalogAPI {
|
|
@@ -650,4 +662,4 @@ declare function createPacketAttributes(packet: IOPacket, dataKey: string, dataT
|
|
|
650
662
|
declare function createPacketAttributesAsJson(data: any, dataType: string): Promise<Attributes>;
|
|
651
663
|
declare function prettyPrintPacket(rawData: any, dataType?: string): Promise<string>;
|
|
652
664
|
|
|
653
|
-
export { Accessory, ApiClient, type ApiClientConfiguration, ApiPromise, BackgroundWorkerProperties, BatchTaskRunExecutionResult, BatchTriggerTaskRequestBody, type CreateEnvironmentVariableParams, CreateEnvironmentVariableRequestBody, CreateScheduleOptions, CursorPageParams, CursorPagePromise, type IOPacket, type ImportEnvironmentVariablesParams, type ListProjectRunsQueryParams, ListRunResponseItem, type ListRunsQueryParams, ListScheduleOptions, NULL_SENTINEL, OFFLOAD_IO_PACKET_LENGTH_LIMIT, OTEL_ATTRIBUTE_PER_EVENT_COUNT_LIMIT, OTEL_ATTRIBUTE_PER_LINK_COUNT_LIMIT, OTEL_LINK_COUNT_LIMIT, OTEL_LOG_ATTRIBUTE_COUNT_LIMIT, OTEL_LOG_ATTRIBUTE_VALUE_LENGTH_LIMIT, OTEL_SPAN_ATTRIBUTE_COUNT_LIMIT, OTEL_SPAN_ATTRIBUTE_VALUE_LENGTH_LIMIT, OTEL_SPAN_EVENT_COUNT_LIMIT, OffsetLimitPagePromise, RescheduleRunRequestBody, RetryOptions, RunStatus, SemanticInternalAttributes, SerializedError, TaskFileMetadata, TaskMetadataWithFilePath, TaskMetadataWithFunctions, TaskRunContext, TaskRunError, TaskRunExecutionResult, type TriggerOptions, TriggerTaskRequestBody, TriggerTracer, type UpdateEnvironmentVariableParams, UpdateEnvironmentVariableRequestBody, UpdateScheduleOptions, accessoryAttributes, apiClientManager, calculateNextRetryDelay, calculateResetAt, clock, conditionallyExportPacket, conditionallyImportPacket, correctErrorStackTrace, createErrorTaskError, createJsonErrorObject, createPacketAttributes, createPacketAttributesAsJson, defaultFetchRetryOptions, defaultRetryOptions, detectDependencyVersion, flattenAttributes, groupTaskMetadataIssuesByTask, imposeAttributeLimits, logger, omit, packetRequiresOffloading, parseError, parsePacket, prettyPrintPacket, primitiveValueOrflattenedAttributes, runtime, stringifyIO, taskCatalog, taskContext, unflattenAttributes };
|
|
665
|
+
export { AbortTaskRunError, Accessory, ApiClient, type ApiClientConfiguration, ApiPromise, ApiRequestOptions, BackgroundWorkerProperties, BatchTaskRunExecutionResult, BatchTriggerTaskRequestBody, type CreateEnvironmentVariableParams, CreateEnvironmentVariableRequestBody, CreateScheduleOptions, CursorPageParams, CursorPagePromise, type IOPacket, type ImportEnvironmentVariablesParams, type ListProjectRunsQueryParams, ListRunResponseItem, type ListRunsQueryParams, ListScheduleOptions, NULL_SENTINEL, OFFLOAD_IO_PACKET_LENGTH_LIMIT, OTEL_ATTRIBUTE_PER_EVENT_COUNT_LIMIT, OTEL_ATTRIBUTE_PER_LINK_COUNT_LIMIT, OTEL_LINK_COUNT_LIMIT, OTEL_LOG_ATTRIBUTE_COUNT_LIMIT, OTEL_LOG_ATTRIBUTE_VALUE_LENGTH_LIMIT, OTEL_SPAN_ATTRIBUTE_COUNT_LIMIT, OTEL_SPAN_ATTRIBUTE_VALUE_LENGTH_LIMIT, OTEL_SPAN_EVENT_COUNT_LIMIT, OffsetLimitPagePromise, RescheduleRunRequestBody, RetryOptions, RunStatus, SemanticInternalAttributes, SerializedError, TaskFileMetadata, TaskMetadataWithFilePath, TaskMetadataWithFunctions, TaskRunContext, TaskRunError, TaskRunExecutionResult, type TriggerOptions, TriggerTaskRequestBody, TriggerTracer, type UpdateEnvironmentVariableParams, UpdateEnvironmentVariableRequestBody, UpdateScheduleOptions, accessoryAttributes, apiClientManager, calculateNextRetryDelay, calculateResetAt, clock, conditionallyExportPacket, conditionallyImportPacket, correctErrorStackTrace, createErrorTaskError, createJsonErrorObject, createPacketAttributes, createPacketAttributesAsJson, defaultFetchRetryOptions, defaultRetryOptions, detectDependencyVersion, flattenAttributes, groupTaskMetadataIssuesByTask, imposeAttributeLimits, logger, mergeRequestOptions, omit, packetRequiresOffloading, parseError, parsePacket, prettyPrintPacket, primitiveValueOrflattenedAttributes, runtime, sanitizeError, stringifyIO, taskCatalog, taskContext, unflattenAttributes };
|