UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

22 lines 827 B
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'cloudflare/resource'; export class Copy extends APIResource { /** * Uploads a video to Stream from a provided URL. */ create(params, options) { const { account_id, 'Upload-Creator': uploadCreator, 'Upload-Metadata': uploadMetadata, ...body } = params; return this._client.post(`/accounts/${account_id}/stream/copy`, { body, ...options, headers: { 'Upload-Creator': uploadCreator || '', 'Upload-Metadata': uploadMetadata || '', ...options?.headers, }, })._thenUnwrap((obj) => obj.result); } } (function (Copy) { })(Copy || (Copy = {})); //# sourceMappingURL=copy.mjs.map