@trigger.dev/core 0.0.0-v3-prerelease-20241009142012 → 0.0.0-v3-prerelease-20241012123509
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/commonjs/v3/apiClient/index.d.ts +27 -27
- package/dist/commonjs/v3/schemas/api.d.ts +108 -108
- package/dist/commonjs/v3/schemas/build.d.ts +50 -50
- package/dist/commonjs/v3/schemas/messages.d.ts +1503 -1500
- package/dist/commonjs/v3/schemas/messages.js +1 -0
- package/dist/commonjs/v3/schemas/messages.js.map +1 -1
- package/dist/commonjs/v3/schemas/resources.d.ts +20 -20
- package/dist/commonjs/v3/schemas/schemas.d.ts +175 -175
- package/dist/esm/v3/apiClient/index.d.ts +27 -27
- package/dist/esm/v3/schemas/api.d.ts +108 -108
- package/dist/esm/v3/schemas/build.d.ts +50 -50
- package/dist/esm/v3/schemas/messages.d.ts +1503 -1500
- package/dist/esm/v3/schemas/messages.js +1 -0
- package/dist/esm/v3/schemas/messages.js.map +1 -1
- package/dist/esm/v3/schemas/resources.d.ts +20 -20
- package/dist/esm/v3/schemas/schemas.d.ts +175 -175
- package/package.json +1 -1
|
@@ -35,10 +35,10 @@ export declare class ApiClient {
|
|
|
35
35
|
retrieveRun(runId: string, requestOptions?: ZodFetchOptions): import("./core.js").ApiPromise<{
|
|
36
36
|
status: "CANCELED" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
37
37
|
id: string;
|
|
38
|
-
tags: string[];
|
|
39
38
|
isTest: boolean;
|
|
40
|
-
createdAt: Date;
|
|
41
39
|
durationMs: number;
|
|
40
|
+
tags: string[];
|
|
41
|
+
createdAt: Date;
|
|
42
42
|
costInCents: number;
|
|
43
43
|
baseCostInCents: number;
|
|
44
44
|
depth: number;
|
|
@@ -55,10 +55,10 @@ export declare class ApiClient {
|
|
|
55
55
|
root?: {
|
|
56
56
|
status: "CANCELED" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
57
57
|
id: string;
|
|
58
|
-
tags: string[];
|
|
59
58
|
isTest: boolean;
|
|
60
|
-
createdAt: Date;
|
|
61
59
|
durationMs: number;
|
|
60
|
+
tags: string[];
|
|
61
|
+
createdAt: Date;
|
|
62
62
|
costInCents: number;
|
|
63
63
|
baseCostInCents: number;
|
|
64
64
|
depth: number;
|
|
@@ -84,10 +84,10 @@ export declare class ApiClient {
|
|
|
84
84
|
parent?: {
|
|
85
85
|
status: "CANCELED" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
86
86
|
id: string;
|
|
87
|
-
tags: string[];
|
|
88
87
|
isTest: boolean;
|
|
89
|
-
createdAt: Date;
|
|
90
88
|
durationMs: number;
|
|
89
|
+
tags: string[];
|
|
90
|
+
createdAt: Date;
|
|
91
91
|
costInCents: number;
|
|
92
92
|
baseCostInCents: number;
|
|
93
93
|
depth: number;
|
|
@@ -113,10 +113,10 @@ export declare class ApiClient {
|
|
|
113
113
|
children?: {
|
|
114
114
|
status: "CANCELED" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
115
115
|
id: string;
|
|
116
|
-
tags: string[];
|
|
117
116
|
isTest: boolean;
|
|
118
|
-
createdAt: Date;
|
|
119
117
|
durationMs: number;
|
|
118
|
+
tags: string[];
|
|
119
|
+
createdAt: Date;
|
|
120
120
|
costInCents: number;
|
|
121
121
|
baseCostInCents: number;
|
|
122
122
|
depth: number;
|
|
@@ -161,8 +161,8 @@ export declare class ApiClient {
|
|
|
161
161
|
id: string;
|
|
162
162
|
generator: {
|
|
163
163
|
type: "CRON";
|
|
164
|
-
description: string;
|
|
165
164
|
expression: string;
|
|
165
|
+
description: string;
|
|
166
166
|
};
|
|
167
167
|
externalId?: string | undefined;
|
|
168
168
|
deduplicationKey?: string | undefined;
|
|
@@ -188,10 +188,10 @@ export declare class ApiClient {
|
|
|
188
188
|
rescheduleRun(runId: string, body: RescheduleRunRequestBody, requestOptions?: ZodFetchOptions): import("./core.js").ApiPromise<{
|
|
189
189
|
status: "CANCELED" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
190
190
|
id: string;
|
|
191
|
-
tags: string[];
|
|
192
191
|
isTest: boolean;
|
|
193
|
-
createdAt: Date;
|
|
194
192
|
durationMs: number;
|
|
193
|
+
tags: string[];
|
|
194
|
+
createdAt: Date;
|
|
195
195
|
costInCents: number;
|
|
196
196
|
baseCostInCents: number;
|
|
197
197
|
depth: number;
|
|
@@ -208,10 +208,10 @@ export declare class ApiClient {
|
|
|
208
208
|
root?: {
|
|
209
209
|
status: "CANCELED" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
210
210
|
id: string;
|
|
211
|
-
tags: string[];
|
|
212
211
|
isTest: boolean;
|
|
213
|
-
createdAt: Date;
|
|
214
212
|
durationMs: number;
|
|
213
|
+
tags: string[];
|
|
214
|
+
createdAt: Date;
|
|
215
215
|
costInCents: number;
|
|
216
216
|
baseCostInCents: number;
|
|
217
217
|
depth: number;
|
|
@@ -237,10 +237,10 @@ export declare class ApiClient {
|
|
|
237
237
|
parent?: {
|
|
238
238
|
status: "CANCELED" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
239
239
|
id: string;
|
|
240
|
-
tags: string[];
|
|
241
240
|
isTest: boolean;
|
|
242
|
-
createdAt: Date;
|
|
243
241
|
durationMs: number;
|
|
242
|
+
tags: string[];
|
|
243
|
+
createdAt: Date;
|
|
244
244
|
costInCents: number;
|
|
245
245
|
baseCostInCents: number;
|
|
246
246
|
depth: number;
|
|
@@ -266,10 +266,10 @@ export declare class ApiClient {
|
|
|
266
266
|
children?: {
|
|
267
267
|
status: "CANCELED" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
268
268
|
id: string;
|
|
269
|
-
tags: string[];
|
|
270
269
|
isTest: boolean;
|
|
271
|
-
createdAt: Date;
|
|
272
270
|
durationMs: number;
|
|
271
|
+
tags: string[];
|
|
272
|
+
createdAt: Date;
|
|
273
273
|
costInCents: number;
|
|
274
274
|
baseCostInCents: number;
|
|
275
275
|
depth: number;
|
|
@@ -314,8 +314,8 @@ export declare class ApiClient {
|
|
|
314
314
|
id: string;
|
|
315
315
|
generator: {
|
|
316
316
|
type: "CRON";
|
|
317
|
-
description: string;
|
|
318
317
|
expression: string;
|
|
318
|
+
description: string;
|
|
319
319
|
};
|
|
320
320
|
externalId?: string | undefined;
|
|
321
321
|
deduplicationKey?: string | undefined;
|
|
@@ -341,8 +341,8 @@ export declare class ApiClient {
|
|
|
341
341
|
active: boolean;
|
|
342
342
|
generator: {
|
|
343
343
|
type: "CRON";
|
|
344
|
-
description: string;
|
|
345
344
|
expression: string;
|
|
345
|
+
description: string;
|
|
346
346
|
};
|
|
347
347
|
environments: {
|
|
348
348
|
type: string;
|
|
@@ -366,12 +366,12 @@ export declare class ApiClient {
|
|
|
366
366
|
description: z.ZodString;
|
|
367
367
|
}, "strip", z.ZodTypeAny, {
|
|
368
368
|
type: "CRON";
|
|
369
|
-
description: string;
|
|
370
369
|
expression: string;
|
|
370
|
+
description: string;
|
|
371
371
|
}, {
|
|
372
372
|
type: "CRON";
|
|
373
|
-
description: string;
|
|
374
373
|
expression: string;
|
|
374
|
+
description: string;
|
|
375
375
|
}>;
|
|
376
376
|
timezone: z.ZodString;
|
|
377
377
|
nextRun: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -396,8 +396,8 @@ export declare class ApiClient {
|
|
|
396
396
|
active: boolean;
|
|
397
397
|
generator: {
|
|
398
398
|
type: "CRON";
|
|
399
|
-
description: string;
|
|
400
399
|
expression: string;
|
|
400
|
+
description: string;
|
|
401
401
|
};
|
|
402
402
|
environments: {
|
|
403
403
|
type: string;
|
|
@@ -415,8 +415,8 @@ export declare class ApiClient {
|
|
|
415
415
|
active: boolean;
|
|
416
416
|
generator: {
|
|
417
417
|
type: "CRON";
|
|
418
|
-
description: string;
|
|
419
418
|
expression: string;
|
|
419
|
+
description: string;
|
|
420
420
|
};
|
|
421
421
|
environments: {
|
|
422
422
|
type: string;
|
|
@@ -435,8 +435,8 @@ export declare class ApiClient {
|
|
|
435
435
|
active: boolean;
|
|
436
436
|
generator: {
|
|
437
437
|
type: "CRON";
|
|
438
|
-
description: string;
|
|
439
438
|
expression: string;
|
|
439
|
+
description: string;
|
|
440
440
|
};
|
|
441
441
|
environments: {
|
|
442
442
|
type: string;
|
|
@@ -455,8 +455,8 @@ export declare class ApiClient {
|
|
|
455
455
|
active: boolean;
|
|
456
456
|
generator: {
|
|
457
457
|
type: "CRON";
|
|
458
|
-
description: string;
|
|
459
458
|
expression: string;
|
|
459
|
+
description: string;
|
|
460
460
|
};
|
|
461
461
|
environments: {
|
|
462
462
|
type: string;
|
|
@@ -475,8 +475,8 @@ export declare class ApiClient {
|
|
|
475
475
|
active: boolean;
|
|
476
476
|
generator: {
|
|
477
477
|
type: "CRON";
|
|
478
|
-
description: string;
|
|
479
478
|
expression: string;
|
|
479
|
+
description: string;
|
|
480
480
|
};
|
|
481
481
|
environments: {
|
|
482
482
|
type: string;
|
|
@@ -495,8 +495,8 @@ export declare class ApiClient {
|
|
|
495
495
|
active: boolean;
|
|
496
496
|
generator: {
|
|
497
497
|
type: "CRON";
|
|
498
|
-
description: string;
|
|
499
498
|
expression: string;
|
|
499
|
+
description: string;
|
|
500
500
|
};
|
|
501
501
|
environments: {
|
|
502
502
|
type: string;
|