@itutoring/itutoring_application_js_api 1.17.4 → 1.17.5

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.
@@ -49,11 +49,12 @@ class Checkout
49
49
  return res;
50
50
  }
51
51
 
52
- static async placeOrder(billingInfo, customerId = null)
52
+ static async placeOrder(billingInfo, customerId = null, note = "")
53
53
  {
54
54
  var res = await APIController.Post(this.#MODULE, this.#PLACE_ORDER, {
55
55
  "billingInfo": JSON.stringify(billingInfo),
56
- "customerId": customerId
56
+ "customerId": customerId,
57
+ "note": note
57
58
  });
58
59
  return res;
59
60
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.17.4",
3
+ "version": "1.17.5",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",