UNPKG

finite-state-sdk

Version:

The Finite State SDK.

43 lines (42 loc) 1.04 kB
export interface CreateTestResponse { createTest: { id: string; name: string; artifactUnderTest: { id: string; name: string; assetVersion: { id: string; name: string; asset: { id: string; name: string; dependentProducts: { id: string; name: string; }[]; }; }; }; createdBy: { id: string; email: string; }; ctx: { asset: string; products: string[]; businessUnits: string[]; }; uploadMethod: string; }; } export declare enum UploadMethod { WEB_APP_UI = "WEB_APP_UI", API = "API", GITHUB_INTEGRATION = "GITHUB_INTEGRATION", AZURE_DEVOPS_INTEGRATION = "AZURE_DEVOPS_INTEGRATION" } export type Tools = { description: string; name: string; };