@revxui/api-clients-ts 0.10.213 → 0.10.214

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.
Files changed (32) hide show
  1. package/README.md +2 -2
  2. package/api/sliceXController.service.d.ts +6 -6
  3. package/api/strategyController.service.d.ts +0 -67
  4. package/bundles/revxui-api-clients-ts.umd.js +0 -173
  5. package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
  6. package/bundles/revxui-api-clients-ts.umd.min.js +1 -1
  7. package/bundles/revxui-api-clients-ts.umd.min.js.map +1 -1
  8. package/esm2015/api/sliceXController.service.js +1 -1
  9. package/esm2015/api/strategyController.service.js +1 -164
  10. package/esm2015/model/models.js +1 -1
  11. package/esm5/api/sliceXController.service.js +1 -1
  12. package/esm5/api/strategyController.service.js +1 -174
  13. package/esm5/model/models.js +1 -1
  14. package/fesm2015/revxui-api-clients-ts.js +0 -163
  15. package/fesm2015/revxui-api-clients-ts.js.map +1 -1
  16. package/fesm5/revxui-api-clients-ts.js +0 -173
  17. package/fesm5/revxui-api-clients-ts.js.map +1 -1
  18. package/model/models.d.ts +0 -4
  19. package/package.json +1 -1
  20. package/revxui-api-clients-ts.metadata.json +1 -1
  21. package/esm2015/model/aBTestDTO.js +0 -1
  22. package/esm2015/model/apiListResponseABTestDTO.js +0 -1
  23. package/esm2015/model/apiResponseObjectABTestDTO.js +0 -1
  24. package/esm2015/model/apiResponseObjectlong.js +0 -12
  25. package/esm5/model/aBTestDTO.js +0 -1
  26. package/esm5/model/apiListResponseABTestDTO.js +0 -1
  27. package/esm5/model/apiResponseObjectABTestDTO.js +0 -1
  28. package/esm5/model/apiResponseObjectlong.js +0 -12
  29. package/model/aBTestDTO.d.ts +0 -32
  30. package/model/apiListResponseABTestDTO.d.ts +0 -16
  31. package/model/apiResponseObjectABTestDTO.d.ts +0 -17
  32. package/model/apiResponseObjectlong.d.ts +0 -16
@@ -5836,42 +5836,6 @@ var StrategyControllerService = /** @class */ (function () {
5836
5836
  reportProgress: reportProgress
5837
5837
  });
5838
5838
  };
5839
- StrategyControllerService.prototype.createABTestExperimentUsingPOST = function (abTestDTO, reqId, token, observe, reportProgress) {
5840
- if (observe === void 0) { observe = 'body'; }
5841
- if (reportProgress === void 0) { reportProgress = false; }
5842
- if (abTestDTO === null || abTestDTO === undefined) {
5843
- throw new Error('Required parameter abTestDTO was null or undefined when calling createABTestExperimentUsingPOST.');
5844
- }
5845
- var headers = this.defaultHeaders;
5846
- if (reqId !== undefined && reqId !== null) {
5847
- headers = headers.set('reqId', String(reqId));
5848
- }
5849
- if (token !== undefined && token !== null) {
5850
- headers = headers.set('token', String(token));
5851
- }
5852
- // to determine the Accept header
5853
- var httpHeaderAccepts = [
5854
- 'application/json'
5855
- ];
5856
- var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
5857
- if (httpHeaderAcceptSelected != undefined) {
5858
- headers = headers.set('Accept', httpHeaderAcceptSelected);
5859
- }
5860
- // to determine the Content-Type header
5861
- var consumes = [
5862
- 'application/json'
5863
- ];
5864
- var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
5865
- if (httpContentTypeSelected != undefined) {
5866
- headers = headers.set('Content-Type', httpContentTypeSelected);
5867
- }
5868
- return this.httpClient.post(this.basePath + "/v2/api/strategies/abtest/create", abTestDTO, {
5869
- withCredentials: this.configuration.withCredentials,
5870
- headers: headers,
5871
- observe: observe,
5872
- reportProgress: reportProgress
5873
- });
5874
- };
5875
5839
  StrategyControllerService.prototype.createStrategyUsingPOST = function (strategy, reqId, token, observe, reportProgress) {
5876
5840
  if (observe === void 0) { observe = 'body'; }
5877
5841
  if (reportProgress === void 0) { reportProgress = false; }
@@ -5984,36 +5948,6 @@ var StrategyControllerService = /** @class */ (function () {
5984
5948
  reportProgress: reportProgress
5985
5949
  });
5986
5950
  };
