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

PublishItemRequest

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

Request message for PublishItem.

interface PublishItemRequest {
deployInfos?: DeployInfo[];
publishType?: "PUBLISH_TYPE_UNSPECIFIED" | "DEFAULT_PUBLISH" | "STAGED_PUBLISH";
skipReview?: boolean;
}

§Properties

§
deployInfos?: DeployInfo[]
[src]

Optional. Additional deploy information including the desired initial percentage rollout. Defaults to the current value saved in the developer dashboard if unset.

§
publishType?: "PUBLISH_TYPE_UNSPECIFIED" | "DEFAULT_PUBLISH" | "STAGED_PUBLISH"
[src]

Optional. Use this to control if the item is published immediately on approval or staged for publishing in the future. Defaults to DEFAULT_PUBLISH if unset.

§
skipReview?: boolean
[src]

Optional. Whether to attempt to skip item review. The API will validate if the item qualifies and return a validation error if the item requires review. Defaults to false if unset.