testbeats 2.5.0 → 2.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/beats/beats.js +3 -0
- package/src/index.d.ts +2 -0
package/package.json
CHANGED
package/src/beats/beats.js
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -305,6 +305,7 @@ export interface PublishReport {
|
|
|
305
305
|
api_key?: string;
|
|
306
306
|
project?: string;
|
|
307
307
|
run?: string;
|
|
308
|
+
metadata?: Record<string, string>;
|
|
308
309
|
show_failure_summary?: boolean;
|
|
309
310
|
show_failure_analysis?: boolean;
|
|
310
311
|
show_smart_analysis?: boolean;
|
|
@@ -318,6 +319,7 @@ export interface PublishConfig {
|
|
|
318
319
|
api_key?: string;
|
|
319
320
|
project?: string;
|
|
320
321
|
run?: string;
|
|
322
|
+
metadata?: Record<string, string>;
|
|
321
323
|
targets?: ITarget[];
|
|
322
324
|
extensions?: IExtension[];
|
|
323
325
|
results?: ParseOptions[] | PerformanceParseOptions[] | CustomResultOptions[];
|