@workflow/world-vercel 4.0.1-beta.15 → 4.0.1-beta.16
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/queue.js +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/dist/queue.js
CHANGED
|
@@ -6,7 +6,7 @@ const MessageWrapper = z.object({
|
|
|
6
6
|
payload: QueuePayloadSchema,
|
|
7
7
|
queueName: ValidQueueName,
|
|
8
8
|
});
|
|
9
|
-
const VERCEL_QUEUE_MAX_VISIBILITY =
|
|
9
|
+
const VERCEL_QUEUE_MAX_VISIBILITY = 39600; // 11 hours in seconds
|
|
10
10
|
export function createQueue(config) {
|
|
11
11
|
const { baseUrl, usingProxy } = getHttpUrl(config);
|
|
12
12
|
const headers = getHeaders(config);
|
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "4.0.1-beta.
|
|
1
|
+
export declare const version = "4.0.1-beta.16";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED