/** * #media.ts * * Code generated by ts-proto. DO NOT EDIT. * @packageDocumentation */ export declare enum AssetStatus { MISSING = 0, PROCESSING = 1, READY = 2, REJECTED = 3, ERROR = 4, UNRECOGNIZED = -1 } export type UpdateAssetStatusRequest = { /** The media_id for the asset, as provided by media service */ mediaId: string; /** The new status to put this asset in */ newStatus: AssetStatus; /** The publicly accessible URL of the asset. */ url: string; }; /** empty */ export type UpdateAssetStatusResponse = {}; export type CheckForV1AssetAndBackfillRequest = { /** app UUID */ appId: string; /** app version number (i.e. "0.0.1") */ appVersionNumber: string; /** asset path, i.e. "path/to/index.html" */ assetPath: string; }; //# sourceMappingURL=media.d.ts.map