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
20 lines
934 B
Plaintext
20 lines
934 B
Plaintext
import type { TypedFallbackLocale } from '../../../index.js';
|
|
import type { PayloadRequest, PopulateType } from '../../../types/index.js';
|
|
import type { JoinField, RelationshipField, UploadField } from '../../config/types.js';
|
|
type PromiseArgs = {
|
|
currentDepth: number;
|
|
depth: number;
|
|
draft: boolean;
|
|
fallbackLocale: TypedFallbackLocale;
|
|
field: JoinField | RelationshipField | UploadField;
|
|
locale: null | string;
|
|
overrideAccess: boolean;
|
|
parentIsLocalized: boolean;
|
|
populate?: PopulateType;
|
|
req: PayloadRequest;
|
|
showHiddenFields: boolean;
|
|
siblingDoc: Record<string, any>;
|
|
};
|
|
export declare const relationshipPopulationPromise: ({ currentDepth, depth, draft, fallbackLocale, field, locale, overrideAccess, parentIsLocalized, populate: populateArg, req, showHiddenFields, siblingDoc, }: PromiseArgs) => Promise<void>;
|
|
export {};
|
|
//# sourceMappingURL=relationshipPopulationPromise.d.ts.map |