@revxui/api-clients-ts 0.10.342 → 0.10.344

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 (447) hide show
  1. package/README.md +2 -2
  2. package/api/adminController.service.d.ts +3 -11
  3. package/api/advertiserController.service.d.ts +3 -11
  4. package/api/api.d.ts +1 -3
  5. package/api/appSettingsController.service.d.ts +3 -50
  6. package/api/audienceController.service.d.ts +7 -44
  7. package/api/auditController.service.d.ts +9 -17
  8. package/api/bulkStrategyController.service.d.ts +3 -11
  9. package/api/cSSThemeController_.service.d.ts +3 -11
  10. package/api/campaignController.service.d.ts +3 -25
  11. package/api/catalogController.service.d.ts +3 -24
  12. package/api/clickDestinationController.service.d.ts +3 -11
  13. package/api/creativeController.service.d.ts +3 -11
  14. package/api/creativeSetsController.service.d.ts +7 -74
  15. package/api/creativeTemplateThemesController.service.d.ts +3 -11
  16. package/api/creativeTemplateVariablesController.service.d.ts +3 -11
  17. package/api/creativeTemplatesController.service.d.ts +3 -11
  18. package/api/dashboardController.service.d.ts +19 -27
  19. package/api/notificationsController.service.d.ts +3 -11
  20. package/api/pixelController.service.d.ts +3 -11
  21. package/api/reportingController.service.d.ts +3 -11
  22. package/api/sliceXController.service.d.ts +9 -45
  23. package/api/strategyController.service.d.ts +3 -11
  24. package/api/uILoggerController.service.d.ts +3 -11
  25. package/api/userPreferenceController.service.d.ts +3 -11
  26. package/api.module.d.ts +4 -0
  27. package/esm2020/api/adminController.service.mjs +185 -0
  28. package/esm2020/api/advertiserController.service.mjs +424 -0
  29. package/esm2020/api/api.mjs +48 -0
  30. package/esm2020/api/appSettingsController.service.mjs +164 -0
  31. package/{esm2015/api/audienceController.service.js → esm2020/api/audienceController.service.mjs} +22 -86
  32. package/esm2020/api/auditController.service.mjs +193 -0
  33. package/esm2020/api/bulkStrategyController.service.mjs +233 -0
  34. package/esm2020/api/cSSThemeController_.service.mjs +116 -0
  35. package/esm2020/api/campaignController.service.mjs +274 -0
  36. package/esm2020/api/catalogController.service.mjs +215 -0
  37. package/esm2020/api/clickDestinationController.service.mjs +240 -0
  38. package/esm2020/api/creativeController.service.mjs +455 -0
  39. package/esm2020/api/creativeSetsController.service.mjs +358 -0
  40. package/esm2020/api/creativeTemplateThemesController.service.mjs +193 -0
  41. package/esm2020/api/creativeTemplateVariablesController.service.mjs +85 -0
  42. package/esm2020/api/creativeTemplatesController.service.mjs +173 -0
  43. package/esm2020/api/dashboardController.service.mjs +627 -0
  44. package/esm2020/api/notificationsController.service.mjs +191 -0
  45. package/esm2020/api/pixelController.service.mjs +315 -0
  46. package/esm2020/api/reportingController.service.mjs +178 -0
  47. package/esm2020/api/sliceXController.service.mjs +179 -0
  48. package/esm2020/api/strategyController.service.mjs +627 -0
  49. package/esm2020/api/uILoggerController.service.mjs +100 -0
  50. package/esm2020/api/userPreferenceController.service.mjs +182 -0
  51. package/esm2020/api.module.mjs +111 -0
  52. package/{esm2015/model/advertiserLayoutVariables.js → esm2020/model/advertiserLayoutVariables.mjs} +1 -1
  53. package/esm2020/model/apiResponseObjectListMapintResponseMessage.mjs +2 -0
  54. package/esm2020/model/audienceDTO.mjs +23 -0
  55. package/esm2020/model/baseModelWithCreativeSetType.mjs +27 -0
  56. package/esm2020/model/campaignDTO.mjs +2 -0
  57. package/{esm2015/model/campaignESDTO.js → esm2020/model/campaignESDTO.mjs} +1 -1
  58. package/{esm2015/model/clickDestination.js → esm2020/model/clickDestination.mjs} +1 -1
  59. package/{esm2015/model/creative.js → esm2020/model/creative.mjs} +1 -1
  60. package/{esm2015/model/creativeDTO.js → esm2020/model/creativeDTO.mjs} +1 -1
  61. package/{esm2015/model/creativeFileForSet.js → esm2020/model/creativeFileForSet.mjs} +1 -1
  62. package/esm2020/model/creativeFiles.mjs +20 -0
  63. package/esm2020/model/creativeHtmlFileForSet.mjs +31 -0
  64. package/esm2020/model/creativePerformanceData.mjs +13 -0
  65. package/esm2020/model/creativeSetDashboardMetric.mjs +16 -0
  66. package/esm2020/model/creativeSetDetails.mjs +16 -0
  67. package/esm2020/model/creativeSetRequest.mjs +16 -0
  68. package/esm2020/model/creativeSetResponse.mjs +27 -0
  69. package/esm2020/model/duplicateCreativeSetResponse.mjs +27 -0
  70. package/esm2020/model/models.mjs +255 -0
  71. package/esm2020/model/strategyDTO.mjs +32 -0
  72. package/fesm2015/revxui-api-clients-ts.mjs +7267 -0
  73. package/fesm2015/revxui-api-clients-ts.mjs.map +1 -0
  74. package/{fesm2015/revxui-api-clients-ts.js → fesm2020/revxui-api-clients-ts.mjs} +417 -1022
  75. package/fesm2020/revxui-api-clients-ts.mjs.map +1 -0
  76. package/model/advertiserLayoutVariables.d.ts +0 -1
  77. package/model/{apiResponseObjectListDynamicVideoTemplate.d.ts → apiResponseObjectListMapintResponseMessage.d.ts} +3 -3
  78. package/model/audienceDTO.d.ts +15 -17
  79. package/model/baseModelWithCreativeSetType.d.ts +1 -3
  80. package/model/campaignDTO.d.ts +0 -4
  81. package/model/campaignESDTO.d.ts +0 -2
  82. package/model/clickDestination.d.ts +0 -1
  83. package/model/creative.d.ts +0 -3
  84. package/model/creativeCompactDTO.d.ts +14 -14
  85. package/model/creativeDTO.d.ts +16 -22
  86. package/model/creativeFileForSet.d.ts +14 -16
  87. package/model/creativeFiles.d.ts +14 -16
  88. package/model/creativeHtmlFileForSet.d.ts +14 -23
  89. package/model/creativePerformanceData.d.ts +0 -16
  90. package/model/creativeSetDashboardMetric.d.ts +11 -14
  91. package/model/creativeSetDetails.d.ts +11 -14
  92. package/model/creativeSetRequest.d.ts +11 -18
  93. package/model/creativeSetResponse.d.ts +11 -13
  94. package/model/duplicateCreativeSetResponse.d.ts +11 -13
  95. package/model/models.d.ts +1 -31
  96. package/model/reportingRequest.d.ts +7 -7
  97. package/model/strategyDTO.d.ts +5 -12
  98. package/model/videoAttributes.d.ts +7 -7
  99. package/model/videoProperties.d.ts +5 -5
  100. package/package.json +21 -9
  101. package/api/customerReportingController.service.d.ts +0 -40
  102. package/bundles/revxui-api-clients-ts.umd.js +0 -8391
  103. package/bundles/revxui-api-clients-ts.umd.js.map +0 -1
  104. package/bundles/revxui-api-clients-ts.umd.min.js +0 -16
  105. package/bundles/revxui-api-clients-ts.umd.min.js.map +0 -1
  106. package/esm2015/api/adminController.service.js +0 -178
  107. package/esm2015/api/advertiserController.service.js +0 -417
  108. package/esm2015/api/api.js +0 -50
  109. package/esm2015/api/appSettingsController.service.js +0 -246
  110. package/esm2015/api/auditController.service.js +0 -186
  111. package/esm2015/api/bulkStrategyController.service.js +0 -226
  112. package/esm2015/api/cSSThemeController_.service.js +0 -109
  113. package/esm2015/api/campaignController.service.js +0 -301
  114. package/esm2015/api/catalogController.service.js +0 -241
  115. package/esm2015/api/clickDestinationController.service.js +0 -233
  116. package/esm2015/api/creativeController.service.js +0 -448
  117. package/esm2015/api/creativeSetsController.service.js +0 -500
  118. package/esm2015/api/creativeTemplateThemesController.service.js +0 -186
  119. package/esm2015/api/creativeTemplateVariablesController.service.js +0 -78
  120. package/esm2015/api/creativeTemplatesController.service.js +0 -166
  121. package/esm2015/api/customerReportingController.service.js +0 -87
  122. package/esm2015/api/dashboardController.service.js +0 -620
  123. package/esm2015/api/notificationsController.service.js +0 -184
  124. package/esm2015/api/pixelController.service.js +0 -308
  125. package/esm2015/api/reportingController.service.js +0 -171
  126. package/esm2015/api/sliceXController.service.js +0 -251
  127. package/esm2015/api/strategyController.service.js +0 -620
  128. package/esm2015/api/uILoggerController.service.js +0 -93
  129. package/esm2015/api/userPreferenceController.service.js +0 -175
  130. package/esm2015/api.module.js +0 -82
  131. package/esm2015/model/activityLogsCreativeSetsBulkUpdateDTO.js +0 -11
  132. package/esm2015/model/advertiserDynamicVideoConfig.js +0 -2
  133. package/esm2015/model/apiListResponseActivityLogsCreativeSetsBulkUpdateDTO.js +0 -2
  134. package/esm2015/model/apiResponseObjectAdvertiserDynamicVideoConfig.js +0 -2
  135. package/esm2015/model/apiResponseObjectApiListResponseActivityLogsCreativeSetsBulkUpdateDTO.js +0 -2
  136. package/esm2015/model/apiResponseObjectBulkEditCreativeSetsResponse.js +0 -2
  137. package/esm2015/model/apiResponseObjectListBackfillAudienceQueryTemplateDTO.js +0 -2
  138. package/esm2015/model/apiResponseObjectListDynamicVideoTemplate.js +0 -2
  139. package/esm2015/model/audienceBackfillQueryTemplateRequest.js +0 -22
  140. package/esm2015/model/audienceBackfillRequest.js +0 -9
  141. package/esm2015/model/audienceDTO.js +0 -23
  142. package/esm2015/model/backfillAudienceQueryTemplateDTO.js +0 -13
  143. package/esm2015/model/baseModelWithCreativeSetType.js +0 -29
  144. package/esm2015/model/booleanEditField.js +0 -13
  145. package/esm2015/model/bulkEditCreativeSetsDTO.js +0 -2
  146. package/esm2015/model/bulkEditCreativeSetsListDTO.js +0 -2
  147. package/esm2015/model/bulkEditCreativeSetsResponse.js +0 -2
  148. package/esm2015/model/campaignDTO.js +0 -2
  149. package/esm2015/model/creativeFiles.js +0 -20
  150. package/esm2015/model/creativeHtmlFileForSet.js +0 -25
  151. package/esm2015/model/creativePerformanceData.js +0 -13
  152. package/esm2015/model/creativeSetDashboardMetric.js +0 -18
  153. package/esm2015/model/creativeSetDetails.js +0 -18
  154. package/esm2015/model/creativeSetRequest.js +0 -18
  155. package/esm2015/model/creativeSetRescheduleRequest.js +0 -13
  156. package/esm2015/model/creativeSetResponse.js +0 -29
  157. package/esm2015/model/customerReportingData.js +0 -13
  158. package/esm2015/model/customerReportingDataListResponse.js +0 -2
  159. package/esm2015/model/customerReportingRequest.js +0 -13
  160. package/esm2015/model/customerReportingResponse.js +0 -2
  161. package/esm2015/model/duplicateCreativeSetResponse.js +0 -29
  162. package/esm2015/model/dynamicVideoConfigDTO.js +0 -30
  163. package/esm2015/model/dynamicVideoDTO.js +0 -2
  164. package/esm2015/model/dynamicVideoTemplate.js +0 -2
  165. package/esm2015/model/failedDTO.js +0 -13
  166. package/esm2015/model/hybridAdMapping.js +0 -2
  167. package/esm2015/model/incrementalityReportDTO.js +0 -13
  168. package/esm2015/model/incrementalityReportResponse.js +0 -13
  169. package/esm2015/model/incrementalityResponse.js +0 -2
  170. package/esm2015/model/models.js +0 -285
  171. package/esm2015/model/nameAndTitleModel.js +0 -13
  172. package/esm2015/model/slicexRequestExtended.js +0 -2
  173. package/esm2015/model/strategyDTO.js +0 -37
  174. package/esm2015/model/strategyListEditField.js +0 -2
  175. package/fesm2015/revxui-api-clients-ts.js.map +0 -1
  176. package/model/activityLogsCreativeSetsBulkUpdateDTO.d.ts +0 -33
  177. package/model/advertiserDynamicVideoConfig.d.ts +0 -19
  178. package/model/apiListResponseActivityLogsCreativeSetsBulkUpdateDTO.d.ts +0 -16
  179. package/model/apiResponseObjectAdvertiserDynamicVideoConfig.d.ts +0 -17
  180. package/model/apiResponseObjectApiListResponseActivityLogsCreativeSetsBulkUpdateDTO.d.ts +0 -17
  181. package/model/apiResponseObjectBulkEditCreativeSetsResponse.d.ts +0 -17
  182. package/model/apiResponseObjectListBackfillAudienceQueryTemplateDTO.d.ts +0 -17
  183. package/model/audienceBackfillQueryTemplateRequest.d.ts +0 -26
  184. package/model/audienceBackfillRequest.d.ts +0 -25
  185. package/model/backfillAudienceQueryTemplateDTO.d.ts +0 -17
  186. package/model/booleanEditField.d.ts +0 -15
  187. package/model/bulkEditCreativeSetsDTO.d.ts +0 -25
  188. package/model/bulkEditCreativeSetsListDTO.d.ts +0 -17
  189. package/model/bulkEditCreativeSetsResponse.d.ts +0 -21
  190. package/model/creativeSetRescheduleRequest.d.ts +0 -15
  191. package/model/customerReportingData.d.ts +0 -20
  192. package/model/customerReportingDataListResponse.d.ts +0 -15
  193. package/model/customerReportingRequest.d.ts +0 -18
  194. package/model/customerReportingResponse.d.ts +0 -17
  195. package/model/dynamicVideoConfigDTO.d.ts +0 -34
  196. package/model/dynamicVideoDTO.d.ts +0 -16
  197. package/model/dynamicVideoTemplate.d.ts +0 -18
  198. package/model/failedDTO.d.ts +0 -16
  199. package/model/hybridAdMapping.d.ts +0 -17
  200. package/model/incrementalityReportDTO.d.ts +0 -17
  201. package/model/incrementalityReportResponse.d.ts +0 -24
  202. package/model/incrementalityResponse.d.ts +0 -17
  203. package/model/nameAndTitleModel.d.ts +0 -15
  204. package/model/slicexRequestExtended.d.ts +0 -20
  205. package/model/strategyListEditField.d.ts +0 -16
  206. package/revxui-api-clients-ts.d.ts +0 -4
  207. package/revxui-api-clients-ts.metadata.json +0 -1
  208. /package/{esm2015/configuration.js → esm2020/configuration.mjs} +0 -0
  209. /package/{esm2015/encoder.js → esm2020/encoder.mjs} +0 -0
  210. /package/{esm2015/index.js → esm2020/index.mjs} +0 -0
  211. /package/{esm2015/model/aBTestDTO.js → esm2020/model/aBTestDTO.mjs} +0 -0
  212. /package/{esm2015/model/activityLog.js → esm2020/model/activityLog.mjs} +0 -0
  213. /package/{esm2015/model/activityLogsStrategyBulkUpdateDTO.js → esm2020/model/activityLogsStrategyBulkUpdateDTO.mjs} +0 -0
  214. /package/{esm2015/model/advertiser.js → esm2020/model/advertiser.mjs} +0 -0
  215. /package/{esm2015/model/advertiserDynamicDetails.js → esm2020/model/advertiserDynamicDetails.mjs} +0 -0
  216. /package/{esm2015/model/advertiserPojo.js → esm2020/model/advertiserPojo.mjs} +0 -0
  217. /package/{esm2015/model/advertiserSettings.js → esm2020/model/advertiserSettings.mjs} +0 -0
  218. /package/{esm2015/model/ageGroup.js → esm2020/model/ageGroup.mjs} +0 -0
  219. /package/{esm2015/model/apiListResponseABTestDTO.js → esm2020/model/apiListResponseABTestDTO.mjs} +0 -0
  220. /package/{esm2015/model/apiListResponseActivityLog.js → esm2020/model/apiListResponseActivityLog.mjs} +0 -0
  221. /package/{esm2015/model/apiListResponseActivityLogsStrategyBulkUpdateDTO.js → esm2020/model/apiListResponseActivityLogsStrategyBulkUpdateDTO.mjs} +0 -0
  222. /package/{esm2015/model/apiListResponseAudiencePerformanceDTO.js → esm2020/model/apiListResponseAudiencePerformanceDTO.mjs} +0 -0
  223. /package/{esm2015/model/apiListResponseCatalogFeed.js → esm2020/model/apiListResponseCatalogFeed.mjs} +0 -0
  224. /package/{esm2015/model/apiListResponseClickDestination.js → esm2020/model/apiListResponseClickDestination.mjs} +0 -0
  225. /package/{esm2015/model/apiListResponseCreativeCompactDTO.js → esm2020/model/apiListResponseCreativeCompactDTO.mjs} +0 -0
  226. /package/{esm2015/model/apiListResponseCreativeDTO.js → esm2020/model/apiListResponseCreativeDTO.mjs} +0 -0
  227. /package/{esm2015/model/apiListResponseCreativeSetDashboardMetric.js → esm2020/model/apiListResponseCreativeSetDashboardMetric.mjs} +0 -0
  228. /package/{esm2015/model/apiListResponseCreativeTemplateDTO.js → esm2020/model/apiListResponseCreativeTemplateDTO.mjs} +0 -0
  229. /package/{esm2015/model/apiListResponseMacro.js → esm2020/model/apiListResponseMacro.mjs} +0 -0
  230. /package/{esm2015/model/apiListResponsePixel.js → esm2020/model/apiListResponsePixel.mjs} +0 -0
  231. /package/{esm2015/model/apiListResponseVariablesMappingDTO.js → esm2020/model/apiListResponseVariablesMappingDTO.mjs} +0 -0
  232. /package/{esm2015/model/apiResponseObjectABTestDTO.js → esm2020/model/apiResponseObjectABTestDTO.mjs} +0 -0
  233. /package/{esm2015/model/apiResponseObjectAdvertiserDynamicDetails.js → esm2020/model/apiResponseObjectAdvertiserDynamicDetails.mjs} +0 -0
  234. /package/{esm2015/model/apiResponseObjectAdvertiserPojo.js → esm2020/model/apiResponseObjectAdvertiserPojo.mjs} +0 -0
  235. /package/{esm2015/model/apiResponseObjectAdvertiserSettings.js → esm2020/model/apiResponseObjectAdvertiserSettings.mjs} +0 -0
  236. /package/{esm2015/model/apiResponseObjectApiListResponseActivityLogsStrategyBulkUpdateDTO.js → esm2020/model/apiResponseObjectApiListResponseActivityLogsStrategyBulkUpdateDTO.mjs} +0 -0
  237. /package/{esm2015/model/apiResponseObjectApiListResponseAudiencePerformanceDTO.js → esm2020/model/apiResponseObjectApiListResponseAudiencePerformanceDTO.mjs} +0 -0
  238. /package/{esm2015/model/apiResponseObjectApiListResponseCatalogFeed.js → esm2020/model/apiResponseObjectApiListResponseCatalogFeed.mjs} +0 -0
  239. /package/{esm2015/model/apiResponseObjectApiListResponseClickDestination.js → esm2020/model/apiResponseObjectApiListResponseClickDestination.mjs} +0 -0
  240. /package/{esm2015/model/apiResponseObjectApiListResponseCreativeCompactDTO.js → esm2020/model/apiResponseObjectApiListResponseCreativeCompactDTO.mjs} +0 -0
  241. /package/{esm2015/model/apiResponseObjectApiListResponseCreativeDTO.js → esm2020/model/apiResponseObjectApiListResponseCreativeDTO.mjs} +0 -0
  242. /package/{esm2015/model/apiResponseObjectApiListResponseCreativeSetDashboardMetric.js → esm2020/model/apiResponseObjectApiListResponseCreativeSetDashboardMetric.mjs} +0 -0
  243. /package/{esm2015/model/apiResponseObjectApiListResponseCreativeTemplateDTO.js → esm2020/model/apiResponseObjectApiListResponseCreativeTemplateDTO.mjs} +0 -0
  244. /package/{esm2015/model/apiResponseObjectApiListResponsePixel.js → esm2020/model/apiResponseObjectApiListResponsePixel.mjs} +0 -0
  245. /package/{esm2015/model/apiResponseObjectApiListResponseVariablesMappingDTO.js → esm2020/model/apiResponseObjectApiListResponseVariablesMappingDTO.mjs} +0 -0
  246. /package/{esm2015/model/apiResponseObjectAudienceAccessDTO.js → esm2020/model/apiResponseObjectAudienceAccessDTO.mjs} +0 -0
  247. /package/{esm2015/model/apiResponseObjectAudienceDTO.js → esm2020/model/apiResponseObjectAudienceDTO.mjs} +0 -0
  248. /package/{esm2015/model/apiResponseObjectBaseModel.js → esm2020/model/apiResponseObjectBaseModel.mjs} +0 -0
  249. /package/{esm2015/model/apiResponseObjectBulkEditStrategiesResponse.js → esm2020/model/apiResponseObjectBulkEditStrategiesResponse.mjs} +0 -0
  250. /package/{esm2015/model/apiResponseObjectBulkstrategiesUpdateResponse.js → esm2020/model/apiResponseObjectBulkstrategiesUpdateResponse.mjs} +0 -0
  251. /package/{esm2015/model/apiResponseObjectCampaignDTO.js → esm2020/model/apiResponseObjectCampaignDTO.mjs} +0 -0
  252. /package/{esm2015/model/apiResponseObjectCatalogFeed.js → esm2020/model/apiResponseObjectCatalogFeed.mjs} +0 -0
  253. /package/{esm2015/model/apiResponseObjectChartDashboardResponse.js → esm2020/model/apiResponseObjectChartDashboardResponse.mjs} +0 -0
  254. /package/{esm2015/model/apiResponseObjectClickDestination.js → esm2020/model/apiResponseObjectClickDestination.mjs} +0 -0
  255. /package/{esm2015/model/apiResponseObjectClickDestinationAutomationUrls.js → esm2020/model/apiResponseObjectClickDestinationAutomationUrls.mjs} +0 -0
  256. /package/{esm2015/model/apiResponseObjectCreativeDTO.js → esm2020/model/apiResponseObjectCreativeDTO.mjs} +0 -0
  257. /package/{esm2015/model/apiResponseObjectCreativePerformanceData.js → esm2020/model/apiResponseObjectCreativePerformanceData.mjs} +0 -0
  258. /package/{esm2015/model/apiResponseObjectCreativeSetDetails.js → esm2020/model/apiResponseObjectCreativeSetDetails.mjs} +0 -0
  259. /package/{esm2015/model/apiResponseObjectCreativeSetResponse.js → esm2020/model/apiResponseObjectCreativeSetResponse.mjs} +0 -0
  260. /package/{esm2015/model/apiResponseObjectCreativeTemplatesMetadataDTO.js → esm2020/model/apiResponseObjectCreativeTemplatesMetadataDTO.mjs} +0 -0
  261. /package/{esm2015/model/apiResponseObjectDashboardMetrics.js → esm2020/model/apiResponseObjectDashboardMetrics.mjs} +0 -0
  262. /package/{esm2015/model/apiResponseObjectDashboardResponse.js → esm2020/model/apiResponseObjectDashboardResponse.mjs} +0 -0
  263. /package/{esm2015/model/apiResponseObjectDictionaryResponse.js → esm2020/model/apiResponseObjectDictionaryResponse.mjs} +0 -0
  264. /package/{esm2015/model/apiResponseObjectDmpAudienceDTO.js → esm2020/model/apiResponseObjectDmpAudienceDTO.mjs} +0 -0
  265. /package/{esm2015/model/apiResponseObjectDuplicateCreativeSetResponse.js → esm2020/model/apiResponseObjectDuplicateCreativeSetResponse.mjs} +0 -0
  266. /package/{esm2015/model/apiResponseObjectEResponseobject.js → esm2020/model/apiResponseObjectEResponseobject.mjs} +0 -0
  267. /package/{esm2015/model/apiResponseObjectEligibleUsersResponse.js → esm2020/model/apiResponseObjectEligibleUsersResponse.mjs} +0 -0
  268. /package/{esm2015/model/apiResponseObjectFileDownloadResponse.js → esm2020/model/apiResponseObjectFileDownloadResponse.mjs} +0 -0
  269. /package/{esm2015/model/apiResponseObjectGeoListDTO.js → esm2020/model/apiResponseObjectGeoListDTO.mjs} +0 -0
  270. /package/{esm2015/model/apiResponseObjectListAppSettingsDTO.js → esm2020/model/apiResponseObjectListAppSettingsDTO.mjs} +0 -0
  271. /package/{esm2015/model/apiResponseObjectListAudienceDTO.js → esm2020/model/apiResponseObjectListAudienceDTO.mjs} +0 -0
  272. /package/{esm2015/model/apiResponseObjectListAuditDetails.js → esm2020/model/apiResponseObjectListAuditDetails.mjs} +0 -0
  273. /package/{esm2015/model/apiResponseObjectListAuditMarker.js → esm2020/model/apiResponseObjectListAuditMarker.mjs} +0 -0
  274. /package/{esm2015/model/apiResponseObjectListBaseModel.js → esm2020/model/apiResponseObjectListBaseModel.mjs} +0 -0
  275. /package/{esm2015/model/apiResponseObjectListBulkstrategiesValidationResponse.js → esm2020/model/apiResponseObjectListBulkstrategiesValidationResponse.mjs} +0 -0
  276. /package/{esm2015/model/apiResponseObjectListCampaignDTO.js → esm2020/model/apiResponseObjectListCampaignDTO.mjs} +0 -0
  277. /package/{esm2015/model/apiResponseObjectListCreativeFiles.js → esm2020/model/apiResponseObjectListCreativeFiles.mjs} +0 -0
  278. /package/{esm2015/model/apiResponseObjectListMenuCrubResponse.js → esm2020/model/apiResponseObjectListMenuCrubResponse.mjs} +0 -0
  279. /package/{esm2015/model/apiResponseObjectListTemplateThemeDTO.js → esm2020/model/apiResponseObjectListTemplateThemeDTO.mjs} +0 -0
  280. /package/{esm2015/model/apiResponseObjectListTemplateVariablesDTO.js → esm2020/model/apiResponseObjectListTemplateVariablesDTO.mjs} +0 -0
  281. /package/{esm2015/model/apiResponseObjectListUserPreferenceDTO.js → esm2020/model/apiResponseObjectListUserPreferenceDTO.mjs} +0 -0
  282. /package/{esm2015/model/apiResponseObjectMapintResponseMessage.js → esm2020/model/apiResponseObjectMapintResponseMessage.mjs} +0 -0
  283. /package/{esm2015/model/apiResponseObjectMaplongResponseMessage.js → esm2020/model/apiResponseObjectMaplongResponseMessage.mjs} +0 -0
  284. /package/{esm2015/model/apiResponseObjectMenuCrubResponse.js → esm2020/model/apiResponseObjectMenuCrubResponse.mjs} +0 -0
  285. /package/{esm2015/model/apiResponseObjectMetaRulesDto.js → esm2020/model/apiResponseObjectMetaRulesDto.mjs} +0 -0
  286. /package/{esm2015/model/apiResponseObjectParentBasedObject.js → esm2020/model/apiResponseObjectParentBasedObject.mjs} +0 -0
  287. /package/{esm2015/model/apiResponseObjectPixel.js → esm2020/model/apiResponseObjectPixel.mjs} +0 -0
  288. /package/{esm2015/model/apiResponseObjectReportingResponse.js → esm2020/model/apiResponseObjectReportingResponse.mjs} +0 -0
  289. /package/{esm2015/model/apiResponseObjectResponseMessage.js → esm2020/model/apiResponseObjectResponseMessage.mjs} +0 -0
  290. /package/{esm2015/model/apiResponseObjectSiteListDTO.js → esm2020/model/apiResponseObjectSiteListDTO.mjs} +0 -0
  291. /package/{esm2015/model/apiResponseObjectSkadTargetPrivileges.js → esm2020/model/apiResponseObjectSkadTargetPrivileges.mjs} +0 -0
  292. /package/{esm2015/model/apiResponseObjectSlicexChartResponse.js → esm2020/model/apiResponseObjectSlicexChartResponse.mjs} +0 -0
  293. /package/{esm2015/model/apiResponseObjectSlicexListResponse.js → esm2020/model/apiResponseObjectSlicexListResponse.mjs} +0 -0
  294. /package/{esm2015/model/apiResponseObjectStrategyCreativeAssociationResponseDTO.js → esm2020/model/apiResponseObjectStrategyCreativeAssociationResponseDTO.mjs} +0 -0
  295. /package/{esm2015/model/apiResponseObjectStrategyDTO.js → esm2020/model/apiResponseObjectStrategyDTO.mjs} +0 -0
  296. /package/{esm2015/model/apiResponseObjectStrategyQuickEditDTO.js → esm2020/model/apiResponseObjectStrategyQuickEditDTO.mjs} +0 -0
  297. /package/{esm2015/model/apiResponseObjectTag.js → esm2020/model/apiResponseObjectTag.mjs} +0 -0
  298. /package/{esm2015/model/apiResponseObjectTemplateThemeDTO.js → esm2020/model/apiResponseObjectTemplateThemeDTO.mjs} +0 -0
  299. /package/{esm2015/model/apiResponseObjectVoid.js → esm2020/model/apiResponseObjectVoid.mjs} +0 -0
  300. /package/{esm2015/model/apiResponseObjectWhitelabelingEntity.js → esm2020/model/apiResponseObjectWhitelabelingEntity.mjs} +0 -0
  301. /package/{esm2015/model/apiResponseObjectboolean.js → esm2020/model/apiResponseObjectboolean.mjs} +0 -0
  302. /package/{esm2015/model/apiResponseObjectlong.js → esm2020/model/apiResponseObjectlong.mjs} +0 -0
  303. /package/{esm2015/model/apiResponseObjectstring.js → esm2020/model/apiResponseObjectstring.mjs} +0 -0
  304. /package/{esm2015/model/appSettingsDTO.js → esm2020/model/appSettingsDTO.mjs} +0 -0
  305. /package/{esm2015/model/appSettingsPropertyDTO.js → esm2020/model/appSettingsPropertyDTO.mjs} +0 -0
  306. /package/{esm2015/model/auctionTypeEditField.js → esm2020/model/auctionTypeEditField.mjs} +0 -0
  307. /package/{esm2015/model/audienceAccessDTO.js → esm2020/model/audienceAccessDTO.mjs} +0 -0
  308. /package/{esm2015/model/audienceBackFilledStats.js → esm2020/model/audienceBackFilledStats.mjs} +0 -0
  309. /package/{esm2015/model/audienceESDTO.js → esm2020/model/audienceESDTO.mjs} +0 -0
  310. /package/{esm2015/model/audiencePerformanceDTO.js → esm2020/model/audiencePerformanceDTO.mjs} +0 -0
  311. /package/{esm2015/model/audienceStrDTO.js → esm2020/model/audienceStrDTO.mjs} +0 -0
  312. /package/{esm2015/model/audienceStrEditField.js → esm2020/model/audienceStrEditField.mjs} +0 -0
  313. /package/{esm2015/model/auditChange.js → esm2020/model/auditChange.mjs} +0 -0
  314. /package/{esm2015/model/auditDetails.js → esm2020/model/auditDetails.mjs} +0 -0
  315. /package/{esm2015/model/auditMarker.js → esm2020/model/auditMarker.mjs} +0 -0
  316. /package/{esm2015/model/bIgIntegerEditFiled.js → esm2020/model/bIgIntegerEditFiled.mjs} +0 -0
  317. /package/{esm2015/model/bannerAdSuppDimensionsDTO.js → esm2020/model/bannerAdSuppDimensionsDTO.mjs} +0 -0
  318. /package/{esm2015/model/baseModel.js → esm2020/model/baseModel.mjs} +0 -0
  319. /package/{esm2015/model/baseModelEditField.js → esm2020/model/baseModelEditField.mjs} +0 -0
  320. /package/{esm2015/model/bigDecimalEditField.js → esm2020/model/bigDecimalEditField.mjs} +0 -0
  321. /package/{esm2015/model/bulkEditStrategiesDTO.js → esm2020/model/bulkEditStrategiesDTO.mjs} +0 -0
  322. /package/{esm2015/model/bulkEditStrategiesResponse.js → esm2020/model/bulkEditStrategiesResponse.mjs} +0 -0
  323. /package/{esm2015/model/bulkEditStrategyListDTO.js → esm2020/model/bulkEditStrategyListDTO.mjs} +0 -0
  324. /package/{esm2015/model/bulkstrategiesRequest.js → esm2020/model/bulkstrategiesRequest.mjs} +0 -0
  325. /package/{esm2015/model/bulkstrategiesUpdateResponse.js → esm2020/model/bulkstrategiesUpdateResponse.mjs} +0 -0
  326. /package/{esm2015/model/bulkstrategiesValidationRequest.js → esm2020/model/bulkstrategiesValidationRequest.mjs} +0 -0
  327. /package/{esm2015/model/bulkstrategiesValidationResponse.js → esm2020/model/bulkstrategiesValidationResponse.mjs} +0 -0
  328. /package/{esm2015/model/cSSThemeEntity.js → esm2020/model/cSSThemeEntity.mjs} +0 -0
  329. /package/{esm2015/model/catalogFeed.js → esm2020/model/catalogFeed.mjs} +0 -0
  330. /package/{esm2015/model/chartDashboardResponse.js → esm2020/model/chartDashboardResponse.mjs} +0 -0
  331. /package/{esm2015/model/clickDestinationAutomationUrls.js → esm2020/model/clickDestinationAutomationUrls.mjs} +0 -0
  332. /package/{esm2015/model/creativeCompactDTO.js → esm2020/model/creativeCompactDTO.mjs} +0 -0
  333. /package/{esm2015/model/creativeDetails.js → esm2020/model/creativeDetails.mjs} +0 -0
  334. /package/{esm2015/model/creativeHtmlMockupDTO.js → esm2020/model/creativeHtmlMockupDTO.mjs} +0 -0
  335. /package/{esm2015/model/creativeListEditField.js → esm2020/model/creativeListEditField.mjs} +0 -0
  336. /package/{esm2015/model/creativeMockUpsDTO.js → esm2020/model/creativeMockUpsDTO.mjs} +0 -0
  337. /package/{esm2015/model/creativeSetListEditField.js → esm2020/model/creativeSetListEditField.mjs} +0 -0
  338. /package/{esm2015/model/creativeStrategyAssociationStatus.js → esm2020/model/creativeStrategyAssociationStatus.mjs} +0 -0
  339. /package/{esm2015/model/creativeTemplateDTO.js → esm2020/model/creativeTemplateDTO.mjs} +0 -0
  340. /package/{esm2015/model/creativeTemplatesMetadataDTO.js → esm2020/model/creativeTemplatesMetadataDTO.mjs} +0 -0
  341. /package/{esm2015/model/creativeThirdPartyAdTag.js → esm2020/model/creativeThirdPartyAdTag.mjs} +0 -0
  342. /package/{esm2015/model/dashboardData.js → esm2020/model/dashboardData.mjs} +0 -0
  343. /package/{esm2015/model/dashboardFilters.js → esm2020/model/dashboardFilters.mjs} +0 -0
  344. /package/{esm2015/model/dashboardMetrics.js → esm2020/model/dashboardMetrics.mjs} +0 -0
  345. /package/{esm2015/model/dashboardRequest.js → esm2020/model/dashboardRequest.mjs} +0 -0
  346. /package/{esm2015/model/dashboardResponse.js → esm2020/model/dashboardResponse.mjs} +0 -0
  347. /package/{esm2015/model/day.js → esm2020/model/day.mjs} +0 -0
  348. /package/{esm2015/model/dayPart.js → esm2020/model/dayPart.mjs} +0 -0
  349. /package/{esm2015/model/dayPartEditField.js → esm2020/model/dayPartEditField.mjs} +0 -0
  350. /package/{esm2015/model/dcoAttributesDTO.js → esm2020/model/dcoAttributesDTO.mjs} +0 -0
  351. /package/{esm2015/model/dealCategoryDTO.js → esm2020/model/dealCategoryDTO.mjs} +0 -0
  352. /package/{esm2015/model/dealCategoryEditField.js → esm2020/model/dealCategoryEditField.mjs} +0 -0
  353. /package/{esm2015/model/dictionaryResponse.js → esm2020/model/dictionaryResponse.mjs} +0 -0
  354. /package/{esm2015/model/dmpAudience.js → esm2020/model/dmpAudience.mjs} +0 -0
  355. /package/{esm2015/model/dmpAudienceCriteria.js → esm2020/model/dmpAudienceCriteria.mjs} +0 -0
  356. /package/{esm2015/model/dmpAudienceDTO.js → esm2020/model/dmpAudienceDTO.mjs} +0 -0
  357. /package/{esm2015/model/duplicateCreativeSetsRequestDTO.js → esm2020/model/duplicateCreativeSetsRequestDTO.mjs} +0 -0
  358. /package/{esm2015/model/duplicateStrategyRequestDTO.js → esm2020/model/duplicateStrategyRequestDTO.mjs} +0 -0
  359. /package/{esm2015/model/duration.js → esm2020/model/duration.mjs} +0 -0
  360. /package/{esm2015/model/durationModel.js → esm2020/model/durationModel.mjs} +0 -0
  361. /package/{esm2015/model/eResponseobject.js → esm2020/model/eResponseobject.mjs} +0 -0
  362. /package/{esm2015/model/eligibleUsersRequest.js → esm2020/model/eligibleUsersRequest.mjs} +0 -0
  363. /package/{esm2015/model/eligibleUsersResponse.js → esm2020/model/eligibleUsersResponse.mjs} +0 -0
  364. /package/{esm2015/model/endCards.js → esm2020/model/endCards.mjs} +0 -0
  365. /package/{esm2015/model/extendedBaseModel.js → esm2020/model/extendedBaseModel.mjs} +0 -0
  366. /package/{esm2015/model/extendedTargetingObject.js → esm2020/model/extendedTargetingObject.mjs} +0 -0
  367. /package/{esm2015/model/failedStrategyDTO.js → esm2020/model/failedStrategyDTO.mjs} +0 -0
  368. /package/{esm2015/model/failedStrategyFieldsDTO.js → esm2020/model/failedStrategyFieldsDTO.mjs} +0 -0
  369. /package/{esm2015/model/fcapDetails.js → esm2020/model/fcapDetails.mjs} +0 -0
  370. /package/{esm2015/model/fcapEditField.js → esm2020/model/fcapEditField.mjs} +0 -0
  371. /package/{esm2015/model/fileDownloadResponse.js → esm2020/model/fileDownloadResponse.mjs} +0 -0
  372. /package/{esm2015/model/filterModel.js → esm2020/model/filterModel.mjs} +0 -0
  373. /package/{esm2015/model/geoListDTO.js → esm2020/model/geoListDTO.mjs} +0 -0
  374. /package/{esm2015/model/geoListRequest.js → esm2020/model/geoListRequest.mjs} +0 -0
  375. /package/{esm2015/model/integerEditField.js → esm2020/model/integerEditField.mjs} +0 -0
  376. /package/{esm2015/model/macro.js → esm2020/model/macro.mjs} +0 -0
  377. /package/{esm2015/model/mapintResponseMessage.js → esm2020/model/mapintResponseMessage.mjs} +0 -0
  378. /package/{esm2015/model/maplongResponseMessage.js → esm2020/model/maplongResponseMessage.mjs} +0 -0
  379. /package/{esm2015/model/menuCrubResponse.js → esm2020/model/menuCrubResponse.mjs} +0 -0
  380. /package/{esm2015/model/metaRuleDto.js → esm2020/model/metaRuleDto.mjs} +0 -0
  381. /package/{esm2015/model/metaRulesDto.js → esm2020/model/metaRulesDto.mjs} +0 -0
  382. /package/{esm2015/model/modelError.js → esm2020/model/modelError.mjs} +0 -0
  383. /package/{esm2015/model/nativeAssetPojo.js → esm2020/model/nativeAssetPojo.mjs} +0 -0
  384. /package/{esm2015/model/notificationListResponseNotificationResponse.js → esm2020/model/notificationListResponseNotificationResponse.mjs} +0 -0
  385. /package/{esm2015/model/notificationResponse.js → esm2020/model/notificationResponse.mjs} +0 -0
  386. /package/{esm2015/model/parentBasedObject.js → esm2020/model/parentBasedObject.mjs} +0 -0
  387. /package/{esm2015/model/pixel.js → esm2020/model/pixel.mjs} +0 -0
  388. /package/{esm2015/model/pixelDataFileDTO.js → esm2020/model/pixelDataFileDTO.mjs} +0 -0
  389. /package/{esm2015/model/pixelDataScheduleDTO.js → esm2020/model/pixelDataScheduleDTO.mjs} +0 -0
  390. /package/{esm2015/model/pixelRemoteConfigDTO.js → esm2020/model/pixelRemoteConfigDTO.mjs} +0 -0
  391. /package/{esm2015/model/platformAudienceDTO.js → esm2020/model/platformAudienceDTO.mjs} +0 -0
  392. /package/{esm2015/model/rTBAggregators.js → esm2020/model/rTBAggregators.mjs} +0 -0
  393. /package/{esm2015/model/rTBAggregatorsEditField.js → esm2020/model/rTBAggregatorsEditField.mjs} +0 -0
  394. /package/{esm2015/model/rTBSites.js → esm2020/model/rTBSites.mjs} +0 -0
  395. /package/{esm2015/model/rTBSitesEditField.js → esm2020/model/rTBSitesEditField.mjs} +0 -0
  396. /package/{esm2015/model/remoteFileDTO.js → esm2020/model/remoteFileDTO.mjs} +0 -0
  397. /package/{esm2015/model/reportProperty.js → esm2020/model/reportProperty.mjs} +0 -0
  398. /package/{esm2015/model/reportingRequest.js → esm2020/model/reportingRequest.mjs} +0 -0
  399. /package/{esm2015/model/reportingResponse.js → esm2020/model/reportingResponse.mjs} +0 -0
  400. /package/{esm2015/model/responseMessage.js → esm2020/model/responseMessage.mjs} +0 -0
  401. /package/{esm2015/model/ruleComponentDTO.js → esm2020/model/ruleComponentDTO.mjs} +0 -0
  402. /package/{esm2015/model/ruleDTO.js → esm2020/model/ruleDTO.mjs} +0 -0
  403. /package/{esm2015/model/ruleOperatorDto.js → esm2020/model/ruleOperatorDto.mjs} +0 -0
  404. /package/{esm2015/model/ruleValueDto.js → esm2020/model/ruleValueDto.mjs} +0 -0
  405. /package/{esm2015/model/searchRequest.js → esm2020/model/searchRequest.mjs} +0 -0
  406. /package/{esm2015/model/siteListDTO.js → esm2020/model/siteListDTO.mjs} +0 -0
  407. /package/{esm2015/model/siteListRequest.js → esm2020/model/siteListRequest.mjs} +0 -0
  408. /package/{esm2015/model/size.js → esm2020/model/size.mjs} +0 -0
  409. /package/{esm2015/model/skadTargetPrivileges.js → esm2020/model/skadTargetPrivileges.mjs} +0 -0
  410. /package/{esm2015/model/slicexChartResponse.js → esm2020/model/slicexChartResponse.mjs} +0 -0
  411. /package/{esm2015/model/slicexData.js → esm2020/model/slicexData.mjs} +0 -0
  412. /package/{esm2015/model/slicexGridData.js → esm2020/model/slicexGridData.mjs} +0 -0
  413. /package/{esm2015/model/slicexListResponse.js → esm2020/model/slicexListResponse.mjs} +0 -0
  414. /package/{esm2015/model/slicexRequest.js → esm2020/model/slicexRequest.mjs} +0 -0
  415. /package/{esm2015/model/sortModel.js → esm2020/model/sortModel.mjs} +0 -0
  416. /package/{esm2015/model/statusBaseObject.js → esm2020/model/statusBaseObject.mjs} +0 -0
  417. /package/{esm2015/model/strategy.js → esm2020/model/strategy.mjs} +0 -0
  418. /package/{esm2015/model/strategyCreativeAssociationRequestDTO.js → esm2020/model/strategyCreativeAssociationRequestDTO.mjs} +0 -0
  419. /package/{esm2015/model/strategyCreativeAssociationResponseDTO.js → esm2020/model/strategyCreativeAssociationResponseDTO.mjs} +0 -0
  420. /package/{esm2015/model/strategyQuickEditDTO.js → esm2020/model/strategyQuickEditDTO.mjs} +0 -0
  421. /package/{esm2015/model/strategyUpdateResponse.js → esm2020/model/strategyUpdateResponse.mjs} +0 -0
  422. /package/{esm2015/model/stringEditField.js → esm2020/model/stringEditField.mjs} +0 -0
  423. /package/{esm2015/model/tag.js → esm2020/model/tag.mjs} +0 -0
  424. /package/{esm2015/model/targetAppCategories.js → esm2020/model/targetAppCategories.mjs} +0 -0
  425. /package/{esm2015/model/targetBrowsers.js → esm2020/model/targetBrowsers.mjs} +0 -0
  426. /package/{esm2015/model/targetDeviceTypes.js → esm2020/model/targetDeviceTypes.mjs} +0 -0
  427. /package/{esm2015/model/targetGeoDTO.js → esm2020/model/targetGeoDTO.mjs} +0 -0
  428. /package/{esm2015/model/targetGeoEditField.js → esm2020/model/targetGeoEditField.mjs} +0 -0
  429. /package/{esm2015/model/targetMobileDeviceBrands.js → esm2020/model/targetMobileDeviceBrands.mjs} +0 -0
  430. /package/{esm2015/model/targetMobileDeviceModels.js → esm2020/model/targetMobileDeviceModels.mjs} +0 -0
  431. /package/{esm2015/model/targetMobileDevices.js → esm2020/model/targetMobileDevices.mjs} +0 -0
  432. /package/{esm2015/model/targetOperatingSystem.js → esm2020/model/targetOperatingSystem.mjs} +0 -0
  433. /package/{esm2015/model/targetOperatingSystemEditField.js → esm2020/model/targetOperatingSystemEditField.mjs} +0 -0
  434. /package/{esm2015/model/targetingObject.js → esm2020/model/targetingObject.mjs} +0 -0
  435. /package/{esm2015/model/templateThemeDTO.js → esm2020/model/templateThemeDTO.mjs} +0 -0
  436. /package/{esm2015/model/templateVariablesDTO.js → esm2020/model/templateVariablesDTO.mjs} +0 -0
  437. /package/{esm2015/model/timeZoneDTO.js → esm2020/model/timeZoneDTO.mjs} +0 -0
  438. /package/{esm2015/model/userPreferenceCategory.js → esm2020/model/userPreferenceCategory.mjs} +0 -0
  439. /package/{esm2015/model/userPreferenceDTO.js → esm2020/model/userPreferenceDTO.mjs} +0 -0
  440. /package/{esm2015/model/variablesMappingDTO.js → esm2020/model/variablesMappingDTO.mjs} +0 -0
  441. /package/{esm2015/model/vastCreative.js → esm2020/model/vastCreative.mjs} +0 -0
  442. /package/{esm2015/model/videoAttributes.js → esm2020/model/videoAttributes.mjs} +0 -0
  443. /package/{esm2015/model/videoProperties.js → esm2020/model/videoProperties.mjs} +0 -0
  444. /package/{esm2015/model/videoTargeting.js → esm2020/model/videoTargeting.mjs} +0 -0
  445. /package/{esm2015/model/whitelabelingEntity.js → esm2020/model/whitelabelingEntity.mjs} +0 -0
  446. /package/{esm2015/revxui-api-clients-ts.js → esm2020/revxui-api-clients-ts.mjs} +0 -0
  447. /package/{esm2015/variables.js → esm2020/variables.mjs} +0 -0
