@saritasa/renewaire-frontend-sdk 0.257.0 → 0.258.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 +207 -295
- package/fesm2022/saritasa-renewaire-frontend-sdk.mjs.map +1 -1
- package/index.d.ts +230 -442
- 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
|
/**
|
|
@@ -5573,21 +5556,21 @@ interface SaveControllerProgramDto {
|
|
|
5573
5556
|
*/
|
|
5574
5557
|
|
|
5575
5558
|
/**
|
|
5576
|
-
* DTO to save
|
|
5559
|
+
* DTO to save download layer.
|
|
5577
5560
|
*/
|
|
5578
|
-
interface
|
|
5561
|
+
interface SaveDownloadLayerDto {
|
|
5579
5562
|
/**
|
|
5580
5563
|
* Save bomb layer DTO.
|
|
5581
5564
|
*/
|
|
5582
5565
|
saveBombLayerDto: SaveBombLayerDto;
|
|
5583
5566
|
/**
|
|
5584
|
-
* Allow to delete an already existing
|
|
5567
|
+
* Allow to delete an already existing download file. Will not take effect if RenewAire.Cores.UseCases.Bomb.Dtos.Downloads.SaveDownloadLayerDto.DownloadFile is specified.
|
|
5585
5568
|
*/
|
|
5586
|
-
|
|
5569
|
+
shouldRemoveDownloadFile: boolean;
|
|
5587
5570
|
/**
|
|
5588
5571
|
* Represents metadata for an uploaded file.
|
|
5589
5572
|
*/
|
|
5590
|
-
|
|
5573
|
+
downloadFile?: UploadFileDto | null;
|
|
5591
5574
|
}
|
|
5592
5575
|
|
|
5593
5576
|
/**
|
|
@@ -6231,34 +6214,6 @@ interface SaveRoutingLayerDto {
|
|
|
6231
6214
|
routingRules: Array<SaveRoutingRuleDto>;
|
|
6232
6215
|
}
|
|
6233
6216
|
|
|
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
6217
|
/**
|
|
6263
6218
|
* RenewAire CORES API
|
|
6264
6219
|
*
|
|
@@ -6434,136 +6389,6 @@ interface SaveValidationLayerDto {
|
|
|
6434
6389
|
validationMessage: string;
|
|
6435
6390
|
}
|
|
6436
6391
|
|
|
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
6392
|
/**
|
|
6568
6393
|
* RenewAire CORES API
|
|
6569
6394
|
*
|
|
@@ -6757,43 +6582,11 @@ interface SearchKnownContactDtoPagedListMetadataDto {
|
|
|
6757
6582
|
*/
|
|
6758
6583
|
|
|
6759
6584
|
/**
|
|
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.
|
|
6585
|
+
* DTO to search download layers by model.
|
|
6793
6586
|
*/
|
|
6794
|
-
interface
|
|
6587
|
+
interface SearchModelDownloadDto {
|
|
6795
6588
|
/**
|
|
6796
|
-
* Identifier for RenewAire.Cores.Domain.Bomb.
|
|
6589
|
+
* Identifier for RenewAire.Cores.Domain.Bomb.DownloadLayer.
|
|
6797
6590
|
*/
|
|
6798
6591
|
id: number;
|
|
6799
6592
|
/**
|
|
@@ -6807,7 +6600,7 @@ interface SearchModelSchematicDto {
|
|
|
6807
6600
|
/**
|
|
6808
6601
|
* DTO for RenewAire.Cores.Domain.File.
|
|
6809
6602
|
*/
|
|
6810
|
-
|
|
6603
|
+
downloadFile: FileDto;
|
|
6811
6604
|
}
|
|
6812
6605
|
|
|
6813
6606
|
/**
|
|
@@ -8669,7 +8462,7 @@ interface UserPermissionSourceDto {
|
|
|
8669
8462
|
*/
|
|
8670
8463
|
interface UserPermissionDto {
|
|
8671
8464
|
/**
|
|
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 =
|
|
8465
|
+
* 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
8466
|
*/
|
|
8674
8467
|
permission: Permission;
|
|
8675
8468
|
/**
|
|
@@ -9182,289 +8975,289 @@ declare class AuthApiService extends BaseService implements AuthApiServiceInterf
|
|
|
9182
8975
|
* Do not edit the class manually.
|
|
9183
8976
|
*/
|
|
9184
8977
|
|
|
9185
|
-
interface
|
|
9186
|
-
|
|
8978
|
+
interface DownloadsCreateDownloadLayerRequestParams {
|
|
8979
|
+
createDownloadLayerCommand?: CreateDownloadLayerCommand;
|
|
9187
8980
|
}
|
|
9188
|
-
interface
|
|
9189
|
-
|
|
8981
|
+
interface DownloadsDuplicateDownloadLayerRequestParams {
|
|
8982
|
+
downloadLayerId: number;
|
|
9190
8983
|
duplicateBombLayerDto?: DuplicateBombLayerDto;
|
|
9191
8984
|
}
|
|
9192
|
-
interface
|
|
9193
|
-
|
|
8985
|
+
interface DownloadsGetDownloadFilePreviewUrlRequestParams {
|
|
8986
|
+
downloadLayerId: number;
|
|
9194
8987
|
}
|
|
9195
|
-
interface
|
|
9196
|
-
|
|
8988
|
+
interface DownloadsGetDownloadLayerRequestParams {
|
|
8989
|
+
downloadLayerId: number;
|
|
9197
8990
|
}
|
|
9198
|
-
interface
|
|
9199
|
-
|
|
8991
|
+
interface DownloadsGetDownloadLayerFileDownloadUrlRequestParams {
|
|
8992
|
+
downloadLayerId: number;
|
|
9200
8993
|
}
|
|
9201
|
-
interface
|
|
9202
|
-
|
|
9203
|
-
|
|
8994
|
+
interface DownloadsMoveDownloadLayerRequestParams {
|
|
8995
|
+
downloadLayerId: number;
|
|
8996
|
+
downloadLayerIdMoveLayerDto?: DownloadLayerIdMoveLayerDto;
|
|
9204
8997
|
}
|
|
9205
|
-
interface
|
|
9206
|
-
|
|
8998
|
+
interface DownloadsRemoveDownloadLayerRequestParams {
|
|
8999
|
+
downloadLayerId: number;
|
|
9207
9000
|
}
|
|
9208
|
-
interface
|
|
9209
|
-
|
|
9001
|
+
interface DownloadsSearchDownloadLayersRequestParams {
|
|
9002
|
+
parentDownloadLayerId?: number | null;
|
|
9210
9003
|
}
|
|
9211
|
-
interface
|
|
9212
|
-
|
|
9213
|
-
|
|
9004
|
+
interface DownloadsUpdateDownloadLayerRequestParams {
|
|
9005
|
+
downloadLayerId: number;
|
|
9006
|
+
saveDownloadLayerDto?: SaveDownloadLayerDto;
|
|
9214
9007
|
}
|
|
9215
|
-
interface
|
|
9008
|
+
interface BombDownloadsApiServiceInterface {
|
|
9216
9009
|
defaultHeaders: HttpHeaders;
|
|
9217
9010
|
configuration: Configuration;
|
|
9218
9011
|
/**
|
|
9219
|
-
* Create
|
|
9012
|
+
* Create download layer.
|
|
9220
9013
|
*
|
|
9221
9014
|
* @param requestParameters
|
|
9222
9015
|
*/
|
|
9223
|
-
|
|
9016
|
+
downloadsCreateDownloadLayer(requestParameters: DownloadsCreateDownloadLayerRequestParams, extraHttpRequestParams?: any): Observable<number>;
|
|
9224
9017
|
/**
|
|
9225
|
-
* Duplicate
|
|
9018
|
+
* Duplicate download layer.
|
|
9226
9019
|
*
|
|
9227
9020
|
* @param requestParameters
|
|
9228
9021
|
*/
|
|
9229
|
-
|
|
9022
|
+
downloadsDuplicateDownloadLayer(requestParameters: DownloadsDuplicateDownloadLayerRequestParams, extraHttpRequestParams?: any): Observable<DownloadLayerHierarchyItemDto>;
|
|
9230
9023
|
/**
|
|
9231
|
-
* Generate
|
|
9024
|
+
* Generate preview image for download layer file.
|
|
9232
9025
|
*
|
|
9233
9026
|
* @param requestParameters
|
|
9234
9027
|
*/
|
|
9235
|
-
|
|
9028
|
+
downloadsGetDownloadFilePreviewUrl(requestParameters: DownloadsGetDownloadFilePreviewUrlRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
9236
9029
|
/**
|
|
9237
|
-
*
|
|
9030
|
+
* Get download layer details by id.
|
|
9238
9031
|
*
|
|
9239
9032
|
* @param requestParameters
|
|
9240
9033
|
*/
|
|
9241
|
-
|
|
9034
|
+
downloadsGetDownloadLayer(requestParameters: DownloadsGetDownloadLayerRequestParams, extraHttpRequestParams?: any): Observable<DownloadLayerDto>;
|
|
9242
9035
|
/**
|
|
9243
|
-
*
|
|
9036
|
+
* Generate cloud URL for download layer file downloading.
|
|
9244
9037
|
*
|
|
9245
9038
|
* @param requestParameters
|
|
9246
9039
|
*/
|
|
9247
|
-
|
|
9040
|
+
downloadsGetDownloadLayerFileDownloadUrl(requestParameters: DownloadsGetDownloadLayerFileDownloadUrlRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
9248
9041
|
/**
|
|
9249
|
-
* Move
|
|
9042
|
+
* Move download layer.
|
|
9250
9043
|
*
|
|
9251
9044
|
* @param requestParameters
|
|
9252
9045
|
*/
|
|
9253
|
-
|
|
9046
|
+
downloadsMoveDownloadLayer(requestParameters: DownloadsMoveDownloadLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
9254
9047
|
/**
|
|
9255
|
-
* Remove
|
|
9048
|
+
* Remove download layer by id.
|
|
9256
9049
|
*
|
|
9257
9050
|
* @param requestParameters
|
|
9258
9051
|
*/
|
|
9259
|
-
|
|
9052
|
+
downloadsRemoveDownloadLayer(requestParameters: DownloadsRemoveDownloadLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
9260
9053
|
/**
|
|
9261
|
-
* Search
|
|
9054
|
+
* Search download layers.
|
|
9262
9055
|
*
|
|
9263
9056
|
* @param requestParameters
|
|
9264
9057
|
*/
|
|
9265
|
-
|
|
9058
|
+
downloadsSearchDownloadLayers(requestParameters: DownloadsSearchDownloadLayersRequestParams, extraHttpRequestParams?: any): Observable<Array<DownloadLayerHierarchyItemDto>>;
|
|
9266
9059
|
/**
|
|
9267
|
-
* Update
|
|
9060
|
+
* Update download layer.
|
|
9268
9061
|
*
|
|
9269
9062
|
* @param requestParameters
|
|
9270
9063
|
*/
|
|
9271
|
-
|
|
9064
|
+
downloadsUpdateDownloadLayer(requestParameters: DownloadsUpdateDownloadLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
9272
9065
|
}
|
|
9273
9066
|
|
|
9274
|
-
declare class
|
|
9067
|
+
declare class BombDownloadsApiService extends BaseService implements BombDownloadsApiServiceInterface {
|
|
9275
9068
|
protected httpClient: HttpClient;
|
|
9276
9069
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
9277
9070
|
/**
|
|
9278
|
-
* Create
|
|
9071
|
+
* Create download layer.
|
|
9279
9072
|
* @param requestParameters
|
|
9280
9073
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9281
9074
|
* @param reportProgress flag to report request and response progress.
|
|
9282
9075
|
*/
|
|
9283
|
-
|
|
9076
|
+
downloadsCreateDownloadLayer(requestParameters?: DownloadsCreateDownloadLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9284
9077
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9285
9078
|
context?: HttpContext;
|
|
9286
9079
|
transferCache?: boolean;
|
|
9287
9080
|
}): Observable<number>;
|
|
9288
|
-
|
|
9081
|
+
downloadsCreateDownloadLayer(requestParameters?: DownloadsCreateDownloadLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9289
9082
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9290
9083
|
context?: HttpContext;
|
|
9291
9084
|
transferCache?: boolean;
|
|
9292
9085
|
}): Observable<HttpResponse<number>>;
|
|
9293
|
-
|
|
9086
|
+
downloadsCreateDownloadLayer(requestParameters?: DownloadsCreateDownloadLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9294
9087
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9295
9088
|
context?: HttpContext;
|
|
9296
9089
|
transferCache?: boolean;
|
|
9297
9090
|
}): Observable<HttpEvent<number>>;
|
|
9298
9091
|
/**
|
|
9299
|
-
* Duplicate
|
|
9092
|
+
* Duplicate download layer.
|
|
9300
9093
|
* @param requestParameters
|
|
9301
9094
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9302
9095
|
* @param reportProgress flag to report request and response progress.
|
|
9303
9096
|
*/
|
|
9304
|
-
|
|
9097
|
+
downloadsDuplicateDownloadLayer(requestParameters: DownloadsDuplicateDownloadLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9305
9098
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9306
9099
|
context?: HttpContext;
|
|
9307
9100
|
transferCache?: boolean;
|
|
9308
|
-
}): Observable<
|
|
9309
|
-
|
|
9101
|
+
}): Observable<DownloadLayerHierarchyItemDto>;
|
|
9102
|
+
downloadsDuplicateDownloadLayer(requestParameters: DownloadsDuplicateDownloadLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9310
9103
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9311
9104
|
context?: HttpContext;
|
|
9312
9105
|
transferCache?: boolean;
|
|
9313
|
-
}): Observable<HttpResponse<
|
|
9314
|
-
|
|
9106
|
+
}): Observable<HttpResponse<DownloadLayerHierarchyItemDto>>;
|
|
9107
|
+
downloadsDuplicateDownloadLayer(requestParameters: DownloadsDuplicateDownloadLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9315
9108
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9316
9109
|
context?: HttpContext;
|
|
9317
9110
|
transferCache?: boolean;
|
|
9318
|
-
}): Observable<HttpEvent<
|
|
9111
|
+
}): Observable<HttpEvent<DownloadLayerHierarchyItemDto>>;
|
|
9319
9112
|
/**
|
|
9320
|
-
* Generate
|
|
9113
|
+
* Generate preview image for download layer file.
|
|
9321
9114
|
* @param requestParameters
|
|
9322
9115
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9323
9116
|
* @param reportProgress flag to report request and response progress.
|
|
9324
9117
|
*/
|
|
9325
|
-
|
|
9118
|
+
downloadsGetDownloadFilePreviewUrl(requestParameters: DownloadsGetDownloadFilePreviewUrlRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9326
9119
|
httpHeaderAccept?: undefined;
|
|
9327
9120
|
context?: HttpContext;
|
|
9328
9121
|
transferCache?: boolean;
|
|
9329
9122
|
}): Observable<any>;
|
|
9330
|
-
|
|
9123
|
+
downloadsGetDownloadFilePreviewUrl(requestParameters: DownloadsGetDownloadFilePreviewUrlRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9331
9124
|
httpHeaderAccept?: undefined;
|
|
9332
9125
|
context?: HttpContext;
|
|
9333
9126
|
transferCache?: boolean;
|
|
9334
9127
|
}): Observable<HttpResponse<any>>;
|
|
9335
|
-
|
|
9128
|
+
downloadsGetDownloadFilePreviewUrl(requestParameters: DownloadsGetDownloadFilePreviewUrlRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9336
9129
|
httpHeaderAccept?: undefined;
|
|
9337
9130
|
context?: HttpContext;
|
|
9338
9131
|
transferCache?: boolean;
|
|
9339
9132
|
}): Observable<HttpEvent<any>>;
|
|
9340
9133
|
/**
|
|
9341
|
-
*
|
|
9134
|
+
* Get download layer details by id.
|
|
9342
9135
|
* @param requestParameters
|
|
9343
9136
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9344
9137
|
* @param reportProgress flag to report request and response progress.
|
|
9345
9138
|
*/
|
|
9346
|
-
|
|
9347
|
-
httpHeaderAccept?:
|
|
9139
|
+
downloadsGetDownloadLayer(requestParameters: DownloadsGetDownloadLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9140
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9348
9141
|
context?: HttpContext;
|
|
9349
9142
|
transferCache?: boolean;
|
|
9350
|
-
}): Observable<
|
|
9351
|
-
|
|
9352
|
-
httpHeaderAccept?:
|
|
9143
|
+
}): Observable<DownloadLayerDto>;
|
|
9144
|
+
downloadsGetDownloadLayer(requestParameters: DownloadsGetDownloadLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9145
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9353
9146
|
context?: HttpContext;
|
|
9354
9147
|
transferCache?: boolean;
|
|
9355
|
-
}): Observable<HttpResponse<
|
|
9356
|
-
|
|
9357
|
-
httpHeaderAccept?:
|
|
9148
|
+
}): Observable<HttpResponse<DownloadLayerDto>>;
|
|
9149
|
+
downloadsGetDownloadLayer(requestParameters: DownloadsGetDownloadLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9150
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9358
9151
|
context?: HttpContext;
|
|
9359
9152
|
transferCache?: boolean;
|
|
9360
|
-
}): Observable<HttpEvent<
|
|
9153
|
+
}): Observable<HttpEvent<DownloadLayerDto>>;
|
|
9361
9154
|
/**
|
|
9362
|
-
*
|
|
9155
|
+
* Generate cloud URL for download layer file downloading.
|
|
9363
9156
|
* @param requestParameters
|
|
9364
9157
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9365
9158
|
* @param reportProgress flag to report request and response progress.
|
|
9366
9159
|
*/
|
|
9367
|
-
|
|
9368
|
-
httpHeaderAccept?:
|
|
9160
|
+
downloadsGetDownloadLayerFileDownloadUrl(requestParameters: DownloadsGetDownloadLayerFileDownloadUrlRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9161
|
+
httpHeaderAccept?: undefined;
|
|
9369
9162
|
context?: HttpContext;
|
|
9370
9163
|
transferCache?: boolean;
|
|
9371
|
-
}): Observable<
|
|
9372
|
-
|
|
9373
|
-
httpHeaderAccept?:
|
|
9164
|
+
}): Observable<any>;
|
|
9165
|
+
downloadsGetDownloadLayerFileDownloadUrl(requestParameters: DownloadsGetDownloadLayerFileDownloadUrlRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9166
|
+
httpHeaderAccept?: undefined;
|
|
9374
9167
|
context?: HttpContext;
|
|
9375
9168
|
transferCache?: boolean;
|
|
9376
|
-
}): Observable<HttpResponse<
|
|
9377
|
-
|
|
9378
|
-
httpHeaderAccept?:
|
|
9169
|
+
}): Observable<HttpResponse<any>>;
|
|
9170
|
+
downloadsGetDownloadLayerFileDownloadUrl(requestParameters: DownloadsGetDownloadLayerFileDownloadUrlRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9171
|
+
httpHeaderAccept?: undefined;
|
|
9379
9172
|
context?: HttpContext;
|
|
9380
9173
|
transferCache?: boolean;
|
|
9381
|
-
}): Observable<HttpEvent<
|
|
9174
|
+
}): Observable<HttpEvent<any>>;
|
|
9382
9175
|
/**
|
|
9383
|
-
* Move
|
|
9176
|
+
* Move download layer.
|
|
9384
9177
|
* @param requestParameters
|
|
9385
9178
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9386
9179
|
* @param reportProgress flag to report request and response progress.
|
|
9387
9180
|
*/
|
|
9388
|
-
|
|
9181
|
+
downloadsMoveDownloadLayer(requestParameters: DownloadsMoveDownloadLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9389
9182
|
httpHeaderAccept?: undefined;
|
|
9390
9183
|
context?: HttpContext;
|
|
9391
9184
|
transferCache?: boolean;
|
|
9392
9185
|
}): Observable<any>;
|
|
9393
|
-
|
|
9186
|
+
downloadsMoveDownloadLayer(requestParameters: DownloadsMoveDownloadLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9394
9187
|
httpHeaderAccept?: undefined;
|
|
9395
9188
|
context?: HttpContext;
|
|
9396
9189
|
transferCache?: boolean;
|
|
9397
9190
|
}): Observable<HttpResponse<any>>;
|
|
9398
|
-
|
|
9191
|
+
downloadsMoveDownloadLayer(requestParameters: DownloadsMoveDownloadLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9399
9192
|
httpHeaderAccept?: undefined;
|
|
9400
9193
|
context?: HttpContext;
|
|
9401
9194
|
transferCache?: boolean;
|
|
9402
9195
|
}): Observable<HttpEvent<any>>;
|
|
9403
9196
|
/**
|
|
9404
|
-
* Remove
|
|
9197
|
+
* Remove download layer by id.
|
|
9405
9198
|
* @param requestParameters
|
|
9406
9199
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9407
9200
|
* @param reportProgress flag to report request and response progress.
|
|
9408
9201
|
*/
|
|
9409
|
-
|
|
9202
|
+
downloadsRemoveDownloadLayer(requestParameters: DownloadsRemoveDownloadLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9410
9203
|
httpHeaderAccept?: undefined;
|
|
9411
9204
|
context?: HttpContext;
|
|
9412
9205
|
transferCache?: boolean;
|
|
9413
9206
|
}): Observable<any>;
|
|
9414
|
-
|
|
9207
|
+
downloadsRemoveDownloadLayer(requestParameters: DownloadsRemoveDownloadLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9415
9208
|
httpHeaderAccept?: undefined;
|
|
9416
9209
|
context?: HttpContext;
|
|
9417
9210
|
transferCache?: boolean;
|
|
9418
9211
|
}): Observable<HttpResponse<any>>;
|
|
9419
|
-
|
|
9212
|
+
downloadsRemoveDownloadLayer(requestParameters: DownloadsRemoveDownloadLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9420
9213
|
httpHeaderAccept?: undefined;
|
|
9421
9214
|
context?: HttpContext;
|
|
9422
9215
|
transferCache?: boolean;
|
|
9423
9216
|
}): Observable<HttpEvent<any>>;
|
|
9424
9217
|
/**
|
|
9425
|
-
* Search
|
|
9218
|
+
* Search download layers.
|
|
9426
9219
|
* @param requestParameters
|
|
9427
9220
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9428
9221
|
* @param reportProgress flag to report request and response progress.
|
|
9429
9222
|
*/
|
|
9430
|
-
|
|
9223
|
+
downloadsSearchDownloadLayers(requestParameters?: DownloadsSearchDownloadLayersRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9431
9224
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9432
9225
|
context?: HttpContext;
|
|
9433
9226
|
transferCache?: boolean;
|
|
9434
|
-
}): Observable<Array<
|
|
9435
|
-
|
|
9227
|
+
}): Observable<Array<DownloadLayerHierarchyItemDto>>;
|
|
9228
|
+
downloadsSearchDownloadLayers(requestParameters?: DownloadsSearchDownloadLayersRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9436
9229
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9437
9230
|
context?: HttpContext;
|
|
9438
9231
|
transferCache?: boolean;
|
|
9439
|
-
}): Observable<HttpResponse<Array<
|
|
9440
|
-
|
|
9232
|
+
}): Observable<HttpResponse<Array<DownloadLayerHierarchyItemDto>>>;
|
|
9233
|
+
downloadsSearchDownloadLayers(requestParameters?: DownloadsSearchDownloadLayersRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9441
9234
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9442
9235
|
context?: HttpContext;
|
|
9443
9236
|
transferCache?: boolean;
|
|
9444
|
-
}): Observable<HttpEvent<Array<
|
|
9237
|
+
}): Observable<HttpEvent<Array<DownloadLayerHierarchyItemDto>>>;
|
|
9445
9238
|
/**
|
|
9446
|
-
* Update
|
|
9239
|
+
* Update download layer.
|
|
9447
9240
|
* @param requestParameters
|
|
9448
9241
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9449
9242
|
* @param reportProgress flag to report request and response progress.
|
|
9450
9243
|
*/
|
|
9451
|
-
|
|
9244
|
+
downloadsUpdateDownloadLayer(requestParameters: DownloadsUpdateDownloadLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9452
9245
|
httpHeaderAccept?: undefined;
|
|
9453
9246
|
context?: HttpContext;
|
|
9454
9247
|
transferCache?: boolean;
|
|
9455
9248
|
}): Observable<any>;
|
|
9456
|
-
|
|
9249
|
+
downloadsUpdateDownloadLayer(requestParameters: DownloadsUpdateDownloadLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9457
9250
|
httpHeaderAccept?: undefined;
|
|
9458
9251
|
context?: HttpContext;
|
|
9459
9252
|
transferCache?: boolean;
|
|
9460
9253
|
}): Observable<HttpResponse<any>>;
|
|
9461
|
-
|
|
9254
|
+
downloadsUpdateDownloadLayer(requestParameters: DownloadsUpdateDownloadLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9462
9255
|
httpHeaderAccept?: undefined;
|
|
9463
9256
|
context?: HttpContext;
|
|
9464
9257
|
transferCache?: boolean;
|
|
9465
9258
|
}): Observable<HttpEvent<any>>;
|
|
9466
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
9467
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
9259
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BombDownloadsApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
9260
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BombDownloadsApiService>;
|
|
9468
9261
|
}
|
|
9469
9262
|
|
|
9470
9263
|
/**
|
|
@@ -9722,12 +9515,7 @@ interface ModelParametersSearchMaterialLayersNestedRequestParams {
|
|
|
9722
9515
|
buildDate: string;
|
|
9723
9516
|
modelParameters?: Array<ModelParameterDto>;
|
|
9724
9517
|
}
|
|
9725
|
-
interface
|
|
9726
|
-
modelNumber: string;
|
|
9727
|
-
buildDate: string;
|
|
9728
|
-
modelParameters?: Array<ModelParameterDto>;
|
|
9729
|
-
}
|
|
9730
|
-
interface ModelParametersSearchModelSchematicLayersRequestParams {
|
|
9518
|
+
interface ModelParametersSearchModelDownloadLayersRequestParams {
|
|
9731
9519
|
modelNumber: string;
|
|
9732
9520
|
buildDate: string;
|
|
9733
9521
|
modelParameters?: Array<ModelParameterDto>;
|
|
@@ -9781,17 +9569,11 @@ interface BombParametersApiServiceInterface {
|
|
|
9781
9569
|
*/
|
|
9782
9570
|
modelParametersSearchMaterialLayersNested(requestParameters: ModelParametersSearchMaterialLayersNestedRequestParams, extraHttpRequestParams?: any): Observable<Array<ModelMaterialLayerHierarchyItemDto>>;
|
|
9783
9571
|
/**
|
|
9784
|
-
* Search
|
|
9572
|
+
* Search download layers based on model number and parameters.
|
|
9785
9573
|
*
|
|
9786
9574
|
* @param requestParameters
|
|
9787
9575
|
*/
|
|
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>>;
|
|
9576
|
+
modelParametersSearchModelDownloadLayers(requestParameters: ModelParametersSearchModelDownloadLayersRequestParams, extraHttpRequestParams?: any): Observable<Array<SearchModelDownloadDto>>;
|
|
9795
9577
|
/**
|
|
9796
9578
|
* Search validation layers based on model number and parameters.
|
|
9797
9579
|
*
|
|
@@ -9924,47 +9706,26 @@ declare class BombParametersApiService extends BaseService implements BombParame
|
|
|
9924
9706
|
transferCache?: boolean;
|
|
9925
9707
|
}): Observable<HttpEvent<Array<ModelMaterialLayerHierarchyItemDto>>>;
|
|
9926
9708
|
/**
|
|
9927
|
-
* Search
|
|
9709
|
+
* Search download layers based on model number and parameters.
|
|
9928
9710
|
* @param requestParameters
|
|
9929
9711
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9930
9712
|
* @param reportProgress flag to report request and response progress.
|
|
9931
9713
|
*/
|
|
9932
|
-
|
|
9714
|
+
modelParametersSearchModelDownloadLayers(requestParameters: ModelParametersSearchModelDownloadLayersRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9933
9715
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9934
9716
|
context?: HttpContext;
|
|
9935
9717
|
transferCache?: boolean;
|
|
9936
|
-
}): Observable<Array<
|
|
9937
|
-
|
|
9718
|
+
}): Observable<Array<SearchModelDownloadDto>>;
|
|
9719
|
+
modelParametersSearchModelDownloadLayers(requestParameters: ModelParametersSearchModelDownloadLayersRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9938
9720
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9939
9721
|
context?: HttpContext;
|
|
9940
9722
|
transferCache?: boolean;
|
|
9941
|
-
}): Observable<HttpResponse<Array<
|
|
9942
|
-
|
|
9723
|
+
}): Observable<HttpResponse<Array<SearchModelDownloadDto>>>;
|
|
9724
|
+
modelParametersSearchModelDownloadLayers(requestParameters: ModelParametersSearchModelDownloadLayersRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9943
9725
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9944
9726
|
context?: HttpContext;
|
|
9945
9727
|
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>>>;
|
|
9728
|
+
}): Observable<HttpEvent<Array<SearchModelDownloadDto>>>;
|
|
9968
9729
|
/**
|
|
9969
9730
|
* Search validation layers based on model number and parameters.
|
|
9970
9731
|
* @param requestParameters
|
|
@@ -10299,7 +10060,7 @@ declare class BombRoutingsApiService extends BaseService implements BombRoutings
|
|
|
10299
10060
|
*/
|
|
10300
10061
|
|
|
10301
10062
|
interface SchematicsCreateSchematicLayerRequestParams {
|
|
10302
|
-
|
|
10063
|
+
createDownloadLayerCommand?: CreateDownloadLayerCommand;
|
|
10303
10064
|
}
|
|
10304
10065
|
interface SchematicsDuplicateSchematicLayerRequestParams {
|
|
10305
10066
|
schematicLayerId: number;
|
|
@@ -10316,74 +10077,92 @@ interface SchematicsGetSchematicLayerRequestParams {
|
|
|
10316
10077
|
}
|
|
10317
10078
|
interface SchematicsMoveSchematicLayerRequestParams {
|
|
10318
10079
|
schematicLayerId: number;
|
|
10319
|
-
|
|
10080
|
+
downloadLayerIdMoveLayerDto?: DownloadLayerIdMoveLayerDto;
|
|
10320
10081
|
}
|
|
10321
10082
|
interface SchematicsRemoveSchematicLayerRequestParams {
|
|
10322
10083
|
schematicLayerId: number;
|
|
10323
10084
|
}
|
|
10324
10085
|
interface SchematicsSearchSchematicLayersRequestParams {
|
|
10325
|
-
|
|
10086
|
+
parentDownloadLayerId?: number | null;
|
|
10326
10087
|
}
|
|
10327
10088
|
interface SchematicsUpdateSchematicLayerRequestParams {
|
|
10328
10089
|
schematicLayerId: number;
|
|
10329
|
-
|
|
10090
|
+
saveDownloadLayerDto?: SaveDownloadLayerDto;
|
|
10330
10091
|
}
|
|
10331
10092
|
interface BombSchematicsApiServiceInterface {
|
|
10332
10093
|
defaultHeaders: HttpHeaders;
|
|
10333
10094
|
configuration: Configuration;
|
|
10334
10095
|
/**
|
|
10335
|
-
|
|
10336
|
-
|
|
10337
|
-
|
|
10338
|
-
|
|
10096
|
+
* Create schematic layer.
|
|
10097
|
+
*
|
|
10098
|
+
* @param requestParameters
|
|
10099
|
+
|
|
10100
|
+
* @deprecated
|
|
10101
|
+
*/
|
|
10339
10102
|
schematicsCreateSchematicLayer(requestParameters: SchematicsCreateSchematicLayerRequestParams, extraHttpRequestParams?: any): Observable<number>;
|
|
10340
10103
|
/**
|
|
10341
|
-
|
|
10342
|
-
|
|
10343
|
-
|
|
10344
|
-
|
|
10345
|
-
|
|
10346
|
-
|
|
10347
|
-
|
|
10348
|
-
|
|
10349
|
-
|
|
10350
|
-
|
|
10104
|
+
* Duplicate schematic layer.
|
|
10105
|
+
*
|
|
10106
|
+
* @param requestParameters
|
|
10107
|
+
|
|
10108
|
+
* @deprecated
|
|
10109
|
+
*/
|
|
10110
|
+
schematicsDuplicateSchematicLayer(requestParameters: SchematicsDuplicateSchematicLayerRequestParams, extraHttpRequestParams?: any): Observable<DownloadLayerHierarchyItemDto>;
|
|
10111
|
+
/**
|
|
10112
|
+
* Generate cloud URL for schematic layer file downloading.
|
|
10113
|
+
*
|
|
10114
|
+
* @param requestParameters
|
|
10115
|
+
|
|
10116
|
+
* @deprecated
|
|
10117
|
+
*/
|
|
10351
10118
|
schematicsGetSchematicFileDownloadUrl(requestParameters: SchematicsGetSchematicFileDownloadUrlRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
10352
10119
|
/**
|
|
10353
|
-
|
|
10354
|
-
|
|
10355
|
-
|
|
10356
|
-
|
|
10120
|
+
* Generate preview image for schematic layer file.
|
|
10121
|
+
*
|
|
10122
|
+
* @param requestParameters
|
|
10123
|
+
|
|
10124
|
+
* @deprecated
|
|
10125
|
+
*/
|
|
10357
10126
|
schematicsGetSchematicFilePreviewUrl(requestParameters: SchematicsGetSchematicFilePreviewUrlRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
10358
10127
|
/**
|
|
10359
|
-
|
|
10360
|
-
|
|
10361
|
-
|
|
10362
|
-
|
|
10363
|
-
|
|
10364
|
-
|
|
10365
|
-
|
|
10366
|
-
|
|
10367
|
-
|
|
10368
|
-
|
|
10128
|
+
* Get schematic layer details by id.
|
|
10129
|
+
*
|
|
10130
|
+
* @param requestParameters
|
|
10131
|
+
|
|
10132
|
+
* @deprecated
|
|
10133
|
+
*/
|
|
10134
|
+
schematicsGetSchematicLayer(requestParameters: SchematicsGetSchematicLayerRequestParams, extraHttpRequestParams?: any): Observable<DownloadLayerDto>;
|
|
10135
|
+
/**
|
|
10136
|
+
* Move schematic layer.
|
|
10137
|
+
*
|
|
10138
|
+
* @param requestParameters
|
|
10139
|
+
|
|
10140
|
+
* @deprecated
|
|
10141
|
+
*/
|
|
10369
10142
|
schematicsMoveSchematicLayer(requestParameters: SchematicsMoveSchematicLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
10370
10143
|
/**
|
|
10371
|
-
|
|
10372
|
-
|
|
10373
|
-
|
|
10374
|
-
|
|
10144
|
+
* Remove schematic layer by id.
|
|
10145
|
+
*
|
|
10146
|
+
* @param requestParameters
|
|
10147
|
+
|
|
10148
|
+
* @deprecated
|
|
10149
|
+
*/
|
|
10375
10150
|
schematicsRemoveSchematicLayer(requestParameters: SchematicsRemoveSchematicLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
10376
10151
|
/**
|
|
10377
|
-
|
|
10378
|
-
|
|
10379
|
-
|
|
10380
|
-
|
|
10381
|
-
|
|
10382
|
-
|
|
10383
|
-
|
|
10384
|
-
|
|
10385
|
-
|
|
10386
|
-
|
|
10152
|
+
* Search schematic layers.
|
|
10153
|
+
*
|
|
10154
|
+
* @param requestParameters
|
|
10155
|
+
|
|
10156
|
+
* @deprecated
|
|
10157
|
+
*/
|
|
10158
|
+
schematicsSearchSchematicLayers(requestParameters: SchematicsSearchSchematicLayersRequestParams, extraHttpRequestParams?: any): Observable<Array<DownloadLayerHierarchyItemDto>>;
|
|
10159
|
+
/**
|
|
10160
|
+
* Update schematic layer.
|
|
10161
|
+
*
|
|
10162
|
+
* @param requestParameters
|
|
10163
|
+
|
|
10164
|
+
* @deprecated
|
|
10165
|
+
*/
|
|
10387
10166
|
schematicsUpdateSchematicLayer(requestParameters: SchematicsUpdateSchematicLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
10388
10167
|
}
|
|
10389
10168
|
|
|
@@ -10395,6 +10174,7 @@ declare class BombSchematicsApiService extends BaseService implements BombSchema
|
|
|
10395
10174
|
* @param requestParameters
|
|
10396
10175
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10397
10176
|
* @param reportProgress flag to report request and response progress.
|
|
10177
|
+
* @deprecated
|
|
10398
10178
|
*/
|
|
10399
10179
|
schematicsCreateSchematicLayer(requestParameters?: SchematicsCreateSchematicLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10400
10180
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
@@ -10416,27 +10196,29 @@ declare class BombSchematicsApiService extends BaseService implements BombSchema
|
|
|
10416
10196
|
* @param requestParameters
|
|
10417
10197
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10418
10198
|
* @param reportProgress flag to report request and response progress.
|
|
10199
|
+
* @deprecated
|
|
10419
10200
|
*/
|
|
10420
10201
|
schematicsDuplicateSchematicLayer(requestParameters: SchematicsDuplicateSchematicLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10421
10202
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10422
10203
|
context?: HttpContext;
|
|
10423
10204
|
transferCache?: boolean;
|
|
10424
|
-
}): Observable<
|
|
10205
|
+
}): Observable<DownloadLayerHierarchyItemDto>;
|
|
10425
10206
|
schematicsDuplicateSchematicLayer(requestParameters: SchematicsDuplicateSchematicLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
10426
10207
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10427
10208
|
context?: HttpContext;
|
|
10428
10209
|
transferCache?: boolean;
|
|
10429
|
-
}): Observable<HttpResponse<
|
|
10210
|
+
}): Observable<HttpResponse<DownloadLayerHierarchyItemDto>>;
|
|
10430
10211
|
schematicsDuplicateSchematicLayer(requestParameters: SchematicsDuplicateSchematicLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
10431
10212
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10432
10213
|
context?: HttpContext;
|
|
10433
10214
|
transferCache?: boolean;
|
|
10434
|
-
}): Observable<HttpEvent<
|
|
10215
|
+
}): Observable<HttpEvent<DownloadLayerHierarchyItemDto>>;
|
|
10435
10216
|
/**
|
|
10436
10217
|
* Generate cloud URL for schematic layer file downloading.
|
|
10437
10218
|
* @param requestParameters
|
|
10438
10219
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10439
10220
|
* @param reportProgress flag to report request and response progress.
|
|
10221
|
+
* @deprecated
|
|
10440
10222
|
*/
|
|
10441
10223
|
schematicsGetSchematicFileDownloadUrl(requestParameters: SchematicsGetSchematicFileDownloadUrlRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10442
10224
|
httpHeaderAccept?: undefined;
|
|
@@ -10458,6 +10240,7 @@ declare class BombSchematicsApiService extends BaseService implements BombSchema
|
|
|
10458
10240
|
* @param requestParameters
|
|
10459
10241
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10460
10242
|
* @param reportProgress flag to report request and response progress.
|
|
10243
|
+
* @deprecated
|
|
10461
10244
|
*/
|
|
10462
10245
|
schematicsGetSchematicFilePreviewUrl(requestParameters: SchematicsGetSchematicFilePreviewUrlRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10463
10246
|
httpHeaderAccept?: undefined;
|
|
@@ -10479,27 +10262,29 @@ declare class BombSchematicsApiService extends BaseService implements BombSchema
|
|
|
10479
10262
|
* @param requestParameters
|
|
10480
10263
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10481
10264
|
* @param reportProgress flag to report request and response progress.
|
|
10265
|
+
* @deprecated
|
|
10482
10266
|
*/
|
|
10483
10267
|
schematicsGetSchematicLayer(requestParameters: SchematicsGetSchematicLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10484
10268
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10485
10269
|
context?: HttpContext;
|
|
10486
10270
|
transferCache?: boolean;
|
|
10487
|
-
}): Observable<
|
|
10271
|
+
}): Observable<DownloadLayerDto>;
|
|
10488
10272
|
schematicsGetSchematicLayer(requestParameters: SchematicsGetSchematicLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
10489
10273
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10490
10274
|
context?: HttpContext;
|
|
10491
10275
|
transferCache?: boolean;
|
|
10492
|
-
}): Observable<HttpResponse<
|
|
10276
|
+
}): Observable<HttpResponse<DownloadLayerDto>>;
|
|
10493
10277
|
schematicsGetSchematicLayer(requestParameters: SchematicsGetSchematicLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
10494
10278
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10495
10279
|
context?: HttpContext;
|
|
10496
10280
|
transferCache?: boolean;
|
|
10497
|
-
}): Observable<HttpEvent<
|
|
10281
|
+
}): Observable<HttpEvent<DownloadLayerDto>>;
|
|
10498
10282
|
/**
|
|
10499
10283
|
* Move schematic layer.
|
|
10500
10284
|
* @param requestParameters
|
|
10501
10285
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10502
10286
|
* @param reportProgress flag to report request and response progress.
|
|
10287
|
+
* @deprecated
|
|
10503
10288
|
*/
|
|
10504
10289
|
schematicsMoveSchematicLayer(requestParameters: SchematicsMoveSchematicLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10505
10290
|
httpHeaderAccept?: undefined;
|
|
@@ -10521,6 +10306,7 @@ declare class BombSchematicsApiService extends BaseService implements BombSchema
|
|
|
10521
10306
|
* @param requestParameters
|
|
10522
10307
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10523
10308
|
* @param reportProgress flag to report request and response progress.
|
|
10309
|
+
* @deprecated
|
|
10524
10310
|
*/
|
|
10525
10311
|
schematicsRemoveSchematicLayer(requestParameters: SchematicsRemoveSchematicLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10526
10312
|
httpHeaderAccept?: undefined;
|
|
@@ -10542,27 +10328,29 @@ declare class BombSchematicsApiService extends BaseService implements BombSchema
|
|
|
10542
10328
|
* @param requestParameters
|
|
10543
10329
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10544
10330
|
* @param reportProgress flag to report request and response progress.
|
|
10331
|
+
* @deprecated
|
|
10545
10332
|
*/
|
|
10546
10333
|
schematicsSearchSchematicLayers(requestParameters?: SchematicsSearchSchematicLayersRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10547
10334
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10548
10335
|
context?: HttpContext;
|
|
10549
10336
|
transferCache?: boolean;
|
|
10550
|
-
}): Observable<Array<
|
|
10337
|
+
}): Observable<Array<DownloadLayerHierarchyItemDto>>;
|
|
10551
10338
|
schematicsSearchSchematicLayers(requestParameters?: SchematicsSearchSchematicLayersRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
10552
10339
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10553
10340
|
context?: HttpContext;
|
|
10554
10341
|
transferCache?: boolean;
|
|
10555
|
-
}): Observable<HttpResponse<Array<
|
|
10342
|
+
}): Observable<HttpResponse<Array<DownloadLayerHierarchyItemDto>>>;
|
|
10556
10343
|
schematicsSearchSchematicLayers(requestParameters?: SchematicsSearchSchematicLayersRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
10557
10344
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10558
10345
|
context?: HttpContext;
|
|
10559
10346
|
transferCache?: boolean;
|
|
10560
|
-
}): Observable<HttpEvent<Array<
|
|
10347
|
+
}): Observable<HttpEvent<Array<DownloadLayerHierarchyItemDto>>>;
|
|
10561
10348
|
/**
|
|
10562
10349
|
* Update schematic layer.
|
|
10563
10350
|
* @param requestParameters
|
|
10564
10351
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10565
10352
|
* @param reportProgress flag to report request and response progress.
|
|
10353
|
+
* @deprecated
|
|
10566
10354
|
*/
|
|
10567
10355
|
schematicsUpdateSchematicLayer(requestParameters: SchematicsUpdateSchematicLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10568
10356
|
httpHeaderAccept?: undefined;
|
|
@@ -10607,7 +10395,7 @@ interface ValidationsMoveMaterialLayerRequestParams {
|
|
|
10607
10395
|
validationLayerId: number;
|
|
10608
10396
|
validationLayerIdMoveLayerDto?: ValidationLayerIdMoveLayerDto;
|
|
10609
10397
|
}
|
|
10610
|
-
interface
|
|
10398
|
+
interface ValidationsRemoveValidationLayerRequestParams {
|
|
10611
10399
|
validationLayerId: number;
|
|
10612
10400
|
}
|
|
10613
10401
|
interface ValidationsSearchValidationLayersRequestParams {
|
|
@@ -10649,7 +10437,7 @@ interface BombValidationsApiServiceInterface {
|
|
|
10649
10437
|
*
|
|
10650
10438
|
* @param requestParameters
|
|
10651
10439
|
*/
|
|
10652
|
-
|
|
10440
|
+
validationsRemoveValidationLayer(requestParameters: ValidationsRemoveValidationLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
10653
10441
|
/**
|
|
10654
10442
|
* Search validation layers.
|
|
10655
10443
|
*
|
|
@@ -10757,17 +10545,17 @@ declare class BombValidationsApiService extends BaseService implements BombValid
|
|
|
10757
10545
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10758
10546
|
* @param reportProgress flag to report request and response progress.
|
|
10759
10547
|
*/
|
|
10760
|
-
|
|
10548
|
+
validationsRemoveValidationLayer(requestParameters: ValidationsRemoveValidationLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10761
10549
|
httpHeaderAccept?: undefined;
|
|
10762
10550
|
context?: HttpContext;
|
|
10763
10551
|
transferCache?: boolean;
|
|
10764
10552
|
}): Observable<any>;
|
|
10765
|
-
|
|
10553
|
+
validationsRemoveValidationLayer(requestParameters: ValidationsRemoveValidationLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
10766
10554
|
httpHeaderAccept?: undefined;
|
|
10767
10555
|
context?: HttpContext;
|
|
10768
10556
|
transferCache?: boolean;
|
|
10769
10557
|
}): Observable<HttpResponse<any>>;
|
|
10770
|
-
|
|
10558
|
+
validationsRemoveValidationLayer(requestParameters: ValidationsRemoveValidationLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
10771
10559
|
httpHeaderAccept?: undefined;
|
|
10772
10560
|
context?: HttpContext;
|
|
10773
10561
|
transferCache?: boolean;
|
|
@@ -16520,7 +16308,7 @@ declare class UsersManagementApiService extends BaseService implements UsersMana
|
|
|
16520
16308
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersManagementApiService>;
|
|
16521
16309
|
}
|
|
16522
16310
|
|
|
16523
|
-
declare const APIS: (typeof AuditLogsApiService | typeof AuthApiService | typeof
|
|
16311
|
+
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 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
16312
|
|
|
16525
16313
|
declare const BASE_PATH: InjectionToken<string>;
|
|
16526
16314
|
declare const COLLECTION_FORMATS: {
|
|
@@ -16540,5 +16328,5 @@ declare class ApiModule {
|
|
|
16540
16328
|
|
|
16541
16329
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
16542
16330
|
|
|
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 };
|
|
16331
|
+
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, 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 };
|
|
16332
|
+
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, 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, 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 };
|