@saritasa/renewaire-frontend-sdk 0.61.1 → 0.63.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
|
@@ -541,6 +541,344 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.1", ngImpor
|
|
|
541
541
|
type: Optional
|
|
542
542
|
}] }] });
|
|
543
543
|
|
|
544
|
+
/**
|
|
545
|
+
* RenewAire CORES API
|
|
546
|
+
*
|
|
547
|
+
* Contact: renewaire@saritasa.com
|
|
548
|
+
*
|
|
549
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
550
|
+
* https://openapi-generator.tech
|
|
551
|
+
* Do not edit the class manually.
|
|
552
|
+
*/
|
|
553
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
554
|
+
class ControllerProgramsApiService extends BaseService {
|
|
555
|
+
httpClient;
|
|
556
|
+
constructor(httpClient, basePath, configuration) {
|
|
557
|
+
super(basePath, configuration);
|
|
558
|
+
this.httpClient = httpClient;
|
|
559
|
+
}
|
|
560
|
+
controllerProgramsCreateControllerProgram(requestParameters, observe = "body", reportProgress = false, options) {
|
|
561
|
+
const programType = requestParameters?.programType;
|
|
562
|
+
if (programType === null || programType === undefined) {
|
|
563
|
+
throw new Error("Required parameter programType was null or undefined when calling controllerProgramsCreateControllerProgram.");
|
|
564
|
+
}
|
|
565
|
+
const saveControllerProgramDto = requestParameters?.saveControllerProgramDto;
|
|
566
|
+
let localVarHeaders = this.defaultHeaders;
|
|
567
|
+
// authentication (Bearer) required
|
|
568
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
569
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
570
|
+
this.configuration.selectHeaderAccept([
|
|
571
|
+
"text/plain",
|
|
572
|
+
"application/json",
|
|
573
|
+
"text/json",
|
|
574
|
+
]);
|
|
575
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
576
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
577
|
+
}
|
|
578
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
579
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
580
|
+
// to determine the Content-Type header
|
|
581
|
+
const consumes = [
|
|
582
|
+
"application/json",
|
|
583
|
+
"text/json",
|
|
584
|
+
"application/*+json",
|
|
585
|
+
];
|
|
586
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
587
|
+
if (httpContentTypeSelected !== undefined) {
|
|
588
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
589
|
+
}
|
|
590
|
+
let responseType_ = "json";
|
|
591
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
592
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
593
|
+
responseType_ = "text";
|
|
594
|
+
}
|
|
595
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
596
|
+
responseType_ = "json";
|
|
597
|
+
}
|
|
598
|
+
else {
|
|
599
|
+
responseType_ = "blob";
|
|
600
|
+
}
|
|
601
|
+
}
|
|
602
|
+
let localVarPath = `/api/controller-programs/${this.configuration.encodeParam({ name: "programType", value: programType, in: "path", style: "simple", explode: false, dataType: "'ERV' | 'DN' | 'Refrigeration' | 'Misc'", dataFormat: undefined })}`;
|
|
603
|
+
const { basePath, withCredentials } = this.configuration;
|
|
604
|
+
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
605
|
+
context: localVarHttpContext,
|
|
606
|
+
body: saveControllerProgramDto,
|
|
607
|
+
responseType: responseType_,
|
|
608
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
609
|
+
headers: localVarHeaders,
|
|
610
|
+
observe: observe,
|
|
611
|
+
transferCache: localVarTransferCache,
|
|
612
|
+
reportProgress: reportProgress,
|
|
613
|
+
});
|
|
614
|
+
}
|
|
615
|
+
controllerProgramsCreateFileDownloadUrl(requestParameters, observe = "body", reportProgress = false, options) {
|
|
616
|
+
const controllerProgramId = requestParameters?.controllerProgramId;
|
|
617
|
+
if (controllerProgramId === null || controllerProgramId === undefined) {
|
|
618
|
+
throw new Error("Required parameter controllerProgramId was null or undefined when calling controllerProgramsCreateFileDownloadUrl.");
|
|
619
|
+
}
|
|
620
|
+
let localVarHeaders = this.defaultHeaders;
|
|
621
|
+
// authentication (Bearer) required
|
|
622
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
623
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
624
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
625
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
626
|
+
}
|
|
627
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
628
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
629
|
+
let responseType_ = "json";
|
|
630
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
631
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
632
|
+
responseType_ = "text";
|
|
633
|
+
}
|
|
634
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
635
|
+
responseType_ = "json";
|
|
636
|
+
}
|
|
637
|
+
else {
|
|
638
|
+
responseType_ = "blob";
|
|
639
|
+
}
|
|
640
|
+
}
|
|
641
|
+
let localVarPath = `/api/controller-programs/${this.configuration.encodeParam({ name: "controllerProgramId", value: controllerProgramId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32" })}/file-download-url`;
|
|
642
|
+
const { basePath, withCredentials } = this.configuration;
|
|
643
|
+
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
644
|
+
context: localVarHttpContext,
|
|
645
|
+
responseType: responseType_,
|
|
646
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
647
|
+
headers: localVarHeaders,
|
|
648
|
+
observe: observe,
|
|
649
|
+
transferCache: localVarTransferCache,
|
|
650
|
+
reportProgress: reportProgress,
|
|
651
|
+
});
|
|
652
|
+
}
|
|
653
|
+
controllerProgramsCreateFileUploadUrl(requestParameters, observe = "body", reportProgress = false, options) {
|
|
654
|
+
const createUploadUrlCommand = requestParameters?.createUploadUrlCommand;
|
|
655
|
+
let localVarHeaders = this.defaultHeaders;
|
|
656
|
+
// authentication (Bearer) required
|
|
657
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
658
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
659
|
+
this.configuration.selectHeaderAccept([
|
|
660
|
+
"text/plain",
|
|
661
|
+
"application/json",
|
|
662
|
+
"text/json",
|
|
663
|
+
]);
|
|
664
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
665
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
666
|
+
}
|
|
667
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
668
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
669
|
+
// to determine the Content-Type header
|
|
670
|
+
const consumes = [
|
|
671
|
+
"application/json",
|
|
672
|
+
"text/json",
|
|
673
|
+
"application/*+json",
|
|
674
|
+
];
|
|
675
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
676
|
+
if (httpContentTypeSelected !== undefined) {
|
|
677
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
678
|
+
}
|
|
679
|
+
let responseType_ = "json";
|
|
680
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
681
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
682
|
+
responseType_ = "text";
|
|
683
|
+
}
|
|
684
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
685
|
+
responseType_ = "json";
|
|
686
|
+
}
|
|
687
|
+
else {
|
|
688
|
+
responseType_ = "blob";
|
|
689
|
+
}
|
|
690
|
+
}
|
|
691
|
+
let localVarPath = `/api/controller-programs/files/upload-url`;
|
|
692
|
+
const { basePath, withCredentials } = this.configuration;
|
|
693
|
+
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
694
|
+
context: localVarHttpContext,
|
|
695
|
+
body: createUploadUrlCommand,
|
|
696
|
+
responseType: responseType_,
|
|
697
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
698
|
+
headers: localVarHeaders,
|
|
699
|
+
observe: observe,
|
|
700
|
+
transferCache: localVarTransferCache,
|
|
701
|
+
reportProgress: reportProgress,
|
|
702
|
+
});
|
|
703
|
+
}
|
|
704
|
+
controllerProgramsGetControllerProgram(requestParameters, observe = "body", reportProgress = false, options) {
|
|
705
|
+
const controllerProgramId = requestParameters?.controllerProgramId;
|
|
706
|
+
if (controllerProgramId === null || controllerProgramId === undefined) {
|
|
707
|
+
throw new Error("Required parameter controllerProgramId was null or undefined when calling controllerProgramsGetControllerProgram.");
|
|
708
|
+
}
|
|
709
|
+
let localVarHeaders = this.defaultHeaders;
|
|
710
|
+
// authentication (Bearer) required
|
|
711
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
712
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
713
|
+
this.configuration.selectHeaderAccept([
|
|
714
|
+
"text/plain",
|
|
715
|
+
"application/json",
|
|
716
|
+
"text/json",
|
|
717
|
+
]);
|
|
718
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
719
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
720
|
+
}
|
|
721
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
722
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
723
|
+
let responseType_ = "json";
|
|
724
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
725
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
726
|
+
responseType_ = "text";
|
|
727
|
+
}
|
|
728
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
729
|
+
responseType_ = "json";
|
|
730
|
+
}
|
|
731
|
+
else {
|
|
732
|
+
responseType_ = "blob";
|
|
733
|
+
}
|
|
734
|
+
}
|
|
735
|
+
let localVarPath = `/api/controller-programs/${this.configuration.encodeParam({ name: "controllerProgramId", value: controllerProgramId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32" })}`;
|
|
736
|
+
const { basePath, withCredentials } = this.configuration;
|
|
737
|
+
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
738
|
+
context: localVarHttpContext,
|
|
739
|
+
responseType: responseType_,
|
|
740
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
741
|
+
headers: localVarHeaders,
|
|
742
|
+
observe: observe,
|
|
743
|
+
transferCache: localVarTransferCache,
|
|
744
|
+
reportProgress: reportProgress,
|
|
745
|
+
});
|
|
746
|
+
}
|
|
747
|
+
controllerProgramsSearchControllerPrograms(requestParameters, observe = "body", reportProgress = false, options) {
|
|
748
|
+
const programType = requestParameters?.programType;
|
|
749
|
+
if (programType === null || programType === undefined) {
|
|
750
|
+
throw new Error("Required parameter programType was null or undefined when calling controllerProgramsSearchControllerPrograms.");
|
|
751
|
+
}
|
|
752
|
+
const versionNumber = requestParameters?.versionNumber;
|
|
753
|
+
const releaseType = requestParameters?.releaseType;
|
|
754
|
+
const createdAt = requestParameters?.createdAt;
|
|
755
|
+
const createdBy = requestParameters?.createdBy;
|
|
756
|
+
const notes = requestParameters?.notes;
|
|
757
|
+
const fileName = requestParameters?.fileName;
|
|
758
|
+
const orderBy = requestParameters?.orderBy;
|
|
759
|
+
const page = requestParameters?.page;
|
|
760
|
+
const pageSize = requestParameters?.pageSize;
|
|
761
|
+
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
762
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, programType, "ProgramType");
|
|
763
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, versionNumber, "VersionNumber");
|
|
764
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, releaseType, "ReleaseType");
|
|
765
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, createdAt, "CreatedAt");
|
|
766
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, createdBy, "CreatedBy");
|
|
767
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, notes, "Notes");
|
|
768
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, fileName, "FileName");
|
|
769
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, orderBy, "OrderBy");
|
|
770
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, page, "Page");
|
|
771
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, pageSize, "PageSize");
|
|
772
|
+
let localVarHeaders = this.defaultHeaders;
|
|
773
|
+
// authentication (Bearer) required
|
|
774
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
775
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
776
|
+
this.configuration.selectHeaderAccept([
|
|
777
|
+
"text/plain",
|
|
778
|
+
"application/json",
|
|
779
|
+
"text/json",
|
|
780
|
+
]);
|
|
781
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
782
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
783
|
+
}
|
|
784
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
785
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
786
|
+
let responseType_ = "json";
|
|
787
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
788
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
789
|
+
responseType_ = "text";
|
|
790
|
+
}
|
|
791
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
792
|
+
responseType_ = "json";
|
|
793
|
+
}
|
|
794
|
+
else {
|
|
795
|
+
responseType_ = "blob";
|
|
796
|
+
}
|
|
797
|
+
}
|
|
798
|
+
let localVarPath = `/api/controller-programs`;
|
|
799
|
+
const { basePath, withCredentials } = this.configuration;
|
|
800
|
+
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
801
|
+
context: localVarHttpContext,
|
|
802
|
+
params: localVarQueryParameters,
|
|
803
|
+
responseType: responseType_,
|
|
804
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
805
|
+
headers: localVarHeaders,
|
|
806
|
+
observe: observe,
|
|
807
|
+
transferCache: localVarTransferCache,
|
|
808
|
+
reportProgress: reportProgress,
|
|
809
|
+
});
|
|
810
|
+
}
|
|
811
|
+
controllerProgramsUpdateControllerProgram(requestParameters, observe = "body", reportProgress = false, options) {
|
|
812
|
+
const controllerProgramId = requestParameters?.controllerProgramId;
|
|
813
|
+
if (controllerProgramId === null || controllerProgramId === undefined) {
|
|
814
|
+
throw new Error("Required parameter controllerProgramId was null or undefined when calling controllerProgramsUpdateControllerProgram.");
|
|
815
|
+
}
|
|
816
|
+
const isActive = requestParameters?.isActive;
|
|
817
|
+
const saveControllerProgramDto = requestParameters?.saveControllerProgramDto;
|
|
818
|
+
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
819
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, isActive, "isActive");
|
|
820
|
+
let localVarHeaders = this.defaultHeaders;
|
|
821
|
+
// authentication (Bearer) required
|
|
822
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
823
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
824
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
825
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
826
|
+
}
|
|
827
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
828
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
829
|
+
// to determine the Content-Type header
|
|
830
|
+
const consumes = [
|
|
831
|
+
"application/json",
|
|
832
|
+
"text/json",
|
|
833
|
+
"application/*+json",
|
|
834
|
+
];
|
|
835
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
836
|
+
if (httpContentTypeSelected !== undefined) {
|
|
837
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
838
|
+
}
|
|
839
|
+
let responseType_ = "json";
|
|
840
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
841
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
842
|
+
responseType_ = "text";
|
|
843
|
+
}
|
|
844
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
845
|
+
responseType_ = "json";
|
|
846
|
+
}
|
|
847
|
+
else {
|
|
848
|
+
responseType_ = "blob";
|
|
849
|
+
}
|
|
850
|
+
}
|
|
851
|
+
let localVarPath = `/api/controller-programs/${this.configuration.encodeParam({ name: "controllerProgramId", value: controllerProgramId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32" })}`;
|
|
852
|
+
const { basePath, withCredentials } = this.configuration;
|
|
853
|
+
return this.httpClient.request("put", `${basePath}${localVarPath}`, {
|
|
854
|
+
context: localVarHttpContext,
|
|
855
|
+
body: saveControllerProgramDto,
|
|
856
|
+
params: localVarQueryParameters,
|
|
857
|
+
responseType: responseType_,
|
|
858
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
859
|
+
headers: localVarHeaders,
|
|
860
|
+
observe: observe,
|
|
861
|
+
transferCache: localVarTransferCache,
|
|
862
|
+
reportProgress: reportProgress,
|
|
863
|
+
});
|
|
864
|
+
}
|
|
865
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.1", ngImport: i0, type: ControllerProgramsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
866
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.1", ngImport: i0, type: ControllerProgramsApiService, providedIn: "root" });
|
|
867
|
+
}
|
|
868
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.1", ngImport: i0, type: ControllerProgramsApiService, decorators: [{
|
|
869
|
+
type: Injectable,
|
|
870
|
+
args: [{
|
|
871
|
+
providedIn: "root",
|
|
872
|
+
}]
|
|
873
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
874
|
+
type: Optional
|
|
875
|
+
}, {
|
|
876
|
+
type: Inject,
|
|
877
|
+
args: [BASE_PATH]
|
|
878
|
+
}] }, { type: Configuration, decorators: [{
|
|
879
|
+
type: Optional
|
|
880
|
+
}] }] });
|
|
881
|
+
|
|
544
882
|
/**
|
|
545
883
|
* RenewAire CORES API
|
|
546
884
|
*
|
|
@@ -6045,6 +6383,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.1", ngImpor
|
|
|
6045
6383
|
const APIS = [
|
|
6046
6384
|
AuditLogsApiService,
|
|
6047
6385
|
AuthApiService,
|
|
6386
|
+
ControllerProgramsApiService,
|
|
6048
6387
|
FeedbacksApiService,
|
|
6049
6388
|
GroupsApiService,
|
|
6050
6389
|
KnownContactsApiService,
|
|
@@ -6204,6 +6543,57 @@ var AuditEntity;
|
|
|
6204
6543
|
* Do not edit the class manually.
|
|
6205
6544
|
*/
|
|
6206
6545
|
|
|
6546
|
+
var ControllerProgramDtoProgramTypeEnum;
|
|
6547
|
+
(function (ControllerProgramDtoProgramTypeEnum) {
|
|
6548
|
+
ControllerProgramDtoProgramTypeEnum["Erv"] = "ERV";
|
|
6549
|
+
ControllerProgramDtoProgramTypeEnum["Dn"] = "DN";
|
|
6550
|
+
ControllerProgramDtoProgramTypeEnum["Refrigeration"] = "Refrigeration";
|
|
6551
|
+
ControllerProgramDtoProgramTypeEnum["Misc"] = "Misc";
|
|
6552
|
+
})(ControllerProgramDtoProgramTypeEnum || (ControllerProgramDtoProgramTypeEnum = {}));
|
|
6553
|
+
var ControllerProgramDtoReleaseTypeEnum;
|
|
6554
|
+
(function (ControllerProgramDtoReleaseTypeEnum) {
|
|
6555
|
+
ControllerProgramDtoReleaseTypeEnum["Custom"] = "Custom";
|
|
6556
|
+
ControllerProgramDtoReleaseTypeEnum["Factory"] = "Factory";
|
|
6557
|
+
})(ControllerProgramDtoReleaseTypeEnum || (ControllerProgramDtoReleaseTypeEnum = {}));
|
|
6558
|
+
|
|
6559
|
+
/**
|
|
6560
|
+
* RenewAire CORES API
|
|
6561
|
+
*
|
|
6562
|
+
* Contact: renewaire@saritasa.com
|
|
6563
|
+
*
|
|
6564
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6565
|
+
* https://openapi-generator.tech
|
|
6566
|
+
* Do not edit the class manually.
|
|
6567
|
+
*/
|
|
6568
|
+
/**
|
|
6569
|
+
* ControllerProgramReleaseType<br />0 = Custom<br />1 = Factory
|
|
6570
|
+
*/
|
|
6571
|
+
var ControllerProgramReleaseType;
|
|
6572
|
+
(function (ControllerProgramReleaseType) {
|
|
6573
|
+
ControllerProgramReleaseType["Custom"] = "Custom";
|
|
6574
|
+
ControllerProgramReleaseType["Factory"] = "Factory";
|
|
6575
|
+
})(ControllerProgramReleaseType || (ControllerProgramReleaseType = {}));
|
|
6576
|
+
|
|
6577
|
+
/**
|
|
6578
|
+
* RenewAire CORES API
|
|
6579
|
+
*
|
|
6580
|
+
* Contact: renewaire@saritasa.com
|
|
6581
|
+
*
|
|
6582
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6583
|
+
* https://openapi-generator.tech
|
|
6584
|
+
* Do not edit the class manually.
|
|
6585
|
+
*/
|
|
6586
|
+
/**
|
|
6587
|
+
* ControllerProgramType<br />0 = ERV<br />1 = DN<br />2 = Refrigeration<br />3 = Misc
|
|
6588
|
+
*/
|
|
6589
|
+
var ControllerProgramType;
|
|
6590
|
+
(function (ControllerProgramType) {
|
|
6591
|
+
ControllerProgramType["Erv"] = "ERV";
|
|
6592
|
+
ControllerProgramType["Dn"] = "DN";
|
|
6593
|
+
ControllerProgramType["Refrigeration"] = "Refrigeration";
|
|
6594
|
+
ControllerProgramType["Misc"] = "Misc";
|
|
6595
|
+
})(ControllerProgramType || (ControllerProgramType = {}));
|
|
6596
|
+
|
|
6207
6597
|
/**
|
|
6208
6598
|
* RenewAire CORES API
|
|
6209
6599
|
*
|
|
@@ -6720,6 +7110,12 @@ var RegistrationStatus;
|
|
|
6720
7110
|
* Do not edit the class manually.
|
|
6721
7111
|
*/
|
|
6722
7112
|
|
|
7113
|
+
var SaveControllerProgramDtoReleaseTypeEnum;
|
|
7114
|
+
(function (SaveControllerProgramDtoReleaseTypeEnum) {
|
|
7115
|
+
SaveControllerProgramDtoReleaseTypeEnum["Custom"] = "Custom";
|
|
7116
|
+
SaveControllerProgramDtoReleaseTypeEnum["Factory"] = "Factory";
|
|
7117
|
+
})(SaveControllerProgramDtoReleaseTypeEnum || (SaveControllerProgramDtoReleaseTypeEnum = {}));
|
|
7118
|
+
|
|
6723
7119
|
var SaveGroupDtoTypeEnum;
|
|
6724
7120
|
(function (SaveGroupDtoTypeEnum) {
|
|
6725
7121
|
SaveGroupDtoTypeEnum["None"] = "None";
|
|
@@ -7154,5 +7550,5 @@ function provideApi(configOrBasePath) {
|
|
|
7154
7550
|
* Generated bundle index. Do not edit.
|
|
7155
7551
|
*/
|
|
7156
7552
|
|
|
7157
|
-
export { APIS, AddressCountry, AddressDtoCountryEnum, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH, COLLECTION_FORMATS, Configuration, CoolingDesignBasis, CurrentUserDtoPreferredUnitEnum, CurrentUserDtoRegistrationStatusEnum, DesignWeatherMode, FeedbackType, FeedbacksApiService, GroupCustomerType, GroupDtoCustomerTypeEnum, GroupDtoTypeEnum, GroupType, GroupsApiService, KnownContactsApiService, Language, Permission, PermissionBundlesApiService, PermissionsApiService, ProjectsApiService, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, SaveGroupDtoTypeEnum, SaveUserDesignConditionsDtoCoolingDesignBasisEnum, SearchRegionDtoLevelEnum, SetPreferredLanguageCommandPreferredLanguageEnum, StaticFilesApiService, UnitSystem, UserDesignConditionsApiService, UserDesignConditionsDtoCoolingDesignBasisEnum, UserDesignWeatherConditionDtoDesignWeatherModeEnum, UserPermissionDtoPermissionEnum, UserPreferencesDtoPreferredLanguageEnum, UserPreferencesDtoPreferredUnitEnum, UserProfileSettingsDtoRegistrationStatusEnum, UserStatus, UserTablesApiService, UsersApiService, UsersManagementApiService, provideApi };
|
|
7553
|
+
export { APIS, AddressCountry, AddressDtoCountryEnum, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH, COLLECTION_FORMATS, Configuration, ControllerProgramDtoProgramTypeEnum, ControllerProgramDtoReleaseTypeEnum, ControllerProgramReleaseType, ControllerProgramType, ControllerProgramsApiService, CoolingDesignBasis, CurrentUserDtoPreferredUnitEnum, CurrentUserDtoRegistrationStatusEnum, DesignWeatherMode, FeedbackType, FeedbacksApiService, GroupCustomerType, GroupDtoCustomerTypeEnum, GroupDtoTypeEnum, GroupType, GroupsApiService, KnownContactsApiService, Language, Permission, PermissionBundlesApiService, PermissionsApiService, ProjectsApiService, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, SaveControllerProgramDtoReleaseTypeEnum, SaveGroupDtoTypeEnum, SaveUserDesignConditionsDtoCoolingDesignBasisEnum, SearchRegionDtoLevelEnum, SetPreferredLanguageCommandPreferredLanguageEnum, StaticFilesApiService, UnitSystem, UserDesignConditionsApiService, UserDesignConditionsDtoCoolingDesignBasisEnum, UserDesignWeatherConditionDtoDesignWeatherModeEnum, UserPermissionDtoPermissionEnum, UserPreferencesDtoPreferredLanguageEnum, UserPreferencesDtoPreferredUnitEnum, UserProfileSettingsDtoRegistrationStatusEnum, UserStatus, UserTablesApiService, UsersApiService, UsersManagementApiService, provideApi };
|
|
7158
7554
|
//# sourceMappingURL=saritasa-renewaire-frontend-sdk.mjs.map
|