UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

52 lines (44 loc) 1.51 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from "../../../core"; import { APIResource } from "../../../resource"; import * as ObjectsAPI from "./objects"; import { CursorLimitPagination, type CursorLimitPaginationParams } from "../../../pagination"; export class Objects extends APIResource { /** * Returns the Durable Objects in a given namespace. */ list( id: string, params: ObjectListParams, options?: Core.RequestOptions, ): Core.PagePromise<DurableObjectsCursorLimitPagination, DurableObject> { const { account_id, ...query } = params; return this._client.getAPIList( `/accounts/${account_id}/workers/durable_objects/namespaces/${id}/objects`, DurableObjectsCursorLimitPagination, { query, ...options }, ); } } export class DurableObjectsCursorLimitPagination extends CursorLimitPagination<DurableObject> {} export interface DurableObject { /** * ID of the Durable Object. */ id?: string; /** * Whether the Durable Object has stored data. */ hasStoredData?: boolean; } export interface ObjectListParams extends CursorLimitPaginationParams { /** * Path param: Identifier */ account_id: string; } export namespace Objects { export import DurableObject = ObjectsAPI.DurableObject; export import DurableObjectsCursorLimitPagination = ObjectsAPI.DurableObjectsCursorLimitPagination; export import ObjectListParams = ObjectsAPI.ObjectListParams; }