UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

43 lines 1.69 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'cloudflare/resource'; import { SubscriptionsSinglePage } from 'cloudflare/resources/user/subscriptions'; export class Subscriptions extends APIResource { /** * Create a zone subscription, either plan or add-ons. */ create(identifier, body, options) { return this._client.post(`/zones/${identifier}/subscription`, { body, ...options })._thenUnwrap((obj) => obj.result); } /** * Updates an account subscription. */ update(accountIdentifier, subscriptionIdentifier, body, options) { return this._client.put(`/accounts/${accountIdentifier}/subscriptions/${subscriptionIdentifier}`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * Lists all of an account's subscriptions. */ list(accountIdentifier, options) { return this._client.getAPIList(`/accounts/${accountIdentifier}/subscriptions`, SubscriptionsSinglePage, options); } /** * Deletes an account's subscription. */ delete(accountIdentifier, subscriptionIdentifier, body, options) { return this._client.delete(`/accounts/${accountIdentifier}/subscriptions/${subscriptionIdentifier}`, { body, ...options, })._thenUnwrap((obj) => obj.result); } /** * Lists zone subscription details. */ get(identifier, options) { return this._client.get(`/zones/${identifier}/subscription`, options)._thenUnwrap((obj) => obj.result); } } export { SubscriptionsSinglePage }; //# sourceMappingURL=subscriptions.mjs.map