@saritasa/renewaire-frontend-sdk 0.141.0 → 0.143.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
|
@@ -8321,16 +8321,13 @@ class UsersManagementApiService extends BaseService {
|
|
|
8321
8321
|
if (addressPostalCode === null || addressPostalCode === undefined) {
|
|
8322
8322
|
throw new Error("Required parameter addressPostalCode was null or undefined when calling usersManagementCreateUser.");
|
|
8323
8323
|
}
|
|
8324
|
-
const occupation = requestParameters?.occupation;
|
|
8325
|
-
if (occupation === null || occupation === undefined) {
|
|
8326
|
-
throw new Error("Required parameter occupation was null or undefined when calling usersManagementCreateUser.");
|
|
8327
|
-
}
|
|
8328
8324
|
const contactInformationWorkPhoneNumberExt = requestParameters?.contactInformationWorkPhoneNumberExt;
|
|
8329
8325
|
const contactInformationMobilePhoneNumber = requestParameters?.contactInformationMobilePhoneNumber;
|
|
8330
8326
|
const addressAddress2 = requestParameters?.addressAddress2;
|
|
8331
8327
|
const addressCity = requestParameters?.addressCity;
|
|
8332
8328
|
const addressCounty = requestParameters?.addressCounty;
|
|
8333
8329
|
const addressApartmentNumber = requestParameters?.addressApartmentNumber;
|
|
8330
|
+
const occupation = requestParameters?.occupation;
|
|
8334
8331
|
const companyLogo = requestParameters?.companyLogo;
|
|
8335
8332
|
const groupId = requestParameters?.groupId;
|
|
8336
8333
|
const repTerritoryId = requestParameters?.repTerritoryId;
|
|
@@ -8684,16 +8681,13 @@ class UsersManagementApiService extends BaseService {
|
|
|
8684
8681
|
if (addressPostalCode === null || addressPostalCode === undefined) {
|
|
8685
8682
|
throw new Error("Required parameter addressPostalCode was null or undefined when calling usersManagementUpdateUser.");
|
|
8686
8683
|
}
|
|
8687
|
-
const occupation = requestParameters?.occupation;
|
|
8688
|
-
if (occupation === null || occupation === undefined) {
|
|
8689
|
-
throw new Error("Required parameter occupation was null or undefined when calling usersManagementUpdateUser.");
|
|
8690
|
-
}
|
|
8691
8684
|
const contactInformationWorkPhoneNumberExt = requestParameters?.contactInformationWorkPhoneNumberExt;
|
|
8692
8685
|
const contactInformationMobilePhoneNumber = requestParameters?.contactInformationMobilePhoneNumber;
|
|
8693
8686
|
const addressAddress2 = requestParameters?.addressAddress2;
|
|
8694
8687
|
const addressCity = requestParameters?.addressCity;
|
|
8695
8688
|
const addressCounty = requestParameters?.addressCounty;
|
|
8696
8689
|
const addressApartmentNumber = requestParameters?.addressApartmentNumber;
|
|
8690
|
+
const occupation = requestParameters?.occupation;
|
|
8697
8691
|
const companyLogo = requestParameters?.companyLogo;
|
|
8698
8692
|
const shouldRemoveCompanyLogo = requestParameters?.shouldRemoveCompanyLogo;
|
|
8699
8693
|
const groupId = requestParameters?.groupId;
|