@@ -1,5 +1,7 @@
1
+ import * as i0 from '@angular/core';
1
2
  import { InjectionToken, Injectable, Optional, Inject, NgModule, SkipSelf } from '@angular/core';
2
- import { HttpHeaders, HttpClient, HttpUrlEncodingCodec, HttpParams } from '@angular/common/http';
3
+ import * as i1 from '@angular/common/http';
4
+ import { HttpHeaders, HttpUrlEncodingCodec, HttpParams } from '@angular/common/http';
3
5
 
4
6
  const BASE_PATH = new InjectionToken('basePath');
5
7
  const COLLECTION_FORMATS = {
@@ -82,7 +84,7 @@ class Configuration {
82
84
  class AdminControllerService {
83
85
  constructor(httpClient, basePath, configuration) {
84
86
  this.httpClient = httpClient;
85
- this.basePath = 'https://apiv2stage1.atomex.net';
87
+ this.basePath = 'https://apiv2stage4.atomex.net';
86
88
  this.defaultHeaders = new HttpHeaders();
87
89
  this.configuration = new Configuration();
88
90
  if (basePath) {
@@ -232,14 +234,18 @@ class AdminControllerService {
232
234
  });
233
235
  }
234
236
  }
235
- AdminControllerService.decorators = [
236
- { type: Injectable }
237
- ];
238
- AdminControllerService.ctorParameters = () => [
239
- { type: HttpClient },
240
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
241
- { type: Configuration, decorators: [{ type: Optional }] }
242
- ];
237
+ AdminControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: AdminControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
238
+ AdminControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: AdminControllerService });
239
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: AdminControllerService, decorators: [{
240
+ type: Injectable
241
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
242
+ type: Optional
243
+ }, {
244
+ type: Inject,
245
+ args: [BASE_PATH]
246
+ }] }, { type: Configuration, decorators: [{
247
+ type: Optional
248
+ }] }]; } });
243
249
 
