@saritasa/renewaire-frontend-sdk 0.257.0 → 0.259.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 +2 -2
- package/fesm2022/saritasa-renewaire-frontend-sdk.mjs +406 -283
- package/fesm2022/saritasa-renewaire-frontend-sdk.mjs.map +1 -1
- package/index.d.ts +555 -456
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -31,7 +31,7 @@ interface PagedListMetadata {
|
|
|
31
31
|
* Do not edit the class manually.
|
|
32
32
|
*/
|
|
33
33
|
/**
|
|
34
|
-
* Type of entity that has an ability to track its audit change log. (When adding new options in this enum, need to add a new database migration.)<br />AuditEntity<br />0 = User<br />1 = PermissionBundle<br />2 = RsdRegion<br />3 = RepTerritory<br />4 = UserGroup<br />5 = KnownContact<br />6 = ControllerProgram<br />7 = RepTerritoryRepContact<br />8 = RepTerritoryLocation<br />9 = ProjectRevision<br />10 = Project<br />11 = ProjectLine<br />12 = MaterialLayer<br />13 =
|
|
34
|
+
* Type of entity that has an ability to track its audit change log. (When adding new options in this enum, need to add a new database migration.)<br />AuditEntity<br />0 = User<br />1 = PermissionBundle<br />2 = RsdRegion<br />3 = RepTerritory<br />4 = UserGroup<br />5 = KnownContact<br />6 = ControllerProgram<br />7 = RepTerritoryRepContact<br />8 = RepTerritoryLocation<br />9 = ProjectRevision<br />10 = Project<br />11 = ProjectLine<br />12 = MaterialLayer<br />13 = DownloadLayer<br />14 = RoutingLayer<br />15 = ValidationLayer
|
|
35
35
|
*/
|
|
36
36
|
declare enum AuditEntity {
|
|
37
37
|
User = "User",
|
|
@@ -47,10 +47,9 @@ declare enum AuditEntity {
|
|
|
47
47
|
Project = "Project",
|
|
48
48
|
ProjectLine = "ProjectLine",
|
|
49
49
|
MaterialLayer = "MaterialLayer",
|
|
50
|
-
|
|
50
|
+
DownloadLayer = "DownloadLayer",
|
|
51
51
|
RoutingLayer = "RoutingLayer",
|
|
52
|
-
ValidationLayer = "ValidationLayer"
|
|
53
|
-
DrawingLayer = "DrawingLayer"
|
|
52
|
+
ValidationLayer = "ValidationLayer"
|
|
54
53
|
}
|
|
55
54
|
|
|
56
55
|
/**
|
|
@@ -126,7 +125,7 @@ interface AuditLogDto {
|
|
|
126
125
|
*/
|
|
127
126
|
timestamp: string;
|
|
128
127
|
/**
|
|
129
|
-
* Type of entity that has an ability to track its audit change log. (When adding new options in this enum, need to add a new database migration.)<br />AuditEntity<br />0 = User<br />1 = PermissionBundle<br />2 = RsdRegion<br />3 = RepTerritory<br />4 = UserGroup<br />5 = KnownContact<br />6 = ControllerProgram<br />7 = RepTerritoryRepContact<br />8 = RepTerritoryLocation<br />9 = ProjectRevision<br />10 = Project<br />11 = ProjectLine<br />12 = MaterialLayer<br />13 =
|
|
128
|
+
* Type of entity that has an ability to track its audit change log. (When adding new options in this enum, need to add a new database migration.)<br />AuditEntity<br />0 = User<br />1 = PermissionBundle<br />2 = RsdRegion<br />3 = RepTerritory<br />4 = UserGroup<br />5 = KnownContact<br />6 = ControllerProgram<br />7 = RepTerritoryRepContact<br />8 = RepTerritoryLocation<br />9 = ProjectRevision<br />10 = Project<br />11 = ProjectLine<br />12 = MaterialLayer<br />13 = DownloadLayer<br />14 = RoutingLayer<br />15 = ValidationLayer
|
|
130
129
|
*/
|
|
131
130
|
entity: AuditEntity;
|
|
132
131
|
/**
|
|
@@ -873,10 +872,10 @@ declare enum CoolingDesignBasis {
|
|
|
873
872
|
* Do not edit the class manually.
|
|
874
873
|
*/
|
|
875
874
|
/**
|
|
876
|
-
* Command to create
|
|
875
|
+
* Command to create download layer.
|
|
877
876
|
*/
|
|
878
|
-
interface
|
|
879
|
-
|
|
877
|
+
interface CreateDownloadLayerCommand {
|
|
878
|
+
parentDownloadLayerId?: number | null;
|
|
880
879
|
}
|
|
881
880
|
|
|
882
881
|
/**
|
|
@@ -1027,23 +1026,7 @@ interface CreateRoutingLayerCommand {
|
|
|
1027
1026
|
* Do not edit the class manually.
|
|
1028
1027
|
*/
|
|
1029
1028
|
/**
|
|
1030
|
-
*
|
|
1031
|
-
*/
|
|
1032
|
-
interface CreateSchematicLayerCommand {
|
|
1033
|
-
parentSchematicLayerId?: number | null;
|
|
1034
|
-
}
|
|
1035
|
-
|
|
1036
|
-
/**
|
|
1037
|
-
* RenewAire CORES API
|
|
1038
|
-
*
|
|
1039
|
-
* Contact: renewaire@saritasa.com
|
|
1040
|
-
*
|
|
1041
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1042
|
-
* https://openapi-generator.tech
|
|
1043
|
-
* Do not edit the class manually.
|
|
1044
|
-
*/
|
|
1045
|
-
/**
|
|
1046
|
-
* 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
|
|
1029
|
+
* File type.<br />FileType<br />0 = RsdRegionDocument<br />1 = ControllerProgram<br />2 = RepSalesReport<br />3 = ProjectNoteAttachment<br />4 = BidStatusAttachment<br />5 = DownloadLayerFile<br />6 = QualifiedSpecification<br />7 = ProjectDiscountAttachment<br />8 = DrawingLayerFile
|
|
1047
1030
|
*/
|
|
1048
1031
|
declare enum FileType {
|
|
1049
1032
|
RsdRegionDocument = "RsdRegionDocument",
|
|
@@ -1051,7 +1034,7 @@ declare enum FileType {
|
|
|
1051
1034
|
RepSalesReport = "RepSalesReport",
|
|
1052
1035
|
ProjectNoteAttachment = "ProjectNoteAttachment",
|
|
1053
1036
|
BidStatusAttachment = "BidStatusAttachment",
|
|
1054
|
-
|
|
1037
|
+
DownloadLayerFile = "DownloadLayerFile",
|
|
1055
1038
|
QualifiedSpecification = "QualifiedSpecification",
|
|
1056
1039
|
ProjectDiscountAttachment = "ProjectDiscountAttachment",
|
|
1057
1040
|
DrawingLayerFile = "DrawingLayerFile"
|
|
@@ -1076,7 +1059,7 @@ interface CreateUploadUrlCommand {
|
|
|
1076
1059
|
*/
|
|
1077
1060
|
fileName: string;
|
|
1078
1061
|
/**
|
|
1079
|
-
* File type.<br />FileType<br />0 = RsdRegionDocument<br />1 = ControllerProgram<br />2 = RepSalesReport<br />3 = ProjectNoteAttachment<br />4 = BidStatusAttachment<br />5 =
|
|
1062
|
+
* File type.<br />FileType<br />0 = RsdRegionDocument<br />1 = ControllerProgram<br />2 = RepSalesReport<br />3 = ProjectNoteAttachment<br />4 = BidStatusAttachment<br />5 = DownloadLayerFile<br />6 = QualifiedSpecification<br />7 = ProjectDiscountAttachment<br />8 = DrawingLayerFile
|
|
1080
1063
|
*/
|
|
1081
1064
|
fileType: FileType;
|
|
1082
1065
|
}
|
|
@@ -1798,11 +1781,11 @@ interface RuleSetDto {
|
|
|
1798
1781
|
*/
|
|
1799
1782
|
|
|
1800
1783
|
/**
|
|
1801
|
-
*
|
|
1784
|
+
* Download layer details DTO.
|
|
1802
1785
|
*/
|
|
1803
|
-
interface
|
|
1786
|
+
interface DownloadLayerDto {
|
|
1804
1787
|
/**
|
|
1805
|
-
* Identifier for RenewAire.Cores.Domain.Bomb.
|
|
1788
|
+
* Identifier for RenewAire.Cores.Domain.Bomb.DownloadLayer.
|
|
1806
1789
|
*/
|
|
1807
1790
|
id: number;
|
|
1808
1791
|
/**
|
|
@@ -1840,7 +1823,7 @@ interface DrawingLayerDto {
|
|
|
1840
1823
|
/**
|
|
1841
1824
|
* DTO for RenewAire.Cores.Domain.File.
|
|
1842
1825
|
*/
|
|
1843
|
-
|
|
1826
|
+
downloadFile?: FileDto | null;
|
|
1844
1827
|
/**
|
|
1845
1828
|
* Rule set DTO. (Inner arrays are connected by AND between rules. Outer array is connected by OR between inner arrays.)
|
|
1846
1829
|
*/
|
|
@@ -1857,11 +1840,11 @@ interface DrawingLayerDto {
|
|
|
1857
1840
|
* Do not edit the class manually.
|
|
1858
1841
|
*/
|
|
1859
1842
|
/**
|
|
1860
|
-
* Individual layer item in the
|
|
1843
|
+
* Individual layer item in the download layer hierarchy.
|
|
1861
1844
|
*/
|
|
1862
|
-
interface
|
|
1845
|
+
interface DownloadLayerHierarchyItemDto {
|
|
1863
1846
|
/**
|
|
1864
|
-
* Identifier for RenewAire.Cores.Domain.Bomb.
|
|
1847
|
+
* Identifier for RenewAire.Cores.Domain.Bomb.DownloadLayer.
|
|
1865
1848
|
*/
|
|
1866
1849
|
id: number;
|
|
1867
1850
|
/**
|
|
@@ -1877,13 +1860,13 @@ interface DrawingLayerHierarchyItemDto {
|
|
|
1877
1860
|
*/
|
|
1878
1861
|
description: string;
|
|
1879
1862
|
/**
|
|
1880
|
-
* Collection of
|
|
1863
|
+
* Collection of download layers in hierarchical order (from root to target).
|
|
1881
1864
|
*/
|
|
1882
|
-
layers: Array<
|
|
1865
|
+
layers: Array<DownloadLayerHierarchyItemDto>;
|
|
1883
1866
|
/**
|
|
1884
1867
|
* Parent layer id.
|
|
1885
1868
|
*/
|
|
1886
|
-
|
|
1869
|
+
parentDownloadLayerId?: number | null;
|
|
1887
1870
|
/**
|
|
1888
1871
|
* Calculated effective start date.
|
|
1889
1872
|
*/
|
|
@@ -1906,7 +1889,7 @@ interface DrawingLayerHierarchyItemDto {
|
|
|
1906
1889
|
/**
|
|
1907
1890
|
* Defines the positioning requirements for moving a layer within a hierarchical structure.
|
|
1908
1891
|
*/
|
|
1909
|
-
interface
|
|
1892
|
+
interface DownloadLayerIdMoveLayerDto {
|
|
1910
1893
|
/**
|
|
1911
1894
|
* Id of the target parent layer.
|
|
1912
1895
|
*/
|
|
@@ -3323,7 +3306,7 @@ declare enum OperationType {
|
|
|
3323
3306
|
* Do not edit the class manually.
|
|
3324
3307
|
*/
|
|
3325
3308
|
/**
|
|
3326
|
-
* 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 =
|
|
3309
|
+
* 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 = BombDownloadsAdmin<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
|
|
3327
3310
|
*/
|
|
3328
3311
|
declare enum Permission {
|
|
3329
3312
|
SystemAdmin = "SystemAdmin",
|
|
@@ -3384,7 +3367,7 @@ declare enum Permission {
|
|
|
3384
3367
|
EditUsers = "EditUsers",
|
|
3385
3368
|
BombMaterialsAdmin = "BombMaterialsAdmin",
|
|
3386
3369
|
BombRoutingAdmin = "BombRoutingAdmin",
|
|
3387
|
-
|
|
3370
|
+
BombDownloadsAdmin = "BombDownloadsAdmin",
|
|
3388
3371
|
BombValidationsAdmin = "BombValidationsAdmin",
|
|
3389
3372
|
AccessBomb = "AccessBomb",
|
|
3390
3373
|
BombDrawingsAdmin = "BombDrawingsAdmin",
|
|
@@ -3464,7 +3447,7 @@ interface PermissionBundleDto {
|
|
|
3464
3447
|
*/
|
|
3465
3448
|
interface PermissionDto {
|
|
3466
3449
|
/**
|
|
3467
|
-
* Identifier. Enum key.<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 =
|
|
3450
|
+
* Identifier. Enum key.<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 = BombDownloadsAdmin<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
|
|
3468
3451
|
*/
|
|
3469
3452
|
id: Permission;
|
|
3470
3453
|
/**
|
|
@@ -4522,6 +4505,58 @@ declare enum ProjectNoteType {
|
|
|
4522
4505
|
SalesChannel = "SalesChannel"
|
|
4523
4506
|
}
|
|
4524
4507
|
|
|
4508
|
+
/**
|
|
4509
|
+
* RenewAire CORES API
|
|
4510
|
+
*
|
|
4511
|
+
* Contact: renewaire@saritasa.com
|
|
4512
|
+
*
|
|
4513
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4514
|
+
* https://openapi-generator.tech
|
|
4515
|
+
* Do not edit the class manually.
|
|
4516
|
+
*/
|
|
4517
|
+
/**
|
|
4518
|
+
* Quote accessories view.<br />ProjectQuoteLogAccessoriesView<br />0 = OrderedByProjectLineNumber<br />1 = GroupedByLinkedErvLines
|
|
4519
|
+
*/
|
|
4520
|
+
declare enum ProjectQuoteLogAccessoriesView {
|
|
4521
|
+
OrderedByProjectLineNumber = "OrderedByProjectLineNumber",
|
|
4522
|
+
GroupedByLinkedErvLines = "GroupedByLinkedErvLines"
|
|
4523
|
+
}
|
|
4524
|
+
|
|
4525
|
+
/**
|
|
4526
|
+
* RenewAire CORES API
|
|
4527
|
+
*
|
|
4528
|
+
* Contact: renewaire@saritasa.com
|
|
4529
|
+
*
|
|
4530
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4531
|
+
* https://openapi-generator.tech
|
|
4532
|
+
* Do not edit the class manually.
|
|
4533
|
+
*/
|
|
4534
|
+
/**
|
|
4535
|
+
* Project quote multiplier.<br />ProjectQuoteMultiplier<br />0 = ListPrice<br />1 = Custom
|
|
4536
|
+
*/
|
|
4537
|
+
declare enum ProjectQuoteMultiplier {
|
|
4538
|
+
ListPrice = "ListPrice",
|
|
4539
|
+
Custom = "Custom"
|
|
4540
|
+
}
|
|
4541
|
+
|
|
4542
|
+
/**
|
|
4543
|
+
* RenewAire CORES API
|
|
4544
|
+
*
|
|
4545
|
+
* Contact: renewaire@saritasa.com
|
|
4546
|
+
*
|
|
4547
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4548
|
+
* https://openapi-generator.tech
|
|
4549
|
+
* Do not edit the class manually.
|
|
4550
|
+
*/
|
|
4551
|
+
/**
|
|
4552
|
+
* Quote pricing options.<br />ProjectQuotePricing<br />0 = ShowLineItemPricing<br />1 = HideAllPricing<br />2 = OnlyShowTotal
|
|
4553
|
+
*/
|
|
4554
|
+
declare enum ProjectQuotePricing {
|
|
4555
|
+
ShowLineItemPricing = "ShowLineItemPricing",
|
|
4556
|
+
HideAllPricing = "HideAllPricing",
|
|
4557
|
+
OnlyShowTotal = "OnlyShowTotal"
|
|
4558
|
+
}
|
|
4559
|
+
|
|
4525
4560
|
/**
|
|
4526
4561
|
* RenewAire CORES API
|
|
4527
4562
|
*
|
|
@@ -5573,21 +5608,21 @@ interface SaveControllerProgramDto {
|
|
|
5573
5608
|
*/
|
|
5574
5609
|
|
|
5575
5610
|
/**
|
|
5576
|
-
* DTO to save
|
|
5611
|
+
* DTO to save download layer.
|
|
5577
5612
|
*/
|
|
5578
|
-
interface
|
|
5613
|
+
interface SaveDownloadLayerDto {
|
|
5579
5614
|
/**
|
|
5580
5615
|
* Save bomb layer DTO.
|
|
5581
5616
|
*/
|
|
5582
5617
|
saveBombLayerDto: SaveBombLayerDto;
|
|
5583
5618
|
/**
|
|
5584
|
-
* Allow to delete an already existing
|
|
5619
|
+
* Allow to delete an already existing download file. Will not take effect if RenewAire.Cores.UseCases.Bomb.Dtos.Downloads.SaveDownloadLayerDto.DownloadFile is specified.
|
|
5585
5620
|
*/
|
|
5586
|
-
|
|
5621
|
+
shouldRemoveDownloadFile: boolean;
|
|
5587
5622
|
/**
|
|
5588
5623
|
* Represents metadata for an uploaded file.
|
|
5589
5624
|
*/
|
|
5590
|
-
|
|
5625
|
+
downloadFile?: UploadFileDto | null;
|
|
5591
5626
|
}
|
|
5592
5627
|
|
|
5593
5628
|
/**
|
|
@@ -6231,34 +6266,6 @@ interface SaveRoutingLayerDto {
|
|
|
6231
6266
|
routingRules: Array<SaveRoutingRuleDto>;
|
|
6232
6267
|
}
|
|
6233
6268
|
|
|
6234
|
-
/**
|
|
6235
|
-
* RenewAire CORES API
|
|
6236
|
-
*
|
|
6237
|
-
* Contact: renewaire@saritasa.com
|
|
6238
|
-
*
|
|
6239
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6240
|
-
* https://openapi-generator.tech
|
|
6241
|
-
* Do not edit the class manually.
|
|
6242
|
-
*/
|
|
6243
|
-
|
|
6244
|
-
/**
|
|
6245
|
-
* DTO to save schematics layer.
|
|
6246
|
-
*/
|
|
6247
|
-
interface SaveSchematicLayerDto {
|
|
6248
|
-
/**
|
|
6249
|
-
* Save bomb layer DTO.
|
|
6250
|
-
*/
|
|
6251
|
-
saveBombLayerDto: SaveBombLayerDto;
|
|
6252
|
-
/**
|
|
6253
|
-
* Allow to delete an already existing schematic file. Will not take effect if RenewAire.Cores.UseCases.Bomb.Dtos.Schematics.SaveSchematicLayerDto.SchematicFile is specified.
|
|
6254
|
-
*/
|
|
6255
|
-
shouldRemoveSchematicFile: boolean;
|
|
6256
|
-
/**
|
|
6257
|
-
* Represents metadata for an uploaded file.
|
|
6258
|
-
*/
|
|
6259
|
-
schematicFile?: UploadFileDto | null;
|
|
6260
|
-
}
|
|
6261
|
-
|
|
6262
6269
|
/**
|
|
6263
6270
|
* RenewAire CORES API
|
|
6264
6271
|
*
|
|
@@ -6434,136 +6441,6 @@ interface SaveValidationLayerDto {
|
|
|
6434
6441
|
validationMessage: string;
|
|
6435
6442
|
}
|
|
6436
6443
|
|
|
6437
|
-
/**
|
|
6438
|
-
* RenewAire CORES API
|
|
6439
|
-
*
|
|
6440
|
-
* Contact: renewaire@saritasa.com
|
|
6441
|
-
*
|
|
6442
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6443
|
-
* https://openapi-generator.tech
|
|
6444
|
-
* Do not edit the class manually.
|
|
6445
|
-
*/
|
|
6446
|
-
|
|
6447
|
-
/**
|
|
6448
|
-
* Schematic layer details DTO.
|
|
6449
|
-
*/
|
|
6450
|
-
interface SchematicLayerDto {
|
|
6451
|
-
/**
|
|
6452
|
-
* Identifier for RenewAire.Cores.Domain.Bomb.SchematicLayer.
|
|
6453
|
-
*/
|
|
6454
|
-
id: number;
|
|
6455
|
-
/**
|
|
6456
|
-
* Id of the level at which layer is located.
|
|
6457
|
-
*/
|
|
6458
|
-
level: number;
|
|
6459
|
-
/**
|
|
6460
|
-
* Name.
|
|
6461
|
-
*/
|
|
6462
|
-
name: string;
|
|
6463
|
-
/**
|
|
6464
|
-
* Description.
|
|
6465
|
-
*/
|
|
6466
|
-
description: string;
|
|
6467
|
-
/**
|
|
6468
|
-
* Effective start date note.
|
|
6469
|
-
*/
|
|
6470
|
-
effectiveStartDateNote: string;
|
|
6471
|
-
/**
|
|
6472
|
-
* Effective end date note.
|
|
6473
|
-
*/
|
|
6474
|
-
effectiveEndDateNote: string;
|
|
6475
|
-
/**
|
|
6476
|
-
* Parent layer id.
|
|
6477
|
-
*/
|
|
6478
|
-
parentLayerId?: number | null;
|
|
6479
|
-
/**
|
|
6480
|
-
* Effective start date.
|
|
6481
|
-
*/
|
|
6482
|
-
effectiveStartDate?: string | null;
|
|
6483
|
-
/**
|
|
6484
|
-
* Effective end date.
|
|
6485
|
-
*/
|
|
6486
|
-
effectiveEndDate?: string | null;
|
|
6487
|
-
/**
|
|
6488
|
-
* DTO for RenewAire.Cores.Domain.File.
|
|
6489
|
-
*/
|
|
6490
|
-
schematicFile?: FileDto | null;
|
|
6491
|
-
/**
|
|
6492
|
-
* Rule set DTO. (Inner arrays are connected by AND between rules. Outer array is connected by OR between inner arrays.)
|
|
6493
|
-
*/
|
|
6494
|
-
rule?: RuleSetDto | null;
|
|
6495
|
-
}
|
|
6496
|
-
|
|
6497
|
-
/**
|
|
6498
|
-
* RenewAire CORES API
|
|
6499
|
-
*
|
|
6500
|
-
* Contact: renewaire@saritasa.com
|
|
6501
|
-
*
|
|
6502
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6503
|
-
* https://openapi-generator.tech
|
|
6504
|
-
* Do not edit the class manually.
|
|
6505
|
-
*/
|
|
6506
|
-
/**
|
|
6507
|
-
* Individual layer item in the schematic layer hierarchy.
|
|
6508
|
-
*/
|
|
6509
|
-
interface SchematicLayerHierarchyItemDto {
|
|
6510
|
-
/**
|
|
6511
|
-
* Identifier for RenewAire.Cores.Domain.Bomb.SchematicLayer.
|
|
6512
|
-
*/
|
|
6513
|
-
id: number;
|
|
6514
|
-
/**
|
|
6515
|
-
* Id of the level at which layer is located.
|
|
6516
|
-
*/
|
|
6517
|
-
level: number;
|
|
6518
|
-
/**
|
|
6519
|
-
* Name.
|
|
6520
|
-
*/
|
|
6521
|
-
name: string;
|
|
6522
|
-
/**
|
|
6523
|
-
* Description.
|
|
6524
|
-
*/
|
|
6525
|
-
description: string;
|
|
6526
|
-
/**
|
|
6527
|
-
* Collection of schematic layers in hierarchical order (from root to target).
|
|
6528
|
-
*/
|
|
6529
|
-
layers: Array<SchematicLayerHierarchyItemDto>;
|
|
6530
|
-
/**
|
|
6531
|
-
* Parent layer id.
|
|
6532
|
-
*/
|
|
6533
|
-
parentSchematicLayerId?: number | null;
|
|
6534
|
-
/**
|
|
6535
|
-
* Calculated effective start date.
|
|
6536
|
-
*/
|
|
6537
|
-
calculatedEffectiveStartDate?: string | null;
|
|
6538
|
-
/**
|
|
6539
|
-
* Calculated effective end date.
|
|
6540
|
-
*/
|
|
6541
|
-
calculatedEffectiveEndDate?: string | null;
|
|
6542
|
-
}
|
|
6543
|
-
|
|
6544
|
-
/**
|
|
6545
|
-
* RenewAire CORES API
|
|
6546
|
-
*
|
|
6547
|
-
* Contact: renewaire@saritasa.com
|
|
6548
|
-
*
|
|
6549
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6550
|
-
* https://openapi-generator.tech
|
|
6551
|
-
* Do not edit the class manually.
|
|
6552
|
-
*/
|
|
6553
|
-
/**
|
|
6554
|
-
* Defines the positioning requirements for moving a layer within a hierarchical structure.
|
|
6555
|
-
*/
|
|
6556
|
-
interface SchematicLayerIdMoveLayerDto {
|
|
6557
|
-
/**
|
|
6558
|
-
* Id of the target parent layer.
|
|
6559
|
-
*/
|
|
6560
|
-
parentId?: number | null;
|
|
6561
|
-
/**
|
|
6562
|
-
* Id of the layer after which this layer should be located. Nullable. Null means - place the current layer as the first layer. (If provided, this layer must belong to the parent specified in RenewAire.Cores.UseCases.Bomb.Dtos.Common.MoveLayerDto`1.ParentId.)
|
|
6563
|
-
*/
|
|
6564
|
-
placeAfterId?: number | null;
|
|
6565
|
-
}
|
|
6566
|
-
|
|
6567
6444
|
/**
|
|
6568
6445
|
* RenewAire CORES API
|
|
6569
6446
|
*
|
|
@@ -6757,43 +6634,11 @@ interface SearchKnownContactDtoPagedListMetadataDto {
|
|
|
6757
6634
|
*/
|
|
6758
6635
|
|
|
6759
6636
|
/**
|
|
6760
|
-
* DTO to search
|
|
6761
|
-
*/
|
|
6762
|
-
interface SearchModelDrawingDto {
|
|
6763
|
-
/**
|
|
6764
|
-
* Identifier for RenewAire.Cores.Domain.Bomb.DrawingLayer.
|
|
6765
|
-
*/
|
|
6766
|
-
id: number;
|
|
6767
|
-
/**
|
|
6768
|
-
* Name.
|
|
6769
|
-
*/
|
|
6770
|
-
name: string;
|
|
6771
|
-
/**
|
|
6772
|
-
* Description.
|
|
6773
|
-
*/
|
|
6774
|
-
description: string;
|
|
6775
|
-
/**
|
|
6776
|
-
* DTO for RenewAire.Cores.Domain.File.
|
|
6777
|
-
*/
|
|
6778
|
-
drawingFile: FileDto;
|
|
6779
|
-
}
|
|
6780
|
-
|
|
6781
|
-
/**
|
|
6782
|
-
* RenewAire CORES API
|
|
6783
|
-
*
|
|
6784
|
-
* Contact: renewaire@saritasa.com
|
|
6785
|
-
*
|
|
6786
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6787
|
-
* https://openapi-generator.tech
|
|
6788
|
-
* Do not edit the class manually.
|
|
6789
|
-
*/
|
|
6790
|
-
|
|
6791
|
-
/**
|
|
6792
|
-
* DTO to search schematic layers by model.
|
|
6637
|
+
* DTO to search download layers by model.
|
|
6793
6638
|
*/
|
|
6794
|
-
interface
|
|
6639
|
+
interface SearchModelDownloadDto {
|
|
6795
6640
|
/**
|
|
6796
|
-
* Identifier for RenewAire.Cores.Domain.Bomb.
|
|
6641
|
+
* Identifier for RenewAire.Cores.Domain.Bomb.DownloadLayer.
|
|
6797
6642
|
*/
|
|
6798
6643
|
id: number;
|
|
6799
6644
|
/**
|
|
@@ -6807,7 +6652,7 @@ interface SearchModelSchematicDto {
|
|
|
6807
6652
|
/**
|
|
6808
6653
|
* DTO for RenewAire.Cores.Domain.File.
|
|
6809
6654
|
*/
|
|
6810
|
-
|
|
6655
|
+
downloadFile: FileDto;
|
|
6811
6656
|
}
|
|
6812
6657
|
|
|
6813
6658
|
/**
|
|
@@ -8221,18 +8066,31 @@ interface UpdateProjectNoteDto {
|
|
|
8221
8066
|
* https://openapi-generator.tech
|
|
8222
8067
|
* Do not edit the class manually.
|
|
8223
8068
|
*/
|
|
8069
|
+
|
|
8224
8070
|
/**
|
|
8225
|
-
*
|
|
8071
|
+
* Update project quote address DTO.
|
|
8226
8072
|
*/
|
|
8227
|
-
interface
|
|
8073
|
+
interface UpdateProjectQuoteAddressDto {
|
|
8228
8074
|
/**
|
|
8229
|
-
*
|
|
8075
|
+
* Business name.
|
|
8230
8076
|
*/
|
|
8231
|
-
|
|
8077
|
+
businessName: string;
|
|
8232
8078
|
/**
|
|
8233
|
-
*
|
|
8079
|
+
* First name.
|
|
8234
8080
|
*/
|
|
8235
|
-
|
|
8081
|
+
firstName: string;
|
|
8082
|
+
/**
|
|
8083
|
+
* Last name.
|
|
8084
|
+
*/
|
|
8085
|
+
lastName: string;
|
|
8086
|
+
/**
|
|
8087
|
+
* Phone number.
|
|
8088
|
+
*/
|
|
8089
|
+
phone: string;
|
|
8090
|
+
/**
|
|
8091
|
+
* DTO for RenewAire.Cores.Domain.Address.
|
|
8092
|
+
*/
|
|
8093
|
+
facilityAddress?: AddressDto | null;
|
|
8236
8094
|
}
|
|
8237
8095
|
|
|
8238
8096
|
/**
|
|
@@ -8244,21 +8102,183 @@ interface UpdateProjectSoldToDto {
|
|
|
8244
8102
|
* https://openapi-generator.tech
|
|
8245
8103
|
* Do not edit the class manually.
|
|
8246
8104
|
*/
|
|
8247
|
-
|
|
8248
8105
|
/**
|
|
8249
|
-
*
|
|
8106
|
+
* DTO to update project quote custom item.
|
|
8250
8107
|
*/
|
|
8251
|
-
interface
|
|
8108
|
+
interface UpdateProjectQuoteCustomItemDto {
|
|
8252
8109
|
/**
|
|
8253
|
-
*
|
|
8110
|
+
* Part number.
|
|
8254
8111
|
*/
|
|
8255
|
-
|
|
8112
|
+
partNumber: string;
|
|
8256
8113
|
/**
|
|
8257
|
-
*
|
|
8114
|
+
* Description.
|
|
8258
8115
|
*/
|
|
8259
|
-
|
|
8116
|
+
description: string;
|
|
8260
8117
|
/**
|
|
8261
|
-
*
|
|
8118
|
+
* Quantity.
|
|
8119
|
+
*/
|
|
8120
|
+
quantity: number;
|
|
8121
|
+
/**
|
|
8122
|
+
* Net price.
|
|
8123
|
+
*/
|
|
8124
|
+
netPrice: number;
|
|
8125
|
+
/**
|
|
8126
|
+
* Identifier.
|
|
8127
|
+
*/
|
|
8128
|
+
id?: number | null;
|
|
8129
|
+
}
|
|
8130
|
+
|
|
8131
|
+
/**
|
|
8132
|
+
* RenewAire CORES API
|
|
8133
|
+
*
|
|
8134
|
+
* Contact: renewaire@saritasa.com
|
|
8135
|
+
*
|
|
8136
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8137
|
+
* https://openapi-generator.tech
|
|
8138
|
+
* Do not edit the class manually.
|
|
8139
|
+
*/
|
|
8140
|
+
|
|
8141
|
+
/**
|
|
8142
|
+
* Update project quote DTO.
|
|
8143
|
+
*/
|
|
8144
|
+
interface UpdateProjectQuoteDto {
|
|
8145
|
+
/**
|
|
8146
|
+
* Identifier for RenewAire.Cores.Domain.Projects.ProjectRevision.
|
|
8147
|
+
*/
|
|
8148
|
+
projectRevisionId: number;
|
|
8149
|
+
/**
|
|
8150
|
+
* Freight On Board (FOB).
|
|
8151
|
+
*/
|
|
8152
|
+
freightOnBoard: string;
|
|
8153
|
+
/**
|
|
8154
|
+
* Credit Terms.
|
|
8155
|
+
*/
|
|
8156
|
+
creditTerms: string;
|
|
8157
|
+
/**
|
|
8158
|
+
* Terms and Agreements.
|
|
8159
|
+
*/
|
|
8160
|
+
termsAndAgreements: string;
|
|
8161
|
+
/**
|
|
8162
|
+
* Calculate estimate freight charge state. Only shows if ERV units are present on the project.
|
|
8163
|
+
*/
|
|
8164
|
+
calculateEstimatedFreightChargeState: string;
|
|
8165
|
+
/**
|
|
8166
|
+
* Quote notes.
|
|
8167
|
+
*/
|
|
8168
|
+
notes: string;
|
|
8169
|
+
/**
|
|
8170
|
+
* Should show unit configuration memo.
|
|
8171
|
+
*/
|
|
8172
|
+
unitConfigurationMemo: boolean;
|
|
8173
|
+
/**
|
|
8174
|
+
* Should add message \"Please send all PO to renewaireorders@renewaire.com\" to the quote. Only for RA, REP, RSD.
|
|
8175
|
+
*/
|
|
8176
|
+
includeTextToSendPOToRenewAire: boolean;
|
|
8177
|
+
/**
|
|
8178
|
+
* Quote accessories view.<br />ProjectQuoteLogAccessoriesView<br />0 = OrderedByProjectLineNumber<br />1 = GroupedByLinkedErvLines
|
|
8179
|
+
*/
|
|
8180
|
+
accessoriesView: ProjectQuoteLogAccessoriesView;
|
|
8181
|
+
/**
|
|
8182
|
+
* Update project quote address DTO.
|
|
8183
|
+
*/
|
|
8184
|
+
quoteToAddress: UpdateProjectQuoteAddressDto;
|
|
8185
|
+
/**
|
|
8186
|
+
* Update project quote address DTO.
|
|
8187
|
+
*/
|
|
8188
|
+
quoteFromAddress: UpdateProjectQuoteAddressDto;
|
|
8189
|
+
/**
|
|
8190
|
+
* ProjectQuotePricing<br />0 = ShowLineItemPricing<br />1 = HideAllPricing<br />2 = OnlyShowTotal
|
|
8191
|
+
*/
|
|
8192
|
+
pricing?: ProjectQuotePricing | null;
|
|
8193
|
+
/**
|
|
8194
|
+
* ProjectQuoteMultiplier<br />0 = ListPrice<br />1 = Custom
|
|
8195
|
+
*/
|
|
8196
|
+
multiplier?: ProjectQuoteMultiplier | null;
|
|
8197
|
+
/**
|
|
8198
|
+
* Custom multiplier if RenewAire.Cores.Domain.Projects.ProjectQuote.Multiplier is custom.
|
|
8199
|
+
*/
|
|
8200
|
+
customMultiplier?: number | null;
|
|
8201
|
+
/**
|
|
8202
|
+
* Markup. Negative values are allowed.
|
|
8203
|
+
*/
|
|
8204
|
+
markup?: number | null;
|
|
8205
|
+
}
|
|
8206
|
+
|
|
8207
|
+
/**
|
|
8208
|
+
* RenewAire CORES API
|
|
8209
|
+
*
|
|
8210
|
+
* Contact: renewaire@saritasa.com
|
|
8211
|
+
*
|
|
8212
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8213
|
+
* https://openapi-generator.tech
|
|
8214
|
+
* Do not edit the class manually.
|
|
8215
|
+
*/
|
|
8216
|
+
interface UpdateProjectQuoteDtoOperation {
|
|
8217
|
+
/**
|
|
8218
|
+
* Available types of operation: add, remove, replace, move.
|
|
8219
|
+
*/
|
|
8220
|
+
op?: string;
|
|
8221
|
+
/**
|
|
8222
|
+
* Indicates the element to update. Available paths - see schema: UpdateProjectQuoteDto
|
|
8223
|
+
*/
|
|
8224
|
+
path?: string;
|
|
8225
|
+
/**
|
|
8226
|
+
* Provides the new value.
|
|
8227
|
+
*/
|
|
8228
|
+
value?: any | null;
|
|
8229
|
+
/**
|
|
8230
|
+
* Indicates the location in the target document to move the value from. Required for \'move\' operation.
|
|
8231
|
+
*/
|
|
8232
|
+
from?: string;
|
|
8233
|
+
}
|
|
8234
|
+
|
|
8235
|
+
/**
|
|
8236
|
+
* RenewAire CORES API
|
|
8237
|
+
*
|
|
8238
|
+
* Contact: renewaire@saritasa.com
|
|
8239
|
+
*
|
|
8240
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8241
|
+
* https://openapi-generator.tech
|
|
8242
|
+
* Do not edit the class manually.
|
|
8243
|
+
*/
|
|
8244
|
+
/**
|
|
8245
|
+
* DTO to update RenewAire.Cores.Domain.Projects.ProjectRevision.SoldTo.
|
|
8246
|
+
*/
|
|
8247
|
+
interface UpdateProjectSoldToDto {
|
|
8248
|
+
/**
|
|
8249
|
+
* Name.
|
|
8250
|
+
*/
|
|
8251
|
+
name: string;
|
|
8252
|
+
/**
|
|
8253
|
+
* CSI customer identifier.
|
|
8254
|
+
*/
|
|
8255
|
+
csiCustomerId?: number | null;
|
|
8256
|
+
}
|
|
8257
|
+
|
|
8258
|
+
/**
|
|
8259
|
+
* RenewAire CORES API
|
|
8260
|
+
*
|
|
8261
|
+
* Contact: renewaire@saritasa.com
|
|
8262
|
+
*
|
|
8263
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8264
|
+
* https://openapi-generator.tech
|
|
8265
|
+
* Do not edit the class manually.
|
|
8266
|
+
*/
|
|
8267
|
+
|
|
8268
|
+
/**
|
|
8269
|
+
* Update project revision DTO.
|
|
8270
|
+
*/
|
|
8271
|
+
interface UpdateProjectRevisionDto {
|
|
8272
|
+
/**
|
|
8273
|
+
* Identifier for RenewAire.Cores.Domain.Projects.ProjectRevision.
|
|
8274
|
+
*/
|
|
8275
|
+
id: number;
|
|
8276
|
+
/**
|
|
8277
|
+
* Project name.
|
|
8278
|
+
*/
|
|
8279
|
+
name: string;
|
|
8280
|
+
/**
|
|
8281
|
+
* Construction order type.<br />ConstructionOrderType<br />0 = NewConstruction<br />1 = RetrofitRemodel<br />2 = Stock<br />3 = ReplacementParts
|
|
8262
8282
|
*/
|
|
8263
8283
|
constructionOrderType: ConstructionOrderType;
|
|
8264
8284
|
/**
|
|
@@ -8669,7 +8689,7 @@ interface UserPermissionSourceDto {
|
|
|
8669
8689
|
*/
|
|
8670
8690
|
interface UserPermissionDto {
|
|
8671
8691
|
/**
|
|
8672
|
-
* Permissions.<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 =
|
|
8692
|
+
* Permissions.<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 = BombDownloadsAdmin<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
|
|
8673
8693
|
*/
|
|
8674
8694
|
permission: Permission;
|
|
8675
8695
|
/**
|
|
@@ -9182,289 +9202,289 @@ declare class AuthApiService extends BaseService implements AuthApiServiceInterf
|
|
|
9182
9202
|
* Do not edit the class manually.
|
|
9183
9203
|
*/
|
|
9184
9204
|
|
|
9185
|
-
interface
|
|
9186
|
-
|
|
9205
|
+
interface DownloadsCreateDownloadLayerRequestParams {
|
|
9206
|
+
createDownloadLayerCommand?: CreateDownloadLayerCommand;
|
|
9187
9207
|
}
|
|
9188
|
-
interface
|
|
9189
|
-
|
|
9208
|
+
interface DownloadsDuplicateDownloadLayerRequestParams {
|
|
9209
|
+
downloadLayerId: number;
|
|
9190
9210
|
duplicateBombLayerDto?: DuplicateBombLayerDto;
|
|
9191
9211
|
}
|
|
9192
|
-
interface
|
|
9193
|
-
|
|
9212
|
+
interface DownloadsGetDownloadFilePreviewUrlRequestParams {
|
|
9213
|
+
downloadLayerId: number;
|
|
9194
9214
|
}
|
|
9195
|
-
interface
|
|
9196
|
-
|
|
9215
|
+
interface DownloadsGetDownloadLayerRequestParams {
|
|
9216
|
+
downloadLayerId: number;
|
|
9197
9217
|
}
|
|
9198
|
-
interface
|
|
9199
|
-
|
|
9218
|
+
interface DownloadsGetDownloadLayerFileDownloadUrlRequestParams {
|
|
9219
|
+
downloadLayerId: number;
|
|
9200
9220
|
}
|
|
9201
|
-
interface
|
|
9202
|
-
|
|
9203
|
-
|
|
9221
|
+
interface DownloadsMoveDownloadLayerRequestParams {
|
|
9222
|
+
downloadLayerId: number;
|
|
9223
|
+
downloadLayerIdMoveLayerDto?: DownloadLayerIdMoveLayerDto;
|
|
9204
9224
|
}
|
|
9205
|
-
interface
|
|
9206
|
-
|
|
9225
|
+
interface DownloadsRemoveDownloadLayerRequestParams {
|
|
9226
|
+
downloadLayerId: number;
|
|
9207
9227
|
}
|
|
9208
|
-
interface
|
|
9209
|
-
|
|
9228
|
+
interface DownloadsSearchDownloadLayersRequestParams {
|
|
9229
|
+
parentDownloadLayerId?: number | null;
|
|
9210
9230
|
}
|
|
9211
|
-
interface
|
|
9212
|
-
|
|
9213
|
-
|
|
9231
|
+
interface DownloadsUpdateDownloadLayerRequestParams {
|
|
9232
|
+
downloadLayerId: number;
|
|
9233
|
+
saveDownloadLayerDto?: SaveDownloadLayerDto;
|
|
9214
9234
|
}
|
|
9215
|
-
interface
|
|
9235
|
+
interface BombDownloadsApiServiceInterface {
|
|
9216
9236
|
defaultHeaders: HttpHeaders;
|
|
9217
9237
|
configuration: Configuration;
|
|
9218
9238
|
/**
|
|
9219
|
-
* Create
|
|
9239
|
+
* Create download layer.
|
|
9220
9240
|
*
|
|
9221
9241
|
* @param requestParameters
|
|
9222
9242
|
*/
|
|
9223
|
-
|
|
9243
|
+
downloadsCreateDownloadLayer(requestParameters: DownloadsCreateDownloadLayerRequestParams, extraHttpRequestParams?: any): Observable<number>;
|
|
9224
9244
|
/**
|
|
9225
|
-
* Duplicate
|
|
9245
|
+
* Duplicate download layer.
|
|
9226
9246
|
*
|
|
9227
9247
|
* @param requestParameters
|
|
9228
9248
|
*/
|
|
9229
|
-
|
|
9249
|
+
downloadsDuplicateDownloadLayer(requestParameters: DownloadsDuplicateDownloadLayerRequestParams, extraHttpRequestParams?: any): Observable<DownloadLayerHierarchyItemDto>;
|
|
9230
9250
|
/**
|
|
9231
|
-
* Generate
|
|
9251
|
+
* Generate preview image for download layer file.
|
|
9232
9252
|
*
|
|
9233
9253
|
* @param requestParameters
|
|
9234
9254
|
*/
|
|
9235
|
-
|
|
9255
|
+
downloadsGetDownloadFilePreviewUrl(requestParameters: DownloadsGetDownloadFilePreviewUrlRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
9236
9256
|
/**
|
|
9237
|
-
*
|
|
9257
|
+
* Get download layer details by id.
|
|
9238
9258
|
*
|
|
9239
9259
|
* @param requestParameters
|
|
9240
9260
|
*/
|
|
9241
|
-
|
|
9261
|
+
downloadsGetDownloadLayer(requestParameters: DownloadsGetDownloadLayerRequestParams, extraHttpRequestParams?: any): Observable<DownloadLayerDto>;
|
|
9242
9262
|
/**
|
|
9243
|
-
*
|
|
9263
|
+
* Generate cloud URL for download layer file downloading.
|
|
9244
9264
|
*
|
|
9245
9265
|
* @param requestParameters
|
|
9246
9266
|
*/
|
|
9247
|
-
|
|
9267
|
+
downloadsGetDownloadLayerFileDownloadUrl(requestParameters: DownloadsGetDownloadLayerFileDownloadUrlRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
9248
9268
|
/**
|
|
9249
|
-
* Move
|
|
9269
|
+
* Move download layer.
|
|
9250
9270
|
*
|
|
9251
9271
|
* @param requestParameters
|
|
9252
9272
|
*/
|
|
9253
|
-
|
|
9273
|
+
downloadsMoveDownloadLayer(requestParameters: DownloadsMoveDownloadLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
9254
9274
|
/**
|
|
9255
|
-
* Remove
|
|
9275
|
+
* Remove download layer by id.
|
|
9256
9276
|
*
|
|
9257
9277
|
* @param requestParameters
|
|
9258
9278
|
*/
|
|
9259
|
-
|
|
9279
|
+
downloadsRemoveDownloadLayer(requestParameters: DownloadsRemoveDownloadLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
9260
9280
|
/**
|
|
9261
|
-
* Search
|
|
9281
|
+
* Search download layers.
|
|
9262
9282
|
*
|
|
9263
9283
|
* @param requestParameters
|
|
9264
9284
|
*/
|
|
9265
|
-
|
|
9285
|
+
downloadsSearchDownloadLayers(requestParameters: DownloadsSearchDownloadLayersRequestParams, extraHttpRequestParams?: any): Observable<Array<DownloadLayerHierarchyItemDto>>;
|
|
9266
9286
|
/**
|
|
9267
|
-
* Update
|
|
9287
|
+
* Update download layer.
|
|
9268
9288
|
*
|
|
9269
9289
|
* @param requestParameters
|
|
9270
9290
|
*/
|
|
9271
|
-
|
|
9291
|
+
downloadsUpdateDownloadLayer(requestParameters: DownloadsUpdateDownloadLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
9272
9292
|
}
|
|
9273
9293
|
|
|
9274
|
-
declare class
|
|
9294
|
+
declare class BombDownloadsApiService extends BaseService implements BombDownloadsApiServiceInterface {
|
|
9275
9295
|
protected httpClient: HttpClient;
|
|
9276
9296
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
9277
9297
|
/**
|
|
9278
|
-
* Create
|
|
9298
|
+
* Create download layer.
|
|
9279
9299
|
* @param requestParameters
|
|
9280
9300
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9281
9301
|
* @param reportProgress flag to report request and response progress.
|
|
9282
9302
|
*/
|
|
9283
|
-
|
|
9303
|
+
downloadsCreateDownloadLayer(requestParameters?: DownloadsCreateDownloadLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9284
9304
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9285
9305
|
context?: HttpContext;
|
|
9286
9306
|
transferCache?: boolean;
|
|
9287
9307
|
}): Observable<number>;
|
|
9288
|
-
|
|
9308
|
+
downloadsCreateDownloadLayer(requestParameters?: DownloadsCreateDownloadLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9289
9309
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9290
9310
|
context?: HttpContext;
|
|
9291
9311
|
transferCache?: boolean;
|
|
9292
9312
|
}): Observable<HttpResponse<number>>;
|
|
9293
|
-
|
|
9313
|
+
downloadsCreateDownloadLayer(requestParameters?: DownloadsCreateDownloadLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9294
9314
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9295
9315
|
context?: HttpContext;
|
|
9296
9316
|
transferCache?: boolean;
|
|
9297
9317
|
}): Observable<HttpEvent<number>>;
|
|
9298
9318
|
/**
|
|
9299
|
-
* Duplicate
|
|
9319
|
+
* Duplicate download layer.
|
|
9300
9320
|
* @param requestParameters
|
|
9301
9321
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9302
9322
|
* @param reportProgress flag to report request and response progress.
|
|
9303
9323
|
*/
|
|
9304
|
-
|
|
9324
|
+
downloadsDuplicateDownloadLayer(requestParameters: DownloadsDuplicateDownloadLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9305
9325
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9306
9326
|
context?: HttpContext;
|
|
9307
9327
|
transferCache?: boolean;
|
|
9308
|
-
}): Observable<
|
|
9309
|
-
|
|
9328
|
+
}): Observable<DownloadLayerHierarchyItemDto>;
|
|
9329
|
+
downloadsDuplicateDownloadLayer(requestParameters: DownloadsDuplicateDownloadLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9310
9330
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9311
9331
|
context?: HttpContext;
|
|
9312
9332
|
transferCache?: boolean;
|
|
9313
|
-
}): Observable<HttpResponse<
|
|
9314
|
-
|
|
9333
|
+
}): Observable<HttpResponse<DownloadLayerHierarchyItemDto>>;
|
|
9334
|
+
downloadsDuplicateDownloadLayer(requestParameters: DownloadsDuplicateDownloadLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9315
9335
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9316
9336
|
context?: HttpContext;
|
|
9317
9337
|
transferCache?: boolean;
|
|
9318
|
-
}): Observable<HttpEvent<
|
|
9338
|
+
}): Observable<HttpEvent<DownloadLayerHierarchyItemDto>>;
|
|
9319
9339
|
/**
|
|
9320
|
-
* Generate
|
|
9340
|
+
* Generate preview image for download layer file.
|
|
9321
9341
|
* @param requestParameters
|
|
9322
9342
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9323
9343
|
* @param reportProgress flag to report request and response progress.
|
|
9324
9344
|
*/
|
|
9325
|
-
|
|
9345
|
+
downloadsGetDownloadFilePreviewUrl(requestParameters: DownloadsGetDownloadFilePreviewUrlRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9326
9346
|
httpHeaderAccept?: undefined;
|
|
9327
9347
|
context?: HttpContext;
|
|
9328
9348
|
transferCache?: boolean;
|
|
9329
9349
|
}): Observable<any>;
|
|
9330
|
-
|
|
9350
|
+
downloadsGetDownloadFilePreviewUrl(requestParameters: DownloadsGetDownloadFilePreviewUrlRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9331
9351
|
httpHeaderAccept?: undefined;
|
|
9332
9352
|
context?: HttpContext;
|
|
9333
9353
|
transferCache?: boolean;
|
|
9334
9354
|
}): Observable<HttpResponse<any>>;
|
|
9335
|
-
|
|
9355
|
+
downloadsGetDownloadFilePreviewUrl(requestParameters: DownloadsGetDownloadFilePreviewUrlRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9336
9356
|
httpHeaderAccept?: undefined;
|
|
9337
9357
|
context?: HttpContext;
|
|
9338
9358
|
transferCache?: boolean;
|
|
9339
9359
|
}): Observable<HttpEvent<any>>;
|
|
9340
9360
|
/**
|
|
9341
|
-
*
|
|
9361
|
+
* Get download layer details by id.
|
|
9342
9362
|
* @param requestParameters
|
|
9343
9363
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9344
9364
|
* @param reportProgress flag to report request and response progress.
|
|
9345
9365
|
*/
|
|
9346
|
-
|
|
9347
|
-
httpHeaderAccept?:
|
|
9366
|
+
downloadsGetDownloadLayer(requestParameters: DownloadsGetDownloadLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9367
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9348
9368
|
context?: HttpContext;
|
|
9349
9369
|
transferCache?: boolean;
|
|
9350
|
-
}): Observable<
|
|
9351
|
-
|
|
9352
|
-
httpHeaderAccept?:
|
|
9370
|
+
}): Observable<DownloadLayerDto>;
|
|
9371
|
+
downloadsGetDownloadLayer(requestParameters: DownloadsGetDownloadLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9372
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9353
9373
|
context?: HttpContext;
|
|
9354
9374
|
transferCache?: boolean;
|
|
9355
|
-
}): Observable<HttpResponse<
|
|
9356
|
-
|
|
9357
|
-
httpHeaderAccept?:
|
|
9375
|
+
}): Observable<HttpResponse<DownloadLayerDto>>;
|
|
9376
|
+
downloadsGetDownloadLayer(requestParameters: DownloadsGetDownloadLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9377
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9358
9378
|
context?: HttpContext;
|
|
9359
9379
|
transferCache?: boolean;
|
|
9360
|
-
}): Observable<HttpEvent<
|
|
9380
|
+
}): Observable<HttpEvent<DownloadLayerDto>>;
|
|
9361
9381
|
/**
|
|
9362
|
-
*
|
|
9382
|
+
* Generate cloud URL for download layer file downloading.
|
|
9363
9383
|
* @param requestParameters
|
|
9364
9384
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9365
9385
|
* @param reportProgress flag to report request and response progress.
|
|
9366
9386
|
*/
|
|
9367
|
-
|
|
9368
|
-
httpHeaderAccept?:
|
|
9387
|
+
downloadsGetDownloadLayerFileDownloadUrl(requestParameters: DownloadsGetDownloadLayerFileDownloadUrlRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9388
|
+
httpHeaderAccept?: undefined;
|
|
9369
9389
|
context?: HttpContext;
|
|
9370
9390
|
transferCache?: boolean;
|
|
9371
|
-
}): Observable<
|
|
9372
|
-
|
|
9373
|
-
httpHeaderAccept?:
|
|
9391
|
+
}): Observable<any>;
|
|
9392
|
+
downloadsGetDownloadLayerFileDownloadUrl(requestParameters: DownloadsGetDownloadLayerFileDownloadUrlRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9393
|
+
httpHeaderAccept?: undefined;
|
|
9374
9394
|
context?: HttpContext;
|
|
9375
9395
|
transferCache?: boolean;
|
|
9376
|
-
}): Observable<HttpResponse<
|
|
9377
|
-
|
|
9378
|
-
httpHeaderAccept?:
|
|
9396
|
+
}): Observable<HttpResponse<any>>;
|
|
9397
|
+
downloadsGetDownloadLayerFileDownloadUrl(requestParameters: DownloadsGetDownloadLayerFileDownloadUrlRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9398
|
+
httpHeaderAccept?: undefined;
|
|
9379
9399
|
context?: HttpContext;
|
|
9380
9400
|
transferCache?: boolean;
|
|
9381
|
-
}): Observable<HttpEvent<
|
|
9401
|
+
}): Observable<HttpEvent<any>>;
|
|
9382
9402
|
/**
|
|
9383
|
-
* Move
|
|
9403
|
+
* Move download layer.
|
|
9384
9404
|
* @param requestParameters
|
|
9385
9405
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9386
9406
|
* @param reportProgress flag to report request and response progress.
|
|
9387
9407
|
*/
|
|
9388
|
-
|
|
9408
|
+
downloadsMoveDownloadLayer(requestParameters: DownloadsMoveDownloadLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9389
9409
|
httpHeaderAccept?: undefined;
|
|
9390
9410
|
context?: HttpContext;
|
|
9391
9411
|
transferCache?: boolean;
|
|
9392
9412
|
}): Observable<any>;
|
|
9393
|
-
|
|
9413
|
+
downloadsMoveDownloadLayer(requestParameters: DownloadsMoveDownloadLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9394
9414
|
httpHeaderAccept?: undefined;
|
|
9395
9415
|
context?: HttpContext;
|
|
9396
9416
|
transferCache?: boolean;
|
|
9397
9417
|
}): Observable<HttpResponse<any>>;
|
|
9398
|
-
|
|
9418
|
+
downloadsMoveDownloadLayer(requestParameters: DownloadsMoveDownloadLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9399
9419
|
httpHeaderAccept?: undefined;
|
|
9400
9420
|
context?: HttpContext;
|
|
9401
9421
|
transferCache?: boolean;
|
|
9402
9422
|
}): Observable<HttpEvent<any>>;
|
|
9403
9423
|
/**
|
|
9404
|
-
* Remove
|
|
9424
|
+
* Remove download layer by id.
|
|
9405
9425
|
* @param requestParameters
|
|
9406
9426
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9407
9427
|
* @param reportProgress flag to report request and response progress.
|
|
9408
9428
|
*/
|
|
9409
|
-
|
|
9429
|
+
downloadsRemoveDownloadLayer(requestParameters: DownloadsRemoveDownloadLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9410
9430
|
httpHeaderAccept?: undefined;
|
|
9411
9431
|
context?: HttpContext;
|
|
9412
9432
|
transferCache?: boolean;
|
|
9413
9433
|
}): Observable<any>;
|
|
9414
|
-
|
|
9434
|
+
downloadsRemoveDownloadLayer(requestParameters: DownloadsRemoveDownloadLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9415
9435
|
httpHeaderAccept?: undefined;
|
|
9416
9436
|
context?: HttpContext;
|
|
9417
9437
|
transferCache?: boolean;
|
|
9418
9438
|
}): Observable<HttpResponse<any>>;
|
|
9419
|
-
|
|
9439
|
+
downloadsRemoveDownloadLayer(requestParameters: DownloadsRemoveDownloadLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9420
9440
|
httpHeaderAccept?: undefined;
|
|
9421
9441
|
context?: HttpContext;
|
|
9422
9442
|
transferCache?: boolean;
|
|
9423
9443
|
}): Observable<HttpEvent<any>>;
|
|
9424
9444
|
/**
|
|
9425
|
-
* Search
|
|
9445
|
+
* Search download layers.
|
|
9426
9446
|
* @param requestParameters
|
|
9427
9447
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9428
9448
|
* @param reportProgress flag to report request and response progress.
|
|
9429
9449
|
*/
|
|
9430
|
-
|
|
9450
|
+
downloadsSearchDownloadLayers(requestParameters?: DownloadsSearchDownloadLayersRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9431
9451
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9432
9452
|
context?: HttpContext;
|
|
9433
9453
|
transferCache?: boolean;
|
|
9434
|
-
}): Observable<Array<
|
|
9435
|
-
|
|
9454
|
+
}): Observable<Array<DownloadLayerHierarchyItemDto>>;
|
|
9455
|
+
downloadsSearchDownloadLayers(requestParameters?: DownloadsSearchDownloadLayersRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9436
9456
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9437
9457
|
context?: HttpContext;
|
|
9438
9458
|
transferCache?: boolean;
|
|
9439
|
-
}): Observable<HttpResponse<Array<
|
|
9440
|
-
|
|
9459
|
+
}): Observable<HttpResponse<Array<DownloadLayerHierarchyItemDto>>>;
|
|
9460
|
+
downloadsSearchDownloadLayers(requestParameters?: DownloadsSearchDownloadLayersRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9441
9461
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9442
9462
|
context?: HttpContext;
|
|
9443
9463
|
transferCache?: boolean;
|
|
9444
|
-
}): Observable<HttpEvent<Array<
|
|
9464
|
+
}): Observable<HttpEvent<Array<DownloadLayerHierarchyItemDto>>>;
|
|
9445
9465
|
/**
|
|
9446
|
-
* Update
|
|
9466
|
+
* Update download layer.
|
|
9447
9467
|
* @param requestParameters
|
|
9448
9468
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9449
9469
|
* @param reportProgress flag to report request and response progress.
|
|
9450
9470
|
*/
|
|
9451
|
-
|
|
9471
|
+
downloadsUpdateDownloadLayer(requestParameters: DownloadsUpdateDownloadLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9452
9472
|
httpHeaderAccept?: undefined;
|
|
9453
9473
|
context?: HttpContext;
|
|
9454
9474
|
transferCache?: boolean;
|
|
9455
9475
|
}): Observable<any>;
|
|
9456
|
-
|
|
9476
|
+
downloadsUpdateDownloadLayer(requestParameters: DownloadsUpdateDownloadLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9457
9477
|
httpHeaderAccept?: undefined;
|
|
9458
9478
|
context?: HttpContext;
|
|
9459
9479
|
transferCache?: boolean;
|
|
9460
9480
|
}): Observable<HttpResponse<any>>;
|
|
9461
|
-
|
|
9481
|
+
downloadsUpdateDownloadLayer(requestParameters: DownloadsUpdateDownloadLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9462
9482
|
httpHeaderAccept?: undefined;
|
|
9463
9483
|
context?: HttpContext;
|
|
9464
9484
|
transferCache?: boolean;
|
|
9465
9485
|
}): Observable<HttpEvent<any>>;
|
|
9466
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
9467
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
9486
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BombDownloadsApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
9487
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BombDownloadsApiService>;
|
|
9468
9488
|
}
|
|
9469
9489
|
|
|
9470
9490
|
/**
|
|
@@ -9722,12 +9742,7 @@ interface ModelParametersSearchMaterialLayersNestedRequestParams {
|
|
|
9722
9742
|
buildDate: string;
|
|
9723
9743
|
modelParameters?: Array<ModelParameterDto>;
|
|
9724
9744
|
}
|
|
9725
|
-
interface
|
|
9726
|
-
modelNumber: string;
|
|
9727
|
-
buildDate: string;
|
|
9728
|
-
modelParameters?: Array<ModelParameterDto>;
|
|
9729
|
-
}
|
|
9730
|
-
interface ModelParametersSearchModelSchematicLayersRequestParams {
|
|
9745
|
+
interface ModelParametersSearchModelDownloadLayersRequestParams {
|
|
9731
9746
|
modelNumber: string;
|
|
9732
9747
|
buildDate: string;
|
|
9733
9748
|
modelParameters?: Array<ModelParameterDto>;
|
|
@@ -9781,17 +9796,11 @@ interface BombParametersApiServiceInterface {
|
|
|
9781
9796
|
*/
|
|
9782
9797
|
modelParametersSearchMaterialLayersNested(requestParameters: ModelParametersSearchMaterialLayersNestedRequestParams, extraHttpRequestParams?: any): Observable<Array<ModelMaterialLayerHierarchyItemDto>>;
|
|
9783
9798
|
/**
|
|
9784
|
-
* Search
|
|
9799
|
+
* Search download layers based on model number and parameters.
|
|
9785
9800
|
*
|
|
9786
9801
|
* @param requestParameters
|
|
9787
9802
|
*/
|
|
9788
|
-
|
|
9789
|
-
/**
|
|
9790
|
-
* Search schematic layers based on model number and parameters.
|
|
9791
|
-
*
|
|
9792
|
-
* @param requestParameters
|
|
9793
|
-
*/
|
|
9794
|
-
modelParametersSearchModelSchematicLayers(requestParameters: ModelParametersSearchModelSchematicLayersRequestParams, extraHttpRequestParams?: any): Observable<Array<SearchModelSchematicDto>>;
|
|
9803
|
+
modelParametersSearchModelDownloadLayers(requestParameters: ModelParametersSearchModelDownloadLayersRequestParams, extraHttpRequestParams?: any): Observable<Array<SearchModelDownloadDto>>;
|
|
9795
9804
|
/**
|
|
9796
9805
|
* Search validation layers based on model number and parameters.
|
|
9797
9806
|
*
|
|
@@ -9924,47 +9933,26 @@ declare class BombParametersApiService extends BaseService implements BombParame
|
|
|
9924
9933
|
transferCache?: boolean;
|
|
9925
9934
|
}): Observable<HttpEvent<Array<ModelMaterialLayerHierarchyItemDto>>>;
|
|
9926
9935
|
/**
|
|
9927
|
-
* Search
|
|
9936
|
+
* Search download layers based on model number and parameters.
|
|
9928
9937
|
* @param requestParameters
|
|
9929
9938
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9930
9939
|
* @param reportProgress flag to report request and response progress.
|
|
9931
9940
|
*/
|
|
9932
|
-
|
|
9941
|
+
modelParametersSearchModelDownloadLayers(requestParameters: ModelParametersSearchModelDownloadLayersRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9933
9942
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9934
9943
|
context?: HttpContext;
|
|
9935
9944
|
transferCache?: boolean;
|
|
9936
|
-
}): Observable<Array<
|
|
9937
|
-
|
|
9945
|
+
}): Observable<Array<SearchModelDownloadDto>>;
|
|
9946
|
+
modelParametersSearchModelDownloadLayers(requestParameters: ModelParametersSearchModelDownloadLayersRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9938
9947
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9939
9948
|
context?: HttpContext;
|
|
9940
9949
|
transferCache?: boolean;
|
|
9941
|
-
}): Observable<HttpResponse<Array<
|
|
9942
|
-
|
|
9950
|
+
}): Observable<HttpResponse<Array<SearchModelDownloadDto>>>;
|
|
9951
|
+
modelParametersSearchModelDownloadLayers(requestParameters: ModelParametersSearchModelDownloadLayersRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9943
9952
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9944
9953
|
context?: HttpContext;
|
|
9945
9954
|
transferCache?: boolean;
|
|
9946
|
-
}): Observable<HttpEvent<Array<
|
|
9947
|
-
/**
|
|
9948
|
-
* Search schematic layers based on model number and parameters.
|
|
9949
|
-
* @param requestParameters
|
|
9950
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9951
|
-
* @param reportProgress flag to report request and response progress.
|
|
9952
|
-
*/
|
|
9953
|
-
modelParametersSearchModelSchematicLayers(requestParameters: ModelParametersSearchModelSchematicLayersRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9954
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9955
|
-
context?: HttpContext;
|
|
9956
|
-
transferCache?: boolean;
|
|
9957
|
-
}): Observable<Array<SearchModelSchematicDto>>;
|
|
9958
|
-
modelParametersSearchModelSchematicLayers(requestParameters: ModelParametersSearchModelSchematicLayersRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9959
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9960
|
-
context?: HttpContext;
|
|
9961
|
-
transferCache?: boolean;
|
|
9962
|
-
}): Observable<HttpResponse<Array<SearchModelSchematicDto>>>;
|
|
9963
|
-
modelParametersSearchModelSchematicLayers(requestParameters: ModelParametersSearchModelSchematicLayersRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9964
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9965
|
-
context?: HttpContext;
|
|
9966
|
-
transferCache?: boolean;
|
|
9967
|
-
}): Observable<HttpEvent<Array<SearchModelSchematicDto>>>;
|
|
9955
|
+
}): Observable<HttpEvent<Array<SearchModelDownloadDto>>>;
|
|
9968
9956
|
/**
|
|
9969
9957
|
* Search validation layers based on model number and parameters.
|
|
9970
9958
|
* @param requestParameters
|
|
@@ -10299,7 +10287,7 @@ declare class BombRoutingsApiService extends BaseService implements BombRoutings
|
|
|
10299
10287
|
*/
|
|
10300
10288
|
|
|
10301
10289
|
interface SchematicsCreateSchematicLayerRequestParams {
|
|
10302
|
-
|
|
10290
|
+
createDownloadLayerCommand?: CreateDownloadLayerCommand;
|
|
10303
10291
|
}
|
|
10304
10292
|
interface SchematicsDuplicateSchematicLayerRequestParams {
|
|
10305
10293
|
schematicLayerId: number;
|
|
@@ -10316,74 +10304,92 @@ interface SchematicsGetSchematicLayerRequestParams {
|
|
|
10316
10304
|
}
|
|
10317
10305
|
interface SchematicsMoveSchematicLayerRequestParams {
|
|
10318
10306
|
schematicLayerId: number;
|
|
10319
|
-
|
|
10307
|
+
downloadLayerIdMoveLayerDto?: DownloadLayerIdMoveLayerDto;
|
|
10320
10308
|
}
|
|
10321
10309
|
interface SchematicsRemoveSchematicLayerRequestParams {
|
|
10322
10310
|
schematicLayerId: number;
|
|
10323
10311
|
}
|
|
10324
10312
|
interface SchematicsSearchSchematicLayersRequestParams {
|
|
10325
|
-
|
|
10313
|
+
parentDownloadLayerId?: number | null;
|
|
10326
10314
|
}
|
|
10327
10315
|
interface SchematicsUpdateSchematicLayerRequestParams {
|
|
10328
10316
|
schematicLayerId: number;
|
|
10329
|
-
|
|
10317
|
+
saveDownloadLayerDto?: SaveDownloadLayerDto;
|
|
10330
10318
|
}
|
|
10331
10319
|
interface BombSchematicsApiServiceInterface {
|
|
10332
10320
|
defaultHeaders: HttpHeaders;
|
|
10333
10321
|
configuration: Configuration;
|
|
10334
10322
|
/**
|
|
10335
|
-
|
|
10336
|
-
|
|
10337
|
-
|
|
10338
|
-
|
|
10323
|
+
* Create schematic layer.
|
|
10324
|
+
*
|
|
10325
|
+
* @param requestParameters
|
|
10326
|
+
|
|
10327
|
+
* @deprecated
|
|
10328
|
+
*/
|
|
10339
10329
|
schematicsCreateSchematicLayer(requestParameters: SchematicsCreateSchematicLayerRequestParams, extraHttpRequestParams?: any): Observable<number>;
|
|
10340
10330
|
/**
|
|
10341
|
-
|
|
10342
|
-
|
|
10343
|
-
|
|
10344
|
-
|
|
10345
|
-
|
|
10346
|
-
|
|
10347
|
-
|
|
10348
|
-
|
|
10349
|
-
|
|
10350
|
-
|
|
10331
|
+
* Duplicate schematic layer.
|
|
10332
|
+
*
|
|
10333
|
+
* @param requestParameters
|
|
10334
|
+
|
|
10335
|
+
* @deprecated
|
|
10336
|
+
*/
|
|
10337
|
+
schematicsDuplicateSchematicLayer(requestParameters: SchematicsDuplicateSchematicLayerRequestParams, extraHttpRequestParams?: any): Observable<DownloadLayerHierarchyItemDto>;
|
|
10338
|
+
/**
|
|
10339
|
+
* Generate cloud URL for schematic layer file downloading.
|
|
10340
|
+
*
|
|
10341
|
+
* @param requestParameters
|
|
10342
|
+
|
|
10343
|
+
* @deprecated
|
|
10344
|
+
*/
|
|
10351
10345
|
schematicsGetSchematicFileDownloadUrl(requestParameters: SchematicsGetSchematicFileDownloadUrlRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
10352
10346
|
/**
|
|
10353
|
-
|
|
10354
|
-
|
|
10355
|
-
|
|
10356
|
-
|
|
10347
|
+
* Generate preview image for schematic layer file.
|
|
10348
|
+
*
|
|
10349
|
+
* @param requestParameters
|
|
10350
|
+
|
|
10351
|
+
* @deprecated
|
|
10352
|
+
*/
|
|
10357
10353
|
schematicsGetSchematicFilePreviewUrl(requestParameters: SchematicsGetSchematicFilePreviewUrlRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
10358
10354
|
/**
|
|
10359
|
-
|
|
10360
|
-
|
|
10361
|
-
|
|
10362
|
-
|
|
10363
|
-
|
|
10364
|
-
|
|
10365
|
-
|
|
10366
|
-
|
|
10367
|
-
|
|
10368
|
-
|
|
10355
|
+
* Get schematic layer details by id.
|
|
10356
|
+
*
|
|
10357
|
+
* @param requestParameters
|
|
10358
|
+
|
|
10359
|
+
* @deprecated
|
|
10360
|
+
*/
|
|
10361
|
+
schematicsGetSchematicLayer(requestParameters: SchematicsGetSchematicLayerRequestParams, extraHttpRequestParams?: any): Observable<DownloadLayerDto>;
|
|
10362
|
+
/**
|
|
10363
|
+
* Move schematic layer.
|
|
10364
|
+
*
|
|
10365
|
+
* @param requestParameters
|
|
10366
|
+
|
|
10367
|
+
* @deprecated
|
|
10368
|
+
*/
|
|
10369
10369
|
schematicsMoveSchematicLayer(requestParameters: SchematicsMoveSchematicLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
10370
10370
|
/**
|
|
10371
|
-
|
|
10372
|
-
|
|
10373
|
-
|
|
10374
|
-
|
|
10371
|
+
* Remove schematic layer by id.
|
|
10372
|
+
*
|
|
10373
|
+
* @param requestParameters
|
|
10374
|
+
|
|
10375
|
+
* @deprecated
|
|
10376
|
+
*/
|
|
10375
10377
|
schematicsRemoveSchematicLayer(requestParameters: SchematicsRemoveSchematicLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
10376
10378
|
/**
|
|
10377
|
-
|
|
10378
|
-
|
|
10379
|
-
|
|
10380
|
-
|
|
10381
|
-
|
|
10382
|
-
|
|
10383
|
-
|
|
10384
|
-
|
|
10385
|
-
|
|
10386
|
-
|
|
10379
|
+
* Search schematic layers.
|
|
10380
|
+
*
|
|
10381
|
+
* @param requestParameters
|
|
10382
|
+
|
|
10383
|
+
* @deprecated
|
|
10384
|
+
*/
|
|
10385
|
+
schematicsSearchSchematicLayers(requestParameters: SchematicsSearchSchematicLayersRequestParams, extraHttpRequestParams?: any): Observable<Array<DownloadLayerHierarchyItemDto>>;
|
|
10386
|
+
/**
|
|
10387
|
+
* Update schematic layer.
|
|
10388
|
+
*
|
|
10389
|
+
* @param requestParameters
|
|
10390
|
+
|
|
10391
|
+
* @deprecated
|
|
10392
|
+
*/
|
|
10387
10393
|
schematicsUpdateSchematicLayer(requestParameters: SchematicsUpdateSchematicLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
10388
10394
|
}
|
|
10389
10395
|
|
|
@@ -10395,6 +10401,7 @@ declare class BombSchematicsApiService extends BaseService implements BombSchema
|
|
|
10395
10401
|
* @param requestParameters
|
|
10396
10402
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10397
10403
|
* @param reportProgress flag to report request and response progress.
|
|
10404
|
+
* @deprecated
|
|
10398
10405
|
*/
|
|
10399
10406
|
schematicsCreateSchematicLayer(requestParameters?: SchematicsCreateSchematicLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10400
10407
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
@@ -10416,27 +10423,29 @@ declare class BombSchematicsApiService extends BaseService implements BombSchema
|
|
|
10416
10423
|
* @param requestParameters
|
|
10417
10424
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10418
10425
|
* @param reportProgress flag to report request and response progress.
|
|
10426
|
+
* @deprecated
|
|
10419
10427
|
*/
|
|
10420
10428
|
schematicsDuplicateSchematicLayer(requestParameters: SchematicsDuplicateSchematicLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10421
10429
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10422
10430
|
context?: HttpContext;
|
|
10423
10431
|
transferCache?: boolean;
|
|
10424
|
-
}): Observable<
|
|
10432
|
+
}): Observable<DownloadLayerHierarchyItemDto>;
|
|
10425
10433
|
schematicsDuplicateSchematicLayer(requestParameters: SchematicsDuplicateSchematicLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
10426
10434
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10427
10435
|
context?: HttpContext;
|
|
10428
10436
|
transferCache?: boolean;
|
|
10429
|
-
}): Observable<HttpResponse<
|
|
10437
|
+
}): Observable<HttpResponse<DownloadLayerHierarchyItemDto>>;
|
|
10430
10438
|
schematicsDuplicateSchematicLayer(requestParameters: SchematicsDuplicateSchematicLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
10431
10439
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10432
10440
|
context?: HttpContext;
|
|
10433
10441
|
transferCache?: boolean;
|
|
10434
|
-
}): Observable<HttpEvent<
|
|
10442
|
+
}): Observable<HttpEvent<DownloadLayerHierarchyItemDto>>;
|
|
10435
10443
|
/**
|
|
10436
10444
|
* Generate cloud URL for schematic layer file downloading.
|
|
10437
10445
|
* @param requestParameters
|
|
10438
10446
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10439
10447
|
* @param reportProgress flag to report request and response progress.
|
|
10448
|
+
* @deprecated
|
|
10440
10449
|
*/
|
|
10441
10450
|
schematicsGetSchematicFileDownloadUrl(requestParameters: SchematicsGetSchematicFileDownloadUrlRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10442
10451
|
httpHeaderAccept?: undefined;
|
|
@@ -10458,6 +10467,7 @@ declare class BombSchematicsApiService extends BaseService implements BombSchema
|
|
|
10458
10467
|
* @param requestParameters
|
|
10459
10468
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10460
10469
|
* @param reportProgress flag to report request and response progress.
|
|
10470
|
+
* @deprecated
|
|
10461
10471
|
*/
|
|
10462
10472
|
schematicsGetSchematicFilePreviewUrl(requestParameters: SchematicsGetSchematicFilePreviewUrlRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10463
10473
|
httpHeaderAccept?: undefined;
|
|
@@ -10479,27 +10489,29 @@ declare class BombSchematicsApiService extends BaseService implements BombSchema
|
|
|
10479
10489
|
* @param requestParameters
|
|
10480
10490
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10481
10491
|
* @param reportProgress flag to report request and response progress.
|
|
10492
|
+
* @deprecated
|
|
10482
10493
|
*/
|
|
10483
10494
|
schematicsGetSchematicLayer(requestParameters: SchematicsGetSchematicLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10484
10495
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10485
10496
|
context?: HttpContext;
|
|
10486
10497
|
transferCache?: boolean;
|
|
10487
|
-
}): Observable<
|
|
10498
|
+
}): Observable<DownloadLayerDto>;
|
|
10488
10499
|
schematicsGetSchematicLayer(requestParameters: SchematicsGetSchematicLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
10489
10500
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10490
10501
|
context?: HttpContext;
|
|
10491
10502
|
transferCache?: boolean;
|
|
10492
|
-
}): Observable<HttpResponse<
|
|
10503
|
+
}): Observable<HttpResponse<DownloadLayerDto>>;
|
|
10493
10504
|
schematicsGetSchematicLayer(requestParameters: SchematicsGetSchematicLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
10494
10505
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10495
10506
|
context?: HttpContext;
|
|
10496
10507
|
transferCache?: boolean;
|
|
10497
|
-
}): Observable<HttpEvent<
|
|
10508
|
+
}): Observable<HttpEvent<DownloadLayerDto>>;
|
|
10498
10509
|
/**
|
|
10499
10510
|
* Move schematic layer.
|
|
10500
10511
|
* @param requestParameters
|
|
10501
10512
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10502
10513
|
* @param reportProgress flag to report request and response progress.
|
|
10514
|
+
* @deprecated
|
|
10503
10515
|
*/
|
|
10504
10516
|
schematicsMoveSchematicLayer(requestParameters: SchematicsMoveSchematicLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10505
10517
|
httpHeaderAccept?: undefined;
|
|
@@ -10521,6 +10533,7 @@ declare class BombSchematicsApiService extends BaseService implements BombSchema
|
|
|
10521
10533
|
* @param requestParameters
|
|
10522
10534
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10523
10535
|
* @param reportProgress flag to report request and response progress.
|
|
10536
|
+
* @deprecated
|
|
10524
10537
|
*/
|
|
10525
10538
|
schematicsRemoveSchematicLayer(requestParameters: SchematicsRemoveSchematicLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10526
10539
|
httpHeaderAccept?: undefined;
|
|
@@ -10542,27 +10555,29 @@ declare class BombSchematicsApiService extends BaseService implements BombSchema
|
|
|
10542
10555
|
* @param requestParameters
|
|
10543
10556
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10544
10557
|
* @param reportProgress flag to report request and response progress.
|
|
10558
|
+
* @deprecated
|
|
10545
10559
|
*/
|
|
10546
10560
|
schematicsSearchSchematicLayers(requestParameters?: SchematicsSearchSchematicLayersRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10547
10561
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10548
10562
|
context?: HttpContext;
|
|
10549
10563
|
transferCache?: boolean;
|
|
10550
|
-
}): Observable<Array<
|
|
10564
|
+
}): Observable<Array<DownloadLayerHierarchyItemDto>>;
|
|
10551
10565
|
schematicsSearchSchematicLayers(requestParameters?: SchematicsSearchSchematicLayersRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
10552
10566
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10553
10567
|
context?: HttpContext;
|
|
10554
10568
|
transferCache?: boolean;
|
|
10555
|
-
}): Observable<HttpResponse<Array<
|
|
10569
|
+
}): Observable<HttpResponse<Array<DownloadLayerHierarchyItemDto>>>;
|
|
10556
10570
|
schematicsSearchSchematicLayers(requestParameters?: SchematicsSearchSchematicLayersRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
10557
10571
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10558
10572
|
context?: HttpContext;
|
|
10559
10573
|
transferCache?: boolean;
|
|
10560
|
-
}): Observable<HttpEvent<Array<
|
|
10574
|
+
}): Observable<HttpEvent<Array<DownloadLayerHierarchyItemDto>>>;
|
|
10561
10575
|
/**
|
|
10562
10576
|
* Update schematic layer.
|
|
10563
10577
|
* @param requestParameters
|
|
10564
10578
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10565
10579
|
* @param reportProgress flag to report request and response progress.
|
|
10580
|
+
* @deprecated
|
|
10566
10581
|
*/
|
|
10567
10582
|
schematicsUpdateSchematicLayer(requestParameters: SchematicsUpdateSchematicLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10568
10583
|
httpHeaderAccept?: undefined;
|
|
@@ -10607,7 +10622,7 @@ interface ValidationsMoveMaterialLayerRequestParams {
|
|
|
10607
10622
|
validationLayerId: number;
|
|
10608
10623
|
validationLayerIdMoveLayerDto?: ValidationLayerIdMoveLayerDto;
|
|
10609
10624
|
}
|
|
10610
|
-
interface
|
|
10625
|
+
interface ValidationsRemoveValidationLayerRequestParams {
|
|
10611
10626
|
validationLayerId: number;
|
|
10612
10627
|
}
|
|
10613
10628
|
interface ValidationsSearchValidationLayersRequestParams {
|
|
@@ -10649,7 +10664,7 @@ interface BombValidationsApiServiceInterface {
|
|
|
10649
10664
|
*
|
|
10650
10665
|
* @param requestParameters
|
|
10651
10666
|
*/
|
|
10652
|
-
|
|
10667
|
+
validationsRemoveValidationLayer(requestParameters: ValidationsRemoveValidationLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
10653
10668
|
/**
|
|
10654
10669
|
* Search validation layers.
|
|
10655
10670
|
*
|
|
@@ -10757,17 +10772,17 @@ declare class BombValidationsApiService extends BaseService implements BombValid
|
|
|
10757
10772
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10758
10773
|
* @param reportProgress flag to report request and response progress.
|
|
10759
10774
|
*/
|
|
10760
|
-
|
|
10775
|
+
validationsRemoveValidationLayer(requestParameters: ValidationsRemoveValidationLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10761
10776
|
httpHeaderAccept?: undefined;
|
|
10762
10777
|
context?: HttpContext;
|
|
10763
10778
|
transferCache?: boolean;
|
|
10764
10779
|
}): Observable<any>;
|
|
10765
|
-
|
|
10780
|
+
validationsRemoveValidationLayer(requestParameters: ValidationsRemoveValidationLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
10766
10781
|
httpHeaderAccept?: undefined;
|
|
10767
10782
|
context?: HttpContext;
|
|
10768
10783
|
transferCache?: boolean;
|
|
10769
10784
|
}): Observable<HttpResponse<any>>;
|
|
10770
|
-
|
|
10785
|
+
validationsRemoveValidationLayer(requestParameters: ValidationsRemoveValidationLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
10771
10786
|
httpHeaderAccept?: undefined;
|
|
10772
10787
|
context?: HttpContext;
|
|
10773
10788
|
transferCache?: boolean;
|
|
@@ -12943,6 +12958,90 @@ declare class ProjectQualifiedSpecificationsApiService extends BaseService imple
|
|
|
12943
12958
|
static ɵprov: i0.ɵɵInjectableDeclaration<ProjectQualifiedSpecificationsApiService>;
|
|
12944
12959
|
}
|
|
12945
12960
|
|
|
12961
|
+
/**
|
|
12962
|
+
* RenewAire CORES API
|
|
12963
|
+
*
|
|
12964
|
+
* Contact: renewaire@saritasa.com
|
|
12965
|
+
*
|
|
12966
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12967
|
+
* https://openapi-generator.tech
|
|
12968
|
+
* Do not edit the class manually.
|
|
12969
|
+
*/
|
|
12970
|
+
|
|
12971
|
+
interface ProjectQuoteUpdateProjectQuoteCustomItemsRequestParams {
|
|
12972
|
+
projectRevisionId: number;
|
|
12973
|
+
updateProjectQuoteCustomItemDto?: Array<UpdateProjectQuoteCustomItemDto>;
|
|
12974
|
+
}
|
|
12975
|
+
interface ProjectQuoteUpdateQuoteRequestParams {
|
|
12976
|
+
projectRevisionId: number;
|
|
12977
|
+
updateProjectQuoteDtoOperation?: Array<UpdateProjectQuoteDtoOperation>;
|
|
12978
|
+
}
|
|
12979
|
+
interface ProjectQuotesApiServiceInterface {
|
|
12980
|
+
defaultHeaders: HttpHeaders;
|
|
12981
|
+
configuration: Configuration;
|
|
12982
|
+
/**
|
|
12983
|
+
* Update project quote custom items.
|
|
12984
|
+
*
|
|
12985
|
+
* @param requestParameters
|
|
12986
|
+
*/
|
|
12987
|
+
projectQuoteUpdateProjectQuoteCustomItems(requestParameters: ProjectQuoteUpdateProjectQuoteCustomItemsRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
12988
|
+
/**
|
|
12989
|
+
* Update project quote.
|
|
12990
|
+
*
|
|
12991
|
+
* @param requestParameters
|
|
12992
|
+
*/
|
|
12993
|
+
projectQuoteUpdateQuote(requestParameters: ProjectQuoteUpdateQuoteRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
12994
|
+
}
|
|
12995
|
+
|
|
12996
|
+
declare class ProjectQuotesApiService extends BaseService implements ProjectQuotesApiServiceInterface {
|
|
12997
|
+
protected httpClient: HttpClient;
|
|
12998
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
12999
|
+
/**
|
|
13000
|
+
* Update project quote custom items.
|
|
13001
|
+
* @param requestParameters
|
|
13002
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
13003
|
+
* @param reportProgress flag to report request and response progress.
|
|
13004
|
+
*/
|
|
13005
|
+
projectQuoteUpdateProjectQuoteCustomItems(requestParameters: ProjectQuoteUpdateProjectQuoteCustomItemsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
13006
|
+
httpHeaderAccept?: undefined;
|
|
13007
|
+
context?: HttpContext;
|
|
13008
|
+
transferCache?: boolean;
|
|
13009
|
+
}): Observable<any>;
|
|
13010
|
+
projectQuoteUpdateProjectQuoteCustomItems(requestParameters: ProjectQuoteUpdateProjectQuoteCustomItemsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
13011
|
+
httpHeaderAccept?: undefined;
|
|
13012
|
+
context?: HttpContext;
|
|
13013
|
+
transferCache?: boolean;
|
|
13014
|
+
}): Observable<HttpResponse<any>>;
|
|
13015
|
+
projectQuoteUpdateProjectQuoteCustomItems(requestParameters: ProjectQuoteUpdateProjectQuoteCustomItemsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
13016
|
+
httpHeaderAccept?: undefined;
|
|
13017
|
+
context?: HttpContext;
|
|
13018
|
+
transferCache?: boolean;
|
|
13019
|
+
}): Observable<HttpEvent<any>>;
|
|
13020
|
+
/**
|
|
13021
|
+
* Update project quote.
|
|
13022
|
+
* @param requestParameters
|
|
13023
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
13024
|
+
* @param reportProgress flag to report request and response progress.
|
|
13025
|
+
*/
|
|
13026
|
+
projectQuoteUpdateQuote(requestParameters: ProjectQuoteUpdateQuoteRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
13027
|
+
httpHeaderAccept?: undefined;
|
|
13028
|
+
context?: HttpContext;
|
|
13029
|
+
transferCache?: boolean;
|
|
13030
|
+
}): Observable<any>;
|
|
13031
|
+
projectQuoteUpdateQuote(requestParameters: ProjectQuoteUpdateQuoteRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
13032
|
+
httpHeaderAccept?: undefined;
|
|
13033
|
+
context?: HttpContext;
|
|
13034
|
+
transferCache?: boolean;
|
|
13035
|
+
}): Observable<HttpResponse<any>>;
|
|
13036
|
+
projectQuoteUpdateQuote(requestParameters: ProjectQuoteUpdateQuoteRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
13037
|
+
httpHeaderAccept?: undefined;
|
|
13038
|
+
context?: HttpContext;
|
|
13039
|
+
transferCache?: boolean;
|
|
13040
|
+
}): Observable<HttpEvent<any>>;
|
|
13041
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProjectQuotesApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
13042
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProjectQuotesApiService>;
|
|
13043
|
+
}
|
|
13044
|
+
|
|
12946
13045
|
/**
|
|
12947
13046
|
* RenewAire CORES API
|
|
12948
13047
|
*
|
|
@@ -16520,7 +16619,7 @@ declare class UsersManagementApiService extends BaseService implements UsersMana
|
|
|
16520
16619
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersManagementApiService>;
|
|
16521
16620
|
}
|
|
16522
16621
|
|
|
16523
|
-
declare const APIS: (typeof AuditLogsApiService | typeof AuthApiService | typeof
|
|
16622
|
+
declare const APIS: (typeof AuditLogsApiService | typeof AuthApiService | typeof BombDownloadsApiService | typeof BombMaterialsApiService | typeof BombParametersApiService | typeof BombRoutingsApiService | typeof BombSchematicsApiService | typeof BombValidationsApiService | typeof ControllerProgramsApiService | typeof CsiApiService | typeof FeedbacksApiService | typeof GroupsApiService | typeof KnownContactsApiService | typeof LeadTimesApiService | typeof MaintenanceApiService | typeof PartsApiService | typeof PermissionBundlesApiService | typeof PermissionsApiService | typeof PricingApiService | typeof ProjectBidStatusesApiService | typeof ProjectDiscountsApiService | typeof ProjectLinesApiService | typeof ProjectLinksApiService | typeof ProjectNotesApiService | typeof ProjectQualifiedSpecificationsApiService | typeof ProjectQuotesApiService | typeof ProjectRevisionsApiService | typeof ProjectSharingApiService | typeof ProjectShippingApiService | typeof ProjectSoldToApiService | typeof ProjectStatusesApiService | typeof ProjectsApiService | typeof RegionsApiService | typeof RepContactsApiService | typeof RepSalesReportsApiService | typeof RepTerritoriesApiService | typeof RepTerritoryLocationsApiService | typeof RsdRegionsApiService | typeof S3ApiService | typeof StaticFilesApiService | typeof UserTablesApiService | typeof UsersApiService | typeof UsersManagementApiService)[];
|
|
16524
16623
|
|
|
16525
16624
|
declare const BASE_PATH: InjectionToken<string>;
|
|
16526
16625
|
declare const COLLECTION_FORMATS: {
|
|
@@ -16540,5 +16639,5 @@ declare class ApiModule {
|
|
|
16540
16639
|
|
|
16541
16640
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
16542
16641
|
|
|
16543
|
-
export { APIS, AddressCountry, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH,
|
|
16544
|
-
export type { AddressDto, AuditLogChange, AuditLogDto, AuditLogDtoPagedListMetadataDto, AuditLogsApiServiceInterface, AuditLogsSearchAuditLogsRequestParams, AuditLogsSearchProjectRevisionAuditLogsRequestParams, AuthApiServiceInterface, AuthAuthenticateByEmailTokenRequestParams, AuthAuthenticateRequestParams, AuthUpdateUserTokenPermissionsRequestParams, BaseStatusChangeCommand, BombDrawingsApiServiceInterface, BombMaterialsApiServiceInterface, BombParametersApiServiceInterface, BombRoutingsApiServiceInterface, BombSchematicsApiServiceInterface, BombValidationsApiServiceInterface, CalculatePricesDto, CancelQuoteRequestCommand, ChangeCurrentUserPasswordCommand, ChangeEmailCommand, CompanyInformationDto, ConfigurationParameters, ConnectedGroupDto, ContactDto, ControllerProgramDto, ControllerProgramDtoPagedListMetadataDto, ControllerProgramsApiServiceInterface, ControllerProgramsCreateControllerProgramRequestParams, ControllerProgramsCreateFileDownloadUrlRequestParams, ControllerProgramsGetControllerProgramRequestParams, ControllerProgramsSearchControllerProgramsRequestParams, ControllerProgramsUpdateControllerProgramRequestParams, CreateDrawingLayerCommand, CreateMaterialLayerCommand, CreateProjectRevisionCommand, CreateRepSalesReportCommand, CreateRoutingLayerCommand, CreateSchematicLayerCommand, CreateUploadUrlCommand, CreateValidationLayerCommand, CsiApiServiceInterface, CsiCreateCsiItemRequestParams, CurrentUserDetailsDto, CurrentUserDto, CustomerDto, CustomerDtoPagedListMetadataDto, CustomerSoldToDto, CustomerSoldToDtoPagedListMetadataDto, DataFormat, DataType, DesignWeatherConditionDto, DistanceDto, DrawingLayerDto, DrawingLayerHierarchyItemDto, DrawingLayerIdMoveLayerDto, DrawingsCreateDrawingLayerRequestParams, DrawingsDuplicateDrawingLayerRequestParams, DrawingsGetDrawingFileDownloadUrlRequestParams, DrawingsGetDrawingFilePreviewUrlRequestParams, DrawingsGetDrawingLayerRequestParams, DrawingsMoveDrawingLayerRequestParams, DrawingsRemoveDrawingLayerRequestParams, DrawingsSearchDrawingLayersRequestParams, DrawingsUpdateDrawingLayerRequestParams, DuplicateBombLayerDto, DuplicateProjectRequest, EmailConfirmationTokenDto, FeedbacksApiServiceInterface, FeedbacksCreateFeedbackRequestParams, FileDto, ForgotPasswordCommand, GetAllModelOptionsDto, GetModelParametersDto, GetNumberPartsDto, GetShippingLocationDto, GrommetDto, GroupDto, GroupsApiServiceInterface, GroupsCreateGroupRequestParams, GroupsGetGroupRequestParams, GroupsRemoveGroupRequestParams, GroupsSearchGroupsRequestParams, GroupsUpdateGroupRequestParams, IdNameDto, Int32IdDto, InviteDto, KnownContactsApiServiceInterface, KnownContactsCreateKnowContactRequestParams, KnownContactsRemoveKnownContactRequestParams, KnownContactsSearchKnownContactsRequestParams, KnownContactsUpdateKnownContactRequestParams, LeadTimeDto, LeadTimeGroupsDto, LeadTimesApiServiceInterface, LeadTimesCreateLeadTimesTableRequestParams, LeadTimesTableDto, LeadTimesUpdateLeadTimesTableRequestParams, LineHierarchyItemDto, LinkedProjectDto, LoginUserCommand, MaintenanceApiServiceInterface, MaintenanceSetMaintenanceModeRequestParams, MaterialLayerDto, MaterialLayerHierarchyItemDto, MaterialLayerIdMoveLayerDto, MaterialMultiplierRuleDto, MaterialQuantityRuleDto, MaterialsCreateMaterialLayerRequestParams, MaterialsDuplicateMaterialLayerRequestParams, MaterialsGetMaterialLayerRequestParams, MaterialsMoveMaterialLayerRequestParams, MaterialsRemoveMaterialLayerRequestParams, MaterialsSearchMaterialLayersRequestParams, MaterialsUpdateMaterialLayerRequestParams, ModelMaterialLayerAggregateItemDto, ModelMaterialLayerHierarchyItemDto, ModelNumberPartDto, ModelNumberValidationErrorDto, ModelNumberValidationResultDto, ModelOptionsGroupDto, ModelParameterDto, ModelParameterMetadataDto, ModelParametersSearchMaterialLayersAggregateRequestParams, ModelParametersSearchMaterialLayersNestedRequestParams, ModelParametersSearchModelDrawingLayersRequestParams, ModelParametersSearchModelSchematicLayersRequestParams, ModelParametersSearchModelValidationLayersRequestParams, ModelParametersSearchRoutingLayersAggregateRequestParams, ModelParametersSearchRoutingLayersNestedRequestParams, ModelParametersValidateModelNumberRequestParams, ModelRoutingLayerAggregateItemDto, ModelRoutingLayerHierarchyItemDto, NewProjectResultDto, OffsetLimitListMetadata, PagedListMetadata, Param, ParamLocation, ParamStyle, PartsApiServiceInterface, PermissionBundleDto, PermissionBundlesApiServiceInterface, PermissionBundlesCreatePermissionBundleRequestParams, PermissionBundlesGetPermissionBundleRequestParams, PermissionBundlesRemovePermissionBundleRequestParams, PermissionBundlesSearchPermissionBundlesRequestParams, PermissionBundlesUpdatePermissionBundleRequestParams, PermissionDto, PermissionsApiServiceInterface, PostPreSignedUrlDto, PriceDto, PricingApiServiceInterface, ProcessQualifiedSpecificationDto, ProjectBidStatusAttachmentDto, ProjectBidStatusCreateBidStatusRequestParams, ProjectBidStatusDto, ProjectBidStatusGetProjectBidStatusAttachmentDownloadUrlRequestParams, ProjectBidStatusGetProjectBidStatusAttachmentPreviewUrlRequestParams, ProjectBidStatusIdIdDto, ProjectBidStatusRemoveBidStatusRequestParams, ProjectBidStatusUpdateBidStatusRequestParams, ProjectBidStatusesApiServiceInterface, ProjectDesignConditionsDto, ProjectDiscountAttachmentDto, ProjectDiscountDto, ProjectDiscountIdIdDto, ProjectDiscountsApiServiceInterface, ProjectDiscountsCreateProjectDiscountRequestParams, ProjectDiscountsDeleteProjectDiscountRequestParams, ProjectDiscountsGetDiscountAttachmentDownloadUrlRequestParams, ProjectDiscountsGetDiscountAttachmentPreviewUrlRequestParams, ProjectDiscountsReviewProjectDiscountRequestParams, ProjectDiscountsUpdateProjectDiscountRequestParams, ProjectDto, ProjectEditModeDto, ProjectFacilityDto, ProjectLineDto, ProjectLineGuidIdDto, ProjectLineValidation, ProjectLineValidationDto, ProjectLinesApiServiceInterface, ProjectLinesCreateProjectLineRequestParams, ProjectLinesSetLineShippingLocationsRequestParams, ProjectLinesUpdateProjectLinesRequestParams, ProjectLinkIdIdDto, ProjectLinksApiServiceInterface, ProjectLinksCreateProjectLinkRequestParams, ProjectLinksRemoveProjectLinkRequestParams, ProjectLinksSearchProjectLinksRequestParams, ProjectLinksUpdateProjectLinkRequestParams, ProjectLogDto, ProjectNoteAttachmentDto, ProjectNoteIdIdDto, ProjectNotesApiServiceInterface, ProjectNotesCreateProjectNoteRequestParams, ProjectNotesGetProjectNoteAttachmentDownloadUrlRequestParams, ProjectNotesGetProjectNoteAttachmentPreviewRequestParams, ProjectNotesRemoveProjectNoteRequestParams, ProjectNotesSearchProjectsRequestParams, ProjectNotesUpdateProjectNoteRequestParams, ProjectPartsSearchPartsRequestParams, ProjectPricingCalculatePriceSourcesRequestParams, ProjectQualifiedSpecificationAttachmentDto, ProjectQualifiedSpecificationDto, ProjectQualifiedSpecificationGetQualifiedSpecificationAttachmentDownloadUrlRequestParams, ProjectQualifiedSpecificationGetQualifiedSpecificationAttachmentPreviewUrlRequestParams, ProjectQualifiedSpecificationProcessQualifiedSpecificationRequestParams, ProjectQualifiedSpecificationSubmitQualifiedSpecificationRequestParams, ProjectQualifiedSpecificationsApiServiceInterface, ProjectRevisionIdIdDto, ProjectRevisionsApiServiceInterface, ProjectRevisionsCreateRevisionRequestParams, ProjectRevisionsGetBidStatusRequestParams, ProjectRevisionsGetProjectRevisionLogsRequestParams, ProjectRevisionsRemoveRevisionRequestParams, ProjectRevisionsSearchProjectRevisionsRequestParams, ProjectRevisionsSetRevisionAsMainRequestParams, ProjectRevisionsUpdateRevisionMetadataRequestParams, ProjectRevisionsUpdateRevisionRequestParams, ProjectShareItemDto, ProjectSharingApiServiceInterface, ProjectSharingGetProjectShareItemsRequestParams, ProjectSharingRemoveProjectShareRequestParams, ProjectSharingShareProjectRequestParams, ProjectSharingUpdateProjectShareRequestParams, ProjectShippingApiServiceInterface, ProjectShippingCreateLocationFromCsiCustomerRequestParams, ProjectShippingCreateLocationRequestParams, ProjectShippingGetLocationsRequestParams, ProjectShippingRemoveShippingLocationRequestParams, ProjectShippingSearchShipToRequestParams, ProjectSoldToApiServiceInterface, ProjectSoldToDto, ProjectSoldToSearchSoldToRequestParams, ProjectStatusesApiServiceInterface, ProjectStatusesCancelQuoteRequestRequestParams, ProjectStatusesRequestOrderRequestParams, ProjectStatusesRequestQuote0RequestParams, ProjectStatusesRequestQuoteRequestParams, ProjectStatusesSubmitQuoteRequestParams, ProjectStatusesSubmitToRenewAireRequestParams, ProjectsApiServiceInterface, ProjectsCreateProjectRequestParams, ProjectsDuplicateProjectRequestParams, ProjectsExtendProjectEditModeRequestParams, ProjectsGetProjectEditModeRequestParams, ProjectsGetProjectRequestParams, ProjectsSearchProjectsRequestParams, ProjectsStartEditProjectRequestParams, ProjectsStopEditProjectRequestParams, RegionsApiServiceInterface, RegionsSearchRegionsRequestParams, RejectQuoteCommand, RepContactsApiServiceInterface, RepContactsGetRepTerritoryRepContactRequestParams, RepContactsRemoveRepTerritoryRepContactRequestParams, RepContactsSearchRepTerritoryRepContactRequestParams, RepContactsUpdateRepTerritoryRepContactRequestParams, RepSalesReportDto, RepSalesReportDtoPagedListMetadataDto, RepSalesReportsApiServiceInterface, RepSalesReportsCreateRepSalesReportDownloadUrlRequestParams, RepSalesReportsCreateRepSalesReportRequestParams, RepSalesReportsGetRepSalesReportRequestParams, RepSalesReportsRemoveRepSalesReportRequestParams, RepSalesReportsSearchRepSalesReportsRequestParams, RepTerritoriesApiServiceInterface, RepTerritoriesCreateRepTerritoryLocationRequestParams, RepTerritoriesCreateRepTerritoryRepContactRequestParams, RepTerritoriesCreateRepTerritoryRequestParams, RepTerritoriesGetRepTerritoryRequestParams, RepTerritoriesRemoveRepTerritoryRequestParams, RepTerritoriesSearchAccessibleRepUsersRequestParams, RepTerritoriesSearchRepTerritoriesRequestParams, RepTerritoriesUpdateRepTerritoryRequestParams, RepTerritoryContactsDto, RepTerritoryDto, RepTerritoryLocationDto, RepTerritoryLocationsApiServiceInterface, RepTerritoryLocationsGetRepTerritoryLocationRequestParams, RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams, RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams, RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams, RepTerritoryRepContactDto, RequestChangeEmailCommand, RequestOrderCommand, RequestQuoteCommand, ResetPasswordCommand, ReviewProjectDiscountDto, RoutingLayerDto, RoutingLayerHierarchyItemDto, RoutingLayerIdMoveLayerDto, RoutingRuleDto, RoutingsCreateRoutingLayerRequestParams, RoutingsDuplicateRoutingLayerRequestParams, RoutingsGetRoutingLayerRequestParams, RoutingsMoveRoutingLayerRequestParams, RoutingsRemoveRoutingLayerRequestParams, RoutingsSearchRoutingLayersRequestParams, RoutingsUpdateRoutingLayerRequestParams, RsdRegionDocumentDto, RsdRegionDto, RsdRegionRepTerritoryDto, RsdRegionUserDto, RsdRegionsApiServiceInterface, RsdRegionsCreateRsdRegionRequestParams, RsdRegionsGetRsdRegionDocumentDownloadUrlRequestParams, RsdRegionsGetRsdRegionDocumentPreviewRequestParams, RsdRegionsGetRsdRegionRequestParams, RsdRegionsRemoveRsdRegionRequestParams, RsdRegionsSearchRsdRegionTagsRequestParams, RsdRegionsSearchRsdRegionsRequestParams, RsdRegionsUpdateRsdRegionRequestParams, RuleSetAndOperandDto, RuleSetDto, RuleSetOrOperandDto, S3ApiServiceInterface, S3CreateFileUploadUrlRequestParams, SalesContactDto, SaveBidStatusDto, SaveBombLayerDto, SaveControllerProgramDto, SaveDrawingLayerDto, SaveGroupDto, SaveKnownContactDto, SaveLeadTimeDto, SaveLeadTimeGroupsDto, SaveLeadTimesTableDto, SaveLineDto, SaveMaterialLayerDto, SaveMaterialMultiplierRuleDto, SaveMaterialQuantityRuleDto, SavePermissionBundleDto, SaveProjectDiscountDto, SaveProjectLinkDto, SaveProjectNoteDto, SaveProjectRevisionMetadataDto, SaveQualifiedSpecificationDto, SaveRepTerritoryLocationDto, SaveRepTerritoryRepContactDto, SaveRoutingLayerDto, SaveRoutingRuleDto, SaveSchematicLayerDto, SaveUserDesignConditionsDto, SaveUserProjectSettingsDto, SaveUserQuoteSettingsDto, SaveValidationLayerDto, SchematicLayerDto, SchematicLayerHierarchyItemDto, SchematicLayerIdMoveLayerDto, SchematicsCreateSchematicLayerRequestParams, SchematicsDuplicateSchematicLayerRequestParams, SchematicsGetSchematicFileDownloadUrlRequestParams, SchematicsGetSchematicFilePreviewUrlRequestParams, SchematicsGetSchematicLayerRequestParams, SchematicsMoveSchematicLayerRequestParams, SchematicsRemoveSchematicLayerRequestParams, SchematicsSearchSchematicLayersRequestParams, SchematicsUpdateSchematicLayerRequestParams, SearchBombDto, SearchGroupDto, SearchGroupDtoPagedListMetadataDto, SearchKnownContactDto, SearchKnownContactDtoPagedListMetadataDto, SearchModelDrawingDto, SearchModelSchematicDto, SearchModelValidationDto, SearchPartDto, SearchPartDtoPagedListMetadataDto, SearchPermissionBundleDto, SearchPermissionBundleDtoPagedListMetadataDto, SearchProjectDto, SearchProjectDtoPagedListMetadataDto, SearchProjectLinkDto, SearchProjectLinkDtoPagedListMetadataDto, SearchProjectNoteDto, SearchProjectNoteDtoPagedListMetadataDto, SearchRegionDto, SearchRegionDtoPagedListMetadataDto, SearchRepTerritoryDto, SearchRepTerritoryDtoPagedListMetadataDto, SearchRepTerritoryLocationDto, SearchRepTerritoryLocationDtoPagedListMetadataDto, SearchRepTerritoryRepContactDto, SearchRepTerritoryRepContactDtoPagedListMetadataDto, SearchRepUserDto, SearchRepUserDtoPagedListMetadataDto, SearchRevisionDto, SearchRevisionDtoPagedListMetadataDto, SearchRsdRegionDto, SearchRsdRegionDtoPagedListMetadataDto, SearchUserDetailsDto, SearchUserDetailsDtoPagedListMetadataDto, SearchUserDto, SearchUserDtoPagedListMetadataDto, SetAddressDto, SetLineShippingLocationDto, SetPreferredLanguageCommand, SetUserOccupationCommand, SetUserPasswordCommand, ShareProjectCommand, ShippingLocationDto, StandardDataFormat, StandardDataType, StandardParamStyle, StaticFilesApiServiceInterface, StaticFilesGetRequestParams, StringPagedListMetadataDto, SubmitQuoteCommand, SubmitToRenewAireCommand, TableSettingDto, TableSettingsGetTableSettingRequestParams, TableSettingsSaveTableSettingRequestParams, TemperatureDto, TokenModel, TotalCountListMetadata, UpdateLinesDto, UpdateProjectDesignConditionsDto, UpdateProjectDiscountDto, UpdateProjectFacilityDto, UpdateProjectNoteDto, UpdateProjectRevisionDto, UpdateProjectRevisionDtoOperation, UpdateProjectShareCommand, UpdateProjectSoldToDto, UpdateRepTerritoryLocationDto, UpdateRepTerritoryRepContactDto, UpdateUserTokenPermissionsCommand, UploadFileDto, UploadUrlResult, UserDesignConditionsDto, UserDetailsDto, UserEmailDto, UserPermissionDto, UserPermissionSourceDto, UserProfileDto, UserQuoteDto, UserTablesApiServiceInterface, UsersAdminSetUserPasswordRequestParams, UsersApiServiceInterface, UsersChangeCurrentUserPasswordRequestParams, UsersChangeEmailRequestParams, UsersConfirmEmailRequestParams, UsersDeactivateRequestParams, UsersForgotPasswordRequestParams, UsersGetRepContactsRequestParams, UsersGetUserPermissionsRequestParams, UsersGetUserProfileRequestParams, UsersManagementApiServiceInterface, UsersManagementCreateUserRequestParams, UsersManagementGetUserRequestParams, UsersManagementSearchUsersRequestParams, UsersManagementUpdateUserRequestParams, UsersRequestChangeEmailRequestParams, UsersRequestConfirmEmailRequestParams, UsersResetPasswordRequestParams, UsersSearchUsersRequestParams, UsersSendInviteRequestParams, UsersSetPreferredLanguageRequestParams, UsersSetUserAddressRequestParams, UsersSetUserOccupationRequestParams, UsersSetUserPasswordRequestParams, UsersSetUserProfileRequestParams, UsersUpdateUserDesignConditionsRequestParams, UsersUpdateUserDetailsRequestParams, UsersUpdateUserProfileSettingsRequestParams, UsersUpdateUserProjectSettingsRequestParams, UsersUpdateUserQuoteSettingsRequestParams, UsersVerifyResetPasswordTokenRequestParams, ValidateModelNumberCommand, ValidationLayerDto, ValidationLayerHierarchyItemDto, ValidationLayerIdMoveLayerDto, ValidationsCreateValidationLayerRequestParams, ValidationsDuplicateValidationLayerRequestParams, ValidationsGetValidationLayerRequestParams, ValidationsMoveMaterialLayerRequestParams, ValidationsRemoveSchematicLayerRequestParams, ValidationsSearchValidationLayersRequestParams, ValidationsUpdateValidationLayerRequestParams, ValueLabelDto, VerifyResetPasswordTokenCommand };
|
|
16642
|
+
export { APIS, AddressCountry, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH, BombDownloadsApiService, BombMaterialsApiService, BombParametersApiService, BombRoutingsApiService, BombSchematicsApiService, BombValidationsApiService, BuildingCategory, BuildingType, COLLECTION_FORMATS, Configuration, ConstructionOrderType, ControllerProgramReleaseType, ControllerProgramType, ControllerProgramsApiService, CoolingDesignBasis, CsiApiService, DesignWeatherMode, FeedbackType, FeedbacksApiService, FileType, GroupCustomerType, GroupType, GroupsApiService, KnownContactsApiService, Language, LeadTimeType, LeadTimesApiService, MaintenanceApiService, ModelNumberValidationErrorType, OperationType, OperatorType, ParameterKind, ParameterType, PartsApiService, Permission, PermissionBundlesApiService, PermissionsApiService, PricingApiService, ProjectAccessLevel, ProjectBidStatusType, ProjectBidStatusesApiService, ProjectDiscountStatus, ProjectDiscountType, ProjectDiscountsApiService, ProjectLineStatus, ProjectLineType, ProjectLinesApiService, ProjectLinksApiService, ProjectLogType, ProjectNoteType, ProjectNotesApiService, ProjectQualifiedSpecificationsApiService, ProjectQuoteLogAccessoriesView, ProjectQuoteMultiplier, ProjectQuotePricing, ProjectQuotesApiService, 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 };
|
|
16643
|
+
export type { AddressDto, AuditLogChange, AuditLogDto, AuditLogDtoPagedListMetadataDto, AuditLogsApiServiceInterface, AuditLogsSearchAuditLogsRequestParams, AuditLogsSearchProjectRevisionAuditLogsRequestParams, AuthApiServiceInterface, AuthAuthenticateByEmailTokenRequestParams, AuthAuthenticateRequestParams, AuthUpdateUserTokenPermissionsRequestParams, BaseStatusChangeCommand, BombDownloadsApiServiceInterface, BombMaterialsApiServiceInterface, BombParametersApiServiceInterface, BombRoutingsApiServiceInterface, BombSchematicsApiServiceInterface, BombValidationsApiServiceInterface, CalculatePricesDto, CancelQuoteRequestCommand, ChangeCurrentUserPasswordCommand, ChangeEmailCommand, CompanyInformationDto, ConfigurationParameters, ConnectedGroupDto, ContactDto, ControllerProgramDto, ControllerProgramDtoPagedListMetadataDto, ControllerProgramsApiServiceInterface, ControllerProgramsCreateControllerProgramRequestParams, ControllerProgramsCreateFileDownloadUrlRequestParams, ControllerProgramsGetControllerProgramRequestParams, ControllerProgramsSearchControllerProgramsRequestParams, ControllerProgramsUpdateControllerProgramRequestParams, CreateDownloadLayerCommand, CreateMaterialLayerCommand, CreateProjectRevisionCommand, CreateRepSalesReportCommand, CreateRoutingLayerCommand, CreateUploadUrlCommand, CreateValidationLayerCommand, CsiApiServiceInterface, CsiCreateCsiItemRequestParams, CurrentUserDetailsDto, CurrentUserDto, CustomerDto, CustomerDtoPagedListMetadataDto, CustomerSoldToDto, CustomerSoldToDtoPagedListMetadataDto, DataFormat, DataType, DesignWeatherConditionDto, DistanceDto, DownloadLayerDto, DownloadLayerHierarchyItemDto, DownloadLayerIdMoveLayerDto, DownloadsCreateDownloadLayerRequestParams, DownloadsDuplicateDownloadLayerRequestParams, DownloadsGetDownloadFilePreviewUrlRequestParams, DownloadsGetDownloadLayerFileDownloadUrlRequestParams, DownloadsGetDownloadLayerRequestParams, DownloadsMoveDownloadLayerRequestParams, DownloadsRemoveDownloadLayerRequestParams, DownloadsSearchDownloadLayersRequestParams, DownloadsUpdateDownloadLayerRequestParams, DuplicateBombLayerDto, DuplicateProjectRequest, EmailConfirmationTokenDto, FeedbacksApiServiceInterface, FeedbacksCreateFeedbackRequestParams, FileDto, ForgotPasswordCommand, GetAllModelOptionsDto, GetModelParametersDto, GetNumberPartsDto, GetShippingLocationDto, GrommetDto, GroupDto, GroupsApiServiceInterface, GroupsCreateGroupRequestParams, GroupsGetGroupRequestParams, GroupsRemoveGroupRequestParams, GroupsSearchGroupsRequestParams, GroupsUpdateGroupRequestParams, IdNameDto, Int32IdDto, InviteDto, KnownContactsApiServiceInterface, KnownContactsCreateKnowContactRequestParams, KnownContactsRemoveKnownContactRequestParams, KnownContactsSearchKnownContactsRequestParams, KnownContactsUpdateKnownContactRequestParams, LeadTimeDto, LeadTimeGroupsDto, LeadTimesApiServiceInterface, LeadTimesCreateLeadTimesTableRequestParams, LeadTimesTableDto, LeadTimesUpdateLeadTimesTableRequestParams, LineHierarchyItemDto, LinkedProjectDto, LoginUserCommand, MaintenanceApiServiceInterface, MaintenanceSetMaintenanceModeRequestParams, MaterialLayerDto, MaterialLayerHierarchyItemDto, MaterialLayerIdMoveLayerDto, MaterialMultiplierRuleDto, MaterialQuantityRuleDto, MaterialsCreateMaterialLayerRequestParams, MaterialsDuplicateMaterialLayerRequestParams, MaterialsGetMaterialLayerRequestParams, MaterialsMoveMaterialLayerRequestParams, MaterialsRemoveMaterialLayerRequestParams, MaterialsSearchMaterialLayersRequestParams, MaterialsUpdateMaterialLayerRequestParams, ModelMaterialLayerAggregateItemDto, ModelMaterialLayerHierarchyItemDto, ModelNumberPartDto, ModelNumberValidationErrorDto, ModelNumberValidationResultDto, ModelOptionsGroupDto, ModelParameterDto, ModelParameterMetadataDto, ModelParametersSearchMaterialLayersAggregateRequestParams, ModelParametersSearchMaterialLayersNestedRequestParams, ModelParametersSearchModelDownloadLayersRequestParams, ModelParametersSearchModelValidationLayersRequestParams, ModelParametersSearchRoutingLayersAggregateRequestParams, ModelParametersSearchRoutingLayersNestedRequestParams, ModelParametersValidateModelNumberRequestParams, ModelRoutingLayerAggregateItemDto, ModelRoutingLayerHierarchyItemDto, NewProjectResultDto, OffsetLimitListMetadata, PagedListMetadata, Param, ParamLocation, ParamStyle, PartsApiServiceInterface, PermissionBundleDto, PermissionBundlesApiServiceInterface, PermissionBundlesCreatePermissionBundleRequestParams, PermissionBundlesGetPermissionBundleRequestParams, PermissionBundlesRemovePermissionBundleRequestParams, PermissionBundlesSearchPermissionBundlesRequestParams, PermissionBundlesUpdatePermissionBundleRequestParams, PermissionDto, PermissionsApiServiceInterface, PostPreSignedUrlDto, PriceDto, PricingApiServiceInterface, ProcessQualifiedSpecificationDto, ProjectBidStatusAttachmentDto, ProjectBidStatusCreateBidStatusRequestParams, ProjectBidStatusDto, ProjectBidStatusGetProjectBidStatusAttachmentDownloadUrlRequestParams, ProjectBidStatusGetProjectBidStatusAttachmentPreviewUrlRequestParams, ProjectBidStatusIdIdDto, ProjectBidStatusRemoveBidStatusRequestParams, ProjectBidStatusUpdateBidStatusRequestParams, ProjectBidStatusesApiServiceInterface, ProjectDesignConditionsDto, ProjectDiscountAttachmentDto, ProjectDiscountDto, ProjectDiscountIdIdDto, ProjectDiscountsApiServiceInterface, ProjectDiscountsCreateProjectDiscountRequestParams, ProjectDiscountsDeleteProjectDiscountRequestParams, ProjectDiscountsGetDiscountAttachmentDownloadUrlRequestParams, ProjectDiscountsGetDiscountAttachmentPreviewUrlRequestParams, ProjectDiscountsReviewProjectDiscountRequestParams, ProjectDiscountsUpdateProjectDiscountRequestParams, ProjectDto, ProjectEditModeDto, ProjectFacilityDto, ProjectLineDto, ProjectLineGuidIdDto, ProjectLineValidation, ProjectLineValidationDto, ProjectLinesApiServiceInterface, ProjectLinesCreateProjectLineRequestParams, ProjectLinesSetLineShippingLocationsRequestParams, ProjectLinesUpdateProjectLinesRequestParams, ProjectLinkIdIdDto, ProjectLinksApiServiceInterface, ProjectLinksCreateProjectLinkRequestParams, ProjectLinksRemoveProjectLinkRequestParams, ProjectLinksSearchProjectLinksRequestParams, ProjectLinksUpdateProjectLinkRequestParams, ProjectLogDto, ProjectNoteAttachmentDto, ProjectNoteIdIdDto, ProjectNotesApiServiceInterface, ProjectNotesCreateProjectNoteRequestParams, ProjectNotesGetProjectNoteAttachmentDownloadUrlRequestParams, ProjectNotesGetProjectNoteAttachmentPreviewRequestParams, ProjectNotesRemoveProjectNoteRequestParams, ProjectNotesSearchProjectsRequestParams, ProjectNotesUpdateProjectNoteRequestParams, ProjectPartsSearchPartsRequestParams, ProjectPricingCalculatePriceSourcesRequestParams, ProjectQualifiedSpecificationAttachmentDto, ProjectQualifiedSpecificationDto, ProjectQualifiedSpecificationGetQualifiedSpecificationAttachmentDownloadUrlRequestParams, ProjectQualifiedSpecificationGetQualifiedSpecificationAttachmentPreviewUrlRequestParams, ProjectQualifiedSpecificationProcessQualifiedSpecificationRequestParams, ProjectQualifiedSpecificationSubmitQualifiedSpecificationRequestParams, ProjectQualifiedSpecificationsApiServiceInterface, ProjectQuoteUpdateProjectQuoteCustomItemsRequestParams, ProjectQuoteUpdateQuoteRequestParams, ProjectQuotesApiServiceInterface, ProjectRevisionIdIdDto, ProjectRevisionsApiServiceInterface, ProjectRevisionsCreateRevisionRequestParams, ProjectRevisionsGetBidStatusRequestParams, ProjectRevisionsGetProjectRevisionLogsRequestParams, ProjectRevisionsRemoveRevisionRequestParams, ProjectRevisionsSearchProjectRevisionsRequestParams, ProjectRevisionsSetRevisionAsMainRequestParams, ProjectRevisionsUpdateRevisionMetadataRequestParams, ProjectRevisionsUpdateRevisionRequestParams, ProjectShareItemDto, ProjectSharingApiServiceInterface, ProjectSharingGetProjectShareItemsRequestParams, ProjectSharingRemoveProjectShareRequestParams, ProjectSharingShareProjectRequestParams, ProjectSharingUpdateProjectShareRequestParams, ProjectShippingApiServiceInterface, ProjectShippingCreateLocationFromCsiCustomerRequestParams, ProjectShippingCreateLocationRequestParams, ProjectShippingGetLocationsRequestParams, ProjectShippingRemoveShippingLocationRequestParams, ProjectShippingSearchShipToRequestParams, ProjectSoldToApiServiceInterface, ProjectSoldToDto, ProjectSoldToSearchSoldToRequestParams, ProjectStatusesApiServiceInterface, ProjectStatusesCancelQuoteRequestRequestParams, ProjectStatusesRequestOrderRequestParams, ProjectStatusesRequestQuote0RequestParams, ProjectStatusesRequestQuoteRequestParams, ProjectStatusesSubmitQuoteRequestParams, ProjectStatusesSubmitToRenewAireRequestParams, ProjectsApiServiceInterface, ProjectsCreateProjectRequestParams, ProjectsDuplicateProjectRequestParams, ProjectsExtendProjectEditModeRequestParams, ProjectsGetProjectEditModeRequestParams, ProjectsGetProjectRequestParams, ProjectsSearchProjectsRequestParams, ProjectsStartEditProjectRequestParams, ProjectsStopEditProjectRequestParams, RegionsApiServiceInterface, RegionsSearchRegionsRequestParams, RejectQuoteCommand, RepContactsApiServiceInterface, RepContactsGetRepTerritoryRepContactRequestParams, RepContactsRemoveRepTerritoryRepContactRequestParams, RepContactsSearchRepTerritoryRepContactRequestParams, RepContactsUpdateRepTerritoryRepContactRequestParams, RepSalesReportDto, RepSalesReportDtoPagedListMetadataDto, RepSalesReportsApiServiceInterface, RepSalesReportsCreateRepSalesReportDownloadUrlRequestParams, RepSalesReportsCreateRepSalesReportRequestParams, RepSalesReportsGetRepSalesReportRequestParams, RepSalesReportsRemoveRepSalesReportRequestParams, RepSalesReportsSearchRepSalesReportsRequestParams, RepTerritoriesApiServiceInterface, RepTerritoriesCreateRepTerritoryLocationRequestParams, RepTerritoriesCreateRepTerritoryRepContactRequestParams, RepTerritoriesCreateRepTerritoryRequestParams, RepTerritoriesGetRepTerritoryRequestParams, RepTerritoriesRemoveRepTerritoryRequestParams, RepTerritoriesSearchAccessibleRepUsersRequestParams, RepTerritoriesSearchRepTerritoriesRequestParams, RepTerritoriesUpdateRepTerritoryRequestParams, RepTerritoryContactsDto, RepTerritoryDto, RepTerritoryLocationDto, RepTerritoryLocationsApiServiceInterface, RepTerritoryLocationsGetRepTerritoryLocationRequestParams, RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams, RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams, RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams, RepTerritoryRepContactDto, RequestChangeEmailCommand, RequestOrderCommand, RequestQuoteCommand, ResetPasswordCommand, ReviewProjectDiscountDto, RoutingLayerDto, RoutingLayerHierarchyItemDto, RoutingLayerIdMoveLayerDto, RoutingRuleDto, RoutingsCreateRoutingLayerRequestParams, RoutingsDuplicateRoutingLayerRequestParams, RoutingsGetRoutingLayerRequestParams, RoutingsMoveRoutingLayerRequestParams, RoutingsRemoveRoutingLayerRequestParams, RoutingsSearchRoutingLayersRequestParams, RoutingsUpdateRoutingLayerRequestParams, RsdRegionDocumentDto, RsdRegionDto, RsdRegionRepTerritoryDto, RsdRegionUserDto, RsdRegionsApiServiceInterface, RsdRegionsCreateRsdRegionRequestParams, RsdRegionsGetRsdRegionDocumentDownloadUrlRequestParams, RsdRegionsGetRsdRegionDocumentPreviewRequestParams, RsdRegionsGetRsdRegionRequestParams, RsdRegionsRemoveRsdRegionRequestParams, RsdRegionsSearchRsdRegionTagsRequestParams, RsdRegionsSearchRsdRegionsRequestParams, RsdRegionsUpdateRsdRegionRequestParams, RuleSetAndOperandDto, RuleSetDto, RuleSetOrOperandDto, S3ApiServiceInterface, S3CreateFileUploadUrlRequestParams, SalesContactDto, SaveBidStatusDto, SaveBombLayerDto, SaveControllerProgramDto, SaveDownloadLayerDto, SaveGroupDto, SaveKnownContactDto, SaveLeadTimeDto, SaveLeadTimeGroupsDto, SaveLeadTimesTableDto, SaveLineDto, SaveMaterialLayerDto, SaveMaterialMultiplierRuleDto, SaveMaterialQuantityRuleDto, SavePermissionBundleDto, SaveProjectDiscountDto, SaveProjectLinkDto, SaveProjectNoteDto, SaveProjectRevisionMetadataDto, SaveQualifiedSpecificationDto, SaveRepTerritoryLocationDto, SaveRepTerritoryRepContactDto, SaveRoutingLayerDto, SaveRoutingRuleDto, SaveUserDesignConditionsDto, SaveUserProjectSettingsDto, SaveUserQuoteSettingsDto, SaveValidationLayerDto, SchematicsCreateSchematicLayerRequestParams, SchematicsDuplicateSchematicLayerRequestParams, SchematicsGetSchematicFileDownloadUrlRequestParams, SchematicsGetSchematicFilePreviewUrlRequestParams, SchematicsGetSchematicLayerRequestParams, SchematicsMoveSchematicLayerRequestParams, SchematicsRemoveSchematicLayerRequestParams, SchematicsSearchSchematicLayersRequestParams, SchematicsUpdateSchematicLayerRequestParams, SearchBombDto, SearchGroupDto, SearchGroupDtoPagedListMetadataDto, SearchKnownContactDto, SearchKnownContactDtoPagedListMetadataDto, SearchModelDownloadDto, SearchModelValidationDto, SearchPartDto, SearchPartDtoPagedListMetadataDto, SearchPermissionBundleDto, SearchPermissionBundleDtoPagedListMetadataDto, SearchProjectDto, SearchProjectDtoPagedListMetadataDto, SearchProjectLinkDto, SearchProjectLinkDtoPagedListMetadataDto, SearchProjectNoteDto, SearchProjectNoteDtoPagedListMetadataDto, SearchRegionDto, SearchRegionDtoPagedListMetadataDto, SearchRepTerritoryDto, SearchRepTerritoryDtoPagedListMetadataDto, SearchRepTerritoryLocationDto, SearchRepTerritoryLocationDtoPagedListMetadataDto, SearchRepTerritoryRepContactDto, SearchRepTerritoryRepContactDtoPagedListMetadataDto, SearchRepUserDto, SearchRepUserDtoPagedListMetadataDto, SearchRevisionDto, SearchRevisionDtoPagedListMetadataDto, SearchRsdRegionDto, SearchRsdRegionDtoPagedListMetadataDto, SearchUserDetailsDto, SearchUserDetailsDtoPagedListMetadataDto, SearchUserDto, SearchUserDtoPagedListMetadataDto, SetAddressDto, SetLineShippingLocationDto, SetPreferredLanguageCommand, SetUserOccupationCommand, SetUserPasswordCommand, ShareProjectCommand, ShippingLocationDto, StandardDataFormat, StandardDataType, StandardParamStyle, StaticFilesApiServiceInterface, StaticFilesGetRequestParams, StringPagedListMetadataDto, SubmitQuoteCommand, SubmitToRenewAireCommand, TableSettingDto, TableSettingsGetTableSettingRequestParams, TableSettingsSaveTableSettingRequestParams, TemperatureDto, TokenModel, TotalCountListMetadata, UpdateLinesDto, UpdateProjectDesignConditionsDto, UpdateProjectDiscountDto, UpdateProjectFacilityDto, UpdateProjectNoteDto, UpdateProjectQuoteAddressDto, UpdateProjectQuoteCustomItemDto, UpdateProjectQuoteDto, UpdateProjectQuoteDtoOperation, UpdateProjectRevisionDto, UpdateProjectRevisionDtoOperation, UpdateProjectShareCommand, UpdateProjectSoldToDto, UpdateRepTerritoryLocationDto, UpdateRepTerritoryRepContactDto, UpdateUserTokenPermissionsCommand, UploadFileDto, UploadUrlResult, UserDesignConditionsDto, UserDetailsDto, UserEmailDto, UserPermissionDto, UserPermissionSourceDto, UserProfileDto, UserQuoteDto, UserTablesApiServiceInterface, UsersAdminSetUserPasswordRequestParams, UsersApiServiceInterface, UsersChangeCurrentUserPasswordRequestParams, UsersChangeEmailRequestParams, UsersConfirmEmailRequestParams, UsersDeactivateRequestParams, UsersForgotPasswordRequestParams, UsersGetRepContactsRequestParams, UsersGetUserPermissionsRequestParams, UsersGetUserProfileRequestParams, UsersManagementApiServiceInterface, UsersManagementCreateUserRequestParams, UsersManagementGetUserRequestParams, UsersManagementSearchUsersRequestParams, UsersManagementUpdateUserRequestParams, UsersRequestChangeEmailRequestParams, UsersRequestConfirmEmailRequestParams, UsersResetPasswordRequestParams, UsersSearchUsersRequestParams, UsersSendInviteRequestParams, UsersSetPreferredLanguageRequestParams, UsersSetUserAddressRequestParams, UsersSetUserOccupationRequestParams, UsersSetUserPasswordRequestParams, UsersSetUserProfileRequestParams, UsersUpdateUserDesignConditionsRequestParams, UsersUpdateUserDetailsRequestParams, UsersUpdateUserProfileSettingsRequestParams, UsersUpdateUserProjectSettingsRequestParams, UsersUpdateUserQuoteSettingsRequestParams, UsersVerifyResetPasswordTokenRequestParams, ValidateModelNumberCommand, ValidationLayerDto, ValidationLayerHierarchyItemDto, ValidationLayerIdMoveLayerDto, ValidationsCreateValidationLayerRequestParams, ValidationsDuplicateValidationLayerRequestParams, ValidationsGetValidationLayerRequestParams, ValidationsMoveMaterialLayerRequestParams, ValidationsRemoveValidationLayerRequestParams, ValidationsSearchValidationLayersRequestParams, ValidationsUpdateValidationLayerRequestParams, ValueLabelDto, VerifyResetPasswordTokenCommand };
|