@revxui/api-clients-ts 1.1.426 → 1.1.427

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 (44) hide show
  1. package/README.md +2 -2
  2. package/api/api.d.ts +3 -1
  3. package/api/appsFlyerController.service.d.ts +31 -0
  4. package/esm2020/api/api.mjs +4 -2
  5. package/esm2020/api/appsFlyerController.service.mjs +94 -0
  6. package/esm2020/api/safeguardController.service.mjs +7 -7
  7. package/esm2020/api.module.mjs +4 -1
  8. package/esm2020/model/aBTestingVariantDTO.mjs +3 -2
  9. package/esm2020/model/apiResponseObjectListCreativeMetaData.mjs +2 -0
  10. package/esm2020/model/creativeMetaData.mjs +2 -0
  11. package/esm2020/model/creativePerformanceList.mjs +1 -1
  12. package/esm2020/model/creativeSetDashboardMetric.mjs +1 -1
  13. package/esm2020/model/creativeSetPerformanceList.mjs +1 -1
  14. package/esm2020/model/dashboardData.mjs +1 -1
  15. package/esm2020/model/dashboardMetrics.mjs +1 -1
  16. package/esm2020/model/models.mjs +6 -1
  17. package/esm2020/model/nativeAsset.mjs +13 -0
  18. package/esm2020/model/recencyTargetingDTO.mjs +19 -0
  19. package/esm2020/model/slicexData.mjs +1 -1
  20. package/esm2020/model/slicexGridData.mjs +1 -1
  21. package/esm2020/model/strategyDTO.mjs +1 -1
  22. package/esm2020/model/videoAsset.mjs +13 -0
  23. package/esm2020/model/widgetPerformanceMetrics.mjs +1 -1
  24. package/fesm2015/revxui-api-clients-ts.mjs +119 -9
  25. package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
  26. package/fesm2020/revxui-api-clients-ts.mjs +141 -9
  27. package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
  28. package/model/aBTestingVariantDTO.d.ts +2 -1
  29. package/model/apiResponseObjectListCreativeMetaData.d.ts +17 -0
  30. package/model/creativeMetaData.d.ts +27 -0
  31. package/model/creativePerformanceList.d.ts +20 -0
  32. package/model/creativeSetDashboardMetric.d.ts +20 -0
  33. package/model/creativeSetPerformanceList.d.ts +20 -0
  34. package/model/dashboardData.d.ts +20 -0
  35. package/model/dashboardMetrics.d.ts +20 -0
  36. package/model/models.d.ts +5 -0
  37. package/model/nativeAsset.d.ts +19 -0
  38. package/model/recencyTargetingDTO.d.ts +22 -0
  39. package/model/slicexData.d.ts +20 -0
  40. package/model/slicexGridData.d.ts +20 -0
  41. package/model/strategyDTO.d.ts +3 -0
  42. package/model/videoAsset.d.ts +18 -0
  43. package/model/widgetPerformanceMetrics.d.ts +2 -0
  44. package/package.json +1 -1
@@ -1059,6 +1059,92 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1059
1059
  type: Optional
1060
1060
  }] }]; } });
1061
1061
 