244
250
  /**
245
251
  * CustomHttpUrlEncodingCodec
@@ -271,7 +277,7 @@ class CustomHttpUrlEncodingCodec extends HttpUrlEncodingCodec {
271
277
  class AdvertiserControllerService {
272
278
  constructor(httpClient, basePath, configuration) {
273
279
  this.httpClient = httpClient;
274
- this.basePath = 'https://apiv2stage1.atomex.net';
280
+ this.basePath = 'https://apiv2stage4.atomex.net';
275
281
  this.defaultHeaders = new HttpHeaders();
276
282
  this.configuration = new Configuration();
277
283
  if (basePath) {
@@ -659,14 +665,18 @@ class AdvertiserControllerService {
659
665
  });
660
666
  }
661
667
  }
662
- AdvertiserControllerService.decorators = [
663
- { type: Injectable }
664
- ];
665
- AdvertiserControllerService.ctorParameters = () => [
666
- { type: HttpClient },
667
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
668
- { type: Configuration, decorators: [{ type: Optional }] }
669
- ];
668
+ AdvertiserControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: AdvertiserControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
669
+ AdvertiserControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: AdvertiserControllerService });
670
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: AdvertiserControllerService, decorators: [{
671
+ type: Injectable
672
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
673
+ type: Optional
674
+ }, {
675
+ type: Inject,
676
+ args: [BASE_PATH]
677
+ }] }, { type: Configuration, decorators: [{
678
+ type: Optional
679
+ }] }]; } });
670
680
 
671
681
  /**
672
682
  * Api Documentation
@@ -682,7 +692,7 @@ AdvertiserControllerService.ctorParameters = () => [
682
692
  class AppSettingsControllerService {
683
693
  constructor(httpClient, basePath, configuration) {
684
694
  this.httpClient = httpClient;
685
- this.basePath = 'https://apiv2stage1.atomex.net';
695
+ this.basePath = 'https://apiv2stage4.atomex.net';
686
696
  this.defaultHeaders = new HttpHeaders();
687
697
  this.configuration = new Configuration();
688
698
  if (basePath) {
@@ -740,61 +750,6 @@ class AppSettingsControllerService {
740
750
  reportProgress: reportProgress
741
751
  });
742
752
  }
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
- }
798
753
  getAppSettingsUsingGET(advertiserId, reqId, settingsKeys, token, observe = 'body', reportProgress = false) {
799
754
  let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
800
755
  if (advertiserId !== undefined && advertiserId !== null) {
@@ -864,49 +819,19 @@ class AppSettingsControllerService {
864
819
  reportProgress: reportProgress
865
820
  });
866
821
  }
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
- }
901
822
  }
902
- AppSettingsControllerService.decorators = [
903
- { type: Injectable }
904
- ];
905
- AppSettingsControllerService.ctorParameters = () => [
906
- { type: HttpClient },
907
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
908
- { type: Configuration, decorators: [{ type: Optional }] }
909
- ];
823
+ AppSettingsControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: AppSettingsControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
824
+ AppSettingsControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: AppSettingsControllerService });
825
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: AppSettingsControllerService, decorators: [{
826
+ type: Injectable
827
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
828
+ type: Optional
829
+ }, {
830
+ type: Inject,
831
+ args: [BASE_PATH]
832
+ }] }, { type: Configuration, decorators: [{
833
+ type: Optional
834
+ }] }]; } });
910
835
 
911
836
  /**
912
837
  * Api Documentation
@@ -922,7 +847,7 @@ AppSettingsControllerService.ctorParameters = () => [
922
847
  class AudienceControllerService {
923
848
  constructor(httpClient, basePath, configuration) {
924
849
  this.httpClient = httpClient;
925
- this.basePath = 'https://apiv2stage1.atomex.net';
850
+ this.basePath = 'https://apiv2stage4.atomex.net';
926
851
  this.defaultHeaders = new HttpHeaders();
927
852
  this.configuration = new Configuration();
928
853
  if (basePath) {
@@ -1012,9 +937,9 @@ class AudienceControllerService {
1012
937
  reportProgress: reportProgress
1013
938
  });
1014
939
  }
1015
- addBackfillRuleUsingPOST(request, reqId, token, observe = 'body', reportProgress = false) {
1016
- if (request === null || request === undefined) {
1017
- throw new Error('Required parameter request was null or undefined when calling addBackfillRuleUsingPOST.');
940
+ addBackfillRuleUsingPOST(audience, reqId, token, observe = 'body', reportProgress = false) {
941
+ if (audience === null || audience === undefined) {
942
+ throw new Error('Required parameter audience was null or undefined when calling addBackfillRuleUsingPOST.');
1018
943
  }
1019
944
  let headers = this.defaultHeaders;
1020
945
  if (reqId !== undefined && reqId !== null) {
@@ -1039,7 +964,7 @@ class AudienceControllerService {
1039
964
  if (httpContentTypeSelected != undefined) {
1040
965
  headers = headers.set('Content-Type', httpContentTypeSelected);
1041
966
  }
1042
- return this.httpClient.post(`${this.basePath}/v2/api/audience/addbackfillrule`, request, {
967
+ return this.httpClient.post(`${this.basePath}/v2/api/audience/addbackfillrule`, audience, {
1043
968
  withCredentials: this.configuration.withCredentials,
1044
969
  headers: headers,
1045
970
  observe: observe,
@@ -1177,43 +1102,6 @@ class AudienceControllerService {
1177
1102
  reportProgress: reportProgress
1178
1103
  });
1179
1104
  }
1180
- getActiveTemplatesUsingPOST(id, request, reqId, token, observe = 'body', reportProgress = false) {
1181
- if (id === null || id === undefined) {
1182
- throw new Error('Required parameter id was null or undefined when calling getActiveTemplatesUsingPOST.');
1183
- }
1184
- if (request === null || request === undefined) {
1185
- throw new Error('Required parameter request was null or undefined when calling getActiveTemplatesUsingPOST.');
1186
- }
1187
- let headers = this.defaultHeaders;
1188
- if (reqId !== undefined && reqId !== null) {
1189
- headers = headers.set('reqId', String(reqId));
1190
- }
1191
- if (token !== undefined && token !== null) {
1192
- headers = headers.set('token', String(token));
1193
- }
1194
- // to determine the Accept header
1195
- let httpHeaderAccepts = [
1196
- 'application/json'
1197
- ];
1198
- const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
1199
- if (httpHeaderAcceptSelected != undefined) {
1200
- headers = headers.set('Accept', httpHeaderAcceptSelected);
1201
- }
1202
- // to determine the Content-Type header
1203
- const consumes = [
1204
- 'application/json'
1205
- ];
1206
- const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
1207
- if (httpContentTypeSelected != undefined) {
1208
- headers = headers.set('Content-Type', httpContentTypeSelected);
1209
- }
1210
- return this.httpClient.post(`${this.basePath}/v2/api/audience/activetemplates/${encodeURIComponent(String(id))}`, request, {
1211
- withCredentials: this.configuration.withCredentials,
1212
- headers: headers,
1213
- observe: observe,
1214
- reportProgress: reportProgress
1215
- });
1216
- }
1217
1105
  getAllAudienceUsingPOST(advertiser_id, refresh, reqId, search, token, observe = 'body', reportProgress = false) {
1218
1106
  let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
1219
1107
  if (advertiser_id !== undefined && advertiser_id !== null) {
@@ -1609,49 +1497,19 @@ class AudienceControllerService {
1609
1497
  reportProgress: reportProgress
1610
1498
  });
1611
1499
  }
1612
- validateBackfillRuleUsingPOST(query, reqId, token, observe = 'body', reportProgress = false) {
1613
- if (query === null || query === undefined) {
1614
- throw new Error('Required parameter query was null or undefined when calling validateBackfillRuleUsingPOST.');
1615
- }
1616
- let headers = this.defaultHeaders;
1617
- if (reqId !== undefined && reqId !== null) {
1618
- headers = headers.set('reqId', String(reqId));
1619
- }
1620
- if (token !== undefined && token !== null) {
1621
- headers = headers.set('token', String(token));
1622
- }
1623
- // to determine the Accept header
1624
- let httpHeaderAccepts = [
1625
- 'application/json'
1626
- ];
1627
- const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
1628
- if (httpHeaderAcceptSelected != undefined) {
1629
- headers = headers.set('Accept', httpHeaderAcceptSelected);
1630
- }
1631
- // to determine the Content-Type header
1632
- const consumes = [
1633
- 'application/json'
1634
- ];
1635
- const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
1636
- if (httpContentTypeSelected != undefined) {
1637
- headers = headers.set('Content-Type', httpContentTypeSelected);
1638
- }
1639
- return this.httpClient.post(`${this.basePath}/v2/api/audience/validatebackfillrule`, query, {
1640
- withCredentials: this.configuration.withCredentials,
1641
- headers: headers,
1642
- observe: observe,
1643
- reportProgress: reportProgress
1644
- });
1645
- }
1646
1500
  }
1647
- AudienceControllerService.decorators = [
1648
- { type: Injectable }
1649
- ];
1650
- AudienceControllerService.ctorParameters = () => [
1651
- { type: HttpClient },
1652
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
1653
- { type: Configuration, decorators: [{ type: Optional }] }
1654
- ];
1501
+ AudienceControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: AudienceControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1502
+ AudienceControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: AudienceControllerService });
1503
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: AudienceControllerService, decorators: [{
1504
+ type: Injectable
1505
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
1506
+ type: Optional
1507
+ }, {
1508
+ type: Inject,
1509
+ args: [BASE_PATH]
1510
+ }] }, { type: Configuration, decorators: [{
1511
+ type: Optional
1512
+ }] }]; } });
1655
1513
 
1656
1514
  /**
1657
1515
  * Api Documentation
@@ -1667,7 +1525,7 @@ AudienceControllerService.ctorParameters = () => [
1667
1525
  class AuditControllerService {
1668
1526
  constructor(httpClient, basePath, configuration) {
1669
1527
  this.httpClient = httpClient;
1670
- this.basePath = 'https://apiv2stage1.atomex.net';
1528
+ this.basePath = 'https://apiv2stage4.atomex.net';
1671
1529
  this.defaultHeaders = new HttpHeaders();
1672
1530
  this.configuration = new Configuration();
1673
1531
  if (basePath) {
@@ -1824,14 +1682,18 @@ class AuditControllerService {
1824
1682
  });
1825
1683
  }
1826
1684
  }
1827
- AuditControllerService.decorators = [
1828
- { type: Injectable }
1829
- ];
1830
- AuditControllerService.ctorParameters = () => [
1831
- { type: HttpClient },
1832
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
1833
- { type: Configuration, decorators: [{ type: Optional }] }
1834
- ];
1685
+ AuditControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: AuditControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1686
+ AuditControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: AuditControllerService });
1687
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: AuditControllerService, decorators: [{
1688
+ type: Injectable
1689
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
1690
+ type: Optional
1691
+ }, {
1692
+ type: Inject,
1693
+ args: [BASE_PATH]
1694
+ }] }, { type: Configuration, decorators: [{
1695
+ type: Optional
1696
+ }] }]; } });
1835
1697
 
1836
1698
  /**
1837
1699
  * Api Documentation
@@ -1847,7 +1709,7 @@ AuditControllerService.ctorParameters = () => [
1847
1709
  class BulkStrategyControllerService {
1848
1710
  constructor(httpClient, basePath, configuration) {
1849
1711
  this.httpClient = httpClient;
1850
- this.basePath = 'https://apiv2stage1.atomex.net';
1712
+ this.basePath = 'https://apiv2stage4.atomex.net';
1851
1713
  this.defaultHeaders = new HttpHeaders();
1852
1714
  this.configuration = new Configuration();
1853
1715
  if (basePath) {
@@ -2044,14 +1906,18 @@ class BulkStrategyControllerService {
2044
1906
  });
2045
1907
  }
2046
1908
  }
2047
- BulkStrategyControllerService.decorators = [
2048
- { type: Injectable }
2049
- ];
2050
- BulkStrategyControllerService.ctorParameters = () => [
2051
- { type: HttpClient },
2052
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
2053
- { type: Configuration, decorators: [{ type: Optional }] }
2054
- ];
1909
+ BulkStrategyControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: BulkStrategyControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1910
+ BulkStrategyControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: BulkStrategyControllerService });
1911
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: BulkStrategyControllerService, decorators: [{
1912
+ type: Injectable
1913
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
1914
+ type: Optional
1915
+ }, {
1916
+ type: Inject,
1917
+ args: [BASE_PATH]
1918
+ }] }, { type: Configuration, decorators: [{
1919
+ type: Optional
1920
+ }] }]; } });
2055
1921
 
2056
1922
  /**
2057
1923
  * Api Documentation
@@ -2067,7 +1933,7 @@ BulkStrategyControllerService.ctorParameters = () => [
2067
1933
  class CSSThemeController_Service {
2068
1934
  constructor(httpClient, basePath, configuration) {
2069
1935
  this.httpClient = httpClient;
2070
- this.basePath = 'https://apiv2stage1.atomex.net';
1936
+ this.basePath = 'https://apiv2stage4.atomex.net';
2071
1937
  this.defaultHeaders = new HttpHeaders();
2072
1938
  this.configuration = new Configuration();
2073
1939
  if (basePath) {
@@ -2148,14 +2014,18 @@ class CSSThemeController_Service {
2148
2014
  });
2149
2015
  }
2150
2016
  }
2151
- CSSThemeController_Service.decorators = [
2152
- { type: Injectable }
2153
- ];
2154
- CSSThemeController_Service.ctorParameters = () => [
2155
- { type: HttpClient },
2156
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
2157
- { type: Configuration, decorators: [{ type: Optional }] }
2158
- ];
2017
+ CSSThemeController_Service.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CSSThemeController_Service, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2018
+ CSSThemeController_Service.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CSSThemeController_Service });
2019
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CSSThemeController_Service, decorators: [{
2020
+ type: Injectable
2021
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
2022
+ type: Optional
2023
+ }, {
2024
+ type: Inject,
2025
+ args: [BASE_PATH]
2026
+ }] }, { type: Configuration, decorators: [{
2027
+ type: Optional
2028
+ }] }]; } });
2159
2029
 
2160
2030
  /**
2161
2031
  * Api Documentation
@@ -2171,7 +2041,7 @@ CSSThemeController_Service.ctorParameters = () => [
2171
2041
  class CampaignControllerService {
2172
2042
  constructor(httpClient, basePath, configuration) {
2173
2043
  this.httpClient = httpClient;
2174
- this.basePath = 'https://apiv2stage1.atomex.net';
2044
+ this.basePath = 'https://apiv2stage4.atomex.net';
2175
2045
  this.defaultHeaders = new HttpHeaders();
2176
2046
  this.configuration = new Configuration();
2177
2047
  if (basePath) {
@@ -2371,40 +2241,6 @@ class CampaignControllerService {
2371
2241
  reportProgress: reportProgress
2372
2242
  });
2373
2243
  }
2374
- incrementalityReportUsingPOST(incrementalityReportDTO, reqId, token, observe = 'body', reportProgress = false) {
2375
- if (incrementalityReportDTO === null || incrementalityReportDTO === undefined) {
2376
- throw new Error('Required parameter incrementalityReportDTO was null or undefined when calling incrementalityReportUsingPOST.');
2377
- }
2378
- let headers = this.defaultHeaders;
2379
- if (reqId !== undefined && reqId !== null) {
2380
- headers = headers.set('reqId', String(reqId));
2381
- }
2382
- if (token !== undefined && token !== null) {
2383
- headers = headers.set('token', String(token));
2384
- }
2385
- // to determine the Accept header
2386
- let httpHeaderAccepts = [
2387
- 'application/json'
2388
- ];
2389
- const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
2390
- if (httpHeaderAcceptSelected != undefined) {
2391
- headers = headers.set('Accept', httpHeaderAcceptSelected);
2392
- }
2393
- // to determine the Content-Type header
2394
- const consumes = [
2395
- 'application/json'
2396
- ];
2397
- const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
2398
- if (httpContentTypeSelected != undefined) {
2399
- headers = headers.set('Content-Type', httpContentTypeSelected);
2400
- }
2401
- return this.httpClient.post(`${this.basePath}/v2/api/campaigns/incrementalityreport`, incrementalityReportDTO, {
2402
- withCredentials: this.configuration.withCredentials,
2403
- headers: headers,
2404
- observe: observe,
2405
- reportProgress: reportProgress
2406
- });
2407
- }
2408
2244
  updateCampaignUsingPOST(campaign, id, reqId, token, observe = 'body', reportProgress = false) {
2409
2245
  if (campaign === null || campaign === undefined) {
2410
2246
  throw new Error('Required parameter campaign was null or undefined when calling updateCampaignUsingPOST.');
@@ -2443,14 +2279,18 @@ class CampaignControllerService {
2443
2279
  });
2444
2280
  }
2445
2281
  }
2446
- CampaignControllerService.decorators = [
2447
- { type: Injectable }
2448
- ];
2449
- CampaignControllerService.ctorParameters = () => [
2450
- { type: HttpClient },
2451
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
2452
- { type: Configuration, decorators: [{ type: Optional }] }
2453
- ];
2282
+ CampaignControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CampaignControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2283
+ CampaignControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CampaignControllerService });
2284
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CampaignControllerService, decorators: [{
2285
+ type: Injectable
2286
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
2287
+ type: Optional
2288
+ }, {
2289
+ type: Inject,
2290
+ args: [BASE_PATH]
2291
+ }] }, { type: Configuration, decorators: [{
2292
+ type: Optional
2293
+ }] }]; } });
2454
2294
 
2455
2295
  /**
2456
2296
  * Api Documentation
@@ -2466,7 +2306,7 @@ CampaignControllerService.ctorParameters = () => [
2466
2306
  class CatalogControllerService {
2467
2307
  constructor(httpClient, basePath, configuration) {
2468
2308
  this.httpClient = httpClient;
2469
- this.basePath = 'https://apiv2stage1.atomex.net';
2309
+ this.basePath = 'https://apiv2stage4.atomex.net';
2470
2310
  this.defaultHeaders = new HttpHeaders();
2471
2311
  this.configuration = new Configuration();
2472
2312
  if (basePath) {
@@ -2560,39 +2400,6 @@ class CatalogControllerService {
2560
2400
  reportProgress: reportProgress
2561
2401
  });
2562
2402
  }
2563
- getFeedsByAdvertiserIdUsingGET(advertiserId, reqId, token, observe = 'body', reportProgress = false) {
2564
- if (advertiserId === null || advertiserId === undefined) {
2565
- throw new Error('Required parameter advertiserId was null or undefined when calling getFeedsByAdvertiserIdUsingGET.');
2566
- }
2567
- let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
2568
- if (advertiserId !== undefined && advertiserId !== null) {
2569
- queryParameters = queryParameters.set('advertiserId', advertiserId);
2570
- }
2571
- let headers = this.defaultHeaders;
2572
- if (reqId !== undefined && reqId !== null) {
2573
- headers = headers.set('reqId', String(reqId));
2574
- }
2575
- if (token !== undefined && token !== null) {
2576
- headers = headers.set('token', String(token));
2577
- }
2578
- // to determine the Accept header
2579
- let httpHeaderAccepts = [
2580
- 'application/json'
2581
- ];
2582
- const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
2583
- if (httpHeaderAcceptSelected != undefined) {
2584
- headers = headers.set('Accept', httpHeaderAcceptSelected);
2585
- }
2586
- // to determine the Content-Type header
2587
- const consumes = [];
2588
- return this.httpClient.get(`${this.basePath}/v2/api/catalog/feeds`, {
2589
- params: queryParameters,
2590
- withCredentials: this.configuration.withCredentials,
2591
- headers: headers,
2592
- observe: observe,
2593
- reportProgress: reportProgress
2594
- });
2595
- }
2596
2403
  getMacrosUsingPOST(advertiser_id, refresh, reqId, search, token, observe = 'body', reportProgress = false) {
2597
2404
  if (advertiser_id === null || advertiser_id === undefined) {
2598
2405
  throw new Error('Required parameter advertiser_id was null or undefined when calling getMacrosUsingPOST.');
@@ -2678,14 +2485,18 @@ class CatalogControllerService {
2678
2485
  });
2679
2486
  }
2680
2487
  }
2681
- CatalogControllerService.decorators = [
2682
- { type: Injectable }
2683
- ];
2684
- CatalogControllerService.ctorParameters = () => [
2685
- { type: HttpClient },
2686
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
2687
- { type: Configuration, decorators: [{ type: Optional }] }
2688
- ];
2488
+ CatalogControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CatalogControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2489
+ CatalogControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CatalogControllerService });
2490
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CatalogControllerService, decorators: [{
2491
+ type: Injectable
2492
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
2493
+ type: Optional
2494
+ }, {
2495
+ type: Inject,
2496
+ args: [BASE_PATH]
2497
+ }] }, { type: Configuration, decorators: [{
2498
+ type: Optional
2499
+ }] }]; } });
2689
2500
 
2690
2501
  /**
2691
2502
  * Api Documentation
@@ -2701,7 +2512,7 @@ CatalogControllerService.ctorParameters = () => [
2701
2512
  class ClickDestinationControllerService {
2702
2513
  constructor(httpClient, basePath, configuration) {
2703
2514
  this.httpClient = httpClient;
2704
- this.basePath = 'https://apiv2stage1.atomex.net';
2515
+ this.basePath = 'https://apiv2stage4.atomex.net';
2705
2516
  this.defaultHeaders = new HttpHeaders();
2706
2517
  this.configuration = new Configuration();
2707
2518
  if (basePath) {
@@ -2905,14 +2716,18 @@ class ClickDestinationControllerService {
2905
2716
  });
2906
2717
  }
2907
2718
  }
2908
- ClickDestinationControllerService.decorators = [
2909
- { type: Injectable }
2910
- ];
2911
- ClickDestinationControllerService.ctorParameters = () => [
2912
- { type: HttpClient },
2913
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
2914
- { type: Configuration, decorators: [{ type: Optional }] }
2915
- ];
2719
+ ClickDestinationControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: ClickDestinationControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2720
+ ClickDestinationControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: ClickDestinationControllerService });
2721
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: ClickDestinationControllerService, decorators: [{
2722
+ type: Injectable
2723
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
2724
+ type: Optional
2725
+ }, {
2726
+ type: Inject,
2727
+ args: [BASE_PATH]
2728
+ }] }, { type: Configuration, decorators: [{
2729
+ type: Optional
2730
+ }] }]; } });
2916
2731
 
2917
2732
  /**
2918
2733
  * Api Documentation
@@ -2928,7 +2743,7 @@ ClickDestinationControllerService.ctorParameters = () => [
2928
2743
  class CreativeControllerService {
2929
2744
  constructor(httpClient, basePath, configuration) {
2930
2745
  this.httpClient = httpClient;
2931
- this.basePath = 'https://apiv2stage1.atomex.net';
2746
+ this.basePath = 'https://apiv2stage4.atomex.net';
2932
2747
  this.defaultHeaders = new HttpHeaders();
2933
2748
  this.configuration = new Configuration();
2934
2749
  if (basePath) {
@@ -3347,14 +3162,18 @@ class CreativeControllerService {
3347
3162
  });
3348
3163
  }
3349
3164
  }
3350
- CreativeControllerService.decorators = [
3351
- { type: Injectable }
3352
- ];
3353
- CreativeControllerService.ctorParameters = () => [
3354
- { type: HttpClient },
3355
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
3356
- { type: Configuration, decorators: [{ type: Optional }] }
3357
- ];
3165
+ CreativeControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CreativeControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
3166
+ CreativeControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CreativeControllerService });
3167
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CreativeControllerService, decorators: [{
3168
+ type: Injectable
3169
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
3170
+ type: Optional
3171
+ }, {
3172
+ type: Inject,
3173
+ args: [BASE_PATH]
3174
+ }] }, { type: Configuration, decorators: [{
3175
+ type: Optional
3176
+ }] }]; } });
3358
3177
 
3359
3178
  /**
3360
3179
  * Api Documentation
@@ -3370,7 +3189,7 @@ CreativeControllerService.ctorParameters = () => [
3370
3189
  class CreativeSetsControllerService {
3371
3190
  constructor(httpClient, basePath, configuration) {
3372
3191
  this.httpClient = httpClient;
3373
- this.basePath = 'https://apiv2stage1.atomex.net';
3192
+ this.basePath = 'https://apiv2stage4.atomex.net';
3374
3193
  this.defaultHeaders = new HttpHeaders();
3375
3194
  this.configuration = new Configuration();
3376
3195
  if (basePath) {
@@ -3394,76 +3213,6 @@ class CreativeSetsControllerService {
3394
3213
  }
3395
3214
  return false;
3396
3215
  }
3397
- bulkEditActivityLogUsingGET1(pageNumber, pageSize, reqId, sort, token, observe = 'body', reportProgress = false) {
3398
- let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
3399
- if (pageNumber !== undefined && pageNumber !== null) {
3400
- queryParameters = queryParameters.set('pageNumber', pageNumber);
3401
- }
3402
- if (pageSize !== undefined && pageSize !== null) {
3403
- queryParameters = queryParameters.set('pageSize', pageSize);
3404
- }
3405
- if (sort !== undefined && sort !== null) {
3406
- queryParameters = queryParameters.set('sort', sort);
3407
- }
3408
- let headers = this.defaultHeaders;
3409
- if (reqId !== undefined && reqId !== null) {
3410
- headers = headers.set('reqId', String(reqId));
3411
- }
3412
- if (token !== undefined && token !== null) {
3413
- headers = headers.set('token', String(token));
3414
- }
3415
- // to determine the Accept header
3416
- let httpHeaderAccepts = [
3417
- 'application/json'
3418
- ];
3419
- const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
3420
- if (httpHeaderAcceptSelected != undefined) {
3421
- headers = headers.set('Accept', httpHeaderAcceptSelected);
3422
- }
3423
- // to determine the Content-Type header
3424
- const consumes = [];
3425
- return this.httpClient.get(`${this.basePath}/v2/api/creativesets/bulkupdateActivityLog`, {
3426
- params: queryParameters,
3427
- withCredentials: this.configuration.withCredentials,
3428
- headers: headers,
3429
- observe: observe,
3430
- reportProgress: reportProgress
3431
- });
3432
- }
3433
- bulkEditCreativeSetsUsingPOST(dto, reqId, token, observe = 'body', reportProgress = false) {
3434
- if (dto === null || dto === undefined) {
3435
- throw new Error('Required parameter dto was null or undefined when calling bulkEditCreativeSetsUsingPOST.');
3436
- }
3437
- let headers = this.defaultHeaders;
3438
- if (reqId !== undefined && reqId !== null) {
3439
- headers = headers.set('reqId', String(reqId));
3440
- }
3441
- if (token !== undefined && token !== null) {
3442
- headers = headers.set('token', String(token));
3443
- }
3444
- // to determine the Accept header
3445
- let httpHeaderAccepts = [
3446
- 'application/json'
3447
- ];
3448
- const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
3449
- if (httpHeaderAcceptSelected != undefined) {
3450
- headers = headers.set('Accept', httpHeaderAcceptSelected);
3451
- }
3452
- // to determine the Content-Type header
3453
- const consumes = [
3454
- 'application/json'
3455
- ];
3456
- const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
3457
- if (httpContentTypeSelected != undefined) {
3458
- headers = headers.set('Content-Type', httpContentTypeSelected);
3459
- }
3460
- return this.httpClient.post(`${this.basePath}/v2/api/creativesets/bulkupdate`, dto, {
3461
- withCredentials: this.configuration.withCredentials,
3462
- headers: headers,
3463
- observe: observe,
3464
- reportProgress: reportProgress
3465
- });
3466
- }
3467
3216
  createUsingPOST(creativeSetRequest, reqId, token, observe = 'body', reportProgress = false) {
3468
3217
  if (creativeSetRequest === null || creativeSetRequest === undefined) {
3469
3218
  throw new Error('Required parameter creativeSetRequest was null or undefined when calling createUsingPOST.');
@@ -3640,10 +3389,13 @@ class CreativeSetsControllerService {
3640
3389
  reportProgress: reportProgress
3641
3390
  });
3642
3391
  }
3643
- getCreativesPerformanceUsingPOST(dashboardRequest, refresh, reqId, token, observe = 'body', reportProgress = false) {
3392
+ getCreativesPerformanceUsingPOST(dashboardRequest, id, refresh, reqId, token, observe = 'body', reportProgress = false) {
3644
3393
  if (dashboardRequest === null || dashboardRequest === undefined) {
3645
3394
  throw new Error('Required parameter dashboardRequest was null or undefined when calling getCreativesPerformanceUsingPOST.');
3646
3395
  }
3396
+ if (id === null || id === undefined) {
3397
+ throw new Error('Required parameter id was null or undefined when calling getCreativesPerformanceUsingPOST.');
3398
+ }
3647
3399
  let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
3648
3400
  if (refresh !== undefined && refresh !== null) {
3649
3401
  queryParameters = queryParameters.set('refresh', refresh);
@@ -3671,7 +3423,7 @@ class CreativeSetsControllerService {
3671
3423
  if (httpContentTypeSelected != undefined) {
3672
3424
  headers = headers.set('Content-Type', httpContentTypeSelected);
3673
3425
  }
3674
- return this.httpClient.post(`${this.basePath}/v2/api/creativesets/creatives/performance/`, dashboardRequest, {
3426
+ return this.httpClient.post(`${this.basePath}/v2/api/creativesets/creatives/performance/${encodeURIComponent(String(id))}`, dashboardRequest, {
3675
3427
  params: queryParameters,
3676
3428
  withCredentials: this.configuration.withCredentials,
3677
3429
  headers: headers,
@@ -3721,88 +3473,6 @@ class CreativeSetsControllerService {
3721
3473
  reportProgress: reportProgress
3722
3474
  });
3723
3475
  }
3724
- getTemplateListUsingGET(advertiserId, type, filters, isPlacebo, reqId, token, observe = 'body', reportProgress = false) {
3725
- if (advertiserId === null || advertiserId === undefined) {
3726
- throw new Error('Required parameter advertiserId was null or undefined when calling getTemplateListUsingGET.');
3727
- }
3728
- if (type === null || type === undefined) {
3729
- throw new Error('Required parameter type was null or undefined when calling getTemplateListUsingGET.');
3730
- }
3731
- let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
3732
- if (advertiserId !== undefined && advertiserId !== null) {
3733
- queryParameters = queryParameters.set('advertiserId', advertiserId);
3734
- }
3735
- if (filters !== undefined && filters !== null) {
3736
- queryParameters = queryParameters.set('filters', filters);
3737
- }
3738
- if (isPlacebo !== undefined && isPlacebo !== null) {
3739
- queryParameters = queryParameters.set('isPlacebo', isPlacebo);
3740
- }
3741
- if (type !== undefined && type !== null) {
3742
- queryParameters = queryParameters.set('type', type);
3743
- }
3744
- let headers = this.defaultHeaders;
3745
- if (reqId !== undefined && reqId !== null) {
3746
- headers = headers.set('reqId', String(reqId));
3747
- }
3748
- if (token !== undefined && token !== null) {
3749
- headers = headers.set('token', String(token));
3750
- }
3751
- // to determine the Accept header
3752
- let httpHeaderAccepts = [
3753
- 'application/json'
3754
- ];
3755
- const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
3756
- if (httpHeaderAcceptSelected != undefined) {
3757
- headers = headers.set('Accept', httpHeaderAcceptSelected);
3758
- }
3759
- // to determine the Content-Type header
3760
- const consumes = [];
3761
- return this.httpClient.get(`${this.basePath}/v2/api/creativesets/templates`, {
3762
- params: queryParameters,
3763
- withCredentials: this.configuration.withCredentials,
3764
- headers: headers,
3765
- observe: observe,
3766
- reportProgress: reportProgress
3767
- });
3768
- }
3769
- rescheduleUsingPOST(creativeSetRescheduleRequest, id, reqId, token, observe = 'body', reportProgress = false) {
3770
- if (creativeSetRescheduleRequest === null || creativeSetRescheduleRequest === undefined) {
3771
- throw new Error('Required parameter creativeSetRescheduleRequest was null or undefined when calling rescheduleUsingPOST.');
3772
- }
3773
- if (id === null || id === undefined) {
3774
- throw new Error('Required parameter id was null or undefined when calling rescheduleUsingPOST.');
3775
- }
3776
- let headers = this.defaultHeaders;
3777
- if (reqId !== undefined && reqId !== null) {
3778
- headers = headers.set('reqId', String(reqId));
3779
- }
3780
- if (token !== undefined && token !== null) {
3781
- headers = headers.set('token', String(token));
3782
- }
3783
- // to determine the Accept header
3784
- let httpHeaderAccepts = [
3785
- 'application/json'
3786
- ];
3787
- const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
3788
- if (httpHeaderAcceptSelected != undefined) {
3789
- headers = headers.set('Accept', httpHeaderAcceptSelected);
3790
- }
3791
- // to determine the Content-Type header
3792
- const consumes = [
3793
- 'application/json'
3794
- ];
3795
- const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
3796
- if (httpContentTypeSelected != undefined) {
3797
- headers = headers.set('Content-Type', httpContentTypeSelected);
3798
- }
3799
- return this.httpClient.post(`${this.basePath}/v2/api/creativesets/reschedule/${encodeURIComponent(String(id))}`, creativeSetRescheduleRequest, {
3800
- withCredentials: this.configuration.withCredentials,
3801
- headers: headers,
3802
- observe: observe,
3803
- reportProgress: reportProgress
3804
- });
3805
- }
3806
3476
  updateUsingPOST(creativeSetRequest, id, reqId, token, observe = 'body', reportProgress = false) {
3807
3477
  if (creativeSetRequest === null || creativeSetRequest === undefined) {
3808
3478
  throw new Error('Required parameter creativeSetRequest was null or undefined when calling updateUsingPOST.');
@@ -3841,14 +3511,18 @@ class CreativeSetsControllerService {
3841
3511
  });
3842
3512
  }
3843
3513
  }
3844
- CreativeSetsControllerService.decorators = [
3845
- { type: Injectable }
3846
- ];
3847
- CreativeSetsControllerService.ctorParameters = () => [
3848
- { type: HttpClient },
3849
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
3850
- { type: Configuration, decorators: [{ type: Optional }] }
3851
- ];
3514
+ CreativeSetsControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CreativeSetsControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
3515
+ CreativeSetsControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CreativeSetsControllerService });
3516
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CreativeSetsControllerService, decorators: [{
3517
+ type: Injectable
3518
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
3519
+ type: Optional
3520
+ }, {
3521
+ type: Inject,
3522
+ args: [BASE_PATH]
3523
+ }] }, { type: Configuration, decorators: [{
3524
+ type: Optional
3525
+ }] }]; } });
3852
3526
 
3853
3527
  /**
3854
3528
  * Api Documentation
@@ -3864,7 +3538,7 @@ CreativeSetsControllerService.ctorParameters = () => [
3864
3538
  class CreativeTemplateThemesControllerService {
3865
3539
  constructor(httpClient, basePath, configuration) {
3866
3540
  this.httpClient = httpClient;
3867
- this.basePath = 'https://apiv2stage1.atomex.net';
3541
+ this.basePath = 'https://apiv2stage4.atomex.net';
3868
3542
  this.defaultHeaders = new HttpHeaders();
3869
3543
  this.configuration = new Configuration();
3870
3544
  if (basePath) {
@@ -4021,14 +3695,18 @@ class CreativeTemplateThemesControllerService {
4021
3695
  });
4022
3696
  }
4023
3697
  }
4024
- CreativeTemplateThemesControllerService.decorators = [
4025
- { type: Injectable }
4026
- ];
4027
- CreativeTemplateThemesControllerService.ctorParameters = () => [
4028
- { type: HttpClient },
4029
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
4030
- { type: Configuration, decorators: [{ type: Optional }] }
4031
- ];
3698
+ CreativeTemplateThemesControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CreativeTemplateThemesControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
3699
+ CreativeTemplateThemesControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CreativeTemplateThemesControllerService });
3700
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CreativeTemplateThemesControllerService, decorators: [{
3701
+ type: Injectable
3702
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
3703
+ type: Optional
3704
+ }, {
3705
+ type: Inject,
3706
+ args: [BASE_PATH]
3707
+ }] }, { type: Configuration, decorators: [{
3708
+ type: Optional
3709
+ }] }]; } });
4032
3710
 
4033
3711
  /**
4034
3712
  * Api Documentation
@@ -4044,7 +3722,7 @@ CreativeTemplateThemesControllerService.ctorParameters = () => [
4044
3722
  class CreativeTemplateVariablesControllerService {
4045
3723
  constructor(httpClient, basePath, configuration) {
4046
3724
  this.httpClient = httpClient;
4047
- this.basePath = 'https://apiv2stage1.atomex.net';
3725
+ this.basePath = 'https://apiv2stage4.atomex.net';
4048
3726
  this.defaultHeaders = new HttpHeaders();
4049
3727
  this.configuration = new Configuration();
4050
3728
  if (basePath) {
@@ -4094,14 +3772,18 @@ class CreativeTemplateVariablesControllerService {
4094
3772
  });
4095
3773
  }
4096
3774
  }
4097
- CreativeTemplateVariablesControllerService.decorators = [
4098
- { type: Injectable }
4099
- ];
4100
- CreativeTemplateVariablesControllerService.ctorParameters = () => [
4101
- { type: HttpClient },
4102
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
4103
- { type: Configuration, decorators: [{ type: Optional }] }
4104
- ];
3775
+ CreativeTemplateVariablesControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CreativeTemplateVariablesControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
3776
+ CreativeTemplateVariablesControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CreativeTemplateVariablesControllerService });
3777
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CreativeTemplateVariablesControllerService, decorators: [{
3778
+ type: Injectable
3779
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
3780
+ type: Optional
3781
+ }, {
3782
+ type: Inject,
3783
+ args: [BASE_PATH]
3784
+ }] }, { type: Configuration, decorators: [{
3785
+ type: Optional
3786
+ }] }]; } });
4105
3787
 
4106
3788
  /**
4107
3789
  * Api Documentation
@@ -4117,7 +3799,7 @@ CreativeTemplateVariablesControllerService.ctorParameters = () => [
4117
3799
  class CreativeTemplatesControllerService {
4118
3800
  constructor(httpClient, basePath, configuration) {
4119
3801
  this.httpClient = httpClient;
4120
- this.basePath = 'https://apiv2stage1.atomex.net';
3802
+ this.basePath = 'https://apiv2stage4.atomex.net';
4121
3803
  this.defaultHeaders = new HttpHeaders();
4122
3804
  this.configuration = new Configuration();
4123
3805
  if (basePath) {
@@ -4209,101 +3891,19 @@ class CreativeTemplatesControllerService {
4209
3891
  if (httpHeaderAcceptSelected != undefined) {
4210
3892
  headers = headers.set('Accept', httpHeaderAcceptSelected);
4211
3893
  }
4212
- // to determine the Content-Type header
4213
- const consumes = [];
4214
- return this.httpClient.get(`${this.basePath}/v2/api/creatives/templates/metadata`, {
4215
- params: queryParameters,
4216
- withCredentials: this.configuration.withCredentials,
4217
- headers: headers,
4218
- observe: observe,
4219
- reportProgress: reportProgress
4220
- });
4221
- }
4222
- saveProductImagesUsingPOST(mockupDTO, reqId, token, observe = 'body', reportProgress = false) {
4223
- if (mockupDTO === null || mockupDTO === undefined) {
4224
- throw new Error('Required parameter mockupDTO was null or undefined when calling saveProductImagesUsingPOST.');
4225
- }
4226
- let headers = this.defaultHeaders;
4227
- if (reqId !== undefined && reqId !== null) {
4228
- headers = headers.set('reqId', String(reqId));
4229
- }
4230
- if (token !== undefined && token !== null) {
4231
- headers = headers.set('token', String(token));
4232
- }
4233
- // to determine the Accept header
4234
- let httpHeaderAccepts = [
4235
- 'application/json'
4236
- ];
4237
- const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
4238
- if (httpHeaderAcceptSelected != undefined) {
4239
- headers = headers.set('Accept', httpHeaderAcceptSelected);
4240
- }
4241
- // to determine the Content-Type header
4242
- const consumes = [
4243
- 'application/json'
4244
- ];
4245
- const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
4246
- if (httpContentTypeSelected != undefined) {
4247
- headers = headers.set('Content-Type', httpContentTypeSelected);
4248
- }
4249
- return this.httpClient.post(`${this.basePath}/v2/api/creatives/templates/productimages`, mockupDTO, {
4250
- withCredentials: this.configuration.withCredentials,
4251
- headers: headers,
4252
- observe: observe,
4253
- reportProgress: reportProgress
4254
- });
4255
- }
4256
- }
4257
- CreativeTemplatesControllerService.decorators = [
4258
- { type: Injectable }
4259
- ];
4260
- CreativeTemplatesControllerService.ctorParameters = () => [
4261
- { type: HttpClient },
4262
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
4263
- { type: Configuration, decorators: [{ type: Optional }] }
4264
- ];
4265
-
4266
- /**
4267
- * Api Documentation
4268
- * Api Documentation
4269
- *
4270
- * OpenAPI spec version: 1.0
4271
- *
4272
- *
4273
- * NOTE: This class is auto generated by the swagger code generator program.
4274
- * https://github.com/swagger-api/swagger-codegen.git
4275
- * Do not edit the class manually.
4276
- */
4277
- class CustomerReportingControllerService {
4278
- constructor(httpClient, basePath, configuration) {
4279
- this.httpClient = httpClient;
4280
- this.basePath = 'https://apiv2stage1.atomex.net';
4281
- this.defaultHeaders = new HttpHeaders();
4282
- this.configuration = new Configuration();
4283
- if (basePath) {
4284
- this.basePath = basePath;
4285
- }
4286
- if (configuration) {
4287
- this.configuration = configuration;
4288
- this.basePath = basePath || configuration.basePath || this.basePath;
4289
- }
4290
- }
4291
- /**
4292
- * @param consumes string[] mime-types
4293
- * @return true: consumes contains 'multipart/form-data', false: otherwise
4294
- */
4295
- canConsumeForm(consumes) {
4296
- const form = 'multipart/form-data';
4297
- for (const consume of consumes) {
4298
- if (form === consume) {
4299
- return true;
4300
- }
4301
- }
4302
- return false;
3894
+ // to determine the Content-Type header
3895
+ const consumes = [];
3896
+ return this.httpClient.get(`${this.basePath}/v2/api/creatives/templates/metadata`, {
3897
+ params: queryParameters,
3898
+ withCredentials: this.configuration.withCredentials,
3899
+ headers: headers,
3900
+ observe: observe,
3901
+ reportProgress: reportProgress
3902
+ });
4303
3903
  }
4304
- customerReportUsingPOST(customerReportingRequest, reqId, token, observe = 'body', reportProgress = false) {
4305
- if (customerReportingRequest === null || customerReportingRequest === undefined) {
4306
- throw new Error('Required parameter customerReportingRequest was null or undefined when calling customerReportUsingPOST.');
3904
+ saveProductImagesUsingPOST(mockupDTO, reqId, token, observe = 'body', reportProgress = false) {
3905
+ if (mockupDTO === null || mockupDTO === undefined) {
3906
+ throw new Error('Required parameter mockupDTO was null or undefined when calling saveProductImagesUsingPOST.');
4307
3907
  }
4308
3908
  let headers = this.defaultHeaders;
4309
3909
  if (reqId !== undefined && reqId !== null) {
@@ -4328,7 +3928,7 @@ class CustomerReportingControllerService {
4328
3928
  if (httpContentTypeSelected != undefined) {
4329
3929
  headers = headers.set('Content-Type', httpContentTypeSelected);
4330
3930
  }
4331
- return this.httpClient.post(`${this.basePath}/v2/api/creport/aliexpress`, customerReportingRequest, {
3931
+ return this.httpClient.post(`${this.basePath}/v2/api/creatives/templates/productimages`, mockupDTO, {
4332
3932
  withCredentials: this.configuration.withCredentials,
4333
3933
  headers: headers,
4334
3934
  observe: observe,
@@ -4336,14 +3936,18 @@ class CustomerReportingControllerService {
4336
3936
  });
4337
3937
  }
4338
3938
  }
4339
- CustomerReportingControllerService.decorators = [
4340
- { type: Injectable }
4341
- ];
4342
- CustomerReportingControllerService.ctorParameters = () => [
4343
- { type: HttpClient },
4344
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
4345
- { type: Configuration, decorators: [{ type: Optional }] }
4346
- ];
3939
+ CreativeTemplatesControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CreativeTemplatesControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
3940
+ CreativeTemplatesControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CreativeTemplatesControllerService });
3941
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: CreativeTemplatesControllerService, decorators: [{
3942
+ type: Injectable
3943
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
3944
+ type: Optional
3945
+ }, {
3946
+ type: Inject,
3947
+ args: [BASE_PATH]
3948
+ }] }, { type: Configuration, decorators: [{
3949
+ type: Optional
3950
+ }] }]; } });
4347
3951
 
