complexqa_frontend_core 1.12.1 → 1.12.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.12.1",
3
+ "version": "1.12.2",
4
4
  "description": "core of web ",
5
5
  "type": "module",
6
6
  "exports": {
package/publish/index.js CHANGED
@@ -19,6 +19,7 @@ export { typeTestAccount } from './types/family_elements/typeTestAccount.js'
19
19
  export { typeUser } from './types/family_elements/typeUser.js';
20
20
  export { typeTeam } from './types/family_elements/typeTeam.js';
21
21
  export { typeTeamMember } from './types/family_elements/typeTeamMember.js';
22
+ export {typeTeamTotalStatistic} from './types/family_contracts/typeTeamTotalStatistic.js';
22
23
 
23
24
  export { typeTask } from './types/family_elements/typeTask.js';
24
25
 
@@ -65,8 +65,8 @@ export class typeTask extends familyGeneralElement
65
65
  * @version v.0.1 (21/03/2026)
66
66
  * @returns {Promise<*>}
67
67
  */
68
- async get_current_user_tasks()
68
+ async get_current_user_tasks(payload)
69
69
  {
70
- return ApiService[ this.api_key ].get_current_user_tasks();
70
+ return ApiService[ this.api_key ].get_current_user_tasks(payload);
71
71
  }
72
72
  }