@revxui/api-clients-ts 0.10.338 → 0.10.340
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/api/api.d.ts +3 -1
- package/api/appSettingsController.service.d.ts +39 -0
- package/api/customerReportingController.service.d.ts +40 -0
- package/bundles/revxui-api-clients-ts.umd.js +236 -24
- package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
- package/bundles/revxui-api-clients-ts.umd.min.js +1 -1
- package/bundles/revxui-api-clients-ts.umd.min.js.map +1 -1
- package/esm2015/api/adminController.service.js +2 -2
- package/esm2015/api/advertiserController.service.js +2 -2
- package/esm2015/api/api.js +4 -2
- package/esm2015/api/appSettingsController.service.js +91 -2
- package/esm2015/api/audienceController.service.js +2 -2
- package/esm2015/api/auditController.service.js +2 -2
- package/esm2015/api/bulkStrategyController.service.js +2 -2
- package/esm2015/api/cSSThemeController_.service.js +2 -2
- package/esm2015/api/campaignController.service.js +2 -2
- package/esm2015/api/catalogController.service.js +2 -2
- package/esm2015/api/clickDestinationController.service.js +2 -2
- package/esm2015/api/creativeController.service.js +2 -2
- package/esm2015/api/creativeSetsController.service.js +2 -2
- package/esm2015/api/creativeTemplateThemesController.service.js +2 -2
- package/esm2015/api/creativeTemplateVariablesController.service.js +2 -2
- package/esm2015/api/creativeTemplatesController.service.js +2 -2
- package/esm2015/api/customerReportingController.service.js +87 -0
- package/esm2015/api/dashboardController.service.js +2 -2
- package/esm2015/api/notificationsController.service.js +2 -2
- package/esm2015/api/pixelController.service.js +2 -2
- package/esm2015/api/reportingController.service.js +2 -2
- package/esm2015/api/sliceXController.service.js +2 -2
- package/esm2015/api/strategyController.service.js +2 -2
- package/esm2015/api/uILoggerController.service.js +2 -2
- package/esm2015/api/userPreferenceController.service.js +2 -2
- package/esm2015/api.module.js +3 -1
- package/esm2015/model/advertiserDynamicVideoConfig.js +2 -0
- package/esm2015/model/apiResponseObjectAdvertiserDynamicVideoConfig.js +2 -0
- package/esm2015/model/apiResponseObjectListDynamicVideoTemplate.js +2 -0
- package/esm2015/model/customerReportingData.js +13 -0
- package/esm2015/model/customerReportingDataListResponse.js +2 -0
- package/esm2015/model/customerReportingRequest.js +13 -0
- package/esm2015/model/customerReportingResponse.js +2 -0
- package/esm2015/model/dynamicVideoConfigDTO.js +30 -0
- package/esm2015/model/dynamicVideoDTO.js +2 -0
- package/esm2015/model/dynamicVideoTemplate.js +2 -0
- package/esm2015/model/models.js +12 -1
- package/esm2015/model/nameAndTitleModel.js +13 -0
- package/fesm2015/revxui-api-clients-ts.js +263 -25
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/advertiserDynamicVideoConfig.d.ts +19 -0
- package/model/apiResponseObjectAdvertiserDynamicVideoConfig.d.ts +17 -0
- package/model/apiResponseObjectListDynamicVideoTemplate.d.ts +17 -0
- package/model/customerReportingData.d.ts +20 -0
- package/model/customerReportingDataListResponse.d.ts +15 -0
- package/model/customerReportingRequest.d.ts +18 -0
- package/model/customerReportingResponse.d.ts +17 -0
- package/model/dynamicVideoConfigDTO.d.ts +34 -0
- package/model/dynamicVideoDTO.d.ts +16 -0
- package/model/dynamicVideoTemplate.d.ts +18 -0
- package/model/models.d.ts +11 -0
- package/model/nameAndTitleModel.d.ts +15 -0
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
|
@@ -82,7 +82,7 @@ class Configuration {
|
|
|
82
82
|
class AdminControllerService {
|
|
83
83
|
constructor(httpClient, basePath, configuration) {
|
|
84
84
|
this.httpClient = httpClient;
|
|
85
|
-
this.basePath = 'https://
|
|
85
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
86
86
|
this.defaultHeaders = new HttpHeaders();
|
|
87
87
|
this.configuration = new Configuration();
|
|
88
88
|
if (basePath) {
|
|
@@ -271,7 +271,7 @@ class CustomHttpUrlEncodingCodec extends HttpUrlEncodingCodec {
|
|
|
271
271
|
class AdvertiserControllerService {
|
|
272
272
|
constructor(httpClient, basePath, configuration) {
|
|
273
273
|
this.httpClient = httpClient;
|
|
274
|
-
this.basePath = 'https://
|
|
274
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
275
275
|
this.defaultHeaders = new HttpHeaders();
|
|
276
276
|
this.configuration = new Configuration();
|
|
277
277
|
if (basePath) {
|
|
@@ -682,7 +682,7 @@ AdvertiserControllerService.ctorParameters = () => [
|
|
|
682
682
|
class AppSettingsControllerService {
|
|
683
683
|
constructor(httpClient, basePath, configuration) {
|
|
684
684
|
this.httpClient = httpClient;
|
|
685
|
-
this.basePath = 'https://
|
|
685
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
686
686
|
this.defaultHeaders = new HttpHeaders();
|
|
687
687
|
this.configuration = new Configuration();
|
|
688
688
|
if (basePath) {
|
|
@@ -740,6 +740,61 @@ class AppSettingsControllerService {
|
|
|
740
740
|
reportProgress: reportProgress
|
|
741
741
|
});
|
|
742
742
|
}
|
|
743
|
+
fetchAllDynamicVideoTemplatesUsingGET(reqId, token, observe = 'body', reportProgress = false) {
|
|
744
|
+
let headers = this.defaultHeaders;
|
|
745
|
+
if (reqId !== undefined && reqId !== null) {
|
|
746
|
+
headers = headers.set('reqId', String(reqId));
|
|
747
|
+
}
|
|
748
|
+
if (token !== undefined && token !== null) {
|
|
749
|
+
headers = headers.set('token', String(token));
|
|
750
|
+
}
|
|
751
|
+
// to determine the Accept header
|
|
752
|
+
let httpHeaderAccepts = [
|
|
753
|
+
'application/json'
|
|
754
|
+
];
|
|
755
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
756
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
757
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
758
|
+
}
|
|
759
|
+
// to determine the Content-Type header
|
|
760
|
+
const consumes = [];
|
|
761
|
+
return this.httpClient.get(`${this.basePath}/v2/api/appsettings/dynamicvideo/templates`, {
|
|
762
|
+
withCredentials: this.configuration.withCredentials,
|
|
763
|
+
headers: headers,
|
|
764
|
+
observe: observe,
|
|
765
|
+
reportProgress: reportProgress
|
|
766
|
+
});
|
|
767
|
+
}
|
|
768
|
+
fetchDynamicVideoConfigUsingGET(advertiserId, reqId, token, observe = 'body', reportProgress = false) {
|
|
769
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
770
|
+
if (advertiserId !== undefined && advertiserId !== null) {
|
|
771
|
+
queryParameters = queryParameters.set('advertiserId', advertiserId);
|
|
772
|
+
}
|
|
773
|
+
let headers = this.defaultHeaders;
|
|
774
|
+
if (reqId !== undefined && reqId !== null) {
|
|
775
|
+
headers = headers.set('reqId', String(reqId));
|
|
776
|
+
}
|
|
777
|
+
if (token !== undefined && token !== null) {
|
|
778
|
+
headers = headers.set('token', String(token));
|
|
779
|
+
}
|
|
780
|
+
// to determine the Accept header
|
|
781
|
+
let httpHeaderAccepts = [
|
|
782
|
+
'application/json'
|
|
783
|
+
];
|
|
784
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
785
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
786
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
787
|
+
}
|
|
788
|
+
// to determine the Content-Type header
|
|
789
|
+
const consumes = [];
|
|
790
|
+
return this.httpClient.get(`${this.basePath}/v2/api/appsettings/dynamicvideo/config`, {
|
|
791
|
+
params: queryParameters,
|
|
792
|
+
withCredentials: this.configuration.withCredentials,
|
|
793
|
+
headers: headers,
|
|
794
|
+
observe: observe,
|
|
795
|
+
reportProgress: reportProgress
|
|
796
|
+
});
|
|
797
|
+
}
|
|
743
798
|
getAppSettingsUsingGET(advertiserId, reqId, settingsKeys, token, observe = 'body', reportProgress = false) {
|
|
744
799
|
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
745
800
|
if (advertiserId !== undefined && advertiserId !== null) {
|
|
@@ -809,6 +864,40 @@ class AppSettingsControllerService {
|
|
|
809
864
|
reportProgress: reportProgress
|
|
810
865
|
});
|
|
811
866
|
}
|
|
867
|
+
upsertDynamicVideoUsingPOST(dynamicVideoDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
868
|
+
if (dynamicVideoDTO === null || dynamicVideoDTO === undefined) {
|
|
869
|
+
throw new Error('Required parameter dynamicVideoDTO was null or undefined when calling upsertDynamicVideoUsingPOST.');
|
|
870
|
+
}
|
|
871
|
+
let headers = this.defaultHeaders;
|
|
872
|
+
if (reqId !== undefined && reqId !== null) {
|
|
873
|
+
headers = headers.set('reqId', String(reqId));
|
|
874
|
+
}
|
|
875
|
+
if (token !== undefined && token !== null) {
|
|
876
|
+
headers = headers.set('token', String(token));
|
|
877
|
+
}
|
|
878
|
+
// to determine the Accept header
|
|
879
|
+
let httpHeaderAccepts = [
|
|
880
|
+
'application/json'
|
|
881
|
+
];
|
|
882
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
883
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
884
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
885
|
+
}
|
|
886
|
+
// to determine the Content-Type header
|
|
887
|
+
const consumes = [
|
|
888
|
+
'application/json'
|
|
889
|
+
];
|
|
890
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
891
|
+
if (httpContentTypeSelected != undefined) {
|
|
892
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
893
|
+
}
|
|
894
|
+
return this.httpClient.post(`${this.basePath}/v2/api/appsettings/dynamicvideo/upsert`, dynamicVideoDTO, {
|
|
895
|
+
withCredentials: this.configuration.withCredentials,
|
|
896
|
+
headers: headers,
|
|
897
|
+
observe: observe,
|
|
898
|
+
reportProgress: reportProgress
|
|
899
|
+
});
|
|
900
|
+
}
|
|
812
901
|
}
|
|
813
902
|
AppSettingsControllerService.decorators = [
|
|
814
903
|
{ type: Injectable }
|
|
@@ -833,7 +922,7 @@ AppSettingsControllerService.ctorParameters = () => [
|
|
|
833
922
|
class AudienceControllerService {
|
|
834
923
|
constructor(httpClient, basePath, configuration) {
|
|
835
924
|
this.httpClient = httpClient;
|
|
836
|
-
this.basePath = 'https://
|
|
925
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
837
926
|
this.defaultHeaders = new HttpHeaders();
|
|
838
927
|
this.configuration = new Configuration();
|
|
839
928
|
if (basePath) {
|
|
@@ -1578,7 +1667,7 @@ AudienceControllerService.ctorParameters = () => [
|
|
|
1578
1667
|
class AuditControllerService {
|
|
1579
1668
|
constructor(httpClient, basePath, configuration) {
|
|
1580
1669
|
this.httpClient = httpClient;
|
|
1581
|
-
this.basePath = 'https://
|
|
1670
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
1582
1671
|
this.defaultHeaders = new HttpHeaders();
|
|
1583
1672
|
this.configuration = new Configuration();
|
|
1584
1673
|
if (basePath) {
|
|
@@ -1758,7 +1847,7 @@ AuditControllerService.ctorParameters = () => [
|
|
|
1758
1847
|
class BulkStrategyControllerService {
|
|
1759
1848
|
constructor(httpClient, basePath, configuration) {
|
|
1760
1849
|
this.httpClient = httpClient;
|
|
1761
|
-
this.basePath = 'https://
|
|
1850
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
1762
1851
|
this.defaultHeaders = new HttpHeaders();
|
|
1763
1852
|
this.configuration = new Configuration();
|
|
1764
1853
|
if (basePath) {
|
|
@@ -1978,7 +2067,7 @@ BulkStrategyControllerService.ctorParameters = () => [
|
|
|
1978
2067
|
class CSSThemeController_Service {
|
|
1979
2068
|
constructor(httpClient, basePath, configuration) {
|
|
1980
2069
|
this.httpClient = httpClient;
|
|
1981
|
-
this.basePath = 'https://
|
|
2070
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
1982
2071
|
this.defaultHeaders = new HttpHeaders();
|
|
1983
2072
|
this.configuration = new Configuration();
|
|
1984
2073
|
if (basePath) {
|
|
@@ -2082,7 +2171,7 @@ CSSThemeController_Service.ctorParameters = () => [
|
|
|
2082
2171
|
class CampaignControllerService {
|
|
2083
2172
|
constructor(httpClient, basePath, configuration) {
|
|
2084
2173
|
this.httpClient = httpClient;
|
|
2085
|
-
this.basePath = 'https://
|
|
2174
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
2086
2175
|
this.defaultHeaders = new HttpHeaders();
|
|
2087
2176
|
this.configuration = new Configuration();
|
|
2088
2177
|
if (basePath) {
|
|
@@ -2377,7 +2466,7 @@ CampaignControllerService.ctorParameters = () => [
|
|
|
2377
2466
|
class CatalogControllerService {
|
|
2378
2467
|
constructor(httpClient, basePath, configuration) {
|
|
2379
2468
|
this.httpClient = httpClient;
|
|
2380
|
-
this.basePath = 'https://
|
|
2469
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
2381
2470
|
this.defaultHeaders = new HttpHeaders();
|
|
2382
2471
|
this.configuration = new Configuration();
|
|
2383
2472
|
if (basePath) {
|
|
@@ -2612,7 +2701,7 @@ CatalogControllerService.ctorParameters = () => [
|
|
|
2612
2701
|
class ClickDestinationControllerService {
|
|
2613
2702
|
constructor(httpClient, basePath, configuration) {
|
|
2614
2703
|
this.httpClient = httpClient;
|
|
2615
|
-
this.basePath = 'https://
|
|
2704
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
2616
2705
|
this.defaultHeaders = new HttpHeaders();
|
|
2617
2706
|
this.configuration = new Configuration();
|
|
2618
2707
|
if (basePath) {
|
|
@@ -2839,7 +2928,7 @@ ClickDestinationControllerService.ctorParameters = () => [
|
|
|
2839
2928
|
class CreativeControllerService {
|
|
2840
2929
|
constructor(httpClient, basePath, configuration) {
|
|
2841
2930
|
this.httpClient = httpClient;
|
|
2842
|
-
this.basePath = 'https://
|
|
2931
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
2843
2932
|
this.defaultHeaders = new HttpHeaders();
|
|
2844
2933
|
this.configuration = new Configuration();
|
|
2845
2934
|
if (basePath) {
|
|
@@ -3281,7 +3370,7 @@ CreativeControllerService.ctorParameters = () => [
|
|
|
3281
3370
|
class CreativeSetsControllerService {
|
|
3282
3371
|
constructor(httpClient, basePath, configuration) {
|
|
3283
3372
|
this.httpClient = httpClient;
|
|
3284
|
-
this.basePath = 'https://
|
|
3373
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
3285
3374
|
this.defaultHeaders = new HttpHeaders();
|
|
3286
3375
|
this.configuration = new Configuration();
|
|
3287
3376
|
if (basePath) {
|
|
@@ -3738,7 +3827,7 @@ CreativeSetsControllerService.ctorParameters = () => [
|
|
|
3738
3827
|
class CreativeTemplateThemesControllerService {
|
|
3739
3828
|
constructor(httpClient, basePath, configuration) {
|
|
3740
3829
|
this.httpClient = httpClient;
|
|
3741
|
-
this.basePath = 'https://
|
|
3830
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
3742
3831
|
this.defaultHeaders = new HttpHeaders();
|
|
3743
3832
|
this.configuration = new Configuration();
|
|
3744
3833
|
if (basePath) {
|
|
@@ -3918,7 +4007,7 @@ CreativeTemplateThemesControllerService.ctorParameters = () => [
|
|
|
3918
4007
|
class CreativeTemplateVariablesControllerService {
|
|
3919
4008
|
constructor(httpClient, basePath, configuration) {
|
|
3920
4009
|
this.httpClient = httpClient;
|
|
3921
|
-
this.basePath = 'https://
|
|
4010
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
3922
4011
|
this.defaultHeaders = new HttpHeaders();
|
|
3923
4012
|
this.configuration = new Configuration();
|
|
3924
4013
|
if (basePath) {
|
|
@@ -3991,7 +4080,7 @@ CreativeTemplateVariablesControllerService.ctorParameters = () => [
|
|
|
3991
4080
|
class CreativeTemplatesControllerService {
|
|
3992
4081
|
constructor(httpClient, basePath, configuration) {
|
|
3993
4082
|
this.httpClient = httpClient;
|
|
3994
|
-
this.basePath = 'https://
|
|
4083
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
3995
4084
|
this.defaultHeaders = new HttpHeaders();
|
|
3996
4085
|
this.configuration = new Configuration();
|
|
3997
4086
|
if (basePath) {
|
|
@@ -4137,6 +4226,88 @@ CreativeTemplatesControllerService.ctorParameters = () => [
|
|
|
4137
4226
|
{ type: Configuration, decorators: [{ type: Optional }] }
|
|
4138
4227
|
];
|
|
4139
4228
|
|
|
4229
|
+
/**
|
|
4230
|
+
* Api Documentation
|
|
4231
|
+
* Api Documentation
|
|
4232
|
+
*
|
|
4233
|
+
* OpenAPI spec version: 1.0
|
|
4234
|
+
*
|
|
4235
|
+
*
|
|
4236
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
4237
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
4238
|
+
* Do not edit the class manually.
|
|
4239
|
+
*/
|
|
4240
|
+
class CustomerReportingControllerService {
|
|
4241
|
+
constructor(httpClient, basePath, configuration) {
|
|
4242
|
+
this.httpClient = httpClient;
|
|
4243
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
4244
|
+
this.defaultHeaders = new HttpHeaders();
|
|
4245
|
+
this.configuration = new Configuration();
|
|
4246
|
+
if (basePath) {
|
|
4247
|
+
this.basePath = basePath;
|
|
4248
|
+
}
|
|
4249
|
+
if (configuration) {
|
|
4250
|
+
this.configuration = configuration;
|
|
4251
|
+
this.basePath = basePath || configuration.basePath || this.basePath;
|
|
4252
|
+
}
|
|
4253
|
+
}
|
|
4254
|
+
/**
|
|
4255
|
+
* @param consumes string[] mime-types
|
|
4256
|
+
* @return true: consumes contains 'multipart/form-data', false: otherwise
|
|
4257
|
+
*/
|
|
4258
|
+
canConsumeForm(consumes) {
|
|
4259
|
+
const form = 'multipart/form-data';
|
|
4260
|
+
for (const consume of consumes) {
|
|
4261
|
+
if (form === consume) {
|
|
4262
|
+
return true;
|
|
4263
|
+
}
|
|
4264
|
+
}
|
|
4265
|
+
return false;
|
|
4266
|
+
}
|
|
4267
|
+
customerReportUsingPOST(customerReportingRequest, reqId, token, observe = 'body', reportProgress = false) {
|
|
4268
|
+
if (customerReportingRequest === null || customerReportingRequest === undefined) {
|
|
4269
|
+
throw new Error('Required parameter customerReportingRequest was null or undefined when calling customerReportUsingPOST.');
|
|
4270
|
+
}
|
|
4271
|
+
let headers = this.defaultHeaders;
|
|
4272
|
+
if (reqId !== undefined && reqId !== null) {
|
|
4273
|
+
headers = headers.set('reqId', String(reqId));
|
|
4274
|
+
}
|
|
4275
|
+
if (token !== undefined && token !== null) {
|
|
4276
|
+
headers = headers.set('token', String(token));
|
|
4277
|
+
}
|
|
4278
|
+
// to determine the Accept header
|
|
4279
|
+
let httpHeaderAccepts = [
|
|
4280
|
+
'application/json'
|
|
4281
|
+
];
|
|
4282
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
4283
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
4284
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
4285
|
+
}
|
|
4286
|
+
// to determine the Content-Type header
|
|
4287
|
+
const consumes = [
|
|
4288
|
+
'application/json'
|
|
4289
|
+
];
|
|
4290
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
4291
|
+
if (httpContentTypeSelected != undefined) {
|
|
4292
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
4293
|
+
}
|
|
4294
|
+
return this.httpClient.post(`${this.basePath}/v2/api/creport/aliexpress`, customerReportingRequest, {
|
|
4295
|
+
withCredentials: this.configuration.withCredentials,
|
|
4296
|
+
headers: headers,
|
|
4297
|
+
observe: observe,
|
|
4298
|
+
reportProgress: reportProgress
|
|
4299
|
+
});
|
|
4300
|
+
}
|
|
4301
|
+
}
|
|
4302
|
+
CustomerReportingControllerService.decorators = [
|
|
4303
|
+
{ type: Injectable }
|
|
4304
|
+
];
|
|
4305
|
+
CustomerReportingControllerService.ctorParameters = () => [
|
|
4306
|
+
{ type: HttpClient },
|
|
4307
|
+
{ type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
|
|
4308
|
+
{ type: Configuration, decorators: [{ type: Optional }] }
|
|
4309
|
+
];
|
|
4310
|
+
|
|
4140
4311
|
/**
|
|
4141
4312
|
* Api Documentation
|
|
4142
4313
|
* Api Documentation
|
|
@@ -4151,7 +4322,7 @@ CreativeTemplatesControllerService.ctorParameters = () => [
|
|
|
4151
4322
|
class DashboardControllerService {
|
|
4152
4323
|
constructor(httpClient, basePath, configuration) {
|
|
4153
4324
|
this.httpClient = httpClient;
|
|
4154
|
-
this.basePath = 'https://
|
|
4325
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
4155
4326
|
this.defaultHeaders = new HttpHeaders();
|
|
4156
4327
|
this.configuration = new Configuration();
|
|
4157
4328
|
if (basePath) {
|
|
@@ -4765,7 +4936,7 @@ DashboardControllerService.ctorParameters = () => [
|
|
|
4765
4936
|
class NotificationsControllerService {
|
|
4766
4937
|
constructor(httpClient, basePath, configuration) {
|
|
4767
4938
|
this.httpClient = httpClient;
|
|
4768
|
-
this.basePath = 'https://
|
|
4939
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
4769
4940
|
this.defaultHeaders = new HttpHeaders();
|
|
4770
4941
|
this.configuration = new Configuration();
|
|
4771
4942
|
if (basePath) {
|
|
@@ -4943,7 +5114,7 @@ NotificationsControllerService.ctorParameters = () => [
|
|
|
4943
5114
|
class PixelControllerService {
|
|
4944
5115
|
constructor(httpClient, basePath, configuration) {
|
|
4945
5116
|
this.httpClient = httpClient;
|
|
4946
|
-
this.basePath = 'https://
|
|
5117
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
4947
5118
|
this.defaultHeaders = new HttpHeaders();
|
|
4948
5119
|
this.configuration = new Configuration();
|
|
4949
5120
|
if (basePath) {
|
|
@@ -5245,7 +5416,7 @@ PixelControllerService.ctorParameters = () => [
|
|
|
5245
5416
|
class ReportingControllerService {
|
|
5246
5417
|
constructor(httpClient, basePath, configuration) {
|
|
5247
5418
|
this.httpClient = httpClient;
|
|
5248
|
-
this.basePath = 'https://
|
|
5419
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
5249
5420
|
this.defaultHeaders = new HttpHeaders();
|
|
5250
5421
|
this.configuration = new Configuration();
|
|
5251
5422
|
if (basePath) {
|
|
@@ -5410,7 +5581,7 @@ ReportingControllerService.ctorParameters = () => [
|
|
|
5410
5581
|
class SliceXControllerService {
|
|
5411
5582
|
constructor(httpClient, basePath, configuration) {
|
|
5412
5583
|
this.httpClient = httpClient;
|
|
5413
|
-
this.basePath = 'https://
|
|
5584
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
5414
5585
|
this.defaultHeaders = new HttpHeaders();
|
|
5415
5586
|
this.configuration = new Configuration();
|
|
5416
5587
|
if (basePath) {
|
|
@@ -5655,7 +5826,7 @@ SliceXControllerService.ctorParameters = () => [
|
|
|
5655
5826
|
class StrategyControllerService {
|
|
5656
5827
|
constructor(httpClient, basePath, configuration) {
|
|
5657
5828
|
this.httpClient = httpClient;
|
|
5658
|
-
this.basePath = 'https://
|
|
5829
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
5659
5830
|
this.defaultHeaders = new HttpHeaders();
|
|
5660
5831
|
this.configuration = new Configuration();
|
|
5661
5832
|
if (basePath) {
|
|
@@ -6306,7 +6477,7 @@ StrategyControllerService.ctorParameters = () => [
|
|
|
6306
6477
|
class UILoggerControllerService {
|
|
6307
6478
|
constructor(httpClient, basePath, configuration) {
|
|
6308
6479
|
this.httpClient = httpClient;
|
|
6309
|
-
this.basePath = 'https://
|
|
6480
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
6310
6481
|
this.defaultHeaders = new HttpHeaders();
|
|
6311
6482
|
this.configuration = new Configuration();
|
|
6312
6483
|
if (basePath) {
|
|
@@ -6393,7 +6564,7 @@ UILoggerControllerService.ctorParameters = () => [
|
|
|
6393
6564
|
class UserPreferenceControllerService {
|
|
6394
6565
|
constructor(httpClient, basePath, configuration) {
|
|
6395
6566
|
this.httpClient = httpClient;
|
|
6396
|
-
this.basePath = 'https://
|
|
6567
|
+
this.basePath = 'https://apiv2beta.atomex.net';
|
|
6397
6568
|
this.defaultHeaders = new HttpHeaders();
|
|
6398
6569
|
this.configuration = new Configuration();
|
|
6399
6570
|
if (basePath) {
|
|
@@ -6548,7 +6719,7 @@ UserPreferenceControllerService.ctorParameters = () => [
|
|
|
6548
6719
|
{ type: Configuration, decorators: [{ type: Optional }] }
|
|
6549
6720
|
];
|
|
6550
6721
|
|
|
6551
|
-
const APIS = [AdminControllerService, AdvertiserControllerService, AppSettingsControllerService, AudienceControllerService, AuditControllerService, BulkStrategyControllerService, CSSThemeController_Service, CampaignControllerService, CatalogControllerService, ClickDestinationControllerService, CreativeControllerService, CreativeSetsControllerService, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, DashboardControllerService, NotificationsControllerService, PixelControllerService, ReportingControllerService, SliceXControllerService, StrategyControllerService, UILoggerControllerService, UserPreferenceControllerService];
|
|
6722
|
+
const APIS = [AdminControllerService, AdvertiserControllerService, AppSettingsControllerService, AudienceControllerService, AuditControllerService, BulkStrategyControllerService, CSSThemeController_Service, CampaignControllerService, CatalogControllerService, ClickDestinationControllerService, CreativeControllerService, CreativeSetsControllerService, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, CustomerReportingControllerService, DashboardControllerService, NotificationsControllerService, PixelControllerService, ReportingControllerService, SliceXControllerService, StrategyControllerService, UILoggerControllerService, UserPreferenceControllerService];
|
|
6552
6723
|
|
|
6553
6724
|
var ActivityLogsCreativeSetsBulkUpdateDTO;
|
|
6554
6725
|
(function (ActivityLogsCreativeSetsBulkUpdateDTO) {
|
|
@@ -7317,6 +7488,30 @@ var CreativeSetResponse;
|
|
|
7317
7488
|
* Do not edit the class manually.
|
|
7318
7489
|
*/
|
|
7319
7490
|
|
|
7491
|
+
/**
|
|
7492
|
+
* Api Documentation
|
|
7493
|
+
* Api Documentation
|
|
7494
|
+
*
|
|
7495
|
+
* OpenAPI spec version: 1.0
|
|
7496
|
+
*
|
|
7497
|
+
*
|
|
7498
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
7499
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
7500
|
+
* Do not edit the class manually.
|
|
7501
|
+
*/
|
|
7502
|
+
|
|
7503
|
+
/**
|
|
7504
|
+
* Api Documentation
|
|
7505
|
+
* Api Documentation
|
|
7506
|
+
*
|
|
7507
|
+
* OpenAPI spec version: 1.0
|
|
7508
|
+
*
|
|
7509
|
+
*
|
|
7510
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
7511
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
7512
|
+
* Do not edit the class manually.
|
|
7513
|
+
*/
|
|
7514
|
+
|
|
7320
7515
|
/**
|
|
7321
7516
|
* Api Documentation
|
|
7322
7517
|
* Api Documentation
|
|
@@ -7402,6 +7597,36 @@ var DuplicateCreativeSetResponse;
|
|
|
7402
7597
|
* Do not edit the class manually.
|
|
7403
7598
|
*/
|
|
7404
7599
|
|
|
7600
|
+
/**
|
|
7601
|
+
* Api Documentation
|
|
7602
|
+
* Api Documentation
|
|
7603
|
+
*
|
|
7604
|
+
* OpenAPI spec version: 1.0
|
|
7605
|
+
*
|
|
7606
|
+
*
|
|
7607
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
7608
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
7609
|
+
* Do not edit the class manually.
|
|
7610
|
+
*/
|
|
7611
|
+
var DynamicVideoConfigDTO;
|
|
7612
|
+
(function (DynamicVideoConfigDTO) {
|
|
7613
|
+
DynamicVideoConfigDTO.ConfigKeyEnum = {
|
|
7614
|
+
TEMPLATEID: 'TEMPLATE_ID',
|
|
7615
|
+
LOGO: 'LOGO',
|
|
7616
|
+
SALEPRICEPREFIX: 'SALE_PRICE_PREFIX',
|
|
7617
|
+
ORIGINALPRICEPREFIX: 'ORIGINAL_PRICE_PREFIX',
|
|
7618
|
+
CTA: 'CTA',
|
|
7619
|
+
TITLELENGTH: 'TITLE_LENGTH',
|
|
7620
|
+
TITLEROWS: 'TITLE_ROWS',
|
|
7621
|
+
DISCOUNTSUFFIX: 'DISCOUNT_SUFFIX',
|
|
7622
|
+
FONT: 'FONT',
|
|
7623
|
+
ROUNDPRICE: 'ROUND_PRICE',
|
|
7624
|
+
MUSICFILE: 'MUSIC_FILE',
|
|
7625
|
+
VIDEOFILE: 'VIDEO_FILE',
|
|
7626
|
+
USERESIZER: 'USE_RESIZER'
|
|
7627
|
+
};
|
|
7628
|
+
})(DynamicVideoConfigDTO || (DynamicVideoConfigDTO = {}));
|
|
7629
|
+
|
|
7405
7630
|
/**
|
|
7406
7631
|
* Api Documentation
|
|
7407
7632
|
* Api Documentation
|
|
@@ -7635,6 +7860,18 @@ var MetaRuleDto;
|
|
|
7635
7860
|
* Do not edit the class manually.
|
|
7636
7861
|
*/
|
|
7637
7862
|
|
|
7863
|
+
/**
|
|
7864
|
+
* Api Documentation
|
|
7865
|
+
* Api Documentation
|
|
7866
|
+
*
|
|
7867
|
+
* OpenAPI spec version: 1.0
|
|
7868
|
+
*
|
|
7869
|
+
*
|
|
7870
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
7871
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
7872
|
+
* Do not edit the class manually.
|
|
7873
|
+
*/
|
|
7874
|
+
|
|
7638
7875
|
/**
|
|
7639
7876
|
* Api Documentation
|
|
7640
7877
|
* Api Documentation
|
|
@@ -8282,6 +8519,7 @@ ApiModule.decorators = [
|
|
|
8282
8519
|
CreativeTemplateThemesControllerService,
|
|
8283
8520
|
CreativeTemplateVariablesControllerService,
|
|
8284
8521
|
CreativeTemplatesControllerService,
|
|
8522
|
+
CustomerReportingControllerService,
|
|
8285
8523
|
DashboardControllerService,
|
|
8286
8524
|
NotificationsControllerService,
|
|
8287
8525
|
PixelControllerService,
|
|
@@ -8302,5 +8540,5 @@ ApiModule.ctorParameters = () => [
|
|
|
8302
8540
|
* Generated bundle index. Do not edit.
|
|
8303
8541
|
*/
|
|
8304
8542
|
|
|
8305
|
-
export { APIS, ActivityLogsCreativeSetsBulkUpdateDTO, ActivityLogsStrategyBulkUpdateDTO, AdminControllerService, AdvertiserControllerService, ApiModule, AppSettingsControllerService, AppSettingsDTO, AppSettingsPropertyDTO, AuctionTypeEditField, AudienceBackfillQueryTemplateRequest, AudienceBackfillRequest, AudienceControllerService, AudienceDTO, AudienceESDTO, AudiencePerformanceDTO, AuditControllerService, BASE_PATH, BaseModelWithCreativeSetType, BulkStrategyControllerService, COLLECTION_FORMATS, CSSThemeController_Service, CampaignControllerService, CatalogControllerService, ClickDestination, ClickDestinationControllerService, Configuration, CreativeCompactDTO, CreativeControllerService, CreativeDTO, CreativeFileForSet, CreativeFiles, CreativeHtmlFileForSet, CreativeSetDashboardMetric, CreativeSetDetails, CreativeSetRequest, CreativeSetResponse, CreativeSetsControllerService, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, DashboardControllerService, DcoAttributesDTO, DuplicateCreativeSetResponse, FilterModel, GeoListRequest, Macro, MetaRuleDto, NotificationResponse, NotificationsControllerService, PixelControllerService, PixelDataFileDTO, RemoteFileDTO, ReportProperty, ReportingControllerService, ReportingRequest, ReportingResponse, RuleDTO, SliceXControllerService, StrategyControllerService, StrategyDTO, StrategyQuickEditDTO, TemplateVariablesDTO, UILoggerControllerService, UserPreferenceControllerService, VastCreative, VideoAttributes, VideoProperties };
|
|
8543
|
+
export { APIS, ActivityLogsCreativeSetsBulkUpdateDTO, ActivityLogsStrategyBulkUpdateDTO, AdminControllerService, AdvertiserControllerService, ApiModule, AppSettingsControllerService, AppSettingsDTO, AppSettingsPropertyDTO, AuctionTypeEditField, AudienceBackfillQueryTemplateRequest, AudienceBackfillRequest, AudienceControllerService, AudienceDTO, AudienceESDTO, AudiencePerformanceDTO, AuditControllerService, BASE_PATH, BaseModelWithCreativeSetType, BulkStrategyControllerService, COLLECTION_FORMATS, CSSThemeController_Service, CampaignControllerService, CatalogControllerService, ClickDestination, ClickDestinationControllerService, Configuration, CreativeCompactDTO, CreativeControllerService, CreativeDTO, CreativeFileForSet, CreativeFiles, CreativeHtmlFileForSet, CreativeSetDashboardMetric, CreativeSetDetails, CreativeSetRequest, CreativeSetResponse, CreativeSetsControllerService, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, CustomerReportingControllerService, DashboardControllerService, DcoAttributesDTO, DuplicateCreativeSetResponse, DynamicVideoConfigDTO, FilterModel, GeoListRequest, Macro, MetaRuleDto, NotificationResponse, NotificationsControllerService, PixelControllerService, PixelDataFileDTO, RemoteFileDTO, ReportProperty, ReportingControllerService, ReportingRequest, ReportingResponse, RuleDTO, SliceXControllerService, StrategyControllerService, StrategyDTO, StrategyQuickEditDTO, TemplateVariablesDTO, UILoggerControllerService, UserPreferenceControllerService, VastCreative, VideoAttributes, VideoProperties };
|
|
8306
8544
|
//# sourceMappingURL=revxui-api-clients-ts.js.map
|