@saritasa/renewaire-frontend-sdk 0.256.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 +303 -243
- package/fesm2022/saritasa-renewaire-frontend-sdk.mjs.map +1 -1
- package/index.d.ts +341 -410
- 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
|
*/
|
|
@@ -3179,6 +3162,37 @@ interface ModelParameterDto {
|
|
|
3179
3162
|
value: string;
|
|
3180
3163
|
}
|
|
3181
3164
|
|
|
3165
|
+
/**
|
|
3166
|
+
* RenewAire CORES API
|
|
3167
|
+
*
|
|
3168
|
+
* Contact: renewaire@saritasa.com
|
|
3169
|
+
*
|
|
3170
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3171
|
+
* https://openapi-generator.tech
|
|
3172
|
+
* Do not edit the class manually.
|
|
3173
|
+
*/
|
|
3174
|
+
/**
|
|
3175
|
+
* Individual layer item in the routing layer aggregation.
|
|
3176
|
+
*/
|
|
3177
|
+
interface ModelRoutingLayerAggregateItemDto {
|
|
3178
|
+
/**
|
|
3179
|
+
* Identifier for RenewAire.Cores.Domain.Bomb.RoutingLayer.
|
|
3180
|
+
*/
|
|
3181
|
+
id: number;
|
|
3182
|
+
/**
|
|
3183
|
+
* Name.
|
|
3184
|
+
*/
|
|
3185
|
+
name: string;
|
|
3186
|
+
/**
|
|
3187
|
+
* Description.
|
|
3188
|
+
*/
|
|
3189
|
+
description: string;
|
|
3190
|
+
/**
|
|
3191
|
+
* The routing value determined by the first matching routing rule in layer based on model parameters.
|
|
3192
|
+
*/
|
|
3193
|
+
routing: number;
|
|
3194
|
+
}
|
|
3195
|
+
|
|
3182
3196
|
/**
|
|
3183
3197
|
* RenewAire CORES API
|
|
3184
3198
|
*
|
|
@@ -3292,7 +3306,7 @@ declare enum OperationType {
|
|
|
3292
3306
|
* Do not edit the class manually.
|
|
3293
3307
|
*/
|
|
3294
3308
|
/**
|
|
3295
|
-
* 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
|
|
3296
3310
|
*/
|
|
3297
3311
|
declare enum Permission {
|
|
3298
3312
|
SystemAdmin = "SystemAdmin",
|
|
@@ -3353,7 +3367,7 @@ declare enum Permission {
|
|
|
3353
3367
|
EditUsers = "EditUsers",
|
|
3354
3368
|
BombMaterialsAdmin = "BombMaterialsAdmin",
|
|
3355
3369
|
BombRoutingAdmin = "BombRoutingAdmin",
|
|
3356
|
-
|
|
3370
|
+
BombDownloadsAdmin = "BombDownloadsAdmin",
|
|
3357
3371
|
BombValidationsAdmin = "BombValidationsAdmin",
|
|
3358
3372
|
AccessBomb = "AccessBomb",
|
|
3359
3373
|
BombDrawingsAdmin = "BombDrawingsAdmin",
|
|
@@ -3433,7 +3447,7 @@ interface PermissionBundleDto {
|
|
|
3433
3447
|
*/
|
|
3434
3448
|
interface PermissionDto {
|
|
3435
3449
|
/**
|
|
3436
|
-
* 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
|
|
3437
3451
|
*/
|
|
3438
3452
|
id: Permission;
|
|
3439
3453
|
/**
|
|
@@ -5542,21 +5556,21 @@ interface SaveControllerProgramDto {
|
|
|
5542
5556
|
*/
|
|
5543
5557
|
|
|
5544
5558
|
/**
|
|
5545
|
-
* DTO to save
|
|
5559
|
+
* DTO to save download layer.
|
|
5546
5560
|
*/
|
|
5547
|
-
interface
|
|
5561
|
+
interface SaveDownloadLayerDto {
|
|
5548
5562
|
/**
|
|
5549
5563
|
* Save bomb layer DTO.
|
|
5550
5564
|
*/
|
|
5551
5565
|
saveBombLayerDto: SaveBombLayerDto;
|
|
5552
5566
|
/**
|
|
5553
|
-
* 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.
|
|
5554
5568
|
*/
|
|
5555
|
-
|
|
5569
|
+
shouldRemoveDownloadFile: boolean;
|
|
5556
5570
|
/**
|
|
5557
5571
|
* Represents metadata for an uploaded file.
|
|
5558
5572
|
*/
|
|
5559
|
-
|
|
5573
|
+
downloadFile?: UploadFileDto | null;
|
|
5560
5574
|
}
|
|
5561
5575
|
|
|
5562
5576
|
/**
|
|
@@ -6200,34 +6214,6 @@ interface SaveRoutingLayerDto {
|
|
|
6200
6214
|
routingRules: Array<SaveRoutingRuleDto>;
|
|
6201
6215
|
}
|
|
6202
6216
|
|
|
6203
|
-
/**
|
|
6204
|
-
* RenewAire CORES API
|
|
6205
|
-
*
|
|
6206
|
-
* Contact: renewaire@saritasa.com
|
|
6207
|
-
*
|
|
6208
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6209
|
-
* https://openapi-generator.tech
|
|
6210
|
-
* Do not edit the class manually.
|
|
6211
|
-
*/
|
|
6212
|
-
|
|
6213
|
-
/**
|
|
6214
|
-
* DTO to save schematics layer.
|
|
6215
|
-
*/
|
|
6216
|
-
interface SaveSchematicLayerDto {
|
|
6217
|
-
/**
|
|
6218
|
-
* Save bomb layer DTO.
|
|
6219
|
-
*/
|
|
6220
|
-
saveBombLayerDto: SaveBombLayerDto;
|
|
6221
|
-
/**
|
|
6222
|
-
* Allow to delete an already existing schematic file. Will not take effect if RenewAire.Cores.UseCases.Bomb.Dtos.Schematics.SaveSchematicLayerDto.SchematicFile is specified.
|
|
6223
|
-
*/
|
|
6224
|
-
shouldRemoveSchematicFile: boolean;
|
|
6225
|
-
/**
|
|
6226
|
-
* Represents metadata for an uploaded file.
|
|
6227
|
-
*/
|
|
6228
|
-
schematicFile?: UploadFileDto | null;
|
|
6229
|
-
}
|
|
6230
|
-
|
|
6231
6217
|
/**
|
|
6232
6218
|
* RenewAire CORES API
|
|
6233
6219
|
*
|
|
@@ -6414,123 +6400,21 @@ interface SaveValidationLayerDto {
|
|
|
6414
6400
|
*/
|
|
6415
6401
|
|
|
6416
6402
|
/**
|
|
6417
|
-
*
|
|
6418
|
-
*/
|
|
6419
|
-
interface SchematicLayerDto {
|
|
6420
|
-
/**
|
|
6421
|
-
* Identifier for RenewAire.Cores.Domain.Bomb.SchematicLayer.
|
|
6422
|
-
*/
|
|
6423
|
-
id: number;
|
|
6424
|
-
/**
|
|
6425
|
-
* Id of the level at which layer is located.
|
|
6426
|
-
*/
|
|
6427
|
-
level: number;
|
|
6428
|
-
/**
|
|
6429
|
-
* Name.
|
|
6430
|
-
*/
|
|
6431
|
-
name: string;
|
|
6432
|
-
/**
|
|
6433
|
-
* Description.
|
|
6434
|
-
*/
|
|
6435
|
-
description: string;
|
|
6436
|
-
/**
|
|
6437
|
-
* Effective start date note.
|
|
6438
|
-
*/
|
|
6439
|
-
effectiveStartDateNote: string;
|
|
6440
|
-
/**
|
|
6441
|
-
* Effective end date note.
|
|
6442
|
-
*/
|
|
6443
|
-
effectiveEndDateNote: string;
|
|
6444
|
-
/**
|
|
6445
|
-
* Parent layer id.
|
|
6446
|
-
*/
|
|
6447
|
-
parentLayerId?: number | null;
|
|
6448
|
-
/**
|
|
6449
|
-
* Effective start date.
|
|
6450
|
-
*/
|
|
6451
|
-
effectiveStartDate?: string | null;
|
|
6452
|
-
/**
|
|
6453
|
-
* Effective end date.
|
|
6454
|
-
*/
|
|
6455
|
-
effectiveEndDate?: string | null;
|
|
6456
|
-
/**
|
|
6457
|
-
* DTO for RenewAire.Cores.Domain.File.
|
|
6458
|
-
*/
|
|
6459
|
-
schematicFile?: FileDto | null;
|
|
6460
|
-
/**
|
|
6461
|
-
* Rule set DTO. (Inner arrays are connected by AND between rules. Outer array is connected by OR between inner arrays.)
|
|
6462
|
-
*/
|
|
6463
|
-
rule?: RuleSetDto | null;
|
|
6464
|
-
}
|
|
6465
|
-
|
|
6466
|
-
/**
|
|
6467
|
-
* RenewAire CORES API
|
|
6468
|
-
*
|
|
6469
|
-
* Contact: renewaire@saritasa.com
|
|
6470
|
-
*
|
|
6471
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6472
|
-
* https://openapi-generator.tech
|
|
6473
|
-
* Do not edit the class manually.
|
|
6474
|
-
*/
|
|
6475
|
-
/**
|
|
6476
|
-
* Individual layer item in the schematic layer hierarchy.
|
|
6403
|
+
* DTO for search bomb layers by model parameters.
|
|
6477
6404
|
*/
|
|
6478
|
-
interface
|
|
6479
|
-
/**
|
|
6480
|
-
* Identifier for RenewAire.Cores.Domain.Bomb.SchematicLayer.
|
|
6481
|
-
*/
|
|
6482
|
-
id: number;
|
|
6483
|
-
/**
|
|
6484
|
-
* Id of the level at which layer is located.
|
|
6485
|
-
*/
|
|
6486
|
-
level: number;
|
|
6487
|
-
/**
|
|
6488
|
-
* Name.
|
|
6489
|
-
*/
|
|
6490
|
-
name: string;
|
|
6491
|
-
/**
|
|
6492
|
-
* Description.
|
|
6493
|
-
*/
|
|
6494
|
-
description: string;
|
|
6495
|
-
/**
|
|
6496
|
-
* Collection of schematic layers in hierarchical order (from root to target).
|
|
6497
|
-
*/
|
|
6498
|
-
layers: Array<SchematicLayerHierarchyItemDto>;
|
|
6405
|
+
interface SearchBombDto {
|
|
6499
6406
|
/**
|
|
6500
|
-
*
|
|
6501
|
-
*/
|
|
6502
|
-
parentSchematicLayerId?: number | null;
|
|
6503
|
-
/**
|
|
6504
|
-
* Calculated effective start date.
|
|
6505
|
-
*/
|
|
6506
|
-
calculatedEffectiveStartDate?: string | null;
|
|
6507
|
-
/**
|
|
6508
|
-
* Calculated effective end date.
|
|
6407
|
+
* Model number consisting of RenewAire.Cores.Domain.Bomb.ModelParameters.ModelNumberPart.Validation.NumberOfDigits digits.
|
|
6509
6408
|
*/
|
|
6510
|
-
|
|
6511
|
-
}
|
|
6512
|
-
|
|
6513
|
-
/**
|
|
6514
|
-
* RenewAire CORES API
|
|
6515
|
-
*
|
|
6516
|
-
* Contact: renewaire@saritasa.com
|
|
6517
|
-
*
|
|
6518
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6519
|
-
* https://openapi-generator.tech
|
|
6520
|
-
* Do not edit the class manually.
|
|
6521
|
-
*/
|
|
6522
|
-
/**
|
|
6523
|
-
* Defines the positioning requirements for moving a layer within a hierarchical structure.
|
|
6524
|
-
*/
|
|
6525
|
-
interface SchematicLayerIdMoveLayerDto {
|
|
6409
|
+
modelNumber: string;
|
|
6526
6410
|
/**
|
|
6527
|
-
*
|
|
6411
|
+
* Additional model parameters.
|
|
6528
6412
|
*/
|
|
6529
|
-
|
|
6413
|
+
modelParameters: Array<ModelParameterDto>;
|
|
6530
6414
|
/**
|
|
6531
|
-
*
|
|
6415
|
+
* Build date of the model.
|
|
6532
6416
|
*/
|
|
6533
|
-
|
|
6417
|
+
buildDate: string;
|
|
6534
6418
|
}
|
|
6535
6419
|
|
|
6536
6420
|
/**
|
|
@@ -6698,43 +6582,11 @@ interface SearchKnownContactDtoPagedListMetadataDto {
|
|
|
6698
6582
|
*/
|
|
6699
6583
|
|
|
6700
6584
|
/**
|
|
6701
|
-
* DTO to search
|
|
6702
|
-
*/
|
|
6703
|
-
interface SearchModelDrawingDto {
|
|
6704
|
-
/**
|
|
6705
|
-
* Identifier for RenewAire.Cores.Domain.Bomb.DrawingLayer.
|
|
6706
|
-
*/
|
|
6707
|
-
id: number;
|
|
6708
|
-
/**
|
|
6709
|
-
* Name.
|
|
6710
|
-
*/
|
|
6711
|
-
name: string;
|
|
6712
|
-
/**
|
|
6713
|
-
* Description.
|
|
6714
|
-
*/
|
|
6715
|
-
description: string;
|
|
6716
|
-
/**
|
|
6717
|
-
* DTO for RenewAire.Cores.Domain.File.
|
|
6718
|
-
*/
|
|
6719
|
-
drawingFile: FileDto;
|
|
6720
|
-
}
|
|
6721
|
-
|
|
6722
|
-
/**
|
|
6723
|
-
* RenewAire CORES API
|
|
6724
|
-
*
|
|
6725
|
-
* Contact: renewaire@saritasa.com
|
|
6726
|
-
*
|
|
6727
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6728
|
-
* https://openapi-generator.tech
|
|
6729
|
-
* Do not edit the class manually.
|
|
6730
|
-
*/
|
|
6731
|
-
|
|
6732
|
-
/**
|
|
6733
|
-
* DTO to search schematic layers by model.
|
|
6585
|
+
* DTO to search download layers by model.
|
|
6734
6586
|
*/
|
|
6735
|
-
interface
|
|
6587
|
+
interface SearchModelDownloadDto {
|
|
6736
6588
|
/**
|
|
6737
|
-
* Identifier for RenewAire.Cores.Domain.Bomb.
|
|
6589
|
+
* Identifier for RenewAire.Cores.Domain.Bomb.DownloadLayer.
|
|
6738
6590
|
*/
|
|
6739
6591
|
id: number;
|
|
6740
6592
|
/**
|
|
@@ -6748,7 +6600,7 @@ interface SearchModelSchematicDto {
|
|
|
6748
6600
|
/**
|
|
6749
6601
|
* DTO for RenewAire.Cores.Domain.File.
|
|
6750
6602
|
*/
|
|
6751
|
-
|
|
6603
|
+
downloadFile: FileDto;
|
|
6752
6604
|
}
|
|
6753
6605
|
|
|
6754
6606
|
/**
|
|
@@ -8610,7 +8462,7 @@ interface UserPermissionSourceDto {
|
|
|
8610
8462
|
*/
|
|
8611
8463
|
interface UserPermissionDto {
|
|
8612
8464
|
/**
|
|
8613
|
-
* 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
|
|
8614
8466
|
*/
|
|
8615
8467
|
permission: Permission;
|
|
8616
8468
|
/**
|
|
@@ -9123,289 +8975,289 @@ declare class AuthApiService extends BaseService implements AuthApiServiceInterf
|
|
|
9123
8975
|
* Do not edit the class manually.
|
|
9124
8976
|
*/
|
|
9125
8977
|
|
|
9126
|
-
interface
|
|
9127
|
-
|
|
8978
|
+
interface DownloadsCreateDownloadLayerRequestParams {
|
|
8979
|
+
createDownloadLayerCommand?: CreateDownloadLayerCommand;
|
|
9128
8980
|
}
|
|
9129
|
-
interface
|
|
9130
|
-
|
|
8981
|
+
interface DownloadsDuplicateDownloadLayerRequestParams {
|
|
8982
|
+
downloadLayerId: number;
|
|
9131
8983
|
duplicateBombLayerDto?: DuplicateBombLayerDto;
|
|
9132
8984
|
}
|
|
9133
|
-
interface
|
|
9134
|
-
|
|
8985
|
+
interface DownloadsGetDownloadFilePreviewUrlRequestParams {
|
|
8986
|
+
downloadLayerId: number;
|
|
9135
8987
|
}
|
|
9136
|
-
interface
|
|
9137
|
-
|
|
8988
|
+
interface DownloadsGetDownloadLayerRequestParams {
|
|
8989
|
+
downloadLayerId: number;
|
|
9138
8990
|
}
|
|
9139
|
-
interface
|
|
9140
|
-
|
|
8991
|
+
interface DownloadsGetDownloadLayerFileDownloadUrlRequestParams {
|
|
8992
|
+
downloadLayerId: number;
|
|
9141
8993
|
}
|
|
9142
|
-
interface
|
|
9143
|
-
|
|
9144
|
-
|
|
8994
|
+
interface DownloadsMoveDownloadLayerRequestParams {
|
|
8995
|
+
downloadLayerId: number;
|
|
8996
|
+
downloadLayerIdMoveLayerDto?: DownloadLayerIdMoveLayerDto;
|
|
9145
8997
|
}
|
|
9146
|
-
interface
|
|
9147
|
-
|
|
8998
|
+
interface DownloadsRemoveDownloadLayerRequestParams {
|
|
8999
|
+
downloadLayerId: number;
|
|
9148
9000
|
}
|
|
9149
|
-
interface
|
|
9150
|
-
|
|
9001
|
+
interface DownloadsSearchDownloadLayersRequestParams {
|
|
9002
|
+
parentDownloadLayerId?: number | null;
|
|
9151
9003
|
}
|
|
9152
|
-
interface
|
|
9153
|
-
|
|
9154
|
-
|
|
9004
|
+
interface DownloadsUpdateDownloadLayerRequestParams {
|
|
9005
|
+
downloadLayerId: number;
|
|
9006
|
+
saveDownloadLayerDto?: SaveDownloadLayerDto;
|
|
9155
9007
|
}
|
|
9156
|
-
interface
|
|
9008
|
+
interface BombDownloadsApiServiceInterface {
|
|
9157
9009
|
defaultHeaders: HttpHeaders;
|
|
9158
9010
|
configuration: Configuration;
|
|
9159
9011
|
/**
|
|
9160
|
-
* Create
|
|
9012
|
+
* Create download layer.
|
|
9161
9013
|
*
|
|
9162
9014
|
* @param requestParameters
|
|
9163
9015
|
*/
|
|
9164
|
-
|
|
9016
|
+
downloadsCreateDownloadLayer(requestParameters: DownloadsCreateDownloadLayerRequestParams, extraHttpRequestParams?: any): Observable<number>;
|
|
9165
9017
|
/**
|
|
9166
|
-
* Duplicate
|
|
9018
|
+
* Duplicate download layer.
|
|
9167
9019
|
*
|
|
9168
9020
|
* @param requestParameters
|
|
9169
9021
|
*/
|
|
9170
|
-
|
|
9022
|
+
downloadsDuplicateDownloadLayer(requestParameters: DownloadsDuplicateDownloadLayerRequestParams, extraHttpRequestParams?: any): Observable<DownloadLayerHierarchyItemDto>;
|
|
9171
9023
|
/**
|
|
9172
|
-
* Generate
|
|
9024
|
+
* Generate preview image for download layer file.
|
|
9173
9025
|
*
|
|
9174
9026
|
* @param requestParameters
|
|
9175
9027
|
*/
|
|
9176
|
-
|
|
9028
|
+
downloadsGetDownloadFilePreviewUrl(requestParameters: DownloadsGetDownloadFilePreviewUrlRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
9177
9029
|
/**
|
|
9178
|
-
*
|
|
9030
|
+
* Get download layer details by id.
|
|
9179
9031
|
*
|
|
9180
9032
|
* @param requestParameters
|
|
9181
9033
|
*/
|
|
9182
|
-
|
|
9034
|
+
downloadsGetDownloadLayer(requestParameters: DownloadsGetDownloadLayerRequestParams, extraHttpRequestParams?: any): Observable<DownloadLayerDto>;
|
|
9183
9035
|
/**
|
|
9184
|
-
*
|
|
9036
|
+
* Generate cloud URL for download layer file downloading.
|
|
9185
9037
|
*
|
|
9186
9038
|
* @param requestParameters
|
|
9187
9039
|
*/
|
|
9188
|
-
|
|
9040
|
+
downloadsGetDownloadLayerFileDownloadUrl(requestParameters: DownloadsGetDownloadLayerFileDownloadUrlRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
9189
9041
|
/**
|
|
9190
|
-
* Move
|
|
9042
|
+
* Move download layer.
|
|
9191
9043
|
*
|
|
9192
9044
|
* @param requestParameters
|
|
9193
9045
|
*/
|
|
9194
|
-
|
|
9046
|
+
downloadsMoveDownloadLayer(requestParameters: DownloadsMoveDownloadLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
9195
9047
|
/**
|
|
9196
|
-
* Remove
|
|
9048
|
+
* Remove download layer by id.
|
|
9197
9049
|
*
|
|
9198
9050
|
* @param requestParameters
|
|
9199
9051
|
*/
|
|
9200
|
-
|
|
9052
|
+
downloadsRemoveDownloadLayer(requestParameters: DownloadsRemoveDownloadLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
9201
9053
|
/**
|
|
9202
|
-
* Search
|
|
9054
|
+
* Search download layers.
|
|
9203
9055
|
*
|
|
9204
9056
|
* @param requestParameters
|
|
9205
9057
|
*/
|
|
9206
|
-
|
|
9058
|
+
downloadsSearchDownloadLayers(requestParameters: DownloadsSearchDownloadLayersRequestParams, extraHttpRequestParams?: any): Observable<Array<DownloadLayerHierarchyItemDto>>;
|
|
9207
9059
|
/**
|
|
9208
|
-
* Update
|
|
9060
|
+
* Update download layer.
|
|
9209
9061
|
*
|
|
9210
9062
|
* @param requestParameters
|
|
9211
9063
|
*/
|
|
9212
|
-
|
|
9064
|
+
downloadsUpdateDownloadLayer(requestParameters: DownloadsUpdateDownloadLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
9213
9065
|
}
|
|
9214
9066
|
|
|
9215
|
-
declare class
|
|
9067
|
+
declare class BombDownloadsApiService extends BaseService implements BombDownloadsApiServiceInterface {
|
|
9216
9068
|
protected httpClient: HttpClient;
|
|
9217
9069
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
9218
9070
|
/**
|
|
9219
|
-
* Create
|
|
9071
|
+
* Create download layer.
|
|
9220
9072
|
* @param requestParameters
|
|
9221
9073
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9222
9074
|
* @param reportProgress flag to report request and response progress.
|
|
9223
9075
|
*/
|
|
9224
|
-
|
|
9076
|
+
downloadsCreateDownloadLayer(requestParameters?: DownloadsCreateDownloadLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9225
9077
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9226
9078
|
context?: HttpContext;
|
|
9227
9079
|
transferCache?: boolean;
|
|
9228
9080
|
}): Observable<number>;
|
|
9229
|
-
|
|
9081
|
+
downloadsCreateDownloadLayer(requestParameters?: DownloadsCreateDownloadLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9230
9082
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9231
9083
|
context?: HttpContext;
|
|
9232
9084
|
transferCache?: boolean;
|
|
9233
9085
|
}): Observable<HttpResponse<number>>;
|
|
9234
|
-
|
|
9086
|
+
downloadsCreateDownloadLayer(requestParameters?: DownloadsCreateDownloadLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9235
9087
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9236
9088
|
context?: HttpContext;
|
|
9237
9089
|
transferCache?: boolean;
|
|
9238
9090
|
}): Observable<HttpEvent<number>>;
|
|
9239
9091
|
/**
|
|
9240
|
-
* Duplicate
|
|
9092
|
+
* Duplicate download layer.
|
|
9241
9093
|
* @param requestParameters
|
|
9242
9094
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9243
9095
|
* @param reportProgress flag to report request and response progress.
|
|
9244
9096
|
*/
|
|
9245
|
-
|
|
9097
|
+
downloadsDuplicateDownloadLayer(requestParameters: DownloadsDuplicateDownloadLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9246
9098
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9247
9099
|
context?: HttpContext;
|
|
9248
9100
|
transferCache?: boolean;
|
|
9249
|
-
}): Observable<
|
|
9250
|
-
|
|
9101
|
+
}): Observable<DownloadLayerHierarchyItemDto>;
|
|
9102
|
+
downloadsDuplicateDownloadLayer(requestParameters: DownloadsDuplicateDownloadLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9251
9103
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9252
9104
|
context?: HttpContext;
|
|
9253
9105
|
transferCache?: boolean;
|
|
9254
|
-
}): Observable<HttpResponse<
|
|
9255
|
-
|
|
9106
|
+
}): Observable<HttpResponse<DownloadLayerHierarchyItemDto>>;
|
|
9107
|
+
downloadsDuplicateDownloadLayer(requestParameters: DownloadsDuplicateDownloadLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9256
9108
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9257
9109
|
context?: HttpContext;
|
|
9258
9110
|
transferCache?: boolean;
|
|
9259
|
-
}): Observable<HttpEvent<
|
|
9111
|
+
}): Observable<HttpEvent<DownloadLayerHierarchyItemDto>>;
|
|
9260
9112
|
/**
|
|
9261
|
-
* Generate
|
|
9113
|
+
* Generate preview image for download layer file.
|
|
9262
9114
|
* @param requestParameters
|
|
9263
9115
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9264
9116
|
* @param reportProgress flag to report request and response progress.
|
|
9265
9117
|
*/
|
|
9266
|
-
|
|
9118
|
+
downloadsGetDownloadFilePreviewUrl(requestParameters: DownloadsGetDownloadFilePreviewUrlRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9267
9119
|
httpHeaderAccept?: undefined;
|
|
9268
9120
|
context?: HttpContext;
|
|
9269
9121
|
transferCache?: boolean;
|
|
9270
9122
|
}): Observable<any>;
|
|
9271
|
-
|
|
9123
|
+
downloadsGetDownloadFilePreviewUrl(requestParameters: DownloadsGetDownloadFilePreviewUrlRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9272
9124
|
httpHeaderAccept?: undefined;
|
|
9273
9125
|
context?: HttpContext;
|
|
9274
9126
|
transferCache?: boolean;
|
|
9275
9127
|
}): Observable<HttpResponse<any>>;
|
|
9276
|
-
|
|
9128
|
+
downloadsGetDownloadFilePreviewUrl(requestParameters: DownloadsGetDownloadFilePreviewUrlRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9277
9129
|
httpHeaderAccept?: undefined;
|
|
9278
9130
|
context?: HttpContext;
|
|
9279
9131
|
transferCache?: boolean;
|
|
9280
9132
|
}): Observable<HttpEvent<any>>;
|
|
9281
9133
|
/**
|
|
9282
|
-
*
|
|
9134
|
+
* Get download layer details by id.
|
|
9283
9135
|
* @param requestParameters
|
|
9284
9136
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9285
9137
|
* @param reportProgress flag to report request and response progress.
|
|
9286
9138
|
*/
|
|
9287
|
-
|
|
9288
|
-
httpHeaderAccept?:
|
|
9139
|
+
downloadsGetDownloadLayer(requestParameters: DownloadsGetDownloadLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9140
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9289
9141
|
context?: HttpContext;
|
|
9290
9142
|
transferCache?: boolean;
|
|
9291
|
-
}): Observable<
|
|
9292
|
-
|
|
9293
|
-
httpHeaderAccept?:
|
|
9143
|
+
}): Observable<DownloadLayerDto>;
|
|
9144
|
+
downloadsGetDownloadLayer(requestParameters: DownloadsGetDownloadLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9145
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9294
9146
|
context?: HttpContext;
|
|
9295
9147
|
transferCache?: boolean;
|
|
9296
|
-
}): Observable<HttpResponse<
|
|
9297
|
-
|
|
9298
|
-
httpHeaderAccept?:
|
|
9148
|
+
}): Observable<HttpResponse<DownloadLayerDto>>;
|
|
9149
|
+
downloadsGetDownloadLayer(requestParameters: DownloadsGetDownloadLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9150
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9299
9151
|
context?: HttpContext;
|
|
9300
9152
|
transferCache?: boolean;
|
|
9301
|
-
}): Observable<HttpEvent<
|
|
9153
|
+
}): Observable<HttpEvent<DownloadLayerDto>>;
|
|
9302
9154
|
/**
|
|
9303
|
-
*
|
|
9155
|
+
* Generate cloud URL for download layer file downloading.
|
|
9304
9156
|
* @param requestParameters
|
|
9305
9157
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9306
9158
|
* @param reportProgress flag to report request and response progress.
|
|
9307
9159
|
*/
|
|
9308
|
-
|
|
9309
|
-
httpHeaderAccept?:
|
|
9160
|
+
downloadsGetDownloadLayerFileDownloadUrl(requestParameters: DownloadsGetDownloadLayerFileDownloadUrlRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9161
|
+
httpHeaderAccept?: undefined;
|
|
9310
9162
|
context?: HttpContext;
|
|
9311
9163
|
transferCache?: boolean;
|
|
9312
|
-
}): Observable<
|
|
9313
|
-
|
|
9314
|
-
httpHeaderAccept?:
|
|
9164
|
+
}): Observable<any>;
|
|
9165
|
+
downloadsGetDownloadLayerFileDownloadUrl(requestParameters: DownloadsGetDownloadLayerFileDownloadUrlRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9166
|
+
httpHeaderAccept?: undefined;
|
|
9315
9167
|
context?: HttpContext;
|
|
9316
9168
|
transferCache?: boolean;
|
|
9317
|
-
}): Observable<HttpResponse<
|
|
9318
|
-
|
|
9319
|
-
httpHeaderAccept?:
|
|
9169
|
+
}): Observable<HttpResponse<any>>;
|
|
9170
|
+
downloadsGetDownloadLayerFileDownloadUrl(requestParameters: DownloadsGetDownloadLayerFileDownloadUrlRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9171
|
+
httpHeaderAccept?: undefined;
|
|
9320
9172
|
context?: HttpContext;
|
|
9321
9173
|
transferCache?: boolean;
|
|
9322
|
-
}): Observable<HttpEvent<
|
|
9174
|
+
}): Observable<HttpEvent<any>>;
|
|
9323
9175
|
/**
|
|
9324
|
-
* Move
|
|
9176
|
+
* Move download layer.
|
|
9325
9177
|
* @param requestParameters
|
|
9326
9178
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9327
9179
|
* @param reportProgress flag to report request and response progress.
|
|
9328
9180
|
*/
|
|
9329
|
-
|
|
9181
|
+
downloadsMoveDownloadLayer(requestParameters: DownloadsMoveDownloadLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9330
9182
|
httpHeaderAccept?: undefined;
|
|
9331
9183
|
context?: HttpContext;
|
|
9332
9184
|
transferCache?: boolean;
|
|
9333
9185
|
}): Observable<any>;
|
|
9334
|
-
|
|
9186
|
+
downloadsMoveDownloadLayer(requestParameters: DownloadsMoveDownloadLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9335
9187
|
httpHeaderAccept?: undefined;
|
|
9336
9188
|
context?: HttpContext;
|
|
9337
9189
|
transferCache?: boolean;
|
|
9338
9190
|
}): Observable<HttpResponse<any>>;
|
|
9339
|
-
|
|
9191
|
+
downloadsMoveDownloadLayer(requestParameters: DownloadsMoveDownloadLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9340
9192
|
httpHeaderAccept?: undefined;
|
|
9341
9193
|
context?: HttpContext;
|
|
9342
9194
|
transferCache?: boolean;
|
|
9343
9195
|
}): Observable<HttpEvent<any>>;
|
|
9344
9196
|
/**
|
|
9345
|
-
* Remove
|
|
9197
|
+
* Remove download layer by id.
|
|
9346
9198
|
* @param requestParameters
|
|
9347
9199
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9348
9200
|
* @param reportProgress flag to report request and response progress.
|
|
9349
9201
|
*/
|
|
9350
|
-
|
|
9202
|
+
downloadsRemoveDownloadLayer(requestParameters: DownloadsRemoveDownloadLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9351
9203
|
httpHeaderAccept?: undefined;
|
|
9352
9204
|
context?: HttpContext;
|
|
9353
9205
|
transferCache?: boolean;
|
|
9354
9206
|
}): Observable<any>;
|
|
9355
|
-
|
|
9207
|
+
downloadsRemoveDownloadLayer(requestParameters: DownloadsRemoveDownloadLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9356
9208
|
httpHeaderAccept?: undefined;
|
|
9357
9209
|
context?: HttpContext;
|
|
9358
9210
|
transferCache?: boolean;
|
|
9359
9211
|
}): Observable<HttpResponse<any>>;
|
|
9360
|
-
|
|
9212
|
+
downloadsRemoveDownloadLayer(requestParameters: DownloadsRemoveDownloadLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9361
9213
|
httpHeaderAccept?: undefined;
|
|
9362
9214
|
context?: HttpContext;
|
|
9363
9215
|
transferCache?: boolean;
|
|
9364
9216
|
}): Observable<HttpEvent<any>>;
|
|
9365
9217
|
/**
|
|
9366
|
-
* Search
|
|
9218
|
+
* Search download layers.
|
|
9367
9219
|
* @param requestParameters
|
|
9368
9220
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9369
9221
|
* @param reportProgress flag to report request and response progress.
|
|
9370
9222
|
*/
|
|
9371
|
-
|
|
9223
|
+
downloadsSearchDownloadLayers(requestParameters?: DownloadsSearchDownloadLayersRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9372
9224
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9373
9225
|
context?: HttpContext;
|
|
9374
9226
|
transferCache?: boolean;
|
|
9375
|
-
}): Observable<Array<
|
|
9376
|
-
|
|
9227
|
+
}): Observable<Array<DownloadLayerHierarchyItemDto>>;
|
|
9228
|
+
downloadsSearchDownloadLayers(requestParameters?: DownloadsSearchDownloadLayersRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9377
9229
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9378
9230
|
context?: HttpContext;
|
|
9379
9231
|
transferCache?: boolean;
|
|
9380
|
-
}): Observable<HttpResponse<Array<
|
|
9381
|
-
|
|
9232
|
+
}): Observable<HttpResponse<Array<DownloadLayerHierarchyItemDto>>>;
|
|
9233
|
+
downloadsSearchDownloadLayers(requestParameters?: DownloadsSearchDownloadLayersRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9382
9234
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9383
9235
|
context?: HttpContext;
|
|
9384
9236
|
transferCache?: boolean;
|
|
9385
|
-
}): Observable<HttpEvent<Array<
|
|
9237
|
+
}): Observable<HttpEvent<Array<DownloadLayerHierarchyItemDto>>>;
|
|
9386
9238
|
/**
|
|
9387
|
-
* Update
|
|
9239
|
+
* Update download layer.
|
|
9388
9240
|
* @param requestParameters
|
|
9389
9241
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9390
9242
|
* @param reportProgress flag to report request and response progress.
|
|
9391
9243
|
*/
|
|
9392
|
-
|
|
9244
|
+
downloadsUpdateDownloadLayer(requestParameters: DownloadsUpdateDownloadLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9393
9245
|
httpHeaderAccept?: undefined;
|
|
9394
9246
|
context?: HttpContext;
|
|
9395
9247
|
transferCache?: boolean;
|
|
9396
9248
|
}): Observable<any>;
|
|
9397
|
-
|
|
9249
|
+
downloadsUpdateDownloadLayer(requestParameters: DownloadsUpdateDownloadLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9398
9250
|
httpHeaderAccept?: undefined;
|
|
9399
9251
|
context?: HttpContext;
|
|
9400
9252
|
transferCache?: boolean;
|
|
9401
9253
|
}): Observable<HttpResponse<any>>;
|
|
9402
|
-
|
|
9254
|
+
downloadsUpdateDownloadLayer(requestParameters: DownloadsUpdateDownloadLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9403
9255
|
httpHeaderAccept?: undefined;
|
|
9404
9256
|
context?: HttpContext;
|
|
9405
9257
|
transferCache?: boolean;
|
|
9406
9258
|
}): Observable<HttpEvent<any>>;
|
|
9407
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
9408
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
9259
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BombDownloadsApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
9260
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BombDownloadsApiService>;
|
|
9409
9261
|
}
|
|
9410
9262
|
|
|
9411
9263
|
/**
|
|
@@ -9663,17 +9515,17 @@ interface ModelParametersSearchMaterialLayersNestedRequestParams {
|
|
|
9663
9515
|
buildDate: string;
|
|
9664
9516
|
modelParameters?: Array<ModelParameterDto>;
|
|
9665
9517
|
}
|
|
9666
|
-
interface
|
|
9518
|
+
interface ModelParametersSearchModelDownloadLayersRequestParams {
|
|
9667
9519
|
modelNumber: string;
|
|
9668
9520
|
buildDate: string;
|
|
9669
9521
|
modelParameters?: Array<ModelParameterDto>;
|
|
9670
9522
|
}
|
|
9671
|
-
interface
|
|
9523
|
+
interface ModelParametersSearchModelValidationLayersRequestParams {
|
|
9672
9524
|
modelNumber: string;
|
|
9673
9525
|
buildDate: string;
|
|
9674
9526
|
modelParameters?: Array<ModelParameterDto>;
|
|
9675
9527
|
}
|
|
9676
|
-
interface
|
|
9528
|
+
interface ModelParametersSearchRoutingLayersAggregateRequestParams {
|
|
9677
9529
|
modelNumber: string;
|
|
9678
9530
|
buildDate: string;
|
|
9679
9531
|
modelParameters?: Array<ModelParameterDto>;
|
|
@@ -9717,23 +9569,23 @@ interface BombParametersApiServiceInterface {
|
|
|
9717
9569
|
*/
|
|
9718
9570
|
modelParametersSearchMaterialLayersNested(requestParameters: ModelParametersSearchMaterialLayersNestedRequestParams, extraHttpRequestParams?: any): Observable<Array<ModelMaterialLayerHierarchyItemDto>>;
|
|
9719
9571
|
/**
|
|
9720
|
-
* Search
|
|
9572
|
+
* Search download layers based on model number and parameters.
|
|
9721
9573
|
*
|
|
9722
9574
|
* @param requestParameters
|
|
9723
9575
|
*/
|
|
9724
|
-
|
|
9576
|
+
modelParametersSearchModelDownloadLayers(requestParameters: ModelParametersSearchModelDownloadLayersRequestParams, extraHttpRequestParams?: any): Observable<Array<SearchModelDownloadDto>>;
|
|
9725
9577
|
/**
|
|
9726
|
-
* Search
|
|
9578
|
+
* Search validation layers based on model number and parameters.
|
|
9727
9579
|
*
|
|
9728
9580
|
* @param requestParameters
|
|
9729
9581
|
*/
|
|
9730
|
-
|
|
9582
|
+
modelParametersSearchModelValidationLayers(requestParameters: ModelParametersSearchModelValidationLayersRequestParams, extraHttpRequestParams?: any): Observable<Array<SearchModelValidationDto>>;
|
|
9731
9583
|
/**
|
|
9732
|
-
* Search
|
|
9584
|
+
* Search model routing layers in aggregate view.
|
|
9733
9585
|
*
|
|
9734
9586
|
* @param requestParameters
|
|
9735
9587
|
*/
|
|
9736
|
-
|
|
9588
|
+
modelParametersSearchRoutingLayersAggregate(requestParameters: ModelParametersSearchRoutingLayersAggregateRequestParams, extraHttpRequestParams?: any): Observable<Array<ModelRoutingLayerAggregateItemDto>>;
|
|
9737
9589
|
/**
|
|
9738
9590
|
* Search model routing layers in nested view.
|
|
9739
9591
|
*
|
|
@@ -9854,68 +9706,68 @@ declare class BombParametersApiService extends BaseService implements BombParame
|
|
|
9854
9706
|
transferCache?: boolean;
|
|
9855
9707
|
}): Observable<HttpEvent<Array<ModelMaterialLayerHierarchyItemDto>>>;
|
|
9856
9708
|
/**
|
|
9857
|
-
* Search
|
|
9709
|
+
* Search download layers based on model number and parameters.
|
|
9858
9710
|
* @param requestParameters
|
|
9859
9711
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9860
9712
|
* @param reportProgress flag to report request and response progress.
|
|
9861
9713
|
*/
|
|
9862
|
-
|
|
9714
|
+
modelParametersSearchModelDownloadLayers(requestParameters: ModelParametersSearchModelDownloadLayersRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9863
9715
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9864
9716
|
context?: HttpContext;
|
|
9865
9717
|
transferCache?: boolean;
|
|
9866
|
-
}): Observable<Array<
|
|
9867
|
-
|
|
9718
|
+
}): Observable<Array<SearchModelDownloadDto>>;
|
|
9719
|
+
modelParametersSearchModelDownloadLayers(requestParameters: ModelParametersSearchModelDownloadLayersRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9868
9720
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9869
9721
|
context?: HttpContext;
|
|
9870
9722
|
transferCache?: boolean;
|
|
9871
|
-
}): Observable<HttpResponse<Array<
|
|
9872
|
-
|
|
9723
|
+
}): Observable<HttpResponse<Array<SearchModelDownloadDto>>>;
|
|
9724
|
+
modelParametersSearchModelDownloadLayers(requestParameters: ModelParametersSearchModelDownloadLayersRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9873
9725
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9874
9726
|
context?: HttpContext;
|
|
9875
9727
|
transferCache?: boolean;
|
|
9876
|
-
}): Observable<HttpEvent<Array<
|
|
9728
|
+
}): Observable<HttpEvent<Array<SearchModelDownloadDto>>>;
|
|
9877
9729
|
/**
|
|
9878
|
-
* Search
|
|
9730
|
+
* Search validation layers based on model number and parameters.
|
|
9879
9731
|
* @param requestParameters
|
|
9880
9732
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9881
9733
|
* @param reportProgress flag to report request and response progress.
|
|
9882
9734
|
*/
|
|
9883
|
-
|
|
9735
|
+
modelParametersSearchModelValidationLayers(requestParameters: ModelParametersSearchModelValidationLayersRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9884
9736
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9885
9737
|
context?: HttpContext;
|
|
9886
9738
|
transferCache?: boolean;
|
|
9887
|
-
}): Observable<Array<
|
|
9888
|
-
|
|
9739
|
+
}): Observable<Array<SearchModelValidationDto>>;
|
|
9740
|
+
modelParametersSearchModelValidationLayers(requestParameters: ModelParametersSearchModelValidationLayersRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9889
9741
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9890
9742
|
context?: HttpContext;
|
|
9891
9743
|
transferCache?: boolean;
|
|
9892
|
-
}): Observable<HttpResponse<Array<
|
|
9893
|
-
|
|
9744
|
+
}): Observable<HttpResponse<Array<SearchModelValidationDto>>>;
|
|
9745
|
+
modelParametersSearchModelValidationLayers(requestParameters: ModelParametersSearchModelValidationLayersRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9894
9746
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9895
9747
|
context?: HttpContext;
|
|
9896
9748
|
transferCache?: boolean;
|
|
9897
|
-
}): Observable<HttpEvent<Array<
|
|
9749
|
+
}): Observable<HttpEvent<Array<SearchModelValidationDto>>>;
|
|
9898
9750
|
/**
|
|
9899
|
-
* Search
|
|
9751
|
+
* Search model routing layers in aggregate view.
|
|
9900
9752
|
* @param requestParameters
|
|
9901
9753
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
9902
9754
|
* @param reportProgress flag to report request and response progress.
|
|
9903
9755
|
*/
|
|
9904
|
-
|
|
9756
|
+
modelParametersSearchRoutingLayersAggregate(requestParameters: ModelParametersSearchRoutingLayersAggregateRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
9905
9757
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9906
9758
|
context?: HttpContext;
|
|
9907
9759
|
transferCache?: boolean;
|
|
9908
|
-
}): Observable<Array<
|
|
9909
|
-
|
|
9760
|
+
}): Observable<Array<ModelRoutingLayerAggregateItemDto>>;
|
|
9761
|
+
modelParametersSearchRoutingLayersAggregate(requestParameters: ModelParametersSearchRoutingLayersAggregateRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
9910
9762
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9911
9763
|
context?: HttpContext;
|
|
9912
9764
|
transferCache?: boolean;
|
|
9913
|
-
}): Observable<HttpResponse<Array<
|
|
9914
|
-
|
|
9765
|
+
}): Observable<HttpResponse<Array<ModelRoutingLayerAggregateItemDto>>>;
|
|
9766
|
+
modelParametersSearchRoutingLayersAggregate(requestParameters: ModelParametersSearchRoutingLayersAggregateRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
9915
9767
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
9916
9768
|
context?: HttpContext;
|
|
9917
9769
|
transferCache?: boolean;
|
|
9918
|
-
}): Observable<HttpEvent<Array<
|
|
9770
|
+
}): Observable<HttpEvent<Array<ModelRoutingLayerAggregateItemDto>>>;
|
|
9919
9771
|
/**
|
|
9920
9772
|
* Search model routing layers in nested view.
|
|
9921
9773
|
* @param requestParameters
|
|
@@ -10208,7 +10060,7 @@ declare class BombRoutingsApiService extends BaseService implements BombRoutings
|
|
|
10208
10060
|
*/
|
|
10209
10061
|
|
|
10210
10062
|
interface SchematicsCreateSchematicLayerRequestParams {
|
|
10211
|
-
|
|
10063
|
+
createDownloadLayerCommand?: CreateDownloadLayerCommand;
|
|
10212
10064
|
}
|
|
10213
10065
|
interface SchematicsDuplicateSchematicLayerRequestParams {
|
|
10214
10066
|
schematicLayerId: number;
|
|
@@ -10225,74 +10077,92 @@ interface SchematicsGetSchematicLayerRequestParams {
|
|
|
10225
10077
|
}
|
|
10226
10078
|
interface SchematicsMoveSchematicLayerRequestParams {
|
|
10227
10079
|
schematicLayerId: number;
|
|
10228
|
-
|
|
10080
|
+
downloadLayerIdMoveLayerDto?: DownloadLayerIdMoveLayerDto;
|
|
10229
10081
|
}
|
|
10230
10082
|
interface SchematicsRemoveSchematicLayerRequestParams {
|
|
10231
10083
|
schematicLayerId: number;
|
|
10232
10084
|
}
|
|
10233
10085
|
interface SchematicsSearchSchematicLayersRequestParams {
|
|
10234
|
-
|
|
10086
|
+
parentDownloadLayerId?: number | null;
|
|
10235
10087
|
}
|
|
10236
10088
|
interface SchematicsUpdateSchematicLayerRequestParams {
|
|
10237
10089
|
schematicLayerId: number;
|
|
10238
|
-
|
|
10090
|
+
saveDownloadLayerDto?: SaveDownloadLayerDto;
|
|
10239
10091
|
}
|
|
10240
10092
|
interface BombSchematicsApiServiceInterface {
|
|
10241
10093
|
defaultHeaders: HttpHeaders;
|
|
10242
10094
|
configuration: Configuration;
|
|
10243
10095
|
/**
|
|
10244
|
-
|
|
10245
|
-
|
|
10246
|
-
|
|
10247
|
-
|
|
10096
|
+
* Create schematic layer.
|
|
10097
|
+
*
|
|
10098
|
+
* @param requestParameters
|
|
10099
|
+
|
|
10100
|
+
* @deprecated
|
|
10101
|
+
*/
|
|
10248
10102
|
schematicsCreateSchematicLayer(requestParameters: SchematicsCreateSchematicLayerRequestParams, extraHttpRequestParams?: any): Observable<number>;
|
|
10249
10103
|
/**
|
|
10250
|
-
|
|
10251
|
-
|
|
10252
|
-
|
|
10253
|
-
|
|
10254
|
-
|
|
10255
|
-
|
|
10256
|
-
|
|
10257
|
-
|
|
10258
|
-
|
|
10259
|
-
|
|
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
|
+
*/
|
|
10260
10118
|
schematicsGetSchematicFileDownloadUrl(requestParameters: SchematicsGetSchematicFileDownloadUrlRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
10261
10119
|
/**
|
|
10262
|
-
|
|
10263
|
-
|
|
10264
|
-
|
|
10265
|
-
|
|
10120
|
+
* Generate preview image for schematic layer file.
|
|
10121
|
+
*
|
|
10122
|
+
* @param requestParameters
|
|
10123
|
+
|
|
10124
|
+
* @deprecated
|
|
10125
|
+
*/
|
|
10266
10126
|
schematicsGetSchematicFilePreviewUrl(requestParameters: SchematicsGetSchematicFilePreviewUrlRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
10267
10127
|
/**
|
|
10268
|
-
|
|
10269
|
-
|
|
10270
|
-
|
|
10271
|
-
|
|
10272
|
-
|
|
10273
|
-
|
|
10274
|
-
|
|
10275
|
-
|
|
10276
|
-
|
|
10277
|
-
|
|
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
|
+
*/
|
|
10278
10142
|
schematicsMoveSchematicLayer(requestParameters: SchematicsMoveSchematicLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
10279
10143
|
/**
|
|
10280
|
-
|
|
10281
|
-
|
|
10282
|
-
|
|
10283
|
-
|
|
10144
|
+
* Remove schematic layer by id.
|
|
10145
|
+
*
|
|
10146
|
+
* @param requestParameters
|
|
10147
|
+
|
|
10148
|
+
* @deprecated
|
|
10149
|
+
*/
|
|
10284
10150
|
schematicsRemoveSchematicLayer(requestParameters: SchematicsRemoveSchematicLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
10285
10151
|
/**
|
|
10286
|
-
|
|
10287
|
-
|
|
10288
|
-
|
|
10289
|
-
|
|
10290
|
-
|
|
10291
|
-
|
|
10292
|
-
|
|
10293
|
-
|
|
10294
|
-
|
|
10295
|
-
|
|
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
|
+
*/
|
|
10296
10166
|
schematicsUpdateSchematicLayer(requestParameters: SchematicsUpdateSchematicLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
10297
10167
|
}
|
|
10298
10168
|
|
|
@@ -10304,6 +10174,7 @@ declare class BombSchematicsApiService extends BaseService implements BombSchema
|
|
|
10304
10174
|
* @param requestParameters
|
|
10305
10175
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10306
10176
|
* @param reportProgress flag to report request and response progress.
|
|
10177
|
+
* @deprecated
|
|
10307
10178
|
*/
|
|
10308
10179
|
schematicsCreateSchematicLayer(requestParameters?: SchematicsCreateSchematicLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10309
10180
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
@@ -10325,27 +10196,29 @@ declare class BombSchematicsApiService extends BaseService implements BombSchema
|
|
|
10325
10196
|
* @param requestParameters
|
|
10326
10197
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10327
10198
|
* @param reportProgress flag to report request and response progress.
|
|
10199
|
+
* @deprecated
|
|
10328
10200
|
*/
|
|
10329
10201
|
schematicsDuplicateSchematicLayer(requestParameters: SchematicsDuplicateSchematicLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10330
10202
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10331
10203
|
context?: HttpContext;
|
|
10332
10204
|
transferCache?: boolean;
|
|
10333
|
-
}): Observable<
|
|
10205
|
+
}): Observable<DownloadLayerHierarchyItemDto>;
|
|
10334
10206
|
schematicsDuplicateSchematicLayer(requestParameters: SchematicsDuplicateSchematicLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
10335
10207
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10336
10208
|
context?: HttpContext;
|
|
10337
10209
|
transferCache?: boolean;
|
|
10338
|
-
}): Observable<HttpResponse<
|
|
10210
|
+
}): Observable<HttpResponse<DownloadLayerHierarchyItemDto>>;
|
|
10339
10211
|
schematicsDuplicateSchematicLayer(requestParameters: SchematicsDuplicateSchematicLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
10340
10212
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10341
10213
|
context?: HttpContext;
|
|
10342
10214
|
transferCache?: boolean;
|
|
10343
|
-
}): Observable<HttpEvent<
|
|
10215
|
+
}): Observable<HttpEvent<DownloadLayerHierarchyItemDto>>;
|
|
10344
10216
|
/**
|
|
10345
10217
|
* Generate cloud URL for schematic layer file downloading.
|
|
10346
10218
|
* @param requestParameters
|
|
10347
10219
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10348
10220
|
* @param reportProgress flag to report request and response progress.
|
|
10221
|
+
* @deprecated
|
|
10349
10222
|
*/
|
|
10350
10223
|
schematicsGetSchematicFileDownloadUrl(requestParameters: SchematicsGetSchematicFileDownloadUrlRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10351
10224
|
httpHeaderAccept?: undefined;
|
|
@@ -10367,6 +10240,7 @@ declare class BombSchematicsApiService extends BaseService implements BombSchema
|
|
|
10367
10240
|
* @param requestParameters
|
|
10368
10241
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10369
10242
|
* @param reportProgress flag to report request and response progress.
|
|
10243
|
+
* @deprecated
|
|
10370
10244
|
*/
|
|
10371
10245
|
schematicsGetSchematicFilePreviewUrl(requestParameters: SchematicsGetSchematicFilePreviewUrlRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10372
10246
|
httpHeaderAccept?: undefined;
|
|
@@ -10388,27 +10262,29 @@ declare class BombSchematicsApiService extends BaseService implements BombSchema
|
|
|
10388
10262
|
* @param requestParameters
|
|
10389
10263
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10390
10264
|
* @param reportProgress flag to report request and response progress.
|
|
10265
|
+
* @deprecated
|
|
10391
10266
|
*/
|
|
10392
10267
|
schematicsGetSchematicLayer(requestParameters: SchematicsGetSchematicLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10393
10268
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10394
10269
|
context?: HttpContext;
|
|
10395
10270
|
transferCache?: boolean;
|
|
10396
|
-
}): Observable<
|
|
10271
|
+
}): Observable<DownloadLayerDto>;
|
|
10397
10272
|
schematicsGetSchematicLayer(requestParameters: SchematicsGetSchematicLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
10398
10273
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10399
10274
|
context?: HttpContext;
|
|
10400
10275
|
transferCache?: boolean;
|
|
10401
|
-
}): Observable<HttpResponse<
|
|
10276
|
+
}): Observable<HttpResponse<DownloadLayerDto>>;
|
|
10402
10277
|
schematicsGetSchematicLayer(requestParameters: SchematicsGetSchematicLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
10403
10278
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10404
10279
|
context?: HttpContext;
|
|
10405
10280
|
transferCache?: boolean;
|
|
10406
|
-
}): Observable<HttpEvent<
|
|
10281
|
+
}): Observable<HttpEvent<DownloadLayerDto>>;
|
|
10407
10282
|
/**
|
|
10408
10283
|
* Move schematic layer.
|
|
10409
10284
|
* @param requestParameters
|
|
10410
10285
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10411
10286
|
* @param reportProgress flag to report request and response progress.
|
|
10287
|
+
* @deprecated
|
|
10412
10288
|
*/
|
|
10413
10289
|
schematicsMoveSchematicLayer(requestParameters: SchematicsMoveSchematicLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10414
10290
|
httpHeaderAccept?: undefined;
|
|
@@ -10430,6 +10306,7 @@ declare class BombSchematicsApiService extends BaseService implements BombSchema
|
|
|
10430
10306
|
* @param requestParameters
|
|
10431
10307
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10432
10308
|
* @param reportProgress flag to report request and response progress.
|
|
10309
|
+
* @deprecated
|
|
10433
10310
|
*/
|
|
10434
10311
|
schematicsRemoveSchematicLayer(requestParameters: SchematicsRemoveSchematicLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10435
10312
|
httpHeaderAccept?: undefined;
|
|
@@ -10451,27 +10328,29 @@ declare class BombSchematicsApiService extends BaseService implements BombSchema
|
|
|
10451
10328
|
* @param requestParameters
|
|
10452
10329
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10453
10330
|
* @param reportProgress flag to report request and response progress.
|
|
10331
|
+
* @deprecated
|
|
10454
10332
|
*/
|
|
10455
10333
|
schematicsSearchSchematicLayers(requestParameters?: SchematicsSearchSchematicLayersRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10456
10334
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10457
10335
|
context?: HttpContext;
|
|
10458
10336
|
transferCache?: boolean;
|
|
10459
|
-
}): Observable<Array<
|
|
10337
|
+
}): Observable<Array<DownloadLayerHierarchyItemDto>>;
|
|
10460
10338
|
schematicsSearchSchematicLayers(requestParameters?: SchematicsSearchSchematicLayersRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
10461
10339
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10462
10340
|
context?: HttpContext;
|
|
10463
10341
|
transferCache?: boolean;
|
|
10464
|
-
}): Observable<HttpResponse<Array<
|
|
10342
|
+
}): Observable<HttpResponse<Array<DownloadLayerHierarchyItemDto>>>;
|
|
10465
10343
|
schematicsSearchSchematicLayers(requestParameters?: SchematicsSearchSchematicLayersRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
10466
10344
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10467
10345
|
context?: HttpContext;
|
|
10468
10346
|
transferCache?: boolean;
|
|
10469
|
-
}): Observable<HttpEvent<Array<
|
|
10347
|
+
}): Observable<HttpEvent<Array<DownloadLayerHierarchyItemDto>>>;
|
|
10470
10348
|
/**
|
|
10471
10349
|
* Update schematic layer.
|
|
10472
10350
|
* @param requestParameters
|
|
10473
10351
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10474
10352
|
* @param reportProgress flag to report request and response progress.
|
|
10353
|
+
* @deprecated
|
|
10475
10354
|
*/
|
|
10476
10355
|
schematicsUpdateSchematicLayer(requestParameters: SchematicsUpdateSchematicLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10477
10356
|
httpHeaderAccept?: undefined;
|
|
@@ -10516,7 +10395,7 @@ interface ValidationsMoveMaterialLayerRequestParams {
|
|
|
10516
10395
|
validationLayerId: number;
|
|
10517
10396
|
validationLayerIdMoveLayerDto?: ValidationLayerIdMoveLayerDto;
|
|
10518
10397
|
}
|
|
10519
|
-
interface
|
|
10398
|
+
interface ValidationsRemoveValidationLayerRequestParams {
|
|
10520
10399
|
validationLayerId: number;
|
|
10521
10400
|
}
|
|
10522
10401
|
interface ValidationsSearchValidationLayersRequestParams {
|
|
@@ -10558,7 +10437,7 @@ interface BombValidationsApiServiceInterface {
|
|
|
10558
10437
|
*
|
|
10559
10438
|
* @param requestParameters
|
|
10560
10439
|
*/
|
|
10561
|
-
|
|
10440
|
+
validationsRemoveValidationLayer(requestParameters: ValidationsRemoveValidationLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
10562
10441
|
/**
|
|
10563
10442
|
* Search validation layers.
|
|
10564
10443
|
*
|
|
@@ -10666,17 +10545,17 @@ declare class BombValidationsApiService extends BaseService implements BombValid
|
|
|
10666
10545
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10667
10546
|
* @param reportProgress flag to report request and response progress.
|
|
10668
10547
|
*/
|
|
10669
|
-
|
|
10548
|
+
validationsRemoveValidationLayer(requestParameters: ValidationsRemoveValidationLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10670
10549
|
httpHeaderAccept?: undefined;
|
|
10671
10550
|
context?: HttpContext;
|
|
10672
10551
|
transferCache?: boolean;
|
|
10673
10552
|
}): Observable<any>;
|
|
10674
|
-
|
|
10553
|
+
validationsRemoveValidationLayer(requestParameters: ValidationsRemoveValidationLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
10675
10554
|
httpHeaderAccept?: undefined;
|
|
10676
10555
|
context?: HttpContext;
|
|
10677
10556
|
transferCache?: boolean;
|
|
10678
10557
|
}): Observable<HttpResponse<any>>;
|
|
10679
|
-
|
|
10558
|
+
validationsRemoveValidationLayer(requestParameters: ValidationsRemoveValidationLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
10680
10559
|
httpHeaderAccept?: undefined;
|
|
10681
10560
|
context?: HttpContext;
|
|
10682
10561
|
transferCache?: boolean;
|
|
@@ -10911,6 +10790,58 @@ declare class ControllerProgramsApiService extends BaseService implements Contro
|
|
|
10911
10790
|
static ɵprov: i0.ɵɵInjectableDeclaration<ControllerProgramsApiService>;
|
|
10912
10791
|
}
|
|
10913
10792
|
|
|
10793
|
+
/**
|
|
10794
|
+
* RenewAire CORES API
|
|
10795
|
+
*
|
|
10796
|
+
* Contact: renewaire@saritasa.com
|
|
10797
|
+
*
|
|
10798
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10799
|
+
* https://openapi-generator.tech
|
|
10800
|
+
* Do not edit the class manually.
|
|
10801
|
+
*/
|
|
10802
|
+
|
|
10803
|
+
interface CsiCreateCsiItemRequestParams {
|
|
10804
|
+
searchBombDto?: SearchBombDto;
|
|
10805
|
+
}
|
|
10806
|
+
interface CsiApiServiceInterface {
|
|
10807
|
+
defaultHeaders: HttpHeaders;
|
|
10808
|
+
configuration: Configuration;
|
|
10809
|
+
/**
|
|
10810
|
+
* Create CSI item.
|
|
10811
|
+
*
|
|
10812
|
+
* @param requestParameters
|
|
10813
|
+
*/
|
|
10814
|
+
csiCreateCsiItem(requestParameters: CsiCreateCsiItemRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
10815
|
+
}
|
|
10816
|
+
|
|
10817
|
+
declare class CsiApiService extends BaseService implements CsiApiServiceInterface {
|
|
10818
|
+
protected httpClient: HttpClient;
|
|
10819
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
10820
|
+
/**
|
|
10821
|
+
* Create CSI item.
|
|
10822
|
+
* @param requestParameters
|
|
10823
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10824
|
+
* @param reportProgress flag to report request and response progress.
|
|
10825
|
+
*/
|
|
10826
|
+
csiCreateCsiItem(requestParameters?: CsiCreateCsiItemRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10827
|
+
httpHeaderAccept?: undefined;
|
|
10828
|
+
context?: HttpContext;
|
|
10829
|
+
transferCache?: boolean;
|
|
10830
|
+
}): Observable<any>;
|
|
10831
|
+
csiCreateCsiItem(requestParameters?: CsiCreateCsiItemRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
10832
|
+
httpHeaderAccept?: undefined;
|
|
10833
|
+
context?: HttpContext;
|
|
10834
|
+
transferCache?: boolean;
|
|
10835
|
+
}): Observable<HttpResponse<any>>;
|
|
10836
|
+
csiCreateCsiItem(requestParameters?: CsiCreateCsiItemRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
10837
|
+
httpHeaderAccept?: undefined;
|
|
10838
|
+
context?: HttpContext;
|
|
10839
|
+
transferCache?: boolean;
|
|
10840
|
+
}): Observable<HttpEvent<any>>;
|
|
10841
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CsiApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
10842
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CsiApiService>;
|
|
10843
|
+
}
|
|
10844
|
+
|
|
10914
10845
|
/**
|
|
10915
10846
|
* RenewAire CORES API
|
|
10916
10847
|
*
|
|
@@ -16377,7 +16308,7 @@ declare class UsersManagementApiService extends BaseService implements UsersMana
|
|
|
16377
16308
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersManagementApiService>;
|
|
16378
16309
|
}
|
|
16379
16310
|
|
|
16380
|
-
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)[];
|
|
16381
16312
|
|
|
16382
16313
|
declare const BASE_PATH: InjectionToken<string>;
|
|
16383
16314
|
declare const COLLECTION_FORMATS: {
|
|
@@ -16397,5 +16328,5 @@ declare class ApiModule {
|
|
|
16397
16328
|
|
|
16398
16329
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
16399
16330
|
|
|
16400
|
-
export { APIS, AddressCountry, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH,
|
|
16401
|
-
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, 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, ModelParametersSearchRoutingLayersNestedRequestParams, ModelParametersValidateModelNumberRequestParams, 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, 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 };
|