@saritasa/renewaire-frontend-sdk 0.60.2 → 0.61.1
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
|
@@ -2322,9 +2322,9 @@ class RepTerritoriesApiService extends BaseService {
|
|
|
2322
2322
|
if (website === null || website === undefined) {
|
|
2323
2323
|
throw new Error("Required parameter website was null or undefined when calling repTerritoriesCreateRepTerritory.");
|
|
2324
2324
|
}
|
|
2325
|
-
const
|
|
2326
|
-
if (
|
|
2327
|
-
throw new Error("Required parameter
|
|
2325
|
+
const addressCountryName = requestParameters?.addressCountryName;
|
|
2326
|
+
if (addressCountryName === null || addressCountryName === undefined) {
|
|
2327
|
+
throw new Error("Required parameter addressCountryName was null or undefined when calling repTerritoriesCreateRepTerritory.");
|
|
2328
2328
|
}
|
|
2329
2329
|
const addressAddress1 = requestParameters?.addressAddress1;
|
|
2330
2330
|
if (addressAddress1 === null || addressAddress1 === undefined) {
|
|
@@ -2416,9 +2416,9 @@ class RepTerritoriesApiService extends BaseService {
|
|
|
2416
2416
|
localVarFormParams.append("Website", website) ||
|
|
2417
2417
|
localVarFormParams;
|
|
2418
2418
|
}
|
|
2419
|
-
if (
|
|
2419
|
+
if (addressCountryName !== undefined) {
|
|
2420
2420
|
localVarFormParams =
|
|
2421
|
-
localVarFormParams.append("Address.
|
|
2421
|
+
localVarFormParams.append("Address.CountryName", addressCountryName) || localVarFormParams;
|
|
2422
2422
|
}
|
|
2423
2423
|
if (addressAddress1 !== undefined) {
|
|
2424
2424
|
localVarFormParams =
|
|
@@ -2808,9 +2808,10 @@ class RepTerritoriesApiService extends BaseService {
|
|
|
2808
2808
|
if (saveDtoWebsite === null || saveDtoWebsite === undefined) {
|
|
2809
2809
|
throw new Error("Required parameter saveDtoWebsite was null or undefined when calling repTerritoriesUpdateRepTerritory.");
|
|
2810
2810
|
}
|
|
2811
|
-
const
|
|
2812
|
-
if (
|
|
2813
|
-
|
|
2811
|
+
const saveDtoAddressCountryName = requestParameters?.saveDtoAddressCountryName;
|
|
2812
|
+
if (saveDtoAddressCountryName === null ||
|
|
2813
|
+
saveDtoAddressCountryName === undefined) {
|
|
2814
|
+
throw new Error("Required parameter saveDtoAddressCountryName was null or undefined when calling repTerritoriesUpdateRepTerritory.");
|
|
2814
2815
|
}
|
|
2815
2816
|
const saveDtoAddressAddress1 = requestParameters?.saveDtoAddressAddress1;
|
|
2816
2817
|
if (saveDtoAddressAddress1 === null ||
|
|
@@ -2900,9 +2901,9 @@ class RepTerritoriesApiService extends BaseService {
|
|
|
2900
2901
|
localVarFormParams =
|
|
2901
2902
|
localVarFormParams.append("SaveDto.Website", saveDtoWebsite) || localVarFormParams;
|
|
2902
2903
|
}
|
|
2903
|
-
if (
|
|
2904
|
+
if (saveDtoAddressCountryName !== undefined) {
|
|
2904
2905
|
localVarFormParams =
|
|
2905
|
-
localVarFormParams.append("SaveDto.Address.
|
|
2906
|
+
localVarFormParams.append("SaveDto.Address.CountryName", saveDtoAddressCountryName) || localVarFormParams;
|
|
2906
2907
|
}
|
|
2907
2908
|
if (saveDtoAddressAddress1 !== undefined) {
|
|
2908
2909
|
localVarFormParams =
|