@cloudflare/vite-plugin 1.36.1 → 1.36.3
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.mjs
CHANGED
|
@@ -32120,6 +32120,7 @@ var validateQueueBinding = /* @__PURE__ */ __name((diagnostics, field, value) =>
|
|
|
32120
32120
|
diagnostics.errors.push(`"${field}" should, optionally, have a ${optionalOpt.type} "${optionalOpt.key}" field but got ${JSON.stringify(value)}.`);
|
|
32121
32121
|
isValid2 = false;
|
|
32122
32122
|
}
|
|
32123
|
+
if (hasProperty(value, "delivery_delay") && value.delivery_delay !== void 0) diagnostics.warnings.push(`The "delivery_delay" field in "${field}" is deprecated and has no effect. Queue-level settings should be configured using "wrangler queues update" instead. This setting will be removed in a future version.`);
|
|
32123
32124
|
if (!isRemoteValid(value, field, diagnostics)) isValid2 = false;
|
|
32124
32125
|
return isValid2;
|
|
32125
32126
|
}, "validateQueueBinding");
|