@itutoring/itutoring_application_js_api 1.13.6 → 1.13.7
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.
|
@@ -101,11 +101,12 @@ class InquiryCheckout
|
|
|
101
101
|
return res;
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
-
static async finishInquiry(inquiryId, additionalInfo)
|
|
104
|
+
static async finishInquiry(inquiryId, additionalInfo, silent = false)
|
|
105
105
|
{
|
|
106
106
|
var res = await APIController.Post(this.#MODULE, this.#FINISH_INQUIRY, {
|
|
107
107
|
'inquiryId': inquiryId,
|
|
108
|
-
'additionalInfo': JSON.stringify(additionalInfo)
|
|
108
|
+
'additionalInfo': JSON.stringify(additionalInfo),
|
|
109
|
+
'silent': silent
|
|
109
110
|
});
|
|
110
111
|
return res;
|
|
111
112
|
}
|