@itutoring/itutoring_application_js_api 1.6.17 → 1.6.19

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.
@@ -34,6 +34,15 @@ class TableExplorer
34
34
  static #SEARCH = "Search";
35
35
  static #ADD_FILTER = "AddFilter";
36
36
  static #RESET_FILTER = "ResetFilter";
37
+ static #ADD_SPECIAL_FILTER = "AddSpecialFilter";
38
+
39
+ static async addSpecialFilter(token, filter)
40
+ {
41
+ await APIController.Post(this.#MODULE, this.#ADD_SPECIAL_FILTER, {
42
+ 'token': token,
43
+ 'filter': filter,
44
+ });
45
+ }
37
46
 
38
47
  static async createInquiryExplorer()
39
48
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.6.17",
3
+ "version": "1.6.19",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",