@trigger.dev/sdk 0.0.0-prerelease-20250116195421 → 0.0.0-prerelease-20250204161430
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/apiClient.d.ts +146 -146
- package/dist/commonjs/io.d.ts +12 -12
- package/dist/commonjs/status.d.ts +4 -4
- package/dist/commonjs/triggerClient.d.ts +43 -41
- package/dist/commonjs/triggers/notifications.d.ts +8 -8
- package/dist/commonjs/triggers/scheduled.d.ts +2 -2
- package/dist/commonjs/v3/runs.d.ts +15 -15
- package/dist/commonjs/v3/runs.js +2 -3
- package/dist/commonjs/v3/runs.js.map +1 -1
- package/dist/commonjs/version.js +1 -1
- package/dist/esm/apiClient.d.ts +101 -101
- package/dist/esm/io.d.ts +13 -13
- package/dist/esm/status.d.ts +3 -3
- package/dist/esm/triggerClient.d.ts +33 -33
- package/dist/esm/triggers/notifications.d.ts +4 -4
- package/dist/esm/triggers/scheduled.d.ts +4 -4
- package/dist/esm/types.d.ts +2 -2
- package/dist/esm/v3/runs.d.ts +26 -26
- package/dist/esm/v3/runs.js +2 -3
- package/dist/esm/v3/runs.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/package.json +2 -2
package/dist/commonjs/io.d.ts
CHANGED
|
@@ -242,9 +242,9 @@ export declare class IO {
|
|
|
242
242
|
* @param options Options for sending the event.
|
|
243
243
|
*/
|
|
244
244
|
sendEvent(cacheKey: string | any[], event: SendEvent, options?: SendEventOptions): Promise<{
|
|
245
|
+
payload: import("@trigger.dev/core").DeserializedJson;
|
|
245
246
|
name: string;
|
|
246
247
|
id: string;
|
|
247
|
-
payload: import("@trigger.dev/core").DeserializedJson;
|
|
248
248
|
timestamp: Date;
|
|
249
249
|
context?: import("@trigger.dev/core").DeserializedJson | undefined;
|
|
250
250
|
deliverAt?: Date | null | undefined;
|
|
@@ -257,9 +257,9 @@ export declare class IO {
|
|
|
257
257
|
* @param options Options for sending the events.
|
|
258
258
|
*/
|
|
259
259
|
sendEvents(cacheKey: string | any[], events: SendEvent[], options?: SendEventOptions): Promise<{
|
|
260
|
+
payload: import("@trigger.dev/core").DeserializedJson;
|
|
260
261
|
name: string;
|
|
261
262
|
id: string;
|
|
262
|
-
payload: import("@trigger.dev/core").DeserializedJson;
|
|
263
263
|
timestamp: Date;
|
|
264
264
|
context?: import("@trigger.dev/core").DeserializedJson | undefined;
|
|
265
265
|
deliverAt?: Date | null | undefined;
|
|
@@ -269,14 +269,14 @@ export declare class IO {
|
|
|
269
269
|
getEvent(cacheKey: string | any[], id: string): Promise<{
|
|
270
270
|
name: string;
|
|
271
271
|
id: string;
|
|
272
|
-
|
|
272
|
+
updatedAt: Date;
|
|
273
273
|
runs: {
|
|
274
|
-
status: "PENDING" | "CANCELED" | "
|
|
274
|
+
status: "PENDING" | "CANCELED" | "QUEUED" | "WAITING_ON_CONNECTIONS" | "PREPROCESSING" | "STARTED" | "SUCCESS" | "FAILURE" | "TIMED_OUT" | "ABORTED" | "UNRESOLVED_AUTH" | "INVALID_PAYLOAD" | "EXECUTING" | "WAITING_TO_CONTINUE" | "WAITING_TO_EXECUTE";
|
|
275
275
|
id: string;
|
|
276
276
|
startedAt?: Date | null | undefined;
|
|
277
277
|
completedAt?: Date | null | undefined;
|
|
278
278
|
}[];
|
|
279
|
-
|
|
279
|
+
createdAt: Date;
|
|
280
280
|
}>;
|
|
281
281
|
/** `io.cancelEvent()` allows you to cancel an event that was previously sent with `io.sendEvent()`. This will prevent any Jobs from running that are listening for that event if the event was sent with a delay
|
|
282
282
|
* @param cacheKey
|
|
@@ -284,9 +284,9 @@ export declare class IO {
|
|
|
284
284
|
* @returns
|
|
285
285
|
*/
|
|
286
286
|
cancelEvent(cacheKey: string | any[], eventId: string): Promise<{
|
|
287
|
+
payload: import("@trigger.dev/core").DeserializedJson;
|
|
287
288
|
name: string;
|
|
288
289
|
id: string;
|
|
289
|
-
payload: import("@trigger.dev/core").DeserializedJson;
|
|
290
290
|
timestamp: Date;
|
|
291
291
|
context?: import("@trigger.dev/core").DeserializedJson | undefined;
|
|
292
292
|
deliverAt?: Date | null | undefined;
|
|
@@ -296,14 +296,14 @@ export declare class IO {
|
|
|
296
296
|
updateSource(cacheKey: string | any[], options: {
|
|
297
297
|
key: string;
|
|
298
298
|
} & UpdateTriggerSourceBodyV2): Promise<{
|
|
299
|
-
key: string;
|
|
300
299
|
id: string;
|
|
300
|
+
key: string;
|
|
301
301
|
}>;
|
|
302
302
|
updateWebhook(cacheKey: string | any[], options: {
|
|
303
303
|
key: string;
|
|
304
304
|
} & UpdateWebhookBody): Promise<{
|
|
305
|
-
key: string;
|
|
306
305
|
id: string;
|
|
306
|
+
key: string;
|
|
307
307
|
}>;
|
|
308
308
|
/** `io.registerInterval()` allows you to register a [DynamicSchedule](https://trigger.dev/docs/sdk/dynamicschedule) that will trigger any jobs it's attached to on a regular interval.
|
|
309
309
|
* @param cacheKey Should be a stable and unique key inside the `run()`. See [resumability](https://trigger.dev/docs/documentation/concepts/resumability) for more information.
|
|
@@ -316,17 +316,17 @@ export declare class IO {
|
|
|
316
316
|
registerInterval(cacheKey: string | any[], dynamicSchedule: DynamicSchedule, id: string, options: IntervalOptions): Promise<{
|
|
317
317
|
id: string;
|
|
318
318
|
schedule: {
|
|
319
|
-
type: "cron";
|
|
320
319
|
options: {
|
|
321
320
|
cron: string;
|
|
322
321
|
};
|
|
322
|
+
type: "cron";
|
|
323
323
|
metadata?: any;
|
|
324
324
|
accountId?: string | undefined;
|
|
325
325
|
} | {
|
|
326
|
-
type: "interval";
|
|
327
326
|
options: {
|
|
328
327
|
seconds: number;
|
|
329
328
|
};
|
|
329
|
+
type: "interval";
|
|
330
330
|
metadata?: any;
|
|
331
331
|
accountId?: string | undefined;
|
|
332
332
|
};
|
|
@@ -352,17 +352,17 @@ export declare class IO {
|
|
|
352
352
|
registerCron(cacheKey: string | any[], dynamicSchedule: DynamicSchedule, id: string, options: CronOptions): Promise<{
|
|
353
353
|
id: string;
|
|
354
354
|
schedule: {
|
|
355
|
-
type: "cron";
|
|
356
355
|
options: {
|
|
357
356
|
cron: string;
|
|
358
357
|
};
|
|
358
|
+
type: "cron";
|
|
359
359
|
metadata?: any;
|
|
360
360
|
accountId?: string | undefined;
|
|
361
361
|
} | {
|
|
362
|
-
type: "interval";
|
|
363
362
|
options: {
|
|
364
363
|
seconds: number;
|
|
365
364
|
};
|
|
365
|
+
type: "interval";
|
|
366
366
|
metadata?: any;
|
|
367
367
|
accountId?: string | undefined;
|
|
368
368
|
};
|
|
@@ -6,14 +6,14 @@ export declare class TriggerStatus {
|
|
|
6
6
|
private io;
|
|
7
7
|
constructor(id: string, io: IO);
|
|
8
8
|
update(key: IntegrationTaskKey, status: StatusUpdate): Promise<{
|
|
9
|
-
key: string;
|
|
10
9
|
label: string;
|
|
10
|
+
key: string;
|
|
11
11
|
history: {
|
|
12
|
-
data?: Record<string, import("@trigger.dev/core").SerializableJson> | undefined;
|
|
13
12
|
label?: string | undefined;
|
|
14
|
-
state?: "
|
|
13
|
+
state?: "loading" | "success" | "failure" | undefined;
|
|
14
|
+
data?: Record<string, import("@trigger.dev/core").SerializableJson> | undefined;
|
|
15
15
|
}[];
|
|
16
|
+
state?: "loading" | "success" | "failure" | undefined;
|
|
16
17
|
data?: Record<string, import("@trigger.dev/core").SerializableJson> | undefined;
|
|
17
|
-
state?: "success" | "loading" | "failure" | undefined;
|
|
18
18
|
}>;
|
|
19
19
|
}
|
|
@@ -85,11 +85,10 @@ export declare class TriggerClient {
|
|
|
85
85
|
missing: string[];
|
|
86
86
|
orphaned: string[];
|
|
87
87
|
}>;
|
|
88
|
-
id: string;
|
|
89
88
|
source: {
|
|
90
89
|
key: string;
|
|
91
|
-
active: boolean;
|
|
92
90
|
secret: string;
|
|
91
|
+
active: boolean;
|
|
93
92
|
channel: {
|
|
94
93
|
type: "HTTP";
|
|
95
94
|
url: string;
|
|
@@ -102,10 +101,11 @@ export declare class TriggerClient {
|
|
|
102
101
|
data?: DeserializedJson | undefined;
|
|
103
102
|
clientId?: string | undefined;
|
|
104
103
|
};
|
|
104
|
+
id: string;
|
|
105
105
|
dynamicTriggerId?: string | undefined;
|
|
106
106
|
}>;
|
|
107
107
|
getAuth(id: string): Promise<{
|
|
108
|
-
type: "
|
|
108
|
+
type: "oauth2" | "apiKey";
|
|
109
109
|
accessToken: string;
|
|
110
110
|
scopes?: string[] | undefined;
|
|
111
111
|
additionalFields?: Record<string, string> | undefined;
|
|
@@ -116,9 +116,9 @@ export declare class TriggerClient {
|
|
|
116
116
|
* @returns A promise that resolves to the event details
|
|
117
117
|
*/
|
|
118
118
|
sendEvent(event: SendEvent, options?: SendEventOptions): Promise<{
|
|
119
|
+
payload: DeserializedJson;
|
|
119
120
|
name: string;
|
|
120
121
|
id: string;
|
|
121
|
-
payload: DeserializedJson;
|
|
122
122
|
timestamp: Date;
|
|
123
123
|
context?: DeserializedJson | undefined;
|
|
124
124
|
deliverAt?: Date | null | undefined;
|
|
@@ -131,9 +131,9 @@ export declare class TriggerClient {
|
|
|
131
131
|
* @returns A promise that resolves to an array of event details
|
|
132
132
|
*/
|
|
133
133
|
sendEvents(events: SendEvent[], options?: SendEventOptions): Promise<{
|
|
134
|
+
payload: DeserializedJson;
|
|
134
135
|
name: string;
|
|
135
136
|
id: string;
|
|
136
|
-
payload: DeserializedJson;
|
|
137
137
|
timestamp: Date;
|
|
138
138
|
context?: DeserializedJson | undefined;
|
|
139
139
|
deliverAt?: Date | null | undefined;
|
|
@@ -141,9 +141,9 @@ export declare class TriggerClient {
|
|
|
141
141
|
cancelledAt?: Date | null | undefined;
|
|
142
142
|
}[]>;
|
|
143
143
|
cancelEvent(eventId: string): Promise<{
|
|
144
|
+
payload: DeserializedJson;
|
|
144
145
|
name: string;
|
|
145
146
|
id: string;
|
|
146
|
-
payload: DeserializedJson;
|
|
147
147
|
timestamp: Date;
|
|
148
148
|
context?: DeserializedJson | undefined;
|
|
149
149
|
deliverAt?: Date | null | undefined;
|
|
@@ -155,30 +155,32 @@ export declare class TriggerClient {
|
|
|
155
155
|
failedToCancelRunIds: string[];
|
|
156
156
|
}>;
|
|
157
157
|
updateStatus(runId: string, id: string, status: StatusUpdate): Promise<{
|
|
158
|
-
key: string;
|
|
159
158
|
label: string;
|
|
159
|
+
key: string;
|
|
160
160
|
history: {
|
|
161
|
-
data?: Record<string, import("@trigger.dev/core").SerializableJson> | undefined;
|
|
162
161
|
label?: string | undefined;
|
|
163
|
-
state?: "
|
|
162
|
+
state?: "loading" | "success" | "failure" | undefined;
|
|
163
|
+
data?: Record<string, import("@trigger.dev/core").SerializableJson> | undefined;
|
|
164
164
|
}[];
|
|
165
|
-
|
|
166
|
-
|
|
165
|
+
state?: "loading" | "success" | "failure" | undefined;
|
|
166
|
+
data?: Record<string, import(
|
|
167
|
+
/** Default is unset and off. If set to true it will log to the server's console as well as the Trigger.dev platform */
|
|
168
|
+
"@trigger.dev/core").SerializableJson> | undefined;
|
|
167
169
|
}>;
|
|
168
170
|
registerSchedule(id: string, key: string, schedule: ScheduleMetadata): Promise<{
|
|
169
171
|
id: string;
|
|
170
172
|
schedule: {
|
|
171
|
-
type: "cron";
|
|
172
173
|
options: {
|
|
173
174
|
cron: string;
|
|
174
175
|
};
|
|
176
|
+
type: "cron";
|
|
175
177
|
metadata?: any;
|
|
176
178
|
accountId?: string | undefined;
|
|
177
179
|
} | {
|
|
178
|
-
type: "interval";
|
|
179
180
|
options: {
|
|
180
181
|
seconds: number;
|
|
181
182
|
};
|
|
183
|
+
type: "interval";
|
|
182
184
|
metadata?: any;
|
|
183
185
|
accountId?: string | undefined;
|
|
184
186
|
};
|
|
@@ -191,84 +193,84 @@ export declare class TriggerClient {
|
|
|
191
193
|
getEvent(eventId: string): Promise<{
|
|
192
194
|
name: string;
|
|
193
195
|
id: string;
|
|
194
|
-
|
|
196
|
+
updatedAt: Date;
|
|
195
197
|
runs: {
|
|
196
|
-
status: "PENDING" | "CANCELED" | "
|
|
198
|
+
status: "PENDING" | "CANCELED" | "QUEUED" | "WAITING_ON_CONNECTIONS" | "PREPROCESSING" | "STARTED" | "SUCCESS" | "FAILURE" | "TIMED_OUT" | "ABORTED" | "UNRESOLVED_AUTH" | "INVALID_PAYLOAD" | "EXECUTING" | "WAITING_TO_CONTINUE" | "WAITING_TO_EXECUTE";
|
|
197
199
|
id: string;
|
|
198
200
|
startedAt?: Date | null | undefined;
|
|
199
201
|
completedAt?: Date | null | undefined;
|
|
200
202
|
}[];
|
|
201
|
-
|
|
203
|
+
createdAt: Date;
|
|
202
204
|
}>;
|
|
203
205
|
getRun(runId: string, options?: GetRunOptionsWithTaskDetails): Promise<{
|
|
204
|
-
status: "PENDING" | "CANCELED" | "
|
|
206
|
+
status: "PENDING" | "CANCELED" | "QUEUED" | "WAITING_ON_CONNECTIONS" | "PREPROCESSING" | "STARTED" | "SUCCESS" | "FAILURE" | "TIMED_OUT" | "ABORTED" | "UNRESOLVED_AUTH" | "INVALID_PAYLOAD" | "EXECUTING" | "WAITING_TO_CONTINUE" | "WAITING_TO_EXECUTE";
|
|
205
207
|
id: string;
|
|
206
208
|
startedAt: Date | null;
|
|
207
|
-
tasks: import("@trigger.dev/core").RunTaskWithSubtasks[];
|
|
208
|
-
updatedAt: Date | null;
|
|
209
209
|
completedAt: Date | null;
|
|
210
|
+
updatedAt: Date | null;
|
|
211
|
+
tasks: import("@trigger.dev/core").RunTaskWithSubtasks[];
|
|
210
212
|
statuses: {
|
|
211
|
-
key: string;
|
|
212
213
|
label: string;
|
|
214
|
+
key: string;
|
|
213
215
|
history: {
|
|
214
|
-
data?: Record<string, import("@trigger.dev/core").SerializableJson> | undefined;
|
|
215
216
|
label?: string | undefined;
|
|
216
|
-
state?: "
|
|
217
|
+
state?: "loading" | "success" | "failure" | undefined;
|
|
218
|
+
data?: Record<string, import("@trigger.dev/core").SerializableJson> | undefined;
|
|
217
219
|
}[];
|
|
220
|
+
state?: "loading" | "success" | "failure" | undefined;
|
|
218
221
|
data?: Record<string, import("@trigger.dev/core").SerializableJson> | undefined;
|
|
219
|
-
state?: "success" | "loading" | "failure" | undefined;
|
|
220
222
|
}[];
|
|
221
223
|
output?: any;
|
|
222
224
|
nextCursor?: string | undefined;
|
|
223
225
|
}>;
|
|
224
226
|
cancelRun(runId: string): Promise<{
|
|
225
|
-
status: "PENDING" | "CANCELED" | "
|
|
227
|
+
status: "PENDING" | "CANCELED" | "QUEUED" | "WAITING_ON_CONNECTIONS" | "PREPROCESSING" | "STARTED" | "SUCCESS" | "FAILURE" | "TIMED_OUT" | "ABORTED" | "UNRESOLVED_AUTH" | "INVALID_PAYLOAD" | "EXECUTING" | "WAITING_TO_CONTINUE" | "WAITING_TO_EXECUTE";
|
|
226
228
|
id: string;
|
|
227
229
|
startedAt: Date | null;
|
|
228
|
-
tasks: import("@trigger.dev/core").RunTaskWithSubtasks[];
|
|
229
|
-
updatedAt: Date | null;
|
|
230
230
|
completedAt: Date | null;
|
|
231
|
+
updatedAt: Date | null;
|
|
232
|
+
tasks: import("@trigger.dev/core").RunTaskWithSubtasks[];
|
|
231
233
|
statuses: {
|
|
232
|
-
key: string;
|
|
233
234
|
label: string;
|
|
235
|
+
key: string;
|
|
234
236
|
history: {
|
|
235
|
-
data?: Record<string, import("@trigger.dev/core").SerializableJson> | undefined;
|
|
236
237
|
label?: string | undefined;
|
|
237
|
-
state?: "
|
|
238
|
+
state?: "loading" | "success" | "failure" | undefined;
|
|
239
|
+
data?: Record<string, import("@trigger.dev/core").SerializableJson> | undefined;
|
|
238
240
|
}[];
|
|
241
|
+
state?: "loading" | "success" | "failure" | undefined;
|
|
239
242
|
data?: Record<string, import("@trigger.dev/core").SerializableJson> | undefined;
|
|
240
|
-
state?: "success" | "loading" | "failure" | undefined;
|
|
241
243
|
}[];
|
|
242
244
|
output?: any;
|
|
243
245
|
nextCursor?: string | undefined;
|
|
244
246
|
}>;
|
|
245
247
|
getRuns(jobSlug: string, options?: GetRunsOptions): Promise<{
|
|
246
248
|
runs: {
|
|
247
|
-
status: "PENDING" | "CANCELED" | "
|
|
249
|
+
status: "PENDING" | "CANCELED" | "QUEUED" | "WAITING_ON_CONNECTIONS" | "PREPROCESSING" | "STARTED" | "SUCCESS" | "FAILURE" | "TIMED_OUT" | "ABORTED" | "UNRESOLVED_AUTH" | "INVALID_PAYLOAD" | "EXECUTING" | "WAITING_TO_CONTINUE" | "WAITING_TO_EXECUTE";
|
|
248
250
|
id: string;
|
|
249
251
|
startedAt: Date | null;
|
|
250
|
-
updatedAt: Date | null;
|
|
251
252
|
completedAt: Date | null;
|
|
253
|
+
updatedAt: Date | null;
|
|
252
254
|
}[];
|
|
253
255
|
nextCursor?: string | undefined;
|
|
254
256
|
}>;
|
|
255
257
|
getRunStatuses(runId: string): Promise<{
|
|
256
|
-
run: {
|
|
257
|
-
status: "PENDING" | "CANCELED" | "TIMED_OUT" | "QUEUED" | "EXECUTING" | "WAITING_ON_CONNECTIONS" | "PREPROCESSING" | "STARTED" | "SUCCESS" | "FAILURE" | "ABORTED" | "UNRESOLVED_AUTH" | "INVALID_PAYLOAD" | "WAITING_TO_CONTINUE" | "WAITING_TO_EXECUTE";
|
|
258
|
-
id: string;
|
|
259
|
-
output?: any;
|
|
260
|
-
};
|
|
261
258
|
statuses: {
|
|
262
|
-
key: string;
|
|
263
259
|
label: string;
|
|
260
|
+
key: string;
|
|
264
261
|
history: {
|
|
265
|
-
data?: Record<string, import("@trigger.dev/core").SerializableJson> | undefined;
|
|
266
262
|
label?: string | undefined;
|
|
267
|
-
state?: "
|
|
263
|
+
state?: "loading" | "success" | "failure" | undefined;
|
|
264
|
+
data?: Record<string, import("@trigger.dev/core").SerializableJson> | undefined;
|
|
268
265
|
}[];
|
|
266
|
+
state?: "loading" | "success" | "failure" | undefined;
|
|
269
267
|
data?: Record<string, import("@trigger.dev/core").SerializableJson> | undefined;
|
|
270
|
-
state?: "success" | "loading" | "failure" | undefined;
|
|
271
268
|
}[];
|
|
269
|
+
run: {
|
|
270
|
+
status: "PENDING" | "CANCELED" | "QUEUED" | "WAITING_ON_CONNECTIONS" | "PREPROCESSING" | "STARTED" | "SUCCESS" | "FAILURE" | "TIMED_OUT" | "ABORTED" | "UNRESOLVED_AUTH" | "INVALID_PAYLOAD" | "EXECUTING" | "WAITING_TO_CONTINUE" | "WAITING_TO_EXECUTE";
|
|
271
|
+
id: string;
|
|
272
|
+
output?: any;
|
|
273
|
+
};
|
|
272
274
|
}>;
|
|
273
275
|
invokeJob(jobId: string, payload: any, options?: InvokeOptions): Promise<{
|
|
274
276
|
id: string;
|
|
@@ -21,11 +21,11 @@ export declare class MissingConnectionNotification implements Trigger<MissingCon
|
|
|
21
21
|
type: "DEVELOPER";
|
|
22
22
|
id: string;
|
|
23
23
|
client: {
|
|
24
|
+
scopes: string[];
|
|
24
25
|
id: string;
|
|
25
|
-
createdAt: Date;
|
|
26
26
|
title: string;
|
|
27
27
|
updatedAt: Date;
|
|
28
|
-
|
|
28
|
+
createdAt: Date;
|
|
29
29
|
};
|
|
30
30
|
authorizationUrl: string;
|
|
31
31
|
} | {
|
|
@@ -36,11 +36,11 @@ export declare class MissingConnectionNotification implements Trigger<MissingCon
|
|
|
36
36
|
metadata?: any;
|
|
37
37
|
};
|
|
38
38
|
client: {
|
|
39
|
+
scopes: string[];
|
|
39
40
|
id: string;
|
|
40
|
-
createdAt: Date;
|
|
41
41
|
title: string;
|
|
42
42
|
updatedAt: Date;
|
|
43
|
-
|
|
43
|
+
createdAt: Date;
|
|
44
44
|
};
|
|
45
45
|
authorizationUrl: string;
|
|
46
46
|
};
|
|
@@ -69,11 +69,11 @@ export declare class MissingConnectionResolvedNotification implements Trigger<Mi
|
|
|
69
69
|
type: "DEVELOPER";
|
|
70
70
|
id: string;
|
|
71
71
|
client: {
|
|
72
|
+
scopes: string[];
|
|
72
73
|
id: string;
|
|
73
|
-
createdAt: Date;
|
|
74
74
|
title: string;
|
|
75
75
|
updatedAt: Date;
|
|
76
|
-
|
|
76
|
+
createdAt: Date;
|
|
77
77
|
integrationIdentifier: string;
|
|
78
78
|
integrationAuthMethod: string;
|
|
79
79
|
};
|
|
@@ -86,11 +86,11 @@ export declare class MissingConnectionResolvedNotification implements Trigger<Mi
|
|
|
86
86
|
metadata?: any;
|
|
87
87
|
};
|
|
88
88
|
client: {
|
|
89
|
+
scopes: string[];
|
|
89
90
|
id: string;
|
|
90
|
-
createdAt: Date;
|
|
91
91
|
title: string;
|
|
92
92
|
updatedAt: Date;
|
|
93
|
-
|
|
93
|
+
createdAt: Date;
|
|
94
94
|
integrationIdentifier: string;
|
|
95
95
|
integrationAuthMethod: string;
|
|
96
96
|
};
|
|
@@ -115,17 +115,17 @@ export declare class DynamicSchedule implements Trigger<ScheduledEventSpecificat
|
|
|
115
115
|
register(key: string, metadata: ScheduleMetadata): Promise<{
|
|
116
116
|
id: string;
|
|
117
117
|
schedule: {
|
|
118
|
-
type: "cron";
|
|
119
118
|
options: {
|
|
120
119
|
cron: string;
|
|
121
120
|
};
|
|
121
|
+
type: "cron";
|
|
122
122
|
metadata?: any;
|
|
123
123
|
accountId?: string | undefined;
|
|
124
124
|
} | {
|
|
125
|
-
type: "interval";
|
|
126
125
|
options: {
|
|
127
126
|
seconds: number;
|
|
128
127
|
};
|
|
128
|
+
type: "interval";
|
|
129
129
|
metadata?: any;
|
|
130
130
|
accountId?: string | undefined;
|
|
131
131
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { AnyRetrieveRunResult, AnyRunShape, ApiRequestOptions, InferRunTypes, ListProjectRunsQueryParams, ListRunsQueryParams, RescheduleRunRequestBody, RetrieveRunResult, RunShape, RealtimeRun, AnyRealtimeRun, RunSubscription, TaskRunShape, AnyBatchedRunHandle, AsyncIterableStream } from "@trigger.dev/core/v3";
|
|
2
|
-
import {
|
|
1
|
+
import type { AnyRetrieveRunResult, AnyRunShape, ApiRequestOptions, InferRunTypes, ListProjectRunsQueryParams, ListRunsQueryParams, RescheduleRunRequestBody, RetrieveRunResult, RunShape, RealtimeRun, AnyRealtimeRun, RunSubscription, TaskRunShape, AnyBatchedRunHandle, AsyncIterableStream, ApiPromise } from "@trigger.dev/core/v3";
|
|
2
|
+
import { CanceledRunResponse, CursorPagePromise, ListRunResponseItem, ReplayRunResponse, RetrieveRunResponse } from "@trigger.dev/core/v3";
|
|
3
3
|
import { AnyRunHandle, AnyTask } from "./shared.js";
|
|
4
4
|
export type { AnyRetrieveRunResult, AnyRunShape, RetrieveRunResult, RunShape, TaskRunShape, RealtimeRun, AnyRealtimeRun, };
|
|
5
5
|
export declare const runs: {
|
|
@@ -50,8 +50,8 @@ declare function poll<TRunId extends AnyRunHandle | AnyTask | string>(runId: Run
|
|
|
50
50
|
baseCostInCents: number;
|
|
51
51
|
relatedRuns: {
|
|
52
52
|
root?: {
|
|
53
|
-
id: string;
|
|
54
53
|
status: "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "COMPLETED" | "CANCELED" | "FAILED" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED" | "TIMED_OUT";
|
|
54
|
+
id: string;
|
|
55
55
|
tags: string[];
|
|
56
56
|
isTest: boolean;
|
|
57
57
|
createdAt: Date;
|
|
@@ -68,9 +68,9 @@ declare function poll<TRunId extends AnyRunHandle | AnyTask | string>(runId: Run
|
|
|
68
68
|
isFailed: boolean;
|
|
69
69
|
isCancelled: boolean;
|
|
70
70
|
updatedAt: Date;
|
|
71
|
-
version?: string | undefined;
|
|
72
71
|
startedAt?: Date | undefined;
|
|
73
72
|
idempotencyKey?: string | undefined;
|
|
73
|
+
version?: string | undefined;
|
|
74
74
|
metadata?: Record<string, any> | undefined;
|
|
75
75
|
ttl?: string | undefined;
|
|
76
76
|
batchId?: string | undefined;
|
|
@@ -79,8 +79,8 @@ declare function poll<TRunId extends AnyRunHandle | AnyTask | string>(runId: Run
|
|
|
79
79
|
expiredAt?: Date | undefined;
|
|
80
80
|
} | undefined;
|
|
81
81
|
parent?: {
|
|
82
|
-
id: string;
|
|
83
82
|
status: "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "COMPLETED" | "CANCELED" | "FAILED" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED" | "TIMED_OUT";
|
|
83
|
+
id: string;
|
|
84
84
|
tags: string[];
|
|
85
85
|
isTest: boolean;
|
|
86
86
|
createdAt: Date;
|
|
@@ -97,9 +97,9 @@ declare function poll<TRunId extends AnyRunHandle | AnyTask | string>(runId: Run
|
|
|
97
97
|
isFailed: boolean;
|
|
98
98
|
isCancelled: boolean;
|
|
99
99
|
updatedAt: Date;
|
|
100
|
-
version?: string | undefined;
|
|
101
100
|
startedAt?: Date | undefined;
|
|
102
101
|
idempotencyKey?: string | undefined;
|
|
102
|
+
version?: string | undefined;
|
|
103
103
|
metadata?: Record<string, any> | undefined;
|
|
104
104
|
ttl?: string | undefined;
|
|
105
105
|
batchId?: string | undefined;
|
|
@@ -108,8 +108,8 @@ declare function poll<TRunId extends AnyRunHandle | AnyTask | string>(runId: Run
|
|
|
108
108
|
expiredAt?: Date | undefined;
|
|
109
109
|
} | undefined;
|
|
110
110
|
children?: {
|
|
111
|
-
id: string;
|
|
112
111
|
status: "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "COMPLETED" | "CANCELED" | "FAILED" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED" | "TIMED_OUT";
|
|
112
|
+
id: string;
|
|
113
113
|
tags: string[];
|
|
114
114
|
isTest: boolean;
|
|
115
115
|
createdAt: Date;
|
|
@@ -126,9 +126,9 @@ declare function poll<TRunId extends AnyRunHandle | AnyTask | string>(runId: Run
|
|
|
126
126
|
isFailed: boolean;
|
|
127
127
|
isCancelled: boolean;
|
|
128
128
|
updatedAt: Date;
|
|
129
|
-
version?: string | undefined;
|
|
130
129
|
startedAt?: Date | undefined;
|
|
131
130
|
idempotencyKey?: string | undefined;
|
|
131
|
+
version?: string | undefined;
|
|
132
132
|
metadata?: Record<string, any> | undefined;
|
|
133
133
|
ttl?: string | undefined;
|
|
134
134
|
batchId?: string | undefined;
|
|
@@ -147,27 +147,27 @@ declare function poll<TRunId extends AnyRunHandle | AnyTask | string>(runId: Run
|
|
|
147
147
|
isCancelled: boolean;
|
|
148
148
|
updatedAt: Date;
|
|
149
149
|
attempts: ({
|
|
150
|
-
id: string;
|
|
151
150
|
status: "EXECUTING" | "COMPLETED" | "CANCELED" | "FAILED" | "PENDING" | "PAUSED";
|
|
151
|
+
id: string;
|
|
152
152
|
createdAt: Date;
|
|
153
153
|
updatedAt: Date;
|
|
154
|
-
startedAt?: Date | undefined;
|
|
155
154
|
error?: {
|
|
156
155
|
message: string;
|
|
157
|
-
stackTrace?: string | undefined;
|
|
158
156
|
name?: string | undefined;
|
|
157
|
+
stackTrace?: string | undefined;
|
|
159
158
|
} | undefined;
|
|
159
|
+
startedAt?: Date | undefined;
|
|
160
160
|
completedAt?: Date | undefined;
|
|
161
161
|
} | undefined)[];
|
|
162
162
|
attemptCount: number;
|
|
163
|
-
startedAt?: Date | undefined;
|
|
164
|
-
idempotencyKey?: string | undefined;
|
|
165
|
-
metadata?: Record<string, any> | undefined;
|
|
166
163
|
error?: {
|
|
167
164
|
message: string;
|
|
168
|
-
stackTrace?: string | undefined;
|
|
169
165
|
name?: string | undefined;
|
|
166
|
+
stackTrace?: string | undefined;
|
|
170
167
|
} | undefined;
|
|
168
|
+
startedAt?: Date | undefined;
|
|
169
|
+
idempotencyKey?: string | undefined;
|
|
170
|
+
metadata?: Record<string, any> | undefined;
|
|
171
171
|
ttl?: string | undefined;
|
|
172
172
|
payloadPresignedUrl?: string | undefined;
|
|
173
173
|
outputPresignedUrl?: string | undefined;
|
package/dist/commonjs/v3/runs.js
CHANGED
|
@@ -98,11 +98,10 @@ function retrieveRun(runId, requestOptions) {
|
|
|
98
98
|
style: "codepath",
|
|
99
99
|
}),
|
|
100
100
|
},
|
|
101
|
+
prepareData: resolvePayloadAndOutputUrls,
|
|
101
102
|
}, requestOptions);
|
|
102
103
|
const $runId = typeof runId === "string" ? runId : runId.id;
|
|
103
|
-
return apiClient.retrieveRun($runId, $requestOptions)
|
|
104
|
-
return resolvePayloadAndOutputUrls(retrievedRun);
|
|
105
|
-
});
|
|
104
|
+
return apiClient.retrieveRun($runId, $requestOptions);
|
|
106
105
|
}
|
|
107
106
|
async function resolvePayloadAndOutputUrls(run) {
|
|
108
107
|
const resolvedRun = { ...run };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runs.js","sourceRoot":"","sources":["../../../src/v3/runs.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"runs.js","sourceRoot":"","sources":["../../../src/v3/runs.ts"],"names":[],"mappings":"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"}
|
package/dist/commonjs/version.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.VERSION = void 0;
|
|
4
|
-
exports.VERSION = "3.3.
|
|
4
|
+
exports.VERSION = "3.3.11-langsmith-ai-20250111213529-langsmith-ai-20250111212321-prerelease-20250110154019-v3-prerelease-20250108142426";
|
|
5
5
|
//# sourceMappingURL=version.js.map
|