import { APIResource } from "../../../core/resource.mjs"; import { APIPromise } from "../../../core/api-promise.mjs"; import { RequestOptions } from "../../../internal/request-options.mjs"; export declare class BaseSpendingLimit extends APIResource { static readonly _key: readonly ['aiGateway', 'billing', 'spendingLimit']; /** * Deprecated: spending limits can no longer be created, enabled, or modified and * this endpoint always responds 403. Use the new AI Gateway spend limits instead: * https://developers.cloudflare.com/ai-gateway/features/spend-limits/. Existing * limits can be removed via DELETE /spending-limit. * * @deprecated */ create(params: SpendingLimitCreateParams, options?: RequestOptions): APIPromise; /** * Remove the spending limit for the account. * * @example * ```ts * const spendingLimit = * await client.aiGateway.billing.spendingLimit.delete({ * account_id: 'account_id', * }); * ``` */ delete(params: SpendingLimitDeleteParams, options?: RequestOptions): APIPromise; /** * Retrieve the current spending limit configuration for the account. * * @example * ```ts * const spendingLimit = * await client.aiGateway.billing.spendingLimit.get({ * account_id: 'account_id', * }); * ``` */ get(params: SpendingLimitGetParams, options?: RequestOptions): APIPromise; } export declare class SpendingLimit extends BaseSpendingLimit { } export type SpendingLimitCreateResponse = unknown; export type SpendingLimitDeleteResponse = unknown; export interface SpendingLimitGetResponse { config: SpendingLimitGetResponse.Config; enabled: boolean; } export declare namespace SpendingLimitGetResponse { interface Config { amount: number | null; duration: string | null; strategy: string | null; } } export interface SpendingLimitCreateParams { /** * Path param: Cloudflare account ID. */ account_id: string; /** * Body param: Spending limit amount in cents (min 100). */ amount: number; /** * Body param: Spending limit duration. */ duration: 'daily' | 'weekly' | 'monthly'; /** * Body param: Spending limit strategy. */ strategy: 'fixed' | 'sliding'; } export interface SpendingLimitDeleteParams { /** * Cloudflare account ID. */ account_id: string; } export interface SpendingLimitGetParams { /** * Cloudflare account ID. */ account_id: string; } export declare namespace SpendingLimit { export { type SpendingLimitCreateResponse as SpendingLimitCreateResponse, type SpendingLimitDeleteResponse as SpendingLimitDeleteResponse, type SpendingLimitGetResponse as SpendingLimitGetResponse, type SpendingLimitCreateParams as SpendingLimitCreateParams, type SpendingLimitDeleteParams as SpendingLimitDeleteParams, type SpendingLimitGetParams as SpendingLimitGetParams, }; } //# sourceMappingURL=spending-limit.d.mts.map