Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UploadItemPackageResponse

import type { UploadItemPackageResponse } from "https://googleapis.deno.dev/v1/chromewebstore:v2.ts";

Response message for UploadItemPackage.

interface UploadItemPackageResponse {
crxVersion?: string;
readonly itemId?: string;
name?: string;
readonly uploadState?:
| "UPLOAD_STATE_UNSPECIFIED"
| "SUCCEEDED"
| "IN_PROGRESS"
| "FAILED"
| "NOT_FOUND";
}

§Properties

§
crxVersion?: string
[src]

The extension version provided in the manifest of the uploaded package. This will not be set if the upload is still in progress (upload_state is UPLOAD_IN_PROGRESS).

§
readonly itemId?: string
[src]

Output only. The ID of the item the package was uploaded to.

§
name?: string
[src]

The name of the item the package was uploaded to.

§
readonly uploadState?: "UPLOAD_STATE_UNSPECIFIED" | "SUCCEEDED" | "IN_PROGRESS" | "FAILED" | "NOT_FOUND"
[src]

Output only. The state of the upload. If upload_state is UPLOAD_IN_PROGRESS, you can poll for updates using the fetchStatus method.