@indigina/wms-api 0.0.180 → 0.0.182
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 +594 -102
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +493 -92
package/package.json
CHANGED
|
@@ -2098,6 +2098,39 @@ interface Companies {
|
|
|
2098
2098
|
data: Array<Company>;
|
|
2099
2099
|
}
|
|
2100
2100
|
|
|
2101
|
+
/**
|
|
2102
|
+
* Wms.API.Client
|
|
2103
|
+
*
|
|
2104
|
+
*
|
|
2105
|
+
*
|
|
2106
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2107
|
+
* https://openapi-generator.tech
|
|
2108
|
+
* Do not edit the class manually.
|
|
2109
|
+
*/
|
|
2110
|
+
declare const CompanyType: {
|
|
2111
|
+
readonly Carrier: "Carrier";
|
|
2112
|
+
readonly TransportServices: "TransportServices";
|
|
2113
|
+
readonly Company: "Company";
|
|
2114
|
+
readonly Vendor: "Vendor";
|
|
2115
|
+
readonly Customer: "Customer";
|
|
2116
|
+
readonly ShippingAgent: "ShippingAgent";
|
|
2117
|
+
readonly ShipFrom: "ShipFrom";
|
|
2118
|
+
readonly OriginAgent: "OriginAgent";
|
|
2119
|
+
readonly ShipTo: "ShipTo";
|
|
2120
|
+
readonly BuyingAgent: "BuyingAgent";
|
|
2121
|
+
readonly Seller: "Seller";
|
|
2122
|
+
readonly DistributionCentre: "DistributionCentre";
|
|
2123
|
+
readonly Client: "Client";
|
|
2124
|
+
readonly SysAdmin: "SysAdmin";
|
|
2125
|
+
readonly LocalAgent: "LocalAgent";
|
|
2126
|
+
readonly CarrierProvider: "CarrierProvider";
|
|
2127
|
+
readonly WholesaleCustomer: "WholesaleCustomer";
|
|
2128
|
+
readonly WebCustomer: "WebCustomer";
|
|
2129
|
+
readonly DestinationAgent: "DestinationAgent";
|
|
2130
|
+
readonly ForwardingAgent: "ForwardingAgent";
|
|
2131
|
+
};
|
|
2132
|
+
type CompanyType = typeof CompanyType[keyof typeof CompanyType];
|
|
2133
|
+
|
|
2101
2134
|
/**
|
|
2102
2135
|
* Wms.API.Client
|
|
2103
2136
|
*
|
|
@@ -2177,6 +2210,33 @@ declare class CompaniesService extends BaseService {
|
|
|
2177
2210
|
context?: HttpContext;
|
|
2178
2211
|
transferCache?: boolean;
|
|
2179
2212
|
}): Observable<HttpEvent<Companies>>;
|
|
2213
|
+
/**
|
|
2214
|
+
* Getting companies by company type
|
|
2215
|
+
* @endpoint get /companies/{companyType}
|
|
2216
|
+
* @param companyType
|
|
2217
|
+
* @param $skip
|
|
2218
|
+
* @param $top
|
|
2219
|
+
* @param $orderby
|
|
2220
|
+
* @param $filter
|
|
2221
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2222
|
+
* @param reportProgress flag to report request and response progress.
|
|
2223
|
+
* @param options additional options
|
|
2224
|
+
*/
|
|
2225
|
+
getCompaniesByCompanyType(companyType: CompanyType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2226
|
+
httpHeaderAccept?: 'application/json';
|
|
2227
|
+
context?: HttpContext;
|
|
2228
|
+
transferCache?: boolean;
|
|
2229
|
+
}): Observable<Companies>;
|
|
2230
|
+
getCompaniesByCompanyType(companyType: CompanyType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2231
|
+
httpHeaderAccept?: 'application/json';
|
|
2232
|
+
context?: HttpContext;
|
|
2233
|
+
transferCache?: boolean;
|
|
2234
|
+
}): Observable<HttpResponse<Companies>>;
|
|
2235
|
+
getCompaniesByCompanyType(companyType: CompanyType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2236
|
+
httpHeaderAccept?: 'application/json';
|
|
2237
|
+
context?: HttpContext;
|
|
2238
|
+
transferCache?: boolean;
|
|
2239
|
+
}): Observable<HttpEvent<Companies>>;
|
|
2180
2240
|
/**
|
|
2181
2241
|
* Getting ship-to companies
|
|
2182
2242
|
* @endpoint get /companies/ship-to
|
|
@@ -3732,6 +3792,286 @@ declare class DeliveryItemsService extends BaseService {
|
|
|
3732
3792
|
static ɵprov: i0.ɵɵInjectableDeclaration<DeliveryItemsService>;
|
|
3733
3793
|
}
|
|
3734
3794
|
|
|
3795
|
+
/**
|
|
3796
|
+
* Wms.API.Client
|
|
3797
|
+
*
|
|
3798
|
+
*
|
|
3799
|
+
*
|
|
3800
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3801
|
+
* https://openapi-generator.tech
|
|
3802
|
+
* Do not edit the class manually.
|
|
3803
|
+
*/
|
|
3804
|
+
interface CarrierServiceType {
|
|
3805
|
+
id: string;
|
|
3806
|
+
serviceName?: string;
|
|
3807
|
+
}
|
|
3808
|
+
|
|
3809
|
+
/**
|
|
3810
|
+
* Wms.API.Client
|
|
3811
|
+
*
|
|
3812
|
+
*
|
|
3813
|
+
*
|
|
3814
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3815
|
+
* https://openapi-generator.tech
|
|
3816
|
+
* Do not edit the class manually.
|
|
3817
|
+
*/
|
|
3818
|
+
interface PackageType {
|
|
3819
|
+
id: number;
|
|
3820
|
+
name?: string;
|
|
3821
|
+
}
|
|
3822
|
+
|
|
3823
|
+
/**
|
|
3824
|
+
* Wms.API.Client
|
|
3825
|
+
*
|
|
3826
|
+
*
|
|
3827
|
+
*
|
|
3828
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3829
|
+
* https://openapi-generator.tech
|
|
3830
|
+
* Do not edit the class manually.
|
|
3831
|
+
*/
|
|
3832
|
+
|
|
3833
|
+
interface DispatchBoxType {
|
|
3834
|
+
id?: string;
|
|
3835
|
+
dispatchBoxTypeNumber?: number;
|
|
3836
|
+
dcId?: string;
|
|
3837
|
+
clientId?: string | null;
|
|
3838
|
+
name?: string;
|
|
3839
|
+
packageTypeId?: number | null;
|
|
3840
|
+
carrierId?: string | null;
|
|
3841
|
+
carrierServiceTypeId?: string | null;
|
|
3842
|
+
useForAutoLabelGeneration?: boolean;
|
|
3843
|
+
length?: number | null;
|
|
3844
|
+
width?: number | null;
|
|
3845
|
+
height?: number | null;
|
|
3846
|
+
weight?: number | null;
|
|
3847
|
+
lengthCm?: number | null;
|
|
3848
|
+
widthCm?: number | null;
|
|
3849
|
+
heightCm?: number | null;
|
|
3850
|
+
weightKg?: number | null;
|
|
3851
|
+
dimensionUomId?: string | null;
|
|
3852
|
+
weightUomId?: string | null;
|
|
3853
|
+
createdUserId?: string;
|
|
3854
|
+
createdDate?: string;
|
|
3855
|
+
lastModifiedUserId?: string | null;
|
|
3856
|
+
lastModifiedDate?: string | null;
|
|
3857
|
+
client?: Company;
|
|
3858
|
+
carrier?: Company;
|
|
3859
|
+
packageType?: PackageType;
|
|
3860
|
+
carrierServiceType?: CarrierServiceType;
|
|
3861
|
+
}
|
|
3862
|
+
|
|
3863
|
+
/**
|
|
3864
|
+
* Wms.API.Client
|
|
3865
|
+
*
|
|
3866
|
+
*
|
|
3867
|
+
*
|
|
3868
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3869
|
+
* https://openapi-generator.tech
|
|
3870
|
+
* Do not edit the class manually.
|
|
3871
|
+
*/
|
|
3872
|
+
interface CarrierServiceTypeSummary {
|
|
3873
|
+
serviceName?: string;
|
|
3874
|
+
}
|
|
3875
|
+
|
|
3876
|
+
/**
|
|
3877
|
+
* Wms.API.Client
|
|
3878
|
+
*
|
|
3879
|
+
*
|
|
3880
|
+
*
|
|
3881
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3882
|
+
* https://openapi-generator.tech
|
|
3883
|
+
* Do not edit the class manually.
|
|
3884
|
+
*/
|
|
3885
|
+
interface CompanyDescriptionSummary {
|
|
3886
|
+
companyDescription?: string | null;
|
|
3887
|
+
}
|
|
3888
|
+
|
|
3889
|
+
/**
|
|
3890
|
+
* Wms.API.Client
|
|
3891
|
+
*
|
|
3892
|
+
*
|
|
3893
|
+
*
|
|
3894
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3895
|
+
* https://openapi-generator.tech
|
|
3896
|
+
* Do not edit the class manually.
|
|
3897
|
+
*/
|
|
3898
|
+
interface PackageTypeSummary {
|
|
3899
|
+
name?: string;
|
|
3900
|
+
}
|
|
3901
|
+
|
|
3902
|
+
/**
|
|
3903
|
+
* Wms.API.Client
|
|
3904
|
+
*
|
|
3905
|
+
*
|
|
3906
|
+
*
|
|
3907
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3908
|
+
* https://openapi-generator.tech
|
|
3909
|
+
* Do not edit the class manually.
|
|
3910
|
+
*/
|
|
3911
|
+
|
|
3912
|
+
interface DispatchBoxTypeView {
|
|
3913
|
+
id: string;
|
|
3914
|
+
clientId?: string | null;
|
|
3915
|
+
client?: CompanyDescriptionSummary | null;
|
|
3916
|
+
name: string;
|
|
3917
|
+
packageTypeId?: number | null;
|
|
3918
|
+
packageType?: PackageTypeSummary | null;
|
|
3919
|
+
length?: number | null;
|
|
3920
|
+
width?: number | null;
|
|
3921
|
+
height?: number | null;
|
|
3922
|
+
useForAutoLabelGeneration: boolean;
|
|
3923
|
+
weight?: number | null;
|
|
3924
|
+
carrierId?: string | null;
|
|
3925
|
+
carrier?: CompanyDescriptionSummary | null;
|
|
3926
|
+
carrierServiceTypeId?: string | null;
|
|
3927
|
+
carrierServiceType?: CarrierServiceTypeSummary | null;
|
|
3928
|
+
createdDate: string;
|
|
3929
|
+
createdUserId: string;
|
|
3930
|
+
createdBy?: string;
|
|
3931
|
+
dispatchBoxTypeNumber: number;
|
|
3932
|
+
}
|
|
3933
|
+
|
|
3934
|
+
/**
|
|
3935
|
+
* Wms.API.Client
|
|
3936
|
+
*
|
|
3937
|
+
*
|
|
3938
|
+
*
|
|
3939
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3940
|
+
* https://openapi-generator.tech
|
|
3941
|
+
* Do not edit the class manually.
|
|
3942
|
+
*/
|
|
3943
|
+
|
|
3944
|
+
interface DispatchBoxTypes {
|
|
3945
|
+
total: number;
|
|
3946
|
+
data: Array<DispatchBoxTypeView>;
|
|
3947
|
+
}
|
|
3948
|
+
|
|
3949
|
+
declare class DispatchBoxTypesService extends BaseService {
|
|
3950
|
+
protected httpClient: HttpClient;
|
|
3951
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
3952
|
+
/**
|
|
3953
|
+
* Create a dispatch box type
|
|
3954
|
+
* @endpoint post /dispatchBoxTypes
|
|
3955
|
+
* @param dispatchBoxType
|
|
3956
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3957
|
+
* @param reportProgress flag to report request and response progress.
|
|
3958
|
+
* @param options additional options
|
|
3959
|
+
*/
|
|
3960
|
+
createDispatchBoxType(dispatchBoxType: DispatchBoxType, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3961
|
+
httpHeaderAccept?: 'application/json';
|
|
3962
|
+
context?: HttpContext;
|
|
3963
|
+
transferCache?: boolean;
|
|
3964
|
+
}): Observable<DispatchBoxType>;
|
|
3965
|
+
createDispatchBoxType(dispatchBoxType: DispatchBoxType, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3966
|
+
httpHeaderAccept?: 'application/json';
|
|
3967
|
+
context?: HttpContext;
|
|
3968
|
+
transferCache?: boolean;
|
|
3969
|
+
}): Observable<HttpResponse<DispatchBoxType>>;
|
|
3970
|
+
createDispatchBoxType(dispatchBoxType: DispatchBoxType, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3971
|
+
httpHeaderAccept?: 'application/json';
|
|
3972
|
+
context?: HttpContext;
|
|
3973
|
+
transferCache?: boolean;
|
|
3974
|
+
}): Observable<HttpEvent<DispatchBoxType>>;
|
|
3975
|
+
/**
|
|
3976
|
+
* Delete a dispatch box type
|
|
3977
|
+
* @endpoint delete /dispatchBoxTypes/{id}
|
|
3978
|
+
* @param id
|
|
3979
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3980
|
+
* @param reportProgress flag to report request and response progress.
|
|
3981
|
+
* @param options additional options
|
|
3982
|
+
*/
|
|
3983
|
+
deleteDispatchBoxType(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3984
|
+
httpHeaderAccept?: undefined;
|
|
3985
|
+
context?: HttpContext;
|
|
3986
|
+
transferCache?: boolean;
|
|
3987
|
+
}): Observable<any>;
|
|
3988
|
+
deleteDispatchBoxType(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3989
|
+
httpHeaderAccept?: undefined;
|
|
3990
|
+
context?: HttpContext;
|
|
3991
|
+
transferCache?: boolean;
|
|
3992
|
+
}): Observable<HttpResponse<any>>;
|
|
3993
|
+
deleteDispatchBoxType(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3994
|
+
httpHeaderAccept?: undefined;
|
|
3995
|
+
context?: HttpContext;
|
|
3996
|
+
transferCache?: boolean;
|
|
3997
|
+
}): Observable<HttpEvent<any>>;
|
|
3998
|
+
/**
|
|
3999
|
+
* Get a dispatch box type by Id
|
|
4000
|
+
* @endpoint get /dispatchBoxTypes/{id}
|
|
4001
|
+
* @param id
|
|
4002
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4003
|
+
* @param reportProgress flag to report request and response progress.
|
|
4004
|
+
* @param options additional options
|
|
4005
|
+
*/
|
|
4006
|
+
getDispatchBoxType(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4007
|
+
httpHeaderAccept?: 'application/json';
|
|
4008
|
+
context?: HttpContext;
|
|
4009
|
+
transferCache?: boolean;
|
|
4010
|
+
}): Observable<DispatchBoxTypeView>;
|
|
4011
|
+
getDispatchBoxType(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4012
|
+
httpHeaderAccept?: 'application/json';
|
|
4013
|
+
context?: HttpContext;
|
|
4014
|
+
transferCache?: boolean;
|
|
4015
|
+
}): Observable<HttpResponse<DispatchBoxTypeView>>;
|
|
4016
|
+
getDispatchBoxType(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4017
|
+
httpHeaderAccept?: 'application/json';
|
|
4018
|
+
context?: HttpContext;
|
|
4019
|
+
transferCache?: boolean;
|
|
4020
|
+
}): Observable<HttpEvent<DispatchBoxTypeView>>;
|
|
4021
|
+
/**
|
|
4022
|
+
* Get a paginated list of dispatch box types
|
|
4023
|
+
* @endpoint get /dispatchBoxTypes
|
|
4024
|
+
* @param $skip
|
|
4025
|
+
* @param $top
|
|
4026
|
+
* @param $orderby
|
|
4027
|
+
* @param $filter
|
|
4028
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4029
|
+
* @param reportProgress flag to report request and response progress.
|
|
4030
|
+
* @param options additional options
|
|
4031
|
+
*/
|
|
4032
|
+
getDispatchBoxTypes($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4033
|
+
httpHeaderAccept?: 'application/json';
|
|
4034
|
+
context?: HttpContext;
|
|
4035
|
+
transferCache?: boolean;
|
|
4036
|
+
}): Observable<DispatchBoxTypes>;
|
|
4037
|
+
getDispatchBoxTypes($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4038
|
+
httpHeaderAccept?: 'application/json';
|
|
4039
|
+
context?: HttpContext;
|
|
4040
|
+
transferCache?: boolean;
|
|
4041
|
+
}): Observable<HttpResponse<DispatchBoxTypes>>;
|
|
4042
|
+
getDispatchBoxTypes($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4043
|
+
httpHeaderAccept?: 'application/json';
|
|
4044
|
+
context?: HttpContext;
|
|
4045
|
+
transferCache?: boolean;
|
|
4046
|
+
}): Observable<HttpEvent<DispatchBoxTypes>>;
|
|
4047
|
+
/**
|
|
4048
|
+
* Update a dispatch box type
|
|
4049
|
+
* @endpoint put /dispatchBoxTypes/{id}
|
|
4050
|
+
* @param id
|
|
4051
|
+
* @param dispatchBoxType
|
|
4052
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4053
|
+
* @param reportProgress flag to report request and response progress.
|
|
4054
|
+
* @param options additional options
|
|
4055
|
+
*/
|
|
4056
|
+
updateDispatchBoxType(id: string, dispatchBoxType: DispatchBoxType, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4057
|
+
httpHeaderAccept?: 'application/json';
|
|
4058
|
+
context?: HttpContext;
|
|
4059
|
+
transferCache?: boolean;
|
|
4060
|
+
}): Observable<DispatchBoxType>;
|
|
4061
|
+
updateDispatchBoxType(id: string, dispatchBoxType: DispatchBoxType, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4062
|
+
httpHeaderAccept?: 'application/json';
|
|
4063
|
+
context?: HttpContext;
|
|
4064
|
+
transferCache?: boolean;
|
|
4065
|
+
}): Observable<HttpResponse<DispatchBoxType>>;
|
|
4066
|
+
updateDispatchBoxType(id: string, dispatchBoxType: DispatchBoxType, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4067
|
+
httpHeaderAccept?: 'application/json';
|
|
4068
|
+
context?: HttpContext;
|
|
4069
|
+
transferCache?: boolean;
|
|
4070
|
+
}): Observable<HttpEvent<DispatchBoxType>>;
|
|
4071
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DispatchBoxTypesService, [null, { optional: true; }, { optional: true; }]>;
|
|
4072
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DispatchBoxTypesService>;
|
|
4073
|
+
}
|
|
4074
|
+
|
|
3735
4075
|
/**
|
|
3736
4076
|
* Wms.API.Client
|
|
3737
4077
|
*
|
|
@@ -3846,6 +4186,112 @@ declare class DispatchBoxesService extends BaseService {
|
|
|
3846
4186
|
static ɵprov: i0.ɵɵInjectableDeclaration<DispatchBoxesService>;
|
|
3847
4187
|
}
|
|
3848
4188
|
|
|
4189
|
+
/**
|
|
4190
|
+
* Wms.API.Client
|
|
4191
|
+
*
|
|
4192
|
+
*
|
|
4193
|
+
*
|
|
4194
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4195
|
+
* https://openapi-generator.tech
|
|
4196
|
+
* Do not edit the class manually.
|
|
4197
|
+
*/
|
|
4198
|
+
interface DispatchCarrier {
|
|
4199
|
+
carrierId?: string;
|
|
4200
|
+
carrierName?: string;
|
|
4201
|
+
}
|
|
4202
|
+
|
|
4203
|
+
/**
|
|
4204
|
+
* Wms.API.Client
|
|
4205
|
+
*
|
|
4206
|
+
*
|
|
4207
|
+
*
|
|
4208
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4209
|
+
* https://openapi-generator.tech
|
|
4210
|
+
* Do not edit the class manually.
|
|
4211
|
+
*/
|
|
4212
|
+
|
|
4213
|
+
interface DispatchCarriers {
|
|
4214
|
+
total: number;
|
|
4215
|
+
data: Array<DispatchCarrier>;
|
|
4216
|
+
}
|
|
4217
|
+
|
|
4218
|
+
declare class DispatchCarriersService extends BaseService {
|
|
4219
|
+
protected httpClient: HttpClient;
|
|
4220
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
4221
|
+
/**
|
|
4222
|
+
* Getting available carriers for a dispatch
|
|
4223
|
+
* @endpoint get /dispatchCarriers/dispatches/{dispatchId}/carriers
|
|
4224
|
+
* @param dispatchId
|
|
4225
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4226
|
+
* @param reportProgress flag to report request and response progress.
|
|
4227
|
+
* @param options additional options
|
|
4228
|
+
*/
|
|
4229
|
+
getDispatchCarriers(dispatchId: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4230
|
+
httpHeaderAccept?: 'application/json';
|
|
4231
|
+
context?: HttpContext;
|
|
4232
|
+
transferCache?: boolean;
|
|
4233
|
+
}): Observable<DispatchCarriers>;
|
|
4234
|
+
getDispatchCarriers(dispatchId: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4235
|
+
httpHeaderAccept?: 'application/json';
|
|
4236
|
+
context?: HttpContext;
|
|
4237
|
+
transferCache?: boolean;
|
|
4238
|
+
}): Observable<HttpResponse<DispatchCarriers>>;
|
|
4239
|
+
getDispatchCarriers(dispatchId: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4240
|
+
httpHeaderAccept?: 'application/json';
|
|
4241
|
+
context?: HttpContext;
|
|
4242
|
+
transferCache?: boolean;
|
|
4243
|
+
}): Observable<HttpEvent<DispatchCarriers>>;
|
|
4244
|
+
/**
|
|
4245
|
+
* Get the carriers a client can access
|
|
4246
|
+
* @endpoint get /dispatchCarriers/clients/{clientId}/carriers
|
|
4247
|
+
* @param clientId
|
|
4248
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4249
|
+
* @param reportProgress flag to report request and response progress.
|
|
4250
|
+
* @param options additional options
|
|
4251
|
+
*/
|
|
4252
|
+
getDispatchCarriersForClient(clientId: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4253
|
+
httpHeaderAccept?: 'application/json';
|
|
4254
|
+
context?: HttpContext;
|
|
4255
|
+
transferCache?: boolean;
|
|
4256
|
+
}): Observable<DispatchCarriers>;
|
|
4257
|
+
getDispatchCarriersForClient(clientId: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4258
|
+
httpHeaderAccept?: 'application/json';
|
|
4259
|
+
context?: HttpContext;
|
|
4260
|
+
transferCache?: boolean;
|
|
4261
|
+
}): Observable<HttpResponse<DispatchCarriers>>;
|
|
4262
|
+
getDispatchCarriersForClient(clientId: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4263
|
+
httpHeaderAccept?: 'application/json';
|
|
4264
|
+
context?: HttpContext;
|
|
4265
|
+
transferCache?: boolean;
|
|
4266
|
+
}): Observable<HttpEvent<DispatchCarriers>>;
|
|
4267
|
+
/**
|
|
4268
|
+
* Set carrier for a dispatch
|
|
4269
|
+
* @endpoint put /dispatchCarriers/{id}/carrier
|
|
4270
|
+
* @param id
|
|
4271
|
+
* @param carrierId
|
|
4272
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4273
|
+
* @param reportProgress flag to report request and response progress.
|
|
4274
|
+
* @param options additional options
|
|
4275
|
+
*/
|
|
4276
|
+
setDispatchCarrier(id: string, carrierId: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4277
|
+
httpHeaderAccept?: undefined;
|
|
4278
|
+
context?: HttpContext;
|
|
4279
|
+
transferCache?: boolean;
|
|
4280
|
+
}): Observable<any>;
|
|
4281
|
+
setDispatchCarrier(id: string, carrierId: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4282
|
+
httpHeaderAccept?: undefined;
|
|
4283
|
+
context?: HttpContext;
|
|
4284
|
+
transferCache?: boolean;
|
|
4285
|
+
}): Observable<HttpResponse<any>>;
|
|
4286
|
+
setDispatchCarrier(id: string, carrierId: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4287
|
+
httpHeaderAccept?: undefined;
|
|
4288
|
+
context?: HttpContext;
|
|
4289
|
+
transferCache?: boolean;
|
|
4290
|
+
}): Observable<HttpEvent<any>>;
|
|
4291
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DispatchCarriersService, [null, { optional: true; }, { optional: true; }]>;
|
|
4292
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DispatchCarriersService>;
|
|
4293
|
+
}
|
|
4294
|
+
|
|
3849
4295
|
/**
|
|
3850
4296
|
* Wms.API.Client
|
|
3851
4297
|
*
|
|
@@ -4251,35 +4697,6 @@ interface Dispatch {
|
|
|
4251
4697
|
declare namespace Dispatch {
|
|
4252
4698
|
}
|
|
4253
4699
|
|
|
4254
|
-
/**
|
|
4255
|
-
* Wms.API.Client
|
|
4256
|
-
*
|
|
4257
|
-
*
|
|
4258
|
-
*
|
|
4259
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4260
|
-
* https://openapi-generator.tech
|
|
4261
|
-
* Do not edit the class manually.
|
|
4262
|
-
*/
|
|
4263
|
-
interface DispatchCarrier {
|
|
4264
|
-
carrierId?: string;
|
|
4265
|
-
carrierName?: string;
|
|
4266
|
-
}
|
|
4267
|
-
|
|
4268
|
-
/**
|
|
4269
|
-
* Wms.API.Client
|
|
4270
|
-
*
|
|
4271
|
-
*
|
|
4272
|
-
*
|
|
4273
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4274
|
-
* https://openapi-generator.tech
|
|
4275
|
-
* Do not edit the class manually.
|
|
4276
|
-
*/
|
|
4277
|
-
|
|
4278
|
-
interface DispatchCarriers {
|
|
4279
|
-
total: number;
|
|
4280
|
-
data: Array<DispatchCarrier>;
|
|
4281
|
-
}
|
|
4282
|
-
|
|
4283
4700
|
/**
|
|
4284
4701
|
* Wms.API.Client
|
|
4285
4702
|
*
|
|
@@ -4577,29 +4994,6 @@ declare class DispatchesService extends BaseService {
|
|
|
4577
4994
|
context?: HttpContext;
|
|
4578
4995
|
transferCache?: boolean;
|
|
4579
4996
|
}): Observable<HttpEvent<Dispatch>>;
|
|
4580
|
-
/**
|
|
4581
|
-
* Getting available carriers for a dispatch
|
|
4582
|
-
* @endpoint get /dispatches/{id}/carriers
|
|
4583
|
-
* @param id
|
|
4584
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4585
|
-
* @param reportProgress flag to report request and response progress.
|
|
4586
|
-
* @param options additional options
|
|
4587
|
-
*/
|
|
4588
|
-
getDispatchCarriers(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4589
|
-
httpHeaderAccept?: 'application/json';
|
|
4590
|
-
context?: HttpContext;
|
|
4591
|
-
transferCache?: boolean;
|
|
4592
|
-
}): Observable<DispatchCarriers>;
|
|
4593
|
-
getDispatchCarriers(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4594
|
-
httpHeaderAccept?: 'application/json';
|
|
4595
|
-
context?: HttpContext;
|
|
4596
|
-
transferCache?: boolean;
|
|
4597
|
-
}): Observable<HttpResponse<DispatchCarriers>>;
|
|
4598
|
-
getDispatchCarriers(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4599
|
-
httpHeaderAccept?: 'application/json';
|
|
4600
|
-
context?: HttpContext;
|
|
4601
|
-
transferCache?: boolean;
|
|
4602
|
-
}): Observable<HttpEvent<DispatchCarriers>>;
|
|
4603
4997
|
/**
|
|
4604
4998
|
* Getting dispatch summary by id
|
|
4605
4999
|
* @endpoint get /dispatches/{id}/summary
|
|
@@ -4725,30 +5119,6 @@ declare class DispatchesService extends BaseService {
|
|
|
4725
5119
|
context?: HttpContext;
|
|
4726
5120
|
transferCache?: boolean;
|
|
4727
5121
|
}): Observable<HttpEvent<any>>;
|
|
4728
|
-
/**
|
|
4729
|
-
* Set carrier for a dispatch
|
|
4730
|
-
* @endpoint put /dispatches/{id}/carrier
|
|
4731
|
-
* @param id
|
|
4732
|
-
* @param carrierId
|
|
4733
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4734
|
-
* @param reportProgress flag to report request and response progress.
|
|
4735
|
-
* @param options additional options
|
|
4736
|
-
*/
|
|
4737
|
-
setDispatchCarrier(id: string, carrierId: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4738
|
-
httpHeaderAccept?: undefined;
|
|
4739
|
-
context?: HttpContext;
|
|
4740
|
-
transferCache?: boolean;
|
|
4741
|
-
}): Observable<any>;
|
|
4742
|
-
setDispatchCarrier(id: string, carrierId: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4743
|
-
httpHeaderAccept?: undefined;
|
|
4744
|
-
context?: HttpContext;
|
|
4745
|
-
transferCache?: boolean;
|
|
4746
|
-
}): Observable<HttpResponse<any>>;
|
|
4747
|
-
setDispatchCarrier(id: string, carrierId: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4748
|
-
httpHeaderAccept?: undefined;
|
|
4749
|
-
context?: HttpContext;
|
|
4750
|
-
transferCache?: boolean;
|
|
4751
|
-
}): Observable<HttpEvent<any>>;
|
|
4752
5122
|
/**
|
|
4753
5123
|
* Manually set the Courier Ref and Service for a dispatch on a non-integrated carrier
|
|
4754
5124
|
* @endpoint put /dispatches/{id}/carrier-reference
|
|
@@ -5157,6 +5527,50 @@ declare class NotesService extends BaseService {
|
|
|
5157
5527
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotesService>;
|
|
5158
5528
|
}
|
|
5159
5529
|
|
|
5530
|
+
/**
|
|
5531
|
+
* Wms.API.Client
|
|
5532
|
+
*
|
|
5533
|
+
*
|
|
5534
|
+
*
|
|
5535
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5536
|
+
* https://openapi-generator.tech
|
|
5537
|
+
* Do not edit the class manually.
|
|
5538
|
+
*/
|
|
5539
|
+
|
|
5540
|
+
interface PackageTypes {
|
|
5541
|
+
total: number;
|
|
5542
|
+
data: Array<PackageType>;
|
|
5543
|
+
}
|
|
5544
|
+
|
|
5545
|
+
declare class PackageTypesService extends BaseService {
|
|
5546
|
+
protected httpClient: HttpClient;
|
|
5547
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
5548
|
+
/**
|
|
5549
|
+
* Get the list of package types
|
|
5550
|
+
* @endpoint get /packageTypes
|
|
5551
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5552
|
+
* @param reportProgress flag to report request and response progress.
|
|
5553
|
+
* @param options additional options
|
|
5554
|
+
*/
|
|
5555
|
+
getPackageTypes(observe?: 'body', reportProgress?: boolean, options?: {
|
|
5556
|
+
httpHeaderAccept?: 'application/json';
|
|
5557
|
+
context?: HttpContext;
|
|
5558
|
+
transferCache?: boolean;
|
|
5559
|
+
}): Observable<PackageTypes>;
|
|
5560
|
+
getPackageTypes(observe?: 'response', reportProgress?: boolean, options?: {
|
|
5561
|
+
httpHeaderAccept?: 'application/json';
|
|
5562
|
+
context?: HttpContext;
|
|
5563
|
+
transferCache?: boolean;
|
|
5564
|
+
}): Observable<HttpResponse<PackageTypes>>;
|
|
5565
|
+
getPackageTypes(observe?: 'events', reportProgress?: boolean, options?: {
|
|
5566
|
+
httpHeaderAccept?: 'application/json';
|
|
5567
|
+
context?: HttpContext;
|
|
5568
|
+
transferCache?: boolean;
|
|
5569
|
+
}): Observable<HttpEvent<PackageTypes>>;
|
|
5570
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PackageTypesService, [null, { optional: true; }, { optional: true; }]>;
|
|
5571
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PackageTypesService>;
|
|
5572
|
+
}
|
|
5573
|
+
|
|
5160
5574
|
declare class PendoService extends BaseService {
|
|
5161
5575
|
protected httpClient: HttpClient;
|
|
5162
5576
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
@@ -6196,19 +6610,6 @@ interface ReplenishmentAccessClients {
|
|
|
6196
6610
|
data: Array<ReplenishmentAccessClient>;
|
|
6197
6611
|
}
|
|
6198
6612
|
|
|
6199
|
-
/**
|
|
6200
|
-
* Wms.API.Client
|
|
6201
|
-
*
|
|
6202
|
-
*
|
|
6203
|
-
*
|
|
6204
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6205
|
-
* https://openapi-generator.tech
|
|
6206
|
-
* Do not edit the class manually.
|
|
6207
|
-
*/
|
|
6208
|
-
interface CompanyDescriptionSummary {
|
|
6209
|
-
companyDescription?: string | null;
|
|
6210
|
-
}
|
|
6211
|
-
|
|
6212
6613
|
/**
|
|
6213
6614
|
* Wms.API.Client
|
|
6214
6615
|
*
|
|
@@ -9738,7 +10139,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
9738
10139
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
9739
10140
|
}
|
|
9740
10141
|
|
|
9741
|
-
declare const APIS: (typeof AddressesService | typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof ClusterPackingService | typeof CompaniesService | typeof ContactsService | typeof CountRecordsService | 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 PickSummariesService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SalesOrderItemsService | typeof SalesOrdersService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveConfigurationsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WaveSummariesService | typeof WavesByPickReleaseIdService)[];
|
|
10142
|
+
declare const APIS: (typeof AddressesService | typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof ClusterPackingService | typeof CompaniesService | typeof ContactsService | typeof CountRecordsService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxTypesService | typeof DispatchBoxesService | typeof DispatchCarriersService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PackageTypesService | typeof PendoService | typeof PermissionsService | typeof PickSummariesService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SalesOrderItemsService | typeof SalesOrdersService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveConfigurationsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WaveSummariesService | typeof WavesByPickReleaseIdService)[];
|
|
9742
10143
|
|
|
9743
10144
|
/**
|
|
9744
10145
|
* Wms.API.Client
|
|
@@ -10054,5 +10455,5 @@ declare class ApiModule {
|
|
|
10054
10455
|
|
|
10055
10456
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
10056
10457
|
|
|
10057
|
-
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, Configuration, ContactsService, CountRecordGridView, CountRecordsService, CountStatusGroup, CountStatuses, CountType, 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, OperatorCountGridView, OrderStatus, OrderType, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, 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, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, SalesOrdersService, SettingsService, ShipToCompany, ShipToSubtype, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
|
|
10058
|
-
export type { AddressView, Addresses, ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, ContactView, Contacts, CountRecords, 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, GroupWaveConfigurations, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, OperatorCounts, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SalesOrderItemCreateModel, SalesOrderItemDataModel, SalesOrderItemUpdateModel, SalesOrderItemView, SalesOrderItems, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, SettingValue, SettingView, ShipToCompanies, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, WaveSummaries, Waves };
|
|
10458
|
+
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CountRecordGridView, CountRecordsService, CountStatusGroup, CountStatuses, CountType, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OperatorCountGridView, OrderStatus, OrderType, PackageTypesService, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, 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, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, SalesOrdersService, SettingsService, ShipToCompany, ShipToSubtype, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
|
|
10459
|
+
export type { AddressView, Addresses, ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServiceType, CarrierServiceTypeSummary, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, ContactView, Contacts, CountRecords, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxType, DispatchBoxTypeView, DispatchBoxTypes, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, GroupWaveConfigurations, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, OperatorCounts, PackageType, PackageTypeSummary, PackageTypes, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SalesOrderItemCreateModel, SalesOrderItemDataModel, SalesOrderItemUpdateModel, SalesOrderItemView, SalesOrderItems, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, SettingValue, SettingView, ShipToCompanies, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, WaveSummaries, Waves };
|