import { FinalRequestOptions } from "../internal/request-options.js"; import { type CheckoutIntents } from "../client.js"; import { APIPromise } from "./api-promise.js"; import { type APIResponseProps } from "../internal/parse.js"; export type PageRequestOptions = Pick; export declare abstract class AbstractPage implements AsyncIterable { #private; protected options: FinalRequestOptions; protected response: Response; protected body: unknown; constructor(client: CheckoutIntents, response: Response, body: unknown, options: FinalRequestOptions); abstract nextPageRequestOptions(): PageRequestOptions | null; abstract getPaginatedItems(): Item[]; hasNextPage(): boolean; getNextPage(): Promise; iterPages(): AsyncGenerator; [Symbol.asyncIterator](): AsyncGenerator; } /** * This subclass of Promise will resolve to an instantiated Page once the request completes. * * It also implements AsyncIterable to allow auto-paginating iteration on an unawaited list call, eg: * * for await (const item of client.items.list()) { * console.log(item) * } */ export declare class PagePromise, Item = ReturnType[number]> extends APIPromise implements AsyncIterable { constructor(client: CheckoutIntents, request: Promise, Page: new (...args: ConstructorParameters) => PageClass); /** * Allow auto-paginating iteration on an unawaited list call, eg: * * for await (const item of client.items.list()) { * console.log(item) * } */ [Symbol.asyncIterator](): AsyncGenerator; } export interface CursorPaginationResponse { data: Array; pageInfo: CursorPaginationResponse.PageInfo; } export declare namespace CursorPaginationResponse { interface PageInfo { endCursor?: string | null; hasNextPage?: boolean; hasPreviousPage?: boolean; startCursor?: string | null; } } export interface CursorPaginationParams { limit?: number; after?: string; before?: string; } export declare class CursorPagination extends AbstractPage implements CursorPaginationResponse { data: Array; pageInfo: CursorPaginationResponse.PageInfo; constructor(client: CheckoutIntents, response: Response, body: CursorPaginationResponse, options: FinalRequestOptions); getPaginatedItems(): Item[]; nextPageRequestOptions(): PageRequestOptions | null; } //# sourceMappingURL=pagination.d.ts.map