Files
klz-cables.com/.pnpm-store/v10/files/16/7251db7d6414e09baf064960bade8826fb4d3c8a420b5349c4d60fcb7ddbf47bafbe5727c0706669dd287c644c724d37678dd99bacc2e53e618358ae27b6fb
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

21 lines
568 B
Plaintext

import type { Collection } from '../../collections/config/types.js';
import type { Document, PayloadRequest } from '../../types/index.js';
export type Result = {
exp: number;
refreshedToken: string;
setCookie?: boolean;
/** @deprecated
* use:
* ```ts
* user._strategy
* ```
*/
strategy?: string;
user: Document;
};
export type Arguments = {
collection: Collection;
req: PayloadRequest;
};
export declare const refreshOperation: (incomingArgs: Arguments) => Promise<Result>;
//# sourceMappingURL=refresh.d.ts.map