@saritasa/renewaire-frontend-sdk 0.162.0 → 0.163.0
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.
package/README.md
CHANGED
|
@@ -5544,6 +5544,7 @@ class RepTerritoriesApiService extends BaseService {
|
|
|
5544
5544
|
const addressCounty = requestParameters?.addressCounty;
|
|
5545
5545
|
const addressApartmentNumber = requestParameters?.addressApartmentNumber;
|
|
5546
5546
|
const managerGroupId = requestParameters?.managerGroupId;
|
|
5547
|
+
const csiSalesman = requestParameters?.csiSalesman;
|
|
5547
5548
|
let localVarHeaders = this.defaultHeaders;
|
|
5548
5549
|
// authentication (Bearer) required
|
|
5549
5550
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -5661,6 +5662,11 @@ class RepTerritoriesApiService extends BaseService {
|
|
|
5661
5662
|
localVarFormParams;
|
|
5662
5663
|
});
|
|
5663
5664
|
}
|
|
5665
|
+
if (csiSalesman !== undefined) {
|
|
5666
|
+
localVarFormParams =
|
|
5667
|
+
localVarFormParams.append("CsiSalesman", csiSalesman) ||
|
|
5668
|
+
localVarFormParams;
|
|
5669
|
+
}
|
|
5664
5670
|
let responseType_ = "json";
|
|
5665
5671
|
if (localVarHttpHeaderAcceptSelected) {
|
|
5666
5672
|
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
@@ -6097,6 +6103,7 @@ class RepTerritoriesApiService extends BaseService {
|
|
|
6097
6103
|
const saveDtoAddressCounty = requestParameters?.saveDtoAddressCounty;
|
|
6098
6104
|
const saveDtoAddressApartmentNumber = requestParameters?.saveDtoAddressApartmentNumber;
|
|
6099
6105
|
const saveDtoManagerGroupId = requestParameters?.saveDtoManagerGroupId;
|
|
6106
|
+
const saveDtoCsiSalesman = requestParameters?.saveDtoCsiSalesman;
|
|
6100
6107
|
const shouldRemovePicture = requestParameters?.shouldRemovePicture;
|
|
6101
6108
|
const repContacts = requestParameters?.repContacts;
|
|
6102
6109
|
let localVarHeaders = this.defaultHeaders;
|
|
@@ -6203,6 +6210,10 @@ class RepTerritoriesApiService extends BaseService {
|
|
|
6203
6210
|
localVarFormParams.append("SaveDto.SalesContactIds", element) || localVarFormParams;
|
|
6204
6211
|
});
|
|
6205
6212
|
}
|
|
6213
|
+
if (saveDtoCsiSalesman !== undefined) {
|
|
6214
|
+
localVarFormParams =
|
|
6215
|
+
localVarFormParams.append("SaveDto.CsiSalesman", saveDtoCsiSalesman) || localVarFormParams;
|
|
6216
|
+
}
|
|
6206
6217
|
if (isActive !== undefined) {
|
|
6207
6218
|
localVarFormParams =
|
|
6208
6219
|
localVarFormParams.append("IsActive", isActive) ||
|