UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

48 lines (41 loc) 1.22 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from '../../resource'; import * as Core from '../../core'; export class Publish extends APIResource { /** * Publish current Zaraz preview configuration for a zone. * * @example * ```ts * const publish = await client.zaraz.publish.create({ * zone_id: '023e105f4ecef8ad9ca31a8372d0c353', * }); * ``` */ create(params: PublishCreateParams, options?: Core.RequestOptions): Core.APIPromise<PublishCreateResponse> { const { zone_id, body } = params ?? {}; return ( this._client.post(`/zones/${zone_id}/settings/zaraz/publish`, { body: body, ...options, }) as Core.APIPromise<{ result: PublishCreateResponse }> )._thenUnwrap((obj) => obj.result); } } export type PublishCreateResponse = string; export interface PublishCreateParams { /** * Path param: Identifier. */ zone_id: string; /** * Body param: Zaraz configuration description. */ body?: string; } export declare namespace Publish { export { type PublishCreateResponse as PublishCreateResponse, type PublishCreateParams as PublishCreateParams, }; }