1062
+ /**
1063
+ * Api Documentation
1064
+ * Api Documentation
1065
+ *
1066
+ * OpenAPI spec version: 1.0
1067
+ *
1068
+ *
1069
+ * NOTE: This class is auto generated by the swagger code generator program.
1070
+ * https://github.com/swagger-api/swagger-codegen.git
1071
+ * Do not edit the class manually.
1072
+ */
1073
+ /* tslint:disable:no-unused-variable member-ordering */
1074
+ class AppsFlyerControllerService {
1075
+ constructor(httpClient, basePath, configuration) {
1076
+ this.httpClient = httpClient;
1077
+ this.basePath = 'https://apiv2stage3.atomex.net';
1078
+ this.defaultHeaders = new HttpHeaders();
1079
+ this.configuration = new Configuration();
1080
+ if (basePath) {
1081
+ this.basePath = basePath;
1082
+ }
1083
+ if (configuration) {
1084
+ this.configuration = configuration;
1085
+ this.basePath = basePath || configuration.basePath || this.basePath;
1086
+ }
1087
+ }
1088
+ /**
1089
+ * @param consumes string[] mime-types
1090
+ * @return true: consumes contains 'multipart/form-data', false: otherwise
1091
+ */
1092
+ canConsumeForm(consumes) {
1093
+ const form = 'multipart/form-data';
1094
+ for (const consume of consumes) {
1095
+ if (form === consume) {
1096
+ return true;
1097
+ }
1098
+ }
1099
+ return false;
1100
+ }
1101
+ getCreativeMetaDataUsingGET(ids, reqId, token, observe = 'body', reportProgress = false) {
1102
+ if (ids === null || ids === undefined) {
1103
+ throw new Error('Required parameter ids was null or undefined when calling getCreativeMetaDataUsingGET.');
1104
+ }
1105
+ let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
1106
+ if (ids !== undefined && ids !== null) {
1107
+ queryParameters = queryParameters.set('ids', ids);
1108
+ }
1109
+ let headers = this.defaultHeaders;
1110
+ if (reqId !== undefined && reqId !== null) {
1111
+ headers = headers.set('reqId', String(reqId));
1112
+ }
1113
+ if (token !== undefined && token !== null) {
1114
+ headers = headers.set('token', String(token));
1115
+ }
1116
+ // to determine the Accept header
1117
+ let httpHeaderAccepts = [
1118
+ 'application/json'
1119
+ ];
1120
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
1121
+ if (httpHeaderAcceptSelected != undefined) {
1122
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
1123
+ }
1124
+ // to determine the Content-Type header
1125
+ const consumes = [];
1126
+ return this.httpClient.get(`${this.basePath}/v3/api/appsflyer/creatives`, {
1127
+ params: queryParameters,
1128
+ withCredentials: this.configuration.withCredentials,
1129
+ headers: headers,
1130
+ observe: observe,
1131
+ reportProgress: reportProgress
1132
+ });
1133
+ }
1134
+ }
1135
+ AppsFlyerControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AppsFlyerControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1136
+ AppsFlyerControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AppsFlyerControllerService });
1137
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AppsFlyerControllerService, decorators: [{
1138
+ type: Injectable
1139
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
1140
+ type: Optional
1141
+ }, {
1142
+ type: Inject,
1143
+ args: [BASE_PATH]
1144
+ }] }, { type: Configuration, decorators: [{
1145
+ type: Optional
1146
+ }] }]; } });
1147
+
1062
1148
  /**
1063
1149
  * Api Documentation
1064
1150
  * Api Documentation
@@ -8014,7 +8100,7 @@ class SafeguardControllerService {
8014
8100
  }
8015
8101
  // to determine the Content-Type header
8016
8102
  const consumes = [];
8017
- return this.httpClient.get(`${this.basePath}/v2/api/safeguard/blocked_entities/${encodeURIComponent(String(safeguardId))}`, {
8103
+ return this.httpClient.get(`${this.basePath}/v2/api/safeguard/blocked_entities/${encodeURIComponent(String(safeguardId))}/`, {
8018
8104
  withCredentials: this.configuration.withCredentials,
8019
8105
  headers: headers,
8020
8106
  observe: observe,
@@ -8042,7 +8128,7 @@ class SafeguardControllerService {
8042
8128
  }
8043
8129
  // to determine the Content-Type header
8044
8130
  const consumes = [];
8045
- return this.httpClient.get(`${this.basePath}/v2/api/safeguard/exclusion/get/${encodeURIComponent(String(campaignId))}`, {
8131
+ return this.httpClient.get(`${this.basePath}/v2/api/safeguard/exclusion/get/${encodeURIComponent(String(campaignId))}/`, {
8046
8132
  withCredentials: this.configuration.withCredentials,
8047
8133
  headers: headers,
8048
8134
  observe: observe,
@@ -8070,7 +8156,7 @@ class SafeguardControllerService {
8070
8156
  }
8071
8157
  // to determine the Content-Type header
8072
8158
  const consumes = [];
8073
- return this.httpClient.get(`${this.basePath}/v2/api/safeguard/detail/${encodeURIComponent(String(safeguardId))}`, {
8159
+ return this.httpClient.get(`${this.basePath}/v2/api/safeguard/detail/${encodeURIComponent(String(safeguardId))}/`, {
8074
8160
  withCredentials: this.configuration.withCredentials,
8075
8161
  headers: headers,
8076
8162
  observe: observe,
@@ -8162,7 +8248,7 @@ class SafeguardControllerService {
8162
8248
  }
8163
8249
  // to determine the Content-Type header
8164
8250
  const consumes = [];
8165
- return this.httpClient.get(`${this.basePath}/v2/api/safeguard/run_now/${encodeURIComponent(String(safeguardId))}`, {
8251
+ return this.httpClient.get(`${this.basePath}/v2/api/safeguard/run_now/${encodeURIComponent(String(safeguardId))}/`, {
8166
8252
  withCredentials: this.configuration.withCredentials,
8167
8253
  headers: headers,
8168
8254
  observe: observe,
@@ -8199,7 +8285,7 @@ class SafeguardControllerService {
8199
8285
  if (httpContentTypeSelected != undefined) {
8200
8286
  headers = headers.set('Content-Type', httpContentTypeSelected);
8201
8287
  }
8202
- return this.httpClient.post(`${this.basePath}/v2/api/safeguard/exclusion/update/${encodeURIComponent(String(campaignId))}`, safeguardExclusionDTO, {
8288
+ return this.httpClient.post(`${this.basePath}/v2/api/safeguard/exclusion/update/${encodeURIComponent(String(campaignId))}/`, safeguardExclusionDTO, {
8203
8289
  withCredentials: this.configuration.withCredentials,
8204
8290
  headers: headers,
8205
8291
  observe: observe,
@@ -8277,7 +8363,7 @@ class SafeguardControllerService {
8277
8363
  if (httpContentTypeSelected != undefined) {
8278
8364
  headers = headers.set('Content-Type', httpContentTypeSelected);
8279
8365
  }
8280
- return this.httpClient.post(`${this.basePath}/v2/api/safeguard/update/${encodeURIComponent(String(safeguardId))}`, safeguardRequestDTO, {
8366
+ return this.httpClient.post(`${this.basePath}/v2/api/safeguard/update/${encodeURIComponent(String(safeguardId))}/`, safeguardRequestDTO, {
8281
8367
  withCredentials: this.configuration.withCredentials,
8282
8368
  headers: headers,
8283
8369
  observe: observe,
@@ -10290,7 +10376,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
10290
10376
  type: Optional
10291
10377
  }] }]; } });
10292
10378
 
10293
- const APIS = [AdminControllerService, AdvertiserControllerService, AppSettingsControllerService, AudienceControllerService, AuditControllerService, BidFunnelControllerService, BulkStrategyControllerService, CSSThemeController_Service, CampaignControllerService, CatalogControllerService, ClickDestinationControllerService, CreativeControllerService, CreativeSetsControllerService, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, CustomerReportingControllerService, DashboardControllerService, ExperimentsControllerService, NotificationsControllerService, PixelControllerService, ReportControllerService, ReportingControllerService, ReportingSchedulerControllerService, SafeguardControllerService, SliceXControllerService, StrategyControllerService, StrategyTemplateControllerService, UILoggerControllerService, UserPreferenceControllerService];
10379
+ const APIS = [AdminControllerService, AdvertiserControllerService, AppSettingsControllerService, AppsFlyerControllerService, AudienceControllerService, AuditControllerService, BidFunnelControllerService, BulkStrategyControllerService, CSSThemeController_Service, CampaignControllerService, CatalogControllerService, ClickDestinationControllerService, CreativeControllerService, CreativeSetsControllerService, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, CustomerReportingControllerService, DashboardControllerService, ExperimentsControllerService, NotificationsControllerService, PixelControllerService, ReportControllerService, ReportingControllerService, ReportingSchedulerControllerService, SafeguardControllerService, SliceXControllerService, StrategyControllerService, StrategyTemplateControllerService, UILoggerControllerService, UserPreferenceControllerService];
10294
10380
 
10295
10381
  var ABTestingDTO;
10296
10382
  (function (ABTestingDTO) {
@@ -10334,7 +10420,8 @@ var ABTestingVariantDTO;
10334
10420
  CPI: 'CPI',
10335
10421
  BOOST: 'BOOST',
10336
10422
  RCPC: 'RCPC',
10337
- CPABOOST: 'CPA_BOOST'
10423
+ CPABOOST: 'CPA_BOOST',
10424
+ CPR: 'CPR'
10338
10425
  };
10339
10426
  ABTestingVariantDTO.VariantTypeEnum = {
10340
10427
  MODEL: 'MODEL',
@@ -12138,6 +12225,18 @@ var MetaRuleDto;
12138
12225
  * Do not edit the class manually.
12139
12226
  */
