@saritasa/renewaire-frontend-sdk 0.4.0 → 0.5.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
|
@@ -2648,6 +2648,49 @@ class UsersApiService extends BaseService {
|
|
|
2648
2648
|
reportProgress: reportProgress,
|
|
2649
2649
|
});
|
|
2650
2650
|
}
|
|
2651
|
+
usersGetUserProfile(requestParameters, observe = "body", reportProgress = false, options) {
|
|
2652
|
+
const userId = requestParameters?.userId;
|
|
2653
|
+
if (userId === null || userId === undefined) {
|
|
2654
|
+
throw new Error("Required parameter userId was null or undefined when calling usersGetUserProfile.");
|
|
2655
|
+
}
|
|
2656
|
+
let localVarHeaders = this.defaultHeaders;
|
|
2657
|
+
// authentication (Bearer) required
|
|
2658
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
2659
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
2660
|
+
this.configuration.selectHeaderAccept([
|
|
2661
|
+
"text/plain",
|
|
2662
|
+
"application/json",
|
|
2663
|
+
"text/json",
|
|
2664
|
+
]);
|
|
2665
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
2666
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
2667
|
+
}
|
|
2668
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
2669
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
2670
|
+
let responseType_ = "json";
|
|
2671
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
2672
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
2673
|
+
responseType_ = "text";
|
|
2674
|
+
}
|
|
2675
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
2676
|
+
responseType_ = "json";
|
|
2677
|
+
}
|
|
2678
|
+
else {
|
|
2679
|
+
responseType_ = "blob";
|
|
2680
|
+
}
|
|
2681
|
+
}
|
|
2682
|
+
let localVarPath = `/api/users/${this.configuration.encodeParam({ name: "userId", value: userId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32" })}`;
|
|
2683
|
+
const { basePath, withCredentials } = this.configuration;
|
|
2684
|
+
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
2685
|
+
context: localVarHttpContext,
|
|
2686
|
+
responseType: responseType_,
|
|
2687
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
2688
|
+
headers: localVarHeaders,
|
|
2689
|
+
observe: observe,
|
|
2690
|
+
transferCache: localVarTransferCache,
|
|
2691
|
+
reportProgress: reportProgress,
|
|
2692
|
+
});
|
|
2693
|
+
}
|
|
2651
2694
|
usersRequestChangeEmail(requestParameters, observe = "body", reportProgress = false, options) {
|
|
2652
2695
|
const requestChangeEmailCommand = requestParameters?.requestChangeEmailCommand;
|
|
2653
2696
|
let localVarHeaders = this.defaultHeaders;
|
|
@@ -2966,6 +3009,196 @@ class UsersApiService extends BaseService {
|
|
|
2966
3009
|
reportProgress: reportProgress,
|
|
2967
3010
|
});
|
|
2968
3011
|
}
|
|
3012
|
+
usersUpdateUserPreferences(requestParameters, observe = "body", reportProgress = false, options) {
|
|
3013
|
+
const userId = requestParameters?.userId;
|
|
3014
|
+
if (userId === null || userId === undefined) {
|
|
3015
|
+
throw new Error("Required parameter userId was null or undefined when calling usersUpdateUserPreferences.");
|
|
3016
|
+
}
|
|
3017
|
+
const saveUserPreferencesDto = requestParameters?.saveUserPreferencesDto;
|
|
3018
|
+
let localVarHeaders = this.defaultHeaders;
|
|
3019
|
+
// authentication (Bearer) required
|
|
3020
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
3021
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
3022
|
+
this.configuration.selectHeaderAccept([
|
|
3023
|
+
"text/plain",
|
|
3024
|
+
"application/json",
|
|
3025
|
+
"text/json",
|
|
3026
|
+
]);
|
|
3027
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
3028
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
3029
|
+
}
|
|
3030
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
3031
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
3032
|
+
// to determine the Content-Type header
|
|
3033
|
+
const consumes = [
|
|
3034
|
+
"application/json",
|
|
3035
|
+
"text/json",
|
|
3036
|
+
"application/*+json",
|
|
3037
|
+
];
|
|
3038
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
3039
|
+
if (httpContentTypeSelected !== undefined) {
|
|
3040
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
3041
|
+
}
|
|
3042
|
+
let responseType_ = "json";
|
|
3043
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
3044
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
3045
|
+
responseType_ = "text";
|
|
3046
|
+
}
|
|
3047
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
3048
|
+
responseType_ = "json";
|
|
3049
|
+
}
|
|
3050
|
+
else {
|
|
3051
|
+
responseType_ = "blob";
|
|
3052
|
+
}
|
|
3053
|
+
}
|
|
3054
|
+
let localVarPath = `/api/users/${this.configuration.encodeParam({ name: "userId", value: userId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32" })}/preferences`;
|
|
3055
|
+
const { basePath, withCredentials } = this.configuration;
|
|
3056
|
+
return this.httpClient.request("put", `${basePath}${localVarPath}`, {
|
|
3057
|
+
context: localVarHttpContext,
|
|
3058
|
+
body: saveUserPreferencesDto,
|
|
3059
|
+
responseType: responseType_,
|
|
3060
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
3061
|
+
headers: localVarHeaders,
|
|
3062
|
+
observe: observe,
|
|
3063
|
+
transferCache: localVarTransferCache,
|
|
3064
|
+
reportProgress: reportProgress,
|
|
3065
|
+
});
|
|
3066
|
+
}
|
|
3067
|
+
usersUpdateUserProfile(requestParameters, observe = "body", reportProgress = false, options) {
|
|
3068
|
+
const userId = requestParameters?.userId;
|
|
3069
|
+
if (userId === null || userId === undefined) {
|
|
3070
|
+
throw new Error("Required parameter userId was null or undefined when calling usersUpdateUserProfile.");
|
|
3071
|
+
}
|
|
3072
|
+
const contactInformationFirstName = requestParameters?.contactInformationFirstName;
|
|
3073
|
+
if (contactInformationFirstName === null ||
|
|
3074
|
+
contactInformationFirstName === undefined) {
|
|
3075
|
+
throw new Error("Required parameter contactInformationFirstName was null or undefined when calling usersUpdateUserProfile.");
|
|
3076
|
+
}
|
|
3077
|
+
const contactInformationLastName = requestParameters?.contactInformationLastName;
|
|
3078
|
+
if (contactInformationLastName === null ||
|
|
3079
|
+
contactInformationLastName === undefined) {
|
|
3080
|
+
throw new Error("Required parameter contactInformationLastName was null or undefined when calling usersUpdateUserProfile.");
|
|
3081
|
+
}
|
|
3082
|
+
const contactInformationCompany = requestParameters?.contactInformationCompany;
|
|
3083
|
+
if (contactInformationCompany === null ||
|
|
3084
|
+
contactInformationCompany === undefined) {
|
|
3085
|
+
throw new Error("Required parameter contactInformationCompany was null or undefined when calling usersUpdateUserProfile.");
|
|
3086
|
+
}
|
|
3087
|
+
const contactInformationTitle = requestParameters?.contactInformationTitle;
|
|
3088
|
+
if (contactInformationTitle === null ||
|
|
3089
|
+
contactInformationTitle === undefined) {
|
|
3090
|
+
throw new Error("Required parameter contactInformationTitle was null or undefined when calling usersUpdateUserProfile.");
|
|
3091
|
+
}
|
|
3092
|
+
const contactInformationWorkPhoneNumber = requestParameters?.contactInformationWorkPhoneNumber;
|
|
3093
|
+
if (contactInformationWorkPhoneNumber === null ||
|
|
3094
|
+
contactInformationWorkPhoneNumber === undefined) {
|
|
3095
|
+
throw new Error("Required parameter contactInformationWorkPhoneNumber was null or undefined when calling usersUpdateUserProfile.");
|
|
3096
|
+
}
|
|
3097
|
+
const addressStreet1 = requestParameters?.addressStreet1;
|
|
3098
|
+
if (addressStreet1 === null || addressStreet1 === undefined) {
|
|
3099
|
+
throw new Error("Required parameter addressStreet1 was null or undefined when calling usersUpdateUserProfile.");
|
|
3100
|
+
}
|
|
3101
|
+
const contactInformationWorkPhoneNumberExt = requestParameters?.contactInformationWorkPhoneNumberExt;
|
|
3102
|
+
const contactInformationMobilePhoneNumber = requestParameters?.contactInformationMobilePhoneNumber;
|
|
3103
|
+
const addressStreet2 = requestParameters?.addressStreet2;
|
|
3104
|
+
const avatar = requestParameters?.avatar;
|
|
3105
|
+
let localVarHeaders = this.defaultHeaders;
|
|
3106
|
+
// authentication (Bearer) required
|
|
3107
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
3108
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
3109
|
+
this.configuration.selectHeaderAccept([
|
|
3110
|
+
"text/plain",
|
|
3111
|
+
"application/json",
|
|
3112
|
+
"text/json",
|
|
3113
|
+
]);
|
|
3114
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
3115
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
3116
|
+
}
|
|
3117
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
3118
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
3119
|
+
// to determine the Content-Type header
|
|
3120
|
+
const consumes = ["multipart/form-data"];
|
|
3121
|
+
const canConsumeForm = this.canConsumeForm(consumes);
|
|
3122
|
+
let localVarFormParams;
|
|
3123
|
+
let localVarUseForm = false;
|
|
3124
|
+
let localVarConvertFormParamsToString = false;
|
|
3125
|
+
// use FormData to transmit files using content-type "multipart/form-data"
|
|
3126
|
+
// see https://stackoverflow.com/questions/4007969/application-x-www-form-urlencoded-or-multipart-form-data
|
|
3127
|
+
localVarUseForm = canConsumeForm;
|
|
3128
|
+
if (localVarUseForm) {
|
|
3129
|
+
localVarFormParams = new FormData();
|
|
3130
|
+
}
|
|
3131
|
+
else {
|
|
3132
|
+
localVarFormParams = new HttpParams({ encoder: this.encoder });
|
|
3133
|
+
}
|
|
3134
|
+
if (contactInformationFirstName !== undefined) {
|
|
3135
|
+
localVarFormParams =
|
|
3136
|
+
localVarFormParams.append("ContactInformation.FirstName", contactInformationFirstName) || localVarFormParams;
|
|
3137
|
+
}
|
|
3138
|
+
if (contactInformationLastName !== undefined) {
|
|
3139
|
+
localVarFormParams =
|
|
3140
|
+
localVarFormParams.append("ContactInformation.LastName", contactInformationLastName) || localVarFormParams;
|
|
3141
|
+
}
|
|
3142
|
+
if (contactInformationCompany !== undefined) {
|
|
3143
|
+
localVarFormParams =
|
|
3144
|
+
localVarFormParams.append("ContactInformation.Company", contactInformationCompany) || localVarFormParams;
|
|
3145
|
+
}
|
|
3146
|
+
if (contactInformationTitle !== undefined) {
|
|
3147
|
+
localVarFormParams =
|
|
3148
|
+
localVarFormParams.append("ContactInformation.Title", contactInformationTitle) || localVarFormParams;
|
|
3149
|
+
}
|
|
3150
|
+
if (contactInformationWorkPhoneNumber !== undefined) {
|
|
3151
|
+
localVarFormParams =
|
|
3152
|
+
localVarFormParams.append("ContactInformation.WorkPhoneNumber", contactInformationWorkPhoneNumber) || localVarFormParams;
|
|
3153
|
+
}
|
|
3154
|
+
if (contactInformationWorkPhoneNumberExt !== undefined) {
|
|
3155
|
+
localVarFormParams =
|
|
3156
|
+
localVarFormParams.append("ContactInformation.WorkPhoneNumberExt", contactInformationWorkPhoneNumberExt) || localVarFormParams;
|
|
3157
|
+
}
|
|
3158
|
+
if (contactInformationMobilePhoneNumber !== undefined) {
|
|
3159
|
+
localVarFormParams =
|
|
3160
|
+
localVarFormParams.append("ContactInformation.MobilePhoneNumber", contactInformationMobilePhoneNumber) || localVarFormParams;
|
|
3161
|
+
}
|
|
3162
|
+
if (addressStreet1 !== undefined) {
|
|
3163
|
+
localVarFormParams =
|
|
3164
|
+
localVarFormParams.append("Address.Street1", addressStreet1) || localVarFormParams;
|
|
3165
|
+
}
|
|
3166
|
+
if (addressStreet2 !== undefined) {
|
|
3167
|
+
localVarFormParams =
|
|
3168
|
+
localVarFormParams.append("Address.Street2", addressStreet2) || localVarFormParams;
|
|
3169
|
+
}
|
|
3170
|
+
if (avatar !== undefined) {
|
|
3171
|
+
localVarFormParams =
|
|
3172
|
+
localVarFormParams.append("Avatar", avatar) ||
|
|
3173
|
+
localVarFormParams;
|
|
3174
|
+
}
|
|
3175
|
+
let responseType_ = "json";
|
|
3176
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
3177
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
3178
|
+
responseType_ = "text";
|
|
3179
|
+
}
|
|
3180
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
3181
|
+
responseType_ = "json";
|
|
3182
|
+
}
|
|
3183
|
+
else {
|
|
3184
|
+
responseType_ = "blob";
|
|
3185
|
+
}
|
|
3186
|
+
}
|
|
3187
|
+
let localVarPath = `/api/users/${this.configuration.encodeParam({ name: "userId", value: userId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32" })}`;
|
|
3188
|
+
const { basePath, withCredentials } = this.configuration;
|
|
3189
|
+
return this.httpClient.request("put", `${basePath}${localVarPath}`, {
|
|
3190
|
+
context: localVarHttpContext,
|
|
3191
|
+
body: localVarConvertFormParamsToString
|
|
3192
|
+
? localVarFormParams.toString()
|
|
3193
|
+
: localVarFormParams,
|
|
3194
|
+
responseType: responseType_,
|
|
3195
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
3196
|
+
headers: localVarHeaders,
|
|
3197
|
+
observe: observe,
|
|
3198
|
+
transferCache: localVarTransferCache,
|
|
3199
|
+
reportProgress: reportProgress,
|
|
3200
|
+
});
|
|
3201
|
+
}
|
|
2969
3202
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UsersApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2970
3203
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UsersApiService, providedIn: "root" });
|
|
2971
3204
|
}
|
|
@@ -3168,6 +3401,35 @@ var DesignWeatherMode;
|
|
|
3168
3401
|
* Do not edit the class manually.
|
|
3169
3402
|
*/
|
|
3170
3403
|
|
|
3404
|
+
/**
|
|
3405
|
+
* RenewAire CORES API
|
|
3406
|
+
*
|
|
3407
|
+
* Contact: renewaire@saritasa.com
|
|
3408
|
+
*
|
|
3409
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3410
|
+
* https://openapi-generator.tech
|
|
3411
|
+
* Do not edit the class manually.
|
|
3412
|
+
*/
|
|
3413
|
+
|
|
3414
|
+
/**
|
|
3415
|
+
* RenewAire CORES API
|
|
3416
|
+
*
|
|
3417
|
+
* Contact: renewaire@saritasa.com
|
|
3418
|
+
*
|
|
3419
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3420
|
+
* https://openapi-generator.tech
|
|
3421
|
+
* Do not edit the class manually.
|
|
3422
|
+
*/
|
|
3423
|
+
/**
|
|
3424
|
+
* Language<br />0 = English<br />1 = Spanish<br />2 = French
|
|
3425
|
+
*/
|
|
3426
|
+
var Language;
|
|
3427
|
+
(function (Language) {
|
|
3428
|
+
Language["English"] = "English";
|
|
3429
|
+
Language["Spanish"] = "Spanish";
|
|
3430
|
+
Language["French"] = "French";
|
|
3431
|
+
})(Language || (Language = {}));
|
|
3432
|
+
|
|
3171
3433
|
/**
|
|
3172
3434
|
* RenewAire CORES API
|
|
3173
3435
|
*
|
|
@@ -3369,6 +3631,27 @@ var SaveUserDesignConditionsDtoCoolingDesignBasisEnum;
|
|
|
3369
3631
|
SaveUserDesignConditionsDtoCoolingDesignBasisEnum["Dehumidification"] = "Dehumidification";
|
|
3370
3632
|
})(SaveUserDesignConditionsDtoCoolingDesignBasisEnum || (SaveUserDesignConditionsDtoCoolingDesignBasisEnum = {}));
|
|
3371
3633
|
|
|
3634
|
+
/**
|
|
3635
|
+
* RenewAire CORES API
|
|
3636
|
+
*
|
|
3637
|
+
* Contact: renewaire@saritasa.com
|
|
3638
|
+
*
|
|
3639
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3640
|
+
* https://openapi-generator.tech
|
|
3641
|
+
* Do not edit the class manually.
|
|
3642
|
+
*/
|
|
3643
|
+
var SaveUserPreferencesDtoLangaugeEnum;
|
|
3644
|
+
(function (SaveUserPreferencesDtoLangaugeEnum) {
|
|
3645
|
+
SaveUserPreferencesDtoLangaugeEnum["English"] = "English";
|
|
3646
|
+
SaveUserPreferencesDtoLangaugeEnum["Spanish"] = "Spanish";
|
|
3647
|
+
SaveUserPreferencesDtoLangaugeEnum["French"] = "French";
|
|
3648
|
+
})(SaveUserPreferencesDtoLangaugeEnum || (SaveUserPreferencesDtoLangaugeEnum = {}));
|
|
3649
|
+
var SaveUserPreferencesDtoUnitSystemEnum;
|
|
3650
|
+
(function (SaveUserPreferencesDtoUnitSystemEnum) {
|
|
3651
|
+
SaveUserPreferencesDtoUnitSystemEnum["Imperial"] = "Imperial";
|
|
3652
|
+
SaveUserPreferencesDtoUnitSystemEnum["Metric"] = "Metric";
|
|
3653
|
+
})(SaveUserPreferencesDtoUnitSystemEnum || (SaveUserPreferencesDtoUnitSystemEnum = {}));
|
|
3654
|
+
|
|
3372
3655
|
/**
|
|
3373
3656
|
* RenewAire CORES API
|
|
3374
3657
|
*
|
|
@@ -3464,6 +3747,14 @@ var SearchRegionDtoLevelEnum;
|
|
|
3464
3747
|
* https://openapi-generator.tech
|
|
3465
3748
|
* Do not edit the class manually.
|
|
3466
3749
|
*/
|
|
3750
|
+
/**
|
|
3751
|
+
* UnitSystem<br />0 = Imperial<br />1 = Metric
|
|
3752
|
+
*/
|
|
3753
|
+
var UnitSystem;
|
|
3754
|
+
(function (UnitSystem) {
|
|
3755
|
+
UnitSystem["Imperial"] = "Imperial";
|
|
3756
|
+
UnitSystem["Metric"] = "Metric";
|
|
3757
|
+
})(UnitSystem || (UnitSystem = {}));
|
|
3467
3758
|
|
|
3468
3759
|
/**
|
|
3469
3760
|
* RenewAire CORES API
|
|
@@ -3475,6 +3766,33 @@ var SearchRegionDtoLevelEnum;
|
|
|
3475
3766
|
* Do not edit the class manually.
|
|
3476
3767
|
*/
|
|
3477
3768
|
|
|
3769
|
+
/**
|
|
3770
|
+
* RenewAire CORES API
|
|
3771
|
+
*
|
|
3772
|
+
* Contact: renewaire@saritasa.com
|
|
3773
|
+
*
|
|
3774
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3775
|
+
* https://openapi-generator.tech
|
|
3776
|
+
* Do not edit the class manually.
|
|
3777
|
+
*/
|
|
3778
|
+
|
|
3779
|
+
/**
|
|
3780
|
+
* RenewAire CORES API
|
|
3781
|
+
*
|
|
3782
|
+
* Contact: renewaire@saritasa.com
|
|
3783
|
+
*
|
|
3784
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3785
|
+
* https://openapi-generator.tech
|
|
3786
|
+
* Do not edit the class manually.
|
|
3787
|
+
*/
|
|
3788
|
+
var UserAddressDtoCountryEnum;
|
|
3789
|
+
(function (UserAddressDtoCountryEnum) {
|
|
3790
|
+
UserAddressDtoCountryEnum["Unknown"] = "Unknown";
|
|
3791
|
+
UserAddressDtoCountryEnum["UnitedStates"] = "UnitedStates";
|
|
3792
|
+
UserAddressDtoCountryEnum["Canada"] = "Canada";
|
|
3793
|
+
UserAddressDtoCountryEnum["Mexico"] = "Mexico";
|
|
3794
|
+
})(UserAddressDtoCountryEnum || (UserAddressDtoCountryEnum = {}));
|
|
3795
|
+
|
|
3478
3796
|
var UserDesignConditionsDtoCoolingDesignBasisEnum;
|
|
3479
3797
|
(function (UserDesignConditionsDtoCoolingDesignBasisEnum) {
|
|
3480
3798
|
UserDesignConditionsDtoCoolingDesignBasisEnum["Cooling"] = "Cooling";
|
|
@@ -3522,6 +3840,37 @@ var UserPermissionDtoPermissionEnum;
|
|
|
3522
3840
|
* https://openapi-generator.tech
|
|
3523
3841
|
* Do not edit the class manually.
|
|
3524
3842
|
*/
|
|
3843
|
+
var UserPreferencesDtoLangaugeEnum;
|
|
3844
|
+
(function (UserPreferencesDtoLangaugeEnum) {
|
|
3845
|
+
UserPreferencesDtoLangaugeEnum["English"] = "English";
|
|
3846
|
+
UserPreferencesDtoLangaugeEnum["Spanish"] = "Spanish";
|
|
3847
|
+
UserPreferencesDtoLangaugeEnum["French"] = "French";
|
|
3848
|
+
})(UserPreferencesDtoLangaugeEnum || (UserPreferencesDtoLangaugeEnum = {}));
|
|
3849
|
+
var UserPreferencesDtoUnitSystemEnum;
|
|
3850
|
+
(function (UserPreferencesDtoUnitSystemEnum) {
|
|
3851
|
+
UserPreferencesDtoUnitSystemEnum["Imperial"] = "Imperial";
|
|
3852
|
+
UserPreferencesDtoUnitSystemEnum["Metric"] = "Metric";
|
|
3853
|
+
})(UserPreferencesDtoUnitSystemEnum || (UserPreferencesDtoUnitSystemEnum = {}));
|
|
3854
|
+
|
|
3855
|
+
/**
|
|
3856
|
+
* RenewAire CORES API
|
|
3857
|
+
*
|
|
3858
|
+
* Contact: renewaire@saritasa.com
|
|
3859
|
+
*
|
|
3860
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3861
|
+
* https://openapi-generator.tech
|
|
3862
|
+
* Do not edit the class manually.
|
|
3863
|
+
*/
|
|
3864
|
+
|
|
3865
|
+
var UserProfileSettingsDtoRegistrationStatusEnum;
|
|
3866
|
+
(function (UserProfileSettingsDtoRegistrationStatusEnum) {
|
|
3867
|
+
UserProfileSettingsDtoRegistrationStatusEnum["EmailVerification"] = "EmailVerification";
|
|
3868
|
+
UserProfileSettingsDtoRegistrationStatusEnum["SetPassword"] = "SetPassword";
|
|
3869
|
+
UserProfileSettingsDtoRegistrationStatusEnum["SetProfile"] = "SetProfile";
|
|
3870
|
+
UserProfileSettingsDtoRegistrationStatusEnum["SetAddress"] = "SetAddress";
|
|
3871
|
+
UserProfileSettingsDtoRegistrationStatusEnum["SetOccupation"] = "SetOccupation";
|
|
3872
|
+
UserProfileSettingsDtoRegistrationStatusEnum["Completed"] = "Completed";
|
|
3873
|
+
})(UserProfileSettingsDtoRegistrationStatusEnum || (UserProfileSettingsDtoRegistrationStatusEnum = {}));
|
|
3525
3874
|
|
|
3526
3875
|
class ApiModule {
|
|
3527
3876
|
static forRoot(configurationFactory) {
|
|
@@ -3575,5 +3924,5 @@ function provideApi(configOrBasePath) {
|
|
|
3575
3924
|
* Generated bundle index. Do not edit.
|
|
3576
3925
|
*/
|
|
3577
3926
|
|
|
3578
|
-
export { APIS, AddressCountry, AddressDtoCountryEnum, ApiModule, AuthApiService, BASE_PATH, COLLECTION_FORMATS, Configuration, CoolingDesignBasis, CurrentUserDtoRegistrationStatusEnum, DesignWeatherMode, Permission, PermissionBundlesApiService, PermissionsApiService, RegionDtoLevelEnum, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, SaveUserDesignConditionsDtoCoolingDesignBasisEnum, SearchRegionDtoLevelEnum, UserDesignConditionsApiService, UserDesignConditionsDtoCoolingDesignBasisEnum, UserDesignWeatherConditionDtoDesignWeatherModeEnum, UserPermissionDtoPermissionEnum, UsersApiService, provideApi };
|
|
3927
|
+
export { APIS, AddressCountry, AddressDtoCountryEnum, ApiModule, AuthApiService, BASE_PATH, COLLECTION_FORMATS, Configuration, CoolingDesignBasis, CurrentUserDtoRegistrationStatusEnum, DesignWeatherMode, Language, Permission, PermissionBundlesApiService, PermissionsApiService, RegionDtoLevelEnum, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, SaveUserDesignConditionsDtoCoolingDesignBasisEnum, SaveUserPreferencesDtoLangaugeEnum, SaveUserPreferencesDtoUnitSystemEnum, SearchRegionDtoLevelEnum, UnitSystem, UserAddressDtoCountryEnum, UserDesignConditionsApiService, UserDesignConditionsDtoCoolingDesignBasisEnum, UserDesignWeatherConditionDtoDesignWeatherModeEnum, UserPermissionDtoPermissionEnum, UserPreferencesDtoLangaugeEnum, UserPreferencesDtoUnitSystemEnum, UserProfileSettingsDtoRegistrationStatusEnum, UsersApiService, provideApi };
|
|
3579
3928
|
//# sourceMappingURL=saritasa-renewaire-frontend-sdk.mjs.map
|