5987
- StrategyControllerService.prototype.getABTestExperimentUsingGET = function (id, reqId, token, observe, reportProgress) {
5988
- if (observe === void 0) { observe = 'body'; }
5989
- if (reportProgress === void 0) { reportProgress = false; }
5990
- if (id === null || id === undefined) {
5991
- throw new Error('Required parameter id was null or undefined when calling getABTestExperimentUsingGET.');
5992
- }
5993
- var headers = this.defaultHeaders;
5994
- if (reqId !== undefined && reqId !== null) {
5995
- headers = headers.set('reqId', String(reqId));
5996
- }
5997
- if (token !== undefined && token !== null) {
5998
- headers = headers.set('token', String(token));
5999
- }
6000
- // to determine the Accept header
6001
- var httpHeaderAccepts = [
6002
- 'application/json'
6003
- ];
6004
- var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
6005
- if (httpHeaderAcceptSelected != undefined) {
6006
- headers = headers.set('Accept', httpHeaderAcceptSelected);
6007
- }
6008
- // to determine the Content-Type header
6009
- var consumes = [];
6010
- return this.httpClient.get(this.basePath + "/v2/api/strategies/abtest/" + encodeURIComponent(String(id)), {
6011
- withCredentials: this.configuration.withCredentials,
6012
- headers: headers,
6013
- observe: observe,
6014
- reportProgress: reportProgress
6015
- });
6016
- };
6017
5951
  StrategyControllerService.prototype.getSkadSettingsUsingGET = function (reqId, token, observe, reportProgress) {
6018
5952
  if (observe === void 0) { observe = 'body'; }
6019
5953
  if (reportProgress === void 0) { reportProgress = false; }
@@ -6106,39 +6040,6 @@ var StrategyControllerService = /** @class */ (function () {
6106
6040
  reportProgress: reportProgress
6107
6041
  });
6108
6042
  };
6109
- StrategyControllerService.prototype.listABTestExperimentUsingGET = function (entity, entityId, reqId, token, observe, reportProgress) {
6110
- if (observe === void 0) { observe = 'body'; }
6111
- if (reportProgress === void 0) { reportProgress = false; }
6112
- if (entity === null || entity === undefined) {
6113
- throw new Error('Required parameter entity was null or undefined when calling listABTestExperimentUsingGET.');
6114
- }
6115
- if (entityId === null || entityId === undefined) {
6116
- throw new Error('Required parameter entityId was null or undefined when calling listABTestExperimentUsingGET.');
6117
- }
6118
- var headers = this.defaultHeaders;
6119
- if (reqId !== undefined && reqId !== null) {
6120
- headers = headers.set('reqId', String(reqId));
6121
- }
6122
- if (token !== undefined && token !== null) {
6123
- headers = headers.set('token', String(token));
6124
- }
6125
- // to determine the Accept header
6126
- var httpHeaderAccepts = [
6127
- 'application/json'
6128
- ];
6129
- var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
6130
- if (httpHeaderAcceptSelected != undefined) {
6131
- headers = headers.set('Accept', httpHeaderAcceptSelected);
6132
- }
6133
- // to determine the Content-Type header
6134
- var consumes = [];
6135
- return this.httpClient.get(this.basePath + "/v2/api/strategies/abtest/list/" + encodeURIComponent(String(entity)) + "/" + encodeURIComponent(String(entityId)), {
6136
- withCredentials: this.configuration.withCredentials,
6137
- headers: headers,
6138
- observe: observe,
6139
- reportProgress: reportProgress
6140
- });
6141
- };
6142
6043
  StrategyControllerService.prototype.saveStrategyQuickEditDetailsUsingPOST = function (id, strategyQuickEditDTO, reqId, token, observe, reportProgress) {
6143
6044
  if (observe === void 0) { observe = 'body'; }
6144
6045
  if (reportProgress === void 0) { reportProgress = false; }
@@ -6178,80 +6079,6 @@ var StrategyControllerService = /** @class */ (function () {
6178
6079
  reportProgress: reportProgress
6179
6080
  });
6180
6081
  };
