import { AcceptedPayloadTypes } from '../Payload.mjs'; import { AcceptedQueryTypes } from '../Query.mjs'; type HandleApiCallOptions = ({ type: "pageAPI"; method: "getPage" | "getPreview" | "getPages"; } | { type: "action"; actionName: string; }) & { parameters: { query?: AcceptedQueryTypes; body?: AcceptedPayloadTypes; }; url: string; tracing: { frontendRequestId: string; }; }; export type { HandleApiCallOptions };