@sanity/ailf 0.1.22 → 0.1.23
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.
|
@@ -99,6 +99,8 @@ export async function buildRemoteRequest(options) {
|
|
|
99
99
|
raw.readiness = true;
|
|
100
100
|
if (config.discoveryReportEnabled)
|
|
101
101
|
raw.discoveryReport = true;
|
|
102
|
+
if (config.noRemoteCache)
|
|
103
|
+
raw.noRemoteCache = true;
|
|
102
104
|
// 4. Validate the assembled request
|
|
103
105
|
const parsed = PipelineRequestSchema.parse(raw);
|
|
104
106
|
return { request: parsed, taskCount: tasks.length };
|