6181
- StrategyControllerService.prototype.updateABTestExperimentStatusUsingPOST = function (id, status, reqId, token, observe, reportProgress) {
6182
- if (observe === void 0) { observe = 'body'; }
6183
- if (reportProgress === void 0) { reportProgress = false; }
6184
- if (id === null || id === undefined) {
6185
- throw new Error('Required parameter id was null or undefined when calling updateABTestExperimentStatusUsingPOST.');
6186
- }
6187
- if (status === null || status === undefined) {
6188
- throw new Error('Required parameter status was null or undefined when calling updateABTestExperimentStatusUsingPOST.');
6189
- }
6190
- var headers = this.defaultHeaders;
6191
- if (reqId !== undefined && reqId !== null) {
6192
- headers = headers.set('reqId', String(reqId));
6193
- }
6194
- if (token !== undefined && token !== null) {
6195
- headers = headers.set('token', String(token));
6196
- }
6197
- // to determine the Accept header
6198
- var httpHeaderAccepts = [
6199
- 'application/json'
6200
- ];
6201
- var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
6202
- if (httpHeaderAcceptSelected != undefined) {
6203
- headers = headers.set('Accept', httpHeaderAcceptSelected);
6204
- }
6205
- // to determine the Content-Type header
6206
- var consumes = [
6207
- 'application/json'
6208
- ];
6209
- return this.httpClient.post(this.basePath + "/v2/api/strategies/abtest/updateStatus/" + encodeURIComponent(String(id)) + "/" + encodeURIComponent(String(status)), null, {
6210
- withCredentials: this.configuration.withCredentials,
6211
- headers: headers,
6212
- observe: observe,
6213
- reportProgress: reportProgress
6214
- });
6215
- };
6216
- StrategyControllerService.prototype.updateABTestExperimentUsingPOST = function (abTestDTO, id, reqId, token, observe, reportProgress) {
6217
- if (observe === void 0) { observe = 'body'; }
6218
- if (reportProgress === void 0) { reportProgress = false; }
6219
- if (abTestDTO === null || abTestDTO === undefined) {
6220
- throw new Error('Required parameter abTestDTO was null or undefined when calling updateABTestExperimentUsingPOST.');
6221
- }
6222
- if (id === null || id === undefined) {
6223
- throw new Error('Required parameter id was null or undefined when calling updateABTestExperimentUsingPOST.');
6224
- }
6225
- var headers = this.defaultHeaders;
6226
- if (reqId !== undefined && reqId !== null) {
6227
- headers = headers.set('reqId', String(reqId));
6228
- }
6229
- if (token !== undefined && token !== null) {
6230
- headers = headers.set('token', String(token));
6231
- }
6232
- // to determine the Accept header
6233
- var httpHeaderAccepts = [
6234
- 'application/json'
6235
- ];
6236
- var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
6237
- if (httpHeaderAcceptSelected != undefined) {
6238
- headers = headers.set('Accept', httpHeaderAcceptSelected);
6239
- }
6240
- // to determine the Content-Type header
6241
- var consumes = [
6242
- 'application/json'
6243
- ];
6244
- var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
6245
- if (httpContentTypeSelected != undefined) {
6246
- headers = headers.set('Content-Type', httpContentTypeSelected);
6247
- }
6248
- return this.httpClient.post(this.basePath + "/v2/api/strategies/abtest/update/" + encodeURIComponent(String(id)), abTestDTO, {
6249
- withCredentials: this.configuration.withCredentials,
6250
- headers: headers,
6251
- observe: observe,
6252
- reportProgress: reportProgress
6253
- });
6254
- };
6255
6082
  StrategyControllerService.prototype.updateStrategyUsingPOST = function (id, strategy, reqId, token, observe, reportProgress) {
6256
6083
  if (observe === void 0) { observe = 'body'; }
6257
6084
  if (reportProgress === void 0) { reportProgress = false; }