@saritasa/renewaire-frontend-sdk 0.236.0 → 0.238.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
|
@@ -688,6 +688,142 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
688
688
|
type: Optional
|
|
689
689
|
}] }] });
|
|
690
690
|
|
|
691
|
+
/**
|
|
692
|
+
* RenewAire CORES API
|
|
693
|
+
*
|
|
694
|
+
* Contact: renewaire@saritasa.com
|
|
695
|
+
*
|
|
696
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
697
|
+
* https://openapi-generator.tech
|
|
698
|
+
* Do not edit the class manually.
|
|
699
|
+
*/
|
|
700
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
701
|
+
class BombDrawingsApiService extends BaseService {
|
|
702
|
+
httpClient;
|
|
703
|
+
constructor(httpClient, basePath, configuration) {
|
|
704
|
+
super(basePath, configuration);
|
|
705
|
+
this.httpClient = httpClient;
|
|
706
|
+
}
|
|
707
|
+
drawingsCreateDrawingLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
708
|
+
const createDrawingLayerCommand = requestParameters?.createDrawingLayerCommand;
|
|
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
|
+
// to determine the Content-Type header
|
|
724
|
+
const consumes = [
|
|
725
|
+
"application/json-patch+json",
|
|
726
|
+
"application/json",
|
|
727
|
+
"text/json",
|
|
728
|
+
"application/*+json",
|
|
729
|
+
];
|
|
730
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
731
|
+
if (httpContentTypeSelected !== undefined) {
|
|
732
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
733
|
+
}
|
|
734
|
+
let responseType_ = "json";
|
|
735
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
736
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
737
|
+
responseType_ = "text";
|
|
738
|
+
}
|
|
739
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
740
|
+
responseType_ = "json";
|
|
741
|
+
}
|
|
742
|
+
else {
|
|
743
|
+
responseType_ = "blob";
|
|
744
|
+
}
|
|
745
|
+
}
|
|
746
|
+
let localVarPath = `/api/bomb/drawings`;
|
|
747
|
+
const { basePath, withCredentials } = this.configuration;
|
|
748
|
+
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
749
|
+
context: localVarHttpContext,
|
|
750
|
+
body: createDrawingLayerCommand,
|
|
751
|
+
responseType: responseType_,
|
|
752
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
753
|
+
headers: localVarHeaders,
|
|
754
|
+
observe: observe,
|
|
755
|
+
transferCache: localVarTransferCache,
|
|
756
|
+
reportProgress: reportProgress,
|
|
757
|
+
});
|
|
758
|
+
}
|
|
759
|
+
drawingsUpdateDrawingLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
760
|
+
const drawingLayerId = requestParameters?.drawingLayerId;
|
|
761
|
+
if (drawingLayerId === null || drawingLayerId === undefined) {
|
|
762
|
+
throw new Error("Required parameter drawingLayerId was null or undefined when calling drawingsUpdateDrawingLayer.");
|
|
763
|
+
}
|
|
764
|
+
const saveDrawingLayerDto = requestParameters?.saveDrawingLayerDto;
|
|
765
|
+
let localVarHeaders = this.defaultHeaders;
|
|
766
|
+
// authentication (Bearer) required
|
|
767
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
768
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
769
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
770
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
771
|
+
}
|
|
772
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
773
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
774
|
+
// to determine the Content-Type header
|
|
775
|
+
const consumes = [
|
|
776
|
+
"application/json-patch+json",
|
|
777
|
+
"application/json",
|
|
778
|
+
"text/json",
|
|
779
|
+
"application/*+json",
|
|
780
|
+
];
|
|
781
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
782
|
+
if (httpContentTypeSelected !== undefined) {
|
|
783
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
784
|
+
}
|
|
785
|
+
let responseType_ = "json";
|
|
786
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
787
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
788
|
+
responseType_ = "text";
|
|
789
|
+
}
|
|
790
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
791
|
+
responseType_ = "json";
|
|
792
|
+
}
|
|
793
|
+
else {
|
|
794
|
+
responseType_ = "blob";
|
|
795
|
+
}
|
|
796
|
+
}
|
|
797
|
+
let localVarPath = `/api/bomb/drawings/${this.configuration.encodeParam({ name: "drawingLayerId", value: drawingLayerId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
|
|
798
|
+
const { basePath, withCredentials } = this.configuration;
|
|
799
|
+
return this.httpClient.request("put", `${basePath}${localVarPath}`, {
|
|
800
|
+
context: localVarHttpContext,
|
|
801
|
+
body: saveDrawingLayerDto,
|
|
802
|
+
responseType: responseType_,
|
|
803
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
804
|
+
headers: localVarHeaders,
|
|
805
|
+
observe: observe,
|
|
806
|
+
transferCache: localVarTransferCache,
|
|
807
|
+
reportProgress: reportProgress,
|
|
808
|
+
});
|
|
809
|
+
}
|
|
810
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: BombDrawingsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
811
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: BombDrawingsApiService, providedIn: "root" });
|
|
812
|
+
}
|
|
813
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: BombDrawingsApiService, decorators: [{
|
|
814
|
+
type: Injectable,
|
|
815
|
+
args: [{
|
|
816
|
+
providedIn: "root",
|
|
817
|
+
}]
|
|
818
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
819
|
+
type: Optional
|
|
820
|
+
}, {
|
|
821
|
+
type: Inject,
|
|
822
|
+
args: [BASE_PATH]
|
|
823
|
+
}] }, { type: Configuration, decorators: [{
|
|
824
|
+
type: Optional
|
|
825
|
+
}] }] });
|
|
826
|
+
|
|
691
827
|
/**
|
|
692
828
|
* RenewAire CORES API
|
|
693
829
|
*
|
|
@@ -4314,6 +4450,90 @@ class ProjectDiscountsApiService extends BaseService {
|
|
|
4314
4450
|
reportProgress: reportProgress,
|
|
4315
4451
|
});
|
|
4316
4452
|
}
|
|
4453
|
+
projectDiscountsGetDiscountAttachmentDownloadUrl(requestParameters, observe = "body", reportProgress = false, options) {
|
|
4454
|
+
const projectDiscountId = requestParameters?.projectDiscountId;
|
|
4455
|
+
if (projectDiscountId === null || projectDiscountId === undefined) {
|
|
4456
|
+
throw new Error("Required parameter projectDiscountId was null or undefined when calling projectDiscountsGetDiscountAttachmentDownloadUrl.");
|
|
4457
|
+
}
|
|
4458
|
+
const attachmentId = requestParameters?.attachmentId;
|
|
4459
|
+
if (attachmentId === null || attachmentId === undefined) {
|
|
4460
|
+
throw new Error("Required parameter attachmentId was null or undefined when calling projectDiscountsGetDiscountAttachmentDownloadUrl.");
|
|
4461
|
+
}
|
|
4462
|
+
let localVarHeaders = this.defaultHeaders;
|
|
4463
|
+
// authentication (Bearer) required
|
|
4464
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
4465
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
4466
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
4467
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
4468
|
+
}
|
|
4469
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
4470
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
4471
|
+
let responseType_ = "json";
|
|
4472
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
4473
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
4474
|
+
responseType_ = "text";
|
|
4475
|
+
}
|
|
4476
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
4477
|
+
responseType_ = "json";
|
|
4478
|
+
}
|
|
4479
|
+
else {
|
|
4480
|
+
responseType_ = "blob";
|
|
4481
|
+
}
|
|
4482
|
+
}
|
|
4483
|
+
let localVarPath = `/api/project-discounts/${this.configuration.encodeParam({ name: "projectDiscountId", value: projectDiscountId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}/attachments/${this.configuration.encodeParam({ name: "attachmentId", value: attachmentId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32" })}`;
|
|
4484
|
+
const { basePath, withCredentials } = this.configuration;
|
|
4485
|
+
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
4486
|
+
context: localVarHttpContext,
|
|
4487
|
+
responseType: responseType_,
|
|
4488
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
4489
|
+
headers: localVarHeaders,
|
|
4490
|
+
observe: observe,
|
|
4491
|
+
transferCache: localVarTransferCache,
|
|
4492
|
+
reportProgress: reportProgress,
|
|
4493
|
+
});
|
|
4494
|
+
}
|
|
4495
|
+
projectDiscountsGetDiscountAttachmentPreviewUrl(requestParameters, observe = "body", reportProgress = false, options) {
|
|
4496
|
+
const projectDiscountId = requestParameters?.projectDiscountId;
|
|
4497
|
+
if (projectDiscountId === null || projectDiscountId === undefined) {
|
|
4498
|
+
throw new Error("Required parameter projectDiscountId was null or undefined when calling projectDiscountsGetDiscountAttachmentPreviewUrl.");
|
|
4499
|
+
}
|
|
4500
|
+
const attachmentId = requestParameters?.attachmentId;
|
|
4501
|
+
if (attachmentId === null || attachmentId === undefined) {
|
|
4502
|
+
throw new Error("Required parameter attachmentId was null or undefined when calling projectDiscountsGetDiscountAttachmentPreviewUrl.");
|
|
4503
|
+
}
|
|
4504
|
+
let localVarHeaders = this.defaultHeaders;
|
|
4505
|
+
// authentication (Bearer) required
|
|
4506
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
4507
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
4508
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
4509
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
4510
|
+
}
|
|
4511
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
4512
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
4513
|
+
let responseType_ = "json";
|
|
4514
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
4515
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
4516
|
+
responseType_ = "text";
|
|
4517
|
+
}
|
|
4518
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
4519
|
+
responseType_ = "json";
|
|
4520
|
+
}
|
|
4521
|
+
else {
|
|
4522
|
+
responseType_ = "blob";
|
|
4523
|
+
}
|
|
4524
|
+
}
|
|
4525
|
+
let localVarPath = `/api/project-discounts/${this.configuration.encodeParam({ name: "projectDiscountId", value: projectDiscountId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}/attachments/${this.configuration.encodeParam({ name: "attachmentId", value: attachmentId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32" })}/preview`;
|
|
4526
|
+
const { basePath, withCredentials } = this.configuration;
|
|
4527
|
+
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
4528
|
+
context: localVarHttpContext,
|
|
4529
|
+
responseType: responseType_,
|
|
4530
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
4531
|
+
headers: localVarHeaders,
|
|
4532
|
+
observe: observe,
|
|
4533
|
+
transferCache: localVarTransferCache,
|
|
4534
|
+
reportProgress: reportProgress,
|
|
4535
|
+
});
|
|
4536
|
+
}
|
|
4317
4537
|
projectDiscountsReviewProjectDiscount(requestParameters, observe = "body", reportProgress = false, options) {
|
|
4318
4538
|
const projectDiscountId = requestParameters?.projectDiscountId;
|
|
4319
4539
|
if (projectDiscountId === null || projectDiscountId === undefined) {
|
|
@@ -11724,6 +11944,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
11724
11944
|
const APIS = [
|
|
11725
11945
|
AuditLogsApiService,
|
|
11726
11946
|
AuthApiService,
|
|
11947
|
+
BombDrawingsApiService,
|
|
11727
11948
|
BombMaterialsApiService,
|
|
11728
11949
|
BombParametersApiService,
|
|
11729
11950
|
BombRoutingsApiService,
|
|
@@ -12103,6 +12324,16 @@ var CoolingDesignBasis;
|
|
|
12103
12324
|
* Do not edit the class manually.
|
|
12104
12325
|
*/
|
|
12105
12326
|
|
|
12327
|
+
/**
|
|
12328
|
+
* RenewAire CORES API
|
|
12329
|
+
*
|
|
12330
|
+
* Contact: renewaire@saritasa.com
|
|
12331
|
+
*
|
|
12332
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12333
|
+
* https://openapi-generator.tech
|
|
12334
|
+
* Do not edit the class manually.
|
|
12335
|
+
*/
|
|
12336
|
+
|
|
12106
12337
|
/**
|
|
12107
12338
|
* RenewAire CORES API
|
|
12108
12339
|
*
|
|
@@ -12204,7 +12435,7 @@ var FeedbackType;
|
|
|
12204
12435
|
* Do not edit the class manually.
|
|
12205
12436
|
*/
|
|
12206
12437
|
/**
|
|
12207
|
-
* File type.<br />FileType<br />0 = RsdRegionDocument<br />1 = ControllerProgram<br />2 = RepSalesReport<br />3 = ProjectNoteAttachment<br />4 = BidStatusAttachment<br />5 = SchematicLayerFile<br />6 = QualifiedSpecification<br />7 = ProjectDiscountAttachment
|
|
12438
|
+
* File type.<br />FileType<br />0 = RsdRegionDocument<br />1 = ControllerProgram<br />2 = RepSalesReport<br />3 = ProjectNoteAttachment<br />4 = BidStatusAttachment<br />5 = SchematicLayerFile<br />6 = QualifiedSpecification<br />7 = ProjectDiscountAttachment<br />8 = DrawingLayerFile
|
|
12208
12439
|
*/
|
|
12209
12440
|
var FileType;
|
|
12210
12441
|
(function (FileType) {
|
|
@@ -12216,6 +12447,7 @@ var FileType;
|
|
|
12216
12447
|
FileType["SchematicLayerFile"] = "SchematicLayerFile";
|
|
12217
12448
|
FileType["QualifiedSpecification"] = "QualifiedSpecification";
|
|
12218
12449
|
FileType["ProjectDiscountAttachment"] = "ProjectDiscountAttachment";
|
|
12450
|
+
FileType["DrawingLayerFile"] = "DrawingLayerFile";
|
|
12219
12451
|
})(FileType || (FileType = {}));
|
|
12220
12452
|
|
|
12221
12453
|
/**
|
|
@@ -12562,7 +12794,7 @@ var ParameterType;
|
|
|
12562
12794
|
* Do not edit the class manually.
|
|
12563
12795
|
*/
|
|
12564
12796
|
/**
|
|
12565
|
-
* Group/user permission.<br />Permission<br />0 = SystemAdmin<br />1 = ManageUsers<br />2 = ViewAllProjectsInTheSystem<br />3 = EditAllProjectsInTheSystem<br />4 = ViewOtherGroupMembersProjects<br />5 = EditEachOthersGroupMembersProjects<br />8 = ViewQsApplications<br />9 = ViewPricing<br />10 = ConfigurationAccessDoas<br />11 = ConfigurationAccessCommercial<br />12 = ConfigurationAccessResidential<br />13 = ConfigurationAccessApplied<br />14 = ConfigurationAccessElectricHeaters<br />15 = ConfigurationAccessGasFurnaces<br />16 = ConfigurationAccessCoilModules<br />17 = ConfigurationAccessAccessories<br />18 = ConfigurationAccessServiceParts<br />19 = ConfigurationAccessSpUnits<br />20 = ConfigurationAccessJciResUnits<br />21 = ConfigurationAccessJciComUnits<br />22 = ConfigurationAccessTraneUnits<br />23 = EditSystemGroups<br />24 = ViewAllHiddenFieldsExtraData<br />25 = ViewExtraCalculationData<br />26 = EditCertainReadonlyFields<br />27 = ViewRenewAireOnlyData<br />28 = ViewAhriCertificationItemsAndData<br />33 = AccessSiteInMaintenanceMode<br />34 = ViewSoldToSelectionAndInformation<br />35 = Rep<br />36 = RequestAccountUpgrade<br />37 = EditUserAccountEmailAddress<br />39 = ManageRsdRegions<br />40 = ViewRsdRegions<br />41 = ManageRepTerritories<br />42 = ViewRepTerritories<br />43 = ViewRelatedRepTerritories<br />44 = ManageRepContacts<br />45 = ViewRepContacts<br />46 = ManageStateProvinces<br />47 = ViewStateProvinces<br />48 = ManageGroups<br />49 = ViewAllGroups<br />50 = ViewRelatedGroups<br />51 = ViewAllUsers<br />52 = ViewRelatedUsers<br />53 = ViewRenewAireLeadTimesData<br />54 = ViewSpLeadTimesData<br />55 = ViewRepReports<br />57 = AccessPartnerPortal<br />58 = AccessExchangerPerformanceApp<br />59 = ViewDefrost<br />60 = ViewAshraeOptions<br />61 = ViewRolesTable<br />62 = ViewPermissionBundles<br />63 = EditUsers<br />64 = BombMaterialsAdmin<br />65 = BombRoutingAdmin<br />66 = BombSchematicsAdmin<br />67 = BombValidationsAdmin<br />68 = AccessBomb<br />100 = SubmitOrder<br />101 = ImportOrdersToErp<br />104 = ViewDiscountWorkflows<br />105 = AddUnrestrictedDiscountsToProjects<br />106 = AddLimitedDiscountsToProjects<br />107 = ApproveUnrestrictedDiscountsInProjects<br />108 = ApproveLimitedDiscountsInProjects<br />109 = SubmitQsApplication<br />110 = QsBonus<br />111 = QsDiscount<br />113 = ApproveQsApplications<br />114 = MakeObsoleteLineItemsValid<br />115 = GenerateQuotes<br />116 = ViewAllProjectDownloadHistory<br />117 = ViewEnergyAnalysis<br />118 = ViewExtraQuoteOptions<br />119 = ViewShipToSelectionAndInformation<br />120 = ViewProjectRevisions<br />121 = AddProjectRevisions<br />122 = ViewLinkedProjects<br />123 = AddLinkedProjects<br />124 = TakeOverEditingFromOtherUsers<br />125 = AccessProjectSalesChannelNotes
|
|
12797
|
+
* Group/user permission.<br />Permission<br />0 = SystemAdmin<br />1 = ManageUsers<br />2 = ViewAllProjectsInTheSystem<br />3 = EditAllProjectsInTheSystem<br />4 = ViewOtherGroupMembersProjects<br />5 = EditEachOthersGroupMembersProjects<br />8 = ViewQsApplications<br />9 = ViewPricing<br />10 = ConfigurationAccessDoas<br />11 = ConfigurationAccessCommercial<br />12 = ConfigurationAccessResidential<br />13 = ConfigurationAccessApplied<br />14 = ConfigurationAccessElectricHeaters<br />15 = ConfigurationAccessGasFurnaces<br />16 = ConfigurationAccessCoilModules<br />17 = ConfigurationAccessAccessories<br />18 = ConfigurationAccessServiceParts<br />19 = ConfigurationAccessSpUnits<br />20 = ConfigurationAccessJciResUnits<br />21 = ConfigurationAccessJciComUnits<br />22 = ConfigurationAccessTraneUnits<br />23 = EditSystemGroups<br />24 = ViewAllHiddenFieldsExtraData<br />25 = ViewExtraCalculationData<br />26 = EditCertainReadonlyFields<br />27 = ViewRenewAireOnlyData<br />28 = ViewAhriCertificationItemsAndData<br />33 = AccessSiteInMaintenanceMode<br />34 = ViewSoldToSelectionAndInformation<br />35 = Rep<br />36 = RequestAccountUpgrade<br />37 = EditUserAccountEmailAddress<br />39 = ManageRsdRegions<br />40 = ViewRsdRegions<br />41 = ManageRepTerritories<br />42 = ViewRepTerritories<br />43 = ViewRelatedRepTerritories<br />44 = ManageRepContacts<br />45 = ViewRepContacts<br />46 = ManageStateProvinces<br />47 = ViewStateProvinces<br />48 = ManageGroups<br />49 = ViewAllGroups<br />50 = ViewRelatedGroups<br />51 = ViewAllUsers<br />52 = ViewRelatedUsers<br />53 = ViewRenewAireLeadTimesData<br />54 = ViewSpLeadTimesData<br />55 = ViewRepReports<br />57 = AccessPartnerPortal<br />58 = AccessExchangerPerformanceApp<br />59 = ViewDefrost<br />60 = ViewAshraeOptions<br />61 = ViewRolesTable<br />62 = ViewPermissionBundles<br />63 = EditUsers<br />64 = BombMaterialsAdmin<br />65 = BombRoutingAdmin<br />66 = BombSchematicsAdmin<br />67 = BombValidationsAdmin<br />68 = AccessBomb<br />69 = BombDrawingsAdmin<br />100 = SubmitOrder<br />101 = ImportOrdersToErp<br />104 = ViewDiscountWorkflows<br />105 = AddUnrestrictedDiscountsToProjects<br />106 = AddLimitedDiscountsToProjects<br />107 = ApproveUnrestrictedDiscountsInProjects<br />108 = ApproveLimitedDiscountsInProjects<br />109 = SubmitQsApplication<br />110 = QsBonus<br />111 = QsDiscount<br />113 = ApproveQsApplications<br />114 = MakeObsoleteLineItemsValid<br />115 = GenerateQuotes<br />116 = ViewAllProjectDownloadHistory<br />117 = ViewEnergyAnalysis<br />118 = ViewExtraQuoteOptions<br />119 = ViewShipToSelectionAndInformation<br />120 = ViewProjectRevisions<br />121 = AddProjectRevisions<br />122 = ViewLinkedProjects<br />123 = AddLinkedProjects<br />124 = TakeOverEditingFromOtherUsers<br />125 = AccessProjectSalesChannelNotes
|
|
12566
12798
|
*/
|
|
12567
12799
|
var Permission;
|
|
12568
12800
|
(function (Permission) {
|
|
@@ -12627,6 +12859,7 @@ var Permission;
|
|
|
12627
12859
|
Permission["BombSchematicsAdmin"] = "BombSchematicsAdmin";
|
|
12628
12860
|
Permission["BombValidationsAdmin"] = "BombValidationsAdmin";
|
|
12629
12861
|
Permission["AccessBomb"] = "AccessBomb";
|
|
12862
|
+
Permission["BombDrawingsAdmin"] = "BombDrawingsAdmin";
|
|
12630
12863
|
Permission["SubmitOrder"] = "SubmitOrder";
|
|
12631
12864
|
Permission["ImportOrdersToErp"] = "ImportOrdersToErp";
|
|
12632
12865
|
Permission["ViewDiscountWorkflows"] = "ViewDiscountWorkflows";
|
|
@@ -13488,5 +13721,5 @@ function provideApi(configOrBasePath) {
|
|
|
13488
13721
|
* Generated bundle index. Do not edit.
|
|
13489
13722
|
*/
|
|
13490
13723
|
|
|
13491
|
-
export { APIS, AddressCountry, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH, BombMaterialsApiService, BombParametersApiService, BombRoutingsApiService, BombSchematicsApiService, BombValidationsApiService, BuildingCategory, BuildingType, COLLECTION_FORMATS, Configuration, ConstructionOrderType, ControllerProgramReleaseType, ControllerProgramType, ControllerProgramsApiService, CoolingDesignBasis, DesignWeatherMode, FeedbackType, FeedbacksApiService, FileType, GroupCustomerType, GroupType, GroupsApiService, KnownContactsApiService, Language, LeadTimeType, LeadTimesApiService, MaintenanceApiService, ModelNumberValidationErrorType, OperationType, OperatorType, ParameterKind, ParameterType, Permission, PermissionBundlesApiService, PermissionsApiService, ProjectAccessLevel, ProjectBidStatusType, ProjectBidStatusesApiService, ProjectDiscountStatus, ProjectDiscountType, ProjectDiscountsApiService, ProjectLineStatus, ProjectLineType, ProjectLinesApiService, ProjectLinksApiService, ProjectLogType, ProjectNoteType, ProjectNotesApiService, ProjectQualifiedSpecificationsApiService, ProjectRevisionsApiService, ProjectSharingAccessLevel, ProjectSharingApiService, ProjectShippingApiService, ProjectSoldToApiService, ProjectStatus, ProjectStatusesApiService, ProjectsApiService, QualifiedSpecificationStatus, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepSalesReportsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, S3ApiService, StaticFilesApiService, UnitSystem, UserStatus, UserTablesApiService, UsersApiService, UsersManagementApiService, provideApi };
|
|
13724
|
+
export { APIS, AddressCountry, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH, BombDrawingsApiService, BombMaterialsApiService, BombParametersApiService, BombRoutingsApiService, BombSchematicsApiService, BombValidationsApiService, BuildingCategory, BuildingType, COLLECTION_FORMATS, Configuration, ConstructionOrderType, ControllerProgramReleaseType, ControllerProgramType, ControllerProgramsApiService, CoolingDesignBasis, DesignWeatherMode, FeedbackType, FeedbacksApiService, FileType, GroupCustomerType, GroupType, GroupsApiService, KnownContactsApiService, Language, LeadTimeType, LeadTimesApiService, MaintenanceApiService, ModelNumberValidationErrorType, OperationType, OperatorType, ParameterKind, ParameterType, Permission, PermissionBundlesApiService, PermissionsApiService, ProjectAccessLevel, ProjectBidStatusType, ProjectBidStatusesApiService, ProjectDiscountStatus, ProjectDiscountType, ProjectDiscountsApiService, ProjectLineStatus, ProjectLineType, ProjectLinesApiService, ProjectLinksApiService, ProjectLogType, ProjectNoteType, ProjectNotesApiService, ProjectQualifiedSpecificationsApiService, ProjectRevisionsApiService, ProjectSharingAccessLevel, ProjectSharingApiService, ProjectShippingApiService, ProjectSoldToApiService, ProjectStatus, ProjectStatusesApiService, ProjectsApiService, QualifiedSpecificationStatus, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepSalesReportsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, S3ApiService, StaticFilesApiService, UnitSystem, UserStatus, UserTablesApiService, UsersApiService, UsersManagementApiService, provideApi };
|
|
13492
13725
|
//# sourceMappingURL=saritasa-renewaire-frontend-sdk.mjs.map
|