complexqa_frontend_core 1.10.6 → 1.10.8

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.10.6",
3
+ "version": "1.10.8",
4
4
  "description": "core of web ",
5
5
  "type": "module",
6
6
  "exports": {
@@ -129,7 +129,10 @@ export class typeTestCaseStep extends familyTestDocumentation
129
129
  element = this;
130
130
  }
131
131
 
132
- let payload = element
132
+ let payload = {
133
+ test_case_step_id: element.test_case_step_id
134
+ };
135
+
133
136
  if (typeof callback?.before === 'function')
134
137
  {
135
138
  callback?.before({ payload });
@@ -171,7 +174,9 @@ export class typeTestCaseStep extends familyTestDocumentation
171
174
  element = this;
172
175
  }
173
176
 
174
- let payload = element
177
+ let payload = {
178
+ test_case_step_id: element.test_case_step_id
179
+ };
175
180
  if (typeof callback?.before === 'function')
176
181
  {
177
182
  callback?.before({ payload });
@@ -14,6 +14,7 @@ export class typeTestRunResult extends familyTestDocumentation
14
14
  test_case_id;
15
15
  test_run_id;
16
16
  test_result_status;
17
+ assigned_to;
17
18
  //task_id; // надо ли?
18
19
  project_id;
19
20
  //functional_id; // надо ли?
@@ -36,6 +37,7 @@ export class typeTestRunResult extends familyTestDocumentation
36
37
  test_case_id : 'integer | require',
37
38
  test_run_id : 'integer | require',
38
39
  test_result_status : 'string | enum | require',
40
+ assigned_to : 'integer | optional',
39
41
  //task_id : 'integer | require',
40
42
  project_id : 'integer | require',
41
43
  //functional_id : 'integer | optional',