@itutoring/itutoring_application_js_api 1.1.29 → 1.1.30

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.
@@ -8,7 +8,7 @@ class CustomerEduPortal
8
8
 
9
9
  static #GET_ALL_EVENTS = "GetAllEvents";
10
10
  static #CREATE_EVENT = "CreateEvent";
11
- static #ADD_GUESTS = "AddGuests";
11
+ static #SET_GUESTS = "SetGuests";
12
12
  static #OPEN_CONFERENCE = "OpenConference";
13
13
  static #MAKE_CONFERENCE_PRIVATE = "MakeConferencePrivate";
14
14
  static #UPDATE_PASSCODE = "UpdatePassCode";
@@ -47,9 +47,9 @@ class CustomerEduPortal
47
47
  return eventObj;
48
48
  }
49
49
 
50
- static async AddGuests(eventId, guests)
50
+ static async SetGuests(eventId, guests)
51
51
  {
52
- var event = await APIController.Post(this.#MODULE, this.#ADD_GUESTS, {
52
+ var event = await APIController.Post(this.#MODULE, this.#SET_GUESTS, {
53
53
  "eventId": eventId,
54
54
  "guests": JSON.stringify(guests),
55
55
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.1.29",
3
+ "version": "1.1.30",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",