@trigger.dev/core 0.0.0-v3-prerelease-20240425102616 → 0.0.0-v3-prerelease-20240427071154
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/v3/index.d.mts +16 -4
- package/dist/v3/index.d.ts +16 -4
- package/dist/v3/index.js +30 -1
- package/dist/v3/index.js.map +1 -1
- package/dist/v3/index.mjs +30 -2
- package/dist/v3/index.mjs.map +1 -1
- package/dist/v3/workers/index.js +2 -1
- package/dist/v3/workers/index.js.map +1 -1
- package/dist/v3/workers/index.mjs +2 -1
- package/dist/v3/workers/index.mjs.map +1 -1
- package/dist/v3/zodMessageHandler.d.mts +1 -1
- package/dist/v3/zodMessageHandler.d.ts +1 -1
- package/package.json +1 -1
package/dist/v3/workers/index.js
CHANGED
|
@@ -1120,7 +1120,8 @@ zod.z.object({
|
|
|
1120
1120
|
variables: zod.z.record(zod.z.string())
|
|
1121
1121
|
});
|
|
1122
1122
|
zod.z.object({
|
|
1123
|
-
imageReference: zod.z.string()
|
|
1123
|
+
imageReference: zod.z.string(),
|
|
1124
|
+
selfHosted: zod.z.boolean().optional()
|
|
1124
1125
|
});
|
|
1125
1126
|
zod.z.object({
|
|
1126
1127
|
id: zod.z.string(),
|