@saritasa/renewaire-frontend-sdk 0.119.1 → 0.121.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/index.d.ts
CHANGED
|
@@ -384,7 +384,7 @@ declare enum AshraeVersion {
|
|
|
384
384
|
* Do not edit the class manually.
|
|
385
385
|
*/
|
|
386
386
|
/**
|
|
387
|
-
* 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 =
|
|
387
|
+
* 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
|
|
388
388
|
*/
|
|
389
389
|
declare enum AuditEntity {
|
|
390
390
|
User = "User",
|
|
@@ -396,7 +396,7 @@ declare enum AuditEntity {
|
|
|
396
396
|
ControllerProgram = "ControllerProgram",
|
|
397
397
|
RepTerritoryRepContact = "RepTerritoryRepContact",
|
|
398
398
|
RepTerritoryLocation = "RepTerritoryLocation",
|
|
399
|
-
|
|
399
|
+
ProjectRevision = "ProjectRevision"
|
|
400
400
|
}
|
|
401
401
|
|
|
402
402
|
/**
|
|
@@ -413,9 +413,9 @@ declare enum AuditEntity {
|
|
|
413
413
|
*/
|
|
414
414
|
interface BaseStatusChangeCommand {
|
|
415
415
|
/**
|
|
416
|
-
* Related project identifier.
|
|
416
|
+
* Related project revision identifier.
|
|
417
417
|
*/
|
|
418
|
-
|
|
418
|
+
projectRevisionId: number;
|
|
419
419
|
/**
|
|
420
420
|
* Additional notes.
|
|
421
421
|
*/
|
|
@@ -515,9 +515,9 @@ declare enum BuildingType {
|
|
|
515
515
|
*/
|
|
516
516
|
interface CancelQuoteRequestCommand {
|
|
517
517
|
/**
|
|
518
|
-
* Related project identifier.
|
|
518
|
+
* Related project revision identifier.
|
|
519
519
|
*/
|
|
520
|
-
|
|
520
|
+
projectRevisionId: number;
|
|
521
521
|
/**
|
|
522
522
|
* Additional notes.
|
|
523
523
|
*/
|
|
@@ -2022,9 +2022,9 @@ interface PostPreSignedUrlDto {
|
|
|
2022
2022
|
*/
|
|
2023
2023
|
interface ProjectDesignConditionsDto {
|
|
2024
2024
|
/**
|
|
2025
|
-
* Identifier for RenewAire.Cores.Domain.Projects.
|
|
2025
|
+
* Identifier for RenewAire.Cores.Domain.Projects.ProjectRevision.
|
|
2026
2026
|
*/
|
|
2027
|
-
|
|
2027
|
+
projectRevisionId: number;
|
|
2028
2028
|
/**
|
|
2029
2029
|
* Weather station state.
|
|
2030
2030
|
*/
|
|
@@ -2075,6 +2075,46 @@ interface ProjectDesignConditionsDto {
|
|
|
2075
2075
|
ashraeVersion?: AshraeVersion | null;
|
|
2076
2076
|
}
|
|
2077
2077
|
|
|
2078
|
+
/**
|
|
2079
|
+
* RenewAire CORES API
|
|
2080
|
+
*
|
|
2081
|
+
* Contact: renewaire@saritasa.com
|
|
2082
|
+
*
|
|
2083
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2084
|
+
* https://openapi-generator.tech
|
|
2085
|
+
* Do not edit the class manually.
|
|
2086
|
+
*/
|
|
2087
|
+
|
|
2088
|
+
/**
|
|
2089
|
+
* DTO for RenewAire.Cores.Domain.Projects.ProjectRevision.
|
|
2090
|
+
*/
|
|
2091
|
+
interface ProjectRevisionDto {
|
|
2092
|
+
/**
|
|
2093
|
+
* Identifier for RenewAire.Cores.Domain.Projects.ProjectRevision.
|
|
2094
|
+
*/
|
|
2095
|
+
id: number;
|
|
2096
|
+
/**
|
|
2097
|
+
* Revision number.
|
|
2098
|
+
*/
|
|
2099
|
+
revisionNumber: number;
|
|
2100
|
+
/**
|
|
2101
|
+
* Revision tag.
|
|
2102
|
+
*/
|
|
2103
|
+
revisionTag: string;
|
|
2104
|
+
/**
|
|
2105
|
+
* Revision notes.
|
|
2106
|
+
*/
|
|
2107
|
+
revisionNotes: string;
|
|
2108
|
+
/**
|
|
2109
|
+
* Represents a data transfer object containing an identifier and a name. It is intended to be used in simple dropdown lists or in table views where we need to display a link to the object.
|
|
2110
|
+
*/
|
|
2111
|
+
createdByUser: IdNameDto;
|
|
2112
|
+
/**
|
|
2113
|
+
* Creation data/time.
|
|
2114
|
+
*/
|
|
2115
|
+
createdAt: string;
|
|
2116
|
+
}
|
|
2117
|
+
|
|
2078
2118
|
/**
|
|
2079
2119
|
* RenewAire CORES API
|
|
2080
2120
|
*
|
|
@@ -2171,9 +2211,9 @@ interface ProjectFacilityAddressDto {
|
|
|
2171
2211
|
*/
|
|
2172
2212
|
interface ProjectFacilityDto {
|
|
2173
2213
|
/**
|
|
2174
|
-
* Identifier for RenewAire.Cores.Domain.Projects.
|
|
2214
|
+
* Identifier for RenewAire.Cores.Domain.Projects.ProjectRevision.
|
|
2175
2215
|
*/
|
|
2176
|
-
|
|
2216
|
+
projectRevisionId: number;
|
|
2177
2217
|
/**
|
|
2178
2218
|
* Facility name.
|
|
2179
2219
|
*/
|
|
@@ -2211,11 +2251,11 @@ interface ProjectFacilityDto {
|
|
|
2211
2251
|
*/
|
|
2212
2252
|
|
|
2213
2253
|
/**
|
|
2214
|
-
* DTO
|
|
2254
|
+
* DTO that contains information about RenewAire.Cores.Domain.Projects.ProjectRevision and its RenewAire.Cores.Domain.Projects.Project.
|
|
2215
2255
|
*/
|
|
2216
|
-
interface
|
|
2256
|
+
interface ProjectDto {
|
|
2217
2257
|
/**
|
|
2218
|
-
* Identifier for RenewAire.Cores.Domain.Projects.
|
|
2258
|
+
* Identifier for RenewAire.Cores.Domain.Projects.ProjectRevision.
|
|
2219
2259
|
*/
|
|
2220
2260
|
id: number;
|
|
2221
2261
|
/**
|
|
@@ -2230,82 +2270,18 @@ interface ProjectRevisionDto {
|
|
|
2230
2270
|
* Revision notes.
|
|
2231
2271
|
*/
|
|
2232
2272
|
revisionNotes: string;
|
|
2233
|
-
/**
|
|
2234
|
-
* Represents a data transfer object containing an identifier and a name. It is intended to be used in simple dropdown lists or in table views where we need to display a link to the object.
|
|
2235
|
-
*/
|
|
2236
|
-
createdByUser: IdNameDto;
|
|
2237
|
-
/**
|
|
2238
|
-
* Creation data/time.
|
|
2239
|
-
*/
|
|
2240
|
-
createdAt: string;
|
|
2241
|
-
}
|
|
2242
|
-
|
|
2243
|
-
/**
|
|
2244
|
-
* RenewAire CORES API
|
|
2245
|
-
*
|
|
2246
|
-
* Contact: renewaire@saritasa.com
|
|
2247
|
-
*
|
|
2248
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2249
|
-
* https://openapi-generator.tech
|
|
2250
|
-
* Do not edit the class manually.
|
|
2251
|
-
*/
|
|
2252
|
-
|
|
2253
|
-
/**
|
|
2254
|
-
* DTO for RenewAire.Cores.Domain.Projects.ProjectGroup.
|
|
2255
|
-
*/
|
|
2256
|
-
interface ProjectGroupDto {
|
|
2257
|
-
/**
|
|
2258
|
-
* Identifier for RenewAire.Cores.Domain.Projects.ProjectGroup.
|
|
2259
|
-
*/
|
|
2260
|
-
id: number;
|
|
2261
2273
|
/**
|
|
2262
2274
|
* Project number.
|
|
2263
2275
|
*/
|
|
2264
2276
|
projectNumber: string;
|
|
2265
2277
|
/**
|
|
2266
|
-
* Identifier for RenewAire.Cores.Domain.Projects.
|
|
2278
|
+
* Identifier for RenewAire.Cores.Domain.Projects.ProjectRevision.
|
|
2267
2279
|
*/
|
|
2268
2280
|
mainRevisionId: number;
|
|
2269
2281
|
/**
|
|
2270
2282
|
* Project revisions.
|
|
2271
2283
|
*/
|
|
2272
2284
|
revisions: Array<ProjectRevisionDto>;
|
|
2273
|
-
}
|
|
2274
|
-
|
|
2275
|
-
/**
|
|
2276
|
-
* RenewAire CORES API
|
|
2277
|
-
*
|
|
2278
|
-
* Contact: renewaire@saritasa.com
|
|
2279
|
-
*
|
|
2280
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2281
|
-
* https://openapi-generator.tech
|
|
2282
|
-
* Do not edit the class manually.
|
|
2283
|
-
*/
|
|
2284
|
-
|
|
2285
|
-
/**
|
|
2286
|
-
* DTO for RenewAire.Cores.Domain.Projects.Project.
|
|
2287
|
-
*/
|
|
2288
|
-
interface ProjectDto {
|
|
2289
|
-
/**
|
|
2290
|
-
* Identifier for RenewAire.Cores.Domain.Projects.Project.
|
|
2291
|
-
*/
|
|
2292
|
-
id: number;
|
|
2293
|
-
/**
|
|
2294
|
-
* Revision number.
|
|
2295
|
-
*/
|
|
2296
|
-
revisionNumber: number;
|
|
2297
|
-
/**
|
|
2298
|
-
* Revision tag.
|
|
2299
|
-
*/
|
|
2300
|
-
revisionTag: string;
|
|
2301
|
-
/**
|
|
2302
|
-
* Revision notes.
|
|
2303
|
-
*/
|
|
2304
|
-
revisionNotes: string;
|
|
2305
|
-
/**
|
|
2306
|
-
* DTO for RenewAire.Cores.Domain.Projects.ProjectGroup.
|
|
2307
|
-
*/
|
|
2308
|
-
projectGroup: ProjectGroupDto;
|
|
2309
2285
|
/**
|
|
2310
2286
|
* Project name.
|
|
2311
2287
|
*/
|
|
@@ -2323,7 +2299,7 @@ interface ProjectDto {
|
|
|
2323
2299
|
*/
|
|
2324
2300
|
buildingCategory: BuildingCategory;
|
|
2325
2301
|
/**
|
|
2326
|
-
* Other building category if RenewAire.Cores.Domain.Projects.
|
|
2302
|
+
* Other building category if RenewAire.Cores.Domain.Projects.ProjectRevision.BuildingCategory is other.
|
|
2327
2303
|
*/
|
|
2328
2304
|
otherBuildingCategory: string;
|
|
2329
2305
|
/**
|
|
@@ -2331,7 +2307,7 @@ interface ProjectDto {
|
|
|
2331
2307
|
*/
|
|
2332
2308
|
buildingType: BuildingType;
|
|
2333
2309
|
/**
|
|
2334
|
-
* Other building type if RenewAire.Cores.Domain.Projects.
|
|
2310
|
+
* Other building type if RenewAire.Cores.Domain.Projects.ProjectRevision.BuildingType is Other.
|
|
2335
2311
|
*/
|
|
2336
2312
|
otherBuildingType: string;
|
|
2337
2313
|
/**
|
|
@@ -2339,7 +2315,7 @@ interface ProjectDto {
|
|
|
2339
2315
|
*/
|
|
2340
2316
|
isBasisOfDesign: boolean;
|
|
2341
2317
|
/**
|
|
2342
|
-
* Basis of design if RenewAire.Cores.Domain.Projects.
|
|
2318
|
+
* Basis of design if RenewAire.Cores.Domain.Projects.ProjectRevision.IsBasisOfDesign is False.
|
|
2343
2319
|
*/
|
|
2344
2320
|
otherBasisOfDesign: string;
|
|
2345
2321
|
/**
|
|
@@ -2395,11 +2371,11 @@ interface ProjectDto {
|
|
|
2395
2371
|
*/
|
|
2396
2372
|
|
|
2397
2373
|
/**
|
|
2398
|
-
* DTO for information about project RenewAire.Cores.Domain.Projects.
|
|
2374
|
+
* DTO for information about project RenewAire.Cores.Domain.Projects.ProjectRevision.EditEnd.
|
|
2399
2375
|
*/
|
|
2400
2376
|
interface ProjectEditModeDto {
|
|
2401
2377
|
/**
|
|
2402
|
-
* Identifier for RenewAire.Cores.Domain.Projects.
|
|
2378
|
+
* Identifier for RenewAire.Cores.Domain.Projects.ProjectRevision.
|
|
2403
2379
|
*/
|
|
2404
2380
|
id: number;
|
|
2405
2381
|
/**
|
|
@@ -2407,7 +2383,7 @@ interface ProjectEditModeDto {
|
|
|
2407
2383
|
*/
|
|
2408
2384
|
status: ProjectStatus;
|
|
2409
2385
|
/**
|
|
2410
|
-
* The end date of project editing for the RenewAire.Cores.Domain.Projects.
|
|
2386
|
+
* The end date of project editing for the RenewAire.Cores.Domain.Projects.ProjectRevision.EditUser.
|
|
2411
2387
|
*/
|
|
2412
2388
|
editEnd?: string | null;
|
|
2413
2389
|
/**
|
|
@@ -2428,9 +2404,9 @@ interface ProjectEditModeDto {
|
|
|
2428
2404
|
/**
|
|
2429
2405
|
* DTO to return Id of entity.
|
|
2430
2406
|
*/
|
|
2431
|
-
interface
|
|
2407
|
+
interface ProjectNoteIdIdDto {
|
|
2432
2408
|
/**
|
|
2433
|
-
* Identifier for RenewAire.Cores.Domain.Projects.
|
|
2409
|
+
* Identifier for RenewAire.Cores.Domain.Projects.ProjectNote.
|
|
2434
2410
|
*/
|
|
2435
2411
|
id: number;
|
|
2436
2412
|
}
|
|
@@ -2445,13 +2421,13 @@ interface ProjectIdIdDto {
|
|
|
2445
2421
|
* Do not edit the class manually.
|
|
2446
2422
|
*/
|
|
2447
2423
|
/**
|
|
2448
|
-
*
|
|
2424
|
+
* Note type.<br />ProjectNoteType<br />0 = Public<br />1 = QualifiedSpecification<br />2 = Internal<br />3 = SalesChannel
|
|
2449
2425
|
*/
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2426
|
+
declare enum ProjectNoteType {
|
|
2427
|
+
Public = "Public",
|
|
2428
|
+
QualifiedSpecification = "QualifiedSpecification",
|
|
2429
|
+
Internal = "Internal",
|
|
2430
|
+
SalesChannel = "SalesChannel"
|
|
2455
2431
|
}
|
|
2456
2432
|
|
|
2457
2433
|
/**
|
|
@@ -2464,13 +2440,13 @@ interface ProjectNoteIdIdDto {
|
|
|
2464
2440
|
* Do not edit the class manually.
|
|
2465
2441
|
*/
|
|
2466
2442
|
/**
|
|
2467
|
-
*
|
|
2443
|
+
* DTO to return Id of entity.
|
|
2468
2444
|
*/
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2445
|
+
interface ProjectRevisionIdIdDto {
|
|
2446
|
+
/**
|
|
2447
|
+
* Identifier for RenewAire.Cores.Domain.Projects.ProjectRevision.
|
|
2448
|
+
*/
|
|
2449
|
+
id: number;
|
|
2474
2450
|
}
|
|
2475
2451
|
|
|
2476
2452
|
/**
|
|
@@ -2505,9 +2481,9 @@ declare enum RegionLevel {
|
|
|
2505
2481
|
*/
|
|
2506
2482
|
interface RejectQuoteCommand {
|
|
2507
2483
|
/**
|
|
2508
|
-
* Related project identifier.
|
|
2484
|
+
* Related project revision identifier.
|
|
2509
2485
|
*/
|
|
2510
|
-
|
|
2486
|
+
projectRevisionId: number;
|
|
2511
2487
|
/**
|
|
2512
2488
|
* Additional notes.
|
|
2513
2489
|
*/
|
|
@@ -2821,53 +2797,6 @@ interface RepTerritoryRepContactDto {
|
|
|
2821
2797
|
address: AddressDto;
|
|
2822
2798
|
}
|
|
2823
2799
|
|
|
2824
|
-
/**
|
|
2825
|
-
* RenewAire CORES API
|
|
2826
|
-
*
|
|
2827
|
-
* Contact: renewaire@saritasa.com
|
|
2828
|
-
*
|
|
2829
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2830
|
-
* https://openapi-generator.tech
|
|
2831
|
-
* Do not edit the class manually.
|
|
2832
|
-
*/
|
|
2833
|
-
/**
|
|
2834
|
-
* Accessible REP user DTO.
|
|
2835
|
-
*/
|
|
2836
|
-
interface RepUserDto {
|
|
2837
|
-
id: number;
|
|
2838
|
-
/**
|
|
2839
|
-
* First name.
|
|
2840
|
-
*/
|
|
2841
|
-
firstName: string;
|
|
2842
|
-
/**
|
|
2843
|
-
* Last name.
|
|
2844
|
-
*/
|
|
2845
|
-
lastName: string;
|
|
2846
|
-
/**
|
|
2847
|
-
* Avatar URL path.
|
|
2848
|
-
*/
|
|
2849
|
-
avatarUrl: string;
|
|
2850
|
-
/**
|
|
2851
|
-
* Sales contacts. This is the default sales contact users assigned to new users.
|
|
2852
|
-
*/
|
|
2853
|
-
isDefaultSalesContact: boolean;
|
|
2854
|
-
}
|
|
2855
|
-
|
|
2856
|
-
/**
|
|
2857
|
-
* RenewAire CORES API
|
|
2858
|
-
*
|
|
2859
|
-
* Contact: renewaire@saritasa.com
|
|
2860
|
-
*
|
|
2861
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2862
|
-
* https://openapi-generator.tech
|
|
2863
|
-
* Do not edit the class manually.
|
|
2864
|
-
*/
|
|
2865
|
-
|
|
2866
|
-
interface RepUserDtoPagedListMetadataDto {
|
|
2867
|
-
metadata: PagedListMetadata;
|
|
2868
|
-
items: Array<RepUserDto>;
|
|
2869
|
-
}
|
|
2870
|
-
|
|
2871
2800
|
/**
|
|
2872
2801
|
* RenewAire CORES API
|
|
2873
2802
|
*
|
|
@@ -2901,9 +2830,9 @@ interface RequestChangeEmailCommand {
|
|
|
2901
2830
|
*/
|
|
2902
2831
|
interface RequestOrderCommand {
|
|
2903
2832
|
/**
|
|
2904
|
-
* Related project identifier.
|
|
2833
|
+
* Related project revision identifier.
|
|
2905
2834
|
*/
|
|
2906
|
-
|
|
2835
|
+
projectRevisionId: number;
|
|
2907
2836
|
/**
|
|
2908
2837
|
* Additional notes.
|
|
2909
2838
|
*/
|
|
@@ -2924,9 +2853,9 @@ interface RequestOrderCommand {
|
|
|
2924
2853
|
*/
|
|
2925
2854
|
interface RequestQuoteCommand {
|
|
2926
2855
|
/**
|
|
2927
|
-
* Related project identifier.
|
|
2856
|
+
* Related project revision identifier.
|
|
2928
2857
|
*/
|
|
2929
|
-
|
|
2858
|
+
projectRevisionId: number;
|
|
2930
2859
|
/**
|
|
2931
2860
|
* Additional notes.
|
|
2932
2861
|
*/
|
|
@@ -3806,10 +3735,6 @@ interface SearchProjectDto {
|
|
|
3806
3735
|
* Identifier for RenewAire.Cores.Domain.Projects.Project.
|
|
3807
3736
|
*/
|
|
3808
3737
|
id: number;
|
|
3809
|
-
/**
|
|
3810
|
-
* Identifier for RenewAire.Cores.Domain.Projects.ProjectGroup.
|
|
3811
|
-
*/
|
|
3812
|
-
projectGroupId: number;
|
|
3813
3738
|
/**
|
|
3814
3739
|
* Project number.
|
|
3815
3740
|
*/
|
|
@@ -4159,6 +4084,53 @@ interface SearchRepTerritoryRepContactDtoPagedListMetadataDto {
|
|
|
4159
4084
|
items: Array<SearchRepTerritoryRepContactDto>;
|
|
4160
4085
|
}
|
|
4161
4086
|
|
|
4087
|
+
/**
|
|
4088
|
+
* RenewAire CORES API
|
|
4089
|
+
*
|
|
4090
|
+
* Contact: renewaire@saritasa.com
|
|
4091
|
+
*
|
|
4092
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4093
|
+
* https://openapi-generator.tech
|
|
4094
|
+
* Do not edit the class manually.
|
|
4095
|
+
*/
|
|
4096
|
+
/**
|
|
4097
|
+
* Accessible REP user DTO.
|
|
4098
|
+
*/
|
|
4099
|
+
interface SearchRepUserDto {
|
|
4100
|
+
id: number;
|
|
4101
|
+
/**
|
|
4102
|
+
* First name.
|
|
4103
|
+
*/
|
|
4104
|
+
firstName: string;
|
|
4105
|
+
/**
|
|
4106
|
+
* Last name.
|
|
4107
|
+
*/
|
|
4108
|
+
lastName: string;
|
|
4109
|
+
/**
|
|
4110
|
+
* Avatar URL path.
|
|
4111
|
+
*/
|
|
4112
|
+
avatarUrl: string;
|
|
4113
|
+
/**
|
|
4114
|
+
* Sales contacts. This is the default sales contact users assigned to new users.
|
|
4115
|
+
*/
|
|
4116
|
+
isDefaultSalesContact: boolean;
|
|
4117
|
+
}
|
|
4118
|
+
|
|
4119
|
+
/**
|
|
4120
|
+
* RenewAire CORES API
|
|
4121
|
+
*
|
|
4122
|
+
* Contact: renewaire@saritasa.com
|
|
4123
|
+
*
|
|
4124
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4125
|
+
* https://openapi-generator.tech
|
|
4126
|
+
* Do not edit the class manually.
|
|
4127
|
+
*/
|
|
4128
|
+
|
|
4129
|
+
interface SearchRepUserDtoPagedListMetadataDto {
|
|
4130
|
+
metadata: PagedListMetadata;
|
|
4131
|
+
items: Array<SearchRepUserDto>;
|
|
4132
|
+
}
|
|
4133
|
+
|
|
4162
4134
|
/**
|
|
4163
4135
|
* RenewAire CORES API
|
|
4164
4136
|
*
|
|
@@ -4492,9 +4464,9 @@ interface StringPagedListMetadataDto {
|
|
|
4492
4464
|
*/
|
|
4493
4465
|
interface SubmitQuoteCommand {
|
|
4494
4466
|
/**
|
|
4495
|
-
* Related project identifier.
|
|
4467
|
+
* Related project revision identifier.
|
|
4496
4468
|
*/
|
|
4497
|
-
|
|
4469
|
+
projectRevisionId: number;
|
|
4498
4470
|
/**
|
|
4499
4471
|
* Additional notes.
|
|
4500
4472
|
*/
|
|
@@ -4515,9 +4487,9 @@ interface SubmitQuoteCommand {
|
|
|
4515
4487
|
*/
|
|
4516
4488
|
interface SubmitToRenewAireCommand {
|
|
4517
4489
|
/**
|
|
4518
|
-
* Related project identifier.
|
|
4490
|
+
* Related project revision identifier.
|
|
4519
4491
|
*/
|
|
4520
|
-
|
|
4492
|
+
projectRevisionId: number;
|
|
4521
4493
|
/**
|
|
4522
4494
|
* Additional notes.
|
|
4523
4495
|
*/
|
|
@@ -6254,7 +6226,7 @@ declare class PermissionsApiService extends BaseService implements PermissionsAp
|
|
|
6254
6226
|
*/
|
|
6255
6227
|
|
|
6256
6228
|
interface ProjectNotesCreateProjectNoteRequestParams {
|
|
6257
|
-
|
|
6229
|
+
projectRevisionId?: number;
|
|
6258
6230
|
saveProjectNoteDto?: SaveProjectNoteDto;
|
|
6259
6231
|
}
|
|
6260
6232
|
interface ProjectNotesRemoveProjectNoteRequestParams {
|
|
@@ -6368,27 +6340,27 @@ declare class ProjectNotesApiService extends BaseService implements ProjectNotes
|
|
|
6368
6340
|
*/
|
|
6369
6341
|
|
|
6370
6342
|
interface ProjectStatusesCancelQuoteRequestRequestParams {
|
|
6371
|
-
|
|
6343
|
+
projectRevisionId: number;
|
|
6372
6344
|
cancelQuoteRequestCommand?: CancelQuoteRequestCommand;
|
|
6373
6345
|
}
|
|
6374
6346
|
interface ProjectStatusesRequestOrderRequestParams {
|
|
6375
|
-
|
|
6347
|
+
projectRevisionId: number;
|
|
6376
6348
|
requestOrderCommand?: RequestOrderCommand;
|
|
6377
6349
|
}
|
|
6378
6350
|
interface ProjectStatusesRequestQuoteRequestParams {
|
|
6379
|
-
|
|
6351
|
+
projectRevisionId: number;
|
|
6380
6352
|
requestQuoteCommand?: RequestQuoteCommand;
|
|
6381
6353
|
}
|
|
6382
6354
|
interface ProjectStatusesRequestQuote0RequestParams {
|
|
6383
|
-
|
|
6355
|
+
projectRevisionId: number;
|
|
6384
6356
|
rejectQuoteCommand?: RejectQuoteCommand;
|
|
6385
6357
|
}
|
|
6386
6358
|
interface ProjectStatusesSubmitQuoteRequestParams {
|
|
6387
|
-
|
|
6359
|
+
projectRevisionId: number;
|
|
6388
6360
|
submitQuoteCommand?: SubmitQuoteCommand;
|
|
6389
6361
|
}
|
|
6390
6362
|
interface ProjectStatusesSubmitToRenewAireRequestParams {
|
|
6391
|
-
|
|
6363
|
+
projectRevisionId: number;
|
|
6392
6364
|
submitToRenewAireCommand?: SubmitToRenewAireCommand;
|
|
6393
6365
|
}
|
|
6394
6366
|
interface ProjectStatusesApiServiceInterface {
|
|
@@ -6579,13 +6551,13 @@ interface ProjectsCreateProjectRequestParams {
|
|
|
6579
6551
|
body?: object;
|
|
6580
6552
|
}
|
|
6581
6553
|
interface ProjectsExtendProjectEditModeRequestParams {
|
|
6582
|
-
|
|
6554
|
+
projectRevisionId: number;
|
|
6583
6555
|
}
|
|
6584
6556
|
interface ProjectsGetProjectRequestParams {
|
|
6585
|
-
|
|
6557
|
+
projectRevisionId: number;
|
|
6586
6558
|
}
|
|
6587
6559
|
interface ProjectsSearchProjectsRequestParams {
|
|
6588
|
-
fields: Array<"id" | "
|
|
6560
|
+
fields: Array<"id" | "projectNumber" | "name" | "status" | "constructionOrderType" | "buildingCategory" | "buildingType" | "clientName" | "createdAt" | "createdByUser" | "updatedAt" | "updatedByUser">;
|
|
6589
6561
|
orderBy?: string;
|
|
6590
6562
|
projectNumber?: string;
|
|
6591
6563
|
name?: string;
|
|
@@ -6600,13 +6572,13 @@ interface ProjectsSearchProjectsRequestParams {
|
|
|
6600
6572
|
pageSize?: number;
|
|
6601
6573
|
}
|
|
6602
6574
|
interface ProjectsStartEditProjectRequestParams {
|
|
6603
|
-
|
|
6575
|
+
projectRevisionId: number;
|
|
6604
6576
|
}
|
|
6605
6577
|
interface ProjectsStopEditProjectRequestParams {
|
|
6606
|
-
|
|
6578
|
+
projectRevisionId: number;
|
|
6607
6579
|
}
|
|
6608
6580
|
interface ProjectsUpdateProjectRequestParams {
|
|
6609
|
-
|
|
6581
|
+
projectRevisionId: number;
|
|
6610
6582
|
isEndEditMode?: boolean;
|
|
6611
6583
|
updateProjectDto?: Array<UpdateProjectDto>;
|
|
6612
6584
|
}
|
|
@@ -6618,7 +6590,7 @@ interface ProjectsApiServiceInterface {
|
|
|
6618
6590
|
*
|
|
6619
6591
|
* @param requestParameters
|
|
6620
6592
|
*/
|
|
6621
|
-
projectsCreateProject(requestParameters: ProjectsCreateProjectRequestParams, extraHttpRequestParams?: any): Observable<
|
|
6593
|
+
projectsCreateProject(requestParameters: ProjectsCreateProjectRequestParams, extraHttpRequestParams?: any): Observable<ProjectRevisionIdIdDto>;
|
|
6622
6594
|
/**
|
|
6623
6595
|
* Send heartbeat to extend project edit session.
|
|
6624
6596
|
*
|
|
@@ -6626,7 +6598,7 @@ interface ProjectsApiServiceInterface {
|
|
|
6626
6598
|
*/
|
|
6627
6599
|
projectsExtendProjectEditMode(requestParameters: ProjectsExtendProjectEditModeRequestParams, extraHttpRequestParams?: any): Observable<ProjectEditModeDto>;
|
|
6628
6600
|
/**
|
|
6629
|
-
* Get project by project id.
|
|
6601
|
+
* Get project by project revision id.
|
|
6630
6602
|
*
|
|
6631
6603
|
* @param requestParameters
|
|
6632
6604
|
*/
|
|
@@ -6670,17 +6642,17 @@ declare class ProjectsApiService extends BaseService implements ProjectsApiServi
|
|
|
6670
6642
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6671
6643
|
context?: HttpContext;
|
|
6672
6644
|
transferCache?: boolean;
|
|
6673
|
-
}): Observable<
|
|
6645
|
+
}): Observable<ProjectRevisionIdIdDto>;
|
|
6674
6646
|
projectsCreateProject(requestParameters?: ProjectsCreateProjectRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
6675
6647
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6676
6648
|
context?: HttpContext;
|
|
6677
6649
|
transferCache?: boolean;
|
|
6678
|
-
}): Observable<HttpResponse<
|
|
6650
|
+
}): Observable<HttpResponse<ProjectRevisionIdIdDto>>;
|
|
6679
6651
|
projectsCreateProject(requestParameters?: ProjectsCreateProjectRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
6680
6652
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6681
6653
|
context?: HttpContext;
|
|
6682
6654
|
transferCache?: boolean;
|
|
6683
|
-
}): Observable<HttpEvent<
|
|
6655
|
+
}): Observable<HttpEvent<ProjectRevisionIdIdDto>>;
|
|
6684
6656
|
/**
|
|
6685
6657
|
* Send heartbeat to extend project edit session.
|
|
6686
6658
|
* @param requestParameters
|
|
@@ -6703,7 +6675,7 @@ declare class ProjectsApiService extends BaseService implements ProjectsApiServi
|
|
|
6703
6675
|
transferCache?: boolean;
|
|
6704
6676
|
}): Observable<HttpEvent<ProjectEditModeDto>>;
|
|
6705
6677
|
/**
|
|
6706
|
-
* Get project by project id.
|
|
6678
|
+
* Get project by project revision id.
|
|
6707
6679
|
* @param requestParameters
|
|
6708
6680
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6709
6681
|
* @param reportProgress flag to report request and response progress.
|
|
@@ -7242,18 +7214,19 @@ interface RepTerritoriesCreateRepTerritoryRepContactRequestParams {
|
|
|
7242
7214
|
repTerritoryId: number;
|
|
7243
7215
|
saveRepTerritoryRepContactDto?: SaveRepTerritoryRepContactDto;
|
|
7244
7216
|
}
|
|
7245
|
-
interface RepTerritoriesGetAccessibleRepUsersRequestParams {
|
|
7246
|
-
repTerritoryId: number;
|
|
7247
|
-
orderBy?: string;
|
|
7248
|
-
page?: number;
|
|
7249
|
-
pageSize?: number;
|
|
7250
|
-
}
|
|
7251
7217
|
interface RepTerritoriesGetRepTerritoryRequestParams {
|
|
7252
7218
|
repTerritoryId: number;
|
|
7253
7219
|
}
|
|
7254
7220
|
interface RepTerritoriesRemoveRepTerritoryRequestParams {
|
|
7255
7221
|
repTerritoryId: number;
|
|
7256
7222
|
}
|
|
7223
|
+
interface RepTerritoriesSearchAccessibleRepUsersRequestParams {
|
|
7224
|
+
repTerritoryId: number;
|
|
7225
|
+
name?: string;
|
|
7226
|
+
orderBy?: string;
|
|
7227
|
+
page?: number;
|
|
7228
|
+
pageSize?: number;
|
|
7229
|
+
}
|
|
7257
7230
|
interface RepTerritoriesSearchRepTerritoriesRequestParams {
|
|
7258
7231
|
fields: Array<"id" | "name" | "externalDisplayName" | "code" | "isActive" | "rsdRegion" | "managerGroup" | "locations" | "groups" | "contacts" | "salesContacts" | "createdAt" | "phone" | "email" | "website" | "address">;
|
|
7259
7232
|
pageIndexById?: number | null;
|
|
@@ -7322,12 +7295,6 @@ interface RepTerritoriesApiServiceInterface {
|
|
|
7322
7295
|
* @param requestParameters
|
|
7323
7296
|
*/
|
|
7324
7297
|
repTerritoriesCreateRepTerritoryRepContact(requestParameters: RepTerritoriesCreateRepTerritoryRepContactRequestParams, extraHttpRequestParams?: any): Observable<number>;
|
|
7325
|
-
/**
|
|
7326
|
-
* Get accessible REP users.
|
|
7327
|
-
*
|
|
7328
|
-
* @param requestParameters
|
|
7329
|
-
*/
|
|
7330
|
-
repTerritoriesGetAccessibleRepUsers(requestParameters: RepTerritoriesGetAccessibleRepUsersRequestParams, extraHttpRequestParams?: any): Observable<RepUserDtoPagedListMetadataDto>;
|
|
7331
7298
|
/**
|
|
7332
7299
|
* Get REP territory.
|
|
7333
7300
|
*
|
|
@@ -7340,6 +7307,12 @@ interface RepTerritoriesApiServiceInterface {
|
|
|
7340
7307
|
* @param requestParameters
|
|
7341
7308
|
*/
|
|
7342
7309
|
repTerritoriesRemoveRepTerritory(requestParameters: RepTerritoriesRemoveRepTerritoryRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
7310
|
+
/**
|
|
7311
|
+
* Search accessible REP users.
|
|
7312
|
+
*
|
|
7313
|
+
* @param requestParameters
|
|
7314
|
+
*/
|
|
7315
|
+
repTerritoriesSearchAccessibleRepUsers(requestParameters: RepTerritoriesSearchAccessibleRepUsersRequestParams, extraHttpRequestParams?: any): Observable<SearchRepUserDtoPagedListMetadataDto>;
|
|
7343
7316
|
/**
|
|
7344
7317
|
* Search REP territories.
|
|
7345
7318
|
*
|
|
@@ -7420,27 +7393,6 @@ declare class RepTerritoriesApiService extends BaseService implements RepTerrito
|
|
|
7420
7393
|
context?: HttpContext;
|
|
7421
7394
|
transferCache?: boolean;
|
|
7422
7395
|
}): Observable<HttpEvent<number>>;
|
|
7423
|
-
/**
|
|
7424
|
-
* Get accessible REP users.
|
|
7425
|
-
* @param requestParameters
|
|
7426
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7427
|
-
* @param reportProgress flag to report request and response progress.
|
|
7428
|
-
*/
|
|
7429
|
-
repTerritoriesGetAccessibleRepUsers(requestParameters: RepTerritoriesGetAccessibleRepUsersRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
7430
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7431
|
-
context?: HttpContext;
|
|
7432
|
-
transferCache?: boolean;
|
|
7433
|
-
}): Observable<RepUserDtoPagedListMetadataDto>;
|
|
7434
|
-
repTerritoriesGetAccessibleRepUsers(requestParameters: RepTerritoriesGetAccessibleRepUsersRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
7435
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7436
|
-
context?: HttpContext;
|
|
7437
|
-
transferCache?: boolean;
|
|
7438
|
-
}): Observable<HttpResponse<RepUserDtoPagedListMetadataDto>>;
|
|
7439
|
-
repTerritoriesGetAccessibleRepUsers(requestParameters: RepTerritoriesGetAccessibleRepUsersRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7440
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7441
|
-
context?: HttpContext;
|
|
7442
|
-
transferCache?: boolean;
|
|
7443
|
-
}): Observable<HttpEvent<RepUserDtoPagedListMetadataDto>>;
|
|
7444
7396
|
/**
|
|
7445
7397
|
* Get REP territory.
|
|
7446
7398
|
* @param requestParameters
|
|
@@ -7483,6 +7435,27 @@ declare class RepTerritoriesApiService extends BaseService implements RepTerrito
|
|
|
7483
7435
|
context?: HttpContext;
|
|
7484
7436
|
transferCache?: boolean;
|
|
7485
7437
|
}): Observable<HttpEvent<any>>;
|
|
7438
|
+
/**
|
|
7439
|
+
* Search accessible REP users.
|
|
7440
|
+
* @param requestParameters
|
|
7441
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7442
|
+
* @param reportProgress flag to report request and response progress.
|
|
7443
|
+
*/
|
|
7444
|
+
repTerritoriesSearchAccessibleRepUsers(requestParameters: RepTerritoriesSearchAccessibleRepUsersRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
7445
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7446
|
+
context?: HttpContext;
|
|
7447
|
+
transferCache?: boolean;
|
|
7448
|
+
}): Observable<SearchRepUserDtoPagedListMetadataDto>;
|
|
7449
|
+
repTerritoriesSearchAccessibleRepUsers(requestParameters: RepTerritoriesSearchAccessibleRepUsersRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
7450
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7451
|
+
context?: HttpContext;
|
|
7452
|
+
transferCache?: boolean;
|
|
7453
|
+
}): Observable<HttpResponse<SearchRepUserDtoPagedListMetadataDto>>;
|
|
7454
|
+
repTerritoriesSearchAccessibleRepUsers(requestParameters: RepTerritoriesSearchAccessibleRepUsersRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7455
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7456
|
+
context?: HttpContext;
|
|
7457
|
+
transferCache?: boolean;
|
|
7458
|
+
}): Observable<HttpEvent<SearchRepUserDtoPagedListMetadataDto>>;
|
|
7486
7459
|
/**
|
|
7487
7460
|
* Search REP territories.
|
|
7488
7461
|
* @param requestParameters
|
|
@@ -9271,4 +9244,4 @@ declare class ApiModule {
|
|
|
9271
9244
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
9272
9245
|
|
|
9273
9246
|
export { APIS, AddressCountry, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH, BuildingCategory, BuildingType, COLLECTION_FORMATS, Configuration, ConstructionOrderType, ControllerProgramReleaseType, ControllerProgramType, ControllerProgramsApiService, CoolingDesignBasis, DesignWeatherMode, FeedbackType, FeedbacksApiService, FileType, GroupCustomerType, GroupType, GroupsApiService, KnownContactsApiService, Language, LeadTimeType, LeadTimesApiService, MaintenanceApiService, OperationType, Permission, PermissionBundlesApiService, PermissionsApiService, ProjectNoteType, ProjectNotesApiService, ProjectStatus, ProjectStatusesApiService, ProjectsApiService, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepSalesReportsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, S3ApiService, StaticFilesApiService, UnitSystem, UserStatus, UserTablesApiService, UsersApiService, UsersManagementApiService, provideApi };
|
|
9274
|
-
export type { AddressDto, AuditLogChange, AuditLogDto, AuditLogDtoPagedListMetadataDto, AuditLogsApiServiceInterface, AuditLogsSearchAuditLogsRequestParams, AuthApiServiceInterface, AuthAuthenticateByEmailTokenRequestParams, AuthAuthenticateRequestParams, AuthUpdateUserTokenPermissionsRequestParams, BaseStatusChangeCommand, CancelQuoteRequestCommand, ChangeCurrentUserPasswordCommand, ChangeEmailCommand, CompanyInformationDto, ConfigurationParameters, ConnectedGroupDto, ContactDto, ControllerProgramDto, ControllerProgramDtoPagedListMetadataDto, ControllerProgramsApiServiceInterface, ControllerProgramsCreateControllerProgramRequestParams, ControllerProgramsCreateFileDownloadUrlRequestParams, ControllerProgramsGetControllerProgramRequestParams, ControllerProgramsSearchControllerProgramsRequestParams, ControllerProgramsUpdateControllerProgramRequestParams, CreateLeadTimeGroupDto, CreateRepSalesReportCommand, CreateUploadUrlCommand, CurrentUserDetailsDto, CurrentUserDto, DataFormat, DataType, DesignWeatherConditionDto, DistanceDto, EmailConfirmationTokenDto, FeedbacksApiServiceInterface, FeedbacksCreateFeedbackRequestParams, FileDto, ForgotPasswordCommand, GroupDto, GroupsApiServiceInterface, GroupsCreateGroupRequestParams, GroupsGetGroupRequestParams, GroupsRemoveGroupRequestParams, GroupsSearchGroupsRequestParams, GroupsUpdateGroupRequestParams, IdNameDto, Int32IdDto, InviteDto, KnownContactsApiServiceInterface, KnownContactsCreateKnowContactRequestParams, KnownContactsRemoveKnownContactRequestParams, KnownContactsSearchKnownContactsRequestParams, KnownContactsUpdateKnownContactRequestParams, LeadTimeDto, LeadTimeGroupDto, LeadTimesApiServiceInterface, LeadTimesCreateLeadTimeGroupRequestParams, LeadTimesUpdateLeadTimeGroupRequestParams, LoginUserCommand, MaintenanceApiServiceInterface, MaintenanceSetMaintenanceModeRequestParams, OffsetLimitListMetadata, PagedListMetadata, Param, ParamLocation, ParamStyle, PermissionBundleDto, PermissionBundlesApiServiceInterface, PermissionBundlesCreatePermissionBundleRequestParams, PermissionBundlesGetPermissionBundleRequestParams, PermissionBundlesRemovePermissionBundleRequestParams, PermissionBundlesSearchPermissionBundlesRequestParams, PermissionBundlesUpdatePermissionBundleRequestParams, PermissionDto, PermissionsApiServiceInterface, PostPreSignedUrlDto, ProjectDesignConditionsDto, ProjectDto, ProjectEditModeDto, ProjectFacilityAddressDto, ProjectFacilityDto,
|
|
9247
|
+
export type { AddressDto, AuditLogChange, AuditLogDto, AuditLogDtoPagedListMetadataDto, AuditLogsApiServiceInterface, AuditLogsSearchAuditLogsRequestParams, AuthApiServiceInterface, AuthAuthenticateByEmailTokenRequestParams, AuthAuthenticateRequestParams, AuthUpdateUserTokenPermissionsRequestParams, BaseStatusChangeCommand, CancelQuoteRequestCommand, ChangeCurrentUserPasswordCommand, ChangeEmailCommand, CompanyInformationDto, ConfigurationParameters, ConnectedGroupDto, ContactDto, ControllerProgramDto, ControllerProgramDtoPagedListMetadataDto, ControllerProgramsApiServiceInterface, ControllerProgramsCreateControllerProgramRequestParams, ControllerProgramsCreateFileDownloadUrlRequestParams, ControllerProgramsGetControllerProgramRequestParams, ControllerProgramsSearchControllerProgramsRequestParams, ControllerProgramsUpdateControllerProgramRequestParams, CreateLeadTimeGroupDto, CreateRepSalesReportCommand, CreateUploadUrlCommand, CurrentUserDetailsDto, CurrentUserDto, DataFormat, DataType, DesignWeatherConditionDto, DistanceDto, EmailConfirmationTokenDto, FeedbacksApiServiceInterface, FeedbacksCreateFeedbackRequestParams, FileDto, ForgotPasswordCommand, GroupDto, GroupsApiServiceInterface, GroupsCreateGroupRequestParams, GroupsGetGroupRequestParams, GroupsRemoveGroupRequestParams, GroupsSearchGroupsRequestParams, GroupsUpdateGroupRequestParams, IdNameDto, Int32IdDto, InviteDto, KnownContactsApiServiceInterface, KnownContactsCreateKnowContactRequestParams, KnownContactsRemoveKnownContactRequestParams, KnownContactsSearchKnownContactsRequestParams, KnownContactsUpdateKnownContactRequestParams, LeadTimeDto, LeadTimeGroupDto, LeadTimesApiServiceInterface, LeadTimesCreateLeadTimeGroupRequestParams, LeadTimesUpdateLeadTimeGroupRequestParams, LoginUserCommand, MaintenanceApiServiceInterface, MaintenanceSetMaintenanceModeRequestParams, OffsetLimitListMetadata, PagedListMetadata, Param, ParamLocation, ParamStyle, PermissionBundleDto, PermissionBundlesApiServiceInterface, PermissionBundlesCreatePermissionBundleRequestParams, PermissionBundlesGetPermissionBundleRequestParams, PermissionBundlesRemovePermissionBundleRequestParams, PermissionBundlesSearchPermissionBundlesRequestParams, PermissionBundlesUpdatePermissionBundleRequestParams, PermissionDto, PermissionsApiServiceInterface, PostPreSignedUrlDto, ProjectDesignConditionsDto, ProjectDto, ProjectEditModeDto, ProjectFacilityAddressDto, ProjectFacilityDto, ProjectNoteIdIdDto, ProjectNotesApiServiceInterface, ProjectNotesCreateProjectNoteRequestParams, ProjectNotesRemoveProjectNoteRequestParams, ProjectNotesUpdateProjectNoteRequestParams, ProjectRevisionDto, ProjectRevisionIdIdDto, ProjectStatusesApiServiceInterface, ProjectStatusesCancelQuoteRequestRequestParams, ProjectStatusesRequestOrderRequestParams, ProjectStatusesRequestQuote0RequestParams, ProjectStatusesRequestQuoteRequestParams, ProjectStatusesSubmitQuoteRequestParams, ProjectStatusesSubmitToRenewAireRequestParams, ProjectsApiServiceInterface, ProjectsCreateProjectRequestParams, ProjectsExtendProjectEditModeRequestParams, ProjectsGetProjectRequestParams, ProjectsSearchProjectsRequestParams, ProjectsStartEditProjectRequestParams, ProjectsStopEditProjectRequestParams, ProjectsUpdateProjectRequestParams, 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, RsdRegionDocumentDto, RsdRegionDto, RsdRegionRepTerritoryDto, RsdRegionUserDto, RsdRegionsApiServiceInterface, RsdRegionsCreateRsdRegionRequestParams, RsdRegionsGetRsdRegionDocumentDownloadUrlRequestParams, RsdRegionsGetRsdRegionDocumentPreviewRequestParams, RsdRegionsGetRsdRegionRequestParams, RsdRegionsRemoveRsdRegionRequestParams, RsdRegionsSearchRsdRegionTagsRequestParams, RsdRegionsSearchRsdRegionsRequestParams, RsdRegionsUpdateRsdRegionRequestParams, S3ApiServiceInterface, S3CreateFileUploadUrlRequestParams, SalesContactDto, SaveControllerProgramDto, SaveGroupDto, SaveKnownContactDto, SaveLeadTimeDto, SavePermissionBundleDto, SaveProjectNoteDto, SaveRepTerritoryLocationDto, SaveRepTerritoryRepContactDto, SaveUserDesignConditionsDto, SaveUserProjectSettingsDto, SaveUserQuoteSettingsDto, SearchGroupDto, SearchGroupDtoPagedListMetadataDto, SearchKnownContactDto, SearchKnownContactDtoPagedListMetadataDto, SearchPermissionBundleDto, SearchPermissionBundleDtoPagedListMetadataDto, SearchProjectDto, SearchProjectDtoPagedListMetadataDto, SearchRegionDto, SearchRegionDtoPagedListMetadataDto, SearchRepTerritoryDto, SearchRepTerritoryDtoPagedListMetadataDto, SearchRepTerritoryLocationDto, SearchRepTerritoryLocationDtoPagedListMetadataDto, SearchRepTerritoryRepContactDto, SearchRepTerritoryRepContactDtoPagedListMetadataDto, SearchRepUserDto, SearchRepUserDtoPagedListMetadataDto, SearchRsdRegionDto, SearchRsdRegionDtoPagedListMetadataDto, SearchUserDetailsDto, SearchUserDetailsDtoPagedListMetadataDto, SearchUserDto, SearchUserDtoPagedListMetadataDto, SetAddressDto, SetPreferredLanguageCommand, SetUserOccupationCommand, SetUserPasswordCommand, StandardDataFormat, StandardDataType, StandardParamStyle, StaticFilesApiServiceInterface, StaticFilesGetRequestParams, StringPagedListMetadataDto, SubmitQuoteCommand, SubmitToRenewAireCommand, TableSettingDto, TableSettingsGetTableSettingRequestParams, TableSettingsSaveTableSettingRequestParams, TemperatureDto, TokenModel, TotalCountListMetadata, UpdateLeadTimeGroupDto, UpdateProjectDto, UpdateProjectDtoJsonPatchDocument, UpdateProjectDtoOperation, UpdateProjectNoteDto, UpdateRepTerritoryLocationDto, 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, VerifyResetPasswordTokenCommand };
|