@indigina/wms-api 0.0.149 → 0.0.151
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 +632 -56
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +485 -3
|
@@ -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
|
*
|
|
@@ -6777,7 +6851,441 @@ class UserPrintersService extends BaseService {
|
|
|
6777
6851
|
super(basePath, configuration);
|
|
6778
6852
|
this.httpClient = httpClient;
|
|
6779
6853
|
}
|
|
6780
|
-
getUserPrinters($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
6854
|
+
getUserPrinters($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
6855
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
6856
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
6857
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
6858
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
6859
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
6860
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
6861
|
+
let localVarHeaders = this.defaultHeaders;
|
|
6862
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
6863
|
+
'application/json'
|
|
6864
|
+
]);
|
|
6865
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
6866
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
6867
|
+
}
|
|
6868
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
6869
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
6870
|
+
let responseType_ = 'json';
|
|
6871
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
6872
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
6873
|
+
responseType_ = 'text';
|
|
6874
|
+
}
|
|
6875
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
6876
|
+
responseType_ = 'json';
|
|
6877
|
+
}
|
|
6878
|
+
else {
|
|
6879
|
+
responseType_ = 'blob';
|
|
6880
|
+
}
|
|
6881
|
+
}
|
|
6882
|
+
let localVarPath = `/userPrinters`;
|
|
6883
|
+
const { basePath, withCredentials } = this.configuration;
|
|
6884
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
6885
|
+
context: localVarHttpContext,
|
|
6886
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
6887
|
+
responseType: responseType_,
|
|
6888
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
6889
|
+
headers: localVarHeaders,
|
|
6890
|
+
observe: observe,
|
|
6891
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
6892
|
+
reportProgress: reportProgress
|
|
6893
|
+
});
|
|
6894
|
+
}
|
|
6895
|
+
updateUserPrinters(userPrinterUpdateModel, observe = 'body', reportProgress = false, options) {
|
|
6896
|
+
let localVarHeaders = this.defaultHeaders;
|
|
6897
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
6898
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
6899
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
6900
|
+
}
|
|
6901
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
6902
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
6903
|
+
// to determine the Content-Type header
|
|
6904
|
+
const consumes = [
|
|
6905
|
+
'application/json'
|
|
6906
|
+
];
|
|
6907
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
6908
|
+
if (httpContentTypeSelected !== undefined) {
|
|
6909
|
+
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
6910
|
+
}
|
|
6911
|
+
let responseType_ = 'json';
|
|
6912
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
6913
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
6914
|
+
responseType_ = 'text';
|
|
6915
|
+
}
|
|
6916
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
6917
|
+
responseType_ = 'json';
|
|
6918
|
+
}
|
|
6919
|
+
else {
|
|
6920
|
+
responseType_ = 'blob';
|
|
6921
|
+
}
|
|
6922
|
+
}
|
|
6923
|
+
let localVarPath = `/userPrinters`;
|
|
6924
|
+
const { basePath, withCredentials } = this.configuration;
|
|
6925
|
+
return this.httpClient.request('put', `${basePath}${localVarPath}`, {
|
|
6926
|
+
context: localVarHttpContext,
|
|
6927
|
+
body: userPrinterUpdateModel,
|
|
6928
|
+
responseType: responseType_,
|
|
6929
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
6930
|
+
headers: localVarHeaders,
|
|
6931
|
+
observe: observe,
|
|
6932
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
6933
|
+
reportProgress: reportProgress
|
|
6934
|
+
});
|
|
6935
|
+
}
|
|
6936
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: UserPrintersService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6937
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: UserPrintersService, providedIn: 'root' });
|
|
6938
|
+
}
|
|
6939
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: UserPrintersService, decorators: [{
|
|
6940
|
+
type: Injectable,
|
|
6941
|
+
args: [{
|
|
6942
|
+
providedIn: 'root'
|
|
6943
|
+
}]
|
|
6944
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
6945
|
+
type: Optional
|
|
6946
|
+
}, {
|
|
6947
|
+
type: Inject,
|
|
6948
|
+
args: [BASE_PATH]
|
|
6949
|
+
}] }, { type: Configuration, decorators: [{
|
|
6950
|
+
type: Optional
|
|
6951
|
+
}] }] });
|
|
6952
|
+
|
|
6953
|
+
/**
|
|
6954
|
+
* Wms.API.Client
|
|
6955
|
+
*
|
|
6956
|
+
*
|
|
6957
|
+
*
|
|
6958
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6959
|
+
* https://openapi-generator.tech
|
|
6960
|
+
* Do not edit the class manually.
|
|
6961
|
+
*/
|
|
6962
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
6963
|
+
class UsersInternalService extends BaseService {
|
|
6964
|
+
httpClient;
|
|
6965
|
+
constructor(httpClient, basePath, configuration) {
|
|
6966
|
+
super(basePath, configuration);
|
|
6967
|
+
this.httpClient = httpClient;
|
|
6968
|
+
}
|
|
6969
|
+
getUsersInternal($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
6970
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
6971
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
6972
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
6973
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
6974
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
6975
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
|
|
6976
|
+
let localVarHeaders = this.defaultHeaders;
|
|
6977
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
6978
|
+
'application/json'
|
|
6979
|
+
]);
|
|
6980
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
6981
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
6982
|
+
}
|
|
6983
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
6984
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
6985
|
+
let responseType_ = 'json';
|
|
6986
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
6987
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
6988
|
+
responseType_ = 'text';
|
|
6989
|
+
}
|
|
6990
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
6991
|
+
responseType_ = 'json';
|
|
6992
|
+
}
|
|
6993
|
+
else {
|
|
6994
|
+
responseType_ = 'blob';
|
|
6995
|
+
}
|
|
6996
|
+
}
|
|
6997
|
+
let localVarPath = `/users/internal`;
|
|
6998
|
+
const { basePath, withCredentials } = this.configuration;
|
|
6999
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
7000
|
+
context: localVarHttpContext,
|
|
7001
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
7002
|
+
responseType: responseType_,
|
|
7003
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
7004
|
+
headers: localVarHeaders,
|
|
7005
|
+
observe: observe,
|
|
7006
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
7007
|
+
reportProgress: reportProgress
|
|
7008
|
+
});
|
|
7009
|
+
}
|
|
7010
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: UsersInternalService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7011
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: UsersInternalService, providedIn: 'root' });
|
|
7012
|
+
}
|
|
7013
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: UsersInternalService, decorators: [{
|
|
7014
|
+
type: Injectable,
|
|
7015
|
+
args: [{
|
|
7016
|
+
providedIn: 'root'
|
|
7017
|
+
}]
|
|
7018
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
7019
|
+
type: Optional
|
|
7020
|
+
}, {
|
|
7021
|
+
type: Inject,
|
|
7022
|
+
args: [BASE_PATH]
|
|
7023
|
+
}] }, { type: Configuration, decorators: [{
|
|
7024
|
+
type: Optional
|
|
7025
|
+
}] }] });
|
|
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
|
+
}
|
|
6781
7289
|
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
6782
7290
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
6783
7291
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
@@ -6805,7 +7313,7 @@ class UserPrintersService extends BaseService {
|
|
|
6805
7313
|
responseType_ = 'blob';
|
|
6806
7314
|
}
|
|
6807
7315
|
}
|
|
6808
|
-
let localVarPath = `/
|
|
7316
|
+
let localVarPath = `/waveConfigGroups/${this.configuration.encodeParam({ name: "waveConfigGroupId", value: waveConfigGroupId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}/configurations`;
|
|
6809
7317
|
const { basePath, withCredentials } = this.configuration;
|
|
6810
7318
|
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
6811
7319
|
context: localVarHttpContext,
|
|
@@ -6818,22 +7326,22 @@ class UserPrintersService extends BaseService {
|
|
|
6818
7326
|
reportProgress: reportProgress
|
|
6819
7327
|
});
|
|
6820
7328
|
}
|
|
6821
|
-
|
|
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);
|
|
6822
7336
|
let localVarHeaders = this.defaultHeaders;
|
|
6823
|
-
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
7337
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
7338
|
+
'application/json'
|
|
7339
|
+
]);
|
|
6824
7340
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
6825
7341
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
6826
7342
|
}
|
|
6827
7343
|
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
6828
7344
|
const localVarTransferCache = options?.transferCache ?? true;
|
|
6829
|
-
// to determine the Content-Type header
|
|
6830
|
-
const consumes = [
|
|
6831
|
-
'application/json'
|
|
6832
|
-
];
|
|
6833
|
-
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
6834
|
-
if (httpContentTypeSelected !== undefined) {
|
|
6835
|
-
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
6836
|
-
}
|
|
6837
7345
|
let responseType_ = 'json';
|
|
6838
7346
|
if (localVarHttpHeaderAcceptSelected) {
|
|
6839
7347
|
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
@@ -6846,11 +7354,11 @@ class UserPrintersService extends BaseService {
|
|
|
6846
7354
|
responseType_ = 'blob';
|
|
6847
7355
|
}
|
|
6848
7356
|
}
|
|
6849
|
-
let localVarPath = `/
|
|
7357
|
+
let localVarPath = `/waveConfigGroups`;
|
|
6850
7358
|
const { basePath, withCredentials } = this.configuration;
|
|
6851
|
-
return this.httpClient.request('
|
|
7359
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
6852
7360
|
context: localVarHttpContext,
|
|
6853
|
-
|
|
7361
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
6854
7362
|
responseType: responseType_,
|
|
6855
7363
|
...(withCredentials ? { withCredentials } : {}),
|
|
6856
7364
|
headers: localVarHeaders,
|
|
@@ -6859,46 +7367,13 @@ class UserPrintersService extends BaseService {
|
|
|
6859
7367
|
reportProgress: reportProgress
|
|
6860
7368
|
});
|
|
6861
7369
|
}
|
|
6862
|
-
|
|
6863
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: UserPrintersService, providedIn: 'root' });
|
|
6864
|
-
}
|
|
6865
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: UserPrintersService, decorators: [{
|
|
6866
|
-
type: Injectable,
|
|
6867
|
-
args: [{
|
|
6868
|
-
providedIn: 'root'
|
|
6869
|
-
}]
|
|
6870
|
-
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
6871
|
-
type: Optional
|
|
6872
|
-
}, {
|
|
6873
|
-
type: Inject,
|
|
6874
|
-
args: [BASE_PATH]
|
|
6875
|
-
}] }, { type: Configuration, decorators: [{
|
|
6876
|
-
type: Optional
|
|
6877
|
-
}] }] });
|
|
6878
|
-
|
|
6879
|
-
/**
|
|
6880
|
-
* Wms.API.Client
|
|
6881
|
-
*
|
|
6882
|
-
*
|
|
6883
|
-
*
|
|
6884
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6885
|
-
* https://openapi-generator.tech
|
|
6886
|
-
* Do not edit the class manually.
|
|
6887
|
-
*/
|
|
6888
|
-
/* tslint:disable:no-unused-variable member-ordering */
|
|
6889
|
-
class UsersInternalService extends BaseService {
|
|
6890
|
-
httpClient;
|
|
6891
|
-
constructor(httpClient, basePath, configuration) {
|
|
6892
|
-
super(basePath, configuration);
|
|
6893
|
-
this.httpClient = httpClient;
|
|
6894
|
-
}
|
|
6895
|
-
getUsersInternal($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
7370
|
+
getWaveConfigGroupsFromIndex($skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
|
|
6896
7371
|
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
6897
7372
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
6898
7373
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
6899
7374
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
6900
7375
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
6901
|
-
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '
|
|
7376
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'searchTerm', searchTerm, QueryParamStyle.Form, true);
|
|
6902
7377
|
let localVarHeaders = this.defaultHeaders;
|
|
6903
7378
|
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
6904
7379
|
'application/json'
|
|
@@ -6920,7 +7395,7 @@ class UsersInternalService extends BaseService {
|
|
|
6920
7395
|
responseType_ = 'blob';
|
|
6921
7396
|
}
|
|
6922
7397
|
}
|
|
6923
|
-
let localVarPath = `/
|
|
7398
|
+
let localVarPath = `/waveConfigGroups/search`;
|
|
6924
7399
|
const { basePath, withCredentials } = this.configuration;
|
|
6925
7400
|
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
6926
7401
|
context: localVarHttpContext,
|
|
@@ -6933,10 +7408,59 @@ class UsersInternalService extends BaseService {
|
|
|
6933
7408
|
reportProgress: reportProgress
|
|
6934
7409
|
});
|
|
6935
7410
|
}
|
|
6936
|
-
|
|
6937
|
-
|
|
7411
|
+
updateWaveConfigGroup(id, waveConfigGroup, observe = 'body', reportProgress = false, options) {
|
|
7412
|
+
if (id === null || id === undefined) {
|
|
7413
|
+
throw new Error('Required parameter id was null or undefined when calling updateWaveConfigGroup.');
|
|
7414
|
+
}
|
|
7415
|
+
if (waveConfigGroup === null || waveConfigGroup === undefined) {
|
|
7416
|
+
throw new Error('Required parameter waveConfigGroup was null or undefined when calling updateWaveConfigGroup.');
|
|
7417
|
+
}
|
|
7418
|
+
let localVarHeaders = this.defaultHeaders;
|
|
7419
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
7420
|
+
'application/json'
|
|
7421
|
+
]);
|
|
7422
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
7423
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
7424
|
+
}
|
|
7425
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
7426
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
7427
|
+
// to determine the Content-Type header
|
|
7428
|
+
const consumes = [
|
|
7429
|
+
'application/json'
|
|
7430
|
+
];
|
|
7431
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
7432
|
+
if (httpContentTypeSelected !== undefined) {
|
|
7433
|
+
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
7434
|
+
}
|
|
7435
|
+
let responseType_ = 'json';
|
|
7436
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
7437
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
7438
|
+
responseType_ = 'text';
|
|
7439
|
+
}
|
|
7440
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
7441
|
+
responseType_ = 'json';
|
|
7442
|
+
}
|
|
7443
|
+
else {
|
|
7444
|
+
responseType_ = 'blob';
|
|
7445
|
+
}
|
|
7446
|
+
}
|
|
7447
|
+
let localVarPath = `/waveConfigGroups/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}`;
|
|
7448
|
+
const { basePath, withCredentials } = this.configuration;
|
|
7449
|
+
return this.httpClient.request('put', `${basePath}${localVarPath}`, {
|
|
7450
|
+
context: localVarHttpContext,
|
|
7451
|
+
body: waveConfigGroup,
|
|
7452
|
+
responseType: responseType_,
|
|
7453
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
7454
|
+
headers: localVarHeaders,
|
|
7455
|
+
observe: observe,
|
|
7456
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
7457
|
+
reportProgress: reportProgress
|
|
7458
|
+
});
|
|
7459
|
+
}
|
|
7460
|
+
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 });
|
|
7461
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WaveConfigGroupsService, providedIn: 'root' });
|
|
6938
7462
|
}
|
|
6939
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type:
|
|
7463
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: WaveConfigGroupsService, decorators: [{
|
|
6940
7464
|
type: Injectable,
|
|
6941
7465
|
args: [{
|
|
6942
7466
|
providedIn: 'root'
|
|
@@ -7432,7 +7956,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
7432
7956
|
type: Optional
|
|
7433
7957
|
}] }] });
|
|
7434
7958
|
|
|
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];
|
|
7959
|
+
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
7960
|
|
|
7437
7961
|
/**
|
|
7438
7962
|
* Wms.API.Client
|
|
@@ -8246,6 +8770,58 @@ const UserCompanyType = {
|
|
|
8246
8770
|
SsReportAdmin: 'SS_ReportAdmin'
|
|
8247
8771
|
};
|
|
8248
8772
|
|
|
8773
|
+
/**
|
|
8774
|
+
* Wms.API.Client
|
|
8775
|
+
*
|
|
8776
|
+
*
|
|
8777
|
+
*
|
|
8778
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8779
|
+
* https://openapi-generator.tech
|
|
8780
|
+
* Do not edit the class manually.
|
|
8781
|
+
*/
|
|
8782
|
+
const UserCompanyTypes = {
|
|
8783
|
+
Dc: 'DC',
|
|
8784
|
+
Client: 'Client',
|
|
8785
|
+
OriginAgent: 'OriginAgent',
|
|
8786
|
+
DestinationAgent: 'DestinationAgent',
|
|
8787
|
+
Vendor: 'Vendor',
|
|
8788
|
+
Integration: 'Integration',
|
|
8789
|
+
SystemAdmin: 'SystemAdmin',
|
|
8790
|
+
ReportAdmin: 'ReportAdmin',
|
|
8791
|
+
SsSysAdmin: 'SS_SysAdmin',
|
|
8792
|
+
SsReportAdmin: 'SS_ReportAdmin'
|
|
8793
|
+
};
|
|
8794
|
+
|
|
8795
|
+
/**
|
|
8796
|
+
* Wms.API.Client
|
|
8797
|
+
*
|
|
8798
|
+
*
|
|
8799
|
+
*
|
|
8800
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8801
|
+
* https://openapi-generator.tech
|
|
8802
|
+
* Do not edit the class manually.
|
|
8803
|
+
*/
|
|
8804
|
+
|
|
8805
|
+
/**
|
|
8806
|
+
* Wms.API.Client
|
|
8807
|
+
*
|
|
8808
|
+
*
|
|
8809
|
+
*
|
|
8810
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8811
|
+
* https://openapi-generator.tech
|
|
8812
|
+
* Do not edit the class manually.
|
|
8813
|
+
*/
|
|
8814
|
+
|
|
8815
|
+
/**
|
|
8816
|
+
* Wms.API.Client
|
|
8817
|
+
*
|
|
8818
|
+
*
|
|
8819
|
+
*
|
|
8820
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8821
|
+
* https://openapi-generator.tech
|
|
8822
|
+
* Do not edit the class manually.
|
|
8823
|
+
*/
|
|
8824
|
+
|
|
8249
8825
|
/**
|
|
8250
8826
|
* Wms.API.Client
|
|
8251
8827
|
*
|
|
@@ -8392,5 +8968,5 @@ function provideApi(configOrBasePath) {
|
|
|
8392
8968
|
* Generated bundle index. Do not edit.
|
|
8393
8969
|
*/
|
|
8394
8970
|
|
|
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 };
|
|
8971
|
+
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
8972
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|