dt-app
Version:
The Dynatrace App Toolkit is a tool you can use from your command line to create, develop, and deploy apps on your Dynatrace environment.
13 lines (12 loc) • 348 B
TypeScript
export type Token = `Bearer ${string}`;
/** Uploads an app to the hub console */
export declare function uploadAppToHubConsole(options: {
appId: string;
version: string;
token: Token;
autoApprove?: boolean;
channelId?: string;
artifact: Buffer;
releaseNotes?: Buffer;
hubConsoleBaseUrl: string;
}): Promise<string>;