@indigina/wms-api 0.0.179 → 0.0.181
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 +525 -129
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +478 -122
|
@@ -2107,29 +2107,45 @@ interface Companies {
|
|
|
2107
2107
|
* https://openapi-generator.tech
|
|
2108
2108
|
* Do not edit the class manually.
|
|
2109
2109
|
*/
|
|
2110
|
-
declare const
|
|
2111
|
-
readonly Carrier: "Carrier";
|
|
2112
|
-
readonly TransportServices: "TransportServices";
|
|
2110
|
+
declare const ShipToSubtype: {
|
|
2113
2111
|
readonly Company: "Company";
|
|
2114
|
-
readonly
|
|
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";
|
|
2112
|
+
readonly Station: "Station";
|
|
2131
2113
|
};
|
|
2132
|
-
type
|
|
2114
|
+
type ShipToSubtype = typeof ShipToSubtype[keyof typeof ShipToSubtype];
|
|
2115
|
+
|
|
2116
|
+
/**
|
|
2117
|
+
* Wms.API.Client
|
|
2118
|
+
*
|
|
2119
|
+
*
|
|
2120
|
+
*
|
|
2121
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2122
|
+
* https://openapi-generator.tech
|
|
2123
|
+
* Do not edit the class manually.
|
|
2124
|
+
*/
|
|
2125
|
+
|
|
2126
|
+
interface ShipToCompany {
|
|
2127
|
+
id: string;
|
|
2128
|
+
companyCode: string;
|
|
2129
|
+
companyDescription: string | null;
|
|
2130
|
+
subtype: ShipToSubtype;
|
|
2131
|
+
}
|
|
2132
|
+
declare namespace ShipToCompany {
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
/**
|
|
2136
|
+
* Wms.API.Client
|
|
2137
|
+
*
|
|
2138
|
+
*
|
|
2139
|
+
*
|
|
2140
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2141
|
+
* https://openapi-generator.tech
|
|
2142
|
+
* Do not edit the class manually.
|
|
2143
|
+
*/
|
|
2144
|
+
|
|
2145
|
+
interface ShipToCompanies {
|
|
2146
|
+
total: number;
|
|
2147
|
+
data: Array<ShipToCompany>;
|
|
2148
|
+
}
|
|
2133
2149
|
|
|
2134
2150
|
declare class CompaniesService extends BaseService {
|
|
2135
2151
|
protected httpClient: HttpClient;
|
|
@@ -2162,9 +2178,8 @@ declare class CompaniesService extends BaseService {
|
|
|
2162
2178
|
transferCache?: boolean;
|
|
2163
2179
|
}): Observable<HttpEvent<Companies>>;
|
|
2164
2180
|
/**
|
|
2165
|
-
* Getting companies
|
|
2166
|
-
* @endpoint get /companies/
|
|
2167
|
-
* @param companyType
|
|
2181
|
+
* Getting ship-to companies
|
|
2182
|
+
* @endpoint get /companies/ship-to
|
|
2168
2183
|
* @param $skip
|
|
2169
2184
|
* @param $top
|
|
2170
2185
|
* @param $orderby
|
|
@@ -2173,21 +2188,21 @@ declare class CompaniesService extends BaseService {
|
|
|
2173
2188
|
* @param reportProgress flag to report request and response progress.
|
|
2174
2189
|
* @param options additional options
|
|
2175
2190
|
*/
|
|
2176
|
-
|
|
2191
|
+
getShipToCompanies($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2177
2192
|
httpHeaderAccept?: 'application/json';
|
|
2178
2193
|
context?: HttpContext;
|
|
2179
2194
|
transferCache?: boolean;
|
|
2180
|
-
}): Observable<
|
|
2181
|
-
|
|
2195
|
+
}): Observable<ShipToCompanies>;
|
|
2196
|
+
getShipToCompanies($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2182
2197
|
httpHeaderAccept?: 'application/json';
|
|
2183
2198
|
context?: HttpContext;
|
|
2184
2199
|
transferCache?: boolean;
|
|
2185
|
-
}): Observable<HttpResponse<
|
|
2186
|
-
|
|
2200
|
+
}): Observable<HttpResponse<ShipToCompanies>>;
|
|
2201
|
+
getShipToCompanies($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2187
2202
|
httpHeaderAccept?: 'application/json';
|
|
2188
2203
|
context?: HttpContext;
|
|
2189
2204
|
transferCache?: boolean;
|
|
2190
|
-
}): Observable<HttpEvent<
|
|
2205
|
+
}): Observable<HttpEvent<ShipToCompanies>>;
|
|
2191
2206
|
/**
|
|
2192
2207
|
* Getting suppliers
|
|
2193
2208
|
* @endpoint get /companies/{id}/suppliers
|
|
@@ -3717,6 +3732,286 @@ declare class DeliveryItemsService extends BaseService {
|
|
|
3717
3732
|
static ɵprov: i0.ɵɵInjectableDeclaration<DeliveryItemsService>;
|
|
3718
3733
|
}
|
|
3719
3734
|
|
|
3735
|
+
/**
|
|
3736
|
+
* Wms.API.Client
|
|
3737
|
+
*
|
|
3738
|
+
*
|
|
3739
|
+
*
|
|
3740
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3741
|
+
* https://openapi-generator.tech
|
|
3742
|
+
* Do not edit the class manually.
|
|
3743
|
+
*/
|
|
3744
|
+
interface CarrierServiceType {
|
|
3745
|
+
id: string;
|
|
3746
|
+
serviceName?: string;
|
|
3747
|
+
}
|
|
3748
|
+
|
|
3749
|
+
/**
|
|
3750
|
+
* Wms.API.Client
|
|
3751
|
+
*
|
|
3752
|
+
*
|
|
3753
|
+
*
|
|
3754
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3755
|
+
* https://openapi-generator.tech
|
|
3756
|
+
* Do not edit the class manually.
|
|
3757
|
+
*/
|
|
3758
|
+
interface PackageType {
|
|
3759
|
+
id: number;
|
|
3760
|
+
name?: string;
|
|
3761
|
+
}
|
|
3762
|
+
|
|
3763
|
+
/**
|
|
3764
|
+
* Wms.API.Client
|
|
3765
|
+
*
|
|
3766
|
+
*
|
|
3767
|
+
*
|
|
3768
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3769
|
+
* https://openapi-generator.tech
|
|
3770
|
+
* Do not edit the class manually.
|
|
3771
|
+
*/
|
|
3772
|
+
|
|
3773
|
+
interface DispatchBoxType {
|
|
3774
|
+
id?: string;
|
|
3775
|
+
dispatchBoxTypeNumber?: number;
|
|
3776
|
+
dcId?: string;
|
|
3777
|
+
clientId?: string | null;
|
|
3778
|
+
name?: string;
|
|
3779
|
+
packageTypeId?: number | null;
|
|
3780
|
+
carrierId?: string | null;
|
|
3781
|
+
carrierServiceTypeId?: string | null;
|
|
3782
|
+
useForAutoLabelGeneration?: boolean;
|
|
3783
|
+
length?: number | null;
|
|
3784
|
+
width?: number | null;
|
|
3785
|
+
height?: number | null;
|
|
3786
|
+
weight?: number | null;
|
|
3787
|
+
lengthCm?: number | null;
|
|
3788
|
+
widthCm?: number | null;
|
|
3789
|
+
heightCm?: number | null;
|
|
3790
|
+
weightKg?: number | null;
|
|
3791
|
+
dimensionUomId?: string | null;
|
|
3792
|
+
weightUomId?: string | null;
|
|
3793
|
+
createdUserId?: string;
|
|
3794
|
+
createdDate?: string;
|
|
3795
|
+
lastModifiedUserId?: string | null;
|
|
3796
|
+
lastModifiedDate?: string | null;
|
|
3797
|
+
client?: Company;
|
|
3798
|
+
carrier?: Company;
|
|
3799
|
+
packageType?: PackageType;
|
|
3800
|
+
carrierServiceType?: CarrierServiceType;
|
|
3801
|
+
}
|
|
3802
|
+
|
|
3803
|
+
/**
|
|
3804
|
+
* Wms.API.Client
|
|
3805
|
+
*
|
|
3806
|
+
*
|
|
3807
|
+
*
|
|
3808
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3809
|
+
* https://openapi-generator.tech
|
|
3810
|
+
* Do not edit the class manually.
|
|
3811
|
+
*/
|
|
3812
|
+
interface CarrierServiceTypeSummary {
|
|
3813
|
+
serviceName?: string;
|
|
3814
|
+
}
|
|
3815
|
+
|
|
3816
|
+
/**
|
|
3817
|
+
* Wms.API.Client
|
|
3818
|
+
*
|
|
3819
|
+
*
|
|
3820
|
+
*
|
|
3821
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3822
|
+
* https://openapi-generator.tech
|
|
3823
|
+
* Do not edit the class manually.
|
|
3824
|
+
*/
|
|
3825
|
+
interface CompanyDescriptionSummary {
|
|
3826
|
+
companyDescription?: string | null;
|
|
3827
|
+
}
|
|
3828
|
+
|
|
3829
|
+
/**
|
|
3830
|
+
* Wms.API.Client
|
|
3831
|
+
*
|
|
3832
|
+
*
|
|
3833
|
+
*
|
|
3834
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3835
|
+
* https://openapi-generator.tech
|
|
3836
|
+
* Do not edit the class manually.
|
|
3837
|
+
*/
|
|
3838
|
+
interface PackageTypeSummary {
|
|
3839
|
+
name?: string;
|
|
3840
|
+
}
|
|
3841
|
+
|
|
3842
|
+
/**
|
|
3843
|
+
* Wms.API.Client
|
|
3844
|
+
*
|
|
3845
|
+
*
|
|
3846
|
+
*
|
|
3847
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3848
|
+
* https://openapi-generator.tech
|
|
3849
|
+
* Do not edit the class manually.
|
|
3850
|
+
*/
|
|
3851
|
+
|
|
3852
|
+
interface DispatchBoxTypeView {
|
|
3853
|
+
id: string;
|
|
3854
|
+
clientId?: string | null;
|
|
3855
|
+
client?: CompanyDescriptionSummary | null;
|
|
3856
|
+
name: string;
|
|
3857
|
+
packageTypeId?: number | null;
|
|
3858
|
+
packageType?: PackageTypeSummary | null;
|
|
3859
|
+
length?: number | null;
|
|
3860
|
+
width?: number | null;
|
|
3861
|
+
height?: number | null;
|
|
3862
|
+
useForAutoLabelGeneration: boolean;
|
|
3863
|
+
weight?: number | null;
|
|
3864
|
+
carrierId?: string | null;
|
|
3865
|
+
carrier?: CompanyDescriptionSummary | null;
|
|
3866
|
+
carrierServiceTypeId?: string | null;
|
|
3867
|
+
carrierServiceType?: CarrierServiceTypeSummary | null;
|
|
3868
|
+
createdDate: string;
|
|
3869
|
+
createdUserId: string;
|
|
3870
|
+
createdBy?: string;
|
|
3871
|
+
dispatchBoxTypeNumber: number;
|
|
3872
|
+
}
|
|
3873
|
+
|
|
3874
|
+
/**
|
|
3875
|
+
* Wms.API.Client
|
|
3876
|
+
*
|
|
3877
|
+
*
|
|
3878
|
+
*
|
|
3879
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3880
|
+
* https://openapi-generator.tech
|
|
3881
|
+
* Do not edit the class manually.
|
|
3882
|
+
*/
|
|
3883
|
+
|
|
3884
|
+
interface DispatchBoxTypes {
|
|
3885
|
+
total: number;
|
|
3886
|
+
data: Array<DispatchBoxTypeView>;
|
|
3887
|
+
}
|
|
3888
|
+
|
|
3889
|
+
declare class DispatchBoxTypesService extends BaseService {
|
|
3890
|
+
protected httpClient: HttpClient;
|
|
3891
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
3892
|
+
/**
|
|
3893
|
+
* Create a dispatch box type
|
|
3894
|
+
* @endpoint post /dispatchBoxTypes
|
|
3895
|
+
* @param dispatchBoxType
|
|
3896
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3897
|
+
* @param reportProgress flag to report request and response progress.
|
|
3898
|
+
* @param options additional options
|
|
3899
|
+
*/
|
|
3900
|
+
createDispatchBoxType(dispatchBoxType: DispatchBoxType, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3901
|
+
httpHeaderAccept?: 'application/json';
|
|
3902
|
+
context?: HttpContext;
|
|
3903
|
+
transferCache?: boolean;
|
|
3904
|
+
}): Observable<DispatchBoxType>;
|
|
3905
|
+
createDispatchBoxType(dispatchBoxType: DispatchBoxType, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3906
|
+
httpHeaderAccept?: 'application/json';
|
|
3907
|
+
context?: HttpContext;
|
|
3908
|
+
transferCache?: boolean;
|
|
3909
|
+
}): Observable<HttpResponse<DispatchBoxType>>;
|
|
3910
|
+
createDispatchBoxType(dispatchBoxType: DispatchBoxType, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3911
|
+
httpHeaderAccept?: 'application/json';
|
|
3912
|
+
context?: HttpContext;
|
|
3913
|
+
transferCache?: boolean;
|
|
3914
|
+
}): Observable<HttpEvent<DispatchBoxType>>;
|
|
3915
|
+
/**
|
|
3916
|
+
* Delete a dispatch box type
|
|
3917
|
+
* @endpoint delete /dispatchBoxTypes/{id}
|
|
3918
|
+
* @param id
|
|
3919
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3920
|
+
* @param reportProgress flag to report request and response progress.
|
|
3921
|
+
* @param options additional options
|
|
3922
|
+
*/
|
|
3923
|
+
deleteDispatchBoxType(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3924
|
+
httpHeaderAccept?: undefined;
|
|
3925
|
+
context?: HttpContext;
|
|
3926
|
+
transferCache?: boolean;
|
|
3927
|
+
}): Observable<any>;
|
|
3928
|
+
deleteDispatchBoxType(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3929
|
+
httpHeaderAccept?: undefined;
|
|
3930
|
+
context?: HttpContext;
|
|
3931
|
+
transferCache?: boolean;
|
|
3932
|
+
}): Observable<HttpResponse<any>>;
|
|
3933
|
+
deleteDispatchBoxType(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3934
|
+
httpHeaderAccept?: undefined;
|
|
3935
|
+
context?: HttpContext;
|
|
3936
|
+
transferCache?: boolean;
|
|
3937
|
+
}): Observable<HttpEvent<any>>;
|
|
3938
|
+
/**
|
|
3939
|
+
* Get a dispatch box type by Id
|
|
3940
|
+
* @endpoint get /dispatchBoxTypes/{id}
|
|
3941
|
+
* @param id
|
|
3942
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3943
|
+
* @param reportProgress flag to report request and response progress.
|
|
3944
|
+
* @param options additional options
|
|
3945
|
+
*/
|
|
3946
|
+
getDispatchBoxType(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3947
|
+
httpHeaderAccept?: 'application/json';
|
|
3948
|
+
context?: HttpContext;
|
|
3949
|
+
transferCache?: boolean;
|
|
3950
|
+
}): Observable<DispatchBoxTypeView>;
|
|
3951
|
+
getDispatchBoxType(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3952
|
+
httpHeaderAccept?: 'application/json';
|
|
3953
|
+
context?: HttpContext;
|
|
3954
|
+
transferCache?: boolean;
|
|
3955
|
+
}): Observable<HttpResponse<DispatchBoxTypeView>>;
|
|
3956
|
+
getDispatchBoxType(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3957
|
+
httpHeaderAccept?: 'application/json';
|
|
3958
|
+
context?: HttpContext;
|
|
3959
|
+
transferCache?: boolean;
|
|
3960
|
+
}): Observable<HttpEvent<DispatchBoxTypeView>>;
|
|
3961
|
+
/**
|
|
3962
|
+
* Get a paginated list of dispatch box types
|
|
3963
|
+
* @endpoint get /dispatchBoxTypes
|
|
3964
|
+
* @param $skip
|
|
3965
|
+
* @param $top
|
|
3966
|
+
* @param $orderby
|
|
3967
|
+
* @param $filter
|
|
3968
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3969
|
+
* @param reportProgress flag to report request and response progress.
|
|
3970
|
+
* @param options additional options
|
|
3971
|
+
*/
|
|
3972
|
+
getDispatchBoxTypes($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3973
|
+
httpHeaderAccept?: 'application/json';
|
|
3974
|
+
context?: HttpContext;
|
|
3975
|
+
transferCache?: boolean;
|
|
3976
|
+
}): Observable<DispatchBoxTypes>;
|
|
3977
|
+
getDispatchBoxTypes($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3978
|
+
httpHeaderAccept?: 'application/json';
|
|
3979
|
+
context?: HttpContext;
|
|
3980
|
+
transferCache?: boolean;
|
|
3981
|
+
}): Observable<HttpResponse<DispatchBoxTypes>>;
|
|
3982
|
+
getDispatchBoxTypes($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3983
|
+
httpHeaderAccept?: 'application/json';
|
|
3984
|
+
context?: HttpContext;
|
|
3985
|
+
transferCache?: boolean;
|
|
3986
|
+
}): Observable<HttpEvent<DispatchBoxTypes>>;
|
|
3987
|
+
/**
|
|
3988
|
+
* Update a dispatch box type
|
|
3989
|
+
* @endpoint put /dispatchBoxTypes/{id}
|
|
3990
|
+
* @param id
|
|
3991
|
+
* @param dispatchBoxType
|
|
3992
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3993
|
+
* @param reportProgress flag to report request and response progress.
|
|
3994
|
+
* @param options additional options
|
|
3995
|
+
*/
|
|
3996
|
+
updateDispatchBoxType(id: string, dispatchBoxType: DispatchBoxType, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3997
|
+
httpHeaderAccept?: 'application/json';
|
|
3998
|
+
context?: HttpContext;
|
|
3999
|
+
transferCache?: boolean;
|
|
4000
|
+
}): Observable<DispatchBoxType>;
|
|
4001
|
+
updateDispatchBoxType(id: string, dispatchBoxType: DispatchBoxType, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4002
|
+
httpHeaderAccept?: 'application/json';
|
|
4003
|
+
context?: HttpContext;
|
|
4004
|
+
transferCache?: boolean;
|
|
4005
|
+
}): Observable<HttpResponse<DispatchBoxType>>;
|
|
4006
|
+
updateDispatchBoxType(id: string, dispatchBoxType: DispatchBoxType, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4007
|
+
httpHeaderAccept?: 'application/json';
|
|
4008
|
+
context?: HttpContext;
|
|
4009
|
+
transferCache?: boolean;
|
|
4010
|
+
}): Observable<HttpEvent<DispatchBoxType>>;
|
|
4011
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DispatchBoxTypesService, [null, { optional: true; }, { optional: true; }]>;
|
|
4012
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DispatchBoxTypesService>;
|
|
4013
|
+
}
|
|
4014
|
+
|
|
3720
4015
|
/**
|
|
3721
4016
|
* Wms.API.Client
|
|
3722
4017
|
*
|
|
@@ -3831,6 +4126,112 @@ declare class DispatchBoxesService extends BaseService {
|
|
|
3831
4126
|
static ɵprov: i0.ɵɵInjectableDeclaration<DispatchBoxesService>;
|
|
3832
4127
|
}
|
|
3833
4128
|
|
|
4129
|
+
/**
|
|
4130
|
+
* Wms.API.Client
|
|
4131
|
+
*
|
|
4132
|
+
*
|
|
4133
|
+
*
|
|
4134
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4135
|
+
* https://openapi-generator.tech
|
|
4136
|
+
* Do not edit the class manually.
|
|
4137
|
+
*/
|
|
4138
|
+
interface DispatchCarrier {
|
|
4139
|
+
carrierId?: string;
|
|
4140
|
+
carrierName?: string;
|
|
4141
|
+
}
|
|
4142
|
+
|
|
4143
|
+
/**
|
|
4144
|
+
* Wms.API.Client
|
|
4145
|
+
*
|
|
4146
|
+
*
|
|
4147
|
+
*
|
|
4148
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4149
|
+
* https://openapi-generator.tech
|
|
4150
|
+
* Do not edit the class manually.
|
|
4151
|
+
*/
|
|
4152
|
+
|
|
4153
|
+
interface DispatchCarriers {
|
|
4154
|
+
total: number;
|
|
4155
|
+
data: Array<DispatchCarrier>;
|
|
4156
|
+
}
|
|
4157
|
+
|
|
4158
|
+
declare class DispatchCarriersService extends BaseService {
|
|
4159
|
+
protected httpClient: HttpClient;
|
|
4160
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
4161
|
+
/**
|
|
4162
|
+
* Getting available carriers for a dispatch
|
|
4163
|
+
* @endpoint get /dispatchCarriers/dispatches/{dispatchId}/carriers
|
|
4164
|
+
* @param dispatchId
|
|
4165
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4166
|
+
* @param reportProgress flag to report request and response progress.
|
|
4167
|
+
* @param options additional options
|
|
4168
|
+
*/
|
|
4169
|
+
getDispatchCarriers(dispatchId: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4170
|
+
httpHeaderAccept?: 'application/json';
|
|
4171
|
+
context?: HttpContext;
|
|
4172
|
+
transferCache?: boolean;
|
|
4173
|
+
}): Observable<DispatchCarriers>;
|
|
4174
|
+
getDispatchCarriers(dispatchId: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4175
|
+
httpHeaderAccept?: 'application/json';
|
|
4176
|
+
context?: HttpContext;
|
|
4177
|
+
transferCache?: boolean;
|
|
4178
|
+
}): Observable<HttpResponse<DispatchCarriers>>;
|
|
4179
|
+
getDispatchCarriers(dispatchId: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4180
|
+
httpHeaderAccept?: 'application/json';
|
|
4181
|
+
context?: HttpContext;
|
|
4182
|
+
transferCache?: boolean;
|
|
4183
|
+
}): Observable<HttpEvent<DispatchCarriers>>;
|
|
4184
|
+
/**
|
|
4185
|
+
* Get the carriers a client can access
|
|
4186
|
+
* @endpoint get /dispatchCarriers/clients/{clientId}/carriers
|
|
4187
|
+
* @param clientId
|
|
4188
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4189
|
+
* @param reportProgress flag to report request and response progress.
|
|
4190
|
+
* @param options additional options
|
|
4191
|
+
*/
|
|
4192
|
+
getDispatchCarriersForClient(clientId: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4193
|
+
httpHeaderAccept?: 'application/json';
|
|
4194
|
+
context?: HttpContext;
|
|
4195
|
+
transferCache?: boolean;
|
|
4196
|
+
}): Observable<DispatchCarriers>;
|
|
4197
|
+
getDispatchCarriersForClient(clientId: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4198
|
+
httpHeaderAccept?: 'application/json';
|
|
4199
|
+
context?: HttpContext;
|
|
4200
|
+
transferCache?: boolean;
|
|
4201
|
+
}): Observable<HttpResponse<DispatchCarriers>>;
|
|
4202
|
+
getDispatchCarriersForClient(clientId: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4203
|
+
httpHeaderAccept?: 'application/json';
|
|
4204
|
+
context?: HttpContext;
|
|
4205
|
+
transferCache?: boolean;
|
|
4206
|
+
}): Observable<HttpEvent<DispatchCarriers>>;
|
|
4207
|
+
/**
|
|
4208
|
+
* Set carrier for a dispatch
|
|
4209
|
+
* @endpoint put /dispatchCarriers/{id}/carrier
|
|
4210
|
+
* @param id
|
|
4211
|
+
* @param carrierId
|
|
4212
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4213
|
+
* @param reportProgress flag to report request and response progress.
|
|
4214
|
+
* @param options additional options
|
|
4215
|
+
*/
|
|
4216
|
+
setDispatchCarrier(id: string, carrierId: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4217
|
+
httpHeaderAccept?: undefined;
|
|
4218
|
+
context?: HttpContext;
|
|
4219
|
+
transferCache?: boolean;
|
|
4220
|
+
}): Observable<any>;
|
|
4221
|
+
setDispatchCarrier(id: string, carrierId: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4222
|
+
httpHeaderAccept?: undefined;
|
|
4223
|
+
context?: HttpContext;
|
|
4224
|
+
transferCache?: boolean;
|
|
4225
|
+
}): Observable<HttpResponse<any>>;
|
|
4226
|
+
setDispatchCarrier(id: string, carrierId: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4227
|
+
httpHeaderAccept?: undefined;
|
|
4228
|
+
context?: HttpContext;
|
|
4229
|
+
transferCache?: boolean;
|
|
4230
|
+
}): Observable<HttpEvent<any>>;
|
|
4231
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DispatchCarriersService, [null, { optional: true; }, { optional: true; }]>;
|
|
4232
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DispatchCarriersService>;
|
|
4233
|
+
}
|
|
4234
|
+
|
|
3834
4235
|
/**
|
|
3835
4236
|
* Wms.API.Client
|
|
3836
4237
|
*
|
|
@@ -4236,35 +4637,6 @@ interface Dispatch {
|
|
|
4236
4637
|
declare namespace Dispatch {
|
|
4237
4638
|
}
|
|
4238
4639
|
|
|
4239
|
-
/**
|
|
4240
|
-
* Wms.API.Client
|
|
4241
|
-
*
|
|
4242
|
-
*
|
|
4243
|
-
*
|
|
4244
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4245
|
-
* https://openapi-generator.tech
|
|
4246
|
-
* Do not edit the class manually.
|
|
4247
|
-
*/
|
|
4248
|
-
interface DispatchCarrier {
|
|
4249
|
-
carrierId?: string;
|
|
4250
|
-
carrierName?: string;
|
|
4251
|
-
}
|
|
4252
|
-
|
|
4253
|
-
/**
|
|
4254
|
-
* Wms.API.Client
|
|
4255
|
-
*
|
|
4256
|
-
*
|
|
4257
|
-
*
|
|
4258
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4259
|
-
* https://openapi-generator.tech
|
|
4260
|
-
* Do not edit the class manually.
|
|
4261
|
-
*/
|
|
4262
|
-
|
|
4263
|
-
interface DispatchCarriers {
|
|
4264
|
-
total: number;
|
|
4265
|
-
data: Array<DispatchCarrier>;
|
|
4266
|
-
}
|
|
4267
|
-
|
|
4268
4640
|
/**
|
|
4269
4641
|
* Wms.API.Client
|
|
4270
4642
|
*
|
|
@@ -4562,29 +4934,6 @@ declare class DispatchesService extends BaseService {
|
|
|
4562
4934
|
context?: HttpContext;
|
|
4563
4935
|
transferCache?: boolean;
|
|
4564
4936
|
}): Observable<HttpEvent<Dispatch>>;
|
|
4565
|
-
/**
|
|
4566
|
-
* Getting available carriers for a dispatch
|
|
4567
|
-
* @endpoint get /dispatches/{id}/carriers
|
|
4568
|
-
* @param id
|
|
4569
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4570
|
-
* @param reportProgress flag to report request and response progress.
|
|
4571
|
-
* @param options additional options
|
|
4572
|
-
*/
|
|
4573
|
-
getDispatchCarriers(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4574
|
-
httpHeaderAccept?: 'application/json';
|
|
4575
|
-
context?: HttpContext;
|
|
4576
|
-
transferCache?: boolean;
|
|
4577
|
-
}): Observable<DispatchCarriers>;
|
|
4578
|
-
getDispatchCarriers(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4579
|
-
httpHeaderAccept?: 'application/json';
|
|
4580
|
-
context?: HttpContext;
|
|
4581
|
-
transferCache?: boolean;
|
|
4582
|
-
}): Observable<HttpResponse<DispatchCarriers>>;
|
|
4583
|
-
getDispatchCarriers(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4584
|
-
httpHeaderAccept?: 'application/json';
|
|
4585
|
-
context?: HttpContext;
|
|
4586
|
-
transferCache?: boolean;
|
|
4587
|
-
}): Observable<HttpEvent<DispatchCarriers>>;
|
|
4588
4937
|
/**
|
|
4589
4938
|
* Getting dispatch summary by id
|
|
4590
4939
|
* @endpoint get /dispatches/{id}/summary
|
|
@@ -4710,30 +5059,6 @@ declare class DispatchesService extends BaseService {
|
|
|
4710
5059
|
context?: HttpContext;
|
|
4711
5060
|
transferCache?: boolean;
|
|
4712
5061
|
}): Observable<HttpEvent<any>>;
|
|
4713
|
-
/**
|
|
4714
|
-
* Set carrier for a dispatch
|
|
4715
|
-
* @endpoint put /dispatches/{id}/carrier
|
|
4716
|
-
* @param id
|
|
4717
|
-
* @param carrierId
|
|
4718
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4719
|
-
* @param reportProgress flag to report request and response progress.
|
|
4720
|
-
* @param options additional options
|
|
4721
|
-
*/
|
|
4722
|
-
setDispatchCarrier(id: string, carrierId: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4723
|
-
httpHeaderAccept?: undefined;
|
|
4724
|
-
context?: HttpContext;
|
|
4725
|
-
transferCache?: boolean;
|
|
4726
|
-
}): Observable<any>;
|
|
4727
|
-
setDispatchCarrier(id: string, carrierId: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4728
|
-
httpHeaderAccept?: undefined;
|
|
4729
|
-
context?: HttpContext;
|
|
4730
|
-
transferCache?: boolean;
|
|
4731
|
-
}): Observable<HttpResponse<any>>;
|
|
4732
|
-
setDispatchCarrier(id: string, carrierId: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4733
|
-
httpHeaderAccept?: undefined;
|
|
4734
|
-
context?: HttpContext;
|
|
4735
|
-
transferCache?: boolean;
|
|
4736
|
-
}): Observable<HttpEvent<any>>;
|
|
4737
5062
|
/**
|
|
4738
5063
|
* Manually set the Courier Ref and Service for a dispatch on a non-integrated carrier
|
|
4739
5064
|
* @endpoint put /dispatches/{id}/carrier-reference
|
|
@@ -5142,6 +5467,50 @@ declare class NotesService extends BaseService {
|
|
|
5142
5467
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotesService>;
|
|
5143
5468
|
}
|
|
5144
5469
|
|
|
5470
|
+
/**
|
|
5471
|
+
* Wms.API.Client
|
|
5472
|
+
*
|
|
5473
|
+
*
|
|
5474
|
+
*
|
|
5475
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5476
|
+
* https://openapi-generator.tech
|
|
5477
|
+
* Do not edit the class manually.
|
|
5478
|
+
*/
|
|
5479
|
+
|
|
5480
|
+
interface PackageTypes {
|
|
5481
|
+
total: number;
|
|
5482
|
+
data: Array<PackageType>;
|
|
5483
|
+
}
|
|
5484
|
+
|
|
5485
|
+
declare class PackageTypesService extends BaseService {
|
|
5486
|
+
protected httpClient: HttpClient;
|
|
5487
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
5488
|
+
/**
|
|
5489
|
+
* Get the list of package types
|
|
5490
|
+
* @endpoint get /packageTypes
|
|
5491
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5492
|
+
* @param reportProgress flag to report request and response progress.
|
|
5493
|
+
* @param options additional options
|
|
5494
|
+
*/
|
|
5495
|
+
getPackageTypes(observe?: 'body', reportProgress?: boolean, options?: {
|
|
5496
|
+
httpHeaderAccept?: 'application/json';
|
|
5497
|
+
context?: HttpContext;
|
|
5498
|
+
transferCache?: boolean;
|
|
5499
|
+
}): Observable<PackageTypes>;
|
|
5500
|
+
getPackageTypes(observe?: 'response', reportProgress?: boolean, options?: {
|
|
5501
|
+
httpHeaderAccept?: 'application/json';
|
|
5502
|
+
context?: HttpContext;
|
|
5503
|
+
transferCache?: boolean;
|
|
5504
|
+
}): Observable<HttpResponse<PackageTypes>>;
|
|
5505
|
+
getPackageTypes(observe?: 'events', reportProgress?: boolean, options?: {
|
|
5506
|
+
httpHeaderAccept?: 'application/json';
|
|
5507
|
+
context?: HttpContext;
|
|
5508
|
+
transferCache?: boolean;
|
|
5509
|
+
}): Observable<HttpEvent<PackageTypes>>;
|
|
5510
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PackageTypesService, [null, { optional: true; }, { optional: true; }]>;
|
|
5511
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PackageTypesService>;
|
|
5512
|
+
}
|
|
5513
|
+
|
|
5145
5514
|
declare class PendoService extends BaseService {
|
|
5146
5515
|
protected httpClient: HttpClient;
|
|
5147
5516
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
@@ -6181,19 +6550,6 @@ interface ReplenishmentAccessClients {
|
|
|
6181
6550
|
data: Array<ReplenishmentAccessClient>;
|
|
6182
6551
|
}
|
|
6183
6552
|
|
|
6184
|
-
/**
|
|
6185
|
-
* Wms.API.Client
|
|
6186
|
-
*
|
|
6187
|
-
*
|
|
6188
|
-
*
|
|
6189
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6190
|
-
* https://openapi-generator.tech
|
|
6191
|
-
* Do not edit the class manually.
|
|
6192
|
-
*/
|
|
6193
|
-
interface CompanyDescriptionSummary {
|
|
6194
|
-
companyDescription?: string | null;
|
|
6195
|
-
}
|
|
6196
|
-
|
|
6197
6553
|
/**
|
|
6198
6554
|
* Wms.API.Client
|
|
6199
6555
|
*
|
|
@@ -9723,7 +10079,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
9723
10079
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
9724
10080
|
}
|
|
9725
10081
|
|
|
9726
|
-
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)[];
|
|
10082
|
+
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)[];
|
|
9727
10083
|
|
|
9728
10084
|
/**
|
|
9729
10085
|
* Wms.API.Client
|
|
@@ -10039,5 +10395,5 @@ declare class ApiModule {
|
|
|
10039
10395
|
|
|
10040
10396
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
10041
10397
|
|
|
10042
|
-
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,
|
|
10043
|
-
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, 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 };
|
|
10398
|
+
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, 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 };
|
|
10399
|
+
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 };
|