@bitbar/cloud-api-client 1.0.25 → 1.0.27

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.
@@ -1,5 +1,6 @@
1
1
  export declare type Account = {
2
2
  activeServiceName: string;
3
+ comment: string;
3
4
  createTime: number;
4
5
  dedicatedDevicesCount: number;
5
6
  id: number;
@@ -1,3 +1,4 @@
1
+ import { Method } from 'axios';
1
2
  import { CollectionResponse } from './HTTP';
2
3
  export declare enum TestResult {
3
4
  PASSED = "PASSED",
@@ -5,18 +6,6 @@ export declare enum TestResult {
5
6
  SKIPPED = "SKIPPED",
6
7
  NOT_AVAILABLE = "NOT_AVAILABLE"
7
8
  }
8
- export declare enum TestStepType {
9
- ASSERTION = "ASSERTION",
10
- CLICK = "CLICK",
11
- CONFIG = "CONFIG",
12
- DRAG = "DRAG",
13
- INPUT = "INPUT",
14
- NAVIGATION = "NAVIGATION",
15
- OTHER = "OTHER",
16
- SCROLL = "SCROLL",
17
- UTIL = "UTIL",
18
- WAIT = "WAIT"
19
- }
20
9
  export declare type TestCaseRun = {
21
10
  className: string;
22
11
  createTime: number;
@@ -30,11 +19,12 @@ export declare type TestCaseRun = {
30
19
  suiteName: string;
31
20
  };
32
21
  export declare type TestCaseRunStep = {
33
- description: string;
34
22
  duration: number;
35
- errorMessage: string;
36
- fromActivity: string;
23
+ httpMethod: Uppercase<Method>;
37
24
  id: number;
38
- screenshots: any;
39
- type: TestStepType;
25
+ requestBody: string;
26
+ responseBody: string;
27
+ responseCode: number;
28
+ timestamp: number;
29
+ uri: string;
40
30
  };
@@ -1,4 +1,4 @@
1
- /* @bitbar/cloud-api-client v1.0.25 | Copyright 2024 (c) SmartBear Software and contributors | .git/blob/master/LICENSE */
1
+ /* @bitbar/cloud-api-client v1.0.27 | Copyright 2024 (c) SmartBear Software and contributors | .git/blob/master/LICENSE */
2
2
  (function (global, factory) {
3
3
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('axios'), require('@bitbar/finka'), require('qs'), require('node-abort-controller')) :
4
4
  typeof define === 'function' && define.amd ? define(['exports', 'axios', '@bitbar/finka', 'qs', 'node-abort-controller'], factory) :
@@ -10,7 +10,7 @@
10
10
  var axios__default = /*#__PURE__*/_interopDefaultLegacy(axios);
11
11
  var finka__default = /*#__PURE__*/_interopDefaultLegacy(finka);
12
12
 
13
- var version = "1.0.25";
13
+ var version = "1.0.27";
14
14
 
15
15
  /******************************************************************************
16
16
  Copyright (c) Microsoft Corporation.
@@ -2228,19 +2228,6 @@
2228
2228
  TestResult["SKIPPED"] = "SKIPPED";
2229
2229
  TestResult["NOT_AVAILABLE"] = "NOT_AVAILABLE";
2230
2230
  })(exports.TestResult || (exports.TestResult = {}));
2231
- exports.TestStepType = void 0;
2232
- (function (TestStepType) {
2233
- TestStepType["ASSERTION"] = "ASSERTION";
2234
- TestStepType["CLICK"] = "CLICK";
2235
- TestStepType["CONFIG"] = "CONFIG";
2236
- TestStepType["DRAG"] = "DRAG";
2237
- TestStepType["INPUT"] = "INPUT";
2238
- TestStepType["NAVIGATION"] = "NAVIGATION";
2239
- TestStepType["OTHER"] = "OTHER";
2240
- TestStepType["SCROLL"] = "SCROLL";
2241
- TestStepType["UTIL"] = "UTIL";
2242
- TestStepType["WAIT"] = "WAIT";
2243
- })(exports.TestStepType || (exports.TestStepType = {}));
2244
2231
 
2245
2232
  exports.LimitationType = void 0;
2246
2233
  (function (LimitationType) {