4348
3952
  /**
4349
3953
  * Api Documentation
@@ -4359,7 +3963,7 @@ CustomerReportingControllerService.ctorParameters = () => [
4359
3963
  class DashboardControllerService {
4360
3964
  constructor(httpClient, basePath, configuration) {
4361
3965
  this.httpClient = httpClient;
4362
- this.basePath = 'https://apiv2stage1.atomex.net';
3966
+ this.basePath = 'https://apiv2stage4.atomex.net';
4363
3967
  this.defaultHeaders = new HttpHeaders();
4364
3968
  this.configuration = new Configuration();
4365
3969
  if (basePath) {
@@ -4950,14 +4554,18 @@ class DashboardControllerService {
4950
4554
  });
4951
4555
  }
4952
4556
  }
4953
- DashboardControllerService.decorators = [
4954
- { type: Injectable }
4955
- ];
4956
- DashboardControllerService.ctorParameters = () => [
4957
- { type: HttpClient },
4958
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
4959
- { type: Configuration, decorators: [{ type: Optional }] }
4960
- ];
4557
+ DashboardControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: DashboardControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
4558
+ DashboardControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: DashboardControllerService });
4559
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: DashboardControllerService, decorators: [{
4560
+ type: Injectable
4561
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
4562
+ type: Optional
4563
+ }, {
4564
+ type: Inject,
4565
+ args: [BASE_PATH]
4566
+ }] }, { type: Configuration, decorators: [{
4567
+ type: Optional
4568
+ }] }]; } });
4961
4569
 
4962
4570
  /**
4963
4571
  * Api Documentation
@@ -4973,7 +4581,7 @@ DashboardControllerService.ctorParameters = () => [
4973
4581
  class NotificationsControllerService {
4974
4582
  constructor(httpClient, basePath, configuration) {
4975
4583
  this.httpClient = httpClient;
4976
- this.basePath = 'https://apiv2stage1.atomex.net';
4584
+ this.basePath = 'https://apiv2stage4.atomex.net';
4977
4585
  this.defaultHeaders = new HttpHeaders();
4978
4586
  this.configuration = new Configuration();
4979
4587
  if (basePath) {
@@ -5128,14 +4736,18 @@ class NotificationsControllerService {
5128
4736
  });
5129
4737
  }
5130
4738
  }
5131
- NotificationsControllerService.decorators = [
5132
- { type: Injectable }
5133
- ];
5134
- NotificationsControllerService.ctorParameters = () => [
5135
- { type: HttpClient },
5136
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
5137
- { type: Configuration, decorators: [{ type: Optional }] }
5138
- ];
4739
+ NotificationsControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: NotificationsControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
4740
+ NotificationsControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: NotificationsControllerService });
4741
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: NotificationsControllerService, decorators: [{
4742
+ type: Injectable
4743
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
4744
+ type: Optional
4745
+ }, {
4746
+ type: Inject,
4747
+ args: [BASE_PATH]
4748
+ }] }, { type: Configuration, decorators: [{
4749
+ type: Optional
4750
+ }] }]; } });
5139
4751
 
5140
4752
  /**
5141
4753
  * Api Documentation
@@ -5151,7 +4763,7 @@ NotificationsControllerService.ctorParameters = () => [
5151
4763
  class PixelControllerService {
5152
4764
  constructor(httpClient, basePath, configuration) {
5153
4765
  this.httpClient = httpClient;
5154
- this.basePath = 'https://apiv2stage1.atomex.net';
4766
+ this.basePath = 'https://apiv2stage4.atomex.net';
5155
4767
  this.defaultHeaders = new HttpHeaders();
5156
4768
  this.configuration = new Configuration();
5157
4769
  if (basePath) {
@@ -5430,14 +5042,18 @@ class PixelControllerService {
5430
5042
  });
5431
5043
  }
5432
5044
  }
5433
- PixelControllerService.decorators = [
5434
- { type: Injectable }
5435
- ];
5436
- PixelControllerService.ctorParameters = () => [
5437
- { type: HttpClient },
5438
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
5439
- { type: Configuration, decorators: [{ type: Optional }] }
5440
- ];
5045
+ PixelControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: PixelControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
5046
+ PixelControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: PixelControllerService });
5047
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: PixelControllerService, decorators: [{
5048
+ type: Injectable
5049
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
5050
+ type: Optional
5051
+ }, {
5052
+ type: Inject,
5053
+ args: [BASE_PATH]
5054
+ }] }, { type: Configuration, decorators: [{
5055
+ type: Optional
5056
+ }] }]; } });
5441
5057
 
5442
5058
  /**
5443
5059
  * Api Documentation
@@ -5453,7 +5069,7 @@ PixelControllerService.ctorParameters = () => [
5453
5069
  class ReportingControllerService {
5454
5070
  constructor(httpClient, basePath, configuration) {
5455
5071
  this.httpClient = httpClient;
5456
- this.basePath = 'https://apiv2stage1.atomex.net';
5072
+ this.basePath = 'https://apiv2stage4.atomex.net';
5457
5073
  this.defaultHeaders = new HttpHeaders();
5458
5074
  this.configuration = new Configuration();
5459
5075
  if (basePath) {
@@ -5595,14 +5211,18 @@ class ReportingControllerService {
5595
5211
  });
5596
5212
  }
5597
5213
  }
5598
- ReportingControllerService.decorators = [
5599
- { type: Injectable }
5600
- ];
5601
- ReportingControllerService.ctorParameters = () => [
5602
- { type: HttpClient },
5603
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
5604
- { type: Configuration, decorators: [{ type: Optional }] }
5605
- ];
5214
+ ReportingControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: ReportingControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
5215
+ ReportingControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: ReportingControllerService });
5216
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: ReportingControllerService, decorators: [{
5217
+ type: Injectable
5218
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
5219
+ type: Optional
5220
+ }, {
5221
+ type: Inject,
5222
+ args: [BASE_PATH]
5223
+ }] }, { type: Configuration, decorators: [{
5224
+ type: Optional
5225
+ }] }]; } });
5606
5226
 
5607
5227
  /**
5608
5228
  * Api Documentation
@@ -5618,7 +5238,7 @@ ReportingControllerService.ctorParameters = () => [
5618
5238
  class SliceXControllerService {
5619
5239
  constructor(httpClient, basePath, configuration) {
5620
5240
  this.httpClient = httpClient;
5621
- this.basePath = 'https://apiv2stage1.atomex.net';
5241
+ this.basePath = 'https://apiv2stage4.atomex.net';
5622
5242
  this.defaultHeaders = new HttpHeaders();
5623
5243
  this.configuration = new Configuration();
5624
5244
  if (basePath) {
@@ -5718,85 +5338,6 @@ class SliceXControllerService {
5718
5338
  reportProgress: reportProgress
5719
5339
  });
5720
5340
  }
5721
- getSlicexDataListWithCompareUsingPOST(entity, slicexRequest, reqId, sort, token, observe = 'body', reportProgress = false) {
5722
- if (entity === null || entity === undefined) {
5723
- throw new Error('Required parameter entity was null or undefined when calling getSlicexDataListWithCompareUsingPOST.');
5724
- }
5725
- if (slicexRequest === null || slicexRequest === undefined) {
5726
- throw new Error('Required parameter slicexRequest was null or undefined when calling getSlicexDataListWithCompareUsingPOST.');
5727
- }
5728
- let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
5729
- if (sort !== undefined && sort !== null) {
5730
- queryParameters = queryParameters.set('sort', sort);
5731
- }
5732
- let headers = this.defaultHeaders;
5733
- if (reqId !== undefined && reqId !== null) {
5734
- headers = headers.set('reqId', String(reqId));
5735
- }
5736
- if (token !== undefined && token !== null) {
5737
- headers = headers.set('token', String(token));
5738
- }
5739
- // to determine the Accept header
5740
- let httpHeaderAccepts = [
5741
- 'application/json'
5742
- ];
5743
- const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
5744
- if (httpHeaderAcceptSelected != undefined) {
5745
- headers = headers.set('Accept', httpHeaderAcceptSelected);
5746
- }
5747
- // to determine the Content-Type header
5748
- const consumes = [
5749
- 'application/json'
5750
- ];
5751
- const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
5752
- if (httpContentTypeSelected != undefined) {
5753
- headers = headers.set('Content-Type', httpContentTypeSelected);
5754
- }
5755
- return this.httpClient.post(`${this.basePath}/v2/api/slicex/list/compare/${encodeURIComponent(String(entity))}`, slicexRequest, {
5756
- params: queryParameters,
5757
- withCredentials: this.configuration.withCredentials,
5758
- headers: headers,
5759
- observe: observe,
5760
- reportProgress: reportProgress
5761
- });
5762
- }
5763
- getSlicexGridDetailsUsingPOST(entity, slicexRequestExt, reqId, token, observe = 'body', reportProgress = false) {
5764
- if (entity === null || entity === undefined) {
5765
- throw new Error('Required parameter entity was null or undefined when calling getSlicexGridDetailsUsingPOST.');
5766
- }
5767
- if (slicexRequestExt === null || slicexRequestExt === undefined) {
5768
- throw new Error('Required parameter slicexRequestExt was null or undefined when calling getSlicexGridDetailsUsingPOST.');
5769
- }
5770
- let headers = this.defaultHeaders;
5771
- if (reqId !== undefined && reqId !== null) {
5772
- headers = headers.set('reqId', String(reqId));
5773
- }
5774
- if (token !== undefined && token !== null) {
5775
- headers = headers.set('token', String(token));
5776
- }
5777
- // to determine the Accept header
5778
- let httpHeaderAccepts = [
5779
- 'application/json'
5780
- ];
5781
- const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
5782
- if (httpHeaderAcceptSelected != undefined) {
5783
- headers = headers.set('Accept', httpHeaderAcceptSelected);
5784
- }
5785
- // to determine the Content-Type header
5786
- const consumes = [
5787
- 'application/json'
5788
- ];
5789
- const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
5790
- if (httpContentTypeSelected != undefined) {
5791
- headers = headers.set('Content-Type', httpContentTypeSelected);
5792
- }
5793
- return this.httpClient.post(`${this.basePath}/v2/api/slicex/list/details/${encodeURIComponent(String(entity))}`, slicexRequestExt, {
5794
- withCredentials: this.configuration.withCredentials,
5795
- headers: headers,
5796
- observe: observe,
5797
- reportProgress: reportProgress
5798
- });
5799
- }
5800
5341
  getSlicexListDataForExportUsingPOST(entity, slicexRequest, reqId, sort, token, observe = 'body', reportProgress = false) {
5801
5342
  if (entity === null || entity === undefined) {
5802
5343
  throw new Error('Required parameter entity was null or undefined when calling getSlicexListDataForExportUsingPOST.');
@@ -5840,14 +5381,18 @@ class SliceXControllerService {
5840
5381
  });
5841
5382
  }
5842
5383
  }
5843
- SliceXControllerService.decorators = [
5844
- { type: Injectable }
5845
- ];
5846
- SliceXControllerService.ctorParameters = () => [
5847
- { type: HttpClient },
5848
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
5849
- { type: Configuration, decorators: [{ type: Optional }] }
5850
- ];
5384
+ SliceXControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: SliceXControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
5385
+ SliceXControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: SliceXControllerService });
5386
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: SliceXControllerService, decorators: [{
5387
+ type: Injectable
5388
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
5389
+ type: Optional
5390
+ }, {
5391
+ type: Inject,
5392
+ args: [BASE_PATH]
5393
+ }] }, { type: Configuration, decorators: [{
5394
+ type: Optional
5395
+ }] }]; } });
5851
5396
 
5852
5397
  /**
5853
5398
  * Api Documentation
@@ -5863,7 +5408,7 @@ SliceXControllerService.ctorParameters = () => [
5863
5408
  class StrategyControllerService {
5864
5409
  constructor(httpClient, basePath, configuration) {
5865
5410
  this.httpClient = httpClient;
5866
- this.basePath = 'https://apiv2stage1.atomex.net';
5411
+ this.basePath = 'https://apiv2stage4.atomex.net';
5867
5412
  this.defaultHeaders = new HttpHeaders();
5868
5413
  this.configuration = new Configuration();
5869
5414
  if (basePath) {
@@ -6454,14 +5999,18 @@ class StrategyControllerService {
6454
5999
  });
6455
6000
  }
6456
6001
  }
6457
- StrategyControllerService.decorators = [
6458
- { type: Injectable }
6459
- ];
6460
- StrategyControllerService.ctorParameters = () => [
6461
- { type: HttpClient },
6462
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
6463
- { type: Configuration, decorators: [{ type: Optional }] }
6464
- ];
6002
+ StrategyControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: StrategyControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
6003
+ StrategyControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: StrategyControllerService });
6004
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: StrategyControllerService, decorators: [{
6005
+ type: Injectable
6006
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
6007
+ type: Optional
6008
+ }, {
6009
+ type: Inject,
6010
+ args: [BASE_PATH]
6011
+ }] }, { type: Configuration, decorators: [{
6012
+ type: Optional
6013
+ }] }]; } });
6465
6014
 
6466
6015
  /**
6467
6016
  * Api Documentation
@@ -6477,7 +6026,7 @@ StrategyControllerService.ctorParameters = () => [
6477
6026
  class UILoggerControllerService {
6478
6027
  constructor(httpClient, basePath, configuration) {
6479
6028
  this.httpClient = httpClient;
6480
- this.basePath = 'https://apiv2stage1.atomex.net';
6029
+ this.basePath = 'https://apiv2stage4.atomex.net';
6481
6030
  this.defaultHeaders = new HttpHeaders();
6482
6031
  this.configuration = new Configuration();
6483
6032
  if (basePath) {
@@ -6541,14 +6090,18 @@ class UILoggerControllerService {
6541
6090
  });
6542
6091
  }
6543
6092
  }
6544
- UILoggerControllerService.decorators = [
6545
- { type: Injectable }
6546
- ];
6547
- UILoggerControllerService.ctorParameters = () => [
6548
- { type: HttpClient },
6549
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
6550
- { type: Configuration, decorators: [{ type: Optional }] }
6551
- ];
6093
+ UILoggerControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: UILoggerControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
6094
+ UILoggerControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: UILoggerControllerService });
6095
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: UILoggerControllerService, decorators: [{
6096
+ type: Injectable
6097
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
6098
+ type: Optional
6099
+ }, {
6100
+ type: Inject,
6101
+ args: [BASE_PATH]
6102
+ }] }, { type: Configuration, decorators: [{
6103
+ type: Optional
6104
+ }] }]; } });
6552
6105
 
6553
6106
  /**
6554
6107
  * Api Documentation
@@ -6564,7 +6117,7 @@ UILoggerControllerService.ctorParameters = () => [
6564
6117
  class UserPreferenceControllerService {
6565
6118
  constructor(httpClient, basePath, configuration) {
6566
6119
  this.httpClient = httpClient;
6567
- this.basePath = 'https://apiv2stage1.atomex.net';
6120
+ this.basePath = 'https://apiv2stage4.atomex.net';
6568
6121
  this.defaultHeaders = new HttpHeaders();
6569
6122
  this.configuration = new Configuration();
6570
6123
  if (basePath) {
@@ -6710,27 +6263,20 @@ class UserPreferenceControllerService {
6710
6263
  });
6711
6264
  }
6712
6265
  }
6713
- UserPreferenceControllerService.decorators = [
6714
- { type: Injectable }
6715
- ];
6716
- UserPreferenceControllerService.ctorParameters = () => [
6717
- { type: HttpClient },
6718
- { type: String, decorators: [{ type: Optional }, { type: Inject, args: [BASE_PATH,] }] },
6719
- { type: Configuration, decorators: [{ type: Optional }] }
6720
- ];
6721
-
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];
6723
-
6724
- var ActivityLogsCreativeSetsBulkUpdateDTO;
6725
- (function (ActivityLogsCreativeSetsBulkUpdateDTO) {
6726
- ActivityLogsCreativeSetsBulkUpdateDTO.StatusEnum = {
6727
- PENDING: 'PENDING',
6728
- INPROGRESS: 'IN_PROGRESS',
6729
- FAILED: 'FAILED',
6730
- SUCCESS: 'SUCCESS',
6731
- PARTIALSUCCESS: 'PARTIAL_SUCCESS'
6732
- };
6733
- })(ActivityLogsCreativeSetsBulkUpdateDTO || (ActivityLogsCreativeSetsBulkUpdateDTO = {}));
6266
+ UserPreferenceControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: UserPreferenceControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
6267
+ UserPreferenceControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: UserPreferenceControllerService });
6268
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: UserPreferenceControllerService, decorators: [{
6269
+ type: Injectable
6270
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
6271
+ type: Optional
6272
+ }, {
6273
+ type: Inject,
6274
+ args: [BASE_PATH]
6275
+ }] }, { type: Configuration, decorators: [{
6276
+ type: Optional
6277
+ }] }]; } });
6278
+
6279
+ 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];
6734
6280
 
6735
6281
  var ActivityLogsStrategyBulkUpdateDTO;
6736
6282
  (function (ActivityLogsStrategyBulkUpdateDTO) {
@@ -6895,37 +6441,6 @@ var AuctionTypeEditField;
6895
6441
  * Do not edit the class manually.
6896
6442
  */
