@saritasa/renewaire-frontend-sdk 0.156.0 → 0.158.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
@@ -1,5 +1,5 @@
1
- # @@saritasa/renewaire-frontend-sdk@0.156.0
1
+ # @@saritasa/renewaire-frontend-sdk@0.158.0
2
2
 
3
3
  ```bash
4
- npm install @saritasa/renewaire-frontend-sdk@0.156.0 --save
4
+ npm install @saritasa/renewaire-frontend-sdk@0.158.0 --save
5
5
  ```
@@ -1892,6 +1892,91 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.13", ngImpo
1892
1892
  type: Optional
1893
1893
  }] }] });
1894
1894
 
1895
+ /**
1896
+ * RenewAire CORES API
1897
+ *
1898
+ * Contact: renewaire@saritasa.com
1899
+ *
1900
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1901
+ * https://openapi-generator.tech
1902
+ * Do not edit the class manually.
1903
+ */
1904
+ /* tslint:disable:no-unused-variable member-ordering */
1905
+ class MaterialsApiService extends BaseService {
1906
+ httpClient;
1907
+ constructor(httpClient, basePath, configuration) {
1908
+ super(basePath, configuration);
1909
+ this.httpClient = httpClient;
1910
+ }
1911
+ materialsCreateMaterialLayer(requestParameters, observe = "body", reportProgress = false, options) {
1912
+ const createMaterialLayerCommand = requestParameters?.createMaterialLayerCommand;
1913
+ let localVarHeaders = this.defaultHeaders;
1914
+ // authentication (Bearer) required
1915
+ localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
1916
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
1917
+ this.configuration.selectHeaderAccept([
1918
+ "text/plain",
1919
+ "application/json",
1920
+ "text/json",
1921
+ ]);
1922
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
1923
+ localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
1924
+ }
1925
+ const localVarHttpContext = options?.context ?? new HttpContext();
1926
+ const localVarTransferCache = options?.transferCache ?? true;
1927
+ // to determine the Content-Type header
1928
+ const consumes = [
1929
+ "application/json-patch+json",
1930
+ "application/json",
1931
+ "text/json",
1932
+ "application/*+json",
1933
+ ];
1934
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
1935
+ if (httpContentTypeSelected !== undefined) {
1936
+ localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
1937
+ }
1938
+ let responseType_ = "json";
1939
+ if (localVarHttpHeaderAcceptSelected) {
1940
+ if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
1941
+ responseType_ = "text";
1942
+ }
1943
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
1944
+ responseType_ = "json";
1945
+ }
1946
+ else {
1947
+ responseType_ = "blob";
1948
+ }
1949
+ }
1950
+ let localVarPath = `/api/materials`;
1951
+ const { basePath, withCredentials } = this.configuration;
1952
+ return this.httpClient.request("post", `${basePath}${localVarPath}`, {
1953
+ context: localVarHttpContext,
1954
+ body: createMaterialLayerCommand,
1955
+ responseType: responseType_,
1956
+ ...(withCredentials ? { withCredentials } : {}),
1957
+ headers: localVarHeaders,
1958
+ observe: observe,
1959
+ transferCache: localVarTransferCache,
1960
+ reportProgress: reportProgress,
1961
+ });
1962
+ }
1963
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.13", ngImport: i0, type: MaterialsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1964
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.13", ngImport: i0, type: MaterialsApiService, providedIn: "root" });
1965
+ }
1966
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.13", ngImport: i0, type: MaterialsApiService, decorators: [{
1967
+ type: Injectable,
1968
+ args: [{
1969
+ providedIn: "root",
1970
+ }]
1971
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
1972
+ type: Optional
1973
+ }, {
1974
+ type: Inject,
1975
+ args: [BASE_PATH]
1976
+ }] }, { type: Configuration, decorators: [{
1977
+ type: Optional
1978
+ }] }] });
1979
+
1895
1980
  /**
1896
1981
  * RenewAire CORES API
1897
1982
  *
@@ -3784,6 +3869,49 @@ class ProjectShippingApiService extends BaseService {
3784
3869
  reportProgress: reportProgress,
3785
3870
  });
3786
3871
  }
3872
+ projectShippingGetLocations(requestParameters, observe = "body", reportProgress = false, options) {
3873
+ const projectRevisionId = requestParameters?.projectRevisionId;
3874
+ if (projectRevisionId === null || projectRevisionId === undefined) {
3875
+ throw new Error("Required parameter projectRevisionId was null or undefined when calling projectShippingGetLocations.");
3876
+ }
3877
+ let localVarHeaders = this.defaultHeaders;
3878
+ // authentication (Bearer) required
3879
+ localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
3880
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
3881
+ this.configuration.selectHeaderAccept([
3882
+ "text/plain",
3883
+ "application/json",
3884
+ "text/json",
3885
+ ]);
3886
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
3887
+ localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
3888
+ }
3889
+ const localVarHttpContext = options?.context ?? new HttpContext();
3890
+ const localVarTransferCache = options?.transferCache ?? true;
3891
+ let responseType_ = "json";
3892
+ if (localVarHttpHeaderAcceptSelected) {
3893
+ if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
3894
+ responseType_ = "text";
3895
+ }
3896
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
3897
+ responseType_ = "json";
3898
+ }
3899
+ else {
3900
+ responseType_ = "blob";
3901
+ }
3902
+ }
3903
+ let localVarPath = `/api/project-shipping/${this.configuration.encodeParam({ name: "projectRevisionId", value: projectRevisionId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}/locations`;
3904
+ const { basePath, withCredentials } = this.configuration;
3905
+ return this.httpClient.request("get", `${basePath}${localVarPath}`, {
3906
+ context: localVarHttpContext,
3907
+ responseType: responseType_,
3908
+ ...(withCredentials ? { withCredentials } : {}),
3909
+ headers: localVarHeaders,
3910
+ observe: observe,
3911
+ transferCache: localVarTransferCache,
3912
+ reportProgress: reportProgress,
3913
+ });
3914
+ }
3787
3915
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.13", ngImport: i0, type: ProjectShippingApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
3788
3916
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.13", ngImport: i0, type: ProjectShippingApiService, providedIn: "root" });
3789
3917
  }
@@ -3801,6 +3929,91 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.13", ngImpo
3801
3929
  type: Optional
3802
3930
  }] }] });
3803
3931
 
3932
+ /**
3933
+ * RenewAire CORES API
3934
+ *
3935
+ * Contact: renewaire@saritasa.com
3936
+ *
3937
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3938
+ * https://openapi-generator.tech
3939
+ * Do not edit the class manually.
3940
+ */
3941
+ /* tslint:disable:no-unused-variable member-ordering */
3942
+ class ProjectSoldToApiService extends BaseService {
3943
+ httpClient;
3944
+ constructor(httpClient, basePath, configuration) {
3945
+ super(basePath, configuration);
3946
+ this.httpClient = httpClient;
3947
+ }
3948
+ projectSoldToSearchSoldTo(requestParameters, observe = "body", reportProgress = false, options) {
3949
+ const searchSoldToQueryFilter = requestParameters?.searchSoldToQueryFilter;
3950
+ let localVarHeaders = this.defaultHeaders;
3951
+ // authentication (Bearer) required
3952
+ localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
3953
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
3954
+ this.configuration.selectHeaderAccept([
3955
+ "text/plain",
3956
+ "application/json",
3957
+ "text/json",
3958
+ ]);
3959
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
3960
+ localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
3961
+ }
3962
+ const localVarHttpContext = options?.context ?? new HttpContext();
3963
+ const localVarTransferCache = options?.transferCache ?? true;
3964
+ // to determine the Content-Type header
3965
+ const consumes = [
3966
+ "application/json-patch+json",
3967
+ "application/json",
3968
+ "text/json",
3969
+ "application/*+json",
3970
+ ];
3971
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
3972
+ if (httpContentTypeSelected !== undefined) {
3973
+ localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
3974
+ }
3975
+ let responseType_ = "json";
3976
+ if (localVarHttpHeaderAcceptSelected) {
3977
+ if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
3978
+ responseType_ = "text";
3979
+ }
3980
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
3981
+ responseType_ = "json";
3982
+ }
3983
+ else {
3984
+ responseType_ = "blob";
3985
+ }
3986
+ }
3987
+ let localVarPath = `/api/project-sold-to`;
3988
+ const { basePath, withCredentials } = this.configuration;
3989
+ return this.httpClient.request("get", `${basePath}${localVarPath}`, {
3990
+ context: localVarHttpContext,
3991
+ body: searchSoldToQueryFilter,
3992
+ responseType: responseType_,
3993
+ ...(withCredentials ? { withCredentials } : {}),
3994
+ headers: localVarHeaders,
3995
+ observe: observe,
3996
+ transferCache: localVarTransferCache,
3997
+ reportProgress: reportProgress,
3998
+ });
3999
+ }
4000
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.13", ngImport: i0, type: ProjectSoldToApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
4001
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.13", ngImport: i0, type: ProjectSoldToApiService, providedIn: "root" });
4002
+ }
4003
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.13", ngImport: i0, type: ProjectSoldToApiService, decorators: [{
4004
+ type: Injectable,
4005
+ args: [{
4006
+ providedIn: "root",
4007
+ }]
4008
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
4009
+ type: Optional
4010
+ }, {
4011
+ type: Inject,
4012
+ args: [BASE_PATH]
4013
+ }] }, { type: Configuration, decorators: [{
4014
+ type: Optional
4015
+ }] }] });
4016
+
3804
4017
  /**
3805
4018
  * RenewAire CORES API
3806
4019
  *
@@ -9100,6 +9313,7 @@ const APIS = [
9100
9313
  KnownContactsApiService,
9101
9314
  LeadTimesApiService,
9102
9315
  MaintenanceApiService,
9316
+ MaterialsApiService,
9103
9317
  PermissionBundlesApiService,
9104
9318
  PermissionsApiService,
9105
9319
  ProjectBidStatusesApiService,
@@ -9108,6 +9322,7 @@ const APIS = [
9108
9322
  ProjectRevisionsApiService,
9109
9323
  ProjectSharingApiService,
9110
9324
  ProjectShippingApiService,
9325
+ ProjectSoldToApiService,
9111
9326
  ProjectStatusesApiService,
9112
9327
  ProjectsApiService,
9113
9328
  RegionsApiService,
@@ -9409,6 +9624,26 @@ var CoolingDesignBasis;
9409
9624
  CoolingDesignBasis["Dehumidification"] = "Dehumidification";
9410
9625
  })(CoolingDesignBasis || (CoolingDesignBasis = {}));
9411
9626
 
9627
+ /**
9628
+ * RenewAire CORES API
9629
+ *
9630
+ * Contact: renewaire@saritasa.com
9631
+ *
9632
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9633
+ * https://openapi-generator.tech
9634
+ * Do not edit the class manually.
9635
+ */
9636
+
9637
+ /**
9638
+ * RenewAire CORES API
9639
+ *
9640
+ * Contact: renewaire@saritasa.com
9641
+ *
9642
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9643
+ * https://openapi-generator.tech
9644
+ * Do not edit the class manually.
9645
+ */
9646
+
9412
9647
  /**
9413
9648
  * RenewAire CORES API
9414
9649
  *
@@ -9511,6 +9746,16 @@ var FileType;
9511
9746
  * Do not edit the class manually.
9512
9747
  */
