Files
klz-cables.com/.pnpm-store/v10/files/40/767138c2cca1e1781f3684a5cd04e0d686dae3527479ef861e41d96eb422e70be837bc01b78c0c6537e0838b5ebba4660c8677a9b3c2102daf39f14f583896
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

10 lines
596 B
Plaintext

import type { Job } from '../../../../index.js';
import type { PayloadRequest } from '../../../../types/index.js';
export type UpdateJobFunction = (jobData: Partial<Job>) => Promise<Job>;
/**
* Helper for updating a job that does the following, additionally to updating the job:
* - Merges incoming data from the updated job into the original job object
* - Handles job cancellation by throwing a `JobCancelledError` if the job was cancelled.
*/
export declare function getUpdateJobFunction(job: Job, req: PayloadRequest): UpdateJobFunction;
//# sourceMappingURL=getUpdateJobFunction.d.ts.map