12140
12227
 
12228
+ /**
12229
+ * Api Documentation
12230
+ * Api Documentation
12231
+ *
12232
+ * OpenAPI spec version: 1.0
12233
+ *
12234
+ *
12235
+ * NOTE: This class is auto generated by the swagger code generator program.
12236
+ * https://github.com/swagger-api/swagger-codegen.git
12237
+ * Do not edit the class manually.
12238
+ */
12239
+
12141
12240
  /**
12142
12241
  * Api Documentation
12143
12242
  * Api Documentation
@@ -12335,6 +12434,25 @@ var PlatformClickSigningConfig;
12335
12434
  };
12336
12435
  })(PlatformClickSigningConfig || (PlatformClickSigningConfig = {}));
12337
12436
 
12437
+ /**
12438
+ * Api Documentation
12439
+ * Api Documentation
12440
+ *
12441
+ * OpenAPI spec version: 1.0
12442
+ *
12443
+ *
12444
+ * NOTE: This class is auto generated by the swagger code generator program.
12445
+ * https://github.com/swagger-api/swagger-codegen.git
12446
+ * Do not edit the class manually.
12447
+ */
12448
+ var RecencyTargetingDTO;
12449
+ (function (RecencyTargetingDTO) {
12450
+ RecencyTargetingDTO.UnitEnum = {
12451
+ HOURS: 'HOURS',
12452
+ DAYS: 'DAYS'
12453
+ };
12454
+ })(RecencyTargetingDTO || (RecencyTargetingDTO = {}));
12455
+
12338
12456
  /**
12339
12457
  * Api Documentation
12340
12458
  * Api Documentation
@@ -13119,6 +13237,18 @@ var VastCreative;
13119
13237
  * Do not edit the class manually.
13120
13238
  */
