complexqa_frontend_core 1.10.10 → 1.10.11

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.10",
3
+ "version": "1.10.11",
4
4
  "description": "core of web ",
5
5
  "type": "module",
6
6
  "exports": {
@@ -40,6 +40,7 @@ export class Api
40
40
  host_api = false;
41
41
  frontend_host = false;
42
42
  general_domain = false;
43
+ site_section = false;
43
44
 
44
45
 
45
46
  /**
@@ -88,6 +89,12 @@ export class Api
88
89
  this.dev_stage_config = init_options.dev_stage_config;
89
90
  }
90
91
 
92
+
93
+ if (init_options.site_section)
94
+ {
95
+ this.site_section = init_options.site_section;
96
+ }
97
+
91
98
  this.init_options = init_options;
92
99
  this.constructor._instance = this;
93
100
 
@@ -133,6 +140,6 @@ export class Api
133
140
  this.test_suite = new TestSuiteApi(payload);
134
141
  this.test_run = new TestRunApi(payload);
135
142
  this.test_run_result = new TestRunResultApi(payload);
136
- this.user_profile = new UserProfileApi(payload);
143
+ this.user_profile = new UserProfileApi(payload);
137
144
  }
138
145
  }
@@ -4,6 +4,7 @@ import { is_array } from "../utils/utils.js";
4
4
  import { typeTeam } from "../types/family_elements/typeTeam.js";
5
5
 
6
6
  /**
7
+ * Сервис данных по текущему пользователю
7
8
  *
8
9
  * @version v.1.1 (27/07/2025)
9
10
  */