6897
6443
 
6898
- /**
6899
- * Api Documentation
6900
- * Api Documentation
6901
- *
6902
- * OpenAPI spec version: 1.0
6903
- *
6904
- *
6905
- * NOTE: This class is auto generated by the swagger code generator program.
6906
- * https://github.com/swagger-api/swagger-codegen.git
6907
- * Do not edit the class manually.
6908
- */
6909
- var AudienceBackfillQueryTemplateRequest;
6910
- (function (AudienceBackfillQueryTemplateRequest) {
6911
- AudienceBackfillQueryTemplateRequest.DurationUnitEnum = {
6912
- MINUTE: 'MINUTE',
6913
- HOUR: 'HOUR',
6914
- DAY: 'DAY',
6915
- WEEK: 'WEEK',
6916
- MONTH: 'MONTH'
6917
- };
6918
- })(AudienceBackfillQueryTemplateRequest || (AudienceBackfillQueryTemplateRequest = {}));
6919
-
6920
- var AudienceBackfillRequest;
6921
- (function (AudienceBackfillRequest) {
6922
- AudienceBackfillRequest.BackfillScheduleEnum = {
6923
- ONLYONCE: 'ONLY_ONCE',
6924
- ONCEADAY: 'ONCE_A_DAY',
6925
- ONCEAWEEK: 'ONCE_A_WEEK'
6926
- };
6927
- })(AudienceBackfillRequest || (AudienceBackfillRequest = {}));
6928
-
6929
6444
  var AudienceDTO;
