@saritasa/renewaire-frontend-sdk 0.119.1 → 0.120.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
|
*/
|
|
@@ -2901,9 +2877,9 @@ interface RequestChangeEmailCommand {
|
|
|
2901
2877
|
*/
|
|
2902
2878
|
interface RequestOrderCommand {
|
|
2903
2879
|
/**
|
|
2904
|
-
* Related project identifier.
|
|
2880
|
+
* Related project revision identifier.
|
|
2905
2881
|
*/
|
|
2906
|
-
|
|
2882
|
+
projectRevisionId: number;
|
|
2907
2883
|
/**
|
|
2908
2884
|
* Additional notes.
|
|
2909
2885
|
*/
|
|
@@ -2924,9 +2900,9 @@ interface RequestOrderCommand {
|
|
|
2924
2900
|
*/
|
|
2925
2901
|
interface RequestQuoteCommand {
|
|
2926
2902
|
/**
|
|
2927
|
-
* Related project identifier.
|
|
2903
|
+
* Related project revision identifier.
|
|
2928
2904
|
*/
|
|
2929
|
-
|
|
2905
|
+
projectRevisionId: number;
|
|
2930
2906
|
/**
|
|
2931
2907
|
* Additional notes.
|
|
2932
2908
|
*/
|
|
@@ -3806,10 +3782,6 @@ interface SearchProjectDto {
|
|
|
3806
3782
|
* Identifier for RenewAire.Cores.Domain.Projects.Project.
|
|
3807
3783
|
*/
|
|
3808
3784
|
id: number;
|
|
3809
|
-
/**
|
|
3810
|
-
* Identifier for RenewAire.Cores.Domain.Projects.ProjectGroup.
|
|
3811
|
-
*/
|
|
3812
|
-
projectGroupId: number;
|
|
3813
3785
|
/**
|
|
3814
3786
|
* Project number.
|
|
3815
3787
|
*/
|
|
@@ -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.
|
|
@@ -9271,4 +9243,4 @@ declare class ApiModule {
|
|
|
9271
9243
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
9272
9244
|
|
|
9273
9245
|
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,
|
|
9246
|
+
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, RepTerritoriesGetAccessibleRepUsersRequestParams, RepTerritoriesGetRepTerritoryRequestParams, RepTerritoriesRemoveRepTerritoryRequestParams, RepTerritoriesSearchRepTerritoriesRequestParams, RepTerritoriesUpdateRepTerritoryRequestParams, RepTerritoryContactsDto, RepTerritoryDto, RepTerritoryLocationDto, RepTerritoryLocationsApiServiceInterface, RepTerritoryLocationsGetRepTerritoryLocationRequestParams, RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams, RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams, RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams, RepTerritoryRepContactDto, RepUserDto, RepUserDtoPagedListMetadataDto, 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, 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 };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saritasa/renewaire-frontend-sdk",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.
|
|
3
|
+
"version": "0.120.0",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.120.0+78d33af78becee9036a750b05e8415e36b37a2fb)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|