13121
13239
 
13240
+ /**
13241
+ * Api Documentation
13242
+ * Api Documentation
13243
+ *
13244
+ * OpenAPI spec version: 1.0
13245
+ *
13246
+ *
13247
+ * NOTE: This class is auto generated by the swagger code generator program.
13248
+ * https://github.com/swagger-api/swagger-codegen.git
13249
+ * Do not edit the class manually.
13250
+ */
13251
+
13122
13252
  /**
13123
13253
  * Api Documentation
13124
13254
  * Api Documentation
@@ -13285,6 +13415,7 @@ ApiModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.
13285
13415
  AdminControllerService,
13286
13416
  AdvertiserControllerService,
13287
13417
  AppSettingsControllerService,
13418
+ AppsFlyerControllerService,
13288
13419
  AudienceControllerService,
13289
13420
  AuditControllerService,
13290
13421
  BidFunnelControllerService,
@@ -13323,6 +13454,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
13323
13454
  AdminControllerService,
13324
13455
  AdvertiserControllerService,
13325
13456
  AppSettingsControllerService,
13457
+ AppsFlyerControllerService,
13326
13458
  AudienceControllerService,
13327
13459
  AuditControllerService,
13328
13460
  BidFunnelControllerService,
@@ -13364,5 +13496,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
13364
13496
  * Generated bundle index. Do not edit.
13365
13497
  */
13366
13498
 
