@alwaysmeticulous/client
Advanced tools
Comparing version 2.188.0 to 2.189.0
@@ -40,5 +40,6 @@ import { Project, TestCase, TestCaseResult, TestRunStatus } from "@alwaysmeticulous/api"; | ||
export declare const getLatestTestRunResults: ({ client, commitSha, logicalEnvironmentVersion, useCloudReplayEnvironmentVersion, }: GetLatestTestRunOptions) => Promise<TestRun | null>; | ||
export declare const emitTelemetry: ({ client, values, }: { | ||
export declare const emitTelemetry: ({ client, values, commitSha, }: { | ||
client: AxiosInstance; | ||
values: Record<string, number>; | ||
commitSha?: string; | ||
}) => Promise<void>; |
@@ -62,6 +62,6 @@ "use strict"; | ||
exports.getLatestTestRunResults = getLatestTestRunResults; | ||
const emitTelemetry = async ({ client, values, }) => { | ||
await client.post(`test-runs/telemetry`, { values }); | ||
const emitTelemetry = async ({ client, values, commitSha, }) => { | ||
await client.post(`test-runs/telemetry`, { values, commitSha }); | ||
}; | ||
exports.emitTelemetry = emitTelemetry; | ||
//# sourceMappingURL=test-run.api.js.map |
{ | ||
"name": "@alwaysmeticulous/client", | ||
"version": "2.188.0", | ||
"version": "2.189.0", | ||
"description": "Helper methods for using the Meticulous backend API", | ||
@@ -22,4 +22,4 @@ "license": "ISC", | ||
"dependencies": { | ||
"@alwaysmeticulous/api": "^2.188.0", | ||
"@alwaysmeticulous/common": "^2.188.0", | ||
"@alwaysmeticulous/api": "^2.189.0", | ||
"@alwaysmeticulous/common": "^2.189.0", | ||
"axios": "^1.2.6", | ||
@@ -46,3 +46,3 @@ "axios-retry": "^4.1.0", | ||
}, | ||
"gitHead": "4d6aa04424e8c7438d3bc237860594030841d152" | ||
"gitHead": "13157dddb2b56ba517a67ace75e8441cdf2d7cc1" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
33860
477