@saritasa/renewaire-frontend-sdk 0.10.0 → 0.11.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
|
@@ -417,10 +417,233 @@ class AuthApiService extends BaseService {
|
|
|
417
417
|
reportProgress: reportProgress,
|
|
418
418
|
});
|
|
419
419
|
}
|
|
420
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.
|
|
421
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.
|
|
420
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: AuthApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
421
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: AuthApiService, providedIn: "root" });
|
|
422
422
|
}
|
|
423
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.
|
|
423
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: AuthApiService, decorators: [{
|
|
424
|
+
type: Injectable,
|
|
425
|
+
args: [{
|
|
426
|
+
providedIn: "root",
|
|
427
|
+
}]
|
|
428
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
429
|
+
type: Optional
|
|
430
|
+
}, {
|
|
431
|
+
type: Inject,
|
|
432
|
+
args: [BASE_PATH]
|
|
433
|
+
}] }, { type: Configuration, decorators: [{
|
|
434
|
+
type: Optional
|
|
435
|
+
}] }] });
|
|
436
|
+
|
|
437
|
+
/**
|
|
438
|
+
* RenewAire CORES API
|
|
439
|
+
*
|
|
440
|
+
* Contact: renewaire@saritasa.com
|
|
441
|
+
*
|
|
442
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
443
|
+
* https://openapi-generator.tech
|
|
444
|
+
* Do not edit the class manually.
|
|
445
|
+
*/
|
|
446
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
447
|
+
class KnownContactsApiService extends BaseService {
|
|
448
|
+
httpClient;
|
|
449
|
+
constructor(httpClient, basePath, configuration) {
|
|
450
|
+
super(basePath, configuration);
|
|
451
|
+
this.httpClient = httpClient;
|
|
452
|
+
}
|
|
453
|
+
knownContactsCreateKnowContact(requestParameters, observe = "body", reportProgress = false, options) {
|
|
454
|
+
const saveKnownContactDto = requestParameters?.saveKnownContactDto;
|
|
455
|
+
let localVarHeaders = this.defaultHeaders;
|
|
456
|
+
// authentication (Bearer) required
|
|
457
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
458
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
459
|
+
this.configuration.selectHeaderAccept([
|
|
460
|
+
"text/plain",
|
|
461
|
+
"application/json",
|
|
462
|
+
"text/json",
|
|
463
|
+
]);
|
|
464
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
465
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
466
|
+
}
|
|
467
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
468
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
469
|
+
// to determine the Content-Type header
|
|
470
|
+
const consumes = [
|
|
471
|
+
"application/json",
|
|
472
|
+
"text/json",
|
|
473
|
+
"application/*+json",
|
|
474
|
+
];
|
|
475
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
476
|
+
if (httpContentTypeSelected !== undefined) {
|
|
477
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
478
|
+
}
|
|
479
|
+
let responseType_ = "json";
|
|
480
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
481
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
482
|
+
responseType_ = "text";
|
|
483
|
+
}
|
|
484
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
485
|
+
responseType_ = "json";
|
|
486
|
+
}
|
|
487
|
+
else {
|
|
488
|
+
responseType_ = "blob";
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
let localVarPath = `/api/known-contacts`;
|
|
492
|
+
const { basePath, withCredentials } = this.configuration;
|
|
493
|
+
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
494
|
+
context: localVarHttpContext,
|
|
495
|
+
body: saveKnownContactDto,
|
|
496
|
+
responseType: responseType_,
|
|
497
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
498
|
+
headers: localVarHeaders,
|
|
499
|
+
observe: observe,
|
|
500
|
+
transferCache: localVarTransferCache,
|
|
501
|
+
reportProgress: reportProgress,
|
|
502
|
+
});
|
|
503
|
+
}
|
|
504
|
+
knownContactsRemoveKnownContact(requestParameters, observe = "body", reportProgress = false, options) {
|
|
505
|
+
const knownContactId = requestParameters?.knownContactId;
|
|
506
|
+
if (knownContactId === null || knownContactId === undefined) {
|
|
507
|
+
throw new Error("Required parameter knownContactId was null or undefined when calling knownContactsRemoveKnownContact.");
|
|
508
|
+
}
|
|
509
|
+
let localVarHeaders = this.defaultHeaders;
|
|
510
|
+
// authentication (Bearer) required
|
|
511
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
512
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
513
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
514
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
515
|
+
}
|
|
516
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
517
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
518
|
+
let responseType_ = "json";
|
|
519
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
520
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
521
|
+
responseType_ = "text";
|
|
522
|
+
}
|
|
523
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
524
|
+
responseType_ = "json";
|
|
525
|
+
}
|
|
526
|
+
else {
|
|
527
|
+
responseType_ = "blob";
|
|
528
|
+
}
|
|
529
|
+
}
|
|
530
|
+
let localVarPath = `/api/known-contacts/${this.configuration.encodeParam({ name: "knownContactId", value: knownContactId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32" })}`;
|
|
531
|
+
const { basePath, withCredentials } = this.configuration;
|
|
532
|
+
return this.httpClient.request("delete", `${basePath}${localVarPath}`, {
|
|
533
|
+
context: localVarHttpContext,
|
|
534
|
+
responseType: responseType_,
|
|
535
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
536
|
+
headers: localVarHeaders,
|
|
537
|
+
observe: observe,
|
|
538
|
+
transferCache: localVarTransferCache,
|
|
539
|
+
reportProgress: reportProgress,
|
|
540
|
+
});
|
|
541
|
+
}
|
|
542
|
+
knownContactsSearchKnownContacts(requestParameters, observe = "body", reportProgress = false, options) {
|
|
543
|
+
const company = requestParameters?.company;
|
|
544
|
+
const group = requestParameters?.group;
|
|
545
|
+
const orderBy = requestParameters?.orderBy;
|
|
546
|
+
const page = requestParameters?.page;
|
|
547
|
+
const pageSize = requestParameters?.pageSize;
|
|
548
|
+
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
549
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, company, "Company");
|
|
550
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, group, "Group");
|
|
551
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, orderBy, "OrderBy");
|
|
552
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, page, "Page");
|
|
553
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, pageSize, "PageSize");
|
|
554
|
+
let localVarHeaders = this.defaultHeaders;
|
|
555
|
+
// authentication (Bearer) required
|
|
556
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
557
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
558
|
+
this.configuration.selectHeaderAccept([
|
|
559
|
+
"text/plain",
|
|
560
|
+
"application/json",
|
|
561
|
+
"text/json",
|
|
562
|
+
]);
|
|
563
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
564
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
565
|
+
}
|
|
566
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
567
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
568
|
+
let responseType_ = "json";
|
|
569
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
570
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
571
|
+
responseType_ = "text";
|
|
572
|
+
}
|
|
573
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
574
|
+
responseType_ = "json";
|
|
575
|
+
}
|
|
576
|
+
else {
|
|
577
|
+
responseType_ = "blob";
|
|
578
|
+
}
|
|
579
|
+
}
|
|
580
|
+
let localVarPath = `/api/known-contacts`;
|
|
581
|
+
const { basePath, withCredentials } = this.configuration;
|
|
582
|
+
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
583
|
+
context: localVarHttpContext,
|
|
584
|
+
params: localVarQueryParameters,
|
|
585
|
+
responseType: responseType_,
|
|
586
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
587
|
+
headers: localVarHeaders,
|
|
588
|
+
observe: observe,
|
|
589
|
+
transferCache: localVarTransferCache,
|
|
590
|
+
reportProgress: reportProgress,
|
|
591
|
+
});
|
|
592
|
+
}
|
|
593
|
+
knownContactsUpdateKnownContact(requestParameters, observe = "body", reportProgress = false, options) {
|
|
594
|
+
const knownContactId = requestParameters?.knownContactId;
|
|
595
|
+
if (knownContactId === null || knownContactId === undefined) {
|
|
596
|
+
throw new Error("Required parameter knownContactId was null or undefined when calling knownContactsUpdateKnownContact.");
|
|
597
|
+
}
|
|
598
|
+
const saveKnownContactDto = requestParameters?.saveKnownContactDto;
|
|
599
|
+
let localVarHeaders = this.defaultHeaders;
|
|
600
|
+
// authentication (Bearer) required
|
|
601
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
602
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
603
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
604
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
605
|
+
}
|
|
606
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
607
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
608
|
+
// to determine the Content-Type header
|
|
609
|
+
const consumes = [
|
|
610
|
+
"application/json",
|
|
611
|
+
"text/json",
|
|
612
|
+
"application/*+json",
|
|
613
|
+
];
|
|
614
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
615
|
+
if (httpContentTypeSelected !== undefined) {
|
|
616
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
617
|
+
}
|
|
618
|
+
let responseType_ = "json";
|
|
619
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
620
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
621
|
+
responseType_ = "text";
|
|
622
|
+
}
|
|
623
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
624
|
+
responseType_ = "json";
|
|
625
|
+
}
|
|
626
|
+
else {
|
|
627
|
+
responseType_ = "blob";
|
|
628
|
+
}
|
|
629
|
+
}
|
|
630
|
+
let localVarPath = `/api/known-contacts/${this.configuration.encodeParam({ name: "knownContactId", value: knownContactId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32" })}`;
|
|
631
|
+
const { basePath, withCredentials } = this.configuration;
|
|
632
|
+
return this.httpClient.request("put", `${basePath}${localVarPath}`, {
|
|
633
|
+
context: localVarHttpContext,
|
|
634
|
+
body: saveKnownContactDto,
|
|
635
|
+
responseType: responseType_,
|
|
636
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
637
|
+
headers: localVarHeaders,
|
|
638
|
+
observe: observe,
|
|
639
|
+
transferCache: localVarTransferCache,
|
|
640
|
+
reportProgress: reportProgress,
|
|
641
|
+
});
|
|
642
|
+
}
|
|
643
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: KnownContactsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
644
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: KnownContactsApiService, providedIn: "root" });
|
|
645
|
+
}
|
|
646
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: KnownContactsApiService, decorators: [{
|
|
424
647
|
type: Injectable,
|
|
425
648
|
args: [{
|
|
426
649
|
providedIn: "root",
|
|
@@ -719,10 +942,10 @@ class PermissionBundlesApiService extends BaseService {
|
|
|
719
942
|
reportProgress: reportProgress,
|
|
720
943
|
});
|
|
721
944
|
}
|
|
722
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.
|
|
723
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.
|
|
945
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: PermissionBundlesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
946
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: PermissionBundlesApiService, providedIn: "root" });
|
|
724
947
|
}
|
|
725
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.
|
|
948
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: PermissionBundlesApiService, decorators: [{
|
|
726
949
|
type: Injectable,
|
|
727
950
|
args: [{
|
|
728
951
|
providedIn: "root",
|
|
@@ -791,10 +1014,10 @@ class PermissionsApiService extends BaseService {
|
|
|
791
1014
|
reportProgress: reportProgress,
|
|
792
1015
|
});
|
|
793
1016
|
}
|
|
794
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.
|
|
795
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.
|
|
1017
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: PermissionsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1018
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: PermissionsApiService, providedIn: "root" });
|
|
796
1019
|
}
|
|
797
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.
|
|
1020
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: PermissionsApiService, decorators: [{
|
|
798
1021
|
type: Injectable,
|
|
799
1022
|
args: [{
|
|
800
1023
|
providedIn: "root",
|
|
@@ -877,10 +1100,10 @@ class RegionsApiService extends BaseService {
|
|
|
877
1100
|
reportProgress: reportProgress,
|
|
878
1101
|
});
|
|
879
1102
|
}
|
|
880
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.
|
|
881
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.
|
|
1103
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: RegionsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1104
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: RegionsApiService, providedIn: "root" });
|
|
882
1105
|
}
|
|
883
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.
|
|
1106
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: RegionsApiService, decorators: [{
|
|
884
1107
|
type: Injectable,
|
|
885
1108
|
args: [{
|
|
886
1109
|
providedIn: "root",
|
|
@@ -1044,10 +1267,10 @@ class RepContactsApiService extends BaseService {
|
|
|
1044
1267
|
reportProgress: reportProgress,
|
|
1045
1268
|
});
|
|
1046
1269
|
}
|
|
1047
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.
|
|
1048
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.
|
|
1270
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: RepContactsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1271
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: RepContactsApiService, providedIn: "root" });
|
|
1049
1272
|
}
|
|
1050
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.
|
|
1273
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: RepContactsApiService, decorators: [{
|
|
1051
1274
|
type: Injectable,
|
|
1052
1275
|
args: [{
|
|
1053
1276
|
providedIn: "root",
|
|
@@ -1422,10 +1645,10 @@ class RepTerritoriesApiService extends BaseService {
|
|
|
1422
1645
|
reportProgress: reportProgress,
|
|
1423
1646
|
});
|
|
1424
1647
|
}
|
|
1425
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.
|
|
1426
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.
|
|
1648
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: RepTerritoriesApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1649
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: RepTerritoriesApiService, providedIn: "root" });
|
|
1427
1650
|
}
|
|
1428
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.
|
|
1651
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: RepTerritoriesApiService, decorators: [{
|
|
1429
1652
|
type: Injectable,
|
|
1430
1653
|
args: [{
|
|
1431
1654
|
providedIn: "root",
|
|
@@ -1644,10 +1867,10 @@ class RepTerritoryLocationsApiService extends BaseService {
|
|
|
1644
1867
|
reportProgress: reportProgress,
|
|
1645
1868
|
});
|
|
1646
1869
|
}
|
|
1647
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.
|
|
1648
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.
|
|
1870
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: RepTerritoryLocationsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1871
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: RepTerritoryLocationsApiService, providedIn: "root" });
|
|
1649
1872
|
}
|
|
1650
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.
|
|
1873
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: RepTerritoryLocationsApiService, decorators: [{
|
|
1651
1874
|
type: Injectable,
|
|
1652
1875
|
args: [{
|
|
1653
1876
|
providedIn: "root",
|
|
@@ -2156,10 +2379,10 @@ class RsdRegionsApiService extends BaseService {
|
|
|
2156
2379
|
reportProgress: reportProgress,
|
|
2157
2380
|
});
|
|
2158
2381
|
}
|
|
2159
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.
|
|
2160
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.
|
|
2382
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: RsdRegionsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2383
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: RsdRegionsApiService, providedIn: "root" });
|
|
2161
2384
|
}
|
|
2162
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.
|
|
2385
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: RsdRegionsApiService, decorators: [{
|
|
2163
2386
|
type: Injectable,
|
|
2164
2387
|
args: [{
|
|
2165
2388
|
providedIn: "root",
|
|
@@ -2278,10 +2501,10 @@ class UserDesignConditionsApiService extends BaseService {
|
|
|
2278
2501
|
reportProgress: reportProgress,
|
|
2279
2502
|
});
|
|
2280
2503
|
}
|
|
2281
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.
|
|
2282
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.
|
|
2504
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: UserDesignConditionsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2505
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: UserDesignConditionsApiService, providedIn: "root" });
|
|
2283
2506
|
}
|
|
2284
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.
|
|
2507
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: UserDesignConditionsApiService, decorators: [{
|
|
2285
2508
|
type: Injectable,
|
|
2286
2509
|
args: [{
|
|
2287
2510
|
providedIn: "root",
|
|
@@ -3394,10 +3617,10 @@ class UsersApiService extends BaseService {
|
|
|
3394
3617
|
reportProgress: reportProgress,
|
|
3395
3618
|
});
|
|
3396
3619
|
}
|
|
3397
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.
|
|
3398
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.
|
|
3620
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: UsersApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3621
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: UsersApiService, providedIn: "root" });
|
|
3399
3622
|
}
|
|
3400
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.
|
|
3623
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: UsersApiService, decorators: [{
|
|
3401
3624
|
type: Injectable,
|
|
3402
3625
|
args: [{
|
|
3403
3626
|
providedIn: "root",
|
|
@@ -3413,6 +3636,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
|
|
|
3413
3636
|
|
|
3414
3637
|
const APIS = [
|
|
3415
3638
|
AuthApiService,
|
|
3639
|
+
KnownContactsApiService,
|
|
3416
3640
|
PermissionBundlesApiService,
|
|
3417
3641
|
PermissionsApiService,
|
|
3418
3642
|
RegionsApiService,
|
|
@@ -4119,11 +4343,11 @@ class ApiModule {
|
|
|
4119
4343
|
"See also https://github.com/angular/angular/issues/20575");
|
|
4120
4344
|
}
|
|
4121
4345
|
}
|
|
4122
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.
|
|
4123
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.1.
|
|
4124
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.1.
|
|
4346
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: ApiModule, deps: [{ token: ApiModule, optional: true, skipSelf: true }, { token: i1.HttpClient, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4347
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.1.7", ngImport: i0, type: ApiModule });
|
|
4348
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: ApiModule });
|
|
4125
4349
|
}
|
|
4126
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.
|
|
4350
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: ApiModule, decorators: [{
|
|
4127
4351
|
type: NgModule,
|
|
4128
4352
|
args: [{
|
|
4129
4353
|
imports: [],
|
|
@@ -4155,5 +4379,5 @@ function provideApi(configOrBasePath) {
|
|
|
4155
4379
|
* Generated bundle index. Do not edit.
|
|
4156
4380
|
*/
|
|
4157
4381
|
|
|
4158
|
-
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, SaveUserPreferencesDtoLanguageEnum, SaveUserPreferencesDtoUnitSystemEnum, SearchRegionDtoLevelEnum, SetPreferredLanguageCommandPreferredLanguageEnum, UnitSystem, UserAddressDtoCountryEnum, UserDesignConditionsApiService, UserDesignConditionsDtoCoolingDesignBasisEnum, UserDesignWeatherConditionDtoDesignWeatherModeEnum, UserPermissionDtoPermissionEnum, UserPreferencesDtoLanguageEnum, UserPreferencesDtoUnitSystemEnum, UserProfileSettingsDtoRegistrationStatusEnum, UsersApiService, provideApi };
|
|
4382
|
+
export { APIS, AddressCountry, AddressDtoCountryEnum, ApiModule, AuthApiService, BASE_PATH, COLLECTION_FORMATS, Configuration, CoolingDesignBasis, CurrentUserDtoRegistrationStatusEnum, DesignWeatherMode, KnownContactsApiService, Language, Permission, PermissionBundlesApiService, PermissionsApiService, RegionDtoLevelEnum, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, SaveUserDesignConditionsDtoCoolingDesignBasisEnum, SaveUserPreferencesDtoLanguageEnum, SaveUserPreferencesDtoUnitSystemEnum, SearchRegionDtoLevelEnum, SetPreferredLanguageCommandPreferredLanguageEnum, UnitSystem, UserAddressDtoCountryEnum, UserDesignConditionsApiService, UserDesignConditionsDtoCoolingDesignBasisEnum, UserDesignWeatherConditionDtoDesignWeatherModeEnum, UserPermissionDtoPermissionEnum, UserPreferencesDtoLanguageEnum, UserPreferencesDtoUnitSystemEnum, UserProfileSettingsDtoRegistrationStatusEnum, UsersApiService, provideApi };
|
|
4159
4383
|
//# sourceMappingURL=saritasa-renewaire-frontend-sdk.mjs.map
|