@saritasa/renewaire-frontend-sdk 0.237.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
|
*
|
|
@@ -11808,6 +11944,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
11808
11944
|
const APIS = [
|
|
11809
11945
|
AuditLogsApiService,
|
|
11810
11946
|
AuthApiService,
|
|
11947
|
+
BombDrawingsApiService,
|
|
11811
11948
|
BombMaterialsApiService,
|
|
11812
11949
|
BombParametersApiService,
|
|
11813
11950
|
BombRoutingsApiService,
|
|
@@ -12187,6 +12324,16 @@ var CoolingDesignBasis;
|
|
|
12187
12324
|
* Do not edit the class manually.
|
|
12188
12325
|
*/
|
|
12189
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
|
+
|
|
12190
12337
|
/**
|
|
12191
12338
|
* RenewAire CORES API
|
|
12192
12339
|
*
|
|
@@ -12288,7 +12435,7 @@ var FeedbackType;
|
|
|
12288
12435
|
* Do not edit the class manually.
|
|
12289
12436
|
*/
|
|
12290
12437
|
/**
|
|
12291
|
-
* 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
|
|
12292
12439
|
*/
|
|
12293
12440
|
var FileType;
|
|
12294
12441
|
(function (FileType) {
|
|
@@ -12300,6 +12447,7 @@ var FileType;
|
|
|
12300
12447
|
FileType["SchematicLayerFile"] = "SchematicLayerFile";
|
|
12301
12448
|
FileType["QualifiedSpecification"] = "QualifiedSpecification";
|
|
12302
12449
|
FileType["ProjectDiscountAttachment"] = "ProjectDiscountAttachment";
|
|
12450
|
+
FileType["DrawingLayerFile"] = "DrawingLayerFile";
|
|
12303
12451
|
})(FileType || (FileType = {}));
|
|
12304
12452
|
|
|
12305
12453
|
/**
|
|
@@ -12646,7 +12794,7 @@ var ParameterType;
|
|
|
12646
12794
|
* Do not edit the class manually.
|
|
12647
12795
|
*/
|
|
12648
12796
|
/**
|
|
12649
|
-
* 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
|
|
12650
12798
|
*/
|
|
12651
12799
|
var Permission;
|
|
12652
12800
|
(function (Permission) {
|
|
@@ -12711,6 +12859,7 @@ var Permission;
|
|
|
12711
12859
|
Permission["BombSchematicsAdmin"] = "BombSchematicsAdmin";
|
|
12712
12860
|
Permission["BombValidationsAdmin"] = "BombValidationsAdmin";
|
|
12713
12861
|
Permission["AccessBomb"] = "AccessBomb";
|
|
12862
|
+
Permission["BombDrawingsAdmin"] = "BombDrawingsAdmin";
|
|
12714
12863
|
Permission["SubmitOrder"] = "SubmitOrder";
|
|
12715
12864
|
Permission["ImportOrdersToErp"] = "ImportOrdersToErp";
|
|
12716
12865
|
Permission["ViewDiscountWorkflows"] = "ViewDiscountWorkflows";
|
|
@@ -13572,5 +13721,5 @@ function provideApi(configOrBasePath) {
|
|
|
13572
13721
|
* Generated bundle index. Do not edit.
|
|
13573
13722
|
*/
|
|
13574
13723
|
|
|
13575
|
-
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 };
|
|
13576
13725
|
//# sourceMappingURL=saritasa-renewaire-frontend-sdk.mjs.map
|