@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
|
@@ -2250,10 +2250,7 @@ class CompaniesService extends BaseService {
|
|
|
2250
2250
|
reportProgress: reportProgress
|
|
2251
2251
|
});
|
|
2252
2252
|
}
|
|
2253
|
-
|
|
2254
|
-
if (companyType === null || companyType === undefined) {
|
|
2255
|
-
throw new Error('Required parameter companyType was null or undefined when calling getCompaniesByCompanyType.');
|
|
2256
|
-
}
|
|
2253
|
+
getShipToCompanies($skip, $top, $orderby, $filter, observe = 'body', reportProgress = false, options) {
|
|
2257
2254
|
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
2258
2255
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
2259
2256
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
@@ -2280,7 +2277,7 @@ class CompaniesService extends BaseService {
|
|
|
2280
2277
|
responseType_ = 'blob';
|
|
2281
2278
|
}
|
|
2282
2279
|
}
|
|
2283
|
-
let localVarPath = `/companies
|
|
2280
|
+
let localVarPath = `/companies/ship-to`;
|
|
2284
2281
|
const { basePath, withCredentials } = this.configuration;
|
|
2285
2282
|
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
2286
2283
|
context: localVarHttpContext,
|
|
@@ -3799,6 +3796,246 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
3799
3796
|
type: Optional
|
|
3800
3797
|
}] }] });
|
|
3801
3798
|
|
|
3799
|
+
/**
|
|
3800
|
+
* Wms.API.Client
|
|
3801
|
+
*
|
|
3802
|
+
*
|
|
3803
|
+
*
|
|
3804
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3805
|
+
* https://openapi-generator.tech
|
|
3806
|
+
* Do not edit the class manually.
|
|
3807
|
+
*/
|
|
3808
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
3809
|
+
class DispatchBoxTypesService extends BaseService {
|
|
3810
|
+
httpClient;
|
|
3811
|
+
constructor(httpClient, basePath, configuration) {
|
|
3812
|
+
super(basePath, configuration);
|
|
3813
|
+
this.httpClient = httpClient;
|
|
3814
|
+
}
|
|
3815
|
+
createDispatchBoxType(dispatchBoxType, observe = 'body', reportProgress = false, options) {
|
|
3816
|
+
if (dispatchBoxType === null || dispatchBoxType === undefined) {
|
|
3817
|
+
throw new Error('Required parameter dispatchBoxType was null or undefined when calling createDispatchBoxType.');
|
|
3818
|
+
}
|
|
3819
|
+
let localVarHeaders = this.defaultHeaders;
|
|
3820
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
3821
|
+
'application/json'
|
|
3822
|
+
]);
|
|
3823
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
3824
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
3825
|
+
}
|
|
3826
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
3827
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
3828
|
+
// to determine the Content-Type header
|
|
3829
|
+
const consumes = [
|
|
3830
|
+
'application/json'
|
|
3831
|
+
];
|
|
3832
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
3833
|
+
if (httpContentTypeSelected !== undefined) {
|
|
3834
|
+
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
3835
|
+
}
|
|
3836
|
+
let responseType_ = 'json';
|
|
3837
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
3838
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
3839
|
+
responseType_ = 'text';
|
|
3840
|
+
}
|
|
3841
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
3842
|
+
responseType_ = 'json';
|
|
3843
|
+
}
|
|
3844
|
+
else {
|
|
3845
|
+
responseType_ = 'blob';
|
|
3846
|
+
}
|
|
3847
|
+
}
|
|
3848
|
+
let localVarPath = `/dispatchBoxTypes`;
|
|
3849
|
+
const { basePath, withCredentials } = this.configuration;
|
|
3850
|
+
return this.httpClient.request('post', `${basePath}${localVarPath}`, {
|
|
3851
|
+
context: localVarHttpContext,
|
|
3852
|
+
body: dispatchBoxType,
|
|
3853
|
+
responseType: responseType_,
|
|
3854
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
3855
|
+
headers: localVarHeaders,
|
|
3856
|
+
observe: observe,
|
|
3857
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
3858
|
+
reportProgress: reportProgress
|
|
3859
|
+
});
|
|
3860
|
+
}
|
|
3861
|
+
deleteDispatchBoxType(id, observe = 'body', reportProgress = false, options) {
|
|
3862
|
+
if (id === null || id === undefined) {
|
|
3863
|
+
throw new Error('Required parameter id was null or undefined when calling deleteDispatchBoxType.');
|
|
3864
|
+
}
|
|
3865
|
+
let localVarHeaders = this.defaultHeaders;
|
|
3866
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
3867
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
3868
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
3869
|
+
}
|
|
3870
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
3871
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
3872
|
+
let responseType_ = 'json';
|
|
3873
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
3874
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
3875
|
+
responseType_ = 'text';
|
|
3876
|
+
}
|
|
3877
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
3878
|
+
responseType_ = 'json';
|
|
3879
|
+
}
|
|
3880
|
+
else {
|
|
3881
|
+
responseType_ = 'blob';
|
|
3882
|
+
}
|
|
3883
|
+
}
|
|
3884
|
+
let localVarPath = `/dispatchBoxTypes/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
|
|
3885
|
+
const { basePath, withCredentials } = this.configuration;
|
|
3886
|
+
return this.httpClient.request('delete', `${basePath}${localVarPath}`, {
|
|
3887
|
+
context: localVarHttpContext,
|
|
3888
|
+
responseType: responseType_,
|
|
3889
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
3890
|
+
headers: localVarHeaders,
|
|
3891
|
+
observe: observe,
|
|
3892
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
3893
|
+
reportProgress: reportProgress
|
|
3894
|
+
});
|
|
3895
|
+
}
|
|
3896
|
+
getDispatchBoxType(id, observe = 'body', reportProgress = false, options) {
|
|
3897
|
+
if (id === null || id === undefined) {
|
|
3898
|
+
throw new Error('Required parameter id was null or undefined when calling getDispatchBoxType.');
|
|
3899
|
+
}
|
|
3900
|
+
let localVarHeaders = this.defaultHeaders;
|
|
3901
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
3902
|
+
'application/json'
|
|
3903
|
+
]);
|
|
3904
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
3905
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
3906
|
+
}
|
|
3907
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
3908
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
3909
|
+
let responseType_ = 'json';
|
|
3910
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
3911
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
3912
|
+
responseType_ = 'text';
|
|
3913
|
+
}
|
|
3914
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
3915
|
+
responseType_ = 'json';
|
|
3916
|
+
}
|
|
3917
|
+
else {
|
|
3918
|
+
responseType_ = 'blob';
|
|
3919
|
+
}
|
|
3920
|
+
}
|
|
3921
|
+
let localVarPath = `/dispatchBoxTypes/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
|
|
3922
|
+
const { basePath, withCredentials } = this.configuration;
|
|
3923
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
3924
|
+
context: localVarHttpContext,
|
|
3925
|
+
responseType: responseType_,
|
|
3926
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
3927
|
+
headers: localVarHeaders,
|
|
3928
|
+
observe: observe,
|
|
3929
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
3930
|
+
reportProgress: reportProgress
|
|
3931
|
+
});
|
|
3932
|
+
}
|
|
3933
|
+
getDispatchBoxTypes($skip, $top, $orderby, $filter, observe = 'body', reportProgress = false, options) {
|
|
3934
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
3935
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
3936
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
3937
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
3938
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
3939
|
+
let localVarHeaders = this.defaultHeaders;
|
|
3940
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
3941
|
+
'application/json'
|
|
3942
|
+
]);
|
|
3943
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
3944
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
3945
|
+
}
|
|
3946
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
3947
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
3948
|
+
let responseType_ = 'json';
|
|
3949
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
3950
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
3951
|
+
responseType_ = 'text';
|
|
3952
|
+
}
|
|
3953
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
3954
|
+
responseType_ = 'json';
|
|
3955
|
+
}
|
|
3956
|
+
else {
|
|
3957
|
+
responseType_ = 'blob';
|
|
3958
|
+
}
|
|
3959
|
+
}
|
|
3960
|
+
let localVarPath = `/dispatchBoxTypes`;
|
|
3961
|
+
const { basePath, withCredentials } = this.configuration;
|
|
3962
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
3963
|
+
context: localVarHttpContext,
|
|
3964
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
3965
|
+
responseType: responseType_,
|
|
3966
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
3967
|
+
headers: localVarHeaders,
|
|
3968
|
+
observe: observe,
|
|
3969
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
3970
|
+
reportProgress: reportProgress
|
|
3971
|
+
});
|
|
3972
|
+
}
|
|
3973
|
+
updateDispatchBoxType(id, dispatchBoxType, observe = 'body', reportProgress = false, options) {
|
|
3974
|
+
if (id === null || id === undefined) {
|
|
3975
|
+
throw new Error('Required parameter id was null or undefined when calling updateDispatchBoxType.');
|
|
3976
|
+
}
|
|
3977
|
+
if (dispatchBoxType === null || dispatchBoxType === undefined) {
|
|
3978
|
+
throw new Error('Required parameter dispatchBoxType was null or undefined when calling updateDispatchBoxType.');
|
|
3979
|
+
}
|
|
3980
|
+
let localVarHeaders = this.defaultHeaders;
|
|
3981
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
3982
|
+
'application/json'
|
|
3983
|
+
]);
|
|
3984
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
3985
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
3986
|
+
}
|
|
3987
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
3988
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
3989
|
+
// to determine the Content-Type header
|
|
3990
|
+
const consumes = [
|
|
3991
|
+
'application/json'
|
|
3992
|
+
];
|
|
3993
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
3994
|
+
if (httpContentTypeSelected !== undefined) {
|
|
3995
|
+
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
3996
|
+
}
|
|
3997
|
+
let responseType_ = 'json';
|
|
3998
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
3999
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
4000
|
+
responseType_ = 'text';
|
|
4001
|
+
}
|
|
4002
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
4003
|
+
responseType_ = 'json';
|
|
4004
|
+
}
|
|
4005
|
+
else {
|
|
4006
|
+
responseType_ = 'blob';
|
|
4007
|
+
}
|
|
4008
|
+
}
|
|
4009
|
+
let localVarPath = `/dispatchBoxTypes/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
|
|
4010
|
+
const { basePath, withCredentials } = this.configuration;
|
|
4011
|
+
return this.httpClient.request('put', `${basePath}${localVarPath}`, {
|
|
4012
|
+
context: localVarHttpContext,
|
|
4013
|
+
body: dispatchBoxType,
|
|
4014
|
+
responseType: responseType_,
|
|
4015
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
4016
|
+
headers: localVarHeaders,
|
|
4017
|
+
observe: observe,
|
|
4018
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
4019
|
+
reportProgress: reportProgress
|
|
4020
|
+
});
|
|
4021
|
+
}
|
|
4022
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: DispatchBoxTypesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4023
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: DispatchBoxTypesService, providedIn: 'root' });
|
|
4024
|
+
}
|
|
4025
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: DispatchBoxTypesService, decorators: [{
|
|
4026
|
+
type: Injectable,
|
|
4027
|
+
args: [{
|
|
4028
|
+
providedIn: 'root'
|
|
4029
|
+
}]
|
|
4030
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
4031
|
+
type: Optional
|
|
4032
|
+
}, {
|
|
4033
|
+
type: Inject,
|
|
4034
|
+
args: [BASE_PATH]
|
|
4035
|
+
}] }, { type: Configuration, decorators: [{
|
|
4036
|
+
type: Optional
|
|
4037
|
+
}] }] });
|
|
4038
|
+
|
|
3802
4039
|
/**
|
|
3803
4040
|
* Wms.API.Client
|
|
3804
4041
|
*
|
|
@@ -3843,11 +4080,122 @@ class DispatchBoxesService extends BaseService {
|
|
|
3843
4080
|
responseType_ = 'blob';
|
|
3844
4081
|
}
|
|
3845
4082
|
}
|
|
3846
|
-
let localVarPath = `/dispatchBoxes`;
|
|
4083
|
+
let localVarPath = `/dispatchBoxes`;
|
|
4084
|
+
const { basePath, withCredentials } = this.configuration;
|
|
4085
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
4086
|
+
context: localVarHttpContext,
|
|
4087
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
4088
|
+
responseType: responseType_,
|
|
4089
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
4090
|
+
headers: localVarHeaders,
|
|
4091
|
+
observe: observe,
|
|
4092
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
4093
|
+
reportProgress: reportProgress
|
|
4094
|
+
});
|
|
4095
|
+
}
|
|
4096
|
+
getDispatchBoxesFromIndex($skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
|
|
4097
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
4098
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
4099
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
4100
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
4101
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
4102
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'searchTerm', searchTerm, QueryParamStyle.Form, true);
|
|
4103
|
+
let localVarHeaders = this.defaultHeaders;
|
|
4104
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
4105
|
+
'application/json'
|
|
4106
|
+
]);
|
|
4107
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
4108
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
4109
|
+
}
|
|
4110
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
4111
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
4112
|
+
let responseType_ = 'json';
|
|
4113
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
4114
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
4115
|
+
responseType_ = 'text';
|
|
4116
|
+
}
|
|
4117
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
4118
|
+
responseType_ = 'json';
|
|
4119
|
+
}
|
|
4120
|
+
else {
|
|
4121
|
+
responseType_ = 'blob';
|
|
4122
|
+
}
|
|
4123
|
+
}
|
|
4124
|
+
let localVarPath = `/dispatchBoxes/search`;
|
|
4125
|
+
const { basePath, withCredentials } = this.configuration;
|
|
4126
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
4127
|
+
context: localVarHttpContext,
|
|
4128
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
4129
|
+
responseType: responseType_,
|
|
4130
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
4131
|
+
headers: localVarHeaders,
|
|
4132
|
+
observe: observe,
|
|
4133
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
4134
|
+
reportProgress: reportProgress
|
|
4135
|
+
});
|
|
4136
|
+
}
|
|
4137
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: DispatchBoxesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4138
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: DispatchBoxesService, providedIn: 'root' });
|
|
4139
|
+
}
|
|
4140
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: DispatchBoxesService, decorators: [{
|
|
4141
|
+
type: Injectable,
|
|
4142
|
+
args: [{
|
|
4143
|
+
providedIn: 'root'
|
|
4144
|
+
}]
|
|
4145
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
4146
|
+
type: Optional
|
|
4147
|
+
}, {
|
|
4148
|
+
type: Inject,
|
|
4149
|
+
args: [BASE_PATH]
|
|
4150
|
+
}] }, { type: Configuration, decorators: [{
|
|
4151
|
+
type: Optional
|
|
4152
|
+
}] }] });
|
|
4153
|
+
|
|
4154
|
+
/**
|
|
4155
|
+
* Wms.API.Client
|
|
4156
|
+
*
|
|
4157
|
+
*
|
|
4158
|
+
*
|
|
4159
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4160
|
+
* https://openapi-generator.tech
|
|
4161
|
+
* Do not edit the class manually.
|
|
4162
|
+
*/
|
|
4163
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
4164
|
+
class DispatchCarriersService extends BaseService {
|
|
4165
|
+
httpClient;
|
|
4166
|
+
constructor(httpClient, basePath, configuration) {
|
|
4167
|
+
super(basePath, configuration);
|
|
4168
|
+
this.httpClient = httpClient;
|
|
4169
|
+
}
|
|
4170
|
+
getDispatchCarriers(dispatchId, observe = 'body', reportProgress = false, options) {
|
|
4171
|
+
if (dispatchId === null || dispatchId === undefined) {
|
|
4172
|
+
throw new Error('Required parameter dispatchId was null or undefined when calling getDispatchCarriers.');
|
|
4173
|
+
}
|
|
4174
|
+
let localVarHeaders = this.defaultHeaders;
|
|
4175
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
4176
|
+
'application/json'
|
|
4177
|
+
]);
|
|
4178
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
4179
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
4180
|
+
}
|
|
4181
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
4182
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
4183
|
+
let responseType_ = 'json';
|
|
4184
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
4185
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
4186
|
+
responseType_ = 'text';
|
|
4187
|
+
}
|
|
4188
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
4189
|
+
responseType_ = 'json';
|
|
4190
|
+
}
|
|
4191
|
+
else {
|
|
4192
|
+
responseType_ = 'blob';
|
|
4193
|
+
}
|
|
4194
|
+
}
|
|
4195
|
+
let localVarPath = `/dispatchCarriers/dispatches/${this.configuration.encodeParam({ name: "dispatchId", value: dispatchId, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}/carriers`;
|
|
3847
4196
|
const { basePath, withCredentials } = this.configuration;
|
|
3848
4197
|
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
3849
4198
|
context: localVarHttpContext,
|
|
3850
|
-
params: localVarQueryParameters.toHttpParams(),
|
|
3851
4199
|
responseType: responseType_,
|
|
3852
4200
|
...(withCredentials ? { withCredentials } : {}),
|
|
3853
4201
|
headers: localVarHeaders,
|
|
@@ -3856,13 +4204,10 @@ class DispatchBoxesService extends BaseService {
|
|
|
3856
4204
|
reportProgress: reportProgress
|
|
3857
4205
|
});
|
|
3858
4206
|
}
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
|
|
3862
|
-
|
|
3863
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
3864
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
3865
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'searchTerm', searchTerm, QueryParamStyle.Form, true);
|
|
4207
|
+
getDispatchCarriersForClient(clientId, observe = 'body', reportProgress = false, options) {
|
|
4208
|
+
if (clientId === null || clientId === undefined) {
|
|
4209
|
+
throw new Error('Required parameter clientId was null or undefined when calling getDispatchCarriersForClient.');
|
|
4210
|
+
}
|
|
3866
4211
|
let localVarHeaders = this.defaultHeaders;
|
|
3867
4212
|
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
3868
4213
|
'application/json'
|
|
@@ -3884,9 +4229,49 @@ class DispatchBoxesService extends BaseService {
|
|
|
3884
4229
|
responseType_ = 'blob';
|
|
3885
4230
|
}
|
|
3886
4231
|
}
|
|
3887
|
-
let localVarPath = `/
|
|
4232
|
+
let localVarPath = `/dispatchCarriers/clients/${this.configuration.encodeParam({ name: "clientId", value: clientId, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}/carriers`;
|
|
3888
4233
|
const { basePath, withCredentials } = this.configuration;
|
|
3889
4234
|
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
4235
|
+
context: localVarHttpContext,
|
|
4236
|
+
responseType: responseType_,
|
|
4237
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
4238
|
+
headers: localVarHeaders,
|
|
4239
|
+
observe: observe,
|
|
4240
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
4241
|
+
reportProgress: reportProgress
|
|
4242
|
+
});
|
|
4243
|
+
}
|
|
4244
|
+
setDispatchCarrier(id, carrierId, observe = 'body', reportProgress = false, options) {
|
|
4245
|
+
if (id === null || id === undefined) {
|
|
4246
|
+
throw new Error('Required parameter id was null or undefined when calling setDispatchCarrier.');
|
|
4247
|
+
}
|
|
4248
|
+
if (carrierId === null || carrierId === undefined) {
|
|
4249
|
+
throw new Error('Required parameter carrierId was null or undefined when calling setDispatchCarrier.');
|
|
4250
|
+
}
|
|
4251
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
4252
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'carrierId', carrierId, QueryParamStyle.Form, true);
|
|
4253
|
+
let localVarHeaders = this.defaultHeaders;
|
|
4254
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
4255
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
4256
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
4257
|
+
}
|
|
4258
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
4259
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
4260
|
+
let responseType_ = 'json';
|
|
4261
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
4262
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
4263
|
+
responseType_ = 'text';
|
|
4264
|
+
}
|
|
4265
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
4266
|
+
responseType_ = 'json';
|
|
4267
|
+
}
|
|
4268
|
+
else {
|
|
4269
|
+
responseType_ = 'blob';
|
|
4270
|
+
}
|
|
4271
|
+
}
|
|
4272
|
+
let localVarPath = `/dispatchCarriers/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}/carrier`;
|
|
4273
|
+
const { basePath, withCredentials } = this.configuration;
|
|
4274
|
+
return this.httpClient.request('put', `${basePath}${localVarPath}`, {
|
|
3890
4275
|
context: localVarHttpContext,
|
|
3891
4276
|
params: localVarQueryParameters.toHttpParams(),
|
|
3892
4277
|
responseType: responseType_,
|
|
@@ -3897,10 +4282,10 @@ class DispatchBoxesService extends BaseService {
|
|
|
3897
4282
|
reportProgress: reportProgress
|
|
3898
4283
|
});
|
|
3899
4284
|
}
|
|
3900
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type:
|
|
3901
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type:
|
|
4285
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: DispatchCarriersService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4286
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: DispatchCarriersService, providedIn: 'root' });
|
|
3902
4287
|
}
|
|
3903
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type:
|
|
4288
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: DispatchCarriersService, decorators: [{
|
|
3904
4289
|
type: Injectable,
|
|
3905
4290
|
args: [{
|
|
3906
4291
|
providedIn: 'root'
|
|
@@ -4273,43 +4658,6 @@ class DispatchesService extends BaseService {
|
|
|
4273
4658
|
reportProgress: reportProgress
|
|
4274
4659
|
});
|
|
4275
4660
|
}
|
|
4276
|
-
getDispatchCarriers(id, observe = 'body', reportProgress = false, options) {
|
|
4277
|
-
if (id === null || id === undefined) {
|
|
4278
|
-
throw new Error('Required parameter id was null or undefined when calling getDispatchCarriers.');
|
|
4279
|
-
}
|
|
4280
|
-
let localVarHeaders = this.defaultHeaders;
|
|
4281
|
-
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
4282
|
-
'application/json'
|
|
4283
|
-
]);
|
|
4284
|
-
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
4285
|
-
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
4286
|
-
}
|
|
4287
|
-
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
4288
|
-
const localVarTransferCache = options?.transferCache ?? true;
|
|
4289
|
-
let responseType_ = 'json';
|
|
4290
|
-
if (localVarHttpHeaderAcceptSelected) {
|
|
4291
|
-
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
4292
|
-
responseType_ = 'text';
|
|
4293
|
-
}
|
|
4294
|
-
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
4295
|
-
responseType_ = 'json';
|
|
4296
|
-
}
|
|
4297
|
-
else {
|
|
4298
|
-
responseType_ = 'blob';
|
|
4299
|
-
}
|
|
4300
|
-
}
|
|
4301
|
-
let localVarPath = `/dispatches/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}/carriers`;
|
|
4302
|
-
const { basePath, withCredentials } = this.configuration;
|
|
4303
|
-
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
4304
|
-
context: localVarHttpContext,
|
|
4305
|
-
responseType: responseType_,
|
|
4306
|
-
...(withCredentials ? { withCredentials } : {}),
|
|
4307
|
-
headers: localVarHeaders,
|
|
4308
|
-
observe: observe,
|
|
4309
|
-
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
4310
|
-
reportProgress: reportProgress
|
|
4311
|
-
});
|
|
4312
|
-
}
|
|
4313
4661
|
getDispatchSummaryView(id, observe = 'body', reportProgress = false, options) {
|
|
4314
4662
|
if (id === null || id === undefined) {
|
|
4315
4663
|
throw new Error('Required parameter id was null or undefined when calling getDispatchSummaryView.');
|
|
@@ -4506,47 +4854,6 @@ class DispatchesService extends BaseService {
|
|
|
4506
4854
|
reportProgress: reportProgress
|
|
4507
4855
|
});
|
|
4508
4856
|
}
|
|
4509
|
-
setDispatchCarrier(id, carrierId, observe = 'body', reportProgress = false, options) {
|
|
4510
|
-
if (id === null || id === undefined) {
|
|
4511
|
-
throw new Error('Required parameter id was null or undefined when calling setDispatchCarrier.');
|
|
4512
|
-
}
|
|
4513
|
-
if (carrierId === null || carrierId === undefined) {
|
|
4514
|
-
throw new Error('Required parameter carrierId was null or undefined when calling setDispatchCarrier.');
|
|
4515
|
-
}
|
|
4516
|
-
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
4517
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'carrierId', carrierId, QueryParamStyle.Form, true);
|
|
4518
|
-
let localVarHeaders = this.defaultHeaders;
|
|
4519
|
-
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
4520
|
-
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
4521
|
-
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
4522
|
-
}
|
|
4523
|
-
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
4524
|
-
const localVarTransferCache = options?.transferCache ?? true;
|
|
4525
|
-
let responseType_ = 'json';
|
|
4526
|
-
if (localVarHttpHeaderAcceptSelected) {
|
|
4527
|
-
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
4528
|
-
responseType_ = 'text';
|
|
4529
|
-
}
|
|
4530
|
-
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
4531
|
-
responseType_ = 'json';
|
|
4532
|
-
}
|
|
4533
|
-
else {
|
|
4534
|
-
responseType_ = 'blob';
|
|
4535
|
-
}
|
|
4536
|
-
}
|
|
4537
|
-
let localVarPath = `/dispatches/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}/carrier`;
|
|
4538
|
-
const { basePath, withCredentials } = this.configuration;
|
|
4539
|
-
return this.httpClient.request('put', `${basePath}${localVarPath}`, {
|
|
4540
|
-
context: localVarHttpContext,
|
|
4541
|
-
params: localVarQueryParameters.toHttpParams(),
|
|
4542
|
-
responseType: responseType_,
|
|
4543
|
-
...(withCredentials ? { withCredentials } : {}),
|
|
4544
|
-
headers: localVarHeaders,
|
|
4545
|
-
observe: observe,
|
|
4546
|
-
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
4547
|
-
reportProgress: reportProgress
|
|
4548
|
-
});
|
|
4549
|
-
}
|
|
4550
4857
|
setDispatchCarrierReference(id, courierReference, carrierServiceName, observe = 'body', reportProgress = false, options) {
|
|
4551
4858
|
if (id === null || id === undefined) {
|
|
4552
4859
|
throw new Error('Required parameter id was null or undefined when calling setDispatchCarrierReference.');
|
|
@@ -5029,6 +5336,73 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
5029
5336
|
type: Optional
|
|
5030
5337
|
}] }] });
|
|
5031
5338
|
|
|
5339
|
+
/**
|
|
5340
|
+
* Wms.API.Client
|
|
5341
|
+
*
|
|
5342
|
+
*
|
|
5343
|
+
*
|
|
5344
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5345
|
+
* https://openapi-generator.tech
|
|
5346
|
+
* Do not edit the class manually.
|
|
5347
|
+
*/
|
|
5348
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
5349
|
+
class PackageTypesService extends BaseService {
|
|
5350
|
+
httpClient;
|
|
5351
|
+
constructor(httpClient, basePath, configuration) {
|
|
5352
|
+
super(basePath, configuration);
|
|
5353
|
+
this.httpClient = httpClient;
|
|
5354
|
+
}
|
|
5355
|
+
getPackageTypes(observe = 'body', reportProgress = false, options) {
|
|
5356
|
+
let localVarHeaders = this.defaultHeaders;
|
|
5357
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
5358
|
+
'application/json'
|
|
5359
|
+
]);
|
|
5360
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
5361
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
5362
|
+
}
|
|
5363
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
5364
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
5365
|
+
let responseType_ = 'json';
|
|
5366
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
5367
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
5368
|
+
responseType_ = 'text';
|
|
5369
|
+
}
|
|
5370
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
5371
|
+
responseType_ = 'json';
|
|
5372
|
+
}
|
|
5373
|
+
else {
|
|
5374
|
+
responseType_ = 'blob';
|
|
5375
|
+
}
|
|
5376
|
+
}
|
|
5377
|
+
let localVarPath = `/packageTypes`;
|
|
5378
|
+
const { basePath, withCredentials } = this.configuration;
|
|
5379
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
5380
|
+
context: localVarHttpContext,
|
|
5381
|
+
responseType: responseType_,
|
|
5382
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
5383
|
+
headers: localVarHeaders,
|
|
5384
|
+
observe: observe,
|
|
5385
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
5386
|
+
reportProgress: reportProgress
|
|
5387
|
+
});
|
|
5388
|
+
}
|
|
5389
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: PackageTypesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5390
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: PackageTypesService, providedIn: 'root' });
|
|
5391
|
+
}
|
|
5392
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: PackageTypesService, decorators: [{
|
|
5393
|
+
type: Injectable,
|
|
5394
|
+
args: [{
|
|
5395
|
+
providedIn: 'root'
|
|
5396
|
+
}]
|
|
5397
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
5398
|
+
type: Optional
|
|
5399
|
+
}, {
|
|
5400
|
+
type: Inject,
|
|
5401
|
+
args: [BASE_PATH]
|
|
5402
|
+
}] }, { type: Configuration, decorators: [{
|
|
5403
|
+
type: Optional
|
|
5404
|
+
}] }] });
|
|
5405
|
+
|
|
5032
5406
|
/**
|
|
5033
5407
|
* Wms.API.Client
|
|
5034
5408
|
*
|
|
@@ -10222,7 +10596,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
10222
10596
|
type: Optional
|
|
10223
10597
|
}] }] });
|
|
10224
10598
|
|
|
10225
|
-
const APIS = [AddressesService, AnalyticsService, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackingService, CompaniesService, ContactsService, CountRecordsService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PendoService, PermissionsService, PickSummariesService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessService, ReplenishmentRecordsService, ReturnedItemsService, SalesOrderItemsService, SalesOrdersService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserCompaniesService, UserPrintersService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WavePickReleasesService, WavePickingAccessService, WaveSummariesService, WavesByPickReleaseIdService];
|
|
10599
|
+
const APIS = [AddressesService, AnalyticsService, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackingService, CompaniesService, ContactsService, CountRecordsService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PackageTypesService, PendoService, PermissionsService, PickSummariesService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessService, ReplenishmentRecordsService, ReturnedItemsService, SalesOrderItemsService, SalesOrdersService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserCompaniesService, UserPrintersService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WavePickReleasesService, WavePickingAccessService, WaveSummariesService, WavesByPickReleaseIdService];
|
|
10226
10600
|
|
|
10227
10601
|
/**
|
|
10228
10602
|
* Wms.API.Client
|
|
@@ -10399,13 +10773,6 @@ const AddressType = {
|
|
|
10399
10773
|
* https://openapi-generator.tech
|
|
10400
10774
|
* Do not edit the class manually.
|
|
10401
10775
|
*/
|
|
10402
|
-
const ClusterPackStatuses = {
|
|
10403
|
-
ToBeProcessed: 'ToBeProcessed',
|
|
10404
|
-
PartiallySuccessful: 'PartiallySuccessful',
|
|
10405
|
-
AllSuccessful: 'AllSuccessful',
|
|
10406
|
-
AllFailed: 'AllFailed',
|
|
10407
|
-
NoLongerRequired: 'NoLongerRequired'
|
|
10408
|
-
};
|
|
10409
10776
|
|
|
10410
10777
|
/**
|
|
10411
10778
|
* Wms.API.Client
|
|
@@ -10416,8 +10783,17 @@ const ClusterPackStatuses = {
|
|
|
10416
10783
|
* https://openapi-generator.tech
|
|
10417
10784
|
* Do not edit the class manually.
|
|
10418
10785
|
*/
|
|
10419
|
-
|
|
10420
|
-
|
|
10786
|
+
|
|
10787
|
+
/**
|
|
10788
|
+
* Wms.API.Client
|
|
10789
|
+
*
|
|
10790
|
+
*
|
|
10791
|
+
*
|
|
10792
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10793
|
+
* https://openapi-generator.tech
|
|
10794
|
+
* Do not edit the class manually.
|
|
10795
|
+
*/
|
|
10796
|
+
const ClusterPackStatuses = {
|
|
10421
10797
|
ToBeProcessed: 'ToBeProcessed',
|
|
10422
10798
|
PartiallySuccessful: 'PartiallySuccessful',
|
|
10423
10799
|
AllSuccessful: 'AllSuccessful',
|
|
@@ -10434,6 +10810,14 @@ const ClusterPackWaveGridTypes = {
|
|
|
10434
10810
|
* https://openapi-generator.tech
|
|
10435
10811
|
* Do not edit the class manually.
|
|
10436
10812
|
*/
|
|
10813
|
+
const ClusterPackWaveGridTypes = {
|
|
10814
|
+
SetPrinter: 'SetPrinter',
|
|
10815
|
+
ToBeProcessed: 'ToBeProcessed',
|
|
10816
|
+
PartiallySuccessful: 'PartiallySuccessful',
|
|
10817
|
+
AllSuccessful: 'AllSuccessful',
|
|
10818
|
+
AllFailed: 'AllFailed',
|
|
10819
|
+
NoLongerRequired: 'NoLongerRequired'
|
|
10820
|
+
};
|
|
10437
10821
|
|
|
10438
10822
|
/**
|
|
10439
10823
|
* Wms.API.Client
|
|
@@ -10474,28 +10858,6 @@ const ClusterPackWaveGridTypes = {
|
|
|
10474
10858
|
* https://openapi-generator.tech
|
|
10475
10859
|
* Do not edit the class manually.
|
|
10476
10860
|
*/
|
|
10477
|
-
const CompanyType = {
|
|
10478
|
-
Carrier: 'Carrier',
|
|
10479
|
-
TransportServices: 'TransportServices',
|
|
10480
|
-
Company: 'Company',
|
|
10481
|
-
Vendor: 'Vendor',
|
|
10482
|
-
Customer: 'Customer',
|
|
10483
|
-
ShippingAgent: 'ShippingAgent',
|
|
10484
|
-
ShipFrom: 'ShipFrom',
|
|
10485
|
-
OriginAgent: 'OriginAgent',
|
|
10486
|
-
ShipTo: 'ShipTo',
|
|
10487
|
-
BuyingAgent: 'BuyingAgent',
|
|
10488
|
-
Seller: 'Seller',
|
|
10489
|
-
DistributionCentre: 'DistributionCentre',
|
|
10490
|
-
Client: 'Client',
|
|
10491
|
-
SysAdmin: 'SysAdmin',
|
|
10492
|
-
LocalAgent: 'LocalAgent',
|
|
10493
|
-
CarrierProvider: 'CarrierProvider',
|
|
10494
|
-
WholesaleCustomer: 'WholesaleCustomer',
|
|
10495
|
-
WebCustomer: 'WebCustomer',
|
|
10496
|
-
DestinationAgent: 'DestinationAgent',
|
|
10497
|
-
ForwardingAgent: 'ForwardingAgent'
|
|
10498
|
-
};
|
|
10499
10861
|
|
|
10500
10862
|
/**
|
|
10501
10863
|
* Wms.API.Client
|
|
@@ -10893,6 +11255,26 @@ const OrderType = {
|
|
|
10893
11255
|
Retail: 'Retail'
|
|
10894
11256
|
};
|
|
10895
11257
|
|
|
11258
|
+
/**
|
|
11259
|
+
* Wms.API.Client
|
|
11260
|
+
*
|
|
11261
|
+
*
|
|
11262
|
+
*
|
|
11263
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11264
|
+
* https://openapi-generator.tech
|
|
11265
|
+
* Do not edit the class manually.
|
|
11266
|
+
*/
|
|
11267
|
+
|
|
11268
|
+
/**
|
|
11269
|
+
* Wms.API.Client
|
|
11270
|
+
*
|
|
11271
|
+
*
|
|
11272
|
+
*
|
|
11273
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11274
|
+
* https://openapi-generator.tech
|
|
11275
|
+
* Do not edit the class manually.
|
|
11276
|
+
*/
|
|
11277
|
+
|
|
10896
11278
|
/**
|
|
10897
11279
|
* Wms.API.Client
|
|
10898
11280
|
*
|
|
@@ -11274,6 +11656,20 @@ const ReprintStatuses = {
|
|
|
11274
11656
|
* Do not edit the class manually.
|
|
11275
11657
|
*/
|
|
11276
11658
|
|
|
11659
|
+
/**
|
|
11660
|
+
* Wms.API.Client
|
|
11661
|
+
*
|
|
11662
|
+
*
|
|
11663
|
+
*
|
|
11664
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11665
|
+
* https://openapi-generator.tech
|
|
11666
|
+
* Do not edit the class manually.
|
|
11667
|
+
*/
|
|
11668
|
+
const ShipToSubtype = {
|
|
11669
|
+
Company: 'Company',
|
|
11670
|
+
Station: 'Station'
|
|
11671
|
+
};
|
|
11672
|
+
|
|
11277
11673
|
/**
|
|
11278
11674
|
* Wms.API.Client
|
|
11279
11675
|
*
|
|
@@ -11582,5 +11978,5 @@ function provideApi(configOrBasePath) {
|
|
|
11582
11978
|
* Generated bundle index. Do not edit.
|
|
11583
11979
|
*/
|
|
11584
11980
|
|
|
11585
|
-
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackingService, CompaniesService,
|
|
11981
|
+
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackingService, CompaniesService, Configuration, ContactsService, CountRecordsService, CountStatusGroup, CountStatuses, CountType, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackageTypesService, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintTypes, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReprintStatuses, ReturnedItemsService, SalesOrderItemsService, SalesOrdersService, SettingsService, ShipToSubtype, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WavesByPickReleaseIdService, provideApi };
|
|
11586
11982
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|