Files
klz-cables.com/.pnpm-store/v10/files/74/1e20125d05540cfb29bfbd9d175d8dc5a539c8a10419bc2622137899bb62bbc456632c2240f9c4662512381bce0370872f24f30416b25a42a6caf3de1d3875
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

39 lines
1.5 KiB
Plaintext

import type { SanitizedCollectionConfig } from '../../../collections/config/types.js';
import type { SanitizedGlobalConfig } from '../../../globals/config/types.js';
import type { RequestContext, TypedFallbackLocale } from '../../../index.js';
import type { JsonObject, PayloadRequest, PopulateType, SelectType } from '../../../types/index.js';
export type AfterReadArgs<T extends JsonObject> = {
collection: null | SanitizedCollectionConfig;
context: RequestContext;
currentDepth?: number;
depth: number;
doc: T;
draft: boolean;
fallbackLocale: TypedFallbackLocale;
findMany?: boolean;
/**
* Controls whether locales should be flattened into the requested locale.
* E.g.: { [locale]: fields } -> fields
*
* @default true
*/
flattenLocales?: boolean;
global: null | SanitizedGlobalConfig;
locale: string;
overrideAccess: boolean;
populate?: PopulateType;
req: PayloadRequest;
select?: SelectType;
showHiddenFields: boolean;
};
/**
* This function is responsible for the following actions, in order:
* - Remove hidden fields from response
* - Flatten locales into requested locale. If the input doc contains all locales, the output doc after this function will only contain the requested locale.
* - Sanitize outgoing data (point field, etc.)
* - Execute field hooks
* - Execute read access control
* - Populate relationships
*/
export declare function afterRead<T extends JsonObject>(args: AfterReadArgs<T>): Promise<T>;
//# sourceMappingURL=index.d.ts.map