@saritasa/renewaire-frontend-sdk 0.181.1 → 0.182.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/fesm2022/saritasa-renewaire-frontend-sdk.mjs +759 -663
- package/fesm2022/saritasa-renewaire-frontend-sdk.mjs.map +1 -1
- package/index.d.ts +600 -454
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -971,6 +971,22 @@ interface CreateRoutingLayerCommand {
|
|
|
971
971
|
parentRoutingLayerId?: number | null;
|
|
972
972
|
}
|
|
973
973
|
|
|
974
|
+
/**
|
|
975
|
+
* RenewAire CORES API
|
|
976
|
+
*
|
|
977
|
+
* Contact: renewaire@saritasa.com
|
|
978
|
+
*
|
|
979
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
980
|
+
* https://openapi-generator.tech
|
|
981
|
+
* Do not edit the class manually.
|
|
982
|
+
*/
|
|
983
|
+
/**
|
|
984
|
+
* Command to create schematic layer.
|
|
985
|
+
*/
|
|
986
|
+
interface CreateSchematicLayerCommand {
|
|
987
|
+
parentSchematicLayerId?: number | null;
|
|
988
|
+
}
|
|
989
|
+
|
|
974
990
|
/**
|
|
975
991
|
* RenewAire CORES API
|
|
976
992
|
*
|
|
@@ -4171,8 +4187,17 @@ interface SaveLeadTimesTableDto {
|
|
|
4171
4187
|
* DTO to save material multiplier rule.
|
|
4172
4188
|
*/
|
|
4173
4189
|
interface SaveMaterialMultiplierRuleDto {
|
|
4190
|
+
/**
|
|
4191
|
+
* Order.
|
|
4192
|
+
*/
|
|
4174
4193
|
order: number;
|
|
4194
|
+
/**
|
|
4195
|
+
* Multiplier.
|
|
4196
|
+
*/
|
|
4175
4197
|
multiplier: number;
|
|
4198
|
+
/**
|
|
4199
|
+
* Identifier.
|
|
4200
|
+
*/
|
|
4176
4201
|
id?: number | null;
|
|
4177
4202
|
}
|
|
4178
4203
|
|
|
@@ -4189,8 +4214,17 @@ interface SaveMaterialMultiplierRuleDto {
|
|
|
4189
4214
|
* DTO to save material quantity rule.
|
|
4190
4215
|
*/
|
|
4191
4216
|
interface SaveMaterialQuantityRuleDto {
|
|
4217
|
+
/**
|
|
4218
|
+
* Order.
|
|
4219
|
+
*/
|
|
4192
4220
|
order: number;
|
|
4221
|
+
/**
|
|
4222
|
+
* Quantity.
|
|
4223
|
+
*/
|
|
4193
4224
|
quantity: number;
|
|
4225
|
+
/**
|
|
4226
|
+
* Identifier.
|
|
4227
|
+
*/
|
|
4194
4228
|
id?: number | null;
|
|
4195
4229
|
}
|
|
4196
4230
|
|
|
@@ -4208,15 +4242,45 @@ interface SaveMaterialQuantityRuleDto {
|
|
|
4208
4242
|
* DTO to save material layer.
|
|
4209
4243
|
*/
|
|
4210
4244
|
interface SaveMaterialLayerDto {
|
|
4245
|
+
/**
|
|
4246
|
+
* Name.
|
|
4247
|
+
*/
|
|
4211
4248
|
name: string;
|
|
4249
|
+
/**
|
|
4250
|
+
* Description.
|
|
4251
|
+
*/
|
|
4212
4252
|
description: string;
|
|
4253
|
+
/**
|
|
4254
|
+
* Part number.
|
|
4255
|
+
*/
|
|
4213
4256
|
partNumber: string;
|
|
4257
|
+
/**
|
|
4258
|
+
* Effective start date note.
|
|
4259
|
+
*/
|
|
4214
4260
|
effectiveStartDateNote: string;
|
|
4261
|
+
/**
|
|
4262
|
+
* Effective end date note.
|
|
4263
|
+
*/
|
|
4215
4264
|
effectiveEndDateNote: string;
|
|
4265
|
+
/**
|
|
4266
|
+
* Specifies whether rules should be applied to nested layers.
|
|
4267
|
+
*/
|
|
4216
4268
|
applyMultiplierToNestedLayers: boolean;
|
|
4269
|
+
/**
|
|
4270
|
+
* Material quantity rules.
|
|
4271
|
+
*/
|
|
4217
4272
|
quantityRules: Array<SaveMaterialQuantityRuleDto>;
|
|
4273
|
+
/**
|
|
4274
|
+
* Material multiplier rules.
|
|
4275
|
+
*/
|
|
4218
4276
|
multiplierRules: Array<SaveMaterialMultiplierRuleDto>;
|
|
4277
|
+
/**
|
|
4278
|
+
* Effective start date.
|
|
4279
|
+
*/
|
|
4219
4280
|
effectiveStartDate?: string | null;
|
|
4281
|
+
/**
|
|
4282
|
+
* Effective end date.
|
|
4283
|
+
*/
|
|
4220
4284
|
effectiveEndDate?: string | null;
|
|
4221
4285
|
}
|
|
4222
4286
|
|
|
@@ -4404,8 +4468,17 @@ interface SaveRepTerritoryRepContactDto {
|
|
|
4404
4468
|
* DTO to save routing rule.
|
|
4405
4469
|
*/
|
|
4406
4470
|
interface SaveRoutingRuleDto {
|
|
4471
|
+
/**
|
|
4472
|
+
* Order.
|
|
4473
|
+
*/
|
|
4407
4474
|
order: number;
|
|
4475
|
+
/**
|
|
4476
|
+
* Routing value.
|
|
4477
|
+
*/
|
|
4408
4478
|
routing: number;
|
|
4479
|
+
/**
|
|
4480
|
+
* Identifier.
|
|
4481
|
+
*/
|
|
4409
4482
|
id?: number | null;
|
|
4410
4483
|
}
|
|
4411
4484
|
|
|
@@ -4423,12 +4496,33 @@ interface SaveRoutingRuleDto {
|
|
|
4423
4496
|
* DTO to save routing layer.
|
|
4424
4497
|
*/
|
|
4425
4498
|
interface SaveRoutingLayerDto {
|
|
4499
|
+
/**
|
|
4500
|
+
* Name.
|
|
4501
|
+
*/
|
|
4426
4502
|
name: string;
|
|
4503
|
+
/**
|
|
4504
|
+
* Description.
|
|
4505
|
+
*/
|
|
4427
4506
|
description: string;
|
|
4507
|
+
/**
|
|
4508
|
+
* Effective start date note.
|
|
4509
|
+
*/
|
|
4428
4510
|
effectiveStartDateNote: string;
|
|
4511
|
+
/**
|
|
4512
|
+
* Effective end date note.
|
|
4513
|
+
*/
|
|
4429
4514
|
effectiveEndDateNote: string;
|
|
4515
|
+
/**
|
|
4516
|
+
* Routing rules.
|
|
4517
|
+
*/
|
|
4430
4518
|
routingRules: Array<SaveRoutingRuleDto>;
|
|
4519
|
+
/**
|
|
4520
|
+
* Effective start date.
|
|
4521
|
+
*/
|
|
4431
4522
|
effectiveStartDate?: string | null;
|
|
4523
|
+
/**
|
|
4524
|
+
* Effective end date.
|
|
4525
|
+
*/
|
|
4432
4526
|
effectiveEndDate?: string | null;
|
|
4433
4527
|
}
|
|
4434
4528
|
|
|
@@ -6613,178 +6707,198 @@ declare class AuthApiService extends BaseService implements AuthApiServiceInterf
|
|
|
6613
6707
|
* Do not edit the class manually.
|
|
6614
6708
|
*/
|
|
6615
6709
|
|
|
6616
|
-
interface
|
|
6617
|
-
|
|
6618
|
-
saveControllerProgramDto?: SaveControllerProgramDto;
|
|
6710
|
+
interface MaterialsCreateMaterialLayerRequestParams {
|
|
6711
|
+
createMaterialLayerCommand?: CreateMaterialLayerCommand;
|
|
6619
6712
|
}
|
|
6620
|
-
interface
|
|
6621
|
-
|
|
6713
|
+
interface MaterialsDuplicateMaterialLayerRequestParams {
|
|
6714
|
+
materialLayerId: number;
|
|
6715
|
+
duplicateMaterialLayerDto?: DuplicateMaterialLayerDto;
|
|
6622
6716
|
}
|
|
6623
|
-
interface
|
|
6624
|
-
|
|
6717
|
+
interface MaterialsGetMaterialLayerRequestParams {
|
|
6718
|
+
materialLayerId: number;
|
|
6625
6719
|
}
|
|
6626
|
-
interface
|
|
6627
|
-
|
|
6628
|
-
versionNumber?: string;
|
|
6629
|
-
releaseType?: ControllerProgramReleaseType | null;
|
|
6630
|
-
createdAt?: string;
|
|
6631
|
-
createdBy?: string;
|
|
6632
|
-
notes?: string;
|
|
6633
|
-
fileName?: string;
|
|
6634
|
-
orderBy?: string;
|
|
6635
|
-
page?: number;
|
|
6636
|
-
pageSize?: number;
|
|
6720
|
+
interface MaterialsRemoveGroupRequestParams {
|
|
6721
|
+
materialLayerId: number;
|
|
6637
6722
|
}
|
|
6638
|
-
interface
|
|
6639
|
-
|
|
6640
|
-
isActive?: boolean;
|
|
6641
|
-
saveControllerProgramDto?: SaveControllerProgramDto;
|
|
6723
|
+
interface MaterialsSearchMaterialLayersRequestParams {
|
|
6724
|
+
parentMaterialLayerId?: number | null;
|
|
6642
6725
|
}
|
|
6643
|
-
interface
|
|
6726
|
+
interface MaterialsUpdateMaterialLayerRequestParams {
|
|
6727
|
+
materialLayerId: number;
|
|
6728
|
+
saveMaterialLayerDto?: SaveMaterialLayerDto;
|
|
6729
|
+
}
|
|
6730
|
+
interface BombMaterialsApiServiceInterface {
|
|
6644
6731
|
defaultHeaders: HttpHeaders;
|
|
6645
6732
|
configuration: Configuration;
|
|
6646
6733
|
/**
|
|
6647
|
-
* Create
|
|
6734
|
+
* Create material layer.
|
|
6648
6735
|
*
|
|
6649
6736
|
* @param requestParameters
|
|
6650
6737
|
*/
|
|
6651
|
-
|
|
6738
|
+
materialsCreateMaterialLayer(requestParameters: MaterialsCreateMaterialLayerRequestParams, extraHttpRequestParams?: any): Observable<number>;
|
|
6652
6739
|
/**
|
|
6653
|
-
*
|
|
6740
|
+
* Duplicate material layer.
|
|
6654
6741
|
*
|
|
6655
6742
|
* @param requestParameters
|
|
6656
6743
|
*/
|
|
6657
|
-
|
|
6744
|
+
materialsDuplicateMaterialLayer(requestParameters: MaterialsDuplicateMaterialLayerRequestParams, extraHttpRequestParams?: any): Observable<MaterialLayerHierarchyItemDto>;
|
|
6658
6745
|
/**
|
|
6659
|
-
* Get
|
|
6746
|
+
* Get material layer details by id.
|
|
6660
6747
|
*
|
|
6661
6748
|
* @param requestParameters
|
|
6662
6749
|
*/
|
|
6663
|
-
|
|
6750
|
+
materialsGetMaterialLayer(requestParameters: MaterialsGetMaterialLayerRequestParams, extraHttpRequestParams?: any): Observable<MaterialLayerDto>;
|
|
6664
6751
|
/**
|
|
6665
|
-
*
|
|
6752
|
+
* Remove material layer by id.
|
|
6666
6753
|
*
|
|
6667
6754
|
* @param requestParameters
|
|
6668
6755
|
*/
|
|
6669
|
-
|
|
6756
|
+
materialsRemoveGroup(requestParameters: MaterialsRemoveGroupRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
6670
6757
|
/**
|
|
6671
|
-
*
|
|
6758
|
+
* Search material layers.
|
|
6672
6759
|
*
|
|
6673
6760
|
* @param requestParameters
|
|
6674
6761
|
*/
|
|
6675
|
-
|
|
6762
|
+
materialsSearchMaterialLayers(requestParameters: MaterialsSearchMaterialLayersRequestParams, extraHttpRequestParams?: any): Observable<Array<MaterialLayerHierarchyItemDto>>;
|
|
6763
|
+
/**
|
|
6764
|
+
* Update material layer.
|
|
6765
|
+
*
|
|
6766
|
+
* @param requestParameters
|
|
6767
|
+
*/
|
|
6768
|
+
materialsUpdateMaterialLayer(requestParameters: MaterialsUpdateMaterialLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
6676
6769
|
}
|
|
6677
6770
|
|
|
6678
|
-
declare class
|
|
6771
|
+
declare class BombMaterialsApiService extends BaseService implements BombMaterialsApiServiceInterface {
|
|
6679
6772
|
protected httpClient: HttpClient;
|
|
6680
6773
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
6681
6774
|
/**
|
|
6682
|
-
* Create
|
|
6775
|
+
* Create material layer.
|
|
6683
6776
|
* @param requestParameters
|
|
6684
6777
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6685
6778
|
* @param reportProgress flag to report request and response progress.
|
|
6686
6779
|
*/
|
|
6687
|
-
|
|
6780
|
+
materialsCreateMaterialLayer(requestParameters?: MaterialsCreateMaterialLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
6688
6781
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6689
6782
|
context?: HttpContext;
|
|
6690
6783
|
transferCache?: boolean;
|
|
6691
6784
|
}): Observable<number>;
|
|
6692
|
-
|
|
6785
|
+
materialsCreateMaterialLayer(requestParameters?: MaterialsCreateMaterialLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
6693
6786
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6694
6787
|
context?: HttpContext;
|
|
6695
6788
|
transferCache?: boolean;
|
|
6696
6789
|
}): Observable<HttpResponse<number>>;
|
|
6697
|
-
|
|
6790
|
+
materialsCreateMaterialLayer(requestParameters?: MaterialsCreateMaterialLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
6698
6791
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6699
6792
|
context?: HttpContext;
|
|
6700
6793
|
transferCache?: boolean;
|
|
6701
6794
|
}): Observable<HttpEvent<number>>;
|
|
6702
6795
|
/**
|
|
6703
|
-
*
|
|
6796
|
+
* Duplicate material layer.
|
|
6704
6797
|
* @param requestParameters
|
|
6705
6798
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6706
6799
|
* @param reportProgress flag to report request and response progress.
|
|
6707
6800
|
*/
|
|
6708
|
-
|
|
6709
|
-
httpHeaderAccept?:
|
|
6801
|
+
materialsDuplicateMaterialLayer(requestParameters: MaterialsDuplicateMaterialLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
6802
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6710
6803
|
context?: HttpContext;
|
|
6711
6804
|
transferCache?: boolean;
|
|
6712
|
-
}): Observable<
|
|
6713
|
-
|
|
6714
|
-
httpHeaderAccept?:
|
|
6805
|
+
}): Observable<MaterialLayerHierarchyItemDto>;
|
|
6806
|
+
materialsDuplicateMaterialLayer(requestParameters: MaterialsDuplicateMaterialLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
6807
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6715
6808
|
context?: HttpContext;
|
|
6716
6809
|
transferCache?: boolean;
|
|
6717
|
-
}): Observable<HttpResponse<
|
|
6718
|
-
|
|
6719
|
-
httpHeaderAccept?:
|
|
6810
|
+
}): Observable<HttpResponse<MaterialLayerHierarchyItemDto>>;
|
|
6811
|
+
materialsDuplicateMaterialLayer(requestParameters: MaterialsDuplicateMaterialLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
6812
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6720
6813
|
context?: HttpContext;
|
|
6721
6814
|
transferCache?: boolean;
|
|
6722
|
-
}): Observable<HttpEvent<
|
|
6815
|
+
}): Observable<HttpEvent<MaterialLayerHierarchyItemDto>>;
|
|
6723
6816
|
/**
|
|
6724
|
-
* Get
|
|
6817
|
+
* Get material layer details by id.
|
|
6725
6818
|
* @param requestParameters
|
|
6726
6819
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6727
6820
|
* @param reportProgress flag to report request and response progress.
|
|
6728
6821
|
*/
|
|
6729
|
-
|
|
6822
|
+
materialsGetMaterialLayer(requestParameters: MaterialsGetMaterialLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
6730
6823
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6731
6824
|
context?: HttpContext;
|
|
6732
6825
|
transferCache?: boolean;
|
|
6733
|
-
}): Observable<
|
|
6734
|
-
|
|
6826
|
+
}): Observable<MaterialLayerDto>;
|
|
6827
|
+
materialsGetMaterialLayer(requestParameters: MaterialsGetMaterialLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
6735
6828
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6736
6829
|
context?: HttpContext;
|
|
6737
6830
|
transferCache?: boolean;
|
|
6738
|
-
}): Observable<HttpResponse<
|
|
6739
|
-
|
|
6831
|
+
}): Observable<HttpResponse<MaterialLayerDto>>;
|
|
6832
|
+
materialsGetMaterialLayer(requestParameters: MaterialsGetMaterialLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
6740
6833
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6741
6834
|
context?: HttpContext;
|
|
6742
6835
|
transferCache?: boolean;
|
|
6743
|
-
}): Observable<HttpEvent<
|
|
6836
|
+
}): Observable<HttpEvent<MaterialLayerDto>>;
|
|
6744
6837
|
/**
|
|
6745
|
-
*
|
|
6838
|
+
* Remove material layer by id.
|
|
6746
6839
|
* @param requestParameters
|
|
6747
6840
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6748
6841
|
* @param reportProgress flag to report request and response progress.
|
|
6749
6842
|
*/
|
|
6750
|
-
|
|
6843
|
+
materialsRemoveGroup(requestParameters: MaterialsRemoveGroupRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
6844
|
+
httpHeaderAccept?: undefined;
|
|
6845
|
+
context?: HttpContext;
|
|
6846
|
+
transferCache?: boolean;
|
|
6847
|
+
}): Observable<any>;
|
|
6848
|
+
materialsRemoveGroup(requestParameters: MaterialsRemoveGroupRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
6849
|
+
httpHeaderAccept?: undefined;
|
|
6850
|
+
context?: HttpContext;
|
|
6851
|
+
transferCache?: boolean;
|
|
6852
|
+
}): Observable<HttpResponse<any>>;
|
|
6853
|
+
materialsRemoveGroup(requestParameters: MaterialsRemoveGroupRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
6854
|
+
httpHeaderAccept?: undefined;
|
|
6855
|
+
context?: HttpContext;
|
|
6856
|
+
transferCache?: boolean;
|
|
6857
|
+
}): Observable<HttpEvent<any>>;
|
|
6858
|
+
/**
|
|
6859
|
+
* Search material layers.
|
|
6860
|
+
* @param requestParameters
|
|
6861
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6862
|
+
* @param reportProgress flag to report request and response progress.
|
|
6863
|
+
*/
|
|
6864
|
+
materialsSearchMaterialLayers(requestParameters?: MaterialsSearchMaterialLayersRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
6751
6865
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6752
6866
|
context?: HttpContext;
|
|
6753
6867
|
transferCache?: boolean;
|
|
6754
|
-
}): Observable<
|
|
6755
|
-
|
|
6868
|
+
}): Observable<Array<MaterialLayerHierarchyItemDto>>;
|
|
6869
|
+
materialsSearchMaterialLayers(requestParameters?: MaterialsSearchMaterialLayersRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
6756
6870
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6757
6871
|
context?: HttpContext;
|
|
6758
6872
|
transferCache?: boolean;
|
|
6759
|
-
}): Observable<HttpResponse<
|
|
6760
|
-
|
|
6873
|
+
}): Observable<HttpResponse<Array<MaterialLayerHierarchyItemDto>>>;
|
|
6874
|
+
materialsSearchMaterialLayers(requestParameters?: MaterialsSearchMaterialLayersRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
6761
6875
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6762
6876
|
context?: HttpContext;
|
|
6763
6877
|
transferCache?: boolean;
|
|
6764
|
-
}): Observable<HttpEvent<
|
|
6878
|
+
}): Observable<HttpEvent<Array<MaterialLayerHierarchyItemDto>>>;
|
|
6765
6879
|
/**
|
|
6766
|
-
* Update
|
|
6880
|
+
* Update material layer.
|
|
6767
6881
|
* @param requestParameters
|
|
6768
6882
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6769
6883
|
* @param reportProgress flag to report request and response progress.
|
|
6770
6884
|
*/
|
|
6771
|
-
|
|
6885
|
+
materialsUpdateMaterialLayer(requestParameters: MaterialsUpdateMaterialLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
6772
6886
|
httpHeaderAccept?: undefined;
|
|
6773
6887
|
context?: HttpContext;
|
|
6774
6888
|
transferCache?: boolean;
|
|
6775
6889
|
}): Observable<any>;
|
|
6776
|
-
|
|
6890
|
+
materialsUpdateMaterialLayer(requestParameters: MaterialsUpdateMaterialLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
6777
6891
|
httpHeaderAccept?: undefined;
|
|
6778
6892
|
context?: HttpContext;
|
|
6779
6893
|
transferCache?: boolean;
|
|
6780
6894
|
}): Observable<HttpResponse<any>>;
|
|
6781
|
-
|
|
6895
|
+
materialsUpdateMaterialLayer(requestParameters: MaterialsUpdateMaterialLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
6782
6896
|
httpHeaderAccept?: undefined;
|
|
6783
6897
|
context?: HttpContext;
|
|
6784
6898
|
transferCache?: boolean;
|
|
6785
6899
|
}): Observable<HttpEvent<any>>;
|
|
6786
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
6787
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
6900
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BombMaterialsApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
6901
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BombMaterialsApiService>;
|
|
6788
6902
|
}
|
|
6789
6903
|
|
|
6790
6904
|
/**
|
|
@@ -6797,13 +6911,362 @@ declare class ControllerProgramsApiService extends BaseService implements Contro
|
|
|
6797
6911
|
* Do not edit the class manually.
|
|
6798
6912
|
*/
|
|
6799
6913
|
|
|
6800
|
-
interface
|
|
6801
|
-
|
|
6802
|
-
message: string;
|
|
6803
|
-
frontendUrl: string;
|
|
6804
|
-
attachments: Array<Blob>;
|
|
6914
|
+
interface RoutingsCreateRoutingLayerRequestParams {
|
|
6915
|
+
createRoutingLayerCommand?: CreateRoutingLayerCommand;
|
|
6805
6916
|
}
|
|
6806
|
-
interface
|
|
6917
|
+
interface RoutingsSearchRoutingLayersRequestParams {
|
|
6918
|
+
parentRoutingLayerId?: number | null;
|
|
6919
|
+
}
|
|
6920
|
+
interface RoutingsUpdateRoutingLayerRequestParams {
|
|
6921
|
+
routingLayerId: number;
|
|
6922
|
+
saveRoutingLayerDto?: SaveRoutingLayerDto;
|
|
6923
|
+
}
|
|
6924
|
+
interface BombRoutingsApiServiceInterface {
|
|
6925
|
+
defaultHeaders: HttpHeaders;
|
|
6926
|
+
configuration: Configuration;
|
|
6927
|
+
/**
|
|
6928
|
+
* Create routing layer.
|
|
6929
|
+
*
|
|
6930
|
+
* @param requestParameters
|
|
6931
|
+
*/
|
|
6932
|
+
routingsCreateRoutingLayer(requestParameters: RoutingsCreateRoutingLayerRequestParams, extraHttpRequestParams?: any): Observable<number>;
|
|
6933
|
+
/**
|
|
6934
|
+
* Search routing layers.
|
|
6935
|
+
*
|
|
6936
|
+
* @param requestParameters
|
|
6937
|
+
*/
|
|
6938
|
+
routingsSearchRoutingLayers(requestParameters: RoutingsSearchRoutingLayersRequestParams, extraHttpRequestParams?: any): Observable<Array<RoutingLayerHierarchyItemDto>>;
|
|
6939
|
+
/**
|
|
6940
|
+
* Update routing layer.
|
|
6941
|
+
*
|
|
6942
|
+
* @param requestParameters
|
|
6943
|
+
*/
|
|
6944
|
+
routingsUpdateRoutingLayer(requestParameters: RoutingsUpdateRoutingLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
6945
|
+
}
|
|
6946
|
+
|
|
6947
|
+
declare class BombRoutingsApiService extends BaseService implements BombRoutingsApiServiceInterface {
|
|
6948
|
+
protected httpClient: HttpClient;
|
|
6949
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
6950
|
+
/**
|
|
6951
|
+
* Create routing layer.
|
|
6952
|
+
* @param requestParameters
|
|
6953
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6954
|
+
* @param reportProgress flag to report request and response progress.
|
|
6955
|
+
*/
|
|
6956
|
+
routingsCreateRoutingLayer(requestParameters?: RoutingsCreateRoutingLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
6957
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6958
|
+
context?: HttpContext;
|
|
6959
|
+
transferCache?: boolean;
|
|
6960
|
+
}): Observable<number>;
|
|
6961
|
+
routingsCreateRoutingLayer(requestParameters?: RoutingsCreateRoutingLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
6962
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6963
|
+
context?: HttpContext;
|
|
6964
|
+
transferCache?: boolean;
|
|
6965
|
+
}): Observable<HttpResponse<number>>;
|
|
6966
|
+
routingsCreateRoutingLayer(requestParameters?: RoutingsCreateRoutingLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
6967
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6968
|
+
context?: HttpContext;
|
|
6969
|
+
transferCache?: boolean;
|
|
6970
|
+
}): Observable<HttpEvent<number>>;
|
|
6971
|
+
/**
|
|
6972
|
+
* Search routing layers.
|
|
6973
|
+
* @param requestParameters
|
|
6974
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6975
|
+
* @param reportProgress flag to report request and response progress.
|
|
6976
|
+
*/
|
|
6977
|
+
routingsSearchRoutingLayers(requestParameters?: RoutingsSearchRoutingLayersRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
6978
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6979
|
+
context?: HttpContext;
|
|
6980
|
+
transferCache?: boolean;
|
|
6981
|
+
}): Observable<Array<RoutingLayerHierarchyItemDto>>;
|
|
6982
|
+
routingsSearchRoutingLayers(requestParameters?: RoutingsSearchRoutingLayersRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
6983
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6984
|
+
context?: HttpContext;
|
|
6985
|
+
transferCache?: boolean;
|
|
6986
|
+
}): Observable<HttpResponse<Array<RoutingLayerHierarchyItemDto>>>;
|
|
6987
|
+
routingsSearchRoutingLayers(requestParameters?: RoutingsSearchRoutingLayersRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
6988
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
6989
|
+
context?: HttpContext;
|
|
6990
|
+
transferCache?: boolean;
|
|
6991
|
+
}): Observable<HttpEvent<Array<RoutingLayerHierarchyItemDto>>>;
|
|
6992
|
+
/**
|
|
6993
|
+
* Update routing layer.
|
|
6994
|
+
* @param requestParameters
|
|
6995
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6996
|
+
* @param reportProgress flag to report request and response progress.
|
|
6997
|
+
*/
|
|
6998
|
+
routingsUpdateRoutingLayer(requestParameters: RoutingsUpdateRoutingLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
6999
|
+
httpHeaderAccept?: undefined;
|
|
7000
|
+
context?: HttpContext;
|
|
7001
|
+
transferCache?: boolean;
|
|
7002
|
+
}): Observable<any>;
|
|
7003
|
+
routingsUpdateRoutingLayer(requestParameters: RoutingsUpdateRoutingLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
7004
|
+
httpHeaderAccept?: undefined;
|
|
7005
|
+
context?: HttpContext;
|
|
7006
|
+
transferCache?: boolean;
|
|
7007
|
+
}): Observable<HttpResponse<any>>;
|
|
7008
|
+
routingsUpdateRoutingLayer(requestParameters: RoutingsUpdateRoutingLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7009
|
+
httpHeaderAccept?: undefined;
|
|
7010
|
+
context?: HttpContext;
|
|
7011
|
+
transferCache?: boolean;
|
|
7012
|
+
}): Observable<HttpEvent<any>>;
|
|
7013
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BombRoutingsApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
7014
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BombRoutingsApiService>;
|
|
7015
|
+
}
|
|
7016
|
+
|
|
7017
|
+
/**
|
|
7018
|
+
* RenewAire CORES API
|
|
7019
|
+
*
|
|
7020
|
+
* Contact: renewaire@saritasa.com
|
|
7021
|
+
*
|
|
7022
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7023
|
+
* https://openapi-generator.tech
|
|
7024
|
+
* Do not edit the class manually.
|
|
7025
|
+
*/
|
|
7026
|
+
|
|
7027
|
+
interface SchematicsCreateSchematicLayerRequestParams {
|
|
7028
|
+
createSchematicLayerCommand?: CreateSchematicLayerCommand;
|
|
7029
|
+
}
|
|
7030
|
+
interface BombSchematicsApiServiceInterface {
|
|
7031
|
+
defaultHeaders: HttpHeaders;
|
|
7032
|
+
configuration: Configuration;
|
|
7033
|
+
/**
|
|
7034
|
+
* Create schematic layer.
|
|
7035
|
+
*
|
|
7036
|
+
* @param requestParameters
|
|
7037
|
+
*/
|
|
7038
|
+
schematicsCreateSchematicLayer(requestParameters: SchematicsCreateSchematicLayerRequestParams, extraHttpRequestParams?: any): Observable<number>;
|
|
7039
|
+
}
|
|
7040
|
+
|
|
7041
|
+
declare class BombSchematicsApiService extends BaseService implements BombSchematicsApiServiceInterface {
|
|
7042
|
+
protected httpClient: HttpClient;
|
|
7043
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
7044
|
+
/**
|
|
7045
|
+
* Create schematic layer.
|
|
7046
|
+
* @param requestParameters
|
|
7047
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7048
|
+
* @param reportProgress flag to report request and response progress.
|
|
7049
|
+
*/
|
|
7050
|
+
schematicsCreateSchematicLayer(requestParameters?: SchematicsCreateSchematicLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
7051
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7052
|
+
context?: HttpContext;
|
|
7053
|
+
transferCache?: boolean;
|
|
7054
|
+
}): Observable<number>;
|
|
7055
|
+
schematicsCreateSchematicLayer(requestParameters?: SchematicsCreateSchematicLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
7056
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7057
|
+
context?: HttpContext;
|
|
7058
|
+
transferCache?: boolean;
|
|
7059
|
+
}): Observable<HttpResponse<number>>;
|
|
7060
|
+
schematicsCreateSchematicLayer(requestParameters?: SchematicsCreateSchematicLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7061
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7062
|
+
context?: HttpContext;
|
|
7063
|
+
transferCache?: boolean;
|
|
7064
|
+
}): Observable<HttpEvent<number>>;
|
|
7065
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BombSchematicsApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
7066
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BombSchematicsApiService>;
|
|
7067
|
+
}
|
|
7068
|
+
|
|
7069
|
+
/**
|
|
7070
|
+
* RenewAire CORES API
|
|
7071
|
+
*
|
|
7072
|
+
* Contact: renewaire@saritasa.com
|
|
7073
|
+
*
|
|
7074
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7075
|
+
* https://openapi-generator.tech
|
|
7076
|
+
* Do not edit the class manually.
|
|
7077
|
+
*/
|
|
7078
|
+
|
|
7079
|
+
interface ControllerProgramsCreateControllerProgramRequestParams {
|
|
7080
|
+
programType: ControllerProgramType;
|
|
7081
|
+
saveControllerProgramDto?: SaveControllerProgramDto;
|
|
7082
|
+
}
|
|
7083
|
+
interface ControllerProgramsCreateFileDownloadUrlRequestParams {
|
|
7084
|
+
controllerProgramId: number;
|
|
7085
|
+
}
|
|
7086
|
+
interface ControllerProgramsGetControllerProgramRequestParams {
|
|
7087
|
+
controllerProgramId: number;
|
|
7088
|
+
}
|
|
7089
|
+
interface ControllerProgramsSearchControllerProgramsRequestParams {
|
|
7090
|
+
programType: ControllerProgramType;
|
|
7091
|
+
versionNumber?: string;
|
|
7092
|
+
releaseType?: ControllerProgramReleaseType | null;
|
|
7093
|
+
createdAt?: string;
|
|
7094
|
+
createdBy?: string;
|
|
7095
|
+
notes?: string;
|
|
7096
|
+
fileName?: string;
|
|
7097
|
+
orderBy?: string;
|
|
7098
|
+
page?: number;
|
|
7099
|
+
pageSize?: number;
|
|
7100
|
+
}
|
|
7101
|
+
interface ControllerProgramsUpdateControllerProgramRequestParams {
|
|
7102
|
+
controllerProgramId: number;
|
|
7103
|
+
isActive?: boolean;
|
|
7104
|
+
saveControllerProgramDto?: SaveControllerProgramDto;
|
|
7105
|
+
}
|
|
7106
|
+
interface ControllerProgramsApiServiceInterface {
|
|
7107
|
+
defaultHeaders: HttpHeaders;
|
|
7108
|
+
configuration: Configuration;
|
|
7109
|
+
/**
|
|
7110
|
+
* Create controller program.
|
|
7111
|
+
*
|
|
7112
|
+
* @param requestParameters
|
|
7113
|
+
*/
|
|
7114
|
+
controllerProgramsCreateControllerProgram(requestParameters: ControllerProgramsCreateControllerProgramRequestParams, extraHttpRequestParams?: any): Observable<number>;
|
|
7115
|
+
/**
|
|
7116
|
+
* Generate cloud URL for controller program file downloading.
|
|
7117
|
+
*
|
|
7118
|
+
* @param requestParameters
|
|
7119
|
+
*/
|
|
7120
|
+
controllerProgramsCreateFileDownloadUrl(requestParameters: ControllerProgramsCreateFileDownloadUrlRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
7121
|
+
/**
|
|
7122
|
+
* Get controller program details.
|
|
7123
|
+
*
|
|
7124
|
+
* @param requestParameters
|
|
7125
|
+
*/
|
|
7126
|
+
controllerProgramsGetControllerProgram(requestParameters: ControllerProgramsGetControllerProgramRequestParams, extraHttpRequestParams?: any): Observable<ControllerProgramDto>;
|
|
7127
|
+
/**
|
|
7128
|
+
* Search controller programs.
|
|
7129
|
+
*
|
|
7130
|
+
* @param requestParameters
|
|
7131
|
+
*/
|
|
7132
|
+
controllerProgramsSearchControllerPrograms(requestParameters: ControllerProgramsSearchControllerProgramsRequestParams, extraHttpRequestParams?: any): Observable<ControllerProgramDtoPagedListMetadataDto>;
|
|
7133
|
+
/**
|
|
7134
|
+
* Update controller program.
|
|
7135
|
+
*
|
|
7136
|
+
* @param requestParameters
|
|
7137
|
+
*/
|
|
7138
|
+
controllerProgramsUpdateControllerProgram(requestParameters: ControllerProgramsUpdateControllerProgramRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
7139
|
+
}
|
|
7140
|
+
|
|
7141
|
+
declare class ControllerProgramsApiService extends BaseService implements ControllerProgramsApiServiceInterface {
|
|
7142
|
+
protected httpClient: HttpClient;
|
|
7143
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
7144
|
+
/**
|
|
7145
|
+
* Create controller program.
|
|
7146
|
+
* @param requestParameters
|
|
7147
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7148
|
+
* @param reportProgress flag to report request and response progress.
|
|
7149
|
+
*/
|
|
7150
|
+
controllerProgramsCreateControllerProgram(requestParameters: ControllerProgramsCreateControllerProgramRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
7151
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7152
|
+
context?: HttpContext;
|
|
7153
|
+
transferCache?: boolean;
|
|
7154
|
+
}): Observable<number>;
|
|
7155
|
+
controllerProgramsCreateControllerProgram(requestParameters: ControllerProgramsCreateControllerProgramRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
7156
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7157
|
+
context?: HttpContext;
|
|
7158
|
+
transferCache?: boolean;
|
|
7159
|
+
}): Observable<HttpResponse<number>>;
|
|
7160
|
+
controllerProgramsCreateControllerProgram(requestParameters: ControllerProgramsCreateControllerProgramRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7161
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7162
|
+
context?: HttpContext;
|
|
7163
|
+
transferCache?: boolean;
|
|
7164
|
+
}): Observable<HttpEvent<number>>;
|
|
7165
|
+
/**
|
|
7166
|
+
* Generate cloud URL for controller program file downloading.
|
|
7167
|
+
* @param requestParameters
|
|
7168
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7169
|
+
* @param reportProgress flag to report request and response progress.
|
|
7170
|
+
*/
|
|
7171
|
+
controllerProgramsCreateFileDownloadUrl(requestParameters: ControllerProgramsCreateFileDownloadUrlRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
7172
|
+
httpHeaderAccept?: undefined;
|
|
7173
|
+
context?: HttpContext;
|
|
7174
|
+
transferCache?: boolean;
|
|
7175
|
+
}): Observable<any>;
|
|
7176
|
+
controllerProgramsCreateFileDownloadUrl(requestParameters: ControllerProgramsCreateFileDownloadUrlRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
7177
|
+
httpHeaderAccept?: undefined;
|
|
7178
|
+
context?: HttpContext;
|
|
7179
|
+
transferCache?: boolean;
|
|
7180
|
+
}): Observable<HttpResponse<any>>;
|
|
7181
|
+
controllerProgramsCreateFileDownloadUrl(requestParameters: ControllerProgramsCreateFileDownloadUrlRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7182
|
+
httpHeaderAccept?: undefined;
|
|
7183
|
+
context?: HttpContext;
|
|
7184
|
+
transferCache?: boolean;
|
|
7185
|
+
}): Observable<HttpEvent<any>>;
|
|
7186
|
+
/**
|
|
7187
|
+
* Get controller program details.
|
|
7188
|
+
* @param requestParameters
|
|
7189
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7190
|
+
* @param reportProgress flag to report request and response progress.
|
|
7191
|
+
*/
|
|
7192
|
+
controllerProgramsGetControllerProgram(requestParameters: ControllerProgramsGetControllerProgramRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
7193
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7194
|
+
context?: HttpContext;
|
|
7195
|
+
transferCache?: boolean;
|
|
7196
|
+
}): Observable<ControllerProgramDto>;
|
|
7197
|
+
controllerProgramsGetControllerProgram(requestParameters: ControllerProgramsGetControllerProgramRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
7198
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7199
|
+
context?: HttpContext;
|
|
7200
|
+
transferCache?: boolean;
|
|
7201
|
+
}): Observable<HttpResponse<ControllerProgramDto>>;
|
|
7202
|
+
controllerProgramsGetControllerProgram(requestParameters: ControllerProgramsGetControllerProgramRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7203
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7204
|
+
context?: HttpContext;
|
|
7205
|
+
transferCache?: boolean;
|
|
7206
|
+
}): Observable<HttpEvent<ControllerProgramDto>>;
|
|
7207
|
+
/**
|
|
7208
|
+
* Search controller programs.
|
|
7209
|
+
* @param requestParameters
|
|
7210
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7211
|
+
* @param reportProgress flag to report request and response progress.
|
|
7212
|
+
*/
|
|
7213
|
+
controllerProgramsSearchControllerPrograms(requestParameters: ControllerProgramsSearchControllerProgramsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
7214
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7215
|
+
context?: HttpContext;
|
|
7216
|
+
transferCache?: boolean;
|
|
7217
|
+
}): Observable<ControllerProgramDtoPagedListMetadataDto>;
|
|
7218
|
+
controllerProgramsSearchControllerPrograms(requestParameters: ControllerProgramsSearchControllerProgramsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
7219
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7220
|
+
context?: HttpContext;
|
|
7221
|
+
transferCache?: boolean;
|
|
7222
|
+
}): Observable<HttpResponse<ControllerProgramDtoPagedListMetadataDto>>;
|
|
7223
|
+
controllerProgramsSearchControllerPrograms(requestParameters: ControllerProgramsSearchControllerProgramsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7224
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7225
|
+
context?: HttpContext;
|
|
7226
|
+
transferCache?: boolean;
|
|
7227
|
+
}): Observable<HttpEvent<ControllerProgramDtoPagedListMetadataDto>>;
|
|
7228
|
+
/**
|
|
7229
|
+
* Update controller program.
|
|
7230
|
+
* @param requestParameters
|
|
7231
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7232
|
+
* @param reportProgress flag to report request and response progress.
|
|
7233
|
+
*/
|
|
7234
|
+
controllerProgramsUpdateControllerProgram(requestParameters: ControllerProgramsUpdateControllerProgramRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
7235
|
+
httpHeaderAccept?: undefined;
|
|
7236
|
+
context?: HttpContext;
|
|
7237
|
+
transferCache?: boolean;
|
|
7238
|
+
}): Observable<any>;
|
|
7239
|
+
controllerProgramsUpdateControllerProgram(requestParameters: ControllerProgramsUpdateControllerProgramRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
7240
|
+
httpHeaderAccept?: undefined;
|
|
7241
|
+
context?: HttpContext;
|
|
7242
|
+
transferCache?: boolean;
|
|
7243
|
+
}): Observable<HttpResponse<any>>;
|
|
7244
|
+
controllerProgramsUpdateControllerProgram(requestParameters: ControllerProgramsUpdateControllerProgramRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7245
|
+
httpHeaderAccept?: undefined;
|
|
7246
|
+
context?: HttpContext;
|
|
7247
|
+
transferCache?: boolean;
|
|
7248
|
+
}): Observable<HttpEvent<any>>;
|
|
7249
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ControllerProgramsApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
7250
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ControllerProgramsApiService>;
|
|
7251
|
+
}
|
|
7252
|
+
|
|
7253
|
+
/**
|
|
7254
|
+
* RenewAire CORES API
|
|
7255
|
+
*
|
|
7256
|
+
* Contact: renewaire@saritasa.com
|
|
7257
|
+
*
|
|
7258
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7259
|
+
* https://openapi-generator.tech
|
|
7260
|
+
* Do not edit the class manually.
|
|
7261
|
+
*/
|
|
7262
|
+
|
|
7263
|
+
interface FeedbacksCreateFeedbackRequestParams {
|
|
7264
|
+
feedbackType: FeedbackType;
|
|
7265
|
+
message: string;
|
|
7266
|
+
frontendUrl: string;
|
|
7267
|
+
attachments: Array<Blob>;
|
|
7268
|
+
}
|
|
7269
|
+
interface FeedbacksApiServiceInterface {
|
|
6807
7270
|
defaultHeaders: HttpHeaders;
|
|
6808
7271
|
configuration: Configuration;
|
|
6809
7272
|
/**
|
|
@@ -7195,355 +7658,151 @@ interface LeadTimesCreateLeadTimesTableRequestParams {
|
|
|
7195
7658
|
leadTimesTableType?: LeadTimeType;
|
|
7196
7659
|
saveLeadTimesTableDto?: SaveLeadTimesTableDto;
|
|
7197
7660
|
}
|
|
7198
|
-
interface LeadTimesUpdateLeadTimesTableRequestParams {
|
|
7199
|
-
leadTimesTableId: number;
|
|
7200
|
-
saveLeadTimesTableDto?: SaveLeadTimesTableDto;
|
|
7201
|
-
}
|
|
7202
|
-
interface LeadTimesApiServiceInterface {
|
|
7203
|
-
defaultHeaders: HttpHeaders;
|
|
7204
|
-
configuration: Configuration;
|
|
7205
|
-
/**
|
|
7206
|
-
* Create lead times table.
|
|
7207
|
-
*
|
|
7208
|
-
* @param requestParameters
|
|
7209
|
-
*/
|
|
7210
|
-
leadTimesCreateLeadTimesTable(requestParameters: LeadTimesCreateLeadTimesTableRequestParams, extraHttpRequestParams?: any): Observable<number>;
|
|
7211
|
-
/**
|
|
7212
|
-
* Get lead time tables. The tables will be filtered out depending on current user\'s permissions.
|
|
7213
|
-
*
|
|
7214
|
-
*/
|
|
7215
|
-
leadTimesGetLeadTimTables(extraHttpRequestParams?: any): Observable<Array<LeadTimesTableDto>>;
|
|
7216
|
-
/**
|
|
7217
|
-
* Update lead time table.
|
|
7218
|
-
*
|
|
7219
|
-
* @param requestParameters
|
|
7220
|
-
*/
|
|
7221
|
-
leadTimesUpdateLeadTimesTable(requestParameters: LeadTimesUpdateLeadTimesTableRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
7222
|
-
}
|
|
7223
|
-
|
|
7224
|
-
declare class LeadTimesApiService extends BaseService implements LeadTimesApiServiceInterface {
|
|
7225
|
-
protected httpClient: HttpClient;
|
|
7226
|
-
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
7227
|
-
/**
|
|
7228
|
-
* Create lead times table.
|
|
7229
|
-
* @param requestParameters
|
|
7230
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7231
|
-
* @param reportProgress flag to report request and response progress.
|
|
7232
|
-
*/
|
|
7233
|
-
leadTimesCreateLeadTimesTable(requestParameters?: LeadTimesCreateLeadTimesTableRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
7234
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7235
|
-
context?: HttpContext;
|
|
7236
|
-
transferCache?: boolean;
|
|
7237
|
-
}): Observable<number>;
|
|
7238
|
-
leadTimesCreateLeadTimesTable(requestParameters?: LeadTimesCreateLeadTimesTableRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
7239
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7240
|
-
context?: HttpContext;
|
|
7241
|
-
transferCache?: boolean;
|
|
7242
|
-
}): Observable<HttpResponse<number>>;
|
|
7243
|
-
leadTimesCreateLeadTimesTable(requestParameters?: LeadTimesCreateLeadTimesTableRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7244
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7245
|
-
context?: HttpContext;
|
|
7246
|
-
transferCache?: boolean;
|
|
7247
|
-
}): Observable<HttpEvent<number>>;
|
|
7248
|
-
/**
|
|
7249
|
-
* Get lead time tables. The tables will be filtered out depending on current user\'s permissions.
|
|
7250
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7251
|
-
* @param reportProgress flag to report request and response progress.
|
|
7252
|
-
*/
|
|
7253
|
-
leadTimesGetLeadTimTables(observe?: "body", reportProgress?: boolean, options?: {
|
|
7254
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7255
|
-
context?: HttpContext;
|
|
7256
|
-
transferCache?: boolean;
|
|
7257
|
-
}): Observable<Array<LeadTimesTableDto>>;
|
|
7258
|
-
leadTimesGetLeadTimTables(observe?: "response", reportProgress?: boolean, options?: {
|
|
7259
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7260
|
-
context?: HttpContext;
|
|
7261
|
-
transferCache?: boolean;
|
|
7262
|
-
}): Observable<HttpResponse<Array<LeadTimesTableDto>>>;
|
|
7263
|
-
leadTimesGetLeadTimTables(observe?: "events", reportProgress?: boolean, options?: {
|
|
7264
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7265
|
-
context?: HttpContext;
|
|
7266
|
-
transferCache?: boolean;
|
|
7267
|
-
}): Observable<HttpEvent<Array<LeadTimesTableDto>>>;
|
|
7268
|
-
/**
|
|
7269
|
-
* Update lead time table.
|
|
7270
|
-
* @param requestParameters
|
|
7271
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7272
|
-
* @param reportProgress flag to report request and response progress.
|
|
7273
|
-
*/
|
|
7274
|
-
leadTimesUpdateLeadTimesTable(requestParameters: LeadTimesUpdateLeadTimesTableRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
7275
|
-
httpHeaderAccept?: undefined;
|
|
7276
|
-
context?: HttpContext;
|
|
7277
|
-
transferCache?: boolean;
|
|
7278
|
-
}): Observable<any>;
|
|
7279
|
-
leadTimesUpdateLeadTimesTable(requestParameters: LeadTimesUpdateLeadTimesTableRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
7280
|
-
httpHeaderAccept?: undefined;
|
|
7281
|
-
context?: HttpContext;
|
|
7282
|
-
transferCache?: boolean;
|
|
7283
|
-
}): Observable<HttpResponse<any>>;
|
|
7284
|
-
leadTimesUpdateLeadTimesTable(requestParameters: LeadTimesUpdateLeadTimesTableRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7285
|
-
httpHeaderAccept?: undefined;
|
|
7286
|
-
context?: HttpContext;
|
|
7287
|
-
transferCache?: boolean;
|
|
7288
|
-
}): Observable<HttpEvent<any>>;
|
|
7289
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LeadTimesApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
7290
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<LeadTimesApiService>;
|
|
7291
|
-
}
|
|
7292
|
-
|
|
7293
|
-
/**
|
|
7294
|
-
* RenewAire CORES API
|
|
7295
|
-
*
|
|
7296
|
-
* Contact: renewaire@saritasa.com
|
|
7297
|
-
*
|
|
7298
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7299
|
-
* https://openapi-generator.tech
|
|
7300
|
-
* Do not edit the class manually.
|
|
7301
|
-
*/
|
|
7302
|
-
|
|
7303
|
-
interface MaintenanceSetMaintenanceModeRequestParams {
|
|
7304
|
-
enabled?: boolean;
|
|
7305
|
-
}
|
|
7306
|
-
interface MaintenanceApiServiceInterface {
|
|
7307
|
-
defaultHeaders: HttpHeaders;
|
|
7308
|
-
configuration: Configuration;
|
|
7309
|
-
/**
|
|
7310
|
-
* Sets maintenance mode state.
|
|
7311
|
-
*
|
|
7312
|
-
* @param requestParameters
|
|
7313
|
-
*/
|
|
7314
|
-
maintenanceSetMaintenanceMode(requestParameters: MaintenanceSetMaintenanceModeRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
7315
|
-
}
|
|
7316
|
-
|
|
7317
|
-
declare class MaintenanceApiService extends BaseService implements MaintenanceApiServiceInterface {
|
|
7318
|
-
protected httpClient: HttpClient;
|
|
7319
|
-
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
7320
|
-
/**
|
|
7321
|
-
* Sets maintenance mode state.
|
|
7322
|
-
* @param requestParameters
|
|
7323
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7324
|
-
* @param reportProgress flag to report request and response progress.
|
|
7325
|
-
*/
|
|
7326
|
-
maintenanceSetMaintenanceMode(requestParameters?: MaintenanceSetMaintenanceModeRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
7327
|
-
httpHeaderAccept?: undefined;
|
|
7328
|
-
context?: HttpContext;
|
|
7329
|
-
transferCache?: boolean;
|
|
7330
|
-
}): Observable<any>;
|
|
7331
|
-
maintenanceSetMaintenanceMode(requestParameters?: MaintenanceSetMaintenanceModeRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
7332
|
-
httpHeaderAccept?: undefined;
|
|
7333
|
-
context?: HttpContext;
|
|
7334
|
-
transferCache?: boolean;
|
|
7335
|
-
}): Observable<HttpResponse<any>>;
|
|
7336
|
-
maintenanceSetMaintenanceMode(requestParameters?: MaintenanceSetMaintenanceModeRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7337
|
-
httpHeaderAccept?: undefined;
|
|
7338
|
-
context?: HttpContext;
|
|
7339
|
-
transferCache?: boolean;
|
|
7340
|
-
}): Observable<HttpEvent<any>>;
|
|
7341
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MaintenanceApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
7342
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<MaintenanceApiService>;
|
|
7343
|
-
}
|
|
7344
|
-
|
|
7345
|
-
/**
|
|
7346
|
-
* RenewAire CORES API
|
|
7347
|
-
*
|
|
7348
|
-
* Contact: renewaire@saritasa.com
|
|
7349
|
-
*
|
|
7350
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7351
|
-
* https://openapi-generator.tech
|
|
7352
|
-
* Do not edit the class manually.
|
|
7353
|
-
*/
|
|
7354
|
-
|
|
7355
|
-
interface MaterialsCreateMaterialLayerRequestParams {
|
|
7356
|
-
createMaterialLayerCommand?: CreateMaterialLayerCommand;
|
|
7357
|
-
}
|
|
7358
|
-
interface MaterialsDuplicateMaterialLayerRequestParams {
|
|
7359
|
-
materialLayerId: number;
|
|
7360
|
-
duplicateMaterialLayerDto?: DuplicateMaterialLayerDto;
|
|
7361
|
-
}
|
|
7362
|
-
interface MaterialsGetMaterialLayerRequestParams {
|
|
7363
|
-
materialLayerId: number;
|
|
7364
|
-
}
|
|
7365
|
-
interface MaterialsRemoveGroupRequestParams {
|
|
7366
|
-
materialLayerId: number;
|
|
7367
|
-
}
|
|
7368
|
-
interface MaterialsSearchMaterialLayersRequestParams {
|
|
7369
|
-
parentMaterialLayerId?: number | null;
|
|
7370
|
-
}
|
|
7371
|
-
interface MaterialsUpdateMaterialLayerRequestParams {
|
|
7372
|
-
materialLayerId: number;
|
|
7373
|
-
saveMaterialLayerDto?: SaveMaterialLayerDto;
|
|
7661
|
+
interface LeadTimesUpdateLeadTimesTableRequestParams {
|
|
7662
|
+
leadTimesTableId: number;
|
|
7663
|
+
saveLeadTimesTableDto?: SaveLeadTimesTableDto;
|
|
7374
7664
|
}
|
|
7375
|
-
interface
|
|
7665
|
+
interface LeadTimesApiServiceInterface {
|
|
7376
7666
|
defaultHeaders: HttpHeaders;
|
|
7377
7667
|
configuration: Configuration;
|
|
7378
7668
|
/**
|
|
7379
|
-
* Create
|
|
7380
|
-
*
|
|
7381
|
-
* @param requestParameters
|
|
7382
|
-
*/
|
|
7383
|
-
materialsCreateMaterialLayer(requestParameters: MaterialsCreateMaterialLayerRequestParams, extraHttpRequestParams?: any): Observable<number>;
|
|
7384
|
-
/**
|
|
7385
|
-
* Duplicate material layer.
|
|
7386
|
-
*
|
|
7387
|
-
* @param requestParameters
|
|
7388
|
-
*/
|
|
7389
|
-
materialsDuplicateMaterialLayer(requestParameters: MaterialsDuplicateMaterialLayerRequestParams, extraHttpRequestParams?: any): Observable<MaterialLayerHierarchyItemDto>;
|
|
7390
|
-
/**
|
|
7391
|
-
* Get material layer details by id.
|
|
7392
|
-
*
|
|
7393
|
-
* @param requestParameters
|
|
7394
|
-
*/
|
|
7395
|
-
materialsGetMaterialLayer(requestParameters: MaterialsGetMaterialLayerRequestParams, extraHttpRequestParams?: any): Observable<MaterialLayerDto>;
|
|
7396
|
-
/**
|
|
7397
|
-
* Remove material layer by id.
|
|
7669
|
+
* Create lead times table.
|
|
7398
7670
|
*
|
|
7399
7671
|
* @param requestParameters
|
|
7400
7672
|
*/
|
|
7401
|
-
|
|
7673
|
+
leadTimesCreateLeadTimesTable(requestParameters: LeadTimesCreateLeadTimesTableRequestParams, extraHttpRequestParams?: any): Observable<number>;
|
|
7402
7674
|
/**
|
|
7403
|
-
*
|
|
7675
|
+
* Get lead time tables. The tables will be filtered out depending on current user\'s permissions.
|
|
7404
7676
|
*
|
|
7405
|
-
* @param requestParameters
|
|
7406
7677
|
*/
|
|
7407
|
-
|
|
7678
|
+
leadTimesGetLeadTimTables(extraHttpRequestParams?: any): Observable<Array<LeadTimesTableDto>>;
|
|
7408
7679
|
/**
|
|
7409
|
-
* Update
|
|
7680
|
+
* Update lead time table.
|
|
7410
7681
|
*
|
|
7411
7682
|
* @param requestParameters
|
|
7412
7683
|
*/
|
|
7413
|
-
|
|
7684
|
+
leadTimesUpdateLeadTimesTable(requestParameters: LeadTimesUpdateLeadTimesTableRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
7414
7685
|
}
|
|
7415
7686
|
|
|
7416
|
-
declare class
|
|
7687
|
+
declare class LeadTimesApiService extends BaseService implements LeadTimesApiServiceInterface {
|
|
7417
7688
|
protected httpClient: HttpClient;
|
|
7418
7689
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
7419
7690
|
/**
|
|
7420
|
-
* Create
|
|
7691
|
+
* Create lead times table.
|
|
7421
7692
|
* @param requestParameters
|
|
7422
7693
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7423
7694
|
* @param reportProgress flag to report request and response progress.
|
|
7424
7695
|
*/
|
|
7425
|
-
|
|
7696
|
+
leadTimesCreateLeadTimesTable(requestParameters?: LeadTimesCreateLeadTimesTableRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
7426
7697
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7427
7698
|
context?: HttpContext;
|
|
7428
7699
|
transferCache?: boolean;
|
|
7429
7700
|
}): Observable<number>;
|
|
7430
|
-
|
|
7701
|
+
leadTimesCreateLeadTimesTable(requestParameters?: LeadTimesCreateLeadTimesTableRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
7431
7702
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7432
7703
|
context?: HttpContext;
|
|
7433
7704
|
transferCache?: boolean;
|
|
7434
7705
|
}): Observable<HttpResponse<number>>;
|
|
7435
|
-
|
|
7706
|
+
leadTimesCreateLeadTimesTable(requestParameters?: LeadTimesCreateLeadTimesTableRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7436
7707
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7437
7708
|
context?: HttpContext;
|
|
7438
7709
|
transferCache?: boolean;
|
|
7439
7710
|
}): Observable<HttpEvent<number>>;
|
|
7440
7711
|
/**
|
|
7441
|
-
*
|
|
7442
|
-
* @param requestParameters
|
|
7443
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7444
|
-
* @param reportProgress flag to report request and response progress.
|
|
7445
|
-
*/
|
|
7446
|
-
materialsDuplicateMaterialLayer(requestParameters: MaterialsDuplicateMaterialLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
7447
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7448
|
-
context?: HttpContext;
|
|
7449
|
-
transferCache?: boolean;
|
|
7450
|
-
}): Observable<MaterialLayerHierarchyItemDto>;
|
|
7451
|
-
materialsDuplicateMaterialLayer(requestParameters: MaterialsDuplicateMaterialLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
7452
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7453
|
-
context?: HttpContext;
|
|
7454
|
-
transferCache?: boolean;
|
|
7455
|
-
}): Observable<HttpResponse<MaterialLayerHierarchyItemDto>>;
|
|
7456
|
-
materialsDuplicateMaterialLayer(requestParameters: MaterialsDuplicateMaterialLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7457
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7458
|
-
context?: HttpContext;
|
|
7459
|
-
transferCache?: boolean;
|
|
7460
|
-
}): Observable<HttpEvent<MaterialLayerHierarchyItemDto>>;
|
|
7461
|
-
/**
|
|
7462
|
-
* Get material layer details by id.
|
|
7463
|
-
* @param requestParameters
|
|
7712
|
+
* Get lead time tables. The tables will be filtered out depending on current user\'s permissions.
|
|
7464
7713
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7465
7714
|
* @param reportProgress flag to report request and response progress.
|
|
7466
7715
|
*/
|
|
7467
|
-
|
|
7716
|
+
leadTimesGetLeadTimTables(observe?: "body", reportProgress?: boolean, options?: {
|
|
7468
7717
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7469
7718
|
context?: HttpContext;
|
|
7470
7719
|
transferCache?: boolean;
|
|
7471
|
-
}): Observable<
|
|
7472
|
-
|
|
7720
|
+
}): Observable<Array<LeadTimesTableDto>>;
|
|
7721
|
+
leadTimesGetLeadTimTables(observe?: "response", reportProgress?: boolean, options?: {
|
|
7473
7722
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7474
7723
|
context?: HttpContext;
|
|
7475
7724
|
transferCache?: boolean;
|
|
7476
|
-
}): Observable<HttpResponse<
|
|
7477
|
-
|
|
7725
|
+
}): Observable<HttpResponse<Array<LeadTimesTableDto>>>;
|
|
7726
|
+
leadTimesGetLeadTimTables(observe?: "events", reportProgress?: boolean, options?: {
|
|
7478
7727
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7479
7728
|
context?: HttpContext;
|
|
7480
7729
|
transferCache?: boolean;
|
|
7481
|
-
}): Observable<HttpEvent<
|
|
7730
|
+
}): Observable<HttpEvent<Array<LeadTimesTableDto>>>;
|
|
7482
7731
|
/**
|
|
7483
|
-
*
|
|
7732
|
+
* Update lead time table.
|
|
7484
7733
|
* @param requestParameters
|
|
7485
7734
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7486
7735
|
* @param reportProgress flag to report request and response progress.
|
|
7487
7736
|
*/
|
|
7488
|
-
|
|
7737
|
+
leadTimesUpdateLeadTimesTable(requestParameters: LeadTimesUpdateLeadTimesTableRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
7489
7738
|
httpHeaderAccept?: undefined;
|
|
7490
7739
|
context?: HttpContext;
|
|
7491
7740
|
transferCache?: boolean;
|
|
7492
7741
|
}): Observable<any>;
|
|
7493
|
-
|
|
7742
|
+
leadTimesUpdateLeadTimesTable(requestParameters: LeadTimesUpdateLeadTimesTableRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
7494
7743
|
httpHeaderAccept?: undefined;
|
|
7495
7744
|
context?: HttpContext;
|
|
7496
7745
|
transferCache?: boolean;
|
|
7497
7746
|
}): Observable<HttpResponse<any>>;
|
|
7498
|
-
|
|
7747
|
+
leadTimesUpdateLeadTimesTable(requestParameters: LeadTimesUpdateLeadTimesTableRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7499
7748
|
httpHeaderAccept?: undefined;
|
|
7500
7749
|
context?: HttpContext;
|
|
7501
7750
|
transferCache?: boolean;
|
|
7502
7751
|
}): Observable<HttpEvent<any>>;
|
|
7752
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LeadTimesApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
7753
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LeadTimesApiService>;
|
|
7754
|
+
}
|
|
7755
|
+
|
|
7756
|
+
/**
|
|
7757
|
+
* RenewAire CORES API
|
|
7758
|
+
*
|
|
7759
|
+
* Contact: renewaire@saritasa.com
|
|
7760
|
+
*
|
|
7761
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7762
|
+
* https://openapi-generator.tech
|
|
7763
|
+
* Do not edit the class manually.
|
|
7764
|
+
*/
|
|
7765
|
+
|
|
7766
|
+
interface MaintenanceSetMaintenanceModeRequestParams {
|
|
7767
|
+
enabled?: boolean;
|
|
7768
|
+
}
|
|
7769
|
+
interface MaintenanceApiServiceInterface {
|
|
7770
|
+
defaultHeaders: HttpHeaders;
|
|
7771
|
+
configuration: Configuration;
|
|
7503
7772
|
/**
|
|
7504
|
-
*
|
|
7773
|
+
* Sets maintenance mode state.
|
|
7774
|
+
*
|
|
7505
7775
|
* @param requestParameters
|
|
7506
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7507
|
-
* @param reportProgress flag to report request and response progress.
|
|
7508
7776
|
*/
|
|
7509
|
-
|
|
7510
|
-
|
|
7511
|
-
|
|
7512
|
-
|
|
7513
|
-
|
|
7514
|
-
|
|
7515
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7516
|
-
context?: HttpContext;
|
|
7517
|
-
transferCache?: boolean;
|
|
7518
|
-
}): Observable<HttpResponse<Array<MaterialLayerHierarchyItemDto>>>;
|
|
7519
|
-
materialsSearchMaterialLayers(requestParameters?: MaterialsSearchMaterialLayersRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7520
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7521
|
-
context?: HttpContext;
|
|
7522
|
-
transferCache?: boolean;
|
|
7523
|
-
}): Observable<HttpEvent<Array<MaterialLayerHierarchyItemDto>>>;
|
|
7777
|
+
maintenanceSetMaintenanceMode(requestParameters: MaintenanceSetMaintenanceModeRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
7778
|
+
}
|
|
7779
|
+
|
|
7780
|
+
declare class MaintenanceApiService extends BaseService implements MaintenanceApiServiceInterface {
|
|
7781
|
+
protected httpClient: HttpClient;
|
|
7782
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
7524
7783
|
/**
|
|
7525
|
-
*
|
|
7784
|
+
* Sets maintenance mode state.
|
|
7526
7785
|
* @param requestParameters
|
|
7527
7786
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7528
7787
|
* @param reportProgress flag to report request and response progress.
|
|
7529
7788
|
*/
|
|
7530
|
-
|
|
7789
|
+
maintenanceSetMaintenanceMode(requestParameters?: MaintenanceSetMaintenanceModeRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
7531
7790
|
httpHeaderAccept?: undefined;
|
|
7532
7791
|
context?: HttpContext;
|
|
7533
7792
|
transferCache?: boolean;
|
|
7534
7793
|
}): Observable<any>;
|
|
7535
|
-
|
|
7794
|
+
maintenanceSetMaintenanceMode(requestParameters?: MaintenanceSetMaintenanceModeRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
7536
7795
|
httpHeaderAccept?: undefined;
|
|
7537
7796
|
context?: HttpContext;
|
|
7538
7797
|
transferCache?: boolean;
|
|
7539
7798
|
}): Observable<HttpResponse<any>>;
|
|
7540
|
-
|
|
7799
|
+
maintenanceSetMaintenanceMode(requestParameters?: MaintenanceSetMaintenanceModeRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7541
7800
|
httpHeaderAccept?: undefined;
|
|
7542
7801
|
context?: HttpContext;
|
|
7543
7802
|
transferCache?: boolean;
|
|
7544
7803
|
}): Observable<HttpEvent<any>>;
|
|
7545
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
7546
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
7804
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaintenanceApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
7805
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MaintenanceApiService>;
|
|
7547
7806
|
}
|
|
7548
7807
|
|
|
7549
7808
|
/**
|
|
@@ -10283,119 +10542,6 @@ declare class RepTerritoryLocationsApiService extends BaseService implements Rep
|
|
|
10283
10542
|
static ɵprov: i0.ɵɵInjectableDeclaration<RepTerritoryLocationsApiService>;
|
|
10284
10543
|
}
|
|
10285
10544
|
|
|
10286
|
-
/**
|
|
10287
|
-
* RenewAire CORES API
|
|
10288
|
-
*
|
|
10289
|
-
* Contact: renewaire@saritasa.com
|
|
10290
|
-
*
|
|
10291
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10292
|
-
* https://openapi-generator.tech
|
|
10293
|
-
* Do not edit the class manually.
|
|
10294
|
-
*/
|
|
10295
|
-
|
|
10296
|
-
interface RoutingsCreateRoutingLayerRequestParams {
|
|
10297
|
-
createRoutingLayerCommand?: CreateRoutingLayerCommand;
|
|
10298
|
-
}
|
|
10299
|
-
interface RoutingsSearchRoutingLayersRequestParams {
|
|
10300
|
-
parentRoutingLayerId?: number | null;
|
|
10301
|
-
}
|
|
10302
|
-
interface RoutingsUpdateRoutingLayerRequestParams {
|
|
10303
|
-
routingLayerId: number;
|
|
10304
|
-
saveRoutingLayerDto?: SaveRoutingLayerDto;
|
|
10305
|
-
}
|
|
10306
|
-
interface RoutingsApiServiceInterface {
|
|
10307
|
-
defaultHeaders: HttpHeaders;
|
|
10308
|
-
configuration: Configuration;
|
|
10309
|
-
/**
|
|
10310
|
-
* Create routing layer.
|
|
10311
|
-
*
|
|
10312
|
-
* @param requestParameters
|
|
10313
|
-
*/
|
|
10314
|
-
routingsCreateRoutingLayer(requestParameters: RoutingsCreateRoutingLayerRequestParams, extraHttpRequestParams?: any): Observable<number>;
|
|
10315
|
-
/**
|
|
10316
|
-
* Search routing layers.
|
|
10317
|
-
*
|
|
10318
|
-
* @param requestParameters
|
|
10319
|
-
*/
|
|
10320
|
-
routingsSearchRoutingLayers(requestParameters: RoutingsSearchRoutingLayersRequestParams, extraHttpRequestParams?: any): Observable<Array<RoutingLayerHierarchyItemDto>>;
|
|
10321
|
-
/**
|
|
10322
|
-
* Update routing layer.
|
|
10323
|
-
*
|
|
10324
|
-
* @param requestParameters
|
|
10325
|
-
*/
|
|
10326
|
-
routingsUpdateRoutingLayer(requestParameters: RoutingsUpdateRoutingLayerRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
10327
|
-
}
|
|
10328
|
-
|
|
10329
|
-
declare class RoutingsApiService extends BaseService implements RoutingsApiServiceInterface {
|
|
10330
|
-
protected httpClient: HttpClient;
|
|
10331
|
-
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
10332
|
-
/**
|
|
10333
|
-
* Create routing layer.
|
|
10334
|
-
* @param requestParameters
|
|
10335
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10336
|
-
* @param reportProgress flag to report request and response progress.
|
|
10337
|
-
*/
|
|
10338
|
-
routingsCreateRoutingLayer(requestParameters?: RoutingsCreateRoutingLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10339
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10340
|
-
context?: HttpContext;
|
|
10341
|
-
transferCache?: boolean;
|
|
10342
|
-
}): Observable<number>;
|
|
10343
|
-
routingsCreateRoutingLayer(requestParameters?: RoutingsCreateRoutingLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
10344
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10345
|
-
context?: HttpContext;
|
|
10346
|
-
transferCache?: boolean;
|
|
10347
|
-
}): Observable<HttpResponse<number>>;
|
|
10348
|
-
routingsCreateRoutingLayer(requestParameters?: RoutingsCreateRoutingLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
10349
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10350
|
-
context?: HttpContext;
|
|
10351
|
-
transferCache?: boolean;
|
|
10352
|
-
}): Observable<HttpEvent<number>>;
|
|
10353
|
-
/**
|
|
10354
|
-
* Search routing layers.
|
|
10355
|
-
* @param requestParameters
|
|
10356
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10357
|
-
* @param reportProgress flag to report request and response progress.
|
|
10358
|
-
*/
|
|
10359
|
-
routingsSearchRoutingLayers(requestParameters?: RoutingsSearchRoutingLayersRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10360
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10361
|
-
context?: HttpContext;
|
|
10362
|
-
transferCache?: boolean;
|
|
10363
|
-
}): Observable<Array<RoutingLayerHierarchyItemDto>>;
|
|
10364
|
-
routingsSearchRoutingLayers(requestParameters?: RoutingsSearchRoutingLayersRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
10365
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10366
|
-
context?: HttpContext;
|
|
10367
|
-
transferCache?: boolean;
|
|
10368
|
-
}): Observable<HttpResponse<Array<RoutingLayerHierarchyItemDto>>>;
|
|
10369
|
-
routingsSearchRoutingLayers(requestParameters?: RoutingsSearchRoutingLayersRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
10370
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
10371
|
-
context?: HttpContext;
|
|
10372
|
-
transferCache?: boolean;
|
|
10373
|
-
}): Observable<HttpEvent<Array<RoutingLayerHierarchyItemDto>>>;
|
|
10374
|
-
/**
|
|
10375
|
-
* Update routing layer.
|
|
10376
|
-
* @param requestParameters
|
|
10377
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
10378
|
-
* @param reportProgress flag to report request and response progress.
|
|
10379
|
-
*/
|
|
10380
|
-
routingsUpdateRoutingLayer(requestParameters: RoutingsUpdateRoutingLayerRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
10381
|
-
httpHeaderAccept?: undefined;
|
|
10382
|
-
context?: HttpContext;
|
|
10383
|
-
transferCache?: boolean;
|
|
10384
|
-
}): Observable<any>;
|
|
10385
|
-
routingsUpdateRoutingLayer(requestParameters: RoutingsUpdateRoutingLayerRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
10386
|
-
httpHeaderAccept?: undefined;
|
|
10387
|
-
context?: HttpContext;
|
|
10388
|
-
transferCache?: boolean;
|
|
10389
|
-
}): Observable<HttpResponse<any>>;
|
|
10390
|
-
routingsUpdateRoutingLayer(requestParameters: RoutingsUpdateRoutingLayerRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
10391
|
-
httpHeaderAccept?: undefined;
|
|
10392
|
-
context?: HttpContext;
|
|
10393
|
-
transferCache?: boolean;
|
|
10394
|
-
}): Observable<HttpEvent<any>>;
|
|
10395
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RoutingsApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
10396
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<RoutingsApiService>;
|
|
10397
|
-
}
|
|
10398
|
-
|
|
10399
10545
|
/**
|
|
10400
10546
|
* RenewAire CORES API
|
|
10401
10547
|
*
|
|
@@ -11966,7 +12112,7 @@ declare class UsersManagementApiService extends BaseService implements UsersMana
|
|
|
11966
12112
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersManagementApiService>;
|
|
11967
12113
|
}
|
|
11968
12114
|
|
|
11969
|
-
declare const APIS: (typeof AuditLogsApiService | typeof AuthApiService | typeof ControllerProgramsApiService | typeof FeedbacksApiService | typeof GroupsApiService | typeof KnownContactsApiService | typeof LeadTimesApiService | typeof MaintenanceApiService | typeof
|
|
12115
|
+
declare const APIS: (typeof AuditLogsApiService | typeof AuthApiService | typeof BombMaterialsApiService | typeof BombRoutingsApiService | typeof BombSchematicsApiService | typeof ControllerProgramsApiService | typeof FeedbacksApiService | typeof GroupsApiService | typeof KnownContactsApiService | typeof LeadTimesApiService | typeof MaintenanceApiService | typeof PermissionBundlesApiService | typeof PermissionsApiService | typeof ProjectBidStatusesApiService | typeof ProjectLinksApiService | typeof ProjectNotesApiService | typeof ProjectRevisionsApiService | typeof ProjectSharingApiService | typeof ProjectShippingApiService | typeof ProjectSoldToApiService | typeof ProjectStatusesApiService | typeof ProjectsApiService | typeof RegionsApiService | typeof RepContactsApiService | typeof RepSalesReportsApiService | typeof RepTerritoriesApiService | typeof RepTerritoryLocationsApiService | typeof RsdRegionsApiService | typeof S3ApiService | typeof StaticFilesApiService | typeof UserTablesApiService | typeof UsersApiService | typeof UsersManagementApiService)[];
|
|
11970
12116
|
|
|
11971
12117
|
declare const BASE_PATH: InjectionToken<string>;
|
|
11972
12118
|
declare const COLLECTION_FORMATS: {
|
|
@@ -11986,5 +12132,5 @@ declare class ApiModule {
|
|
|
11986
12132
|
|
|
11987
12133
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
11988
12134
|
|
|
11989
|
-
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,
|
|
11990
|
-
export type { AddressDto, AuditLogChange, AuditLogDto, AuditLogDtoPagedListMetadataDto, AuditLogsApiServiceInterface, AuditLogsSearchAuditLogsRequestParams, AuditLogsSearchProjectRevisionAuditLogsRequestParams, AuthApiServiceInterface, AuthAuthenticateByEmailTokenRequestParams, AuthAuthenticateRequestParams, AuthUpdateUserTokenPermissionsRequestParams, BaseStatusChangeCommand, CancelQuoteRequestCommand, ChangeCurrentUserPasswordCommand, ChangeEmailCommand, CompanyInformationDto, ConfigurationParameters, ConnectedGroupDto, ContactDto, ControllerProgramDto, ControllerProgramDtoPagedListMetadataDto, ControllerProgramsApiServiceInterface, ControllerProgramsCreateControllerProgramRequestParams, ControllerProgramsCreateFileDownloadUrlRequestParams, ControllerProgramsGetControllerProgramRequestParams, ControllerProgramsSearchControllerProgramsRequestParams, ControllerProgramsUpdateControllerProgramRequestParams, CreateMaterialLayerCommand, CreateProjectRevisionCommand, CreateRepSalesReportCommand, CreateRoutingLayerCommand, CreateUploadUrlCommand, CurrentUserDetailsDto, CurrentUserDto, CustomerDto, CustomerDtoPagedListMetadataDto, CustomerSoldToDto, CustomerSoldToDtoPagedListMetadataDto, DataFormat, DataType, DesignWeatherConditionDto, DistanceDto, DuplicateMaterialLayerDto, DuplicateProjectRequest, EmailConfirmationTokenDto, FeedbacksApiServiceInterface, FeedbacksCreateFeedbackRequestParams, FileDto, ForgotPasswordCommand, GetShippingLocationDto, GroupDto, GroupsApiServiceInterface, GroupsCreateGroupRequestParams, GroupsGetGroupRequestParams, GroupsRemoveGroupRequestParams, GroupsSearchGroupsRequestParams, GroupsUpdateGroupRequestParams, IdNameDto, Int32IdDto, InviteDto, KnownContactsApiServiceInterface, KnownContactsCreateKnowContactRequestParams, KnownContactsRemoveKnownContactRequestParams, KnownContactsSearchKnownContactsRequestParams, KnownContactsUpdateKnownContactRequestParams, LeadTimeDto, LeadTimeGroupsDto, LeadTimesApiServiceInterface, LeadTimesCreateLeadTimesTableRequestParams, LeadTimesTableDto, LeadTimesUpdateLeadTimesTableRequestParams, LinkedProjectDto, LoginUserCommand, MaintenanceApiServiceInterface, MaintenanceSetMaintenanceModeRequestParams, MaterialLayerDto, MaterialLayerHierarchyItemDto, MaterialMultiplierRuleDto, MaterialQuantityRuleDto, MaterialsApiServiceInterface, MaterialsCreateMaterialLayerRequestParams, MaterialsDuplicateMaterialLayerRequestParams, MaterialsGetMaterialLayerRequestParams, MaterialsRemoveGroupRequestParams, MaterialsSearchMaterialLayersRequestParams, MaterialsUpdateMaterialLayerRequestParams, NewProjectResultDto, OffsetLimitListMetadata, PagedListMetadata, Param, ParamLocation, ParamStyle, PermissionBundleDto, PermissionBundlesApiServiceInterface, PermissionBundlesCreatePermissionBundleRequestParams, PermissionBundlesGetPermissionBundleRequestParams, PermissionBundlesRemovePermissionBundleRequestParams, PermissionBundlesSearchPermissionBundlesRequestParams, PermissionBundlesUpdatePermissionBundleRequestParams, PermissionDto, PermissionsApiServiceInterface, PostPreSignedUrlDto, ProjectBidStatusAttachmentDto, ProjectBidStatusCreateBidStatusRequestParams, ProjectBidStatusDto, ProjectBidStatusGetProjectBidStatusAttachmentDownloadUrlRequestParams, ProjectBidStatusGetProjectBidStatusAttachmentPreviewUrlRequestParams, ProjectBidStatusIdIdDto, ProjectBidStatusRemoveBidStatusRequestParams, ProjectBidStatusUpdateBidStatusRequestParams, ProjectBidStatusesApiServiceInterface, ProjectDesignConditionsDto, ProjectDto, ProjectEditModeDto, ProjectFacilityDto, ProjectLinkIdIdDto, ProjectLinksApiServiceInterface, ProjectLinksCreateProjectLinkRequestParams, ProjectLinksRemoveProjectLinkRequestParams, ProjectLinksSearchProjectLinksRequestParams, ProjectLinksUpdateProjectLinkRequestParams, ProjectLogDto, ProjectNoteAttachmentDto, ProjectNoteIdIdDto, ProjectNotesApiServiceInterface, ProjectNotesCreateProjectNoteRequestParams, ProjectNotesGetProjectNoteAttachmentDownloadUrlRequestParams, ProjectNotesGetProjectNoteAttachmentPreviewRequestParams, ProjectNotesRemoveProjectNoteRequestParams, ProjectNotesSearchProjectsRequestParams, ProjectNotesUpdateProjectNoteRequestParams, ProjectRevisionIdIdDto, ProjectRevisionsApiServiceInterface, ProjectRevisionsCreateRevisionRequestParams, ProjectRevisionsGetBidStatusRequestParams, ProjectRevisionsGetProjectRevisionLogsRequestParams, ProjectRevisionsRemoveRevisionRequestParams, ProjectRevisionsSearchProjectRevisionsRequestParams, ProjectRevisionsSetRevisionAsMainRequestParams, ProjectRevisionsUpdateRevisionMetadataRequestParams, ProjectRevisionsUpdateRevisionRequestParams, ProjectShareItemDto, ProjectSharingApiServiceInterface, ProjectSharingGetProjectShareItemsRequestParams, ProjectSharingRemoveProjectShareRequestParams, ProjectSharingShareProjectRequestParams, ProjectSharingUpdateProjectShareRequestParams, ProjectShippingApiServiceInterface, ProjectShippingCreateLocationFromCsiCustomerRequestParams, ProjectShippingCreateLocationRequestParams, ProjectShippingDto, ProjectShippingGetLocationsRequestParams, ProjectShippingSearchShipToRequestParams, ProjectSoldToApiServiceInterface, ProjectSoldToDto, ProjectSoldToSearchSoldToRequestParams, ProjectStatusesApiServiceInterface, ProjectStatusesCancelQuoteRequestRequestParams, ProjectStatusesRequestOrderRequestParams, ProjectStatusesRequestQuote0RequestParams, ProjectStatusesRequestQuoteRequestParams, ProjectStatusesSubmitQuoteRequestParams, ProjectStatusesSubmitToRenewAireRequestParams, ProjectsApiServiceInterface, ProjectsCreateProjectRequestParams, ProjectsDuplicateProjectRequestParams, ProjectsExtendProjectEditModeRequestParams, ProjectsGetProjectEditModeRequestParams, ProjectsGetProjectRequestParams, ProjectsSearchProjectsRequestParams, ProjectsStartEditProjectRequestParams, ProjectsStopEditProjectRequestParams, RegionsApiServiceInterface, RegionsSearchRegionsRequestParams, RejectQuoteCommand, RepContactsApiServiceInterface, RepContactsGetRepTerritoryRepContactRequestParams, RepContactsRemoveRepTerritoryRepContactRequestParams, RepContactsSearchRepTerritoryRepContactRequestParams, RepContactsUpdateRepTerritoryRepContactRequestParams, RepSalesReportDto, RepSalesReportDtoPagedListMetadataDto, RepSalesReportsApiServiceInterface, RepSalesReportsCreateRepSalesReportDownloadUrlRequestParams, RepSalesReportsCreateRepSalesReportRequestParams, RepSalesReportsGetRepSalesReportRequestParams, RepSalesReportsRemoveRepSalesReportRequestParams, RepSalesReportsSearchRepSalesReportsRequestParams, RepTerritoriesApiServiceInterface, RepTerritoriesCreateRepTerritoryLocationRequestParams, RepTerritoriesCreateRepTerritoryRepContactRequestParams, RepTerritoriesCreateRepTerritoryRequestParams, RepTerritoriesGetRepTerritoryRequestParams, RepTerritoriesRemoveRepTerritoryRequestParams, RepTerritoriesSearchAccessibleRepUsersRequestParams, RepTerritoriesSearchRepTerritoriesRequestParams, RepTerritoriesUpdateRepTerritoryRequestParams, RepTerritoryContactsDto, RepTerritoryDto, RepTerritoryLocationDto, RepTerritoryLocationsApiServiceInterface, RepTerritoryLocationsGetRepTerritoryLocationRequestParams, RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams, RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams, RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams, RepTerritoryRepContactDto, RequestChangeEmailCommand, RequestOrderCommand, RequestQuoteCommand, ResetPasswordCommand, RoutingLayerHierarchyItemDto, RoutingsApiServiceInterface, RoutingsCreateRoutingLayerRequestParams, RoutingsSearchRoutingLayersRequestParams, RoutingsUpdateRoutingLayerRequestParams, RsdRegionDocumentDto, RsdRegionDto, RsdRegionRepTerritoryDto, RsdRegionUserDto, RsdRegionsApiServiceInterface, RsdRegionsCreateRsdRegionRequestParams, RsdRegionsGetRsdRegionDocumentDownloadUrlRequestParams, RsdRegionsGetRsdRegionDocumentPreviewRequestParams, RsdRegionsGetRsdRegionRequestParams, RsdRegionsRemoveRsdRegionRequestParams, RsdRegionsSearchRsdRegionTagsRequestParams, RsdRegionsSearchRsdRegionsRequestParams, RsdRegionsUpdateRsdRegionRequestParams, S3ApiServiceInterface, S3CreateFileUploadUrlRequestParams, SalesContactDto, SaveBidStatusDto, SaveControllerProgramDto, SaveGroupDto, SaveKnownContactDto, SaveLeadTimeDto, SaveLeadTimeGroupsDto, SaveLeadTimesTableDto, SaveMaterialLayerDto, SaveMaterialMultiplierRuleDto, SaveMaterialQuantityRuleDto, SavePermissionBundleDto, SaveProjectLinkDto, SaveProjectNoteDto, SaveProjectRevisionMetadataDto, SaveRepTerritoryLocationDto, SaveRepTerritoryRepContactDto, SaveRoutingLayerDto, SaveRoutingRuleDto, SaveUserDesignConditionsDto, SaveUserProjectSettingsDto, SaveUserQuoteSettingsDto, SearchGroupDto, SearchGroupDtoPagedListMetadataDto, SearchKnownContactDto, SearchKnownContactDtoPagedListMetadataDto, SearchPermissionBundleDto, SearchPermissionBundleDtoPagedListMetadataDto, SearchProjectDto, SearchProjectDtoPagedListMetadataDto, SearchProjectLinkDto, SearchProjectLinkDtoPagedListMetadataDto, SearchProjectNoteDto, SearchProjectNoteDtoPagedListMetadataDto, SearchRegionDto, SearchRegionDtoPagedListMetadataDto, SearchRepTerritoryDto, SearchRepTerritoryDtoPagedListMetadataDto, SearchRepTerritoryLocationDto, SearchRepTerritoryLocationDtoPagedListMetadataDto, SearchRepTerritoryRepContactDto, SearchRepTerritoryRepContactDtoPagedListMetadataDto, SearchRepUserDto, SearchRepUserDtoPagedListMetadataDto, SearchRevisionDto, SearchRevisionDtoPagedListMetadataDto, SearchRsdRegionDto, SearchRsdRegionDtoPagedListMetadataDto, SearchUserDetailsDto, SearchUserDetailsDtoPagedListMetadataDto, SearchUserDto, SearchUserDtoPagedListMetadataDto, SetAddressDto, SetPreferredLanguageCommand, SetUserOccupationCommand, SetUserPasswordCommand, ShareProjectCommand, ShippingLocationDto, StandardDataFormat, StandardDataType, StandardParamStyle, StaticFilesApiServiceInterface, StaticFilesGetRequestParams, StringPagedListMetadataDto, SubmitQuoteCommand, SubmitToRenewAireCommand, TableSettingDto, TableSettingsGetTableSettingRequestParams, TableSettingsSaveTableSettingRequestParams, TemperatureDto, TokenModel, TotalCountListMetadata, UpdateProjectNoteDto, UpdateProjectRevisionDto, UpdateProjectRevisionDtoJsonPatchDocument, UpdateProjectRevisionDtoOperation, UpdateProjectShareCommand, 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 };
|
|
12135
|
+
export { APIS, AddressCountry, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH, BombMaterialsApiService, BombRoutingsApiService, BombSchematicsApiService, 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, ProjectAccessLevel, ProjectBidStatusType, ProjectBidStatusesApiService, ProjectLinksApiService, ProjectLogType, ProjectNoteType, ProjectNotesApiService, ProjectRevisionsApiService, ProjectSharingAccessLevel, ProjectSharingApiService, ProjectShippingApiService, ProjectSoldToApiService, ProjectStatus, ProjectStatusesApiService, ProjectsApiService, QualifiedSpecificationStatus, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepSalesReportsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, S3ApiService, StaticFilesApiService, UnitSystem, UserStatus, UserTablesApiService, UsersApiService, UsersManagementApiService, provideApi };
|
|
12136
|
+
export type { AddressDto, AuditLogChange, AuditLogDto, AuditLogDtoPagedListMetadataDto, AuditLogsApiServiceInterface, AuditLogsSearchAuditLogsRequestParams, AuditLogsSearchProjectRevisionAuditLogsRequestParams, AuthApiServiceInterface, AuthAuthenticateByEmailTokenRequestParams, AuthAuthenticateRequestParams, AuthUpdateUserTokenPermissionsRequestParams, BaseStatusChangeCommand, BombMaterialsApiServiceInterface, BombRoutingsApiServiceInterface, BombSchematicsApiServiceInterface, CancelQuoteRequestCommand, ChangeCurrentUserPasswordCommand, ChangeEmailCommand, CompanyInformationDto, ConfigurationParameters, ConnectedGroupDto, ContactDto, ControllerProgramDto, ControllerProgramDtoPagedListMetadataDto, ControllerProgramsApiServiceInterface, ControllerProgramsCreateControllerProgramRequestParams, ControllerProgramsCreateFileDownloadUrlRequestParams, ControllerProgramsGetControllerProgramRequestParams, ControllerProgramsSearchControllerProgramsRequestParams, ControllerProgramsUpdateControllerProgramRequestParams, CreateMaterialLayerCommand, CreateProjectRevisionCommand, CreateRepSalesReportCommand, CreateRoutingLayerCommand, CreateSchematicLayerCommand, CreateUploadUrlCommand, CurrentUserDetailsDto, CurrentUserDto, CustomerDto, CustomerDtoPagedListMetadataDto, CustomerSoldToDto, CustomerSoldToDtoPagedListMetadataDto, DataFormat, DataType, DesignWeatherConditionDto, DistanceDto, DuplicateMaterialLayerDto, DuplicateProjectRequest, EmailConfirmationTokenDto, FeedbacksApiServiceInterface, FeedbacksCreateFeedbackRequestParams, FileDto, ForgotPasswordCommand, GetShippingLocationDto, GroupDto, GroupsApiServiceInterface, GroupsCreateGroupRequestParams, GroupsGetGroupRequestParams, GroupsRemoveGroupRequestParams, GroupsSearchGroupsRequestParams, GroupsUpdateGroupRequestParams, IdNameDto, Int32IdDto, InviteDto, KnownContactsApiServiceInterface, KnownContactsCreateKnowContactRequestParams, KnownContactsRemoveKnownContactRequestParams, KnownContactsSearchKnownContactsRequestParams, KnownContactsUpdateKnownContactRequestParams, LeadTimeDto, LeadTimeGroupsDto, LeadTimesApiServiceInterface, LeadTimesCreateLeadTimesTableRequestParams, LeadTimesTableDto, LeadTimesUpdateLeadTimesTableRequestParams, LinkedProjectDto, LoginUserCommand, MaintenanceApiServiceInterface, MaintenanceSetMaintenanceModeRequestParams, MaterialLayerDto, MaterialLayerHierarchyItemDto, MaterialMultiplierRuleDto, MaterialQuantityRuleDto, MaterialsCreateMaterialLayerRequestParams, MaterialsDuplicateMaterialLayerRequestParams, MaterialsGetMaterialLayerRequestParams, MaterialsRemoveGroupRequestParams, MaterialsSearchMaterialLayersRequestParams, MaterialsUpdateMaterialLayerRequestParams, NewProjectResultDto, OffsetLimitListMetadata, PagedListMetadata, Param, ParamLocation, ParamStyle, PermissionBundleDto, PermissionBundlesApiServiceInterface, PermissionBundlesCreatePermissionBundleRequestParams, PermissionBundlesGetPermissionBundleRequestParams, PermissionBundlesRemovePermissionBundleRequestParams, PermissionBundlesSearchPermissionBundlesRequestParams, PermissionBundlesUpdatePermissionBundleRequestParams, PermissionDto, PermissionsApiServiceInterface, PostPreSignedUrlDto, ProjectBidStatusAttachmentDto, ProjectBidStatusCreateBidStatusRequestParams, ProjectBidStatusDto, ProjectBidStatusGetProjectBidStatusAttachmentDownloadUrlRequestParams, ProjectBidStatusGetProjectBidStatusAttachmentPreviewUrlRequestParams, ProjectBidStatusIdIdDto, ProjectBidStatusRemoveBidStatusRequestParams, ProjectBidStatusUpdateBidStatusRequestParams, ProjectBidStatusesApiServiceInterface, ProjectDesignConditionsDto, ProjectDto, ProjectEditModeDto, ProjectFacilityDto, ProjectLinkIdIdDto, ProjectLinksApiServiceInterface, ProjectLinksCreateProjectLinkRequestParams, ProjectLinksRemoveProjectLinkRequestParams, ProjectLinksSearchProjectLinksRequestParams, ProjectLinksUpdateProjectLinkRequestParams, ProjectLogDto, ProjectNoteAttachmentDto, ProjectNoteIdIdDto, ProjectNotesApiServiceInterface, ProjectNotesCreateProjectNoteRequestParams, ProjectNotesGetProjectNoteAttachmentDownloadUrlRequestParams, ProjectNotesGetProjectNoteAttachmentPreviewRequestParams, ProjectNotesRemoveProjectNoteRequestParams, ProjectNotesSearchProjectsRequestParams, ProjectNotesUpdateProjectNoteRequestParams, ProjectRevisionIdIdDto, ProjectRevisionsApiServiceInterface, ProjectRevisionsCreateRevisionRequestParams, ProjectRevisionsGetBidStatusRequestParams, ProjectRevisionsGetProjectRevisionLogsRequestParams, ProjectRevisionsRemoveRevisionRequestParams, ProjectRevisionsSearchProjectRevisionsRequestParams, ProjectRevisionsSetRevisionAsMainRequestParams, ProjectRevisionsUpdateRevisionMetadataRequestParams, ProjectRevisionsUpdateRevisionRequestParams, ProjectShareItemDto, ProjectSharingApiServiceInterface, ProjectSharingGetProjectShareItemsRequestParams, ProjectSharingRemoveProjectShareRequestParams, ProjectSharingShareProjectRequestParams, ProjectSharingUpdateProjectShareRequestParams, ProjectShippingApiServiceInterface, ProjectShippingCreateLocationFromCsiCustomerRequestParams, ProjectShippingCreateLocationRequestParams, ProjectShippingDto, ProjectShippingGetLocationsRequestParams, ProjectShippingSearchShipToRequestParams, ProjectSoldToApiServiceInterface, ProjectSoldToDto, ProjectSoldToSearchSoldToRequestParams, ProjectStatusesApiServiceInterface, ProjectStatusesCancelQuoteRequestRequestParams, ProjectStatusesRequestOrderRequestParams, ProjectStatusesRequestQuote0RequestParams, ProjectStatusesRequestQuoteRequestParams, ProjectStatusesSubmitQuoteRequestParams, ProjectStatusesSubmitToRenewAireRequestParams, ProjectsApiServiceInterface, ProjectsCreateProjectRequestParams, ProjectsDuplicateProjectRequestParams, ProjectsExtendProjectEditModeRequestParams, ProjectsGetProjectEditModeRequestParams, ProjectsGetProjectRequestParams, ProjectsSearchProjectsRequestParams, ProjectsStartEditProjectRequestParams, ProjectsStopEditProjectRequestParams, RegionsApiServiceInterface, RegionsSearchRegionsRequestParams, RejectQuoteCommand, RepContactsApiServiceInterface, RepContactsGetRepTerritoryRepContactRequestParams, RepContactsRemoveRepTerritoryRepContactRequestParams, RepContactsSearchRepTerritoryRepContactRequestParams, RepContactsUpdateRepTerritoryRepContactRequestParams, RepSalesReportDto, RepSalesReportDtoPagedListMetadataDto, RepSalesReportsApiServiceInterface, RepSalesReportsCreateRepSalesReportDownloadUrlRequestParams, RepSalesReportsCreateRepSalesReportRequestParams, RepSalesReportsGetRepSalesReportRequestParams, RepSalesReportsRemoveRepSalesReportRequestParams, RepSalesReportsSearchRepSalesReportsRequestParams, RepTerritoriesApiServiceInterface, RepTerritoriesCreateRepTerritoryLocationRequestParams, RepTerritoriesCreateRepTerritoryRepContactRequestParams, RepTerritoriesCreateRepTerritoryRequestParams, RepTerritoriesGetRepTerritoryRequestParams, RepTerritoriesRemoveRepTerritoryRequestParams, RepTerritoriesSearchAccessibleRepUsersRequestParams, RepTerritoriesSearchRepTerritoriesRequestParams, RepTerritoriesUpdateRepTerritoryRequestParams, RepTerritoryContactsDto, RepTerritoryDto, RepTerritoryLocationDto, RepTerritoryLocationsApiServiceInterface, RepTerritoryLocationsGetRepTerritoryLocationRequestParams, RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams, RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams, RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams, RepTerritoryRepContactDto, RequestChangeEmailCommand, RequestOrderCommand, RequestQuoteCommand, ResetPasswordCommand, RoutingLayerHierarchyItemDto, RoutingsCreateRoutingLayerRequestParams, RoutingsSearchRoutingLayersRequestParams, RoutingsUpdateRoutingLayerRequestParams, RsdRegionDocumentDto, RsdRegionDto, RsdRegionRepTerritoryDto, RsdRegionUserDto, RsdRegionsApiServiceInterface, RsdRegionsCreateRsdRegionRequestParams, RsdRegionsGetRsdRegionDocumentDownloadUrlRequestParams, RsdRegionsGetRsdRegionDocumentPreviewRequestParams, RsdRegionsGetRsdRegionRequestParams, RsdRegionsRemoveRsdRegionRequestParams, RsdRegionsSearchRsdRegionTagsRequestParams, RsdRegionsSearchRsdRegionsRequestParams, RsdRegionsUpdateRsdRegionRequestParams, S3ApiServiceInterface, S3CreateFileUploadUrlRequestParams, SalesContactDto, SaveBidStatusDto, SaveControllerProgramDto, SaveGroupDto, SaveKnownContactDto, SaveLeadTimeDto, SaveLeadTimeGroupsDto, SaveLeadTimesTableDto, SaveMaterialLayerDto, SaveMaterialMultiplierRuleDto, SaveMaterialQuantityRuleDto, SavePermissionBundleDto, SaveProjectLinkDto, SaveProjectNoteDto, SaveProjectRevisionMetadataDto, SaveRepTerritoryLocationDto, SaveRepTerritoryRepContactDto, SaveRoutingLayerDto, SaveRoutingRuleDto, SaveUserDesignConditionsDto, SaveUserProjectSettingsDto, SaveUserQuoteSettingsDto, SchematicsCreateSchematicLayerRequestParams, SearchGroupDto, SearchGroupDtoPagedListMetadataDto, SearchKnownContactDto, SearchKnownContactDtoPagedListMetadataDto, SearchPermissionBundleDto, SearchPermissionBundleDtoPagedListMetadataDto, SearchProjectDto, SearchProjectDtoPagedListMetadataDto, SearchProjectLinkDto, SearchProjectLinkDtoPagedListMetadataDto, SearchProjectNoteDto, SearchProjectNoteDtoPagedListMetadataDto, SearchRegionDto, SearchRegionDtoPagedListMetadataDto, SearchRepTerritoryDto, SearchRepTerritoryDtoPagedListMetadataDto, SearchRepTerritoryLocationDto, SearchRepTerritoryLocationDtoPagedListMetadataDto, SearchRepTerritoryRepContactDto, SearchRepTerritoryRepContactDtoPagedListMetadataDto, SearchRepUserDto, SearchRepUserDtoPagedListMetadataDto, SearchRevisionDto, SearchRevisionDtoPagedListMetadataDto, SearchRsdRegionDto, SearchRsdRegionDtoPagedListMetadataDto, SearchUserDetailsDto, SearchUserDetailsDtoPagedListMetadataDto, SearchUserDto, SearchUserDtoPagedListMetadataDto, SetAddressDto, SetPreferredLanguageCommand, SetUserOccupationCommand, SetUserPasswordCommand, ShareProjectCommand, ShippingLocationDto, StandardDataFormat, StandardDataType, StandardParamStyle, StaticFilesApiServiceInterface, StaticFilesGetRequestParams, StringPagedListMetadataDto, SubmitQuoteCommand, SubmitToRenewAireCommand, TableSettingDto, TableSettingsGetTableSettingRequestParams, TableSettingsSaveTableSettingRequestParams, TemperatureDto, TokenModel, TotalCountListMetadata, UpdateProjectNoteDto, UpdateProjectRevisionDto, UpdateProjectRevisionDtoJsonPatchDocument, UpdateProjectRevisionDtoOperation, UpdateProjectShareCommand, 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 };
|