6930
6445
  (function (AudienceDTO) {
6931
6446
  AudienceDTO.AudienceTypeEnum = {
@@ -7044,18 +6559,6 @@ var AudiencePerformanceDTO;
7044
6559
  * Do not edit the class manually.
7045
6560
  */
7046
6561
 
7047
- /**
7048
- * Api Documentation
7049
- * Api Documentation
7050
- *
7051
- * OpenAPI spec version: 1.0
7052
- *
7053
- *
7054
- * NOTE: This class is auto generated by the swagger code generator program.
7055
- * https://github.com/swagger-api/swagger-codegen.git
7056
- * Do not edit the class manually.
7057
- */
7058
-
7059
6562
  /**
7060
6563
  * Api Documentation
7061
6564
  * Api Documentation
@@ -7079,9 +6582,7 @@ var BaseModelWithCreativeSetType;
7079
6582
  DYNAMICIMAGE: 'DYNAMIC_IMAGE',
7080
6583
  DYNAMICMACRO: 'DYNAMIC_MACRO',
7081
6584
  DYNAMICHTML: 'DYNAMIC_HTML',
7082
- DYNAMICVIDEO: 'DYNAMIC_VIDEO',
7083
- HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
7084
- HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
6585
+ DYNAMICVIDEO: 'DYNAMIC_VIDEO'
7085
6586
  };
7086
6587
  })(BaseModelWithCreativeSetType || (BaseModelWithCreativeSetType = {}));
7087
6588
 
@@ -7157,18 +6658,6 @@ var BaseModelWithCreativeSetType;
7157
6658
  * Do not edit the class manually.
7158
6659
  */
7159
6660
 
7160
- /**
7161
- * Api Documentation
7162
- * Api Documentation
7163
- *
7164
- * OpenAPI spec version: 1.0
7165
- *
7166
- *
7167
- * NOTE: This class is auto generated by the swagger code generator program.
7168
- * https://github.com/swagger-api/swagger-codegen.git
7169
- * Do not edit the class manually.
7170
- */
7171
-
7172
6661
  var ClickDestination;
7173
6662
  (function (ClickDestination) {
7174
6663
  ClickDestination.CampaignTypeEnum = {
@@ -7308,13 +6797,19 @@ var CreativeFiles;
7308
6797
  };
7309
6798
  })(CreativeFiles || (CreativeFiles = {}));
7310
6799
 
6800
+ /**
6801
+ * Api Documentation
6802
+ * Api Documentation
6803
+ *
6804
+ * OpenAPI spec version: 1.0
6805
+ *
6806
+ *
6807
+ * NOTE: This class is auto generated by the swagger code generator program.
6808
+ * https://github.com/swagger-api/swagger-codegen.git
6809
+ * Do not edit the class manually.
6810
+ */
7311
6811
  var CreativeHtmlFileForSet;
7312
6812
  (function (CreativeHtmlFileForSet) {
7313
- CreativeHtmlFileForSet.TemplateTypeEnum = {
7314
- DCO: 'DCO',
7315
- HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
7316
- HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
7317
- };
7318
6813
  CreativeHtmlFileForSet.TypeEnum = {
7319
6814
  Image: 'image',
7320
6815
  Html: 'html',
@@ -7357,9 +6852,7 @@ var CreativeSetDashboardMetric;
7357
6852
  DYNAMICIMAGE: 'DYNAMIC_IMAGE',
7358
6853
  DYNAMICMACRO: 'DYNAMIC_MACRO',
7359
6854
  DYNAMICHTML: 'DYNAMIC_HTML',
7360
- DYNAMICVIDEO: 'DYNAMIC_VIDEO',
7361
- HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
7362
- HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
6855
+ DYNAMICVIDEO: 'DYNAMIC_VIDEO'
7363
6856
  };
7364
6857
  })(CreativeSetDashboardMetric || (CreativeSetDashboardMetric = {}));
7365
6858
 
@@ -7375,9 +6868,7 @@ var CreativeSetDetails;
7375
6868
  DYNAMICIMAGE: 'DYNAMIC_IMAGE',
7376
6869
  DYNAMICMACRO: 'DYNAMIC_MACRO',
7377
6870
  DYNAMICHTML: 'DYNAMIC_HTML',
7378
- DYNAMICVIDEO: 'DYNAMIC_VIDEO',
7379
- HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
7380
- HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
6871
+ DYNAMICVIDEO: 'DYNAMIC_VIDEO'
7381
6872
  };
7382
6873
  })(CreativeSetDetails || (CreativeSetDetails = {}));
