@saritasa/renewaire-frontend-sdk 0.4.0 → 0.5.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
|
@@ -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,245 @@ 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
|
+
}
|
|
3202
|
+
usersVerifyResetPasswordToken(requestParameters, observe = "body", reportProgress = false, options) {
|
|
3203
|
+
const verifyResetPasswordTokenCommand = requestParameters?.verifyResetPasswordTokenCommand;
|
|
3204
|
+
let localVarHeaders = this.defaultHeaders;
|
|
3205
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
3206
|
+
this.configuration.selectHeaderAccept([
|
|
3207
|
+
"text/plain",
|
|
3208
|
+
"application/json",
|
|
3209
|
+
"text/json",
|
|
3210
|
+
]);
|
|
3211
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
3212
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
3213
|
+
}
|
|
3214
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
3215
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
3216
|
+
// to determine the Content-Type header
|
|
3217
|
+
const consumes = [
|
|
3218
|
+
"application/json",
|
|
3219
|
+
"text/json",
|
|
3220
|
+
"application/*+json",
|
|
3221
|
+
];
|
|
3222
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
3223
|
+
if (httpContentTypeSelected !== undefined) {
|
|
3224
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
3225
|
+
}
|
|
3226
|
+
let responseType_ = "json";
|
|
3227
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
3228
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
3229
|
+
responseType_ = "text";
|
|
3230
|
+
}
|
|
3231
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
3232
|
+
responseType_ = "json";
|
|
3233
|
+
}
|
|
3234
|
+
else {
|
|
3235
|
+
responseType_ = "blob";
|
|
3236
|
+
}
|
|
3237
|
+
}
|
|
3238
|
+
let localVarPath = `/api/users/reset-password/verify`;
|
|
3239
|
+
const { basePath, withCredentials } = this.configuration;
|
|
3240
|
+
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
3241
|
+
context: localVarHttpContext,
|
|
3242
|
+
body: verifyResetPasswordTokenCommand,
|
|
3243
|
+
responseType: responseType_,
|
|
3244
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
3245
|
+
headers: localVarHeaders,
|
|
3246
|
+
observe: observe,
|
|
3247
|
+
transferCache: localVarTransferCache,
|
|
3248
|
+
reportProgress: reportProgress,
|
|
3249
|
+
});
|
|
3250
|
+
}
|
|
2969
3251
|
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
3252
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: UsersApiService, providedIn: "root" });
|
|
2971
3253
|
}
|
|
@@ -3168,6 +3450,35 @@ var DesignWeatherMode;
|
|
|
3168
3450
|
* Do not edit the class manually.
|
|
3169
3451
|
*/
|
|
3170
3452
|
|
|
3453
|
+
/**
|
|
3454
|
+
* RenewAire CORES API
|
|
3455
|
+
*
|
|
3456
|
+
* Contact: renewaire@saritasa.com
|
|
3457
|
+
*
|
|
3458
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3459
|
+
* https://openapi-generator.tech
|
|
3460
|
+
* Do not edit the class manually.
|
|
3461
|
+
*/
|
|
3462
|
+
|
|
3463
|
+
/**
|
|
3464
|
+
* RenewAire CORES API
|
|
3465
|
+
*
|
|
3466
|
+
* Contact: renewaire@saritasa.com
|
|
3467
|
+
*
|
|
3468
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3469
|
+
* https://openapi-generator.tech
|
|
3470
|
+
* Do not edit the class manually.
|
|
3471
|
+
*/
|
|
3472
|
+
/**
|
|
3473
|
+
* Language<br />0 = English<br />1 = Spanish<br />2 = French
|
|
3474
|
+
*/
|
|
3475
|
+
var Language;
|
|
3476
|
+
(function (Language) {
|
|
3477
|
+
Language["English"] = "English";
|
|
3478
|
+
Language["Spanish"] = "Spanish";
|
|
3479
|
+
Language["French"] = "French";
|
|
3480
|
+
})(Language || (Language = {}));
|
|
3481
|
+
|
|
3171
3482
|
/**
|
|
3172
3483
|
* RenewAire CORES API
|
|
3173
3484
|
*
|
|
@@ -3369,6 +3680,27 @@ var SaveUserDesignConditionsDtoCoolingDesignBasisEnum;
|
|
|
3369
3680
|
SaveUserDesignConditionsDtoCoolingDesignBasisEnum["Dehumidification"] = "Dehumidification";
|
|
3370
3681
|
})(SaveUserDesignConditionsDtoCoolingDesignBasisEnum || (SaveUserDesignConditionsDtoCoolingDesignBasisEnum = {}));
|
|
3371
3682
|
|
|
3683
|
+
/**
|
|
3684
|
+
* RenewAire CORES API
|
|
3685
|
+
*
|
|
3686
|
+
* Contact: renewaire@saritasa.com
|
|
3687
|
+
*
|
|
3688
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3689
|
+
* https://openapi-generator.tech
|
|
3690
|
+
* Do not edit the class manually.
|
|
3691
|
+
*/
|
|
3692
|
+
var SaveUserPreferencesDtoLangaugeEnum;
|
|
3693
|
+
(function (SaveUserPreferencesDtoLangaugeEnum) {
|
|
3694
|
+
SaveUserPreferencesDtoLangaugeEnum["English"] = "English";
|
|
3695
|
+
SaveUserPreferencesDtoLangaugeEnum["Spanish"] = "Spanish";
|
|
3696
|
+
SaveUserPreferencesDtoLangaugeEnum["French"] = "French";
|
|
3697
|
+
})(SaveUserPreferencesDtoLangaugeEnum || (SaveUserPreferencesDtoLangaugeEnum = {}));
|
|
3698
|
+
var SaveUserPreferencesDtoUnitSystemEnum;
|
|
3699
|
+
(function (SaveUserPreferencesDtoUnitSystemEnum) {
|
|
3700
|
+
SaveUserPreferencesDtoUnitSystemEnum["Imperial"] = "Imperial";
|
|
3701
|
+
SaveUserPreferencesDtoUnitSystemEnum["Metric"] = "Metric";
|
|
3702
|
+
})(SaveUserPreferencesDtoUnitSystemEnum || (SaveUserPreferencesDtoUnitSystemEnum = {}));
|
|
3703
|
+
|
|
3372
3704
|
/**
|
|
3373
3705
|
* RenewAire CORES API
|
|
3374
3706
|
*
|
|
@@ -3445,6 +3777,34 @@ var SearchRegionDtoLevelEnum;
|
|
|
3445
3777
|
* Do not edit the class manually.
|
|
3446
3778
|
*/
|
|
3447
3779
|
|
|
3780
|
+
/**
|
|
3781
|
+
* RenewAire CORES API
|
|
3782
|
+
*
|
|
3783
|
+
* Contact: renewaire@saritasa.com
|
|
3784
|
+
*
|
|
3785
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3786
|
+
* https://openapi-generator.tech
|
|
3787
|
+
* Do not edit the class manually.
|
|
3788
|
+
*/
|
|
3789
|
+
|
|
3790
|
+
/**
|
|
3791
|
+
* RenewAire CORES API
|
|
3792
|
+
*
|
|
3793
|
+
* Contact: renewaire@saritasa.com
|
|
3794
|
+
*
|
|
3795
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3796
|
+
* https://openapi-generator.tech
|
|
3797
|
+
* Do not edit the class manually.
|
|
3798
|
+
*/
|
|
3799
|
+
/**
|
|
3800
|
+
* UnitSystem<br />0 = Imperial<br />1 = Metric
|
|
3801
|
+
*/
|
|
3802
|
+
var UnitSystem;
|
|
3803
|
+
(function (UnitSystem) {
|
|
3804
|
+
UnitSystem["Imperial"] = "Imperial";
|
|
3805
|
+
UnitSystem["Metric"] = "Metric";
|
|
3806
|
+
})(UnitSystem || (UnitSystem = {}));
|
|
3807
|
+
|
|
3448
3808
|
/**
|
|
3449
3809
|
* RenewAire CORES API
|
|
3450
3810
|
*
|
|
@@ -3474,6 +3834,13 @@ var SearchRegionDtoLevelEnum;
|
|
|
3474
3834
|
* https://openapi-generator.tech
|
|
3475
3835
|
* Do not edit the class manually.
|
|
3476
3836
|
*/
|
|
3837
|
+
var UserAddressDtoCountryEnum;
|
|
3838
|
+
(function (UserAddressDtoCountryEnum) {
|
|
3839
|
+
UserAddressDtoCountryEnum["Unknown"] = "Unknown";
|
|
3840
|
+
UserAddressDtoCountryEnum["UnitedStates"] = "UnitedStates";
|
|
3841
|
+
UserAddressDtoCountryEnum["Canada"] = "Canada";
|
|
3842
|
+
UserAddressDtoCountryEnum["Mexico"] = "Mexico";
|
|
3843
|
+
})(UserAddressDtoCountryEnum || (UserAddressDtoCountryEnum = {}));
|
|
3477
3844
|
|
|
3478
3845
|
var UserDesignConditionsDtoCoolingDesignBasisEnum;
|
|
3479
3846
|
(function (UserDesignConditionsDtoCoolingDesignBasisEnum) {
|
|
@@ -3513,6 +3880,47 @@ var UserPermissionDtoPermissionEnum;
|
|
|
3513
3880
|
* Do not edit the class manually.
|
|
3514
3881
|
*/
|
|
3515
3882
|
|
|
3883
|
+
/**
|
|
3884
|
+
* RenewAire CORES API
|
|
3885
|
+
*
|
|
3886
|
+
* Contact: renewaire@saritasa.com
|
|
3887
|
+
*
|
|
3888
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3889
|
+
* https://openapi-generator.tech
|
|
3890
|
+
* Do not edit the class manually.
|
|
3891
|
+
*/
|
|
3892
|
+
var UserPreferencesDtoLangaugeEnum;
|
|
3893
|
+
(function (UserPreferencesDtoLangaugeEnum) {
|
|
3894
|
+
UserPreferencesDtoLangaugeEnum["English"] = "English";
|
|
3895
|
+
UserPreferencesDtoLangaugeEnum["Spanish"] = "Spanish";
|
|
3896
|
+
UserPreferencesDtoLangaugeEnum["French"] = "French";
|
|
3897
|
+
})(UserPreferencesDtoLangaugeEnum || (UserPreferencesDtoLangaugeEnum = {}));
|
|
3898
|
+
var UserPreferencesDtoUnitSystemEnum;
|
|
3899
|
+
(function (UserPreferencesDtoUnitSystemEnum) {
|
|
3900
|
+
UserPreferencesDtoUnitSystemEnum["Imperial"] = "Imperial";
|
|
3901
|
+
UserPreferencesDtoUnitSystemEnum["Metric"] = "Metric";
|
|
3902
|
+
})(UserPreferencesDtoUnitSystemEnum || (UserPreferencesDtoUnitSystemEnum = {}));
|
|
3903
|
+
|
|
3904
|
+
/**
|
|
3905
|
+
* RenewAire CORES API
|
|
3906
|
+
*
|
|
3907
|
+
* Contact: renewaire@saritasa.com
|
|
3908
|
+
*
|
|
3909
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3910
|
+
* https://openapi-generator.tech
|
|
3911
|
+
* Do not edit the class manually.
|
|
3912
|
+
*/
|
|
3913
|
+
|
|
3914
|
+
var UserProfileSettingsDtoRegistrationStatusEnum;
|
|
3915
|
+
(function (UserProfileSettingsDtoRegistrationStatusEnum) {
|
|
3916
|
+
UserProfileSettingsDtoRegistrationStatusEnum["EmailVerification"] = "EmailVerification";
|
|
3917
|
+
UserProfileSettingsDtoRegistrationStatusEnum["SetPassword"] = "SetPassword";
|
|
3918
|
+
UserProfileSettingsDtoRegistrationStatusEnum["SetProfile"] = "SetProfile";
|
|
3919
|
+
UserProfileSettingsDtoRegistrationStatusEnum["SetAddress"] = "SetAddress";
|
|
3920
|
+
UserProfileSettingsDtoRegistrationStatusEnum["SetOccupation"] = "SetOccupation";
|
|
3921
|
+
UserProfileSettingsDtoRegistrationStatusEnum["Completed"] = "Completed";
|
|
3922
|
+
})(UserProfileSettingsDtoRegistrationStatusEnum || (UserProfileSettingsDtoRegistrationStatusEnum = {}));
|
|
3923
|
+
|
|
3516
3924
|
/**
|
|
3517
3925
|
* RenewAire CORES API
|
|
3518
3926
|
*
|
|
@@ -3575,5 +3983,5 @@ function provideApi(configOrBasePath) {
|
|
|
3575
3983
|
* Generated bundle index. Do not edit.
|
|
3576
3984
|
*/
|
|
3577
3985
|
|
|
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 };
|
|
3986
|
+
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
3987
|
//# sourceMappingURL=saritasa-renewaire-frontend-sdk.mjs.map
|