integration support for harness p5-fixed api report

Signed-off-by: Calvin Lee <cjlee@ualberta.ca>
This commit is contained in:
Calvin Lee
2024-04-23 21:46:58 -06:00
parent 2bf97f0aa1
commit 049a69f223
+3 -7
View File
@@ -520,9 +520,7 @@ export function getHarnessFileContentsUrl(
): string;
// @public
export function getHarnessRequestOptions(
config: HarnessIntegrationConfig,
): {
export function getHarnessRequestOptions(config: HarnessIntegrationConfig): {
headers?: Record<string, string>;
};
@@ -711,8 +709,8 @@ export class HarnessIntegration implements ScmIntegration {
// @public
export type HarnessIntegrationConfig = {
host: string;
apiKey?: string;
token?: string;
apiKey?: string;
};
// @public
@@ -883,9 +881,7 @@ export function readGoogleGcsIntegrationConfig(
): GoogleGcsIntegrationConfig;
// @public
export function readHarnessConfig(
config: Config,
): HarnessIntegrationConfig;
export function readHarnessConfig(config: Config): HarnessIntegrationConfig;
// @public @deprecated (undocumented)
export const replaceGitHubUrlType: typeof replaceGithubUrlType;