@trigger.dev/sdk 2.0.0-next.7 → 2.0.0-next.9
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.ts +304 -158
- package/dist/index.js +9 -9
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -785,21 +785,21 @@ var RetryOptionsSchema = import_zod9.z.object({
|
|
|
785
785
|
});
|
|
786
786
|
var RunTaskOptionsSchema = import_zod9.z.object({
|
|
787
787
|
name: import_zod9.z.string(),
|
|
788
|
+
delayUntil: import_zod9.z.coerce.date().optional(),
|
|
789
|
+
retry: RetryOptionsSchema.optional(),
|
|
788
790
|
icon: import_zod9.z.string().optional(),
|
|
789
791
|
displayKey: import_zod9.z.string().optional(),
|
|
790
|
-
noop: import_zod9.z.boolean().default(false),
|
|
791
|
-
operation: import_zod9.z.enum([
|
|
792
|
-
"fetch"
|
|
793
|
-
]).optional(),
|
|
794
|
-
delayUntil: import_zod9.z.coerce.date().optional(),
|
|
795
792
|
description: import_zod9.z.string().optional(),
|
|
796
793
|
properties: import_zod9.z.array(DisplayPropertySchema).optional(),
|
|
797
794
|
params: import_zod9.z.any(),
|
|
798
|
-
trigger: TriggerMetadataSchema.optional(),
|
|
799
|
-
redact: RedactSchema.optional(),
|
|
800
|
-
connectionKey: import_zod9.z.string().optional(),
|
|
801
795
|
style: StyleSchema.optional(),
|
|
802
|
-
|
|
796
|
+
connectionKey: import_zod9.z.string().optional(),
|
|
797
|
+
operation: import_zod9.z.enum([
|
|
798
|
+
"fetch"
|
|
799
|
+
]).optional(),
|
|
800
|
+
noop: import_zod9.z.boolean().default(false),
|
|
801
|
+
redact: RedactSchema.optional(),
|
|
802
|
+
trigger: TriggerMetadataSchema.optional()
|
|
803
803
|
});
|
|
804
804
|
var RunTaskBodyInputSchema = RunTaskOptionsSchema.extend({
|
|
805
805
|
idempotencyKey: import_zod9.z.string(),
|