/opt/canhelp/node_modules/openai/resources/responses
NameSizeModeActions
index.d.mts2860644editdlrm
index.d.mts.map2570644editdlrm
index.d.ts2820644editdlrm
index.d.ts.map2560644editdlrm
index.js7810644editdlrm
index.js.map2440644editdlrm
index.mjs2640644editdlrm
index.mjs.map2020644editdlrm
input-items.d.mts20990644editdlrm
input-items.d.mts.map10290644editdlrm
input-items.d.ts20930644editdlrm
input-items.d.ts.map10280644editdlrm
input-items.js9930644editdlrm
input-items.js.map4590644editdlrm
input-items.mjs8230644editdlrm
input-items.mjs.map4650644editdlrm
input-tokens.d.mts60020644editdlrm
input-tokens.d.mts.map17010644editdlrm
input-tokens.d.ts59960644editdlrm
input-tokens.d.ts.map17000644editdlrm
input-tokens.js7910644editdlrm
input-tokens.js.map3730644editdlrm
input-tokens.mjs6470644editdlrm
input-tokens.mjs.map3700644editdlrm
internal-base.d.mts17700644editdlrm
internal-base.d.mts.map15900644editdlrm
internal-base.d.ts17650644editdlrm
internal-base.d.ts.map15890644editdlrm
internal-base.js18790644editdlrm
internal-base.js.map15700644editdlrm
internal-base.mjs16220644editdlrm
internal-base.mjs.map15600644editdlrm
responses.d.mts2205560644editdlrm
responses.d.mts.map729310644editdlrm
responses.d.ts2205420644editdlrm
responses.d.ts.map729300644editdlrm
responses.js40600644editdlrm
responses.js.map22120644editdlrm
responses.mjs36670644editdlrm
responses.mjs.map22310644editdlrm
ws.d.mts14430644editdlrm
ws.d.mts.map7010644editdlrm
ws.d.ts14390644editdlrm
ws.d.ts.map7000644editdlrm
ws.js60090644editdlrm
ws.js.map50010644editdlrm
ws.mjs57750644editdlrm
ws.mjs.map50180644editdlrm
Edit: /opt/canhelp/node_modules/openai/resources/responses/input-items.d.mts (2099B)
import { APIResource } from "../../core/resource.mjs"; import * as ResponsesAPI from "./responses.mjs"; import { ResponseItemsPage } from "./responses.mjs"; import { type CursorPageParams, PagePromise } from "../../core/pagination.mjs"; import { RequestOptions } from "../../internal/request-options.mjs"; export declare class InputItems extends APIResource { /** * Returns a list of input items for a given response. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const responseItem of client.responses.inputItems.list( * 'response_id', * )) { * // ... * } * ``` */ list(responseID: string, query?: InputItemListParams | null | undefined, options?: RequestOptions): PagePromise; } /** * A list of Response items. */ export interface ResponseItemList { /** * A list of items used to generate this response. */ data: Array; /** * The ID of the first item in the list. */ first_id: string; /** * Whether there are more items available. */ has_more: boolean; /** * The ID of the last item in the list. */ last_id: string; /** * The type of object returned, must be `list`. */ object: 'list'; } export interface InputItemListParams extends CursorPageParams { /** * Additional fields to include in the response. See the `include` parameter for * Response creation above for more information. */ include?: Array; /** * The order to return the input items in. Default is `desc`. * * - `asc`: Return the input items in ascending order. * - `desc`: Return the input items in descending order. */ order?: 'asc' | 'desc'; } export declare namespace InputItems { export { type ResponseItemList as ResponseItemList, type InputItemListParams as InputItemListParams }; } export { type ResponseItemsPage }; //# sourceMappingURL=input-items.d.mts.map