@colijnit/transactionapi 261.1.25 → 261.1.26
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.
|
@@ -3949,10 +3949,13 @@ class TransactionAuth extends ione_api_transaction_1.IoneApiTransaction {
|
|
|
3949
3949
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data, backend_service_name_enum_1.BackendServiceName.DataService, showLoader);
|
|
3950
3950
|
}
|
|
3951
3951
|
getDefaultEmailAddressListForWorkOrder(transactionUUID, showLoader) {
|
|
3952
|
+
const params = {
|
|
3953
|
+
transactionUUID: transactionUUID
|
|
3954
|
+
};
|
|
3952
3955
|
const data = {
|
|
3953
3956
|
moduleName: module_name_enum_1.ModuleName.ReportingDocuments,
|
|
3954
3957
|
methodName: reporting_documents_method_enum_1.ReportingDocumentsMethod.GetDefaultEmailAddressListForWorkOrder,
|
|
3955
|
-
parameterValues:
|
|
3958
|
+
parameterValues: params,
|
|
3956
3959
|
refCursorAsArray: true,
|
|
3957
3960
|
};
|
|
3958
3961
|
return this._call(data_service_method_enum_1.DataServiceMethod.ExecuteMethod, data, backend_service_name_enum_1.BackendServiceName.DataService, showLoader);
|