UNPKG

gatsby

Version:
47 lines (46 loc) 1.9 kB
import { INodeManifest } from "./../redux/types"; interface INodeManifestPage { path?: string; } /** * This it the output after processing calls to the public unstable_createNodeManifest action */ interface INodeManifestOut { page: INodeManifestPage; node: { id: string; }; foundPageBy: FoundPageBy; } type FoundPageBy = `ownerNodeId` | `filesystem-route-api` | `context.id` | `context.slug` | `queryTracking` | `none`; type PreviouslyWrittenNodeManifests = Map<string, Promise<INodeManifestOut>>; export declare const foundPageByToLogIds: { none: string; "context.id": string; "context.slug": string; queryTracking: string; "filesystem-route-api": string; ownerNodeId: string; }; /** * Takes in some info about a node manifest and the page we did or didn't find for it, then warns and returns the warning string */ export declare function warnAboutNodeManifestMappingProblems({ inputManifest, pagePath, foundPageBy, verbose, }: { inputManifest: INodeManifest; pagePath?: string; foundPageBy: FoundPageBy; verbose: boolean; }): { logId: string; }; /** * Prepares and then writes out an individual node manifest file to be used for routing to previews. Manifest files are added via the public unstable_createNodeManifest action */ export declare function processNodeManifest(inputManifest: INodeManifest, listOfUniqueErrorIds: Set<string>, nodeManifestPagePathMap: Map<string, string>, verboseLogs: boolean, previouslyWrittenNodeManifests: PreviouslyWrittenNodeManifests): Promise<null | INodeManifestOut>; /** * Grabs all pending node manifests, processes them, writes them to disk, * and then removes them from the store. * Manifest files are added via the public unstable_createNodeManifest action in sourceNodes */ export declare function processNodeManifests(): Promise<Map<string, string> | null>; export {};