UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

84 lines (70 loc) 2.39 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from '../../../resource'; import * as Core from '../../../core'; import * as V1API from '../v1/v1'; import * as DirectUploadsAPI from './direct-uploads'; import { DirectUploadCreateParams, DirectUploadCreateResponse, DirectUploads } from './direct-uploads'; export class V2 extends APIResource { directUploads: DirectUploadsAPI.DirectUploads = new DirectUploadsAPI.DirectUploads(this._client); /** * List up to 10000 images with one request. Use the optional parameters below to * get a specific range of images. Endpoint returns continuation_token if more * images are present. * * @example * ```ts * const v2s = await client.images.v2.list({ * account_id: '023e105f4ecef8ad9ca31a8372d0c353', * }); * ``` */ list(params: V2ListParams, options?: Core.RequestOptions): Core.APIPromise<V2ListResponse> { const { account_id, ...query } = params; return ( this._client.get(`/accounts/${account_id}/images/v2`, { query, ...options }) as Core.APIPromise<{ result: V2ListResponse; }> )._thenUnwrap((obj) => obj.result); } } export interface V2ListResponse { /** * Continuation token to fetch next page. Passed as a query param when requesting * List V2 api endpoint. */ continuation_token?: string | null; images?: Array<V1API.Image>; } export interface V2ListParams { /** * Path param: Account identifier tag. */ account_id: string; /** * Query param: Continuation token for a next page. List images V2 returns * continuation_token */ continuation_token?: string | null; /** * Query param: Internal user ID set within the creator field. Setting to empty * string "" will return images where creator field is not set */ creator?: string | null; /** * Query param: Number of items per page. */ per_page?: number; /** * Query param: Sorting order by upload time. */ sort_order?: 'asc' | 'desc'; } V2.DirectUploads = DirectUploads; export declare namespace V2 { export { type V2ListResponse as V2ListResponse, type V2ListParams as V2ListParams }; export { DirectUploads as DirectUploads, type DirectUploadCreateResponse as DirectUploadCreateResponse, type DirectUploadCreateParams as DirectUploadCreateParams, }; }