import { APIResource } from "../../../../core/resource.js"; import { APIPromise } from "../../../../core/api-promise.js"; import { RequestOptions } from "../../../../internal/request-options.js"; export declare class BaseUpload extends APIResource { static readonly _key: readonly ['workers', 'scripts', 'assets', 'upload']; /** * Start uploading a collection of assets for use in a Worker version. To learn * more about the direct uploads of assets, see * https://developers.cloudflare.com/workers/static-assets/direct-upload/. * * @example * ```ts * const upload = * await client.workers.scripts.assets.upload.create( * 'this-is_my_script-01', * { * account_id: '023e105f4ecef8ad9ca31a8372d0c353', * manifest: { foo: { hash: 'hash', size: 0 } }, * }, * ); * ``` */ create(scriptName: string, params: UploadCreateParams, options?: RequestOptions): APIPromise; } export declare class Upload extends BaseUpload { } export interface UploadCreateResponse { /** * The requests to make to upload assets. */ buckets?: Array>; /** * A JWT to use as authentication for uploading assets. */ jwt?: string; } export interface UploadCreateParams { /** * Path param: Identifier. */ account_id: string; /** * Body param: A manifest ([path]: {hash, size}) map of files to upload. As an * example, `/blog/hello-world.html` would be a valid path key. */ manifest: { [key: string]: UploadCreateParams.Manifest; }; } export declare namespace UploadCreateParams { interface Manifest { /** * The hash of the file. */ hash: string; /** * The size of the file in bytes. */ size: number; } } export declare namespace Upload { export { type UploadCreateResponse as UploadCreateResponse, type UploadCreateParams as UploadCreateParams }; } //# sourceMappingURL=upload.d.ts.map