9513
9748
 
9749
+ /**
9750
+ * RenewAire CORES API
9751
+ *
9752
+ * Contact: renewaire@saritasa.com
9753
+ *
9754
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9755
+ * https://openapi-generator.tech
9756
+ * Do not edit the class manually.
9757
+ */
9758
+
9514
9759
  /**
9515
9760
  * RenewAire CORES API
9516
9761
  *
@@ -9690,7 +9935,7 @@ var OperationType;
9690
9935
  * Do not edit the class manually.
9691
9936
  */
9692
9937
  /**
9693
- * Group/user permission.<br />Permission<br />0 = SystemAdmin<br />1 = ManageUsers<br />2 = ViewAllProjectsInTheSystem<br />3 = EditAllProjectsInTheSystem<br />4 = ViewOtherGroupMembersProjects<br />5 = EditEachOthersGroupMembersProjects<br />6 = AnswerIncomingChats<br />7 = QsEligible<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 />29 = ReassignProjects<br />30 = CreateNewProjects<br />31 = CreateNewLineItems<br />32 = ViewClosedLines<br />33 = AccessSiteInMaintenanceMode<br />34 = ViewSoldToSelectionAndInformation<br />35 = Rep<br />36 = RequestAccountUpgrade<br />37 = EditUserAccountEmailAddress<br />38 = ManageAllUserGroups<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 />56 = ViewFinancialReports<br />57 = AccessPartnerPortal<br />58 = AccessExchangerPerformanceApp<br />59 = ViewDefrost<br />60 = ViewAshraeOptions<br />61 = ViewRolesTable<br />62 = ViewPermissionBundles<br />63 = EditUsers<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
9938
+ * Group/user permission.<br />Permission<br />0 = SystemAdmin<br />1 = ManageUsers<br />2 = ViewAllProjectsInTheSystem<br />3 = EditAllProjectsInTheSystem<br />4 = ViewOtherGroupMembersProjects<br />5 = EditEachOthersGroupMembersProjects<br />6 = AnswerIncomingChats<br />7 = QsEligible<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 />29 = ReassignProjects<br />30 = CreateNewProjects<br />31 = CreateNewLineItems<br />32 = ViewClosedLines<br />33 = AccessSiteInMaintenanceMode<br />34 = ViewSoldToSelectionAndInformation<br />35 = Rep<br />36 = RequestAccountUpgrade<br />37 = EditUserAccountEmailAddress<br />38 = ManageAllUserGroups<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 />56 = ViewFinancialReports<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 />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
9694
9939
  */
