@itutoring/itutoring_application_js_api 1.6.37 → 1.6.38

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.
@@ -36,6 +36,15 @@ class TableExplorer
36
36
  static #SET_SPECIAL_FILTER = "SetSpecialFilter";
37
37
  static #REMOVE_FILTER = "RemoveFilter";
38
38
  static #GET_NUMBER_OF_ENTRIES = "GetNumberOfEntries";
39
+ static #SET_SPECIAL_FILTER = "SetSpecialFilter";
40
+
41
+ static async setSpecialFilter(token, filter)
42
+ {
43
+ await APIController.Post(this.#MODULE, this.#SET_SPECIAL_FILTER, {
44
+ 'token': token,
45
+ 'filter': filter,
46
+ });
47
+ }
39
48
 
40
49
  static async getNumberOfEntries(token)
41
50
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.6.37",
3
+ "version": "1.6.38",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",