@trigger.dev/core 0.0.0-buffer-import-20231031121649 → 0.0.0-buffer-fix-20231206151546
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/index.d.mts +16770 -0
- package/dist/index.d.ts +7579 -1198
- package/dist/index.js +1266 -1093
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1841 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +13 -7
package/dist/index.js
CHANGED
|
@@ -1,362 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
var __create = Object.create;
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
9
|
-
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
10
|
-
var __export = (target, all) => {
|
|
11
|
-
for (var name in all)
|
|
12
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
13
|
-
};
|
|
14
|
-
var __copyProps = (to, from, except, desc) => {
|
|
15
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
16
|
-
for (let key of __getOwnPropNames(from))
|
|
17
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
18
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
19
|
-
}
|
|
20
|
-
return to;
|
|
21
|
-
};
|
|
22
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
23
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
24
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
25
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
26
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
27
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
28
|
-
mod
|
|
29
|
-
));
|
|
30
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
31
|
-
var __publicField = (obj, key, value) => {
|
|
32
|
-
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
33
|
-
return value;
|
|
34
|
-
};
|
|
35
|
-
var __accessCheck = (obj, member, msg) => {
|
|
36
|
-
if (!member.has(obj))
|
|
37
|
-
throw TypeError("Cannot " + msg);
|
|
38
|
-
};
|
|
39
|
-
var __privateGet = (obj, member, getter) => {
|
|
40
|
-
__accessCheck(obj, member, "read from private field");
|
|
41
|
-
return getter ? getter.call(obj) : member.get(obj);
|
|
42
|
-
};
|
|
43
|
-
var __privateAdd = (obj, member, value) => {
|
|
44
|
-
if (member.has(obj))
|
|
45
|
-
throw TypeError("Cannot add the same private member more than once");
|
|
46
|
-
member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
|
47
|
-
};
|
|
48
|
-
var __privateSet = (obj, member, value, setter) => {
|
|
49
|
-
__accessCheck(obj, member, "write to private field");
|
|
50
|
-
setter ? setter.call(obj, value) : member.set(obj, value);
|
|
51
|
-
return value;
|
|
52
|
-
};
|
|
53
|
-
var __privateMethod = (obj, member, method) => {
|
|
54
|
-
__accessCheck(obj, member, "access private method");
|
|
55
|
-
return method;
|
|
56
|
-
};
|
|
1
|
+
'use strict';
|
|
57
2
|
|
|
58
|
-
|
|
59
|
-
var
|
|
60
|
-
__export(src_exports, {
|
|
61
|
-
API_VERSIONS: () => API_VERSIONS,
|
|
62
|
-
ApiEventLogSchema: () => ApiEventLogSchema,
|
|
63
|
-
AutoYieldConfigSchema: () => AutoYieldConfigSchema,
|
|
64
|
-
BloomFilter: () => BloomFilter,
|
|
65
|
-
CachedTaskSchema: () => CachedTaskSchema,
|
|
66
|
-
CancelRunsForEventSchema: () => CancelRunsForEventSchema,
|
|
67
|
-
CommonMissingConnectionNotificationPayloadSchema: () => CommonMissingConnectionNotificationPayloadSchema,
|
|
68
|
-
CommonMissingConnectionNotificationResolvedPayloadSchema: () => CommonMissingConnectionNotificationResolvedPayloadSchema,
|
|
69
|
-
CompleteTaskBodyInputSchema: () => CompleteTaskBodyInputSchema,
|
|
70
|
-
ConnectionAuthSchema: () => ConnectionAuthSchema,
|
|
71
|
-
CreateExternalConnectionBodySchema: () => CreateExternalConnectionBodySchema,
|
|
72
|
-
CreateRunResponseBodySchema: () => CreateRunResponseBodySchema,
|
|
73
|
-
CronMetadataSchema: () => CronMetadataSchema,
|
|
74
|
-
CronOptionsSchema: () => CronOptionsSchema,
|
|
75
|
-
DeliverEventResponseSchema: () => DeliverEventResponseSchema,
|
|
76
|
-
DeserializedJsonSchema: () => DeserializedJsonSchema,
|
|
77
|
-
DisplayPropertiesSchema: () => DisplayPropertiesSchema,
|
|
78
|
-
DisplayPropertySchema: () => DisplayPropertySchema,
|
|
79
|
-
DynamicTriggerEndpointMetadataSchema: () => DynamicTriggerEndpointMetadataSchema,
|
|
80
|
-
DynamicTriggerMetadataSchema: () => DynamicTriggerMetadataSchema,
|
|
81
|
-
EndpointHeadersSchema: () => EndpointHeadersSchema,
|
|
82
|
-
EndpointIndexErrorSchema: () => EndpointIndexErrorSchema,
|
|
83
|
-
ErrorWithStackSchema: () => ErrorWithStackSchema,
|
|
84
|
-
EventExampleSchema: () => EventExampleSchema,
|
|
85
|
-
EventFilterSchema: () => EventFilterSchema,
|
|
86
|
-
EventRuleSchema: () => EventRuleSchema,
|
|
87
|
-
EventSpecificationSchema: () => EventSpecificationSchema,
|
|
88
|
-
FailTaskBodyInputSchema: () => FailTaskBodyInputSchema,
|
|
89
|
-
FetchOperationSchema: () => FetchOperationSchema,
|
|
90
|
-
FetchRequestInitSchema: () => FetchRequestInitSchema,
|
|
91
|
-
FetchRetryBackoffStrategySchema: () => FetchRetryBackoffStrategySchema,
|
|
92
|
-
FetchRetryHeadersStrategySchema: () => FetchRetryHeadersStrategySchema,
|
|
93
|
-
FetchRetryOptionsSchema: () => FetchRetryOptionsSchema,
|
|
94
|
-
FetchRetryStrategySchema: () => FetchRetryStrategySchema,
|
|
95
|
-
GetEndpointIndexResponseSchema: () => GetEndpointIndexResponseSchema,
|
|
96
|
-
GetEventSchema: () => GetEventSchema,
|
|
97
|
-
GetRunSchema: () => GetRunSchema,
|
|
98
|
-
GetRunStatusesSchema: () => GetRunStatusesSchema,
|
|
99
|
-
GetRunsSchema: () => GetRunsSchema,
|
|
100
|
-
HandleTriggerSourceSchema: () => HandleTriggerSourceSchema,
|
|
101
|
-
HttpSourceRequestHeadersSchema: () => HttpSourceRequestHeadersSchema,
|
|
102
|
-
HttpSourceRequestSchema: () => HttpSourceRequestSchema,
|
|
103
|
-
HttpSourceResponseSchema: () => HttpSourceResponseSchema,
|
|
104
|
-
IndexEndpointResponseSchema: () => IndexEndpointResponseSchema,
|
|
105
|
-
InitializeCronScheduleBodySchema: () => InitializeCronScheduleBodySchema,
|
|
106
|
-
InitializeTriggerBodySchema: () => InitializeTriggerBodySchema,
|
|
107
|
-
IntegrationConfigSchema: () => IntegrationConfigSchema,
|
|
108
|
-
IntegrationMetadataSchema: () => IntegrationMetadataSchema,
|
|
109
|
-
IntervalMetadataSchema: () => IntervalMetadataSchema,
|
|
110
|
-
IntervalOptionsSchema: () => IntervalOptionsSchema,
|
|
111
|
-
JobMetadataSchema: () => JobMetadataSchema,
|
|
112
|
-
JobRunStatusRecordSchema: () => JobRunStatusRecordSchema,
|
|
113
|
-
LogMessageSchema: () => LogMessageSchema,
|
|
114
|
-
Logger: () => Logger,
|
|
115
|
-
MISSING_CONNECTION_NOTIFICATION: () => MISSING_CONNECTION_NOTIFICATION,
|
|
116
|
-
MISSING_CONNECTION_RESOLVED_NOTIFICATION: () => MISSING_CONNECTION_RESOLVED_NOTIFICATION,
|
|
117
|
-
MissingConnectionNotificationPayloadSchema: () => MissingConnectionNotificationPayloadSchema,
|
|
118
|
-
MissingConnectionResolvedNotificationPayloadSchema: () => MissingConnectionResolvedNotificationPayloadSchema,
|
|
119
|
-
MissingDeveloperConnectionNotificationPayloadSchema: () => MissingDeveloperConnectionNotificationPayloadSchema,
|
|
120
|
-
MissingDeveloperConnectionResolvedNotificationPayloadSchema: () => MissingDeveloperConnectionResolvedNotificationPayloadSchema,
|
|
121
|
-
MissingExternalConnectionNotificationPayloadSchema: () => MissingExternalConnectionNotificationPayloadSchema,
|
|
122
|
-
MissingExternalConnectionResolvedNotificationPayloadSchema: () => MissingExternalConnectionResolvedNotificationPayloadSchema,
|
|
123
|
-
NormalizedRequestSchema: () => NormalizedRequestSchema,
|
|
124
|
-
NormalizedResponseSchema: () => NormalizedResponseSchema,
|
|
125
|
-
PLATFORM_FEATURES: () => PLATFORM_FEATURES,
|
|
126
|
-
PongErrorResponseSchema: () => PongErrorResponseSchema,
|
|
127
|
-
PongResponseSchema: () => PongResponseSchema,
|
|
128
|
-
PongSuccessResponseSchema: () => PongSuccessResponseSchema,
|
|
129
|
-
PreprocessRunBodySchema: () => PreprocessRunBodySchema,
|
|
130
|
-
PreprocessRunResponseSchema: () => PreprocessRunResponseSchema,
|
|
131
|
-
QueueOptionsSchema: () => QueueOptionsSchema,
|
|
132
|
-
REGISTER_SOURCE_EVENT_V1: () => REGISTER_SOURCE_EVENT_V1,
|
|
133
|
-
REGISTER_SOURCE_EVENT_V2: () => REGISTER_SOURCE_EVENT_V2,
|
|
134
|
-
RawEventSchema: () => RawEventSchema,
|
|
135
|
-
RedactSchema: () => RedactSchema,
|
|
136
|
-
RedactStringSchema: () => RedactStringSchema,
|
|
137
|
-
RegisterDynamicSchedulePayloadSchema: () => RegisterDynamicSchedulePayloadSchema,
|
|
138
|
-
RegisterHTTPTriggerSourceBodySchema: () => RegisterHTTPTriggerSourceBodySchema,
|
|
139
|
-
RegisterIntervalScheduleBodySchema: () => RegisterIntervalScheduleBodySchema,
|
|
140
|
-
RegisterSMTPTriggerSourceBodySchema: () => RegisterSMTPTriggerSourceBodySchema,
|
|
141
|
-
RegisterSQSTriggerSourceBodySchema: () => RegisterSQSTriggerSourceBodySchema,
|
|
142
|
-
RegisterScheduleBodySchema: () => RegisterScheduleBodySchema,
|
|
143
|
-
RegisterScheduleResponseBodySchema: () => RegisterScheduleResponseBodySchema,
|
|
144
|
-
RegisterSourceChannelBodySchema: () => RegisterSourceChannelBodySchema,
|
|
145
|
-
RegisterSourceEventSchemaV1: () => RegisterSourceEventSchemaV1,
|
|
146
|
-
RegisterSourceEventSchemaV2: () => RegisterSourceEventSchemaV2,
|
|
147
|
-
RegisterTriggerBodySchemaV1: () => RegisterTriggerBodySchemaV1,
|
|
148
|
-
RegisterTriggerBodySchemaV2: () => RegisterTriggerBodySchemaV2,
|
|
149
|
-
RegisterTriggerSourceSchema: () => RegisterTriggerSourceSchema,
|
|
150
|
-
RetryOptionsSchema: () => RetryOptionsSchema,
|
|
151
|
-
RunJobAutoYieldExecutionErrorSchema: () => RunJobAutoYieldExecutionErrorSchema,
|
|
152
|
-
RunJobAutoYieldWithCompletedTaskExecutionErrorSchema: () => RunJobAutoYieldWithCompletedTaskExecutionErrorSchema,
|
|
153
|
-
RunJobBodySchema: () => RunJobBodySchema,
|
|
154
|
-
RunJobCanceledWithTaskSchema: () => RunJobCanceledWithTaskSchema,
|
|
155
|
-
RunJobErrorSchema: () => RunJobErrorSchema,
|
|
156
|
-
RunJobInvalidPayloadErrorSchema: () => RunJobInvalidPayloadErrorSchema,
|
|
157
|
-
RunJobResponseSchema: () => RunJobResponseSchema,
|
|
158
|
-
RunJobResumeWithTaskSchema: () => RunJobResumeWithTaskSchema,
|
|
159
|
-
RunJobRetryWithTaskSchema: () => RunJobRetryWithTaskSchema,
|
|
160
|
-
RunJobSuccessSchema: () => RunJobSuccessSchema,
|
|
161
|
-
RunJobUnresolvedAuthErrorSchema: () => RunJobUnresolvedAuthErrorSchema,
|
|
162
|
-
RunJobYieldExecutionErrorSchema: () => RunJobYieldExecutionErrorSchema,
|
|
163
|
-
RunSourceContextSchema: () => RunSourceContextSchema,
|
|
164
|
-
RunStatusSchema: () => RunStatusSchema,
|
|
165
|
-
RunTaskBodyInputSchema: () => RunTaskBodyInputSchema,
|
|
166
|
-
RunTaskBodyOutputSchema: () => RunTaskBodyOutputSchema,
|
|
167
|
-
RunTaskOptionsSchema: () => RunTaskOptionsSchema,
|
|
168
|
-
RunTaskResponseWithCachedTasksBodySchema: () => RunTaskResponseWithCachedTasksBodySchema,
|
|
169
|
-
RunTaskSchema: () => RunTaskSchema,
|
|
170
|
-
RuntimeEnvironmentTypeSchema: () => RuntimeEnvironmentTypeSchema,
|
|
171
|
-
SCHEDULED_EVENT: () => SCHEDULED_EVENT,
|
|
172
|
-
ScheduleMetadataSchema: () => ScheduleMetadataSchema,
|
|
173
|
-
ScheduledPayloadSchema: () => ScheduledPayloadSchema,
|
|
174
|
-
ScheduledTriggerMetadataSchema: () => ScheduledTriggerMetadataSchema,
|
|
175
|
-
SchemaErrorSchema: () => SchemaErrorSchema,
|
|
176
|
-
SendEventBodySchema: () => SendEventBodySchema,
|
|
177
|
-
SendEventOptionsSchema: () => SendEventOptionsSchema,
|
|
178
|
-
SerializableJsonSchema: () => SerializableJsonSchema,
|
|
179
|
-
ServerTaskSchema: () => ServerTaskSchema,
|
|
180
|
-
SourceMetadataV2Schema: () => SourceMetadataV2Schema,
|
|
181
|
-
StaticTriggerMetadataSchema: () => StaticTriggerMetadataSchema,
|
|
182
|
-
StatusHistorySchema: () => StatusHistorySchema,
|
|
183
|
-
StatusUpdateSchema: () => StatusUpdateSchema,
|
|
184
|
-
StatusUpdateStateSchema: () => StatusUpdateStateSchema,
|
|
185
|
-
StyleSchema: () => StyleSchema,
|
|
186
|
-
TaskSchema: () => TaskSchema,
|
|
187
|
-
TaskStatusSchema: () => TaskStatusSchema,
|
|
188
|
-
TriggerMetadataSchema: () => TriggerMetadataSchema,
|
|
189
|
-
TriggerSourceSchema: () => TriggerSourceSchema,
|
|
190
|
-
UpdateTriggerSourceBodyV1Schema: () => UpdateTriggerSourceBodyV1Schema,
|
|
191
|
-
UpdateTriggerSourceBodyV2Schema: () => UpdateTriggerSourceBodyV2Schema,
|
|
192
|
-
ValidateErrorResponseSchema: () => ValidateErrorResponseSchema,
|
|
193
|
-
ValidateResponseSchema: () => ValidateResponseSchema,
|
|
194
|
-
ValidateSuccessResponseSchema: () => ValidateSuccessResponseSchema,
|
|
195
|
-
addMissingVersionField: () => addMissingVersionField,
|
|
196
|
-
calculateRetryAt: () => calculateRetryAt,
|
|
197
|
-
currentDate: () => currentDate,
|
|
198
|
-
currentTimestampMilliseconds: () => currentTimestampMilliseconds,
|
|
199
|
-
currentTimestampSeconds: () => currentTimestampSeconds,
|
|
200
|
-
deepMergeFilters: () => deepMergeFilters,
|
|
201
|
-
eventFilterMatches: () => eventFilterMatches,
|
|
202
|
-
parseEndpointIndexStats: () => parseEndpointIndexStats,
|
|
203
|
-
replacements: () => replacements,
|
|
204
|
-
supportsFeature: () => supportsFeature,
|
|
205
|
-
urlWithSearchParams: () => urlWithSearchParams
|
|
206
|
-
});
|
|
207
|
-
module.exports = __toCommonJS(src_exports);
|
|
3
|
+
var ulidx = require('ulidx');
|
|
4
|
+
var zod = require('zod');
|
|
208
5
|
|
|
209
|
-
|
|
210
|
-
var
|
|
211
|
-
"log",
|
|
212
|
-
"error",
|
|
213
|
-
"warn",
|
|
214
|
-
"info",
|
|
215
|
-
"debug"
|
|
216
|
-
];
|
|
217
|
-
var _name, _level, _filteredKeys, _jsonReplacer, _structuredLog, structuredLog_fn;
|
|
218
|
-
var _Logger = class _Logger {
|
|
219
|
-
constructor(name, level = "info", filteredKeys = [], jsonReplacer) {
|
|
220
|
-
__privateAdd(this, _structuredLog);
|
|
221
|
-
__privateAdd(this, _name, void 0);
|
|
222
|
-
__privateAdd(this, _level, void 0);
|
|
223
|
-
__privateAdd(this, _filteredKeys, []);
|
|
224
|
-
__privateAdd(this, _jsonReplacer, void 0);
|
|
225
|
-
__privateSet(this, _name, name);
|
|
226
|
-
__privateSet(this, _level, logLevels.indexOf(process.env.TRIGGER_LOG_LEVEL ?? level));
|
|
227
|
-
__privateSet(this, _filteredKeys, filteredKeys);
|
|
228
|
-
__privateSet(this, _jsonReplacer, jsonReplacer);
|
|
229
|
-
}
|
|
230
|
-
// Return a new Logger instance with the same name and a new log level
|
|
231
|
-
// but filter out the keys from the log messages (at any level)
|
|
232
|
-
filter(...keys) {
|
|
233
|
-
return new _Logger(__privateGet(this, _name), logLevels[__privateGet(this, _level)], keys, __privateGet(this, _jsonReplacer));
|
|
234
|
-
}
|
|
235
|
-
static satisfiesLogLevel(logLevel, setLevel) {
|
|
236
|
-
return logLevels.indexOf(logLevel) <= logLevels.indexOf(setLevel);
|
|
237
|
-
}
|
|
238
|
-
log(message, ...args) {
|
|
239
|
-
if (__privateGet(this, _level) < 0)
|
|
240
|
-
return;
|
|
241
|
-
__privateMethod(this, _structuredLog, structuredLog_fn).call(this, console.log, message, ...args);
|
|
242
|
-
}
|
|
243
|
-
error(message, ...args) {
|
|
244
|
-
if (__privateGet(this, _level) < 1)
|
|
245
|
-
return;
|
|
246
|
-
__privateMethod(this, _structuredLog, structuredLog_fn).call(this, console.error, message, ...args);
|
|
247
|
-
}
|
|
248
|
-
warn(message, ...args) {
|
|
249
|
-
if (__privateGet(this, _level) < 2)
|
|
250
|
-
return;
|
|
251
|
-
__privateMethod(this, _structuredLog, structuredLog_fn).call(this, console.warn, message, ...args);
|
|
252
|
-
}
|
|
253
|
-
info(message, ...args) {
|
|
254
|
-
if (__privateGet(this, _level) < 3)
|
|
255
|
-
return;
|
|
256
|
-
__privateMethod(this, _structuredLog, structuredLog_fn).call(this, console.info, message, ...args);
|
|
257
|
-
}
|
|
258
|
-
debug(message, ...args) {
|
|
259
|
-
if (__privateGet(this, _level) < 4)
|
|
260
|
-
return;
|
|
261
|
-
__privateMethod(this, _structuredLog, structuredLog_fn).call(this, console.debug, message, ...args);
|
|
262
|
-
}
|
|
263
|
-
};
|
|
264
|
-
_name = new WeakMap();
|
|
265
|
-
_level = new WeakMap();
|
|
266
|
-
_filteredKeys = new WeakMap();
|
|
267
|
-
_jsonReplacer = new WeakMap();
|
|
268
|
-
_structuredLog = new WeakSet();
|
|
269
|
-
structuredLog_fn = /* @__PURE__ */ __name(function(loggerFunction, message, ...args) {
|
|
270
|
-
const structuredLog = {
|
|
271
|
-
...structureArgs(safeJsonClone(args), __privateGet(this, _filteredKeys)),
|
|
272
|
-
timestamp: /* @__PURE__ */ new Date(),
|
|
273
|
-
name: __privateGet(this, _name),
|
|
274
|
-
message
|
|
275
|
-
};
|
|
276
|
-
loggerFunction(JSON.stringify(structuredLog, createReplacer(__privateGet(this, _jsonReplacer))));
|
|
277
|
-
}, "#structuredLog");
|
|
278
|
-
__name(_Logger, "Logger");
|
|
279
|
-
var Logger = _Logger;
|
|
280
|
-
function createReplacer(replacer) {
|
|
281
|
-
return (key, value) => {
|
|
282
|
-
if (typeof value === "bigint") {
|
|
283
|
-
return value.toString();
|
|
284
|
-
}
|
|
285
|
-
if (replacer) {
|
|
286
|
-
return replacer(key, value);
|
|
287
|
-
}
|
|
288
|
-
return value;
|
|
289
|
-
};
|
|
290
|
-
}
|
|
291
|
-
__name(createReplacer, "createReplacer");
|
|
292
|
-
function bigIntReplacer(_key, value) {
|
|
293
|
-
if (typeof value === "bigint") {
|
|
294
|
-
return value.toString();
|
|
295
|
-
}
|
|
296
|
-
return value;
|
|
297
|
-
}
|
|
298
|
-
__name(bigIntReplacer, "bigIntReplacer");
|
|
299
|
-
function safeJsonClone(obj) {
|
|
300
|
-
try {
|
|
301
|
-
return JSON.parse(JSON.stringify(obj, bigIntReplacer));
|
|
302
|
-
} catch (e) {
|
|
303
|
-
return obj;
|
|
304
|
-
}
|
|
305
|
-
}
|
|
306
|
-
__name(safeJsonClone, "safeJsonClone");
|
|
307
|
-
function structureArgs(args, filteredKeys = []) {
|
|
308
|
-
if (args.length === 0) {
|
|
309
|
-
return;
|
|
310
|
-
}
|
|
311
|
-
if (args.length === 1 && typeof args[0] === "object") {
|
|
312
|
-
return filterKeys(JSON.parse(JSON.stringify(args[0], bigIntReplacer)), filteredKeys);
|
|
313
|
-
}
|
|
314
|
-
return args;
|
|
315
|
-
}
|
|
316
|
-
__name(structureArgs, "structureArgs");
|
|
317
|
-
function filterKeys(obj, keys) {
|
|
318
|
-
if (typeof obj !== "object" || obj === null) {
|
|
319
|
-
return obj;
|
|
320
|
-
}
|
|
321
|
-
if (Array.isArray(obj)) {
|
|
322
|
-
return obj.map((item) => filterKeys(item, keys));
|
|
323
|
-
}
|
|
324
|
-
const filteredObj = {};
|
|
325
|
-
for (const [key, value] of Object.entries(obj)) {
|
|
326
|
-
if (keys.includes(key)) {
|
|
327
|
-
if (value) {
|
|
328
|
-
filteredObj[key] = `[filtered ${prettyPrintBytes(value)}]`;
|
|
329
|
-
} else {
|
|
330
|
-
filteredObj[key] = value;
|
|
331
|
-
}
|
|
332
|
-
continue;
|
|
333
|
-
}
|
|
334
|
-
filteredObj[key] = filterKeys(value, keys);
|
|
335
|
-
}
|
|
336
|
-
return filteredObj;
|
|
337
|
-
}
|
|
338
|
-
__name(filterKeys, "filterKeys");
|
|
339
|
-
function prettyPrintBytes(value) {
|
|
340
|
-
if (process.env.NODE_ENV === "production") {
|
|
341
|
-
return "skipped size";
|
|
342
|
-
}
|
|
343
|
-
const sizeInBytes = Buffer.byteLength(JSON.stringify(value), "utf8");
|
|
344
|
-
if (sizeInBytes < 1024) {
|
|
345
|
-
return `${sizeInBytes} bytes`;
|
|
346
|
-
}
|
|
347
|
-
if (sizeInBytes < 1024 * 1024) {
|
|
348
|
-
return `${(sizeInBytes / 1024).toFixed(2)} KB`;
|
|
349
|
-
}
|
|
350
|
-
if (sizeInBytes < 1024 * 1024 * 1024) {
|
|
351
|
-
return `${(sizeInBytes / (1024 * 1024)).toFixed(2)} MB`;
|
|
352
|
-
}
|
|
353
|
-
return `${(sizeInBytes / (1024 * 1024 * 1024)).toFixed(2)} GB`;
|
|
354
|
-
}
|
|
355
|
-
__name(prettyPrintBytes, "prettyPrintBytes");
|
|
356
|
-
|
|
357
|
-
// src/schemas/api.ts
|
|
358
|
-
var import_ulid = require("ulid");
|
|
359
|
-
var import_zod11 = require("zod");
|
|
6
|
+
var __defProp = Object.defineProperty;
|
|
7
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
360
8
|
|
|
361
9
|
// src/schemas/addMissingVersionField.ts
|
|
362
10
|
function addMissingVersionField(val) {
|
|
@@ -369,220 +17,204 @@ function addMissingVersionField(val) {
|
|
|
369
17
|
return val;
|
|
370
18
|
}
|
|
371
19
|
__name(addMissingVersionField, "addMissingVersionField");
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
20
|
+
var ErrorWithStackSchema = zod.z.object({
|
|
21
|
+
message: zod.z.string(),
|
|
22
|
+
name: zod.z.string().optional(),
|
|
23
|
+
stack: zod.z.string().optional()
|
|
24
|
+
});
|
|
25
|
+
var SchemaErrorSchema = zod.z.object({
|
|
26
|
+
path: zod.z.array(zod.z.string()),
|
|
27
|
+
message: zod.z.string()
|
|
28
|
+
});
|
|
29
|
+
var stringPatternMatchers = [
|
|
30
|
+
zod.z.object({
|
|
31
|
+
$endsWith: zod.z.string()
|
|
32
|
+
}),
|
|
33
|
+
zod.z.object({
|
|
34
|
+
$startsWith: zod.z.string()
|
|
35
|
+
}),
|
|
36
|
+
zod.z.object({
|
|
37
|
+
$ignoreCaseEquals: zod.z.string()
|
|
38
|
+
})
|
|
39
|
+
];
|
|
40
|
+
var EventMatcherSchema = zod.z.union([
|
|
388
41
|
/** Match against a string */
|
|
389
|
-
|
|
42
|
+
zod.z.array(zod.z.string()),
|
|
390
43
|
/** Match against a number */
|
|
391
|
-
|
|
44
|
+
zod.z.array(zod.z.number()),
|
|
392
45
|
/** Match against a boolean */
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
import_zod2.z.object({
|
|
399
|
-
$startsWith: import_zod2.z.string()
|
|
400
|
-
}),
|
|
401
|
-
import_zod2.z.object({
|
|
402
|
-
$exists: import_zod2.z.boolean()
|
|
46
|
+
zod.z.array(zod.z.boolean()),
|
|
47
|
+
zod.z.array(zod.z.union([
|
|
48
|
+
...stringPatternMatchers,
|
|
49
|
+
zod.z.object({
|
|
50
|
+
$exists: zod.z.boolean()
|
|
403
51
|
}),
|
|
404
|
-
|
|
405
|
-
$isNull:
|
|
52
|
+
zod.z.object({
|
|
53
|
+
$isNull: zod.z.boolean()
|
|
406
54
|
}),
|
|
407
|
-
|
|
408
|
-
$anythingBut:
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
55
|
+
zod.z.object({
|
|
56
|
+
$anythingBut: zod.z.union([
|
|
57
|
+
zod.z.string(),
|
|
58
|
+
zod.z.number(),
|
|
59
|
+
zod.z.boolean()
|
|
412
60
|
])
|
|
413
61
|
}),
|
|
414
|
-
|
|
415
|
-
$anythingBut:
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
62
|
+
zod.z.object({
|
|
63
|
+
$anythingBut: zod.z.union([
|
|
64
|
+
zod.z.array(zod.z.string()),
|
|
65
|
+
zod.z.array(zod.z.number()),
|
|
66
|
+
zod.z.array(zod.z.boolean())
|
|
419
67
|
])
|
|
420
68
|
}),
|
|
421
|
-
|
|
422
|
-
$gt:
|
|
69
|
+
zod.z.object({
|
|
70
|
+
$gt: zod.z.number()
|
|
423
71
|
}),
|
|
424
|
-
|
|
425
|
-
$lt:
|
|
72
|
+
zod.z.object({
|
|
73
|
+
$lt: zod.z.number()
|
|
426
74
|
}),
|
|
427
|
-
|
|
428
|
-
$gte:
|
|
75
|
+
zod.z.object({
|
|
76
|
+
$gte: zod.z.number()
|
|
429
77
|
}),
|
|
430
|
-
|
|
431
|
-
$lte:
|
|
78
|
+
zod.z.object({
|
|
79
|
+
$lte: zod.z.number()
|
|
432
80
|
}),
|
|
433
|
-
|
|
434
|
-
$between:
|
|
435
|
-
|
|
436
|
-
|
|
81
|
+
zod.z.object({
|
|
82
|
+
$between: zod.z.tuple([
|
|
83
|
+
zod.z.number(),
|
|
84
|
+
zod.z.number()
|
|
437
85
|
])
|
|
438
86
|
}),
|
|
439
|
-
|
|
440
|
-
$includes:
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
87
|
+
zod.z.object({
|
|
88
|
+
$includes: zod.z.union([
|
|
89
|
+
zod.z.string(),
|
|
90
|
+
zod.z.number(),
|
|
91
|
+
zod.z.boolean()
|
|
444
92
|
])
|
|
445
|
-
}),
|
|
446
|
-
import_zod2.z.object({
|
|
447
|
-
$ignoreCaseEquals: import_zod2.z.string()
|
|
448
93
|
})
|
|
449
94
|
]))
|
|
450
95
|
]);
|
|
451
|
-
var EventFilterSchema =
|
|
96
|
+
var EventFilterSchema = zod.z.lazy(() => zod.z.record(zod.z.union([
|
|
452
97
|
EventMatcherSchema,
|
|
453
98
|
EventFilterSchema
|
|
454
99
|
])));
|
|
455
|
-
var EventRuleSchema =
|
|
456
|
-
event:
|
|
457
|
-
source:
|
|
100
|
+
var EventRuleSchema = zod.z.object({
|
|
101
|
+
event: zod.z.string().or(zod.z.array(zod.z.string())),
|
|
102
|
+
source: zod.z.string(),
|
|
458
103
|
payload: EventFilterSchema.optional(),
|
|
459
104
|
context: EventFilterSchema.optional()
|
|
460
105
|
});
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
var import_zod3 = require("zod");
|
|
464
|
-
var ConnectionAuthSchema = import_zod3.z.object({
|
|
465
|
-
type: import_zod3.z.enum([
|
|
106
|
+
var ConnectionAuthSchema = zod.z.object({
|
|
107
|
+
type: zod.z.enum([
|
|
466
108
|
"oauth2",
|
|
467
109
|
"apiKey"
|
|
468
110
|
]),
|
|
469
|
-
accessToken:
|
|
470
|
-
scopes:
|
|
471
|
-
additionalFields:
|
|
111
|
+
accessToken: zod.z.string(),
|
|
112
|
+
scopes: zod.z.array(zod.z.string()).optional(),
|
|
113
|
+
additionalFields: zod.z.record(zod.z.string()).optional()
|
|
472
114
|
});
|
|
473
|
-
var IntegrationMetadataSchema =
|
|
474
|
-
id:
|
|
475
|
-
name:
|
|
476
|
-
instructions:
|
|
115
|
+
var IntegrationMetadataSchema = zod.z.object({
|
|
116
|
+
id: zod.z.string(),
|
|
117
|
+
name: zod.z.string(),
|
|
118
|
+
instructions: zod.z.string().optional()
|
|
477
119
|
});
|
|
478
|
-
var IntegrationConfigSchema =
|
|
479
|
-
id:
|
|
120
|
+
var IntegrationConfigSchema = zod.z.object({
|
|
121
|
+
id: zod.z.string(),
|
|
480
122
|
metadata: IntegrationMetadataSchema,
|
|
481
|
-
authSource:
|
|
123
|
+
authSource: zod.z.enum([
|
|
482
124
|
"HOSTED",
|
|
483
125
|
"LOCAL",
|
|
484
126
|
"RESOLVER"
|
|
485
127
|
])
|
|
486
128
|
});
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
import_zod4.z.number(),
|
|
493
|
-
import_zod4.z.boolean(),
|
|
494
|
-
import_zod4.z.null()
|
|
129
|
+
var LiteralSchema = zod.z.union([
|
|
130
|
+
zod.z.string(),
|
|
131
|
+
zod.z.number(),
|
|
132
|
+
zod.z.boolean(),
|
|
133
|
+
zod.z.null()
|
|
495
134
|
]);
|
|
496
|
-
var DeserializedJsonSchema =
|
|
135
|
+
var DeserializedJsonSchema = zod.z.lazy(() => zod.z.union([
|
|
497
136
|
LiteralSchema,
|
|
498
|
-
|
|
499
|
-
|
|
137
|
+
zod.z.array(DeserializedJsonSchema),
|
|
138
|
+
zod.z.record(DeserializedJsonSchema)
|
|
500
139
|
]));
|
|
501
|
-
var SerializableSchema =
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
140
|
+
var SerializableSchema = zod.z.union([
|
|
141
|
+
zod.z.string(),
|
|
142
|
+
zod.z.number(),
|
|
143
|
+
zod.z.boolean(),
|
|
144
|
+
zod.z.null(),
|
|
145
|
+
zod.z.date(),
|
|
146
|
+
zod.z.undefined(),
|
|
147
|
+
zod.z.symbol()
|
|
509
148
|
]);
|
|
510
|
-
var SerializableJsonSchema =
|
|
149
|
+
var SerializableJsonSchema = zod.z.lazy(() => zod.z.union([
|
|
511
150
|
SerializableSchema,
|
|
512
|
-
|
|
513
|
-
|
|
151
|
+
zod.z.array(SerializableJsonSchema),
|
|
152
|
+
zod.z.record(SerializableJsonSchema)
|
|
514
153
|
]));
|
|
515
|
-
|
|
516
|
-
// src/schemas/properties.ts
|
|
517
|
-
var import_zod5 = require("zod");
|
|
518
|
-
var DisplayPropertySchema = import_zod5.z.object({
|
|
154
|
+
var DisplayPropertySchema = zod.z.object({
|
|
519
155
|
/** The label for the property */
|
|
520
|
-
label:
|
|
156
|
+
label: zod.z.string(),
|
|
521
157
|
/** The value of the property */
|
|
522
|
-
text:
|
|
158
|
+
text: zod.z.string(),
|
|
523
159
|
/** The URL to link to when the property is clicked */
|
|
524
|
-
url:
|
|
160
|
+
url: zod.z.string().optional(),
|
|
161
|
+
/** The URL to a list of images to display next to the property */
|
|
162
|
+
imageUrl: zod.z.array(zod.z.string()).optional()
|
|
525
163
|
});
|
|
526
|
-
var DisplayPropertiesSchema =
|
|
527
|
-
var StyleSchema =
|
|
164
|
+
var DisplayPropertiesSchema = zod.z.array(DisplayPropertySchema);
|
|
165
|
+
var StyleSchema = zod.z.object({
|
|
528
166
|
/** The style, `normal` or `minimal` */
|
|
529
|
-
style:
|
|
167
|
+
style: zod.z.enum([
|
|
530
168
|
"normal",
|
|
531
169
|
"minimal"
|
|
532
170
|
]),
|
|
533
171
|
/** A variant of the style. */
|
|
534
|
-
variant:
|
|
172
|
+
variant: zod.z.string().optional()
|
|
535
173
|
});
|
|
536
|
-
|
|
537
|
-
// src/schemas/schedules.ts
|
|
538
|
-
var import_zod6 = require("zod");
|
|
539
174
|
var SCHEDULED_EVENT = "dev.trigger.scheduled";
|
|
540
|
-
var ScheduledPayloadSchema =
|
|
541
|
-
ts:
|
|
542
|
-
lastTimestamp:
|
|
175
|
+
var ScheduledPayloadSchema = zod.z.object({
|
|
176
|
+
ts: zod.z.coerce.date(),
|
|
177
|
+
lastTimestamp: zod.z.coerce.date().optional()
|
|
543
178
|
});
|
|
544
|
-
var IntervalOptionsSchema =
|
|
179
|
+
var IntervalOptionsSchema = zod.z.object({
|
|
545
180
|
/** The number of seconds for the interval. Min = 60, Max = 2_592_000 (30 days) */
|
|
546
|
-
seconds:
|
|
181
|
+
seconds: zod.z.number().int().positive().min(60).max(2592e3)
|
|
547
182
|
});
|
|
548
|
-
var CronOptionsSchema =
|
|
183
|
+
var CronOptionsSchema = zod.z.object({
|
|
549
184
|
/** A CRON expression that defines the schedule. A useful tool when writing CRON
|
|
550
185
|
expressions is [crontab guru](https://crontab.guru). Note that the timezone
|
|
551
186
|
used is UTC. */
|
|
552
|
-
cron:
|
|
187
|
+
cron: zod.z.string()
|
|
553
188
|
});
|
|
554
|
-
var CronMetadataSchema =
|
|
555
|
-
type:
|
|
189
|
+
var CronMetadataSchema = zod.z.object({
|
|
190
|
+
type: zod.z.literal("cron"),
|
|
556
191
|
options: CronOptionsSchema,
|
|
557
192
|
/** An optional Account ID to associate with runs triggered by this interval */
|
|
558
|
-
accountId:
|
|
559
|
-
metadata:
|
|
193
|
+
accountId: zod.z.string().optional(),
|
|
194
|
+
metadata: zod.z.any()
|
|
560
195
|
});
|
|
561
|
-
var IntervalMetadataSchema =
|
|
196
|
+
var IntervalMetadataSchema = zod.z.object({
|
|
562
197
|
/** An interval reoccurs at the specified number of seconds */
|
|
563
|
-
type:
|
|
198
|
+
type: zod.z.literal("interval"),
|
|
564
199
|
/** An object containing options about the interval. */
|
|
565
200
|
options: IntervalOptionsSchema,
|
|
566
201
|
/** An optional Account ID to associate with runs triggered by this interval */
|
|
567
|
-
accountId:
|
|
202
|
+
accountId: zod.z.string().optional(),
|
|
568
203
|
/** Any additional metadata about the schedule. */
|
|
569
|
-
metadata:
|
|
204
|
+
metadata: zod.z.any()
|
|
570
205
|
});
|
|
571
|
-
var ScheduleMetadataSchema =
|
|
206
|
+
var ScheduleMetadataSchema = zod.z.discriminatedUnion("type", [
|
|
572
207
|
IntervalMetadataSchema,
|
|
573
208
|
CronMetadataSchema
|
|
574
209
|
]);
|
|
575
|
-
var RegisterDynamicSchedulePayloadSchema =
|
|
576
|
-
id:
|
|
577
|
-
jobs:
|
|
578
|
-
id:
|
|
579
|
-
version:
|
|
210
|
+
var RegisterDynamicSchedulePayloadSchema = zod.z.object({
|
|
211
|
+
id: zod.z.string(),
|
|
212
|
+
jobs: zod.z.array(zod.z.object({
|
|
213
|
+
id: zod.z.string(),
|
|
214
|
+
version: zod.z.string()
|
|
580
215
|
}))
|
|
581
216
|
});
|
|
582
|
-
|
|
583
|
-
// src/schemas/tasks.ts
|
|
584
|
-
var import_zod7 = require("zod");
|
|
585
|
-
var TaskStatusSchema = import_zod7.z.enum([
|
|
217
|
+
var TaskStatusSchema = zod.z.enum([
|
|
586
218
|
"PENDING",
|
|
587
219
|
"WAITING",
|
|
588
220
|
"RUNNING",
|
|
@@ -590,408 +222,548 @@ var TaskStatusSchema = import_zod7.z.enum([
|
|
|
590
222
|
"ERRORED",
|
|
591
223
|
"CANCELED"
|
|
592
224
|
]);
|
|
593
|
-
var TaskSchema =
|
|
594
|
-
id:
|
|
595
|
-
name:
|
|
596
|
-
icon:
|
|
597
|
-
noop:
|
|
598
|
-
startedAt:
|
|
599
|
-
completedAt:
|
|
600
|
-
delayUntil:
|
|
225
|
+
var TaskSchema = zod.z.object({
|
|
226
|
+
id: zod.z.string(),
|
|
227
|
+
name: zod.z.string(),
|
|
228
|
+
icon: zod.z.string().optional().nullable(),
|
|
229
|
+
noop: zod.z.boolean(),
|
|
230
|
+
startedAt: zod.z.coerce.date().optional().nullable(),
|
|
231
|
+
completedAt: zod.z.coerce.date().optional().nullable(),
|
|
232
|
+
delayUntil: zod.z.coerce.date().optional().nullable(),
|
|
601
233
|
status: TaskStatusSchema,
|
|
602
|
-
description:
|
|
603
|
-
properties:
|
|
604
|
-
outputProperties:
|
|
234
|
+
description: zod.z.string().optional().nullable(),
|
|
235
|
+
properties: zod.z.array(DisplayPropertySchema).optional().nullable(),
|
|
236
|
+
outputProperties: zod.z.array(DisplayPropertySchema).optional().nullable(),
|
|
605
237
|
params: DeserializedJsonSchema.optional().nullable(),
|
|
606
238
|
output: DeserializedJsonSchema.optional().nullable(),
|
|
607
|
-
|
|
608
|
-
|
|
239
|
+
context: DeserializedJsonSchema.optional().nullable(),
|
|
240
|
+
error: zod.z.string().optional().nullable(),
|
|
241
|
+
parentId: zod.z.string().optional().nullable(),
|
|
609
242
|
style: StyleSchema.optional().nullable(),
|
|
610
|
-
operation:
|
|
611
|
-
callbackUrl:
|
|
243
|
+
operation: zod.z.string().optional().nullable(),
|
|
244
|
+
callbackUrl: zod.z.string().optional().nullable(),
|
|
245
|
+
childExecutionMode: zod.z.enum([
|
|
246
|
+
"SEQUENTIAL",
|
|
247
|
+
"PARALLEL"
|
|
248
|
+
]).optional().nullable()
|
|
612
249
|
});
|
|
613
250
|
var ServerTaskSchema = TaskSchema.extend({
|
|
614
|
-
idempotencyKey:
|
|
615
|
-
attempts:
|
|
616
|
-
forceYield:
|
|
251
|
+
idempotencyKey: zod.z.string(),
|
|
252
|
+
attempts: zod.z.number(),
|
|
253
|
+
forceYield: zod.z.boolean().optional().nullable()
|
|
617
254
|
});
|
|
618
|
-
var CachedTaskSchema =
|
|
619
|
-
id:
|
|
620
|
-
idempotencyKey:
|
|
255
|
+
var CachedTaskSchema = zod.z.object({
|
|
256
|
+
id: zod.z.string(),
|
|
257
|
+
idempotencyKey: zod.z.string(),
|
|
621
258
|
status: TaskStatusSchema,
|
|
622
|
-
noop:
|
|
259
|
+
noop: zod.z.boolean().default(false),
|
|
623
260
|
output: DeserializedJsonSchema.optional().nullable(),
|
|
624
|
-
parentId:
|
|
625
|
-
});
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
title: import_zod8.z.string(),
|
|
638
|
-
source: import_zod8.z.string(),
|
|
639
|
-
icon: import_zod8.z.string(),
|
|
261
|
+
parentId: zod.z.string().optional().nullable()
|
|
262
|
+
});
|
|
263
|
+
var EventExampleSchema = zod.z.object({
|
|
264
|
+
id: zod.z.string(),
|
|
265
|
+
icon: zod.z.string().optional(),
|
|
266
|
+
name: zod.z.string(),
|
|
267
|
+
payload: zod.z.any()
|
|
268
|
+
});
|
|
269
|
+
var EventSpecificationSchema = zod.z.object({
|
|
270
|
+
name: zod.z.string().or(zod.z.array(zod.z.string())),
|
|
271
|
+
title: zod.z.string(),
|
|
272
|
+
source: zod.z.string(),
|
|
273
|
+
icon: zod.z.string(),
|
|
640
274
|
filter: EventFilterSchema.optional(),
|
|
641
|
-
properties:
|
|
642
|
-
schema:
|
|
643
|
-
examples:
|
|
644
|
-
});
|
|
645
|
-
var DynamicTriggerMetadataSchema =
|
|
646
|
-
type:
|
|
647
|
-
id:
|
|
648
|
-
});
|
|
649
|
-
var
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
275
|
+
properties: zod.z.array(DisplayPropertySchema).optional(),
|
|
276
|
+
schema: zod.z.any().optional(),
|
|
277
|
+
examples: zod.z.array(EventExampleSchema).optional()
|
|
278
|
+
});
|
|
279
|
+
var DynamicTriggerMetadataSchema = zod.z.object({
|
|
280
|
+
type: zod.z.literal("dynamic"),
|
|
281
|
+
id: zod.z.string()
|
|
282
|
+
});
|
|
283
|
+
var TriggerHelpSchema = zod.z.object({
|
|
284
|
+
noRuns: zod.z.object({
|
|
285
|
+
text: zod.z.string(),
|
|
286
|
+
link: zod.z.string().optional()
|
|
287
|
+
}).optional()
|
|
288
|
+
});
|
|
289
|
+
var StaticTriggerMetadataSchema = zod.z.object({
|
|
290
|
+
type: zod.z.literal("static"),
|
|
291
|
+
title: zod.z.union([
|
|
292
|
+
zod.z.string(),
|
|
293
|
+
zod.z.array(zod.z.string())
|
|
654
294
|
]),
|
|
655
|
-
properties:
|
|
656
|
-
rule: EventRuleSchema
|
|
295
|
+
properties: zod.z.array(DisplayPropertySchema).optional(),
|
|
296
|
+
rule: EventRuleSchema,
|
|
297
|
+
link: zod.z.string().optional(),
|
|
298
|
+
help: TriggerHelpSchema.optional()
|
|
657
299
|
});
|
|
658
|
-
var
|
|
659
|
-
type:
|
|
300
|
+
var InvokeTriggerMetadataSchema = zod.z.object({
|
|
301
|
+
type: zod.z.literal("invoke")
|
|
302
|
+
});
|
|
303
|
+
var ScheduledTriggerMetadataSchema = zod.z.object({
|
|
304
|
+
type: zod.z.literal("scheduled"),
|
|
660
305
|
schedule: ScheduleMetadataSchema
|
|
661
306
|
});
|
|
662
|
-
var TriggerMetadataSchema =
|
|
307
|
+
var TriggerMetadataSchema = zod.z.discriminatedUnion("type", [
|
|
663
308
|
DynamicTriggerMetadataSchema,
|
|
664
309
|
StaticTriggerMetadataSchema,
|
|
665
|
-
ScheduledTriggerMetadataSchema
|
|
310
|
+
ScheduledTriggerMetadataSchema,
|
|
311
|
+
InvokeTriggerMetadataSchema
|
|
666
312
|
]);
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
// src/schemas/statuses.ts
|
|
672
|
-
var import_zod9 = require("zod");
|
|
673
|
-
var StatusUpdateStateSchema = import_zod9.z.union([
|
|
674
|
-
import_zod9.z.literal("loading"),
|
|
675
|
-
import_zod9.z.literal("success"),
|
|
676
|
-
import_zod9.z.literal("failure")
|
|
313
|
+
var StatusUpdateStateSchema = zod.z.union([
|
|
314
|
+
zod.z.literal("loading"),
|
|
315
|
+
zod.z.literal("success"),
|
|
316
|
+
zod.z.literal("failure")
|
|
677
317
|
]);
|
|
678
|
-
var StatusUpdateDataSchema =
|
|
679
|
-
var StatusUpdateSchema =
|
|
680
|
-
label:
|
|
318
|
+
var StatusUpdateDataSchema = zod.z.record(SerializableJsonSchema);
|
|
319
|
+
var StatusUpdateSchema = zod.z.object({
|
|
320
|
+
label: zod.z.string().optional(),
|
|
681
321
|
state: StatusUpdateStateSchema.optional(),
|
|
682
322
|
data: StatusUpdateDataSchema.optional()
|
|
683
323
|
});
|
|
684
324
|
var InitalStatusUpdateSchema = StatusUpdateSchema.required({
|
|
685
325
|
label: true
|
|
686
326
|
});
|
|
687
|
-
var StatusHistorySchema =
|
|
327
|
+
var StatusHistorySchema = zod.z.array(StatusUpdateSchema);
|
|
688
328
|
var JobRunStatusRecordSchema = InitalStatusUpdateSchema.extend({
|
|
689
|
-
key:
|
|
329
|
+
key: zod.z.string(),
|
|
690
330
|
history: StatusHistorySchema
|
|
691
331
|
});
|
|
692
332
|
|
|
693
333
|
// src/schemas/runs.ts
|
|
694
|
-
var RunStatusSchema =
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
334
|
+
var RunStatusSchema = zod.z.union([
|
|
335
|
+
zod.z.literal("PENDING"),
|
|
336
|
+
zod.z.literal("QUEUED"),
|
|
337
|
+
zod.z.literal("WAITING_ON_CONNECTIONS"),
|
|
338
|
+
zod.z.literal("PREPROCESSING"),
|
|
339
|
+
zod.z.literal("STARTED"),
|
|
340
|
+
zod.z.literal("SUCCESS"),
|
|
341
|
+
zod.z.literal("FAILURE"),
|
|
342
|
+
zod.z.literal("TIMED_OUT"),
|
|
343
|
+
zod.z.literal("ABORTED"),
|
|
344
|
+
zod.z.literal("CANCELED"),
|
|
345
|
+
zod.z.literal("UNRESOLVED_AUTH"),
|
|
346
|
+
zod.z.literal("INVALID_PAYLOAD"),
|
|
347
|
+
zod.z.literal("EXECUTING"),
|
|
348
|
+
zod.z.literal("WAITING_TO_CONTINUE"),
|
|
349
|
+
zod.z.literal("WAITING_TO_EXECUTE")
|
|
707
350
|
]);
|
|
708
|
-
var RunTaskSchema =
|
|
351
|
+
var RunTaskSchema = zod.z.object({
|
|
709
352
|
/** The Task id */
|
|
710
|
-
id:
|
|
353
|
+
id: zod.z.string(),
|
|
711
354
|
/** The key that you defined when creating the Task, the first param in any task. */
|
|
712
|
-
displayKey:
|
|
355
|
+
displayKey: zod.z.string().nullable(),
|
|
713
356
|
/** The Task status */
|
|
714
357
|
status: TaskStatusSchema,
|
|
715
358
|
/** The name of the Task */
|
|
716
|
-
name:
|
|
359
|
+
name: zod.z.string(),
|
|
717
360
|
/** The icon of the Task, a string.
|
|
718
361
|
* For integrations, this will be a lowercase name of the company.
|
|
719
362
|
* Can be used with the [@trigger.dev/companyicons](https://www.npmjs.com/package/@trigger.dev/companyicons) package to display an svg. */
|
|
720
|
-
icon:
|
|
363
|
+
icon: zod.z.string().nullable(),
|
|
721
364
|
/** When the task started */
|
|
722
|
-
startedAt:
|
|
365
|
+
startedAt: zod.z.coerce.date().nullable(),
|
|
723
366
|
/** When the task completed */
|
|
724
|
-
completedAt:
|
|
367
|
+
completedAt: zod.z.coerce.date().nullable()
|
|
725
368
|
});
|
|
726
369
|
var RunTaskWithSubtasksSchema = RunTaskSchema.extend({
|
|
727
|
-
subtasks:
|
|
370
|
+
subtasks: zod.z.lazy(() => RunTaskWithSubtasksSchema.array()).optional()
|
|
728
371
|
});
|
|
729
|
-
var GetRunOptionsSchema =
|
|
372
|
+
var GetRunOptionsSchema = zod.z.object({
|
|
730
373
|
/** Return subtasks, which appear in a `subtasks` array on a task. @default false */
|
|
731
|
-
subtasks:
|
|
374
|
+
subtasks: zod.z.boolean().optional(),
|
|
732
375
|
/** You can use this to get more tasks, if there are more than are returned in a single batch @default undefined */
|
|
733
|
-
cursor:
|
|
376
|
+
cursor: zod.z.string().optional(),
|
|
734
377
|
/** How many tasks you want to return in one go, max 50. @default 20 */
|
|
735
|
-
take:
|
|
378
|
+
take: zod.z.number().optional()
|
|
736
379
|
});
|
|
737
|
-
|
|
380
|
+
GetRunOptionsSchema.extend({
|
|
738
381
|
/** If `true`, it returns the `params` and `output` of all tasks. @default false */
|
|
739
|
-
taskdetails:
|
|
382
|
+
taskdetails: zod.z.boolean().optional()
|
|
740
383
|
});
|
|
741
|
-
var RunSchema =
|
|
384
|
+
var RunSchema = zod.z.object({
|
|
742
385
|
/** The Run id */
|
|
743
|
-
id:
|
|
386
|
+
id: zod.z.string(),
|
|
744
387
|
/** The Run status */
|
|
745
388
|
status: RunStatusSchema,
|
|
746
389
|
/** When the run started */
|
|
747
|
-
startedAt:
|
|
390
|
+
startedAt: zod.z.coerce.date().nullable(),
|
|
748
391
|
/** When the run was last updated */
|
|
749
|
-
updatedAt:
|
|
392
|
+
updatedAt: zod.z.coerce.date().nullable(),
|
|
750
393
|
/** When the run was completed */
|
|
751
|
-
completedAt:
|
|
394
|
+
completedAt: zod.z.coerce.date().nullable()
|
|
752
395
|
});
|
|
753
396
|
var GetRunSchema = RunSchema.extend({
|
|
754
397
|
/** The output of the run */
|
|
755
|
-
output:
|
|
398
|
+
output: zod.z.any().optional(),
|
|
756
399
|
/** The tasks from the run */
|
|
757
|
-
tasks:
|
|
400
|
+
tasks: zod.z.array(RunTaskWithSubtasksSchema),
|
|
758
401
|
/** Any status updates that were published from the run */
|
|
759
|
-
statuses:
|
|
402
|
+
statuses: zod.z.array(JobRunStatusRecordSchema).default([]),
|
|
760
403
|
/** If there are more tasks, you can use this to get them */
|
|
761
|
-
nextCursor:
|
|
404
|
+
nextCursor: zod.z.string().optional()
|
|
762
405
|
});
|
|
763
|
-
|
|
406
|
+
zod.z.object({
|
|
764
407
|
/** You can use this to get more tasks, if there are more than are returned in a single batch @default undefined */
|
|
765
|
-
cursor:
|
|
408
|
+
cursor: zod.z.string().optional(),
|
|
766
409
|
/** How many runs you want to return in one go, max 50. @default 20 */
|
|
767
|
-
take:
|
|
410
|
+
take: zod.z.number().optional()
|
|
768
411
|
});
|
|
769
|
-
var GetRunsSchema =
|
|
412
|
+
var GetRunsSchema = zod.z.object({
|
|
770
413
|
/** The runs from the query */
|
|
771
414
|
runs: RunSchema.array(),
|
|
772
415
|
/** If there are more runs, you can use this to get them */
|
|
773
|
-
nextCursor:
|
|
416
|
+
nextCursor: zod.z.string().optional()
|
|
417
|
+
});
|
|
418
|
+
var StringMatchSchema = zod.z.union([
|
|
419
|
+
/** Match against a string */
|
|
420
|
+
zod.z.array(zod.z.string()),
|
|
421
|
+
zod.z.array(zod.z.union(stringPatternMatchers))
|
|
422
|
+
]);
|
|
423
|
+
var HTTPMethodUnionSchema = zod.z.union([
|
|
424
|
+
zod.z.literal("GET"),
|
|
425
|
+
zod.z.literal("POST"),
|
|
426
|
+
zod.z.literal("PUT"),
|
|
427
|
+
zod.z.literal("PATCH"),
|
|
428
|
+
zod.z.literal("DELETE"),
|
|
429
|
+
zod.z.literal("HEAD"),
|
|
430
|
+
zod.z.literal("OPTIONS")
|
|
431
|
+
]);
|
|
432
|
+
var RequestFilterSchema = zod.z.object({
|
|
433
|
+
/** An array of HTTP methods to match.
|
|
434
|
+
* For example, `["GET", "POST"]` will match both `GET` and `POST` Requests. */
|
|
435
|
+
method: zod.z.array(HTTPMethodUnionSchema).optional(),
|
|
436
|
+
/** An object of header key/values to match.
|
|
437
|
+
* This uses the [EventFilter matching syntax](https://trigger.dev/docs/documentation/guides/event-filter).
|
|
438
|
+
|
|
439
|
+
@example
|
|
440
|
+
```ts
|
|
441
|
+
filter: {
|
|
442
|
+
header: {
|
|
443
|
+
"content-type": ["application/json"],
|
|
444
|
+
},
|
|
445
|
+
},
|
|
446
|
+
``` */
|
|
447
|
+
headers: zod.z.record(StringMatchSchema).optional(),
|
|
448
|
+
/** An object of query parameters to match.
|
|
449
|
+
* This uses the [EventFilter matching syntax](https://trigger.dev/docs/documentation/guides/event-filter).
|
|
450
|
+
|
|
451
|
+
@example
|
|
452
|
+
```ts
|
|
453
|
+
filter: {
|
|
454
|
+
query: {
|
|
455
|
+
"hub.mode": [{ $startsWith: "sub" }],
|
|
456
|
+
},
|
|
457
|
+
},
|
|
458
|
+
``` */
|
|
459
|
+
query: zod.z.record(StringMatchSchema).optional(),
|
|
460
|
+
/** An object of key/values to match.
|
|
461
|
+
* This uses the [EventFilter matching syntax](https://trigger.dev/docs/documentation/guides/event-filter).
|
|
462
|
+
*/
|
|
463
|
+
body: EventFilterSchema.optional()
|
|
464
|
+
});
|
|
465
|
+
var ResponseFilterSchema = RequestFilterSchema.omit({
|
|
466
|
+
method: true,
|
|
467
|
+
query: true
|
|
468
|
+
}).extend({
|
|
469
|
+
status: zod.z.array(zod.z.number()).optional()
|
|
774
470
|
});
|
|
775
471
|
|
|
776
472
|
// src/schemas/api.ts
|
|
777
|
-
var UpdateTriggerSourceBodyV1Schema =
|
|
778
|
-
registeredEvents:
|
|
779
|
-
secret:
|
|
473
|
+
var UpdateTriggerSourceBodyV1Schema = zod.z.object({
|
|
474
|
+
registeredEvents: zod.z.array(zod.z.string()),
|
|
475
|
+
secret: zod.z.string().optional(),
|
|
780
476
|
data: SerializableJsonSchema.optional()
|
|
781
477
|
});
|
|
782
|
-
var UpdateTriggerSourceBodyV2Schema =
|
|
783
|
-
secret:
|
|
478
|
+
var UpdateTriggerSourceBodyV2Schema = zod.z.object({
|
|
479
|
+
secret: zod.z.string().optional(),
|
|
784
480
|
data: SerializableJsonSchema.optional(),
|
|
785
|
-
options:
|
|
786
|
-
event:
|
|
787
|
-
}).and(
|
|
481
|
+
options: zod.z.object({
|
|
482
|
+
event: zod.z.array(zod.z.string())
|
|
483
|
+
}).and(zod.z.record(zod.z.string(), zod.z.array(zod.z.string())).optional())
|
|
788
484
|
});
|
|
789
|
-
var
|
|
790
|
-
|
|
791
|
-
|
|
485
|
+
var UpdateWebhookBodySchema = zod.z.discriminatedUnion("active", [
|
|
486
|
+
zod.z.object({
|
|
487
|
+
active: zod.z.literal(false)
|
|
488
|
+
}),
|
|
489
|
+
zod.z.object({
|
|
490
|
+
active: zod.z.literal(true),
|
|
491
|
+
config: zod.z.record(zod.z.string().array())
|
|
492
|
+
})
|
|
493
|
+
]);
|
|
494
|
+
var RegisterHTTPTriggerSourceBodySchema = zod.z.object({
|
|
495
|
+
type: zod.z.literal("HTTP"),
|
|
496
|
+
url: zod.z.string().url()
|
|
792
497
|
});
|
|
793
|
-
var RegisterSMTPTriggerSourceBodySchema =
|
|
794
|
-
type:
|
|
498
|
+
var RegisterSMTPTriggerSourceBodySchema = zod.z.object({
|
|
499
|
+
type: zod.z.literal("SMTP")
|
|
795
500
|
});
|
|
796
|
-
var RegisterSQSTriggerSourceBodySchema =
|
|
797
|
-
type:
|
|
501
|
+
var RegisterSQSTriggerSourceBodySchema = zod.z.object({
|
|
502
|
+
type: zod.z.literal("SQS")
|
|
798
503
|
});
|
|
799
|
-
var RegisterSourceChannelBodySchema =
|
|
504
|
+
var RegisterSourceChannelBodySchema = zod.z.discriminatedUnion("type", [
|
|
800
505
|
RegisterHTTPTriggerSourceBodySchema,
|
|
801
506
|
RegisterSMTPTriggerSourceBodySchema,
|
|
802
507
|
RegisterSQSTriggerSourceBodySchema
|
|
803
508
|
]);
|
|
509
|
+
var REGISTER_WEBHOOK = "dev.trigger.webhook.register";
|
|
510
|
+
var DELIVER_WEBHOOK_REQUEST = "dev.trigger.webhook.deliver";
|
|
511
|
+
var RegisterWebhookSourceSchema = zod.z.object({
|
|
512
|
+
key: zod.z.string(),
|
|
513
|
+
params: zod.z.any(),
|
|
514
|
+
config: zod.z.any(),
|
|
515
|
+
active: zod.z.boolean(),
|
|
516
|
+
secret: zod.z.string(),
|
|
517
|
+
url: zod.z.string(),
|
|
518
|
+
data: DeserializedJsonSchema.optional(),
|
|
519
|
+
clientId: zod.z.string().optional()
|
|
520
|
+
});
|
|
521
|
+
var RegisterWebhookPayloadSchema = zod.z.object({
|
|
522
|
+
active: zod.z.boolean(),
|
|
523
|
+
params: zod.z.any().optional(),
|
|
524
|
+
config: zod.z.object({
|
|
525
|
+
current: zod.z.record(zod.z.string().array()),
|
|
526
|
+
desired: zod.z.record(zod.z.string().array())
|
|
527
|
+
}),
|
|
528
|
+
// from HTTP Endpoint
|
|
529
|
+
url: zod.z.string(),
|
|
530
|
+
secret: zod.z.string()
|
|
531
|
+
});
|
|
804
532
|
var REGISTER_SOURCE_EVENT_V1 = "dev.trigger.source.register";
|
|
805
533
|
var REGISTER_SOURCE_EVENT_V2 = "dev.trigger.source.register.v2";
|
|
806
|
-
var RegisterTriggerSourceSchema =
|
|
807
|
-
key:
|
|
808
|
-
params:
|
|
809
|
-
active:
|
|
810
|
-
secret:
|
|
534
|
+
var RegisterTriggerSourceSchema = zod.z.object({
|
|
535
|
+
key: zod.z.string(),
|
|
536
|
+
params: zod.z.any(),
|
|
537
|
+
active: zod.z.boolean(),
|
|
538
|
+
secret: zod.z.string(),
|
|
811
539
|
data: DeserializedJsonSchema.optional(),
|
|
812
540
|
channel: RegisterSourceChannelBodySchema,
|
|
813
|
-
clientId:
|
|
541
|
+
clientId: zod.z.string().optional()
|
|
814
542
|
});
|
|
815
|
-
|
|
816
|
-
name:
|
|
817
|
-
value:
|
|
543
|
+
zod.z.object({
|
|
544
|
+
name: zod.z.string(),
|
|
545
|
+
value: zod.z.string()
|
|
818
546
|
});
|
|
819
|
-
var RegisterSourceEventSchemaV1 =
|
|
547
|
+
var RegisterSourceEventSchemaV1 = zod.z.object({
|
|
820
548
|
/** The id of the source */
|
|
821
|
-
id:
|
|
549
|
+
id: zod.z.string(),
|
|
822
550
|
source: RegisterTriggerSourceSchema,
|
|
823
|
-
events:
|
|
824
|
-
missingEvents:
|
|
825
|
-
orphanedEvents:
|
|
826
|
-
dynamicTriggerId:
|
|
551
|
+
events: zod.z.array(zod.z.string()),
|
|
552
|
+
missingEvents: zod.z.array(zod.z.string()),
|
|
553
|
+
orphanedEvents: zod.z.array(zod.z.string()),
|
|
554
|
+
dynamicTriggerId: zod.z.string().optional()
|
|
827
555
|
});
|
|
828
|
-
var RegisteredOptionsDiffSchema =
|
|
829
|
-
desired:
|
|
830
|
-
missing:
|
|
831
|
-
orphaned:
|
|
556
|
+
var RegisteredOptionsDiffSchema = zod.z.object({
|
|
557
|
+
desired: zod.z.array(zod.z.string()),
|
|
558
|
+
missing: zod.z.array(zod.z.string()),
|
|
559
|
+
orphaned: zod.z.array(zod.z.string())
|
|
832
560
|
});
|
|
833
|
-
var RegisterSourceEventOptionsSchema =
|
|
561
|
+
var RegisterSourceEventOptionsSchema = zod.z.object({
|
|
834
562
|
event: RegisteredOptionsDiffSchema
|
|
835
|
-
}).and(
|
|
836
|
-
var RegisterSourceEventSchemaV2 =
|
|
563
|
+
}).and(zod.z.record(zod.z.string(), RegisteredOptionsDiffSchema));
|
|
564
|
+
var RegisterSourceEventSchemaV2 = zod.z.object({
|
|
837
565
|
/** The id of the source */
|
|
838
|
-
id:
|
|
566
|
+
id: zod.z.string(),
|
|
839
567
|
source: RegisterTriggerSourceSchema,
|
|
840
568
|
options: RegisterSourceEventOptionsSchema,
|
|
841
|
-
dynamicTriggerId:
|
|
569
|
+
dynamicTriggerId: zod.z.string().optional()
|
|
842
570
|
});
|
|
843
|
-
var TriggerSourceSchema =
|
|
844
|
-
id:
|
|
845
|
-
key:
|
|
571
|
+
var TriggerSourceSchema = zod.z.object({
|
|
572
|
+
id: zod.z.string(),
|
|
573
|
+
key: zod.z.string()
|
|
846
574
|
});
|
|
847
575
|
var HttpSourceResponseMetadataSchema = DeserializedJsonSchema;
|
|
848
|
-
var HandleTriggerSourceSchema =
|
|
849
|
-
key:
|
|
850
|
-
secret:
|
|
851
|
-
data:
|
|
852
|
-
params:
|
|
576
|
+
var HandleTriggerSourceSchema = zod.z.object({
|
|
577
|
+
key: zod.z.string(),
|
|
578
|
+
secret: zod.z.string(),
|
|
579
|
+
data: zod.z.any(),
|
|
580
|
+
params: zod.z.any(),
|
|
853
581
|
auth: ConnectionAuthSchema.optional(),
|
|
854
582
|
metadata: HttpSourceResponseMetadataSchema.optional()
|
|
855
583
|
});
|
|
856
|
-
var
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
"x-ts-
|
|
864
|
-
"x-ts-
|
|
865
|
-
"x-ts-
|
|
866
|
-
"x-ts-data": import_zod11.z.string().transform((s) => JSON.parse(s)),
|
|
867
|
-
"x-ts-params": import_zod11.z.string().transform((s) => JSON.parse(s)),
|
|
868
|
-
"x-ts-http-url": import_zod11.z.string(),
|
|
869
|
-
"x-ts-http-method": import_zod11.z.string(),
|
|
870
|
-
"x-ts-http-headers": import_zod11.z.string().transform((s) => import_zod11.z.record(import_zod11.z.string()).parse(JSON.parse(s))),
|
|
871
|
-
"x-ts-auth": import_zod11.z.string().optional().transform((s) => {
|
|
584
|
+
var HttpSourceRequestHeadersSchema = zod.z.object({
|
|
585
|
+
"x-ts-key": zod.z.string(),
|
|
586
|
+
"x-ts-dynamic-id": zod.z.string().optional(),
|
|
587
|
+
"x-ts-secret": zod.z.string(),
|
|
588
|
+
"x-ts-data": zod.z.string().transform((s) => JSON.parse(s)),
|
|
589
|
+
"x-ts-params": zod.z.string().transform((s) => JSON.parse(s)),
|
|
590
|
+
"x-ts-http-url": zod.z.string(),
|
|
591
|
+
"x-ts-http-method": zod.z.string(),
|
|
592
|
+
"x-ts-http-headers": zod.z.string().transform((s) => zod.z.record(zod.z.string()).parse(JSON.parse(s))),
|
|
593
|
+
"x-ts-auth": zod.z.string().optional().transform((s) => {
|
|
872
594
|
if (s === void 0)
|
|
873
595
|
return;
|
|
874
596
|
const json = JSON.parse(s);
|
|
875
597
|
return ConnectionAuthSchema.parse(json);
|
|
876
598
|
}),
|
|
877
|
-
"x-ts-metadata":
|
|
599
|
+
"x-ts-metadata": zod.z.string().optional().transform((s) => {
|
|
878
600
|
if (s === void 0)
|
|
879
601
|
return;
|
|
880
602
|
const json = JSON.parse(s);
|
|
881
603
|
return DeserializedJsonSchema.parse(json);
|
|
882
604
|
})
|
|
883
605
|
});
|
|
884
|
-
var
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
606
|
+
var HttpEndpointRequestHeadersSchema = zod.z.object({
|
|
607
|
+
"x-ts-key": zod.z.string(),
|
|
608
|
+
"x-ts-http-url": zod.z.string(),
|
|
609
|
+
"x-ts-http-method": zod.z.string(),
|
|
610
|
+
"x-ts-http-headers": zod.z.string().transform((s) => zod.z.record(zod.z.string()).parse(JSON.parse(s)))
|
|
611
|
+
});
|
|
612
|
+
var WebhookSourceRequestHeadersSchema = zod.z.object({
|
|
613
|
+
"x-ts-key": zod.z.string(),
|
|
614
|
+
"x-ts-dynamic-id": zod.z.string().optional(),
|
|
615
|
+
"x-ts-secret": zod.z.string(),
|
|
616
|
+
"x-ts-params": zod.z.string().transform((s) => JSON.parse(s)),
|
|
617
|
+
"x-ts-http-url": zod.z.string(),
|
|
618
|
+
"x-ts-http-method": zod.z.string(),
|
|
619
|
+
"x-ts-http-headers": zod.z.string().transform((s) => zod.z.record(zod.z.string()).parse(JSON.parse(s)))
|
|
620
|
+
});
|
|
621
|
+
var PongSuccessResponseSchema = zod.z.object({
|
|
622
|
+
ok: zod.z.literal(true),
|
|
623
|
+
triggerVersion: zod.z.string().optional(),
|
|
624
|
+
triggerSdkVersion: zod.z.string().optional()
|
|
625
|
+
});
|
|
626
|
+
var PongErrorResponseSchema = zod.z.object({
|
|
627
|
+
ok: zod.z.literal(false),
|
|
628
|
+
error: zod.z.string(),
|
|
629
|
+
triggerVersion: zod.z.string().optional(),
|
|
630
|
+
triggerSdkVersion: zod.z.string().optional()
|
|
631
|
+
});
|
|
632
|
+
var PongResponseSchema = zod.z.discriminatedUnion("ok", [
|
|
896
633
|
PongSuccessResponseSchema,
|
|
897
634
|
PongErrorResponseSchema
|
|
898
635
|
]);
|
|
899
|
-
var ValidateSuccessResponseSchema =
|
|
900
|
-
ok:
|
|
901
|
-
endpointId:
|
|
902
|
-
triggerVersion:
|
|
636
|
+
var ValidateSuccessResponseSchema = zod.z.object({
|
|
637
|
+
ok: zod.z.literal(true),
|
|
638
|
+
endpointId: zod.z.string(),
|
|
639
|
+
triggerVersion: zod.z.string().optional()
|
|
903
640
|
});
|
|
904
|
-
var ValidateErrorResponseSchema =
|
|
905
|
-
ok:
|
|
906
|
-
error:
|
|
907
|
-
triggerVersion:
|
|
641
|
+
var ValidateErrorResponseSchema = zod.z.object({
|
|
642
|
+
ok: zod.z.literal(false),
|
|
643
|
+
error: zod.z.string(),
|
|
644
|
+
triggerVersion: zod.z.string().optional()
|
|
908
645
|
});
|
|
909
|
-
var ValidateResponseSchema =
|
|
646
|
+
var ValidateResponseSchema = zod.z.discriminatedUnion("ok", [
|
|
910
647
|
ValidateSuccessResponseSchema,
|
|
911
648
|
ValidateErrorResponseSchema
|
|
912
649
|
]);
|
|
913
|
-
var QueueOptionsSchema =
|
|
914
|
-
name:
|
|
915
|
-
maxConcurrent:
|
|
916
|
-
});
|
|
917
|
-
var
|
|
918
|
-
id:
|
|
919
|
-
|
|
920
|
-
|
|
650
|
+
var QueueOptionsSchema = zod.z.object({
|
|
651
|
+
name: zod.z.string(),
|
|
652
|
+
maxConcurrent: zod.z.number().optional()
|
|
653
|
+
});
|
|
654
|
+
var ConcurrencyLimitOptionsSchema = zod.z.object({
|
|
655
|
+
id: zod.z.string(),
|
|
656
|
+
limit: zod.z.number()
|
|
657
|
+
});
|
|
658
|
+
var JobMetadataSchema = zod.z.object({
|
|
659
|
+
id: zod.z.string(),
|
|
660
|
+
name: zod.z.string(),
|
|
661
|
+
version: zod.z.string(),
|
|
921
662
|
event: EventSpecificationSchema,
|
|
922
663
|
trigger: TriggerMetadataSchema,
|
|
923
|
-
integrations:
|
|
924
|
-
internal:
|
|
925
|
-
enabled:
|
|
926
|
-
startPosition:
|
|
664
|
+
integrations: zod.z.record(IntegrationConfigSchema),
|
|
665
|
+
internal: zod.z.boolean().default(false),
|
|
666
|
+
enabled: zod.z.boolean(),
|
|
667
|
+
startPosition: zod.z.enum([
|
|
927
668
|
"initial",
|
|
928
669
|
"latest"
|
|
929
670
|
]),
|
|
930
|
-
preprocessRuns:
|
|
671
|
+
preprocessRuns: zod.z.boolean(),
|
|
672
|
+
concurrencyLimit: ConcurrencyLimitOptionsSchema.or(zod.z.number().int().positive()).optional()
|
|
931
673
|
});
|
|
932
|
-
var SourceMetadataV1Schema =
|
|
933
|
-
version:
|
|
934
|
-
channel:
|
|
674
|
+
var SourceMetadataV1Schema = zod.z.object({
|
|
675
|
+
version: zod.z.literal("1"),
|
|
676
|
+
channel: zod.z.enum([
|
|
935
677
|
"HTTP",
|
|
936
678
|
"SQS",
|
|
937
679
|
"SMTP"
|
|
938
680
|
]),
|
|
939
681
|
integration: IntegrationConfigSchema,
|
|
940
|
-
key:
|
|
941
|
-
params:
|
|
942
|
-
events:
|
|
943
|
-
registerSourceJob:
|
|
944
|
-
id:
|
|
945
|
-
version:
|
|
682
|
+
key: zod.z.string(),
|
|
683
|
+
params: zod.z.any(),
|
|
684
|
+
events: zod.z.array(zod.z.string()),
|
|
685
|
+
registerSourceJob: zod.z.object({
|
|
686
|
+
id: zod.z.string(),
|
|
687
|
+
version: zod.z.string()
|
|
946
688
|
}).optional()
|
|
947
689
|
});
|
|
948
|
-
var SourceMetadataV2Schema =
|
|
949
|
-
version:
|
|
950
|
-
channel:
|
|
690
|
+
var SourceMetadataV2Schema = zod.z.object({
|
|
691
|
+
version: zod.z.literal("2"),
|
|
692
|
+
channel: zod.z.enum([
|
|
951
693
|
"HTTP",
|
|
952
694
|
"SQS",
|
|
953
695
|
"SMTP"
|
|
954
696
|
]),
|
|
955
697
|
integration: IntegrationConfigSchema,
|
|
956
|
-
key:
|
|
957
|
-
params:
|
|
958
|
-
options:
|
|
959
|
-
registerSourceJob:
|
|
960
|
-
id:
|
|
961
|
-
version:
|
|
698
|
+
key: zod.z.string(),
|
|
699
|
+
params: zod.z.any(),
|
|
700
|
+
options: zod.z.record(zod.z.array(zod.z.string())),
|
|
701
|
+
registerSourceJob: zod.z.object({
|
|
702
|
+
id: zod.z.string(),
|
|
703
|
+
version: zod.z.string()
|
|
962
704
|
}).optional()
|
|
963
705
|
});
|
|
964
|
-
var SourceMetadataSchema =
|
|
706
|
+
var SourceMetadataSchema = zod.z.preprocess(addMissingVersionField, zod.z.discriminatedUnion("version", [
|
|
965
707
|
SourceMetadataV1Schema,
|
|
966
708
|
SourceMetadataV2Schema
|
|
967
709
|
]));
|
|
968
|
-
var
|
|
969
|
-
|
|
970
|
-
|
|
710
|
+
var WebhookMetadataSchema = zod.z.object({
|
|
711
|
+
key: zod.z.string(),
|
|
712
|
+
params: zod.z.any(),
|
|
713
|
+
config: zod.z.record(zod.z.array(zod.z.string())),
|
|
714
|
+
integration: IntegrationConfigSchema,
|
|
715
|
+
httpEndpoint: zod.z.object({
|
|
716
|
+
id: zod.z.string()
|
|
717
|
+
})
|
|
718
|
+
});
|
|
719
|
+
var WebhookContextMetadataSchema = zod.z.object({
|
|
720
|
+
params: zod.z.any(),
|
|
721
|
+
config: zod.z.record(zod.z.string().array()),
|
|
722
|
+
secret: zod.z.string()
|
|
723
|
+
});
|
|
724
|
+
var DynamicTriggerEndpointMetadataSchema = zod.z.object({
|
|
725
|
+
id: zod.z.string(),
|
|
726
|
+
jobs: zod.z.array(JobMetadataSchema.pick({
|
|
971
727
|
id: true,
|
|
972
728
|
version: true
|
|
973
729
|
})),
|
|
974
|
-
registerSourceJob:
|
|
975
|
-
id:
|
|
976
|
-
version:
|
|
730
|
+
registerSourceJob: zod.z.object({
|
|
731
|
+
id: zod.z.string(),
|
|
732
|
+
version: zod.z.string()
|
|
977
733
|
}).optional()
|
|
978
734
|
});
|
|
979
|
-
var
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
735
|
+
var HttpEndpointMetadataSchema = zod.z.object({
|
|
736
|
+
id: zod.z.string(),
|
|
737
|
+
version: zod.z.string(),
|
|
738
|
+
enabled: zod.z.boolean(),
|
|
739
|
+
title: zod.z.string().optional(),
|
|
740
|
+
icon: zod.z.string().optional(),
|
|
741
|
+
properties: zod.z.array(DisplayPropertySchema).optional(),
|
|
742
|
+
event: EventSpecificationSchema,
|
|
743
|
+
immediateResponseFilter: RequestFilterSchema.optional(),
|
|
744
|
+
skipTriggeringRuns: zod.z.boolean().optional(),
|
|
745
|
+
source: zod.z.string()
|
|
746
|
+
});
|
|
747
|
+
var IndexEndpointResponseSchema = zod.z.object({
|
|
748
|
+
jobs: zod.z.array(JobMetadataSchema),
|
|
749
|
+
sources: zod.z.array(SourceMetadataSchema),
|
|
750
|
+
webhooks: zod.z.array(WebhookMetadataSchema).optional(),
|
|
751
|
+
dynamicTriggers: zod.z.array(DynamicTriggerEndpointMetadataSchema),
|
|
752
|
+
dynamicSchedules: zod.z.array(RegisterDynamicSchedulePayloadSchema),
|
|
753
|
+
httpEndpoints: zod.z.array(HttpEndpointMetadataSchema).optional()
|
|
754
|
+
});
|
|
755
|
+
var EndpointIndexErrorSchema = zod.z.object({
|
|
756
|
+
message: zod.z.string(),
|
|
757
|
+
raw: zod.z.any().optional()
|
|
758
|
+
});
|
|
759
|
+
var IndexEndpointStatsSchema = zod.z.object({
|
|
760
|
+
jobs: zod.z.number(),
|
|
761
|
+
sources: zod.z.number(),
|
|
762
|
+
webhooks: zod.z.number().optional(),
|
|
763
|
+
dynamicTriggers: zod.z.number(),
|
|
764
|
+
dynamicSchedules: zod.z.number(),
|
|
765
|
+
disabledJobs: zod.z.number().default(0),
|
|
766
|
+
httpEndpoints: zod.z.number().default(0)
|
|
995
767
|
});
|
|
996
768
|
function parseEndpointIndexStats(stats) {
|
|
997
769
|
if (stats === null || stats === void 0) {
|
|
@@ -1000,208 +772,227 @@ function parseEndpointIndexStats(stats) {
|
|
|
1000
772
|
return IndexEndpointStatsSchema.parse(stats);
|
|
1001
773
|
}
|
|
1002
774
|
__name(parseEndpointIndexStats, "parseEndpointIndexStats");
|
|
1003
|
-
var GetEndpointIndexResponseSchema =
|
|
1004
|
-
|
|
1005
|
-
status:
|
|
1006
|
-
updatedAt:
|
|
775
|
+
var GetEndpointIndexResponseSchema = zod.z.discriminatedUnion("status", [
|
|
776
|
+
zod.z.object({
|
|
777
|
+
status: zod.z.literal("PENDING"),
|
|
778
|
+
updatedAt: zod.z.coerce.date()
|
|
1007
779
|
}),
|
|
1008
|
-
|
|
1009
|
-
status:
|
|
1010
|
-
updatedAt:
|
|
780
|
+
zod.z.object({
|
|
781
|
+
status: zod.z.literal("STARTED"),
|
|
782
|
+
updatedAt: zod.z.coerce.date()
|
|
1011
783
|
}),
|
|
1012
|
-
|
|
1013
|
-
status:
|
|
784
|
+
zod.z.object({
|
|
785
|
+
status: zod.z.literal("SUCCESS"),
|
|
1014
786
|
stats: IndexEndpointStatsSchema,
|
|
1015
|
-
updatedAt:
|
|
787
|
+
updatedAt: zod.z.coerce.date()
|
|
1016
788
|
}),
|
|
1017
|
-
|
|
1018
|
-
status:
|
|
789
|
+
zod.z.object({
|
|
790
|
+
status: zod.z.literal("FAILURE"),
|
|
1019
791
|
error: EndpointIndexErrorSchema,
|
|
1020
|
-
updatedAt:
|
|
792
|
+
updatedAt: zod.z.coerce.date()
|
|
1021
793
|
})
|
|
1022
794
|
]);
|
|
1023
|
-
var EndpointHeadersSchema =
|
|
1024
|
-
"trigger-version":
|
|
1025
|
-
"trigger-sdk-version":
|
|
795
|
+
var EndpointHeadersSchema = zod.z.object({
|
|
796
|
+
"trigger-version": zod.z.string().optional(),
|
|
797
|
+
"trigger-sdk-version": zod.z.string().optional()
|
|
1026
798
|
});
|
|
1027
|
-
var
|
|
799
|
+
var ExecuteJobRunMetadataSchema = zod.z.object({
|
|
800
|
+
successSubscription: zod.z.boolean().optional(),
|
|
801
|
+
failedSubscription: zod.z.boolean().optional()
|
|
802
|
+
});
|
|
803
|
+
var ExecuteJobHeadersSchema = EndpointHeadersSchema.extend({
|
|
804
|
+
"x-trigger-run-metadata": zod.z.preprocess((val) => typeof val === "string" && JSON.parse(val), ExecuteJobRunMetadataSchema).optional()
|
|
805
|
+
});
|
|
806
|
+
var RawEventSchema = zod.z.object({
|
|
1028
807
|
/** The `name` property must exactly match any subscriptions you want to
|
|
1029
808
|
trigger. */
|
|
1030
|
-
name:
|
|
809
|
+
name: zod.z.string(),
|
|
1031
810
|
/** The `payload` property will be sent to any matching Jobs and will appear
|
|
1032
811
|
as the `payload` param of the `run()` function. You can leave this
|
|
1033
812
|
parameter out if you just want to trigger a Job without any input data. */
|
|
1034
|
-
payload:
|
|
813
|
+
payload: zod.z.any(),
|
|
1035
814
|
/** The optional `context` property will be sent to any matching Jobs and will
|
|
1036
815
|
be passed through as the `context.event.context` param of the `run()`
|
|
1037
816
|
function. This is optional but can be useful if you want to pass through
|
|
1038
817
|
some additional context to the Job. */
|
|
1039
|
-
context:
|
|
818
|
+
context: zod.z.any().optional(),
|
|
1040
819
|
/** The `id` property uniquely identify this particular event. If unset it
|
|
1041
820
|
will be set automatically using `ulid`. */
|
|
1042
|
-
id:
|
|
821
|
+
id: zod.z.string().default(() => ulidx.ulid()),
|
|
1043
822
|
/** This is optional, it defaults to the current timestamp. Usually you would
|
|
1044
823
|
only set this if you have a timestamp that you wish to pass through, e.g.
|
|
1045
824
|
you receive a timestamp from a service and you want the same timestamp to
|
|
1046
825
|
be used in your Job. */
|
|
1047
|
-
timestamp:
|
|
826
|
+
timestamp: zod.z.coerce.date().optional(),
|
|
1048
827
|
/** This is optional, it defaults to "trigger.dev". It can be useful to set
|
|
1049
828
|
this as you can filter events using this in the `eventTrigger()`. */
|
|
1050
|
-
source:
|
|
829
|
+
source: zod.z.string().optional(),
|
|
830
|
+
/** This is optional, it defaults to "JSON". If your event is actually a request,
|
|
831
|
+
with a url, headers, method and rawBody you can use "REQUEST" */
|
|
832
|
+
payloadType: zod.z.union([
|
|
833
|
+
zod.z.literal("JSON"),
|
|
834
|
+
zod.z.literal("REQUEST")
|
|
835
|
+
]).optional()
|
|
1051
836
|
});
|
|
1052
|
-
var ApiEventLogSchema =
|
|
837
|
+
var ApiEventLogSchema = zod.z.object({
|
|
1053
838
|
/** The `id` of the event that was sent.
|
|
1054
839
|
*/
|
|
1055
|
-
id:
|
|
840
|
+
id: zod.z.string(),
|
|
1056
841
|
/** The `name` of the event that was sent. */
|
|
1057
|
-
name:
|
|
842
|
+
name: zod.z.string(),
|
|
1058
843
|
/** The `payload` of the event that was sent */
|
|
1059
844
|
payload: DeserializedJsonSchema,
|
|
1060
845
|
/** The `context` of the event that was sent. Is `undefined` if no context was
|
|
1061
846
|
set when sending the event. */
|
|
1062
847
|
context: DeserializedJsonSchema.optional().nullable(),
|
|
1063
848
|
/** The `timestamp` of the event that was sent */
|
|
1064
|
-
timestamp:
|
|
849
|
+
timestamp: zod.z.coerce.date(),
|
|
1065
850
|
/** The timestamp when the event will be delivered to any matching Jobs. Is
|
|
1066
851
|
`undefined` if `deliverAt` or `deliverAfter` wasn't set when sending the
|
|
1067
852
|
event. */
|
|
1068
|
-
deliverAt:
|
|
853
|
+
deliverAt: zod.z.coerce.date().optional().nullable(),
|
|
1069
854
|
/** The timestamp when the event was delivered. Is `undefined` if `deliverAt`
|
|
1070
855
|
or `deliverAfter` were set when sending the event. */
|
|
1071
|
-
deliveredAt:
|
|
856
|
+
deliveredAt: zod.z.coerce.date().optional().nullable(),
|
|
1072
857
|
/** The timestamp when the event was cancelled. Is `undefined` if the event
|
|
1073
858
|
* wasn't cancelled. */
|
|
1074
|
-
cancelledAt:
|
|
859
|
+
cancelledAt: zod.z.coerce.date().optional().nullable()
|
|
1075
860
|
});
|
|
1076
|
-
var SendEventOptionsSchema =
|
|
861
|
+
var SendEventOptionsSchema = zod.z.object({
|
|
1077
862
|
/** An optional Date when you want the event to trigger Jobs. The event will
|
|
1078
863
|
be sent to the platform immediately but won't be acted upon until the
|
|
1079
864
|
specified time. */
|
|
1080
|
-
deliverAt:
|
|
865
|
+
deliverAt: zod.z.coerce.date().optional(),
|
|
1081
866
|
/** An optional number of seconds you want to wait for the event to trigger
|
|
1082
867
|
any relevant Jobs. The event will be sent to the platform immediately but
|
|
1083
868
|
won't be delivered until after the elapsed number of seconds. */
|
|
1084
|
-
deliverAfter:
|
|
869
|
+
deliverAfter: zod.z.number().int().optional(),
|
|
1085
870
|
/** This optional param will be used by Trigger.dev Connect, which
|
|
1086
871
|
is coming soon. */
|
|
1087
|
-
accountId:
|
|
872
|
+
accountId: zod.z.string().optional()
|
|
1088
873
|
});
|
|
1089
|
-
var SendEventBodySchema =
|
|
874
|
+
var SendEventBodySchema = zod.z.object({
|
|
1090
875
|
event: RawEventSchema,
|
|
1091
876
|
options: SendEventOptionsSchema.optional()
|
|
1092
877
|
});
|
|
1093
|
-
var
|
|
1094
|
-
|
|
878
|
+
var SendBulkEventsBodySchema = zod.z.object({
|
|
879
|
+
events: RawEventSchema.array(),
|
|
880
|
+
options: SendEventOptionsSchema.optional()
|
|
881
|
+
});
|
|
882
|
+
var DeliverEventResponseSchema = zod.z.object({
|
|
883
|
+
deliveredAt: zod.z.string().datetime()
|
|
1095
884
|
});
|
|
1096
|
-
var RuntimeEnvironmentTypeSchema =
|
|
885
|
+
var RuntimeEnvironmentTypeSchema = zod.z.enum([
|
|
1097
886
|
"PRODUCTION",
|
|
1098
887
|
"STAGING",
|
|
1099
888
|
"DEVELOPMENT",
|
|
1100
889
|
"PREVIEW"
|
|
1101
890
|
]);
|
|
1102
|
-
var RunSourceContextSchema =
|
|
1103
|
-
id:
|
|
1104
|
-
metadata:
|
|
891
|
+
var RunSourceContextSchema = zod.z.object({
|
|
892
|
+
id: zod.z.string(),
|
|
893
|
+
metadata: zod.z.any()
|
|
1105
894
|
});
|
|
1106
|
-
var AutoYieldConfigSchema =
|
|
1107
|
-
startTaskThreshold:
|
|
1108
|
-
beforeExecuteTaskThreshold:
|
|
1109
|
-
beforeCompleteTaskThreshold:
|
|
1110
|
-
afterCompleteTaskThreshold:
|
|
895
|
+
var AutoYieldConfigSchema = zod.z.object({
|
|
896
|
+
startTaskThreshold: zod.z.number(),
|
|
897
|
+
beforeExecuteTaskThreshold: zod.z.number(),
|
|
898
|
+
beforeCompleteTaskThreshold: zod.z.number(),
|
|
899
|
+
afterCompleteTaskThreshold: zod.z.number()
|
|
1111
900
|
});
|
|
1112
|
-
var RunJobBodySchema =
|
|
901
|
+
var RunJobBodySchema = zod.z.object({
|
|
1113
902
|
event: ApiEventLogSchema,
|
|
1114
|
-
job:
|
|
1115
|
-
id:
|
|
1116
|
-
version:
|
|
903
|
+
job: zod.z.object({
|
|
904
|
+
id: zod.z.string(),
|
|
905
|
+
version: zod.z.string()
|
|
1117
906
|
}),
|
|
1118
|
-
run:
|
|
1119
|
-
id:
|
|
1120
|
-
isTest:
|
|
1121
|
-
isRetry:
|
|
1122
|
-
startedAt:
|
|
907
|
+
run: zod.z.object({
|
|
908
|
+
id: zod.z.string(),
|
|
909
|
+
isTest: zod.z.boolean(),
|
|
910
|
+
isRetry: zod.z.boolean().default(false),
|
|
911
|
+
startedAt: zod.z.coerce.date()
|
|
1123
912
|
}),
|
|
1124
|
-
environment:
|
|
1125
|
-
id:
|
|
1126
|
-
slug:
|
|
913
|
+
environment: zod.z.object({
|
|
914
|
+
id: zod.z.string(),
|
|
915
|
+
slug: zod.z.string(),
|
|
1127
916
|
type: RuntimeEnvironmentTypeSchema
|
|
1128
917
|
}),
|
|
1129
|
-
organization:
|
|
1130
|
-
id:
|
|
1131
|
-
title:
|
|
1132
|
-
slug:
|
|
918
|
+
organization: zod.z.object({
|
|
919
|
+
id: zod.z.string(),
|
|
920
|
+
title: zod.z.string(),
|
|
921
|
+
slug: zod.z.string()
|
|
1133
922
|
}),
|
|
1134
|
-
|
|
1135
|
-
id:
|
|
1136
|
-
|
|
923
|
+
project: zod.z.object({
|
|
924
|
+
id: zod.z.string(),
|
|
925
|
+
name: zod.z.string(),
|
|
926
|
+
slug: zod.z.string()
|
|
927
|
+
}).optional(),
|
|
928
|
+
account: zod.z.object({
|
|
929
|
+
id: zod.z.string(),
|
|
930
|
+
metadata: zod.z.any()
|
|
1137
931
|
}).optional(),
|
|
1138
932
|
source: RunSourceContextSchema.optional(),
|
|
1139
|
-
tasks:
|
|
1140
|
-
cachedTaskCursor:
|
|
1141
|
-
noopTasksSet:
|
|
1142
|
-
connections:
|
|
1143
|
-
yieldedExecutions:
|
|
1144
|
-
runChunkExecutionLimit:
|
|
933
|
+
tasks: zod.z.array(CachedTaskSchema).optional(),
|
|
934
|
+
cachedTaskCursor: zod.z.string().optional(),
|
|
935
|
+
noopTasksSet: zod.z.string().optional(),
|
|
936
|
+
connections: zod.z.record(ConnectionAuthSchema).optional(),
|
|
937
|
+
yieldedExecutions: zod.z.string().array().optional(),
|
|
938
|
+
runChunkExecutionLimit: zod.z.number().optional(),
|
|
1145
939
|
autoYieldConfig: AutoYieldConfigSchema.optional()
|
|
1146
940
|
});
|
|
1147
|
-
var RunJobErrorSchema =
|
|
1148
|
-
status:
|
|
941
|
+
var RunJobErrorSchema = zod.z.object({
|
|
942
|
+
status: zod.z.literal("ERROR"),
|
|
1149
943
|
error: ErrorWithStackSchema,
|
|
1150
944
|
task: TaskSchema.optional()
|
|
1151
945
|
});
|
|
1152
|
-
var RunJobYieldExecutionErrorSchema =
|
|
1153
|
-
status:
|
|
1154
|
-
key:
|
|
1155
|
-
});
|
|
1156
|
-
var
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
issues: import_zod11.z.record(import_zod11.z.object({
|
|
1182
|
-
id: import_zod11.z.string(),
|
|
1183
|
-
error: import_zod11.z.string()
|
|
946
|
+
var RunJobYieldExecutionErrorSchema = zod.z.object({
|
|
947
|
+
status: zod.z.literal("YIELD_EXECUTION"),
|
|
948
|
+
key: zod.z.string()
|
|
949
|
+
});
|
|
950
|
+
var AutoYieldMetadataSchema = zod.z.object({
|
|
951
|
+
location: zod.z.string(),
|
|
952
|
+
timeRemaining: zod.z.number(),
|
|
953
|
+
timeElapsed: zod.z.number(),
|
|
954
|
+
limit: zod.z.number().optional()
|
|
955
|
+
});
|
|
956
|
+
var RunJobAutoYieldExecutionErrorSchema = AutoYieldMetadataSchema.extend({
|
|
957
|
+
status: zod.z.literal("AUTO_YIELD_EXECUTION")
|
|
958
|
+
});
|
|
959
|
+
var RunJobAutoYieldWithCompletedTaskExecutionErrorSchema = zod.z.object({
|
|
960
|
+
status: zod.z.literal("AUTO_YIELD_EXECUTION_WITH_COMPLETED_TASK"),
|
|
961
|
+
id: zod.z.string(),
|
|
962
|
+
properties: zod.z.array(DisplayPropertySchema).optional(),
|
|
963
|
+
output: zod.z.string().optional(),
|
|
964
|
+
data: AutoYieldMetadataSchema
|
|
965
|
+
});
|
|
966
|
+
var RunJobInvalidPayloadErrorSchema = zod.z.object({
|
|
967
|
+
status: zod.z.literal("INVALID_PAYLOAD"),
|
|
968
|
+
errors: zod.z.array(SchemaErrorSchema)
|
|
969
|
+
});
|
|
970
|
+
var RunJobUnresolvedAuthErrorSchema = zod.z.object({
|
|
971
|
+
status: zod.z.literal("UNRESOLVED_AUTH_ERROR"),
|
|
972
|
+
issues: zod.z.record(zod.z.object({
|
|
973
|
+
id: zod.z.string(),
|
|
974
|
+
error: zod.z.string()
|
|
1184
975
|
}))
|
|
1185
976
|
});
|
|
1186
|
-
var RunJobResumeWithTaskSchema =
|
|
1187
|
-
status:
|
|
977
|
+
var RunJobResumeWithTaskSchema = zod.z.object({
|
|
978
|
+
status: zod.z.literal("RESUME_WITH_TASK"),
|
|
1188
979
|
task: TaskSchema
|
|
1189
980
|
});
|
|
1190
|
-
var RunJobRetryWithTaskSchema =
|
|
1191
|
-
status:
|
|
981
|
+
var RunJobRetryWithTaskSchema = zod.z.object({
|
|
982
|
+
status: zod.z.literal("RETRY_WITH_TASK"),
|
|
1192
983
|
task: TaskSchema,
|
|
1193
984
|
error: ErrorWithStackSchema,
|
|
1194
|
-
retryAt:
|
|
985
|
+
retryAt: zod.z.coerce.date()
|
|
1195
986
|
});
|
|
1196
|
-
var RunJobCanceledWithTaskSchema =
|
|
1197
|
-
status:
|
|
987
|
+
var RunJobCanceledWithTaskSchema = zod.z.object({
|
|
988
|
+
status: zod.z.literal("CANCELED"),
|
|
1198
989
|
task: TaskSchema
|
|
1199
990
|
});
|
|
1200
|
-
var RunJobSuccessSchema =
|
|
1201
|
-
status:
|
|
991
|
+
var RunJobSuccessSchema = zod.z.object({
|
|
992
|
+
status: zod.z.literal("SUCCESS"),
|
|
1202
993
|
output: DeserializedJsonSchema.optional()
|
|
1203
994
|
});
|
|
1204
|
-
var
|
|
995
|
+
var RunJobErrorResponseSchema = zod.z.union([
|
|
1205
996
|
RunJobAutoYieldExecutionErrorSchema,
|
|
1206
997
|
RunJobAutoYieldWithCompletedTaskExecutionErrorSchema,
|
|
1207
998
|
RunJobYieldExecutionErrorSchema,
|
|
@@ -1210,138 +1001,157 @@ var RunJobResponseSchema = import_zod11.z.discriminatedUnion("status", [
|
|
|
1210
1001
|
RunJobInvalidPayloadErrorSchema,
|
|
1211
1002
|
RunJobResumeWithTaskSchema,
|
|
1212
1003
|
RunJobRetryWithTaskSchema,
|
|
1004
|
+
RunJobCanceledWithTaskSchema
|
|
1005
|
+
]);
|
|
1006
|
+
var RunJobResumeWithParallelTaskSchema = zod.z.object({
|
|
1007
|
+
status: zod.z.literal("RESUME_WITH_PARALLEL_TASK"),
|
|
1008
|
+
task: TaskSchema,
|
|
1009
|
+
childErrors: zod.z.array(RunJobErrorResponseSchema)
|
|
1010
|
+
});
|
|
1011
|
+
var RunJobResponseSchema = zod.z.discriminatedUnion("status", [
|
|
1012
|
+
RunJobAutoYieldExecutionErrorSchema,
|
|
1013
|
+
RunJobAutoYieldWithCompletedTaskExecutionErrorSchema,
|
|
1014
|
+
RunJobYieldExecutionErrorSchema,
|
|
1015
|
+
RunJobErrorSchema,
|
|
1016
|
+
RunJobUnresolvedAuthErrorSchema,
|
|
1017
|
+
RunJobInvalidPayloadErrorSchema,
|
|
1018
|
+
RunJobResumeWithTaskSchema,
|
|
1019
|
+
RunJobResumeWithParallelTaskSchema,
|
|
1020
|
+
RunJobRetryWithTaskSchema,
|
|
1213
1021
|
RunJobCanceledWithTaskSchema,
|
|
1214
1022
|
RunJobSuccessSchema
|
|
1215
1023
|
]);
|
|
1216
|
-
var PreprocessRunBodySchema =
|
|
1024
|
+
var PreprocessRunBodySchema = zod.z.object({
|
|
1217
1025
|
event: ApiEventLogSchema,
|
|
1218
|
-
job:
|
|
1219
|
-
id:
|
|
1220
|
-
version:
|
|
1026
|
+
job: zod.z.object({
|
|
1027
|
+
id: zod.z.string(),
|
|
1028
|
+
version: zod.z.string()
|
|
1221
1029
|
}),
|
|
1222
|
-
run:
|
|
1223
|
-
id:
|
|
1224
|
-
isTest:
|
|
1030
|
+
run: zod.z.object({
|
|
1031
|
+
id: zod.z.string(),
|
|
1032
|
+
isTest: zod.z.boolean()
|
|
1225
1033
|
}),
|
|
1226
|
-
environment:
|
|
1227
|
-
id:
|
|
1228
|
-
slug:
|
|
1034
|
+
environment: zod.z.object({
|
|
1035
|
+
id: zod.z.string(),
|
|
1036
|
+
slug: zod.z.string(),
|
|
1229
1037
|
type: RuntimeEnvironmentTypeSchema
|
|
1230
1038
|
}),
|
|
1231
|
-
organization:
|
|
1232
|
-
id:
|
|
1233
|
-
title:
|
|
1234
|
-
slug:
|
|
1039
|
+
organization: zod.z.object({
|
|
1040
|
+
id: zod.z.string(),
|
|
1041
|
+
title: zod.z.string(),
|
|
1042
|
+
slug: zod.z.string()
|
|
1235
1043
|
}),
|
|
1236
|
-
account:
|
|
1237
|
-
id:
|
|
1238
|
-
metadata:
|
|
1044
|
+
account: zod.z.object({
|
|
1045
|
+
id: zod.z.string(),
|
|
1046
|
+
metadata: zod.z.any()
|
|
1239
1047
|
}).optional()
|
|
1240
1048
|
});
|
|
1241
|
-
var PreprocessRunResponseSchema =
|
|
1242
|
-
abort:
|
|
1243
|
-
properties:
|
|
1049
|
+
var PreprocessRunResponseSchema = zod.z.object({
|
|
1050
|
+
abort: zod.z.boolean(),
|
|
1051
|
+
properties: zod.z.array(DisplayPropertySchema).optional()
|
|
1244
1052
|
});
|
|
1245
|
-
var CreateRunResponseOkSchema =
|
|
1246
|
-
ok:
|
|
1247
|
-
data:
|
|
1248
|
-
id:
|
|
1053
|
+
var CreateRunResponseOkSchema = zod.z.object({
|
|
1054
|
+
ok: zod.z.literal(true),
|
|
1055
|
+
data: zod.z.object({
|
|
1056
|
+
id: zod.z.string()
|
|
1249
1057
|
})
|
|
1250
1058
|
});
|
|
1251
|
-
var CreateRunResponseErrorSchema =
|
|
1252
|
-
ok:
|
|
1253
|
-
error:
|
|
1059
|
+
var CreateRunResponseErrorSchema = zod.z.object({
|
|
1060
|
+
ok: zod.z.literal(false),
|
|
1061
|
+
error: zod.z.string()
|
|
1254
1062
|
});
|
|
1255
|
-
var CreateRunResponseBodySchema =
|
|
1063
|
+
var CreateRunResponseBodySchema = zod.z.discriminatedUnion("ok", [
|
|
1256
1064
|
CreateRunResponseOkSchema,
|
|
1257
1065
|
CreateRunResponseErrorSchema
|
|
1258
1066
|
]);
|
|
1259
|
-
var RedactStringSchema =
|
|
1260
|
-
__redactedString:
|
|
1261
|
-
strings:
|
|
1262
|
-
interpolations:
|
|
1067
|
+
var RedactStringSchema = zod.z.object({
|
|
1068
|
+
__redactedString: zod.z.literal(true),
|
|
1069
|
+
strings: zod.z.array(zod.z.string()),
|
|
1070
|
+
interpolations: zod.z.array(zod.z.string())
|
|
1263
1071
|
});
|
|
1264
|
-
var LogMessageSchema =
|
|
1265
|
-
level:
|
|
1072
|
+
var LogMessageSchema = zod.z.object({
|
|
1073
|
+
level: zod.z.enum([
|
|
1266
1074
|
"DEBUG",
|
|
1267
1075
|
"INFO",
|
|
1268
1076
|
"WARN",
|
|
1269
1077
|
"ERROR"
|
|
1270
1078
|
]),
|
|
1271
|
-
message:
|
|
1079
|
+
message: zod.z.string(),
|
|
1272
1080
|
data: SerializableJsonSchema.optional()
|
|
1273
1081
|
});
|
|
1274
|
-
var RedactSchema =
|
|
1275
|
-
paths:
|
|
1082
|
+
var RedactSchema = zod.z.object({
|
|
1083
|
+
paths: zod.z.array(zod.z.string())
|
|
1276
1084
|
});
|
|
1277
|
-
var RetryOptionsSchema =
|
|
1085
|
+
var RetryOptionsSchema = zod.z.object({
|
|
1278
1086
|
/** The maximum number of times to retry the request. */
|
|
1279
|
-
limit:
|
|
1087
|
+
limit: zod.z.number().optional(),
|
|
1280
1088
|
/** The exponential factor to use when calculating the next retry time. */
|
|
1281
|
-
factor:
|
|
1089
|
+
factor: zod.z.number().optional(),
|
|
1282
1090
|
/** The minimum amount of time to wait before retrying the request. */
|
|
1283
|
-
minTimeoutInMs:
|
|
1091
|
+
minTimeoutInMs: zod.z.number().optional(),
|
|
1284
1092
|
/** The maximum amount of time to wait before retrying the request. */
|
|
1285
|
-
maxTimeoutInMs:
|
|
1093
|
+
maxTimeoutInMs: zod.z.number().optional(),
|
|
1286
1094
|
/** Whether to randomize the retry time. */
|
|
1287
|
-
randomize:
|
|
1095
|
+
randomize: zod.z.boolean().optional()
|
|
1288
1096
|
});
|
|
1289
|
-
var RunTaskOptionsSchema =
|
|
1097
|
+
var RunTaskOptionsSchema = zod.z.object({
|
|
1290
1098
|
/** The name of the Task is required. This is displayed on the Task in the logs. */
|
|
1291
|
-
name:
|
|
1099
|
+
name: zod.z.string().optional(),
|
|
1292
1100
|
/** The Task will wait and only start at the specified Date */
|
|
1293
|
-
delayUntil:
|
|
1101
|
+
delayUntil: zod.z.coerce.date().optional(),
|
|
1294
1102
|
/** Retry options */
|
|
1295
1103
|
retry: RetryOptionsSchema.optional(),
|
|
1296
1104
|
/** The icon for the Task, it will appear in the logs.
|
|
1297
1105
|
* You can use the name of a company in lowercase, e.g. "github".
|
|
1298
1106
|
* Or any icon name that [Tabler Icons](https://tabler-icons.io/) supports. */
|
|
1299
|
-
icon:
|
|
1107
|
+
icon: zod.z.string().optional(),
|
|
1300
1108
|
/** The key for the Task that you want to appear in the logs */
|
|
1301
|
-
displayKey:
|
|
1109
|
+
displayKey: zod.z.string().optional(),
|
|
1302
1110
|
/** A description of the Task */
|
|
1303
|
-
description:
|
|
1111
|
+
description: zod.z.string().optional(),
|
|
1304
1112
|
/** Properties that are displayed in the logs */
|
|
1305
|
-
properties:
|
|
1113
|
+
properties: zod.z.array(DisplayPropertySchema).optional(),
|
|
1306
1114
|
/** The input params to the Task, will be displayed in the logs */
|
|
1307
|
-
params:
|
|
1115
|
+
params: zod.z.any(),
|
|
1308
1116
|
/** The style of the log entry. */
|
|
1309
1117
|
style: StyleSchema.optional(),
|
|
1310
1118
|
/** Allows you to expose a `task.callbackUrl` to use in your tasks. Enabling this feature will cause the task to return the data sent to the callbackUrl instead of the usual async callback result. */
|
|
1311
|
-
callback:
|
|
1119
|
+
callback: zod.z.object({
|
|
1312
1120
|
/** Causes the task to wait for and return the data of the first request sent to `task.callbackUrl`. */
|
|
1313
|
-
enabled:
|
|
1121
|
+
enabled: zod.z.boolean(),
|
|
1314
1122
|
/** Time to wait for the first request to `task.callbackUrl`. Default: One hour. */
|
|
1315
|
-
timeoutInSeconds:
|
|
1123
|
+
timeoutInSeconds: zod.z.number()
|
|
1316
1124
|
}).partial().optional(),
|
|
1317
1125
|
/** Allows you to link the Integration connection in the logs. This is handled automatically in integrations. */
|
|
1318
|
-
connectionKey:
|
|
1319
|
-
/** An operation you want to perform on the Trigger.dev platform, current only "fetch" is supported. If you wish to `fetch` use [`io.backgroundFetch()`](https://trigger.dev/docs/sdk/io/backgroundfetch) instead. */
|
|
1320
|
-
operation:
|
|
1321
|
-
"fetch"
|
|
1126
|
+
connectionKey: zod.z.string().optional(),
|
|
1127
|
+
/** An operation you want to perform on the Trigger.dev platform, current only "fetch", "fetch-response", and "fetch-poll" is supported. If you wish to `fetch` use [`io.backgroundFetch()`](https://trigger.dev/docs/sdk/io/backgroundfetch) instead. */
|
|
1128
|
+
operation: zod.z.enum([
|
|
1129
|
+
"fetch",
|
|
1130
|
+
"fetch-response",
|
|
1131
|
+
"fetch-poll"
|
|
1322
1132
|
]).optional(),
|
|
1323
1133
|
/** A No Operation means that the code won't be executed. This is used internally to implement features like [io.wait()](https://trigger.dev/docs/sdk/io/wait). */
|
|
1324
|
-
noop:
|
|
1134
|
+
noop: zod.z.boolean().default(false),
|
|
1325
1135
|
redact: RedactSchema.optional(),
|
|
1326
|
-
|
|
1136
|
+
parallel: zod.z.boolean().optional()
|
|
1327
1137
|
});
|
|
1328
1138
|
var RunTaskBodyInputSchema = RunTaskOptionsSchema.extend({
|
|
1329
|
-
idempotencyKey:
|
|
1330
|
-
parentId:
|
|
1139
|
+
idempotencyKey: zod.z.string(),
|
|
1140
|
+
parentId: zod.z.string().optional()
|
|
1331
1141
|
});
|
|
1332
1142
|
var RunTaskBodyOutputSchema = RunTaskBodyInputSchema.extend({
|
|
1333
|
-
properties:
|
|
1143
|
+
properties: zod.z.array(DisplayPropertySchema.partial()).optional(),
|
|
1334
1144
|
params: DeserializedJsonSchema.optional().nullable(),
|
|
1335
|
-
callback:
|
|
1336
|
-
enabled:
|
|
1337
|
-
timeoutInSeconds:
|
|
1145
|
+
callback: zod.z.object({
|
|
1146
|
+
enabled: zod.z.boolean(),
|
|
1147
|
+
timeoutInSeconds: zod.z.number().default(3600)
|
|
1338
1148
|
}).optional()
|
|
1339
1149
|
});
|
|
1340
|
-
var RunTaskResponseWithCachedTasksBodySchema =
|
|
1150
|
+
var RunTaskResponseWithCachedTasksBodySchema = zod.z.object({
|
|
1341
1151
|
task: ServerTaskSchema,
|
|
1342
|
-
cachedTasks:
|
|
1343
|
-
tasks:
|
|
1344
|
-
cursor:
|
|
1152
|
+
cachedTasks: zod.z.object({
|
|
1153
|
+
tasks: zod.z.array(CachedTaskSchema),
|
|
1154
|
+
cursor: zod.z.string().optional()
|
|
1345
1155
|
}).optional()
|
|
1346
1156
|
});
|
|
1347
1157
|
var CompleteTaskBodyInputSchema = RunTaskBodyInputSchema.pick({
|
|
@@ -1351,202 +1161,286 @@ var CompleteTaskBodyInputSchema = RunTaskBodyInputSchema.pick({
|
|
|
1351
1161
|
}).extend({
|
|
1352
1162
|
output: SerializableJsonSchema.optional().transform((v) => v ? DeserializedJsonSchema.parse(JSON.parse(JSON.stringify(v))) : {})
|
|
1353
1163
|
});
|
|
1354
|
-
var
|
|
1164
|
+
var CompleteTaskBodyV2InputSchema = RunTaskBodyInputSchema.pick({
|
|
1165
|
+
properties: true,
|
|
1166
|
+
description: true,
|
|
1167
|
+
params: true
|
|
1168
|
+
}).extend({
|
|
1169
|
+
output: zod.z.string().optional()
|
|
1170
|
+
});
|
|
1171
|
+
var FailTaskBodyInputSchema = zod.z.object({
|
|
1355
1172
|
error: ErrorWithStackSchema
|
|
1356
1173
|
});
|
|
1357
|
-
var NormalizedRequestSchema =
|
|
1358
|
-
headers:
|
|
1359
|
-
method:
|
|
1360
|
-
query:
|
|
1361
|
-
url:
|
|
1362
|
-
body:
|
|
1174
|
+
var NormalizedRequestSchema = zod.z.object({
|
|
1175
|
+
headers: zod.z.record(zod.z.string()),
|
|
1176
|
+
method: zod.z.string(),
|
|
1177
|
+
query: zod.z.record(zod.z.string()),
|
|
1178
|
+
url: zod.z.string(),
|
|
1179
|
+
body: zod.z.any()
|
|
1363
1180
|
});
|
|
1364
|
-
var NormalizedResponseSchema =
|
|
1365
|
-
status:
|
|
1366
|
-
body:
|
|
1367
|
-
headers:
|
|
1181
|
+
var NormalizedResponseSchema = zod.z.object({
|
|
1182
|
+
status: zod.z.number(),
|
|
1183
|
+
body: zod.z.any(),
|
|
1184
|
+
headers: zod.z.record(zod.z.string()).optional()
|
|
1368
1185
|
});
|
|
1369
|
-
var HttpSourceResponseSchema =
|
|
1186
|
+
var HttpSourceResponseSchema = zod.z.object({
|
|
1370
1187
|
response: NormalizedResponseSchema,
|
|
1371
|
-
events:
|
|
1188
|
+
events: zod.z.array(RawEventSchema),
|
|
1372
1189
|
metadata: HttpSourceResponseMetadataSchema.optional()
|
|
1373
1190
|
});
|
|
1374
|
-
var
|
|
1191
|
+
var WebhookDeliveryResponseSchema = zod.z.object({
|
|
1192
|
+
response: NormalizedResponseSchema,
|
|
1193
|
+
verified: zod.z.boolean(),
|
|
1194
|
+
error: zod.z.string().optional()
|
|
1195
|
+
});
|
|
1196
|
+
var RegisterTriggerBodySchemaV1 = zod.z.object({
|
|
1375
1197
|
rule: EventRuleSchema,
|
|
1376
1198
|
source: SourceMetadataV1Schema
|
|
1377
1199
|
});
|
|
1378
|
-
var RegisterTriggerBodySchemaV2 =
|
|
1200
|
+
var RegisterTriggerBodySchemaV2 = zod.z.object({
|
|
1379
1201
|
rule: EventRuleSchema,
|
|
1380
1202
|
source: SourceMetadataV2Schema,
|
|
1381
|
-
accountId:
|
|
1203
|
+
accountId: zod.z.string().optional()
|
|
1382
1204
|
});
|
|
1383
|
-
var InitializeTriggerBodySchema =
|
|
1384
|
-
id:
|
|
1385
|
-
params:
|
|
1386
|
-
accountId:
|
|
1387
|
-
metadata:
|
|
1205
|
+
var InitializeTriggerBodySchema = zod.z.object({
|
|
1206
|
+
id: zod.z.string(),
|
|
1207
|
+
params: zod.z.any(),
|
|
1208
|
+
accountId: zod.z.string().optional(),
|
|
1209
|
+
metadata: zod.z.any().optional()
|
|
1388
1210
|
});
|
|
1389
|
-
var RegisterCommonScheduleBodySchema =
|
|
1211
|
+
var RegisterCommonScheduleBodySchema = zod.z.object({
|
|
1390
1212
|
/** A unique id for the schedule. This is used to identify and unregister the schedule later. */
|
|
1391
|
-
id:
|
|
1213
|
+
id: zod.z.string(),
|
|
1392
1214
|
/** Any additional metadata about the schedule. */
|
|
1393
|
-
metadata:
|
|
1215
|
+
metadata: zod.z.any(),
|
|
1394
1216
|
/** An optional Account ID to associate with runs triggered by this schedule */
|
|
1395
|
-
accountId:
|
|
1217
|
+
accountId: zod.z.string().optional()
|
|
1396
1218
|
});
|
|
1397
1219
|
var RegisterIntervalScheduleBodySchema = RegisterCommonScheduleBodySchema.merge(IntervalMetadataSchema);
|
|
1398
1220
|
var InitializeCronScheduleBodySchema = RegisterCommonScheduleBodySchema.merge(CronMetadataSchema);
|
|
1399
|
-
var RegisterScheduleBodySchema =
|
|
1221
|
+
var RegisterScheduleBodySchema = zod.z.discriminatedUnion("type", [
|
|
1400
1222
|
RegisterIntervalScheduleBodySchema,
|
|
1401
1223
|
InitializeCronScheduleBodySchema
|
|
1402
1224
|
]);
|
|
1403
|
-
var RegisterScheduleResponseBodySchema =
|
|
1404
|
-
id:
|
|
1225
|
+
var RegisterScheduleResponseBodySchema = zod.z.object({
|
|
1226
|
+
id: zod.z.string(),
|
|
1405
1227
|
schedule: ScheduleMetadataSchema,
|
|
1406
|
-
metadata:
|
|
1407
|
-
active:
|
|
1228
|
+
metadata: zod.z.any(),
|
|
1229
|
+
active: zod.z.boolean()
|
|
1408
1230
|
});
|
|
1409
|
-
var CreateExternalConnectionBodySchema =
|
|
1410
|
-
accessToken:
|
|
1411
|
-
type:
|
|
1231
|
+
var CreateExternalConnectionBodySchema = zod.z.object({
|
|
1232
|
+
accessToken: zod.z.string(),
|
|
1233
|
+
type: zod.z.enum([
|
|
1412
1234
|
"oauth2"
|
|
1413
1235
|
]),
|
|
1414
|
-
scopes:
|
|
1415
|
-
metadata:
|
|
1236
|
+
scopes: zod.z.array(zod.z.string()).optional(),
|
|
1237
|
+
metadata: zod.z.any()
|
|
1416
1238
|
});
|
|
1417
|
-
var GetRunStatusesSchema =
|
|
1418
|
-
run:
|
|
1419
|
-
id:
|
|
1239
|
+
var GetRunStatusesSchema = zod.z.object({
|
|
1240
|
+
run: zod.z.object({
|
|
1241
|
+
id: zod.z.string(),
|
|
1420
1242
|
status: RunStatusSchema,
|
|
1421
|
-
output:
|
|
1243
|
+
output: zod.z.any().optional()
|
|
1422
1244
|
}),
|
|
1423
|
-
statuses:
|
|
1245
|
+
statuses: zod.z.array(JobRunStatusRecordSchema)
|
|
1424
1246
|
});
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1247
|
+
var InvokeJobResponseSchema = zod.z.object({
|
|
1248
|
+
id: zod.z.string()
|
|
1249
|
+
});
|
|
1250
|
+
var InvokeJobRequestBodySchema = zod.z.object({
|
|
1251
|
+
payload: zod.z.any(),
|
|
1252
|
+
context: zod.z.any().optional(),
|
|
1253
|
+
options: zod.z.object({
|
|
1254
|
+
accountId: zod.z.string().optional(),
|
|
1255
|
+
callbackUrl: zod.z.string().optional()
|
|
1256
|
+
}).optional()
|
|
1257
|
+
});
|
|
1258
|
+
var InvokeOptionsSchema = zod.z.object({
|
|
1259
|
+
accountId: zod.z.string().optional(),
|
|
1260
|
+
idempotencyKey: zod.z.string().optional(),
|
|
1261
|
+
context: zod.z.any().optional(),
|
|
1262
|
+
callbackUrl: zod.z.string().optional()
|
|
1263
|
+
});
|
|
1264
|
+
var EphemeralEventDispatcherRequestBodySchema = zod.z.object({
|
|
1265
|
+
url: zod.z.string(),
|
|
1266
|
+
name: zod.z.string().or(zod.z.array(zod.z.string())),
|
|
1267
|
+
source: zod.z.string().optional(),
|
|
1268
|
+
filter: EventFilterSchema.optional(),
|
|
1269
|
+
contextFilter: EventFilterSchema.optional(),
|
|
1270
|
+
accountId: zod.z.string().optional(),
|
|
1271
|
+
timeoutInSeconds: zod.z.number().int().positive().min(10).max(60 * 60 * 24 * 365).default(3600)
|
|
1272
|
+
});
|
|
1273
|
+
var EphemeralEventDispatcherResponseBodySchema = zod.z.object({
|
|
1274
|
+
id: zod.z.string()
|
|
1275
|
+
});
|
|
1276
|
+
var KeyValueStoreResponseBodySchema = zod.z.discriminatedUnion("action", [
|
|
1277
|
+
zod.z.object({
|
|
1278
|
+
action: zod.z.literal("DELETE"),
|
|
1279
|
+
key: zod.z.string(),
|
|
1280
|
+
deleted: zod.z.boolean()
|
|
1281
|
+
}),
|
|
1282
|
+
zod.z.object({
|
|
1283
|
+
action: zod.z.literal("GET"),
|
|
1284
|
+
key: zod.z.string(),
|
|
1285
|
+
value: zod.z.string().optional()
|
|
1286
|
+
}),
|
|
1287
|
+
zod.z.object({
|
|
1288
|
+
action: zod.z.literal("HAS"),
|
|
1289
|
+
key: zod.z.string(),
|
|
1290
|
+
has: zod.z.boolean()
|
|
1291
|
+
}),
|
|
1292
|
+
zod.z.object({
|
|
1293
|
+
action: zod.z.literal("SET"),
|
|
1294
|
+
key: zod.z.string(),
|
|
1295
|
+
value: zod.z.string().optional()
|
|
1296
|
+
})
|
|
1297
|
+
]);
|
|
1428
1298
|
var MISSING_CONNECTION_NOTIFICATION = "dev.trigger.notifications.missingConnection";
|
|
1429
1299
|
var MISSING_CONNECTION_RESOLVED_NOTIFICATION = "dev.trigger.notifications.missingConnectionResolved";
|
|
1430
|
-
var CommonMissingConnectionNotificationPayloadSchema =
|
|
1431
|
-
id:
|
|
1432
|
-
client:
|
|
1433
|
-
id:
|
|
1434
|
-
title:
|
|
1435
|
-
scopes:
|
|
1436
|
-
createdAt:
|
|
1437
|
-
updatedAt:
|
|
1300
|
+
var CommonMissingConnectionNotificationPayloadSchema = zod.z.object({
|
|
1301
|
+
id: zod.z.string(),
|
|
1302
|
+
client: zod.z.object({
|
|
1303
|
+
id: zod.z.string(),
|
|
1304
|
+
title: zod.z.string(),
|
|
1305
|
+
scopes: zod.z.array(zod.z.string()),
|
|
1306
|
+
createdAt: zod.z.coerce.date(),
|
|
1307
|
+
updatedAt: zod.z.coerce.date()
|
|
1438
1308
|
}),
|
|
1439
|
-
authorizationUrl:
|
|
1309
|
+
authorizationUrl: zod.z.string()
|
|
1440
1310
|
});
|
|
1441
1311
|
var MissingDeveloperConnectionNotificationPayloadSchema = CommonMissingConnectionNotificationPayloadSchema.extend({
|
|
1442
|
-
type:
|
|
1312
|
+
type: zod.z.literal("DEVELOPER")
|
|
1443
1313
|
});
|
|
1444
1314
|
var MissingExternalConnectionNotificationPayloadSchema = CommonMissingConnectionNotificationPayloadSchema.extend({
|
|
1445
|
-
type:
|
|
1446
|
-
account:
|
|
1447
|
-
id:
|
|
1448
|
-
metadata:
|
|
1315
|
+
type: zod.z.literal("EXTERNAL"),
|
|
1316
|
+
account: zod.z.object({
|
|
1317
|
+
id: zod.z.string(),
|
|
1318
|
+
metadata: zod.z.any()
|
|
1449
1319
|
})
|
|
1450
1320
|
});
|
|
1451
|
-
var MissingConnectionNotificationPayloadSchema =
|
|
1321
|
+
var MissingConnectionNotificationPayloadSchema = zod.z.discriminatedUnion("type", [
|
|
1452
1322
|
MissingDeveloperConnectionNotificationPayloadSchema,
|
|
1453
1323
|
MissingExternalConnectionNotificationPayloadSchema
|
|
1454
1324
|
]);
|
|
1455
|
-
var CommonMissingConnectionNotificationResolvedPayloadSchema =
|
|
1456
|
-
id:
|
|
1457
|
-
client:
|
|
1458
|
-
id:
|
|
1459
|
-
title:
|
|
1460
|
-
scopes:
|
|
1461
|
-
createdAt:
|
|
1462
|
-
updatedAt:
|
|
1463
|
-
integrationIdentifier:
|
|
1464
|
-
integrationAuthMethod:
|
|
1325
|
+
var CommonMissingConnectionNotificationResolvedPayloadSchema = zod.z.object({
|
|
1326
|
+
id: zod.z.string(),
|
|
1327
|
+
client: zod.z.object({
|
|
1328
|
+
id: zod.z.string(),
|
|
1329
|
+
title: zod.z.string(),
|
|
1330
|
+
scopes: zod.z.array(zod.z.string()),
|
|
1331
|
+
createdAt: zod.z.coerce.date(),
|
|
1332
|
+
updatedAt: zod.z.coerce.date(),
|
|
1333
|
+
integrationIdentifier: zod.z.string(),
|
|
1334
|
+
integrationAuthMethod: zod.z.string()
|
|
1465
1335
|
}),
|
|
1466
|
-
expiresAt:
|
|
1336
|
+
expiresAt: zod.z.coerce.date()
|
|
1467
1337
|
});
|
|
1468
1338
|
var MissingDeveloperConnectionResolvedNotificationPayloadSchema = CommonMissingConnectionNotificationResolvedPayloadSchema.extend({
|
|
1469
|
-
type:
|
|
1339
|
+
type: zod.z.literal("DEVELOPER")
|
|
1470
1340
|
});
|
|
1471
1341
|
var MissingExternalConnectionResolvedNotificationPayloadSchema = CommonMissingConnectionNotificationResolvedPayloadSchema.extend({
|
|
1472
|
-
type:
|
|
1473
|
-
account:
|
|
1474
|
-
id:
|
|
1475
|
-
metadata:
|
|
1342
|
+
type: zod.z.literal("EXTERNAL"),
|
|
1343
|
+
account: zod.z.object({
|
|
1344
|
+
id: zod.z.string(),
|
|
1345
|
+
metadata: zod.z.any()
|
|
1476
1346
|
})
|
|
1477
1347
|
});
|
|
1478
|
-
var MissingConnectionResolvedNotificationPayloadSchema =
|
|
1348
|
+
var MissingConnectionResolvedNotificationPayloadSchema = zod.z.discriminatedUnion("type", [
|
|
1479
1349
|
MissingDeveloperConnectionResolvedNotificationPayloadSchema,
|
|
1480
1350
|
MissingExternalConnectionResolvedNotificationPayloadSchema
|
|
1481
1351
|
]);
|
|
1482
|
-
|
|
1483
|
-
// src/schemas/fetch.ts
|
|
1484
|
-
var import_zod13 = require("zod");
|
|
1485
|
-
var FetchRetryHeadersStrategySchema = import_zod13.z.object({
|
|
1352
|
+
var FetchRetryHeadersStrategySchema = zod.z.object({
|
|
1486
1353
|
/** The `headers` strategy retries the request using info from the response headers. */
|
|
1487
|
-
strategy:
|
|
1354
|
+
strategy: zod.z.literal("headers"),
|
|
1488
1355
|
/** The header to use to determine the maximum number of times to retry the request. */
|
|
1489
|
-
limitHeader:
|
|
1356
|
+
limitHeader: zod.z.string(),
|
|
1490
1357
|
/** The header to use to determine the number of remaining retries. */
|
|
1491
|
-
remainingHeader:
|
|
1358
|
+
remainingHeader: zod.z.string(),
|
|
1492
1359
|
/** The header to use to determine the time when the number of remaining retries will be reset. */
|
|
1493
|
-
resetHeader:
|
|
1360
|
+
resetHeader: zod.z.string(),
|
|
1361
|
+
/** The event filter to use to determine if the request should be retried. */
|
|
1362
|
+
bodyFilter: EventFilterSchema.optional(),
|
|
1363
|
+
/** The format of the `resetHeader` value. */
|
|
1364
|
+
resetFormat: zod.z.enum([
|
|
1365
|
+
"unix_timestamp",
|
|
1366
|
+
"unix_timestamp_in_ms",
|
|
1367
|
+
"iso_8601",
|
|
1368
|
+
"iso_8601_duration_openai_variant"
|
|
1369
|
+
]).default("unix_timestamp")
|
|
1494
1370
|
});
|
|
1495
1371
|
var FetchRetryBackoffStrategySchema = RetryOptionsSchema.extend({
|
|
1496
1372
|
/** The `backoff` strategy retries the request with an exponential backoff. */
|
|
1497
|
-
strategy:
|
|
1373
|
+
strategy: zod.z.literal("backoff"),
|
|
1374
|
+
/** The event filter to use to determine if the request should be retried. */
|
|
1375
|
+
bodyFilter: EventFilterSchema.optional()
|
|
1498
1376
|
});
|
|
1499
|
-
var FetchRetryStrategySchema =
|
|
1377
|
+
var FetchRetryStrategySchema = zod.z.discriminatedUnion("strategy", [
|
|
1500
1378
|
FetchRetryHeadersStrategySchema,
|
|
1501
1379
|
FetchRetryBackoffStrategySchema
|
|
1502
1380
|
]);
|
|
1503
|
-
var FetchRequestInitSchema =
|
|
1381
|
+
var FetchRequestInitSchema = zod.z.object({
|
|
1504
1382
|
/** The HTTP method to use for the request. */
|
|
1505
|
-
method:
|
|
1383
|
+
method: zod.z.string().optional(),
|
|
1506
1384
|
/** Any headers to send with the request. Note that you can use [redactString](https://trigger.dev/docs/sdk/redactString) to prevent sensitive information from being stored (e.g. in the logs), like API keys and tokens. */
|
|
1507
|
-
headers:
|
|
1508
|
-
|
|
1385
|
+
headers: zod.z.record(zod.z.union([
|
|
1386
|
+
zod.z.string(),
|
|
1509
1387
|
RedactStringSchema
|
|
1510
1388
|
])).optional(),
|
|
1511
1389
|
/** The body of the request. */
|
|
1512
|
-
body:
|
|
1513
|
-
|
|
1514
|
-
|
|
1390
|
+
body: zod.z.union([
|
|
1391
|
+
zod.z.string(),
|
|
1392
|
+
zod.z.instanceof(ArrayBuffer)
|
|
1515
1393
|
]).optional()
|
|
1516
1394
|
});
|
|
1517
|
-
var FetchRetryOptionsSchema =
|
|
1518
|
-
var
|
|
1519
|
-
|
|
1395
|
+
var FetchRetryOptionsSchema = zod.z.record(FetchRetryStrategySchema);
|
|
1396
|
+
var FetchTimeoutOptionsSchema = zod.z.object({
|
|
1397
|
+
durationInMs: zod.z.number(),
|
|
1398
|
+
retry: RetryOptionsSchema.optional()
|
|
1399
|
+
});
|
|
1400
|
+
var FetchOperationSchema = zod.z.object({
|
|
1401
|
+
url: zod.z.string(),
|
|
1402
|
+
requestInit: FetchRequestInitSchema.optional(),
|
|
1403
|
+
retry: zod.z.record(FetchRetryStrategySchema).optional(),
|
|
1404
|
+
timeout: FetchTimeoutOptionsSchema.optional()
|
|
1405
|
+
});
|
|
1406
|
+
var FetchPollOperationSchema = zod.z.object({
|
|
1407
|
+
url: zod.z.string(),
|
|
1408
|
+
interval: zod.z.number().int().positive().min(10).max(600).default(10),
|
|
1409
|
+
timeout: zod.z.number().int().positive().min(30).max(3600).default(600),
|
|
1410
|
+
responseFilter: ResponseFilterSchema,
|
|
1520
1411
|
requestInit: FetchRequestInitSchema.optional(),
|
|
1521
|
-
|
|
1412
|
+
requestTimeout: FetchTimeoutOptionsSchema.optional()
|
|
1522
1413
|
});
|
|
1523
|
-
|
|
1524
|
-
// src/schemas/events.ts
|
|
1525
|
-
var import_zod14 = require("zod");
|
|
1526
|
-
var GetEventSchema = import_zod14.z.object({
|
|
1414
|
+
var GetEventSchema = zod.z.object({
|
|
1527
1415
|
/** The event id */
|
|
1528
|
-
id:
|
|
1416
|
+
id: zod.z.string(),
|
|
1529
1417
|
/** The event name */
|
|
1530
|
-
name:
|
|
1418
|
+
name: zod.z.string(),
|
|
1531
1419
|
/** When the event was created */
|
|
1532
|
-
createdAt:
|
|
1420
|
+
createdAt: zod.z.coerce.date(),
|
|
1533
1421
|
/** When the event was last updated */
|
|
1534
|
-
updatedAt:
|
|
1422
|
+
updatedAt: zod.z.coerce.date(),
|
|
1535
1423
|
/** The runs that were triggered by the event */
|
|
1536
|
-
runs:
|
|
1424
|
+
runs: zod.z.array(zod.z.object({
|
|
1537
1425
|
/** The Run id */
|
|
1538
|
-
id:
|
|
1426
|
+
id: zod.z.string(),
|
|
1539
1427
|
/** The Run status */
|
|
1540
1428
|
status: RunStatusSchema,
|
|
1541
1429
|
/** When the run started */
|
|
1542
|
-
startedAt:
|
|
1430
|
+
startedAt: zod.z.coerce.date().optional().nullable(),
|
|
1543
1431
|
/** When the run completed */
|
|
1544
|
-
completedAt:
|
|
1432
|
+
completedAt: zod.z.coerce.date().optional().nullable()
|
|
1545
1433
|
}))
|
|
1546
1434
|
});
|
|
1547
|
-
var CancelRunsForEventSchema =
|
|
1548
|
-
cancelledRunIds:
|
|
1549
|
-
failedToCancelRunIds:
|
|
1435
|
+
var CancelRunsForEventSchema = zod.z.object({
|
|
1436
|
+
cancelledRunIds: zod.z.array(zod.z.string()),
|
|
1437
|
+
failedToCancelRunIds: zod.z.array(zod.z.string())
|
|
1438
|
+
});
|
|
1439
|
+
var RequestWithRawBodySchema = zod.z.object({
|
|
1440
|
+
url: zod.z.string(),
|
|
1441
|
+
method: zod.z.string(),
|
|
1442
|
+
headers: zod.z.record(zod.z.string()),
|
|
1443
|
+
rawBody: zod.z.string()
|
|
1550
1444
|
});
|
|
1551
1445
|
|
|
1552
1446
|
// src/utils.ts
|
|
@@ -1568,6 +1462,10 @@ function deepMergeFilters(...filters) {
|
|
|
1568
1462
|
return result;
|
|
1569
1463
|
}
|
|
1570
1464
|
__name(deepMergeFilters, "deepMergeFilters");
|
|
1465
|
+
function assertExhaustive(x) {
|
|
1466
|
+
throw new Error("Unexpected object: " + x);
|
|
1467
|
+
}
|
|
1468
|
+
__name(assertExhaustive, "assertExhaustive");
|
|
1571
1469
|
|
|
1572
1470
|
// src/retry.ts
|
|
1573
1471
|
var DEFAULT_RETRY_OPTIONS = {
|
|
@@ -1592,6 +1490,73 @@ function calculateRetryAt(retryOptions, attempts) {
|
|
|
1592
1490
|
return new Date(Date.now() + timeoutInMs);
|
|
1593
1491
|
}
|
|
1594
1492
|
__name(calculateRetryAt, "calculateRetryAt");
|
|
1493
|
+
function calculateResetAt(resets, format, now = /* @__PURE__ */ new Date()) {
|
|
1494
|
+
if (!resets)
|
|
1495
|
+
return;
|
|
1496
|
+
switch (format) {
|
|
1497
|
+
case "iso_8601_duration_openai_variant": {
|
|
1498
|
+
return calculateISO8601DurationOpenAIVariantResetAt(resets, now);
|
|
1499
|
+
}
|
|
1500
|
+
case "iso_8601": {
|
|
1501
|
+
return calculateISO8601ResetAt(resets, now);
|
|
1502
|
+
}
|
|
1503
|
+
case "unix_timestamp": {
|
|
1504
|
+
return calculateUnixTimestampResetAt(resets, now);
|
|
1505
|
+
}
|
|
1506
|
+
case "unix_timestamp_in_ms": {
|
|
1507
|
+
return calculateUnixTimestampInMsResetAt(resets, now);
|
|
1508
|
+
}
|
|
1509
|
+
}
|
|
1510
|
+
}
|
|
1511
|
+
__name(calculateResetAt, "calculateResetAt");
|
|
1512
|
+
function calculateUnixTimestampResetAt(resets, now = /* @__PURE__ */ new Date()) {
|
|
1513
|
+
if (!resets)
|
|
1514
|
+
return void 0;
|
|
1515
|
+
const resetAt = parseInt(resets, 10);
|
|
1516
|
+
if (isNaN(resetAt))
|
|
1517
|
+
return void 0;
|
|
1518
|
+
return new Date(resetAt * 1e3);
|
|
1519
|
+
}
|
|
1520
|
+
__name(calculateUnixTimestampResetAt, "calculateUnixTimestampResetAt");
|
|
1521
|
+
function calculateUnixTimestampInMsResetAt(resets, now = /* @__PURE__ */ new Date()) {
|
|
1522
|
+
if (!resets)
|
|
1523
|
+
return void 0;
|
|
1524
|
+
const resetAt = parseInt(resets, 10);
|
|
1525
|
+
if (isNaN(resetAt))
|
|
1526
|
+
return void 0;
|
|
1527
|
+
return new Date(resetAt);
|
|
1528
|
+
}
|
|
1529
|
+
__name(calculateUnixTimestampInMsResetAt, "calculateUnixTimestampInMsResetAt");
|
|
1530
|
+
function calculateISO8601ResetAt(resets, now = /* @__PURE__ */ new Date()) {
|
|
1531
|
+
if (!resets)
|
|
1532
|
+
return void 0;
|
|
1533
|
+
const resetAt = new Date(resets);
|
|
1534
|
+
if (isNaN(resetAt.getTime()))
|
|
1535
|
+
return void 0;
|
|
1536
|
+
return resetAt;
|
|
1537
|
+
}
|
|
1538
|
+
__name(calculateISO8601ResetAt, "calculateISO8601ResetAt");
|
|
1539
|
+
function calculateISO8601DurationOpenAIVariantResetAt(resets, now = /* @__PURE__ */ new Date()) {
|
|
1540
|
+
if (!resets)
|
|
1541
|
+
return void 0;
|
|
1542
|
+
const pattern = /^(?:(\d+)d)?(?:(\d+)h)?(?:(\d+)m)?(?:(\d+(?:\.\d+)?)s)?(?:(\d+)ms)?$/;
|
|
1543
|
+
const match = resets.match(pattern);
|
|
1544
|
+
if (!match)
|
|
1545
|
+
return void 0;
|
|
1546
|
+
const days = parseInt(match[1], 10) || 0;
|
|
1547
|
+
const hours = parseInt(match[2], 10) || 0;
|
|
1548
|
+
const minutes = parseInt(match[3], 10) || 0;
|
|
1549
|
+
const seconds = parseFloat(match[4]) || 0;
|
|
1550
|
+
const milliseconds = parseInt(match[5], 10) || 0;
|
|
1551
|
+
const resetAt = new Date(now);
|
|
1552
|
+
resetAt.setDate(resetAt.getDate() + days);
|
|
1553
|
+
resetAt.setHours(resetAt.getHours() + hours);
|
|
1554
|
+
resetAt.setMinutes(resetAt.getMinutes() + minutes);
|
|
1555
|
+
resetAt.setSeconds(resetAt.getSeconds() + Math.floor(seconds));
|
|
1556
|
+
resetAt.setMilliseconds(resetAt.getMilliseconds() + (seconds - Math.floor(seconds)) * 1e3 + milliseconds);
|
|
1557
|
+
return resetAt;
|
|
1558
|
+
}
|
|
1559
|
+
__name(calculateISO8601DurationOpenAIVariantResetAt, "calculateISO8601DurationOpenAIVariantResetAt");
|
|
1595
1560
|
|
|
1596
1561
|
// src/replacements.ts
|
|
1597
1562
|
var currentDate = {
|
|
@@ -1633,6 +1598,13 @@ __name(urlWithSearchParams, "urlWithSearchParams");
|
|
|
1633
1598
|
|
|
1634
1599
|
// src/eventFilterMatches.ts
|
|
1635
1600
|
function eventFilterMatches(payload, filter) {
|
|
1601
|
+
if (payload === void 0 || payload === null) {
|
|
1602
|
+
if (Object.entries(filter).length === 0) {
|
|
1603
|
+
return true;
|
|
1604
|
+
} else {
|
|
1605
|
+
return false;
|
|
1606
|
+
}
|
|
1607
|
+
}
|
|
1636
1608
|
for (const [patternKey, patternValue] of Object.entries(filter)) {
|
|
1637
1609
|
const payloadValue = payload[patternKey];
|
|
1638
1610
|
if (Array.isArray(patternValue)) {
|
|
@@ -1680,7 +1652,7 @@ __name(eventFilterMatches, "eventFilterMatches");
|
|
|
1680
1652
|
function contentFiltersMatches(actualValue, contentFilters) {
|
|
1681
1653
|
for (const contentFilter of contentFilters) {
|
|
1682
1654
|
if (typeof contentFilter === "object") {
|
|
1683
|
-
|
|
1655
|
+
Object.entries(contentFilter)[0];
|
|
1684
1656
|
if (!contentFilterMatches(actualValue, contentFilter)) {
|
|
1685
1657
|
return false;
|
|
1686
1658
|
}
|
|
@@ -1773,62 +1745,82 @@ function contentFilterMatches(actualValue, contentFilter) {
|
|
|
1773
1745
|
}
|
|
1774
1746
|
__name(contentFilterMatches, "contentFilterMatches");
|
|
1775
1747
|
|
|
1776
|
-
// src/
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1748
|
+
// src/requestFilterMatches.ts
|
|
1749
|
+
async function requestFilterMatches(request, filter) {
|
|
1750
|
+
const clonedRequest = request.clone();
|
|
1751
|
+
if (!requestMethodMatches(clonedRequest.method, filter.method)) {
|
|
1752
|
+
return false;
|
|
1781
1753
|
}
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1754
|
+
const headersObj = Object.fromEntries(clonedRequest.headers.entries());
|
|
1755
|
+
if (filter.headers && !eventFilterMatches(headersObj, filter.headers)) {
|
|
1756
|
+
return false;
|
|
1785
1757
|
}
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1758
|
+
const searchParams = new URL(clonedRequest.url).searchParams;
|
|
1759
|
+
const searchParamsObject = {};
|
|
1760
|
+
for (const [key, value] of searchParams.entries()) {
|
|
1761
|
+
searchParamsObject[key] = value;
|
|
1789
1762
|
}
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
const { Buffer: Buffer2 } = await import("buffer");
|
|
1793
|
-
return Buffer2.from(this.bitArray).toString("base64");
|
|
1763
|
+
if (filter.query && !eventFilterMatches(searchParamsObject, filter.query)) {
|
|
1764
|
+
return false;
|
|
1794
1765
|
}
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1766
|
+
try {
|
|
1767
|
+
const json = await clonedRequest.json();
|
|
1768
|
+
if (filter.body && !eventFilterMatches(json, filter.body)) {
|
|
1769
|
+
return false;
|
|
1770
|
+
}
|
|
1771
|
+
} catch (e) {
|
|
1772
|
+
if (filter.body) {
|
|
1773
|
+
return false;
|
|
1774
|
+
}
|
|
1801
1775
|
}
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1776
|
+
return true;
|
|
1777
|
+
}
|
|
1778
|
+
__name(requestFilterMatches, "requestFilterMatches");
|
|
1779
|
+
async function responseFilterMatches(response, filter) {
|
|
1780
|
+
if (filter.headers && !eventFilterMatches(response.headers, filter.headers)) {
|
|
1781
|
+
return {
|
|
1782
|
+
match: false
|
|
1783
|
+
};
|
|
1784
|
+
}
|
|
1785
|
+
try {
|
|
1786
|
+
const json = await response.json();
|
|
1787
|
+
if (filter.body && !eventFilterMatches(json, filter.body)) {
|
|
1788
|
+
return {
|
|
1789
|
+
match: false,
|
|
1790
|
+
body: json
|
|
1791
|
+
};
|
|
1792
|
+
} else {
|
|
1793
|
+
return {
|
|
1794
|
+
match: true,
|
|
1795
|
+
body: json
|
|
1796
|
+
};
|
|
1797
|
+
}
|
|
1798
|
+
} catch (e) {
|
|
1799
|
+
if (filter.body) {
|
|
1800
|
+
return {
|
|
1801
|
+
match: false,
|
|
1802
|
+
body: void 0
|
|
1803
|
+
};
|
|
1804
|
+
}
|
|
1816
1805
|
}
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
h1 ^= h1 >>> 16;
|
|
1822
|
-
h2 = Math.imul(h2 ^ h2 >>> 16, 2246822507);
|
|
1823
|
-
h2 = Math.imul(h2 ^ h2 >>> 13, 3266489909);
|
|
1824
|
-
h2 ^= h2 >>> 16;
|
|
1825
|
-
return 4294967296 * (2097151 & h2) + (h1 >>> 0);
|
|
1806
|
+
return {
|
|
1807
|
+
match: true,
|
|
1808
|
+
body: void 0
|
|
1809
|
+
};
|
|
1826
1810
|
}
|
|
1827
|
-
__name(
|
|
1811
|
+
__name(responseFilterMatches, "responseFilterMatches");
|
|
1812
|
+
function requestMethodMatches(method, filter) {
|
|
1813
|
+
if (!filter) {
|
|
1814
|
+
return true;
|
|
1815
|
+
}
|
|
1816
|
+
return filter.includes(method);
|
|
1817
|
+
}
|
|
1818
|
+
__name(requestMethodMatches, "requestMethodMatches");
|
|
1828
1819
|
|
|
1829
1820
|
// src/index.ts
|
|
1830
1821
|
var API_VERSIONS = {
|
|
1831
|
-
LAZY_LOADED_CACHED_TASKS: "2023-09-29"
|
|
1822
|
+
LAZY_LOADED_CACHED_TASKS: "2023-09-29",
|
|
1823
|
+
SERIALIZED_TASK_OUTPUT: "2023-11-01"
|
|
1832
1824
|
};
|
|
1833
1825
|
var PLATFORM_FEATURES = {
|
|
1834
1826
|
yieldExecution: API_VERSIONS.LAZY_LOADED_CACHED_TASKS,
|
|
@@ -1845,4 +1837,185 @@ function supportsFeature(featureName, version) {
|
|
|
1845
1837
|
return version >= supportedVersion;
|
|
1846
1838
|
}
|
|
1847
1839
|
__name(supportsFeature, "supportsFeature");
|
|
1840
|
+
|
|
1841
|
+
exports.API_VERSIONS = API_VERSIONS;
|
|
1842
|
+
exports.ApiEventLogSchema = ApiEventLogSchema;
|
|
1843
|
+
exports.AutoYieldConfigSchema = AutoYieldConfigSchema;
|
|
1844
|
+
exports.AutoYieldMetadataSchema = AutoYieldMetadataSchema;
|
|
1845
|
+
exports.CachedTaskSchema = CachedTaskSchema;
|
|
1846
|
+
exports.CancelRunsForEventSchema = CancelRunsForEventSchema;
|
|
1847
|
+
exports.CommonMissingConnectionNotificationPayloadSchema = CommonMissingConnectionNotificationPayloadSchema;
|
|
1848
|
+
exports.CommonMissingConnectionNotificationResolvedPayloadSchema = CommonMissingConnectionNotificationResolvedPayloadSchema;
|
|
1849
|
+
exports.CompleteTaskBodyInputSchema = CompleteTaskBodyInputSchema;
|
|
1850
|
+
exports.CompleteTaskBodyV2InputSchema = CompleteTaskBodyV2InputSchema;
|
|
1851
|
+
exports.ConcurrencyLimitOptionsSchema = ConcurrencyLimitOptionsSchema;
|
|
1852
|
+
exports.ConnectionAuthSchema = ConnectionAuthSchema;
|
|
1853
|
+
exports.CreateExternalConnectionBodySchema = CreateExternalConnectionBodySchema;
|
|
1854
|
+
exports.CreateRunResponseBodySchema = CreateRunResponseBodySchema;
|
|
1855
|
+
exports.CronMetadataSchema = CronMetadataSchema;
|
|
1856
|
+
exports.CronOptionsSchema = CronOptionsSchema;
|
|
1857
|
+
exports.DELIVER_WEBHOOK_REQUEST = DELIVER_WEBHOOK_REQUEST;
|
|
1858
|
+
exports.DeliverEventResponseSchema = DeliverEventResponseSchema;
|
|
1859
|
+
exports.DeserializedJsonSchema = DeserializedJsonSchema;
|
|
1860
|
+
exports.DisplayPropertiesSchema = DisplayPropertiesSchema;
|
|
1861
|
+
exports.DisplayPropertySchema = DisplayPropertySchema;
|
|
1862
|
+
exports.DynamicTriggerEndpointMetadataSchema = DynamicTriggerEndpointMetadataSchema;
|
|
1863
|
+
exports.DynamicTriggerMetadataSchema = DynamicTriggerMetadataSchema;
|
|
1864
|
+
exports.EndpointHeadersSchema = EndpointHeadersSchema;
|
|
1865
|
+
exports.EndpointIndexErrorSchema = EndpointIndexErrorSchema;
|
|
1866
|
+
exports.EphemeralEventDispatcherRequestBodySchema = EphemeralEventDispatcherRequestBodySchema;
|
|
1867
|
+
exports.EphemeralEventDispatcherResponseBodySchema = EphemeralEventDispatcherResponseBodySchema;
|
|
1868
|
+
exports.ErrorWithStackSchema = ErrorWithStackSchema;
|
|
1869
|
+
exports.EventExampleSchema = EventExampleSchema;
|
|
1870
|
+
exports.EventFilterSchema = EventFilterSchema;
|
|
1871
|
+
exports.EventRuleSchema = EventRuleSchema;
|
|
1872
|
+
exports.EventSpecificationSchema = EventSpecificationSchema;
|
|
1873
|
+
exports.ExecuteJobHeadersSchema = ExecuteJobHeadersSchema;
|
|
1874
|
+
exports.ExecuteJobRunMetadataSchema = ExecuteJobRunMetadataSchema;
|
|
1875
|
+
exports.FailTaskBodyInputSchema = FailTaskBodyInputSchema;
|
|
1876
|
+
exports.FetchOperationSchema = FetchOperationSchema;
|
|
1877
|
+
exports.FetchPollOperationSchema = FetchPollOperationSchema;
|
|
1878
|
+
exports.FetchRequestInitSchema = FetchRequestInitSchema;
|
|
1879
|
+
exports.FetchRetryBackoffStrategySchema = FetchRetryBackoffStrategySchema;
|
|
1880
|
+
exports.FetchRetryHeadersStrategySchema = FetchRetryHeadersStrategySchema;
|
|
1881
|
+
exports.FetchRetryOptionsSchema = FetchRetryOptionsSchema;
|
|
1882
|
+
exports.FetchRetryStrategySchema = FetchRetryStrategySchema;
|
|
1883
|
+
exports.FetchTimeoutOptionsSchema = FetchTimeoutOptionsSchema;
|
|
1884
|
+
exports.GetEndpointIndexResponseSchema = GetEndpointIndexResponseSchema;
|
|
1885
|
+
exports.GetEventSchema = GetEventSchema;
|
|
1886
|
+
exports.GetRunSchema = GetRunSchema;
|
|
1887
|
+
exports.GetRunStatusesSchema = GetRunStatusesSchema;
|
|
1888
|
+
exports.GetRunsSchema = GetRunsSchema;
|
|
1889
|
+
exports.HTTPMethodUnionSchema = HTTPMethodUnionSchema;
|
|
1890
|
+
exports.HandleTriggerSourceSchema = HandleTriggerSourceSchema;
|
|
1891
|
+
exports.HttpEndpointRequestHeadersSchema = HttpEndpointRequestHeadersSchema;
|
|
1892
|
+
exports.HttpSourceRequestHeadersSchema = HttpSourceRequestHeadersSchema;
|
|
1893
|
+
exports.HttpSourceResponseSchema = HttpSourceResponseSchema;
|
|
1894
|
+
exports.IndexEndpointResponseSchema = IndexEndpointResponseSchema;
|
|
1895
|
+
exports.InitializeCronScheduleBodySchema = InitializeCronScheduleBodySchema;
|
|
1896
|
+
exports.InitializeTriggerBodySchema = InitializeTriggerBodySchema;
|
|
1897
|
+
exports.IntegrationConfigSchema = IntegrationConfigSchema;
|
|
1898
|
+
exports.IntegrationMetadataSchema = IntegrationMetadataSchema;
|
|
1899
|
+
exports.IntervalMetadataSchema = IntervalMetadataSchema;
|
|
1900
|
+
exports.IntervalOptionsSchema = IntervalOptionsSchema;
|
|
1901
|
+
exports.InvokeJobRequestBodySchema = InvokeJobRequestBodySchema;
|
|
1902
|
+
exports.InvokeJobResponseSchema = InvokeJobResponseSchema;
|
|
1903
|
+
exports.InvokeOptionsSchema = InvokeOptionsSchema;
|
|
1904
|
+
exports.InvokeTriggerMetadataSchema = InvokeTriggerMetadataSchema;
|
|
1905
|
+
exports.JobMetadataSchema = JobMetadataSchema;
|
|
1906
|
+
exports.JobRunStatusRecordSchema = JobRunStatusRecordSchema;
|
|
1907
|
+
exports.KeyValueStoreResponseBodySchema = KeyValueStoreResponseBodySchema;
|
|
1908
|
+
exports.LogMessageSchema = LogMessageSchema;
|
|
1909
|
+
exports.MISSING_CONNECTION_NOTIFICATION = MISSING_CONNECTION_NOTIFICATION;
|
|
1910
|
+
exports.MISSING_CONNECTION_RESOLVED_NOTIFICATION = MISSING_CONNECTION_RESOLVED_NOTIFICATION;
|
|
1911
|
+
exports.MissingConnectionNotificationPayloadSchema = MissingConnectionNotificationPayloadSchema;
|
|
1912
|
+
exports.MissingConnectionResolvedNotificationPayloadSchema = MissingConnectionResolvedNotificationPayloadSchema;
|
|
1913
|
+
exports.MissingDeveloperConnectionNotificationPayloadSchema = MissingDeveloperConnectionNotificationPayloadSchema;
|
|
1914
|
+
exports.MissingDeveloperConnectionResolvedNotificationPayloadSchema = MissingDeveloperConnectionResolvedNotificationPayloadSchema;
|
|
1915
|
+
exports.MissingExternalConnectionNotificationPayloadSchema = MissingExternalConnectionNotificationPayloadSchema;
|
|
1916
|
+
exports.MissingExternalConnectionResolvedNotificationPayloadSchema = MissingExternalConnectionResolvedNotificationPayloadSchema;
|
|
1917
|
+
exports.NormalizedRequestSchema = NormalizedRequestSchema;
|
|
1918
|
+
exports.NormalizedResponseSchema = NormalizedResponseSchema;
|
|
1919
|
+
exports.PLATFORM_FEATURES = PLATFORM_FEATURES;
|
|
1920
|
+
exports.PongErrorResponseSchema = PongErrorResponseSchema;
|
|
1921
|
+
exports.PongResponseSchema = PongResponseSchema;
|
|
1922
|
+
exports.PongSuccessResponseSchema = PongSuccessResponseSchema;
|
|
1923
|
+
exports.PreprocessRunBodySchema = PreprocessRunBodySchema;
|
|
1924
|
+
exports.PreprocessRunResponseSchema = PreprocessRunResponseSchema;
|
|
1925
|
+
exports.QueueOptionsSchema = QueueOptionsSchema;
|
|
1926
|
+
exports.REGISTER_SOURCE_EVENT_V1 = REGISTER_SOURCE_EVENT_V1;
|
|
1927
|
+
exports.REGISTER_SOURCE_EVENT_V2 = REGISTER_SOURCE_EVENT_V2;
|
|
1928
|
+
exports.REGISTER_WEBHOOK = REGISTER_WEBHOOK;
|
|
1929
|
+
exports.RawEventSchema = RawEventSchema;
|
|
1930
|
+
exports.RedactSchema = RedactSchema;
|
|
1931
|
+
exports.RedactStringSchema = RedactStringSchema;
|
|
1932
|
+
exports.RegisterDynamicSchedulePayloadSchema = RegisterDynamicSchedulePayloadSchema;
|
|
1933
|
+
exports.RegisterHTTPTriggerSourceBodySchema = RegisterHTTPTriggerSourceBodySchema;
|
|
1934
|
+
exports.RegisterIntervalScheduleBodySchema = RegisterIntervalScheduleBodySchema;
|
|
1935
|
+
exports.RegisterSMTPTriggerSourceBodySchema = RegisterSMTPTriggerSourceBodySchema;
|
|
1936
|
+
exports.RegisterSQSTriggerSourceBodySchema = RegisterSQSTriggerSourceBodySchema;
|
|
1937
|
+
exports.RegisterScheduleBodySchema = RegisterScheduleBodySchema;
|
|
1938
|
+
exports.RegisterScheduleResponseBodySchema = RegisterScheduleResponseBodySchema;
|
|
1939
|
+
exports.RegisterSourceChannelBodySchema = RegisterSourceChannelBodySchema;
|
|
1940
|
+
exports.RegisterSourceEventSchemaV1 = RegisterSourceEventSchemaV1;
|
|
1941
|
+
exports.RegisterSourceEventSchemaV2 = RegisterSourceEventSchemaV2;
|
|
1942
|
+
exports.RegisterTriggerBodySchemaV1 = RegisterTriggerBodySchemaV1;
|
|
1943
|
+
exports.RegisterTriggerBodySchemaV2 = RegisterTriggerBodySchemaV2;
|
|
1944
|
+
exports.RegisterTriggerSourceSchema = RegisterTriggerSourceSchema;
|
|
1945
|
+
exports.RegisterWebhookPayloadSchema = RegisterWebhookPayloadSchema;
|
|
1946
|
+
exports.RegisterWebhookSourceSchema = RegisterWebhookSourceSchema;
|
|
1947
|
+
exports.RequestFilterSchema = RequestFilterSchema;
|
|
1948
|
+
exports.RequestWithRawBodySchema = RequestWithRawBodySchema;
|
|
1949
|
+
exports.ResponseFilterSchema = ResponseFilterSchema;
|
|
1950
|
+
exports.RetryOptionsSchema = RetryOptionsSchema;
|
|
1951
|
+
exports.RunJobAutoYieldExecutionErrorSchema = RunJobAutoYieldExecutionErrorSchema;
|
|
1952
|
+
exports.RunJobAutoYieldWithCompletedTaskExecutionErrorSchema = RunJobAutoYieldWithCompletedTaskExecutionErrorSchema;
|
|
1953
|
+
exports.RunJobBodySchema = RunJobBodySchema;
|
|
1954
|
+
exports.RunJobCanceledWithTaskSchema = RunJobCanceledWithTaskSchema;
|
|
1955
|
+
exports.RunJobErrorResponseSchema = RunJobErrorResponseSchema;
|
|
1956
|
+
exports.RunJobErrorSchema = RunJobErrorSchema;
|
|
1957
|
+
exports.RunJobInvalidPayloadErrorSchema = RunJobInvalidPayloadErrorSchema;
|
|
1958
|
+
exports.RunJobResponseSchema = RunJobResponseSchema;
|
|
1959
|
+
exports.RunJobResumeWithParallelTaskSchema = RunJobResumeWithParallelTaskSchema;
|
|
1960
|
+
exports.RunJobResumeWithTaskSchema = RunJobResumeWithTaskSchema;
|
|
1961
|
+
exports.RunJobRetryWithTaskSchema = RunJobRetryWithTaskSchema;
|
|
1962
|
+
exports.RunJobSuccessSchema = RunJobSuccessSchema;
|
|
1963
|
+
exports.RunJobUnresolvedAuthErrorSchema = RunJobUnresolvedAuthErrorSchema;
|
|
1964
|
+
exports.RunJobYieldExecutionErrorSchema = RunJobYieldExecutionErrorSchema;
|
|
1965
|
+
exports.RunSourceContextSchema = RunSourceContextSchema;
|
|
1966
|
+
exports.RunStatusSchema = RunStatusSchema;
|
|
1967
|
+
exports.RunTaskBodyInputSchema = RunTaskBodyInputSchema;
|
|
1968
|
+
exports.RunTaskBodyOutputSchema = RunTaskBodyOutputSchema;
|
|
1969
|
+
exports.RunTaskOptionsSchema = RunTaskOptionsSchema;
|
|
1970
|
+
exports.RunTaskResponseWithCachedTasksBodySchema = RunTaskResponseWithCachedTasksBodySchema;
|
|
1971
|
+
exports.RunTaskSchema = RunTaskSchema;
|
|
1972
|
+
exports.RuntimeEnvironmentTypeSchema = RuntimeEnvironmentTypeSchema;
|
|
1973
|
+
exports.SCHEDULED_EVENT = SCHEDULED_EVENT;
|
|
1974
|
+
exports.ScheduleMetadataSchema = ScheduleMetadataSchema;
|
|
1975
|
+
exports.ScheduledPayloadSchema = ScheduledPayloadSchema;
|
|
1976
|
+
exports.ScheduledTriggerMetadataSchema = ScheduledTriggerMetadataSchema;
|
|
1977
|
+
exports.SchemaErrorSchema = SchemaErrorSchema;
|
|
1978
|
+
exports.SendBulkEventsBodySchema = SendBulkEventsBodySchema;
|
|
1979
|
+
exports.SendEventBodySchema = SendEventBodySchema;
|
|
1980
|
+
exports.SendEventOptionsSchema = SendEventOptionsSchema;
|
|
1981
|
+
exports.SerializableJsonSchema = SerializableJsonSchema;
|
|
1982
|
+
exports.ServerTaskSchema = ServerTaskSchema;
|
|
1983
|
+
exports.SourceMetadataV2Schema = SourceMetadataV2Schema;
|
|
1984
|
+
exports.StaticTriggerMetadataSchema = StaticTriggerMetadataSchema;
|
|
1985
|
+
exports.StatusHistorySchema = StatusHistorySchema;
|
|
1986
|
+
exports.StatusUpdateSchema = StatusUpdateSchema;
|
|
1987
|
+
exports.StatusUpdateStateSchema = StatusUpdateStateSchema;
|
|
1988
|
+
exports.StyleSchema = StyleSchema;
|
|
1989
|
+
exports.TaskSchema = TaskSchema;
|
|
1990
|
+
exports.TaskStatusSchema = TaskStatusSchema;
|
|
1991
|
+
exports.TriggerHelpSchema = TriggerHelpSchema;
|
|
1992
|
+
exports.TriggerMetadataSchema = TriggerMetadataSchema;
|
|
1993
|
+
exports.TriggerSourceSchema = TriggerSourceSchema;
|
|
1994
|
+
exports.UpdateTriggerSourceBodyV1Schema = UpdateTriggerSourceBodyV1Schema;
|
|
1995
|
+
exports.UpdateTriggerSourceBodyV2Schema = UpdateTriggerSourceBodyV2Schema;
|
|
1996
|
+
exports.UpdateWebhookBodySchema = UpdateWebhookBodySchema;
|
|
1997
|
+
exports.ValidateErrorResponseSchema = ValidateErrorResponseSchema;
|
|
1998
|
+
exports.ValidateResponseSchema = ValidateResponseSchema;
|
|
1999
|
+
exports.ValidateSuccessResponseSchema = ValidateSuccessResponseSchema;
|
|
2000
|
+
exports.WebhookContextMetadataSchema = WebhookContextMetadataSchema;
|
|
2001
|
+
exports.WebhookDeliveryResponseSchema = WebhookDeliveryResponseSchema;
|
|
2002
|
+
exports.WebhookMetadataSchema = WebhookMetadataSchema;
|
|
2003
|
+
exports.WebhookSourceRequestHeadersSchema = WebhookSourceRequestHeadersSchema;
|
|
2004
|
+
exports.addMissingVersionField = addMissingVersionField;
|
|
2005
|
+
exports.assertExhaustive = assertExhaustive;
|
|
2006
|
+
exports.calculateResetAt = calculateResetAt;
|
|
2007
|
+
exports.calculateRetryAt = calculateRetryAt;
|
|
2008
|
+
exports.currentDate = currentDate;
|
|
2009
|
+
exports.currentTimestampMilliseconds = currentTimestampMilliseconds;
|
|
2010
|
+
exports.currentTimestampSeconds = currentTimestampSeconds;
|
|
2011
|
+
exports.deepMergeFilters = deepMergeFilters;
|
|
2012
|
+
exports.eventFilterMatches = eventFilterMatches;
|
|
2013
|
+
exports.parseEndpointIndexStats = parseEndpointIndexStats;
|
|
2014
|
+
exports.replacements = replacements;
|
|
2015
|
+
exports.requestFilterMatches = requestFilterMatches;
|
|
2016
|
+
exports.responseFilterMatches = responseFilterMatches;
|
|
2017
|
+
exports.stringPatternMatchers = stringPatternMatchers;
|
|
2018
|
+
exports.supportsFeature = supportsFeature;
|
|
2019
|
+
exports.urlWithSearchParams = urlWithSearchParams;
|
|
2020
|
+
//# sourceMappingURL=out.js.map
|
|
1848
2021
|
//# sourceMappingURL=index.js.map
|