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
package/publish/api/index.js
CHANGED
|
@@ -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
|
|
143
|
+
this.user_profile = new UserProfileApi(payload);
|
|
137
144
|
}
|
|
138
145
|
}
|