complexqa_frontend_core 1.6.1 → 1.6.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "complexqa_frontend_core",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "description": "core of web ",
5
5
  "type": "module",
6
6
  "exports": {
@@ -6,6 +6,7 @@ import { TestSuiteApi } from "./test_suite_api";
6
6
  import { TestCaseStepApi } from "./test_case_step_api.js";
7
7
  import { TeamManagementApi } from "./team_management_api.js";
8
8
  import { TeamMemberApi } from "./team_member_api.js";
9
+ import { TestRunApi } from "./test_run_api.js";
9
10
 
10
11
  /**
11
12
  * Обертка над axios
@@ -108,13 +109,14 @@ export class Api
108
109
 
109
110
  //echo({payload});
110
111
 
112
+ this.team_management = new TeamManagementApi(payload);
113
+ this.team_member = new TeamMemberApi(payload);
111
114
  this.test_plan = new TestPlanApi(payload);
112
115
  this.project = new ProjectApi(payload);
113
116
  this.service = new ServiceApi(payload);
114
117
  this.test_case = new TestCaseApi(payload);
115
118
  this.test_case_step = new TestCaseStepApi(payload);
116
119
  this.test_suite = new TestSuiteApi(payload);
117
- this.team_management = new TeamManagementApi(payload);
118
- this.team_member = new TeamMemberApi(payload);
120
+ this.test_run = new TestRunApi(payload);
119
121
  }
120
122
  }
@@ -13,6 +13,8 @@ export class typeTestRun extends familyTestDocumentation
13
13
  {
14
14
  test_run_id;
15
15
  test_run_name;
16
+ project_id;
17
+ team_id;
16
18
  test_run_description;
17
19
  milestone_id; /// ??
18
20
  assigned_to; // кому назначили выполнение, пока в той же таблице, только 1 член команды
@@ -28,6 +30,7 @@ export class typeTestRun extends familyTestDocumentation
28
30
 
29
31
  // логи запуска, окончания - отдельно
30
32
  primary_key = 'test_run_id';
33
+ api_key = 'test_run';
31
34
 
32
35
  available_enum_values = {
33
36
  test_run_status: [ 'PENDING', 'IN_PROGRESS', 'COMPLETED', 'CLOSED' ],