7383
6874
 
@@ -7393,24 +6884,10 @@ var CreativeSetRequest;
7393
6884
  DYNAMICIMAGE: 'DYNAMIC_IMAGE',
7394
6885
  DYNAMICMACRO: 'DYNAMIC_MACRO',
7395
6886
  DYNAMICHTML: 'DYNAMIC_HTML',
7396
- DYNAMICVIDEO: 'DYNAMIC_VIDEO',
7397
- HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
7398
- HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
6887
+ DYNAMICVIDEO: 'DYNAMIC_VIDEO'
7399
6888
  };
7400
6889
  })(CreativeSetRequest || (CreativeSetRequest = {}));
7401
6890
 
7402
- /**
7403
- * Api Documentation
7404
- * Api Documentation
7405
- *
7406
- * OpenAPI spec version: 1.0
7407
- *
7408
- *
7409
- * NOTE: This class is auto generated by the swagger code generator program.
7410
- * https://github.com/swagger-api/swagger-codegen.git
7411
- * Do not edit the class manually.
7412
- */
7413
-
7414
6891
  /**
7415
6892
  * Api Documentation
7416
6893
  * Api Documentation
@@ -7434,9 +6911,7 @@ var CreativeSetResponse;
7434
6911
  DYNAMICIMAGE: 'DYNAMIC_IMAGE',
7435
6912
  DYNAMICMACRO: 'DYNAMIC_MACRO',
7436
6913
  DYNAMICHTML: 'DYNAMIC_HTML',
7437
- DYNAMICVIDEO: 'DYNAMIC_VIDEO',
7438
- HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
7439
- HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
6914
+ DYNAMICVIDEO: 'DYNAMIC_VIDEO'
7440
6915
  };
7441
6916
  })(CreativeSetResponse || (CreativeSetResponse = {}));
7442
6917
 
@@ -7500,30 +6975,6 @@ var CreativeSetResponse;
7500
6975
  * Do not edit the class manually.
7501
6976
  */
