UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

18 lines 763 B
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'cloudflare/resource'; export class DirectUpload extends APIResource { /** * Creates a direct upload that allows video uploads without an API key. */ create(params, options) { const { account_id, 'Upload-Creator': uploadCreator, ...body } = params; return this._client.post(`/accounts/${account_id}/stream/direct_upload`, { body, ...options, headers: { 'Upload-Creator': uploadCreator || '', ...options?.headers }, })._thenUnwrap((obj) => obj.result); } } (function (DirectUpload) { })(DirectUpload || (DirectUpload = {})); //# sourceMappingURL=direct-upload.mjs.map