@saritasa/renewaire-frontend-sdk 0.123.0 → 0.125.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
|
@@ -2392,6 +2392,49 @@ interface ProjectEditModeDto {
|
|
|
2392
2392
|
editUser?: IdNameDto | null;
|
|
2393
2393
|
}
|
|
2394
2394
|
|
|
2395
|
+
/**
|
|
2396
|
+
* RenewAire CORES API
|
|
2397
|
+
*
|
|
2398
|
+
* Contact: renewaire@saritasa.com
|
|
2399
|
+
*
|
|
2400
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2401
|
+
* https://openapi-generator.tech
|
|
2402
|
+
* Do not edit the class manually.
|
|
2403
|
+
*/
|
|
2404
|
+
/**
|
|
2405
|
+
* DTO to return Id of entity.
|
|
2406
|
+
*/
|
|
2407
|
+
interface ProjectLinkIdIdDto {
|
|
2408
|
+
/**
|
|
2409
|
+
* Identifier for RenewAire.Cores.Domain.Projects.ProjectLink.
|
|
2410
|
+
*/
|
|
2411
|
+
id: number;
|
|
2412
|
+
}
|
|
2413
|
+
|
|
2414
|
+
/**
|
|
2415
|
+
* RenewAire CORES API
|
|
2416
|
+
*
|
|
2417
|
+
* Contact: renewaire@saritasa.com
|
|
2418
|
+
*
|
|
2419
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2420
|
+
* https://openapi-generator.tech
|
|
2421
|
+
* Do not edit the class manually.
|
|
2422
|
+
*/
|
|
2423
|
+
|
|
2424
|
+
/**
|
|
2425
|
+
* Project note attachment DTO.
|
|
2426
|
+
*/
|
|
2427
|
+
interface ProjectNoteAttachmentDto {
|
|
2428
|
+
/**
|
|
2429
|
+
* Identifier for RenewAire.Cores.Domain.Projects.ProjectNoteAttachment.
|
|
2430
|
+
*/
|
|
2431
|
+
id: number;
|
|
2432
|
+
/**
|
|
2433
|
+
* DTO for RenewAire.Cores.Domain.File.
|
|
2434
|
+
*/
|
|
2435
|
+
file: FileDto;
|
|
2436
|
+
}
|
|
2437
|
+
|
|
2395
2438
|
/**
|
|
2396
2439
|
* RenewAire CORES API
|
|
2397
2440
|
*
|
|
@@ -2421,10 +2464,10 @@ interface ProjectNoteIdIdDto {
|
|
|
2421
2464
|
* Do not edit the class manually.
|
|
2422
2465
|
*/
|
|
2423
2466
|
/**
|
|
2424
|
-
* Note type.<br />ProjectNoteType<br />0 =
|
|
2467
|
+
* Note type.<br />ProjectNoteType<br />0 = Project<br />1 = QualifiedSpecification<br />2 = Internal<br />3 = SalesChannel
|
|
2425
2468
|
*/
|
|
2426
2469
|
declare enum ProjectNoteType {
|
|
2427
|
-
|
|
2470
|
+
Project = "Project",
|
|
2428
2471
|
QualifiedSpecification = "QualifiedSpecification",
|
|
2429
2472
|
Internal = "Internal",
|
|
2430
2473
|
SalesChannel = "SalesChannel"
|
|
@@ -3242,6 +3285,30 @@ interface SavePermissionBundleDto {
|
|
|
3242
3285
|
permissions: Array<Permission>;
|
|
3243
3286
|
}
|
|
3244
3287
|
|
|
3288
|
+
/**
|
|
3289
|
+
* RenewAire CORES API
|
|
3290
|
+
*
|
|
3291
|
+
* Contact: renewaire@saritasa.com
|
|
3292
|
+
*
|
|
3293
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3294
|
+
* https://openapi-generator.tech
|
|
3295
|
+
* Do not edit the class manually.
|
|
3296
|
+
*/
|
|
3297
|
+
/**
|
|
3298
|
+
* Save project link DTO.
|
|
3299
|
+
*/
|
|
3300
|
+
interface SaveProjectLinkDto {
|
|
3301
|
+
/**
|
|
3302
|
+
* Identifier for RenewAire.Cores.Domain.Projects.Project.
|
|
3303
|
+
*/
|
|
3304
|
+
projectId: number;
|
|
3305
|
+
/**
|
|
3306
|
+
* Identifier for RenewAire.Cores.Domain.Projects.Project.
|
|
3307
|
+
*/
|
|
3308
|
+
linkedProjectId: number;
|
|
3309
|
+
notes?: string | null;
|
|
3310
|
+
}
|
|
3311
|
+
|
|
3245
3312
|
/**
|
|
3246
3313
|
* RenewAire CORES API
|
|
3247
3314
|
*
|
|
@@ -3261,7 +3328,7 @@ interface SaveProjectNoteDto {
|
|
|
3261
3328
|
*/
|
|
3262
3329
|
text: string;
|
|
3263
3330
|
/**
|
|
3264
|
-
* Note type.<br />ProjectNoteType<br />0 =
|
|
3331
|
+
* Note type.<br />ProjectNoteType<br />0 = Project<br />1 = QualifiedSpecification<br />2 = Internal<br />3 = SalesChannel
|
|
3265
3332
|
*/
|
|
3266
3333
|
type: ProjectNoteType;
|
|
3267
3334
|
/**
|
|
@@ -3796,6 +3863,61 @@ interface SearchProjectDtoPagedListMetadataDto {
|
|
|
3796
3863
|
items: Array<SearchProjectDto>;
|
|
3797
3864
|
}
|
|
3798
3865
|
|
|
3866
|
+
/**
|
|
3867
|
+
* RenewAire CORES API
|
|
3868
|
+
*
|
|
3869
|
+
* Contact: renewaire@saritasa.com
|
|
3870
|
+
*
|
|
3871
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3872
|
+
* https://openapi-generator.tech
|
|
3873
|
+
* Do not edit the class manually.
|
|
3874
|
+
*/
|
|
3875
|
+
|
|
3876
|
+
/**
|
|
3877
|
+
* DTO for searching RenewAire.Cores.Domain.Projects.ProjectNote.
|
|
3878
|
+
*/
|
|
3879
|
+
interface SearchProjectNoteDto {
|
|
3880
|
+
/**
|
|
3881
|
+
* Identifier for RenewAire.Cores.Domain.Projects.ProjectNote.
|
|
3882
|
+
*/
|
|
3883
|
+
id: number;
|
|
3884
|
+
/**
|
|
3885
|
+
* Identifier for RenewAire.Cores.Domain.Projects.ProjectRevision.
|
|
3886
|
+
*/
|
|
3887
|
+
projectRevisionId: number;
|
|
3888
|
+
/**
|
|
3889
|
+
* Note content.
|
|
3890
|
+
*/
|
|
3891
|
+
text: string;
|
|
3892
|
+
/**
|
|
3893
|
+
* Note type.<br />ProjectNoteType<br />0 = Project<br />1 = QualifiedSpecification<br />2 = Internal<br />3 = SalesChannel
|
|
3894
|
+
*/
|
|
3895
|
+
type: ProjectNoteType;
|
|
3896
|
+
/**
|
|
3897
|
+
* Creation data/time.
|
|
3898
|
+
*/
|
|
3899
|
+
createdAt: string;
|
|
3900
|
+
/**
|
|
3901
|
+
* List of the related attachments.
|
|
3902
|
+
*/
|
|
3903
|
+
attachments: Array<ProjectNoteAttachmentDto>;
|
|
3904
|
+
}
|
|
3905
|
+
|
|
3906
|
+
/**
|
|
3907
|
+
* RenewAire CORES API
|
|
3908
|
+
*
|
|
3909
|
+
* Contact: renewaire@saritasa.com
|
|
3910
|
+
*
|
|
3911
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3912
|
+
* https://openapi-generator.tech
|
|
3913
|
+
* Do not edit the class manually.
|
|
3914
|
+
*/
|
|
3915
|
+
|
|
3916
|
+
interface SearchProjectNoteDtoPagedListMetadataDto {
|
|
3917
|
+
metadata: PagedListMetadata;
|
|
3918
|
+
items: Array<SearchProjectNoteDto>;
|
|
3919
|
+
}
|
|
3920
|
+
|
|
3799
3921
|
/**
|
|
3800
3922
|
* RenewAire CORES API
|
|
3801
3923
|
*
|
|
@@ -6216,6 +6338,119 @@ declare class PermissionsApiService extends BaseService implements PermissionsAp
|
|
|
6216
6338
|
static ɵprov: i0.ɵɵInjectableDeclaration<PermissionsApiService>;
|
|
6217
6339
|
}
|
|
6218
6340
|
|
|
6341
|
+
/**
|
|
6342
|
+
* RenewAire CORES API
|
|
6343
|
+
*
|
|
6344
|
+
* Contact: renewaire@saritasa.com
|
|
6345
|
+
*
|
|
6346
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6347
|
+
* https://openapi-generator.tech
|
|
6348
|
+
* Do not edit the class manually.
|
|
6349
|
+
*/
|
|
6350
|
+
|
|
6351
|
+
interface ProjectLinksCreateProjectLinkRequestParams {
|
|
6352
|
+
saveProjectLinkDto?: SaveProjectLinkDto;
|
|
6353
|
+
}
|
|
6354
|
+
interface ProjectLinksRemoveProjectLinkRequestParams {
|
|
6355
|
+
projectLinkId: number;
|
|
6356
|
+
}
|
|
6357
|
+
interface ProjectLinksUpdateProjectLinkRequestParams {
|
|
6358
|
+
projectLinkId: number;
|
|
6359
|
+
saveProjectLinkDto?: SaveProjectLinkDto;
|
|
6360
|
+
}
|
|
6361
|
+
interface ProjectLinksApiServiceInterface {
|
|
6362
|
+
defaultHeaders: HttpHeaders;
|
|
6363
|
+
configuration: Configuration;
|
|
6364
|
+
/**
|
|
6365
|
+
* Create project link.
|
|
6366
|
+
*
|
|
6367
|
+
* @param requestParameters
|
|
6368
|
+
*/
|
|
6369
|
+
projectLinksCreateProjectLink(requestParameters: ProjectLinksCreateProjectLinkRequestParams, extraHttpRequestParams?: any): Observable<ProjectLinkIdIdDto>;
|
|
6370
|
+
/**
|
|
6371
|
+
* Remove project link.
|
|
6372
|
+
*
|
|
6373
|
+
* @param requestParameters
|
|
6374
|
+
*/
|
|
6375
|
+
projectLinksRemoveProjectLink(requestParameters: ProjectLinksRemoveProjectLinkRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
6376
|
+
/**
|
|
6377
|
+
* Update project link.
|
|
6378
|
+
*
|
|
6379
|
+
* @param requestParameters
|
|
6380
|
+
*/
|
|
6381
|
+
projectLinksUpdateProjectLink(requestParameters: ProjectLinksUpdateProjectLinkRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
6382
|
+
}
|
|
6383
|
+
|
|
6384
|
+
declare class ProjectLinksApiService extends BaseService implements ProjectLinksApiServiceInterface {
|
|
6385
|
+
protected httpClient: HttpClient;
|
|
6386
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
6387
|
+
/**
|
|
6388
|
+
* Create project link.
|
|
6389
|
+
* @param requestParameters
|
|
6390
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6391
|
+
* @param reportProgress flag to report request and response progress.
|
|
6392
|
+
*/
|
|
6393
|
+
projectLinksCreateProjectLink(requestParameters?: ProjectLinksCreateProjectLinkRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
6394
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6395
|
+
context?: HttpContext;
|
|
6396
|
+
transferCache?: boolean;
|
|
6397
|
+
}): Observable<ProjectLinkIdIdDto>;
|
|
6398
|
+
projectLinksCreateProjectLink(requestParameters?: ProjectLinksCreateProjectLinkRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
6399
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6400
|
+
context?: HttpContext;
|
|
6401
|
+
transferCache?: boolean;
|
|
6402
|
+
}): Observable<HttpResponse<ProjectLinkIdIdDto>>;
|
|
6403
|
+
projectLinksCreateProjectLink(requestParameters?: ProjectLinksCreateProjectLinkRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
6404
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6405
|
+
context?: HttpContext;
|
|
6406
|
+
transferCache?: boolean;
|
|
6407
|
+
}): Observable<HttpEvent<ProjectLinkIdIdDto>>;
|
|
6408
|
+
/**
|
|
6409
|
+
* Remove project link.
|
|
6410
|
+
* @param requestParameters
|
|
6411
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6412
|
+
* @param reportProgress flag to report request and response progress.
|
|
6413
|
+
*/
|
|
6414
|
+
projectLinksRemoveProjectLink(requestParameters: ProjectLinksRemoveProjectLinkRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
6415
|
+
httpHeaderAccept?: undefined;
|
|
6416
|
+
context?: HttpContext;
|
|
6417
|
+
transferCache?: boolean;
|
|
6418
|
+
}): Observable<any>;
|
|
6419
|
+
projectLinksRemoveProjectLink(requestParameters: ProjectLinksRemoveProjectLinkRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
6420
|
+
httpHeaderAccept?: undefined;
|
|
6421
|
+
context?: HttpContext;
|
|
6422
|
+
transferCache?: boolean;
|
|
6423
|
+
}): Observable<HttpResponse<any>>;
|
|
6424
|
+
projectLinksRemoveProjectLink(requestParameters: ProjectLinksRemoveProjectLinkRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
6425
|
+
httpHeaderAccept?: undefined;
|
|
6426
|
+
context?: HttpContext;
|
|
6427
|
+
transferCache?: boolean;
|
|
6428
|
+
}): Observable<HttpEvent<any>>;
|
|
6429
|
+
/**
|
|
6430
|
+
* Update project link.
|
|
6431
|
+
* @param requestParameters
|
|
6432
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6433
|
+
* @param reportProgress flag to report request and response progress.
|
|
6434
|
+
*/
|
|
6435
|
+
projectLinksUpdateProjectLink(requestParameters: ProjectLinksUpdateProjectLinkRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
6436
|
+
httpHeaderAccept?: undefined;
|
|
6437
|
+
context?: HttpContext;
|
|
6438
|
+
transferCache?: boolean;
|
|
6439
|
+
}): Observable<any>;
|
|
6440
|
+
projectLinksUpdateProjectLink(requestParameters: ProjectLinksUpdateProjectLinkRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
6441
|
+
httpHeaderAccept?: undefined;
|
|
6442
|
+
context?: HttpContext;
|
|
6443
|
+
transferCache?: boolean;
|
|
6444
|
+
}): Observable<HttpResponse<any>>;
|
|
6445
|
+
projectLinksUpdateProjectLink(requestParameters: ProjectLinksUpdateProjectLinkRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
6446
|
+
httpHeaderAccept?: undefined;
|
|
6447
|
+
context?: HttpContext;
|
|
6448
|
+
transferCache?: boolean;
|
|
6449
|
+
}): Observable<HttpEvent<any>>;
|
|
6450
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProjectLinksApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
6451
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProjectLinksApiService>;
|
|
6452
|
+
}
|
|
6453
|
+
|
|
6219
6454
|
/**
|
|
6220
6455
|
* RenewAire CORES API
|
|
6221
6456
|
*
|
|
@@ -6230,9 +6465,26 @@ interface ProjectNotesCreateProjectNoteRequestParams {
|
|
|
6230
6465
|
projectRevisionId?: number;
|
|
6231
6466
|
saveProjectNoteDto?: SaveProjectNoteDto;
|
|
6232
6467
|
}
|
|
6468
|
+
interface ProjectNotesGetProjectNoteAttachmentDownloadUrlRequestParams {
|
|
6469
|
+
projectNoteId: number;
|
|
6470
|
+
attachmentId: number;
|
|
6471
|
+
}
|
|
6472
|
+
interface ProjectNotesGetProjectNoteAttachmentPreviewRequestParams {
|
|
6473
|
+
projectNoteId: number;
|
|
6474
|
+
attachmentId: number;
|
|
6475
|
+
}
|
|
6233
6476
|
interface ProjectNotesRemoveProjectNoteRequestParams {
|
|
6234
6477
|
projectNoteId: number;
|
|
6235
6478
|
}
|
|
6479
|
+
interface ProjectNotesSearchProjectsRequestParams {
|
|
6480
|
+
projectRevisionId?: number | null;
|
|
6481
|
+
text?: string;
|
|
6482
|
+
type?: ProjectNoteType | null;
|
|
6483
|
+
createdAt?: string;
|
|
6484
|
+
orderBy?: string;
|
|
6485
|
+
page?: number;
|
|
6486
|
+
pageSize?: number;
|
|
6487
|
+
}
|
|
6236
6488
|
interface ProjectNotesUpdateProjectNoteRequestParams {
|
|
6237
6489
|
projectNoteId: number;
|
|
6238
6490
|
updateProjectNoteDto?: UpdateProjectNoteDto;
|
|
@@ -6246,12 +6498,30 @@ interface ProjectNotesApiServiceInterface {
|
|
|
6246
6498
|
* @param requestParameters
|
|
6247
6499
|
*/
|
|
6248
6500
|
projectNotesCreateProjectNote(requestParameters: ProjectNotesCreateProjectNoteRequestParams, extraHttpRequestParams?: any): Observable<ProjectNoteIdIdDto>;
|
|
6501
|
+
/**
|
|
6502
|
+
* Generate cloud URL for project note attachment downloading.
|
|
6503
|
+
*
|
|
6504
|
+
* @param requestParameters
|
|
6505
|
+
*/
|
|
6506
|
+
projectNotesGetProjectNoteAttachmentDownloadUrl(requestParameters: ProjectNotesGetProjectNoteAttachmentDownloadUrlRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
6507
|
+
/**
|
|
6508
|
+
* Generate preview image for project note attachment.
|
|
6509
|
+
*
|
|
6510
|
+
* @param requestParameters
|
|
6511
|
+
*/
|
|
6512
|
+
projectNotesGetProjectNoteAttachmentPreview(requestParameters: ProjectNotesGetProjectNoteAttachmentPreviewRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
6249
6513
|
/**
|
|
6250
6514
|
* Remove project note.
|
|
6251
6515
|
*
|
|
6252
6516
|
* @param requestParameters
|
|
6253
6517
|
*/
|
|
6254
6518
|
projectNotesRemoveProjectNote(requestParameters: ProjectNotesRemoveProjectNoteRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
6519
|
+
/**
|
|
6520
|
+
* Search project notes.
|
|
6521
|
+
*
|
|
6522
|
+
* @param requestParameters
|
|
6523
|
+
*/
|
|
6524
|
+
projectNotesSearchProjects(requestParameters: ProjectNotesSearchProjectsRequestParams, extraHttpRequestParams?: any): Observable<SearchProjectNoteDtoPagedListMetadataDto>;
|
|
6255
6525
|
/**
|
|
6256
6526
|
* Update project note.
|
|
6257
6527
|
*
|
|
@@ -6284,6 +6554,48 @@ declare class ProjectNotesApiService extends BaseService implements ProjectNotes
|
|
|
6284
6554
|
context?: HttpContext;
|
|
6285
6555
|
transferCache?: boolean;
|
|
6286
6556
|
}): Observable<HttpEvent<ProjectNoteIdIdDto>>;
|
|
6557
|
+
/**
|
|
6558
|
+
* Generate cloud URL for project note attachment downloading.
|
|
6559
|
+
* @param requestParameters
|
|
6560
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6561
|
+
* @param reportProgress flag to report request and response progress.
|
|
6562
|
+
*/
|
|
6563
|
+
projectNotesGetProjectNoteAttachmentDownloadUrl(requestParameters: ProjectNotesGetProjectNoteAttachmentDownloadUrlRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
6564
|
+
httpHeaderAccept?: undefined;
|
|
6565
|
+
context?: HttpContext;
|
|
6566
|
+
transferCache?: boolean;
|
|
6567
|
+
}): Observable<any>;
|
|
6568
|
+
projectNotesGetProjectNoteAttachmentDownloadUrl(requestParameters: ProjectNotesGetProjectNoteAttachmentDownloadUrlRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
6569
|
+
httpHeaderAccept?: undefined;
|
|
6570
|
+
context?: HttpContext;
|
|
6571
|
+
transferCache?: boolean;
|
|
6572
|
+
}): Observable<HttpResponse<any>>;
|
|
6573
|
+
projectNotesGetProjectNoteAttachmentDownloadUrl(requestParameters: ProjectNotesGetProjectNoteAttachmentDownloadUrlRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
6574
|
+
httpHeaderAccept?: undefined;
|
|
6575
|
+
context?: HttpContext;
|
|
6576
|
+
transferCache?: boolean;
|
|
6577
|
+
}): Observable<HttpEvent<any>>;
|
|
6578
|
+
/**
|
|
6579
|
+
* Generate preview image for project note attachment.
|
|
6580
|
+
* @param requestParameters
|
|
6581
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6582
|
+
* @param reportProgress flag to report request and response progress.
|
|
6583
|
+
*/
|
|
6584
|
+
projectNotesGetProjectNoteAttachmentPreview(requestParameters: ProjectNotesGetProjectNoteAttachmentPreviewRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
6585
|
+
httpHeaderAccept?: undefined;
|
|
6586
|
+
context?: HttpContext;
|
|
6587
|
+
transferCache?: boolean;
|
|
6588
|
+
}): Observable<any>;
|
|
6589
|
+
projectNotesGetProjectNoteAttachmentPreview(requestParameters: ProjectNotesGetProjectNoteAttachmentPreviewRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
6590
|
+
httpHeaderAccept?: undefined;
|
|
6591
|
+
context?: HttpContext;
|
|
6592
|
+
transferCache?: boolean;
|
|
6593
|
+
}): Observable<HttpResponse<any>>;
|
|
6594
|
+
projectNotesGetProjectNoteAttachmentPreview(requestParameters: ProjectNotesGetProjectNoteAttachmentPreviewRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
6595
|
+
httpHeaderAccept?: undefined;
|
|
6596
|
+
context?: HttpContext;
|
|
6597
|
+
transferCache?: boolean;
|
|
6598
|
+
}): Observable<HttpEvent<any>>;
|
|
6287
6599
|
/**
|
|
6288
6600
|
* Remove project note.
|
|
6289
6601
|
* @param requestParameters
|
|
@@ -6305,6 +6617,27 @@ declare class ProjectNotesApiService extends BaseService implements ProjectNotes
|
|
|
6305
6617
|
context?: HttpContext;
|
|
6306
6618
|
transferCache?: boolean;
|
|
6307
6619
|
}): Observable<HttpEvent<any>>;
|
|
6620
|
+
/**
|
|
6621
|
+
* Search project notes.
|
|
6622
|
+
* @param requestParameters
|
|
6623
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6624
|
+
* @param reportProgress flag to report request and response progress.
|
|
6625
|
+
*/
|
|
6626
|
+
projectNotesSearchProjects(requestParameters?: ProjectNotesSearchProjectsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
6627
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6628
|
+
context?: HttpContext;
|
|
6629
|
+
transferCache?: boolean;
|
|
6630
|
+
}): Observable<SearchProjectNoteDtoPagedListMetadataDto>;
|
|
6631
|
+
projectNotesSearchProjects(requestParameters?: ProjectNotesSearchProjectsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
6632
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6633
|
+
context?: HttpContext;
|
|
6634
|
+
transferCache?: boolean;
|
|
6635
|
+
}): Observable<HttpResponse<SearchProjectNoteDtoPagedListMetadataDto>>;
|
|
6636
|
+
projectNotesSearchProjects(requestParameters?: ProjectNotesSearchProjectsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
6637
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6638
|
+
context?: HttpContext;
|
|
6639
|
+
transferCache?: boolean;
|
|
6640
|
+
}): Observable<HttpEvent<SearchProjectNoteDtoPagedListMetadataDto>>;
|
|
6308
6641
|
/**
|
|
6309
6642
|
* Update project note.
|
|
6310
6643
|
* @param requestParameters
|
|
@@ -9225,7 +9558,7 @@ declare class UsersManagementApiService extends BaseService implements UsersMana
|
|
|
9225
9558
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersManagementApiService>;
|
|
9226
9559
|
}
|
|
9227
9560
|
|
|
9228
|
-
declare const APIS: (typeof AuditLogsApiService | typeof AuthApiService | typeof ControllerProgramsApiService | typeof FeedbacksApiService | typeof GroupsApiService | typeof KnownContactsApiService | typeof LeadTimesApiService | typeof MaintenanceApiService | typeof PermissionBundlesApiService | typeof PermissionsApiService | typeof ProjectNotesApiService | 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)[];
|
|
9561
|
+
declare const APIS: (typeof AuditLogsApiService | typeof AuthApiService | typeof ControllerProgramsApiService | typeof FeedbacksApiService | typeof GroupsApiService | typeof KnownContactsApiService | typeof LeadTimesApiService | typeof MaintenanceApiService | typeof PermissionBundlesApiService | typeof PermissionsApiService | typeof ProjectLinksApiService | typeof ProjectNotesApiService | 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)[];
|
|
9229
9562
|
|
|
9230
9563
|
declare const BASE_PATH: InjectionToken<string>;
|
|
9231
9564
|
declare const COLLECTION_FORMATS: {
|
|
@@ -9245,5 +9578,5 @@ declare class ApiModule {
|
|
|
9245
9578
|
|
|
9246
9579
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
9247
9580
|
|
|
9248
|
-
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 };
|
|
9249
|
-
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 };
|
|
9581
|
+
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, ProjectLinksApiService, ProjectNoteType, ProjectNotesApiService, ProjectStatus, ProjectStatusesApiService, ProjectsApiService, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepSalesReportsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, S3ApiService, StaticFilesApiService, UnitSystem, UserStatus, UserTablesApiService, UsersApiService, UsersManagementApiService, provideApi };
|
|
9582
|
+
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, ProjectLinkIdIdDto, ProjectLinksApiServiceInterface, ProjectLinksCreateProjectLinkRequestParams, ProjectLinksRemoveProjectLinkRequestParams, ProjectLinksUpdateProjectLinkRequestParams, ProjectNoteAttachmentDto, ProjectNoteIdIdDto, ProjectNotesApiServiceInterface, ProjectNotesCreateProjectNoteRequestParams, ProjectNotesGetProjectNoteAttachmentDownloadUrlRequestParams, ProjectNotesGetProjectNoteAttachmentPreviewRequestParams, ProjectNotesRemoveProjectNoteRequestParams, ProjectNotesSearchProjectsRequestParams, 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, SaveProjectLinkDto, SaveProjectNoteDto, SaveRepTerritoryLocationDto, SaveRepTerritoryRepContactDto, SaveUserDesignConditionsDto, SaveUserProjectSettingsDto, SaveUserQuoteSettingsDto, SearchGroupDto, SearchGroupDtoPagedListMetadataDto, SearchKnownContactDto, SearchKnownContactDtoPagedListMetadataDto, SearchPermissionBundleDto, SearchPermissionBundleDtoPagedListMetadataDto, SearchProjectDto, SearchProjectDtoPagedListMetadataDto, SearchProjectNoteDto, SearchProjectNoteDtoPagedListMetadataDto, 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 };
|
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.125.0",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.125.0+e672dbfbad306ec5b82995393119d08efdae8c42)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|