7502
6977
 
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
-
7515
- /**
7516
- * Api Documentation
7517
- * Api Documentation
7518
- *
7519
- * OpenAPI spec version: 1.0
7520
- *
7521
- *
7522
- * NOTE: This class is auto generated by the swagger code generator program.
7523
- * https://github.com/swagger-api/swagger-codegen.git
7524
- * Do not edit the class manually.
7525
- */
7526
-
7527
6978
  /**
7528
6979
  * Api Documentation
7529
6980
  * Api Documentation
@@ -7579,9 +7030,7 @@ var DuplicateCreativeSetResponse;
7579
7030
  DYNAMICIMAGE: 'DYNAMIC_IMAGE',
7580
7031
  DYNAMICMACRO: 'DYNAMIC_MACRO',
7581
7032
  DYNAMICHTML: 'DYNAMIC_HTML',
7582
- DYNAMICVIDEO: 'DYNAMIC_VIDEO',
7583
- HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
7584
- HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
7033
+ DYNAMICVIDEO: 'DYNAMIC_VIDEO'
7585
7034
  };
7586
7035
  })(DuplicateCreativeSetResponse || (DuplicateCreativeSetResponse = {}));
7587
7036
 
@@ -7597,48 +7046,6 @@ var DuplicateCreativeSetResponse;
7597
7046
  * Do not edit the class manually.
7598
7047
  */
7599
7048
 
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
-
7612
- /**
7613
- * Api Documentation
7614
- * Api Documentation
7615
- *
7616
- * OpenAPI spec version: 1.0
7617
- *
7618
- *
7619
- * NOTE: This class is auto generated by the swagger code generator program.
7620
- * https://github.com/swagger-api/swagger-codegen.git
7621
- * Do not edit the class manually.
7622
- */
7623
- var DynamicVideoConfigDTO;
7624
- (function (DynamicVideoConfigDTO) {
7625
- DynamicVideoConfigDTO.ConfigKeyEnum = {
7626
- TEMPLATEID: 'TEMPLATE_ID',
7627
- LOGO: 'LOGO',
7628
- SALEPRICEPREFIX: 'SALE_PRICE_PREFIX',
7629
- ORIGINALPRICEPREFIX: 'ORIGINAL_PRICE_PREFIX',
7630
- CTA: 'CTA',
7631
- TITLELENGTH: 'TITLE_LENGTH',
7632
- TITLEROWS: 'TITLE_ROWS',
7633
- DISCOUNTSUFFIX: 'DISCOUNT_SUFFIX',
7634
- FONT: 'FONT',
7635
- ROUNDPRICE: 'ROUND_PRICE',
7636
- MUSICFILE: 'MUSIC_FILE',
7637
- VIDEOFILE: 'VIDEO_FILE',
7638
- USERESIZER: 'USE_RESIZER'
7639
- };
7640
- })(DynamicVideoConfigDTO || (DynamicVideoConfigDTO = {}));
7641
-
7642
7049
  /**
7643
7050
  * Api Documentation
7644
7051
  * Api Documentation
@@ -7776,30 +7183,6 @@ var GeoListRequest;
7776
7183
  };
7777
7184
  })(GeoListRequest || (GeoListRequest = {}));
7778
7185
 
7779
- /**
7780
- * Api Documentation
7781
- * Api Documentation
7782
- *
7783
- * OpenAPI spec version: 1.0
7784
- *
7785
- *
7786
- * NOTE: This class is auto generated by the swagger code generator program.
7787
- * https://github.com/swagger-api/swagger-codegen.git
7788
- * Do not edit the class manually.
7789
- */
7790
-
7791
- /**
7792
- * Api Documentation
7793
- * Api Documentation
7794
- *
7795
- * OpenAPI spec version: 1.0
7796
- *
7797
- *
7798
- * NOTE: This class is auto generated by the swagger code generator program.
7799
- * https://github.com/swagger-api/swagger-codegen.git
7800
- * Do not edit the class manually.
7801
- */
7802
-
7803
7186
  /**
7804
7187
  * Api Documentation
7805
7188
  * Api Documentation
@@ -7872,18 +7255,6 @@ var MetaRuleDto;
7872
7255
  * Do not edit the class manually.
7873
7256
  */
7874
7257
 
7875
- /**
7876
- * Api Documentation
7877
- * Api Documentation
7878
- *
7879
- * OpenAPI spec version: 1.0
7880
- *
7881
- *
7882
- * NOTE: This class is auto generated by the swagger code generator program.
7883
- * https://github.com/swagger-api/swagger-codegen.git
7884
- * Do not edit the class manually.
7885
- */
7886
-
7887
7258
  /**
7888
7259
  * Api Documentation
7889
7260
  * Api Documentation
@@ -8251,11 +7622,6 @@ var StrategyDTO;
8251
7622
  DAYWEIGHTEDRANDOM: 'PS_DAY_WEIGHTED_RANDOM',
8252
7623
  ADVPRCONTENTTS: 'PS_ADV_PR_CONTENT_TS'
8253
7624
  };
8254
- StrategyDTO.PublisherTypesEnum = {
8255
- DIRECT: 'DIRECT',
8256
- RESELLER: 'RESELLER',
8257
- UNKNOWN: 'UNKNOWN'
8258
- };
8259
7625
  })(StrategyDTO || (StrategyDTO = {}));
8260
7626
 
8261
7627
  /**
@@ -8494,6 +7860,12 @@ var VideoProperties;
8494
7860
  */
8495
7861
 
8496
7862
  class ApiModule {
7863
+ static forRoot(configurationFactory) {
7864
+ return {
7865
+ ngModule: ApiModule,
7866
+ providers: [{ provide: Configuration, useFactory: configurationFactory }]
7867
+ };
7868
+ }
8497
7869
  constructor(parentModule, http) {
8498
7870
  if (parentModule) {
8499
7871
  throw new Error('ApiModule is already loaded. Import in your base AppModule only.');
@@ -8503,54 +7875,77 @@ class ApiModule {
8503
7875
  'See also https://github.com/angular/angular/issues/20575');
8504
7876
  }
8505
7877
  }
8506
- static forRoot(configurationFactory) {
8507
- return {
8508
- ngModule: ApiModule,
8509
- providers: [{ provide: Configuration, useFactory: configurationFactory }]
8510
- };
8511
- }
8512
7878
  }
8513
- ApiModule.decorators = [
8514
- { type: NgModule, args: [{
8515
- imports: [],
8516
- declarations: [],
8517
- exports: [],
8518
- providers: [
8519
- AdminControllerService,
8520
- AdvertiserControllerService,
8521
- AppSettingsControllerService,
8522
- AudienceControllerService,
8523
- AuditControllerService,
8524
- BulkStrategyControllerService,
8525
- CSSThemeController_Service,
8526
- CampaignControllerService,
8527
- CatalogControllerService,
8528
- ClickDestinationControllerService,
8529
- CreativeControllerService,
8530
- CreativeSetsControllerService,
8531
- CreativeTemplateThemesControllerService,
8532
- CreativeTemplateVariablesControllerService,
8533
- CreativeTemplatesControllerService,
8534
- CustomerReportingControllerService,
8535
- DashboardControllerService,
8536
- NotificationsControllerService,
8537
- PixelControllerService,
8538
- ReportingControllerService,
8539
- SliceXControllerService,
8540
- StrategyControllerService,
8541
- UILoggerControllerService,
8542
- UserPreferenceControllerService
8543
- ]
8544
- },] }
8545
- ];
8546
- ApiModule.ctorParameters = () => [
8547
- { type: ApiModule, decorators: [{ type: Optional }, { type: SkipSelf }] },
8548
- { type: HttpClient, decorators: [{ type: Optional }] }
8549
- ];
7879
+ ApiModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: ApiModule, deps: [{ token: ApiModule, optional: true, skipSelf: true }, { token: i1.HttpClient, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
7880
+ ApiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.0", ngImport: i0, type: ApiModule });
7881
+ ApiModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: ApiModule, providers: [
7882
+ AdminControllerService,
7883
+ AdvertiserControllerService,
7884
+ AppSettingsControllerService,
7885
+ AudienceControllerService,
7886
+ AuditControllerService,
7887
+ BulkStrategyControllerService,
7888
+ CSSThemeController_Service,
7889
+ CampaignControllerService,
7890
+ CatalogControllerService,
7891
+ ClickDestinationControllerService,
7892
+ CreativeControllerService,
7893
+ CreativeSetsControllerService,
7894
+ CreativeTemplateThemesControllerService,
7895
+ CreativeTemplateVariablesControllerService,
7896
+ CreativeTemplatesControllerService,
7897
+ DashboardControllerService,
7898
+ NotificationsControllerService,
7899
+ PixelControllerService,
7900
+ ReportingControllerService,
7901
+ SliceXControllerService,
7902
+ StrategyControllerService,
7903
+ UILoggerControllerService,
7904
+ UserPreferenceControllerService
7905
+ ] });
7906
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.0", ngImport: i0, type: ApiModule, decorators: [{
7907
+ type: NgModule,
7908
+ args: [{
7909
+ imports: [],
7910
+ declarations: [],
7911
+ exports: [],
7912
+ providers: [
7913
+ AdminControllerService,
7914
+ AdvertiserControllerService,
7915
+ AppSettingsControllerService,
7916
+ AudienceControllerService,
7917
+ AuditControllerService,
7918
+ BulkStrategyControllerService,
7919
+ CSSThemeController_Service,
7920
+ CampaignControllerService,
7921
+ CatalogControllerService,
7922
+ ClickDestinationControllerService,
7923
+ CreativeControllerService,
7924
+ CreativeSetsControllerService,
7925
+ CreativeTemplateThemesControllerService,
7926
+ CreativeTemplateVariablesControllerService,
7927
+ CreativeTemplatesControllerService,
7928
+ DashboardControllerService,
7929
+ NotificationsControllerService,
7930
+ PixelControllerService,
7931
+ ReportingControllerService,
7932
+ SliceXControllerService,
7933
+ StrategyControllerService,
7934
+ UILoggerControllerService,
7935
+ UserPreferenceControllerService
7936
+ ]
7937
+ }]
7938
+ }], ctorParameters: function () { return [{ type: ApiModule, decorators: [{
7939
+ type: Optional
7940
+ }, {
7941
+ type: SkipSelf
7942
+ }] }, { type: i1.HttpClient, decorators: [{
7943
+ type: Optional
7944
+ }] }]; } });
8550
7945
 
8551
7946
  /**
8552
7947
  * Generated bundle index. Do not edit.
8553
7948
  */
8554
7949
 
8555
- 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 };
8556
- //# sourceMappingURL=revxui-api-clients-ts.js.map
7950
+ export { APIS, ActivityLogsStrategyBulkUpdateDTO, AdminControllerService, AdvertiserControllerService, ApiModule, AppSettingsControllerService, AppSettingsDTO, AppSettingsPropertyDTO, AuctionTypeEditField, 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 };
7951
+ //# sourceMappingURL=revxui-api-clients-ts.mjs.map