9695
9940
  var Permission;
9696
9941
  (function (Permission) {
@@ -9758,6 +10003,7 @@ var Permission;
9758
10003
  Permission["ViewRolesTable"] = "ViewRolesTable";
9759
10004
  Permission["ViewPermissionBundles"] = "ViewPermissionBundles";
9760
10005
  Permission["EditUsers"] = "EditUsers";
10006
+ Permission["BombMaterialsAdmin"] = "BombMaterialsAdmin";
9761
10007
  Permission["SubmitOrder"] = "SubmitOrder";
9762
10008
  Permission["ImportOrdersToErp"] = "ImportOrdersToErp";
9763
10009
  Permission["ViewDiscountWorkflows"] = "ViewDiscountWorkflows";
@@ -10265,6 +10511,16 @@ var RegistrationStatus;
10265
10511
  * Do not edit the class manually.
10266
10512
  */
10267
10513
 
10514
+ /**
10515
+ * RenewAire CORES API
10516
+ *
10517
+ * Contact: renewaire@saritasa.com
10518
+ *
10519
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10520
+ * https://openapi-generator.tech
10521
+ * Do not edit the class manually.
10522
+ */
10523
+
10268
10524
  /**
10269
10525
  * RenewAire CORES API
10270
10526
  *
@@ -10424,5 +10680,5 @@ function provideApi(configOrBasePath) {
10424
10680
  * Generated bundle index. Do not edit.
10425
10681
  */
10426
10682
 
10427
- export { APIS, AddressCountry, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH, BuildingCategory, BuildingType, COLLECTION_FORMATS, Configuration, ConstructionOrderType, ControllerProgramReleaseType, ControllerProgramType, ControllerProgramsApiService, CoolingDesignBasis, DesignWeatherMode, FeedbackType, FeedbacksApiService, FileType, GroupCustomerType, GroupType, GroupsApiService, KnownContactsApiService, Language, LeadTimeType, LeadTimesApiService, MaintenanceApiService, OperationType, Permission, PermissionBundlesApiService, PermissionsApiService, ProjectBidStatusType, ProjectBidStatusesApiService, ProjectLinksApiService, ProjectLogType, ProjectNoteType, ProjectNotesApiService, ProjectRevisionsApiService, ProjectSharingAccessLevel, ProjectSharingApiService, ProjectShippingApiService, ProjectStatus, ProjectStatusesApiService, ProjectsApiService, QualifiedSpecificationStatus, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepSalesReportsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, S3ApiService, StaticFilesApiService, UnitSystem, UserStatus, UserTablesApiService, UsersApiService, UsersManagementApiService, provideApi };
10683
+ export { APIS, AddressCountry, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH, BuildingCategory, BuildingType, COLLECTION_FORMATS, Configuration, ConstructionOrderType, ControllerProgramReleaseType, ControllerProgramType, ControllerProgramsApiService, CoolingDesignBasis, DesignWeatherMode, FeedbackType, FeedbacksApiService, FileType, GroupCustomerType, GroupType, GroupsApiService, KnownContactsApiService, Language, LeadTimeType, LeadTimesApiService, MaintenanceApiService, MaterialsApiService, OperationType, Permission, PermissionBundlesApiService, PermissionsApiService, ProjectBidStatusType, ProjectBidStatusesApiService, ProjectLinksApiService, ProjectLogType, ProjectNoteType, ProjectNotesApiService, 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 };
10428
10684
  //# sourceMappingURL=saritasa-renewaire-frontend-sdk.mjs.map