UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

26 lines 974 B
"use strict"; // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. Object.defineProperty(exports, "__esModule", { value: true }); exports.Copy = void 0; const resource_1 = require("cloudflare/resource"); class Copy extends resource_1.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); } } exports.Copy = Copy; (function (Copy) { })(Copy = exports.Copy || (exports.Copy = {})); //# sourceMappingURL=copy.js.map