@indigina/wms-api 0.0.149 → 0.0.150
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/fesm2022/indigina-wms-api.mjs +537 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +458 -3
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/wms-api@0.0.
|
|
1
|
+
# @indigina/wms-api@0.0.150
|
|
2
2
|
|
|
3
3
|
WMS API Client for Angular applications
|
|
4
4
|
|
|
@@ -24,7 +24,7 @@ Navigate to the folder of your consuming project and run one of next commands.
|
|
|
24
24
|
_published:_
|
|
25
25
|
|
|
26
26
|
```console
|
|
27
|
-
npm install @indigina/wms-api@0.0.
|
|
27
|
+
npm install @indigina/wms-api@0.0.150 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -6761,6 +6761,80 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
6761
6761
|
type: Optional
|
|
6762
6762
|
}] }] });
|
|
6763
6763
|
|
|
6764
|
+
/**
|
|
6765
|
+
* Wms.API.Client
|
|
6766
|
+
*
|
|
6767
|
+
*
|
|
6768
|
+
*
|
|
6769
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6770
|
+
* https://openapi-generator.tech
|
|
6771
|
+
* Do not edit the class manually.
|
|
6772
|
+
*/
|
|
6773
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
6774
|
+
class UserCompaniesService extends BaseService {
|
|
6775
|
+
httpClient;
|
|
6776
|
+
constructor(httpClient, basePath, configuration) {
|
|
6777
|
+
super(basePath, configuration);
|
|
6778
|
+
this.httpClient = httpClient;
|
|
6779
|
+
}
|
|
6780
|
+
getUserCompanies($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
6781
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
6782
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
6783
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
6784
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
6785
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
6786
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
6787
|
+
let localVarHeaders = this.defaultHeaders;
|
|
6788
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
6789
|
+
'application/json'
|
|
6790
|
+
]);
|
|
6791
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
6792
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
6793
|
+
}
|
|
6794
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
6795
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
6796
|
+
let responseType_ = 'json';
|
|
6797
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
6798
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
6799
|
+
responseType_ = 'text';
|
|
6800
|
+
}
|
|
6801
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
6802
|
+
responseType_ = 'json';
|
|
6803
|
+
}
|
|
6804
|
+
else {
|
|
6805
|
+
responseType_ = 'blob';
|
|
6806
|
+
}
|
|
6807
|
+
}
|
|
6808
|
+
let localVarPath = `/userCompanies`;
|
|
6809
|
+
const { basePath, withCredentials } = this.configuration;
|
|
6810
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
6811
|
+
context: localVarHttpContext,
|
|
6812
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
6813
|
+
responseType: responseType_,
|
|
6814
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
6815
|
+
headers: localVarHeaders,
|
|
6816
|
+
observe: observe,
|
|
6817
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
6818
|
+
reportProgress: reportProgress
|
|
6819
|
+
});
|
|
6820
|
+
}
|
|
6821
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: UserCompaniesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6822
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: UserCompaniesService, providedIn: 'root' });
|
|
6823
|
+
}
|
|
6824
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: UserCompaniesService, decorators: [{
|
|
6825
|
+
type: Injectable,
|
|
6826
|
+
args: [{
|
|
6827
|
+
providedIn: 'root'
|
|
6828
|
+
}]
|
|
6829
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
6830
|
+
type: Optional
|
|
6831
|
+
}, {
|
|
6832
|
+
type: Inject,
|
|
6833
|
+
args: [BASE_PATH]
|
|
6834
|
+
}] }, { type: Configuration, decorators: [{
|
|
6835
|
+
type: Optional
|
|
6836
|
+
}] }] });
|
|
6837
|
+
|
|
6764
6838
|
/**
|
|
6765
6839
|
* Wms.API.Client
|
|
6766
6840
|
*
|
|
@@ -6950,6 +7024,415 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
6950
7024
|
type: Optional
|
|
6951
7025
|
}] }] });
|
|
6952
7026
|
|
|
7027
|
+
/**
|
|
7028
|
+
* Wms.API.Client
|
|
7029
|
+
*
|
|
7030
|
+
*
|
|
7031
|
+
*
|
|
7032
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7033
|
+
* https://openapi-generator.tech
|
|
7034
|
+
* Do not edit the class manually.
|
|
7035
|
+
*/
|
|
7036
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
7037
|
+
class WaveConfigGroupsService extends BaseService {
|
|
7038
|
+
httpClient;
|
|
7039
|
+
constructor(httpClient, basePath, configuration) {
|
|
7040
|
+
super(basePath, configuration);
|
|
7041
|
+
this.httpClient = httpClient;
|
|
7042
|
+
}
|
|
7043
|
+
createWaveConfigGroup(waveConfigGroup, observe = 'body', reportProgress = false, options) {
|
|
7044
|
+
if (waveConfigGroup === null || waveConfigGroup === undefined) {
|
|
7045
|
+
throw new Error('Required parameter waveConfigGroup was null or undefined when calling createWaveConfigGroup.');
|
|
7046
|
+
}
|
|
7047
|
+
let localVarHeaders = this.defaultHeaders;
|
|
7048
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
7049
|
+
'application/json'
|
|
7050
|
+
]);
|
|
7051
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
7052
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
7053
|
+
}
|
|
7054
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
7055
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
7056
|
+
// to determine the Content-Type header
|
|
7057
|
+
const consumes = [
|
|
7058
|
+
'application/json'
|
|
7059
|
+
];
|
|
7060
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
7061
|
+
if (httpContentTypeSelected !== undefined) {
|
|
7062
|
+
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
7063
|
+
}
|
|
7064
|
+
let responseType_ = 'json';
|
|
7065
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
7066
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
7067
|
+
responseType_ = 'text';
|
|
7068
|
+
}
|
|
7069
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
7070
|
+
responseType_ = 'json';
|
|
7071
|
+
}
|
|
7072
|
+
else {
|
|
7073
|
+
responseType_ = 'blob';
|
|
7074
|
+
}
|
|
7075
|
+
}
|
|
7076
|
+
let localVarPath = `/waveConfigGroups`;
|
|
7077
|
+
const { basePath, withCredentials } = this.configuration;
|
|
7078
|
+
return this.httpClient.request('post', `${basePath}${localVarPath}`, {
|
|
7079
|
+
context: localVarHttpContext,
|
|
7080
|
+
body: waveConfigGroup,
|
|
7081
|
+
responseType: responseType_,
|
|
7082
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
7083
|
+
headers: localVarHeaders,
|
|
7084
|
+
observe: observe,
|
|
7085
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
7086
|
+
reportProgress: reportProgress
|
|
7087
|
+
});
|
|
7088
|
+
}
|
|
7089
|
+
createWaveConfigGroupConfiguration(waveConfigGroupId, waveConfigGroupConfiguration, observe = 'body', reportProgress = false, options) {
|
|
7090
|
+
if (waveConfigGroupId === null || waveConfigGroupId === undefined) {
|
|
7091
|
+
throw new Error('Required parameter waveConfigGroupId was null or undefined when calling createWaveConfigGroupConfiguration.');
|
|
7092
|
+
}
|
|
7093
|
+
if (waveConfigGroupConfiguration === null || waveConfigGroupConfiguration === undefined) {
|
|
7094
|
+
throw new Error('Required parameter waveConfigGroupConfiguration was null or undefined when calling createWaveConfigGroupConfiguration.');
|
|
7095
|
+
}
|
|
7096
|
+
let localVarHeaders = this.defaultHeaders;
|
|
7097
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
7098
|
+
'application/json'
|
|
7099
|
+
]);
|
|
7100
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
7101
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
7102
|
+
}
|
|
7103
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
7104
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
7105
|
+
// to determine the Content-Type header
|
|
7106
|
+
const consumes = [
|
|
7107
|
+
'application/json'
|
|
7108
|
+
];
|
|
7109
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
7110
|
+
if (httpContentTypeSelected !== undefined) {
|
|
7111
|
+
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
7112
|
+
}
|
|
7113
|
+
let responseType_ = 'json';
|
|
7114
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
7115
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
7116
|
+
responseType_ = 'text';
|
|
7117
|
+
}
|
|
7118
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
7119
|
+
responseType_ = 'json';
|
|
7120
|
+
}
|
|
7121
|
+
else {
|
|
7122
|
+
responseType_ = 'blob';
|
|
7123
|
+
}
|
|
7124
|
+
}
|
|
7125
|
+
let localVarPath = `/waveConfigGroups/${this.configuration.encodeParam({ name: "waveConfigGroupId", value: waveConfigGroupId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}/configurations`;
|
|
7126
|
+
const { basePath, withCredentials } = this.configuration;
|
|
7127
|
+
return this.httpClient.request('post', `${basePath}${localVarPath}`, {
|
|
7128
|
+
context: localVarHttpContext,
|
|
7129
|
+
body: waveConfigGroupConfiguration,
|
|
7130
|
+
responseType: responseType_,
|
|
7131
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
7132
|
+
headers: localVarHeaders,
|
|
7133
|
+
observe: observe,
|
|
7134
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
7135
|
+
reportProgress: reportProgress
|
|
7136
|
+
});
|
|
7137
|
+
}
|
|
7138
|
+
deleteWaveConfigGroup(id, observe = 'body', reportProgress = false, options) {
|
|
7139
|
+
if (id === null || id === undefined) {
|
|
7140
|
+
throw new Error('Required parameter id was null or undefined when calling deleteWaveConfigGroup.');
|
|
7141
|
+
}
|
|
7142
|
+
let localVarHeaders = this.defaultHeaders;
|
|
7143
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
7144
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
7145
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
7146
|
+
}
|
|
7147
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
7148
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
7149
|
+
let responseType_ = 'json';
|
|
7150
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
7151
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
7152
|
+
responseType_ = 'text';
|
|
7153
|
+
}
|
|
7154
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
7155
|
+
responseType_ = 'json';
|
|
7156
|
+
}
|
|
7157
|
+
else {
|
|
7158
|
+
responseType_ = 'blob';
|
|
7159
|
+
}
|
|
7160
|
+
}
|
|
7161
|
+
let localVarPath = `/waveConfigGroups/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}`;
|
|
7162
|
+
const { basePath, withCredentials } = this.configuration;
|
|
7163
|
+
return this.httpClient.request('delete', `${basePath}${localVarPath}`, {
|
|
7164
|
+
context: localVarHttpContext,
|
|
7165
|
+
responseType: responseType_,
|
|
7166
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
7167
|
+
headers: localVarHeaders,
|
|
7168
|
+
observe: observe,
|
|
7169
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
7170
|
+
reportProgress: reportProgress
|
|
7171
|
+
});
|
|
7172
|
+
}
|
|
7173
|
+
deleteWaveConfigGroupConfiguration(waveConfigGroupId, id, observe = 'body', reportProgress = false, options) {
|
|
7174
|
+
if (waveConfigGroupId === null || waveConfigGroupId === undefined) {
|
|
7175
|
+
throw new Error('Required parameter waveConfigGroupId was null or undefined when calling deleteWaveConfigGroupConfiguration.');
|
|
7176
|
+
}
|
|
7177
|
+
if (id === null || id === undefined) {
|
|
7178
|
+
throw new Error('Required parameter id was null or undefined when calling deleteWaveConfigGroupConfiguration.');
|
|
7179
|
+
}
|
|
7180
|
+
let localVarHeaders = this.defaultHeaders;
|
|
7181
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
7182
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
7183
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
7184
|
+
}
|
|
7185
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
7186
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
7187
|
+
let responseType_ = 'json';
|
|
7188
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
7189
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
7190
|
+
responseType_ = 'text';
|
|
7191
|
+
}
|
|
7192
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
7193
|
+
responseType_ = 'json';
|
|
7194
|
+
}
|
|
7195
|
+
else {
|
|
7196
|
+
responseType_ = 'blob';
|
|
7197
|
+
}
|
|
7198
|
+
}
|
|
7199
|
+
let localVarPath = `/waveConfigGroups/${this.configuration.encodeParam({ name: "waveConfigGroupId", value: waveConfigGroupId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}/configurations/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}`;
|
|
7200
|
+
const { basePath, withCredentials } = this.configuration;
|
|
7201
|
+
return this.httpClient.request('delete', `${basePath}${localVarPath}`, {
|
|
7202
|
+
context: localVarHttpContext,
|
|
7203
|
+
responseType: responseType_,
|
|
7204
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
7205
|
+
headers: localVarHeaders,
|
|
7206
|
+
observe: observe,
|
|
7207
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
7208
|
+
reportProgress: reportProgress
|
|
7209
|
+
});
|
|
7210
|
+
}
|
|
7211
|
+
getWaveConfigGroup(id, observe = 'body', reportProgress = false, options) {
|
|
7212
|
+
if (id === null || id === undefined) {
|
|
7213
|
+
throw new Error('Required parameter id was null or undefined when calling getWaveConfigGroup.');
|
|
7214
|
+
}
|
|
7215
|
+
let localVarHeaders = this.defaultHeaders;
|
|
7216
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
7217
|
+
'application/json'
|
|
7218
|
+
]);
|
|
7219
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
7220
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
7221
|
+
}
|
|
7222
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
7223
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
7224
|
+
let responseType_ = 'json';
|
|
7225
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
7226
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
7227
|
+
responseType_ = 'text';
|
|
7228
|
+
}
|
|
7229
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
7230
|
+
responseType_ = 'json';
|
|
7231
|
+
}
|
|
7232
|
+
else {
|
|
7233
|
+
responseType_ = 'blob';
|
|
7234
|
+
}
|
|
7235
|
+
}
|
|
7236
|
+
let localVarPath = `/waveConfigGroups/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}`;
|
|
7237
|
+
const { basePath, withCredentials } = this.configuration;
|
|
7238
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
7239
|
+
context: localVarHttpContext,
|
|
7240
|
+
responseType: responseType_,
|
|
7241
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
7242
|
+
headers: localVarHeaders,
|
|
7243
|
+
observe: observe,
|
|
7244
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
7245
|
+
reportProgress: reportProgress
|
|
7246
|
+
});
|
|
7247
|
+
}
|
|
7248
|
+
getWaveConfigGroupAvailableConfigurations(waveConfigGroupId, observe = 'body', reportProgress = false, options) {
|
|
7249
|
+
if (waveConfigGroupId === null || waveConfigGroupId === undefined) {
|
|
7250
|
+
throw new Error('Required parameter waveConfigGroupId was null or undefined when calling getWaveConfigGroupAvailableConfigurations.');
|
|
7251
|
+
}
|
|
7252
|
+
let localVarHeaders = this.defaultHeaders;
|
|
7253
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
7254
|
+
'application/json'
|
|
7255
|
+
]);
|
|
7256
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
7257
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
7258
|
+
}
|
|
7259
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
7260
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
7261
|
+
let responseType_ = 'json';
|
|
7262
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
7263
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
7264
|
+
responseType_ = 'text';
|
|
7265
|
+
}
|
|
7266
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
7267
|
+
responseType_ = 'json';
|
|
7268
|
+
}
|
|
7269
|
+
else {
|
|
7270
|
+
responseType_ = 'blob';
|
|
7271
|
+
}
|
|
7272
|
+
}
|
|
7273
|
+
let localVarPath = `/waveConfigGroups/${this.configuration.encodeParam({ name: "waveConfigGroupId", value: waveConfigGroupId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}/available-configurations`;
|
|
7274
|
+
const { basePath, withCredentials } = this.configuration;
|
|
7275
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
7276
|
+
context: localVarHttpContext,
|
|
7277
|
+
responseType: responseType_,
|
|
7278
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
7279
|
+
headers: localVarHeaders,
|
|
7280
|
+
observe: observe,
|
|
7281
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
7282
|
+
reportProgress: reportProgress
|
|
7283
|
+
});
|
|
7284
|
+
}
|
|
7285
|
+
getWaveConfigGroupConfigurations(waveConfigGroupId, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
7286
|
+
if (waveConfigGroupId === null || waveConfigGroupId === undefined) {
|
|
7287
|
+
throw new Error('Required parameter waveConfigGroupId was null or undefined when calling getWaveConfigGroupConfigurations.');
|
|
7288
|
+
}
|
|
7289
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
7290
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
7291
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
7292
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
7293
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
7294
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
7295
|
+
let localVarHeaders = this.defaultHeaders;
|
|
7296
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
7297
|
+
'application/json'
|
|
7298
|
+
]);
|
|
7299
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
7300
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
7301
|
+
}
|
|
7302
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
7303
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
7304
|
+
let responseType_ = 'json';
|
|
7305
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
7306
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
7307
|
+
responseType_ = 'text';
|
|
7308
|
+
}
|
|
7309
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
7310
|
+
responseType_ = 'json';
|
|
7311
|
+
}
|
|
7312
|
+
else {
|
|
7313
|
+
responseType_ = 'blob';
|
|
7314
|
+
}
|
|
7315
|
+
}
|
|
7316
|
+
let localVarPath = `/waveConfigGroups/${this.configuration.encodeParam({ name: "waveConfigGroupId", value: waveConfigGroupId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}/configurations`;
|
|
7317
|
+
const { basePath, withCredentials } = this.configuration;
|
|
7318
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
7319
|
+
context: localVarHttpContext,
|
|
7320
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
7321
|
+
responseType: responseType_,
|
|
7322
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
7323
|
+
headers: localVarHeaders,
|
|
7324
|
+
observe: observe,
|
|
7325
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
7326
|
+
reportProgress: reportProgress
|
|
7327
|
+
});
|
|
7328
|
+
}
|
|
7329
|
+
getWaveConfigGroups($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
7330
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
7331
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
7332
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
7333
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
7334
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
7335
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
7336
|
+
let localVarHeaders = this.defaultHeaders;
|
|
7337
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
7338
|
+
'application/json'
|
|
7339
|
+
]);
|
|
7340
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
7341
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
7342
|
+
}
|
|
7343
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
7344
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
7345
|
+
let responseType_ = 'json';
|
|
7346
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
7347
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
7348
|
+
responseType_ = 'text';
|
|
7349
|
+
}
|
|
7350
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
7351
|
+
responseType_ = 'json';
|
|
7352
|
+
}
|
|
7353
|
+
else {
|
|
7354
|
+
responseType_ = 'blob';
|
|
7355
|
+
}
|
|
7356
|
+
}
|
|
7357
|
+
let localVarPath = `/waveConfigGroups`;
|
|
7358
|
+
const { basePath, withCredentials } = this.configuration;
|
|
7359
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
7360
|
+
context: localVarHttpContext,
|
|
7361
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
7362
|
+
responseType: responseType_,
|
|
7363
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
7364
|
+
headers: localVarHeaders,
|
|
7365
|
+
observe: observe,
|
|
7366
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
7367
|
+
reportProgress: reportProgress
|
|
7368
|
+
});
|
|
7369
|
+
}
|
|
7370
|
+
updateWaveConfigGroup(id, waveConfigGroup, observe = 'body', reportProgress = false, options) {
|
|
7371
|
+
if (id === null || id === undefined) {
|
|
7372
|
+
throw new Error('Required parameter id was null or undefined when calling updateWaveConfigGroup.');
|
|
7373
|
+
}
|
|
7374
|
+
if (waveConfigGroup === null || waveConfigGroup === undefined) {
|
|
7375
|
+
throw new Error('Required parameter waveConfigGroup was null or undefined when calling updateWaveConfigGroup.');
|
|
7376
|
+
}
|
|
7377
|
+
let localVarHeaders = this.defaultHeaders;
|
|
7378
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
7379
|
+
'application/json'
|
|
7380
|
+
]);
|
|
7381
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
7382
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
7383
|
+
}
|
|
7384
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
7385
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
7386
|
+
// to determine the Content-Type header
|
|
7387
|
+
const consumes = [
|
|
7388
|
+
'application/json'
|
|
7389
|
+
];
|
|
7390
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
7391
|
+
if (httpContentTypeSelected !== undefined) {
|
|
7392
|
+
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
7393
|
+
}
|
|
7394
|
+
let responseType_ = 'json';
|
|
7395
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
7396
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
7397
|
+
responseType_ = 'text';
|
|
7398
|
+
}
|
|
7399
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
7400
|
+
responseType_ = 'json';
|
|
7401
|
+
}
|
|
7402
|
+
else {
|
|
7403
|
+
responseType_ = 'blob';
|
|
7404
|
+
}
|
|
7405
|
+
}
|
|
7406
|
+
let localVarPath = `/waveConfigGroups/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}`;
|
|
7407
|
+
const { basePath, withCredentials } = this.configuration;
|
|
7408
|
+
return this.httpClient.request('put', `${basePath}${localVarPath}`, {
|
|
7409
|
+
context: localVarHttpContext,
|
|
7410
|
+
body: waveConfigGroup,
|
|
7411
|
+
responseType: responseType_,
|
|
7412
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
7413
|
+
headers: localVarHeaders,
|
|
7414
|
+
observe: observe,
|
|
7415
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
7416
|
+
reportProgress: reportProgress
|
|
7417
|
+
});
|
|
7418
|
+
}
|
|
7419
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WaveConfigGroupsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7420
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WaveConfigGroupsService, providedIn: 'root' });
|
|
7421
|
+
}
|
|
7422
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WaveConfigGroupsService, decorators: [{
|
|
7423
|
+
type: Injectable,
|
|
7424
|
+
args: [{
|
|
7425
|
+
providedIn: 'root'
|
|
7426
|
+
}]
|
|
7427
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
7428
|
+
type: Optional
|
|
7429
|
+
}, {
|
|
7430
|
+
type: Inject,
|
|
7431
|
+
args: [BASE_PATH]
|
|
7432
|
+
}] }, { type: Configuration, decorators: [{
|
|
7433
|
+
type: Optional
|
|
7434
|
+
}] }] });
|
|
7435
|
+
|
|
6953
7436
|
/**
|
|
6954
7437
|
* Wms.API.Client
|
|
6955
7438
|
*
|
|
@@ -7432,7 +7915,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
7432
7915
|
type: Optional
|
|
7433
7916
|
}] }] });
|
|
7434
7917
|
|
|
7435
|
-
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PendoService, PermissionsService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessService, ReplenishmentRecordsService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserPrintersService, UsersInternalService, WavePickReleasesService, WavePickingAccessService, WavesByPickReleaseIdService];
|
|
7918
|
+
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PendoService, PermissionsService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessService, ReplenishmentRecordsService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserCompaniesService, UserPrintersService, UsersInternalService, WaveConfigGroupsService, WavePickReleasesService, WavePickingAccessService, WavesByPickReleaseIdService];
|
|
7436
7919
|
|
|
7437
7920
|
/**
|
|
7438
7921
|
* Wms.API.Client
|
|
@@ -8246,6 +8729,58 @@ const UserCompanyType = {
|
|
|
8246
8729
|
SsReportAdmin: 'SS_ReportAdmin'
|
|
8247
8730
|
};
|
|
8248
8731
|
|
|
8732
|
+
/**
|
|
8733
|
+
* Wms.API.Client
|
|
8734
|
+
*
|
|
8735
|
+
*
|
|
8736
|
+
*
|
|
8737
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8738
|
+
* https://openapi-generator.tech
|
|
8739
|
+
* Do not edit the class manually.
|
|
8740
|
+
*/
|
|
8741
|
+
const UserCompanyTypes = {
|
|
8742
|
+
Dc: 'DC',
|
|
8743
|
+
Client: 'Client',
|
|
8744
|
+
OriginAgent: 'OriginAgent',
|
|
8745
|
+
DestinationAgent: 'DestinationAgent',
|
|
8746
|
+
Vendor: 'Vendor',
|
|
8747
|
+
Integration: 'Integration',
|
|
8748
|
+
SystemAdmin: 'SystemAdmin',
|
|
8749
|
+
ReportAdmin: 'ReportAdmin',
|
|
8750
|
+
SsSysAdmin: 'SS_SysAdmin',
|
|
8751
|
+
SsReportAdmin: 'SS_ReportAdmin'
|
|
8752
|
+
};
|
|
8753
|
+
|
|
8754
|
+
/**
|
|
8755
|
+
* Wms.API.Client
|
|
8756
|
+
*
|
|
8757
|
+
*
|
|
8758
|
+
*
|
|
8759
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8760
|
+
* https://openapi-generator.tech
|
|
8761
|
+
* Do not edit the class manually.
|
|
8762
|
+
*/
|
|
8763
|
+
|
|
8764
|
+
/**
|
|
8765
|
+
* Wms.API.Client
|
|
8766
|
+
*
|
|
8767
|
+
*
|
|
8768
|
+
*
|
|
8769
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8770
|
+
* https://openapi-generator.tech
|
|
8771
|
+
* Do not edit the class manually.
|
|
8772
|
+
*/
|
|
8773
|
+
|
|
8774
|
+
/**
|
|
8775
|
+
* Wms.API.Client
|
|
8776
|
+
*
|
|
8777
|
+
*
|
|
8778
|
+
*
|
|
8779
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8780
|
+
* https://openapi-generator.tech
|
|
8781
|
+
* Do not edit the class manually.
|
|
8782
|
+
*/
|
|
8783
|
+
|
|
8249
8784
|
/**
|
|
8250
8785
|
* Wms.API.Client
|
|
8251
8786
|
*
|
|
@@ -8392,5 +8927,5 @@ function provideApi(configOrBasePath) {
|
|
|
8392
8927
|
* Generated bundle index. Do not edit.
|
|
8393
8928
|
*/
|
|
8394
8929
|
|
|
8395
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintTypes, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
8930
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintTypes, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserCompanyTypes, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
8396
8931
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|