@indigina/wms-api 0.0.148 → 0.0.150
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/indigina-wms-api.mjs +537 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +458 -3
package/package.json
CHANGED
|
@@ -6344,6 +6344,97 @@ declare class UserService extends BaseService {
|
|
|
6344
6344
|
static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
|
|
6345
6345
|
}
|
|
6346
6346
|
|
|
6347
|
+
/**
|
|
6348
|
+
* Wms.API.Client
|
|
6349
|
+
*
|
|
6350
|
+
*
|
|
6351
|
+
*
|
|
6352
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6353
|
+
* https://openapi-generator.tech
|
|
6354
|
+
* Do not edit the class manually.
|
|
6355
|
+
*/
|
|
6356
|
+
declare const UserCompanyTypes: {
|
|
6357
|
+
readonly Dc: "DC";
|
|
6358
|
+
readonly Client: "Client";
|
|
6359
|
+
readonly OriginAgent: "OriginAgent";
|
|
6360
|
+
readonly DestinationAgent: "DestinationAgent";
|
|
6361
|
+
readonly Vendor: "Vendor";
|
|
6362
|
+
readonly Integration: "Integration";
|
|
6363
|
+
readonly SystemAdmin: "SystemAdmin";
|
|
6364
|
+
readonly ReportAdmin: "ReportAdmin";
|
|
6365
|
+
readonly SsSysAdmin: "SS_SysAdmin";
|
|
6366
|
+
readonly SsReportAdmin: "SS_ReportAdmin";
|
|
6367
|
+
};
|
|
6368
|
+
type UserCompanyTypes = typeof UserCompanyTypes[keyof typeof UserCompanyTypes];
|
|
6369
|
+
|
|
6370
|
+
/**
|
|
6371
|
+
* Wms.API.Client
|
|
6372
|
+
*
|
|
6373
|
+
*
|
|
6374
|
+
*
|
|
6375
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6376
|
+
* https://openapi-generator.tech
|
|
6377
|
+
* Do not edit the class manually.
|
|
6378
|
+
*/
|
|
6379
|
+
|
|
6380
|
+
interface UserCompany {
|
|
6381
|
+
id: number;
|
|
6382
|
+
userId: string;
|
|
6383
|
+
companyId: string;
|
|
6384
|
+
type: UserCompanyTypes;
|
|
6385
|
+
}
|
|
6386
|
+
declare namespace UserCompany {
|
|
6387
|
+
}
|
|
6388
|
+
|
|
6389
|
+
/**
|
|
6390
|
+
* Wms.API.Client
|
|
6391
|
+
*
|
|
6392
|
+
*
|
|
6393
|
+
*
|
|
6394
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6395
|
+
* https://openapi-generator.tech
|
|
6396
|
+
* Do not edit the class manually.
|
|
6397
|
+
*/
|
|
6398
|
+
|
|
6399
|
+
interface UserCompanies {
|
|
6400
|
+
total: number;
|
|
6401
|
+
data: Array<UserCompany>;
|
|
6402
|
+
}
|
|
6403
|
+
|
|
6404
|
+
declare class UserCompaniesService extends BaseService {
|
|
6405
|
+
protected httpClient: HttpClient;
|
|
6406
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
6407
|
+
/**
|
|
6408
|
+
* Get a paginated list of user companies
|
|
6409
|
+
* @endpoint get /userCompanies
|
|
6410
|
+
* @param $skip
|
|
6411
|
+
* @param $top
|
|
6412
|
+
* @param $orderby
|
|
6413
|
+
* @param $filter
|
|
6414
|
+
* @param $search
|
|
6415
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6416
|
+
* @param reportProgress flag to report request and response progress.
|
|
6417
|
+
* @param options additional options
|
|
6418
|
+
*/
|
|
6419
|
+
getUserCompanies($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
6420
|
+
httpHeaderAccept?: 'application/json';
|
|
6421
|
+
context?: HttpContext;
|
|
6422
|
+
transferCache?: boolean;
|
|
6423
|
+
}): Observable<UserCompanies>;
|
|
6424
|
+
getUserCompanies($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
6425
|
+
httpHeaderAccept?: 'application/json';
|
|
6426
|
+
context?: HttpContext;
|
|
6427
|
+
transferCache?: boolean;
|
|
6428
|
+
}): Observable<HttpResponse<UserCompanies>>;
|
|
6429
|
+
getUserCompanies($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6430
|
+
httpHeaderAccept?: 'application/json';
|
|
6431
|
+
context?: HttpContext;
|
|
6432
|
+
transferCache?: boolean;
|
|
6433
|
+
}): Observable<HttpEvent<UserCompanies>>;
|
|
6434
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserCompaniesService, [null, { optional: true; }, { optional: true; }]>;
|
|
6435
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserCompaniesService>;
|
|
6436
|
+
}
|
|
6437
|
+
|
|
6347
6438
|
/**
|
|
6348
6439
|
* Wms.API.Client
|
|
6349
6440
|
*
|
|
@@ -6483,6 +6574,370 @@ declare class UsersInternalService extends BaseService {
|
|
|
6483
6574
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersInternalService>;
|
|
6484
6575
|
}
|
|
6485
6576
|
|
|
6577
|
+
/**
|
|
6578
|
+
* Wms.API.Client
|
|
6579
|
+
*
|
|
6580
|
+
*
|
|
6581
|
+
*
|
|
6582
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6583
|
+
* https://openapi-generator.tech
|
|
6584
|
+
* Do not edit the class manually.
|
|
6585
|
+
*/
|
|
6586
|
+
|
|
6587
|
+
interface WaveConfigGroup {
|
|
6588
|
+
id?: number;
|
|
6589
|
+
dcId?: string;
|
|
6590
|
+
clientId?: string;
|
|
6591
|
+
company?: Company;
|
|
6592
|
+
code?: string;
|
|
6593
|
+
description?: string;
|
|
6594
|
+
createdDate?: string;
|
|
6595
|
+
createdUserId?: string;
|
|
6596
|
+
lastModifiedDate?: string | null;
|
|
6597
|
+
lastModifiedUserId?: string | null;
|
|
6598
|
+
}
|
|
6599
|
+
|
|
6600
|
+
/**
|
|
6601
|
+
* Wms.API.Client
|
|
6602
|
+
*
|
|
6603
|
+
*
|
|
6604
|
+
*
|
|
6605
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6606
|
+
* https://openapi-generator.tech
|
|
6607
|
+
* Do not edit the class manually.
|
|
6608
|
+
*/
|
|
6609
|
+
interface WaveConfiguration {
|
|
6610
|
+
id?: string;
|
|
6611
|
+
dcId?: string;
|
|
6612
|
+
clientId?: string;
|
|
6613
|
+
code?: string;
|
|
6614
|
+
description?: string;
|
|
6615
|
+
sequence?: number;
|
|
6616
|
+
enabled?: boolean;
|
|
6617
|
+
}
|
|
6618
|
+
|
|
6619
|
+
/**
|
|
6620
|
+
* Wms.API.Client
|
|
6621
|
+
*
|
|
6622
|
+
*
|
|
6623
|
+
*
|
|
6624
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6625
|
+
* https://openapi-generator.tech
|
|
6626
|
+
* Do not edit the class manually.
|
|
6627
|
+
*/
|
|
6628
|
+
|
|
6629
|
+
interface WaveConfigGroupConfiguration {
|
|
6630
|
+
id?: number;
|
|
6631
|
+
waveConfigGroupId?: number;
|
|
6632
|
+
waveConfigurationId?: string;
|
|
6633
|
+
createdDate?: string;
|
|
6634
|
+
createdUserId?: string;
|
|
6635
|
+
waveConfiguration?: WaveConfiguration;
|
|
6636
|
+
}
|
|
6637
|
+
|
|
6638
|
+
/**
|
|
6639
|
+
* Wms.API.Client
|
|
6640
|
+
*
|
|
6641
|
+
*
|
|
6642
|
+
*
|
|
6643
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6644
|
+
* https://openapi-generator.tech
|
|
6645
|
+
* Do not edit the class manually.
|
|
6646
|
+
*/
|
|
6647
|
+
interface WaveConfigGroupConfigurationView {
|
|
6648
|
+
id?: number;
|
|
6649
|
+
code?: string;
|
|
6650
|
+
description?: string;
|
|
6651
|
+
sequence?: number;
|
|
6652
|
+
}
|
|
6653
|
+
|
|
6654
|
+
/**
|
|
6655
|
+
* Wms.API.Client
|
|
6656
|
+
*
|
|
6657
|
+
*
|
|
6658
|
+
*
|
|
6659
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6660
|
+
* https://openapi-generator.tech
|
|
6661
|
+
* Do not edit the class manually.
|
|
6662
|
+
*/
|
|
6663
|
+
|
|
6664
|
+
interface WaveConfigGroupConfigurations {
|
|
6665
|
+
total: number;
|
|
6666
|
+
data: Array<WaveConfigGroupConfigurationView>;
|
|
6667
|
+
}
|
|
6668
|
+
|
|
6669
|
+
/**
|
|
6670
|
+
* Wms.API.Client
|
|
6671
|
+
*
|
|
6672
|
+
*
|
|
6673
|
+
*
|
|
6674
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6675
|
+
* https://openapi-generator.tech
|
|
6676
|
+
* Do not edit the class manually.
|
|
6677
|
+
*/
|
|
6678
|
+
interface WaveConfigGroupView {
|
|
6679
|
+
id?: number;
|
|
6680
|
+
client?: string;
|
|
6681
|
+
code?: string;
|
|
6682
|
+
description?: string;
|
|
6683
|
+
}
|
|
6684
|
+
|
|
6685
|
+
/**
|
|
6686
|
+
* Wms.API.Client
|
|
6687
|
+
*
|
|
6688
|
+
*
|
|
6689
|
+
*
|
|
6690
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6691
|
+
* https://openapi-generator.tech
|
|
6692
|
+
* Do not edit the class manually.
|
|
6693
|
+
*/
|
|
6694
|
+
|
|
6695
|
+
interface WaveConfigGroups {
|
|
6696
|
+
total: number;
|
|
6697
|
+
data: Array<WaveConfigGroupView>;
|
|
6698
|
+
}
|
|
6699
|
+
|
|
6700
|
+
/**
|
|
6701
|
+
* Wms.API.Client
|
|
6702
|
+
*
|
|
6703
|
+
*
|
|
6704
|
+
*
|
|
6705
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6706
|
+
* https://openapi-generator.tech
|
|
6707
|
+
* Do not edit the class manually.
|
|
6708
|
+
*/
|
|
6709
|
+
|
|
6710
|
+
interface WaveConfigurations {
|
|
6711
|
+
total: number;
|
|
6712
|
+
data: Array<WaveConfiguration>;
|
|
6713
|
+
}
|
|
6714
|
+
|
|
6715
|
+
declare class WaveConfigGroupsService extends BaseService {
|
|
6716
|
+
protected httpClient: HttpClient;
|
|
6717
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
6718
|
+
/**
|
|
6719
|
+
* Create a wave config group
|
|
6720
|
+
* @endpoint post /waveConfigGroups
|
|
6721
|
+
* @param waveConfigGroup
|
|
6722
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6723
|
+
* @param reportProgress flag to report request and response progress.
|
|
6724
|
+
* @param options additional options
|
|
6725
|
+
*/
|
|
6726
|
+
createWaveConfigGroup(waveConfigGroup: WaveConfigGroup, observe?: 'body', reportProgress?: boolean, options?: {
|
|
6727
|
+
httpHeaderAccept?: 'application/json';
|
|
6728
|
+
context?: HttpContext;
|
|
6729
|
+
transferCache?: boolean;
|
|
6730
|
+
}): Observable<WaveConfigGroup>;
|
|
6731
|
+
createWaveConfigGroup(waveConfigGroup: WaveConfigGroup, observe?: 'response', reportProgress?: boolean, options?: {
|
|
6732
|
+
httpHeaderAccept?: 'application/json';
|
|
6733
|
+
context?: HttpContext;
|
|
6734
|
+
transferCache?: boolean;
|
|
6735
|
+
}): Observable<HttpResponse<WaveConfigGroup>>;
|
|
6736
|
+
createWaveConfigGroup(waveConfigGroup: WaveConfigGroup, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6737
|
+
httpHeaderAccept?: 'application/json';
|
|
6738
|
+
context?: HttpContext;
|
|
6739
|
+
transferCache?: boolean;
|
|
6740
|
+
}): Observable<HttpEvent<WaveConfigGroup>>;
|
|
6741
|
+
/**
|
|
6742
|
+
* Add a configuration to a wave config group
|
|
6743
|
+
* @endpoint post /waveConfigGroups/{waveConfigGroupId}/configurations
|
|
6744
|
+
* @param waveConfigGroupId
|
|
6745
|
+
* @param waveConfigGroupConfiguration
|
|
6746
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6747
|
+
* @param reportProgress flag to report request and response progress.
|
|
6748
|
+
* @param options additional options
|
|
6749
|
+
*/
|
|
6750
|
+
createWaveConfigGroupConfiguration(waveConfigGroupId: number, waveConfigGroupConfiguration: WaveConfigGroupConfiguration, observe?: 'body', reportProgress?: boolean, options?: {
|
|
6751
|
+
httpHeaderAccept?: 'application/json';
|
|
6752
|
+
context?: HttpContext;
|
|
6753
|
+
transferCache?: boolean;
|
|
6754
|
+
}): Observable<WaveConfigGroupConfiguration>;
|
|
6755
|
+
createWaveConfigGroupConfiguration(waveConfigGroupId: number, waveConfigGroupConfiguration: WaveConfigGroupConfiguration, observe?: 'response', reportProgress?: boolean, options?: {
|
|
6756
|
+
httpHeaderAccept?: 'application/json';
|
|
6757
|
+
context?: HttpContext;
|
|
6758
|
+
transferCache?: boolean;
|
|
6759
|
+
}): Observable<HttpResponse<WaveConfigGroupConfiguration>>;
|
|
6760
|
+
createWaveConfigGroupConfiguration(waveConfigGroupId: number, waveConfigGroupConfiguration: WaveConfigGroupConfiguration, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6761
|
+
httpHeaderAccept?: 'application/json';
|
|
6762
|
+
context?: HttpContext;
|
|
6763
|
+
transferCache?: boolean;
|
|
6764
|
+
}): Observable<HttpEvent<WaveConfigGroupConfiguration>>;
|
|
6765
|
+
/**
|
|
6766
|
+
* Delete a wave config group
|
|
6767
|
+
* @endpoint delete /waveConfigGroups/{id}
|
|
6768
|
+
* @param id
|
|
6769
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6770
|
+
* @param reportProgress flag to report request and response progress.
|
|
6771
|
+
* @param options additional options
|
|
6772
|
+
*/
|
|
6773
|
+
deleteWaveConfigGroup(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
6774
|
+
httpHeaderAccept?: undefined;
|
|
6775
|
+
context?: HttpContext;
|
|
6776
|
+
transferCache?: boolean;
|
|
6777
|
+
}): Observable<any>;
|
|
6778
|
+
deleteWaveConfigGroup(id: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
6779
|
+
httpHeaderAccept?: undefined;
|
|
6780
|
+
context?: HttpContext;
|
|
6781
|
+
transferCache?: boolean;
|
|
6782
|
+
}): Observable<HttpResponse<any>>;
|
|
6783
|
+
deleteWaveConfigGroup(id: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6784
|
+
httpHeaderAccept?: undefined;
|
|
6785
|
+
context?: HttpContext;
|
|
6786
|
+
transferCache?: boolean;
|
|
6787
|
+
}): Observable<HttpEvent<any>>;
|
|
6788
|
+
/**
|
|
6789
|
+
* Remove a configuration from a wave config group
|
|
6790
|
+
* @endpoint delete /waveConfigGroups/{waveConfigGroupId}/configurations/{id}
|
|
6791
|
+
* @param waveConfigGroupId
|
|
6792
|
+
* @param id
|
|
6793
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6794
|
+
* @param reportProgress flag to report request and response progress.
|
|
6795
|
+
* @param options additional options
|
|
6796
|
+
*/
|
|
6797
|
+
deleteWaveConfigGroupConfiguration(waveConfigGroupId: number, id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
6798
|
+
httpHeaderAccept?: undefined;
|
|
6799
|
+
context?: HttpContext;
|
|
6800
|
+
transferCache?: boolean;
|
|
6801
|
+
}): Observable<any>;
|
|
6802
|
+
deleteWaveConfigGroupConfiguration(waveConfigGroupId: number, id: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
6803
|
+
httpHeaderAccept?: undefined;
|
|
6804
|
+
context?: HttpContext;
|
|
6805
|
+
transferCache?: boolean;
|
|
6806
|
+
}): Observable<HttpResponse<any>>;
|
|
6807
|
+
deleteWaveConfigGroupConfiguration(waveConfigGroupId: number, id: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6808
|
+
httpHeaderAccept?: undefined;
|
|
6809
|
+
context?: HttpContext;
|
|
6810
|
+
transferCache?: boolean;
|
|
6811
|
+
}): Observable<HttpEvent<any>>;
|
|
6812
|
+
/**
|
|
6813
|
+
* Get a wave config group by Id
|
|
6814
|
+
* @endpoint get /waveConfigGroups/{id}
|
|
6815
|
+
* @param id
|
|
6816
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6817
|
+
* @param reportProgress flag to report request and response progress.
|
|
6818
|
+
* @param options additional options
|
|
6819
|
+
*/
|
|
6820
|
+
getWaveConfigGroup(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
6821
|
+
httpHeaderAccept?: 'application/json';
|
|
6822
|
+
context?: HttpContext;
|
|
6823
|
+
transferCache?: boolean;
|
|
6824
|
+
}): Observable<WaveConfigGroupView>;
|
|
6825
|
+
getWaveConfigGroup(id: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
6826
|
+
httpHeaderAccept?: 'application/json';
|
|
6827
|
+
context?: HttpContext;
|
|
6828
|
+
transferCache?: boolean;
|
|
6829
|
+
}): Observable<HttpResponse<WaveConfigGroupView>>;
|
|
6830
|
+
getWaveConfigGroup(id: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6831
|
+
httpHeaderAccept?: 'application/json';
|
|
6832
|
+
context?: HttpContext;
|
|
6833
|
+
transferCache?: boolean;
|
|
6834
|
+
}): Observable<HttpEvent<WaveConfigGroupView>>;
|
|
6835
|
+
/**
|
|
6836
|
+
* Get available wave configurations for a wave config group
|
|
6837
|
+
* @endpoint get /waveConfigGroups/{waveConfigGroupId}/available-configurations
|
|
6838
|
+
* @param waveConfigGroupId
|
|
6839
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6840
|
+
* @param reportProgress flag to report request and response progress.
|
|
6841
|
+
* @param options additional options
|
|
6842
|
+
*/
|
|
6843
|
+
getWaveConfigGroupAvailableConfigurations(waveConfigGroupId: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
6844
|
+
httpHeaderAccept?: 'application/json';
|
|
6845
|
+
context?: HttpContext;
|
|
6846
|
+
transferCache?: boolean;
|
|
6847
|
+
}): Observable<WaveConfigurations>;
|
|
6848
|
+
getWaveConfigGroupAvailableConfigurations(waveConfigGroupId: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
6849
|
+
httpHeaderAccept?: 'application/json';
|
|
6850
|
+
context?: HttpContext;
|
|
6851
|
+
transferCache?: boolean;
|
|
6852
|
+
}): Observable<HttpResponse<WaveConfigurations>>;
|
|
6853
|
+
getWaveConfigGroupAvailableConfigurations(waveConfigGroupId: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6854
|
+
httpHeaderAccept?: 'application/json';
|
|
6855
|
+
context?: HttpContext;
|
|
6856
|
+
transferCache?: boolean;
|
|
6857
|
+
}): Observable<HttpEvent<WaveConfigurations>>;
|
|
6858
|
+
/**
|
|
6859
|
+
* Get configurations for a wave config group
|
|
6860
|
+
* @endpoint get /waveConfigGroups/{waveConfigGroupId}/configurations
|
|
6861
|
+
* @param waveConfigGroupId
|
|
6862
|
+
* @param $skip
|
|
6863
|
+
* @param $top
|
|
6864
|
+
* @param $orderby
|
|
6865
|
+
* @param $filter
|
|
6866
|
+
* @param $search
|
|
6867
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6868
|
+
* @param reportProgress flag to report request and response progress.
|
|
6869
|
+
* @param options additional options
|
|
6870
|
+
*/
|
|
6871
|
+
getWaveConfigGroupConfigurations(waveConfigGroupId: number, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
6872
|
+
httpHeaderAccept?: 'application/json';
|
|
6873
|
+
context?: HttpContext;
|
|
6874
|
+
transferCache?: boolean;
|
|
6875
|
+
}): Observable<WaveConfigGroupConfigurations>;
|
|
6876
|
+
getWaveConfigGroupConfigurations(waveConfigGroupId: number, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
6877
|
+
httpHeaderAccept?: 'application/json';
|
|
6878
|
+
context?: HttpContext;
|
|
6879
|
+
transferCache?: boolean;
|
|
6880
|
+
}): Observable<HttpResponse<WaveConfigGroupConfigurations>>;
|
|
6881
|
+
getWaveConfigGroupConfigurations(waveConfigGroupId: number, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6882
|
+
httpHeaderAccept?: 'application/json';
|
|
6883
|
+
context?: HttpContext;
|
|
6884
|
+
transferCache?: boolean;
|
|
6885
|
+
}): Observable<HttpEvent<WaveConfigGroupConfigurations>>;
|
|
6886
|
+
/**
|
|
6887
|
+
* Get a paginated list of wave config groups
|
|
6888
|
+
* @endpoint get /waveConfigGroups
|
|
6889
|
+
* @param $skip
|
|
6890
|
+
* @param $top
|
|
6891
|
+
* @param $orderby
|
|
6892
|
+
* @param $filter
|
|
6893
|
+
* @param $search
|
|
6894
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6895
|
+
* @param reportProgress flag to report request and response progress.
|
|
6896
|
+
* @param options additional options
|
|
6897
|
+
*/
|
|
6898
|
+
getWaveConfigGroups($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
6899
|
+
httpHeaderAccept?: 'application/json';
|
|
6900
|
+
context?: HttpContext;
|
|
6901
|
+
transferCache?: boolean;
|
|
6902
|
+
}): Observable<WaveConfigGroups>;
|
|
6903
|
+
getWaveConfigGroups($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
6904
|
+
httpHeaderAccept?: 'application/json';
|
|
6905
|
+
context?: HttpContext;
|
|
6906
|
+
transferCache?: boolean;
|
|
6907
|
+
}): Observable<HttpResponse<WaveConfigGroups>>;
|
|
6908
|
+
getWaveConfigGroups($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6909
|
+
httpHeaderAccept?: 'application/json';
|
|
6910
|
+
context?: HttpContext;
|
|
6911
|
+
transferCache?: boolean;
|
|
6912
|
+
}): Observable<HttpEvent<WaveConfigGroups>>;
|
|
6913
|
+
/**
|
|
6914
|
+
* Update a wave config groupeliveries
|
|
6915
|
+
* @endpoint put /waveConfigGroups/{id}
|
|
6916
|
+
* @param id
|
|
6917
|
+
* @param waveConfigGroup
|
|
6918
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6919
|
+
* @param reportProgress flag to report request and response progress.
|
|
6920
|
+
* @param options additional options
|
|
6921
|
+
*/
|
|
6922
|
+
updateWaveConfigGroup(id: number, waveConfigGroup: WaveConfigGroup, observe?: 'body', reportProgress?: boolean, options?: {
|
|
6923
|
+
httpHeaderAccept?: 'application/json';
|
|
6924
|
+
context?: HttpContext;
|
|
6925
|
+
transferCache?: boolean;
|
|
6926
|
+
}): Observable<WaveConfigGroup>;
|
|
6927
|
+
updateWaveConfigGroup(id: number, waveConfigGroup: WaveConfigGroup, observe?: 'response', reportProgress?: boolean, options?: {
|
|
6928
|
+
httpHeaderAccept?: 'application/json';
|
|
6929
|
+
context?: HttpContext;
|
|
6930
|
+
transferCache?: boolean;
|
|
6931
|
+
}): Observable<HttpResponse<WaveConfigGroup>>;
|
|
6932
|
+
updateWaveConfigGroup(id: number, waveConfigGroup: WaveConfigGroup, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6933
|
+
httpHeaderAccept?: 'application/json';
|
|
6934
|
+
context?: HttpContext;
|
|
6935
|
+
transferCache?: boolean;
|
|
6936
|
+
}): Observable<HttpEvent<WaveConfigGroup>>;
|
|
6937
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WaveConfigGroupsService, [null, { optional: true; }, { optional: true; }]>;
|
|
6938
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WaveConfigGroupsService>;
|
|
6939
|
+
}
|
|
6940
|
+
|
|
6486
6941
|
/**
|
|
6487
6942
|
* Wms.API.Client
|
|
6488
6943
|
*
|
|
@@ -6989,7 +7444,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
6989
7444
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
6990
7445
|
}
|
|
6991
7446
|
|
|
6992
|
-
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserPrintersService | typeof UsersInternalService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WavesByPickReleaseIdService)[];
|
|
7447
|
+
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WavesByPickReleaseIdService)[];
|
|
6993
7448
|
|
|
6994
7449
|
/**
|
|
6995
7450
|
* Wms.API.Client
|
|
@@ -7262,5 +7717,5 @@ declare class ApiModule {
|
|
|
7262
7717
|
|
|
7263
7718
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
7264
7719
|
|
|
7265
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, PrintTypePrinterTray, PrintTypePrinterTrayCreateModel, PrintTypePrinterTrayDataModel, PrintTypePrinterTrayUpdateModel, PrintTypes, Printer, PrinterCreateModel, PrinterDataModel, PrinterTray, PrinterTrayCreateModel, PrinterTrayDataModel, PrinterTrayUpdateModel, PrinterUpdateModel, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
7266
|
-
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, Param, ParamLocation, ParamStyle, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, Waves };
|
|
7720
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, PrintTypePrinterTray, PrintTypePrinterTrayCreateModel, PrintTypePrinterTrayDataModel, PrintTypePrinterTrayUpdateModel, PrintTypes, Printer, PrinterCreateModel, PrinterDataModel, PrinterTray, PrinterTrayCreateModel, PrinterTrayDataModel, PrinterTrayUpdateModel, PrinterUpdateModel, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompany, UserCompanyType, UserCompanyTypes, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
7721
|
+
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, Param, ParamLocation, ParamStyle, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserCompanies, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurations, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, Waves };
|