13367
- export { ABTestingDTO, ABTestingResponseDetails, ABTestingVariantDTO, APIS, ActivityLogsCreativeSetsBulkUpdateDTO, ActivityLogsStrategyBulkUpdateDTO, AdminControllerService, AdvertiserAppSettingsDTO, AdvertiserCohortDTO, AdvertiserCohortResponse, AdvertiserControllerService, ApiModule, AppSettingsControllerService, AppSettingsDTO, AppSettingsPropertyDTO, AuctionTypeEditField, AudienceBackfillQueryTemplateRequest, AudienceBackfillRequest, AudienceControllerService, AudienceDTO, AudienceESDTO, AudiencePerformanceDTO, AuditControllerService, BASE_PATH, BaseModelWithCreativeSetType, BidFunnelControllerService, BulkStrategyControllerService, COLLECTION_FORMATS, CSSThemeController_Service, CampaignControllerService, CatalogControllerService, ClickDestination, ClickDestinationControllerService, CohortCampaignStrategyDO, Configuration, CreativeCompactDTO, CreativeControllerService, CreativeDTO, CreativeDetails, CreativeEntity, CreativeFileForSet, CreativeFiles, CreativeHtmlFileForSet, CreativeSetDashboardMetric, CreativeSetDetails, CreativeSetPerformanceList, CreativeSetRequest, CreativeSetResponse, CreativeSetsControllerService, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, CustomerReportingControllerService, DashboardControllerService, DcoAttributesDTO, DeviceTargetModel, DuplicateCampaignStrategyRequestDTO, DuplicateCreativeSetResponse, DynamicVideoConfigDTO, ExperimentsControllerService, ExperimentsEntity, FilterModel, GeoFenceDTO, GeoListRequest, IncrementalityTestDTO, IncrementalityTestDetails, JobResponse, JsonNode, LookAlikeAudienceConfigDTO, Macro, MetaRuleDto, NotificationResponse, NotificationsControllerService, OptimizationRuleAuditLogDTO, OptimizationRuleDTO, PixelControllerService, PixelDataFileDTO, PlatformClickSigningConfig, RemoteFileDTO, ReportControllerService, ReportProperty, ReportRequest, ReportResponse, ReportingControllerService, ReportingRequest, ReportingResponse, ReportingSchedulerControllerService, ReportingSchedulerResponse, RuleDTO, SafeguardControllerService, SafeguardDetail, SafeguardEntity, SafeguardExclusionDTO, SafeguardRequestDTO, SafeguardResponseDTO, SafeguardRuleExecutionLogEntity, SchedulerRequest, SliceXControllerService, StrategyControllerService, StrategyDTO, StrategyInlineDTO, StrategyQuickEditDTO, StrategyRuleResponse, StrategyTemplateControllerService, StrategyTemplateDTO, StrategyTemplateResponse, TemplateVariablesDTO, UILoggerControllerService, UserPreferenceControllerService, VastCreative, VideoAttributes, VideoProperties, WhitelabelingEntity };
13499
+ export { ABTestingDTO, ABTestingResponseDetails, ABTestingVariantDTO, APIS, ActivityLogsCreativeSetsBulkUpdateDTO, ActivityLogsStrategyBulkUpdateDTO, AdminControllerService, AdvertiserAppSettingsDTO, AdvertiserCohortDTO, AdvertiserCohortResponse, AdvertiserControllerService, ApiModule, AppSettingsControllerService, AppSettingsDTO, AppSettingsPropertyDTO, AppsFlyerControllerService, AuctionTypeEditField, AudienceBackfillQueryTemplateRequest, AudienceBackfillRequest, AudienceControllerService, AudienceDTO, AudienceESDTO, AudiencePerformanceDTO, AuditControllerService, BASE_PATH, BaseModelWithCreativeSetType, BidFunnelControllerService, BulkStrategyControllerService, COLLECTION_FORMATS, CSSThemeController_Service, CampaignControllerService, CatalogControllerService, ClickDestination, ClickDestinationControllerService, CohortCampaignStrategyDO, Configuration, CreativeCompactDTO, CreativeControllerService, CreativeDTO, CreativeDetails, CreativeEntity, CreativeFileForSet, CreativeFiles, CreativeHtmlFileForSet, CreativeSetDashboardMetric, CreativeSetDetails, CreativeSetPerformanceList, CreativeSetRequest, CreativeSetResponse, CreativeSetsControllerService, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, CustomerReportingControllerService, DashboardControllerService, DcoAttributesDTO, DeviceTargetModel, DuplicateCampaignStrategyRequestDTO, DuplicateCreativeSetResponse, DynamicVideoConfigDTO, ExperimentsControllerService, ExperimentsEntity, FilterModel, GeoFenceDTO, GeoListRequest, IncrementalityTestDTO, IncrementalityTestDetails, JobResponse, JsonNode, LookAlikeAudienceConfigDTO, Macro, MetaRuleDto, NotificationResponse, NotificationsControllerService, OptimizationRuleAuditLogDTO, OptimizationRuleDTO, PixelControllerService, PixelDataFileDTO, PlatformClickSigningConfig, RecencyTargetingDTO, RemoteFileDTO, ReportControllerService, ReportProperty, ReportRequest, ReportResponse, ReportingControllerService, ReportingRequest, ReportingResponse, ReportingSchedulerControllerService, ReportingSchedulerResponse, RuleDTO, SafeguardControllerService, SafeguardDetail, SafeguardEntity, SafeguardExclusionDTO, SafeguardRequestDTO, SafeguardResponseDTO, SafeguardRuleExecutionLogEntity, SchedulerRequest, SliceXControllerService, StrategyControllerService, StrategyDTO, StrategyInlineDTO, StrategyQuickEditDTO, StrategyRuleResponse, StrategyTemplateControllerService, StrategyTemplateDTO, StrategyTemplateResponse, TemplateVariablesDTO, UILoggerControllerService, UserPreferenceControllerService, VastCreative, VideoAttributes, VideoProperties, WhitelabelingEntity };
13368
13500
  //# sourceMappingURL=revxui-api-clients-ts.mjs.map