@itutoring/itutoring_application_js_api 1.6.36 → 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.
@@ -143,10 +143,11 @@ class ReservationSystem
143
143
  * @param {*} msg
144
144
  * @param {*} place must be PlaceID !
145
145
  */
146
- static async SendRequest(name, email, tel, msg, place)
146
+ static async SendRequest(fname, lname, email, tel, msg, place)
147
147
  {
148
148
  await APIController.Post(this.#MODULE, this.#SEND_REQUEST, {
149
- "name": name,
149
+ "fname": fname,
150
+ "lname": lname,
150
151
  "email": email,
151
152
  "tel": tel,
152
153
  "msg": msg,
@@ -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.36",
3
+ "version": "1.6.38",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",