@revxui/api-clients-ts 1.1.218 → 1.1.220
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api/advertiserController.service.d.ts +14 -0
- package/api/api.d.ts +1 -3
- package/bundles/revxui-api-clients-ts.umd.js +88 -390
- package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
- package/esm2015/api/adminController.service.js +2 -2
- package/esm2015/api/advertiserController.service.js +38 -2
- package/esm2015/api/api.js +2 -4
- package/esm2015/api/appSettingsController.service.js +2 -2
- package/esm2015/api/audienceController.service.js +2 -2
- package/esm2015/api/auditController.service.js +2 -2
- package/esm2015/api/bidFunnelController.service.js +2 -2
- package/esm2015/api/bulkStrategyController.service.js +2 -2
- package/esm2015/api/cSSThemeController_.service.js +2 -2
- package/esm2015/api/campaignController.service.js +2 -2
- package/esm2015/api/catalogController.service.js +2 -2
- package/esm2015/api/clickDestinationController.service.js +2 -2
- package/esm2015/api/creativeController.service.js +2 -2
- package/esm2015/api/creativeSetsController.service.js +2 -2
- package/esm2015/api/creativeTemplateThemesController.service.js +2 -2
- package/esm2015/api/creativeTemplateVariablesController.service.js +2 -2
- package/esm2015/api/creativeTemplatesController.service.js +2 -2
- package/esm2015/api/customerReportingController.service.js +2 -2
- package/esm2015/api/dashboardController.service.js +2 -2
- package/esm2015/api/notificationsController.service.js +2 -2
- package/esm2015/api/pixelController.service.js +2 -2
- package/esm2015/api/reportingController.service.js +2 -2
- package/esm2015/api/sliceXController.service.js +2 -2
- package/esm2015/api/strategyController.service.js +2 -2
- package/esm2015/api/strategyTemplateController.service.js +2 -2
- package/esm2015/api/uILoggerController.service.js +2 -2
- package/esm2015/api/userPreferenceController.service.js +2 -2
- package/esm2015/api.module.js +1 -3
- package/esm2015/model/audienceDTO.js +5 -1
- package/esm2015/model/audienceStrDeviceDTO.js +2 -0
- package/esm2015/model/audienceStrEditField.js +1 -1
- package/esm2015/model/deviceTargetModel.js +19 -0
- package/esm2015/model/models.js +3 -11
- package/esm2015/model/strategyDTO.js +1 -1
- package/fesm2015/revxui-api-clients-ts.js +87 -387
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/audienceDTO.d.ts +6 -0
- package/model/{audienceStrDTO.d.ts → audienceStrDeviceDTO.d.ts} +4 -4
- package/model/audienceStrEditField.d.ts +3 -3
- package/model/deviceTargetModel.d.ts +23 -0
- package/model/models.d.ts +2 -10
- package/model/strategyDTO.d.ts +5 -4
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
- package/api/reportingSchedulerController.service.d.ts +0 -122
- package/esm2015/api/reportingSchedulerController.service.js +0 -303
- package/esm2015/model/apiListResponseBaseModel.js +0 -2
- package/esm2015/model/apiListResponseReportingSchedulerResponse.js +0 -2
- package/esm2015/model/apiListResponseReportingSchedulerUserResponse.js +0 -2
- package/esm2015/model/apiResponseObjectReportingSchedulerResponse.js +0 -2
- package/esm2015/model/audienceStrDTO.js +0 -2
- package/esm2015/model/jobResponse.js +0 -22
- package/esm2015/model/reportingSchedulerRequest.js +0 -2
- package/esm2015/model/reportingSchedulerResponse.js +0 -17
- package/esm2015/model/reportingSchedulerUserResponse.js +0 -13
- package/esm2015/model/schedulerRequest.js +0 -10
- package/model/apiListResponseBaseModel.d.ts +0 -16
- package/model/apiListResponseReportingSchedulerResponse.d.ts +0 -16
- package/model/apiListResponseReportingSchedulerUserResponse.d.ts +0 -16
- package/model/apiResponseObjectReportingSchedulerResponse.d.ts +0 -17
- package/model/jobResponse.d.ts +0 -29
- package/model/reportingSchedulerRequest.d.ts +0 -20
- package/model/reportingSchedulerResponse.d.ts +0 -47
- package/model/reportingSchedulerUserResponse.d.ts +0 -15
- package/model/schedulerRequest.d.ts +0 -27
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @revxui/api-clients-ts@1.1.
|
|
1
|
+
## @revxui/api-clients-ts@1.1.220
|
|
2
2
|
|
|
3
3
|
### Building
|
|
4
4
|
|
|
@@ -19,7 +19,7 @@ Navigate to the folder of your consuming project and run one of next commands.
|
|
|
19
19
|
_published:_
|
|
20
20
|
|
|
21
21
|
```
|
|
22
|
-
npm install @revxui/api-clients-ts@1.1.
|
|
22
|
+
npm install @revxui/api-clients-ts@1.1.220 --save
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
_without publishing (not recommended):_
|
|
@@ -19,6 +19,7 @@ import { ApiResponseObjectMaplongResponseMessage } from '../model/apiResponseObj
|
|
|
19
19
|
import { ApiResponseObjectSkadTargetPrivileges } from '../model/apiResponseObjectSkadTargetPrivileges';
|
|
20
20
|
import { ApiResponseObjectTag } from '../model/apiResponseObjectTag';
|
|
21
21
|
import { ApiResponseObjectboolean } from '../model/apiResponseObjectboolean';
|
|
22
|
+
import { ApiResponseObjectstring } from '../model/apiResponseObjectstring';
|
|
22
23
|
import { SearchRequest } from '../model/searchRequest';
|
|
23
24
|
import { Configuration } from '../configuration';
|
|
24
25
|
export declare class AdvertiserControllerService {
|
|
@@ -68,6 +69,19 @@ export declare class AdvertiserControllerService {
|
|
|
68
69
|
deactivateAdvertiserUsingPOST(commaSepratedIds: string, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectMaplongResponseMessage>;
|
|
69
70
|
deactivateAdvertiserUsingPOST(commaSepratedIds: string, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectMaplongResponseMessage>>;
|
|
70
71
|
deactivateAdvertiserUsingPOST(commaSepratedIds: string, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectMaplongResponseMessage>>;
|
|
72
|
+
/**
|
|
73
|
+
* get the data for individual graph under advertiser analytics page
|
|
74
|
+
*
|
|
75
|
+
* @param id id
|
|
76
|
+
* @param type type
|
|
77
|
+
* @param reqId request id
|
|
78
|
+
* @param token Auth Token
|
|
79
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
80
|
+
* @param reportProgress flag to report request and response progress.
|
|
81
|
+
*/
|
|
82
|
+
getAdvertiserAnalyticsUsingGET(id: number, type: string, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectstring>;
|
|
83
|
+
getAdvertiserAnalyticsUsingGET(id: number, type: string, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectstring>>;
|
|
84
|
+
getAdvertiserAnalyticsUsingGET(id: number, type: string, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectstring>>;
|
|
71
85
|
/**
|
|
72
86
|
* get Advertiser Settings by Id
|
|
73
87
|
*
|
package/api/api.d.ts
CHANGED
|
@@ -40,8 +40,6 @@ export * from './pixelController.service';
|
|
|
40
40
|
import { PixelControllerService } from './pixelController.service';
|
|
41
41
|
export * from './reportingController.service';
|
|
42
42
|
import { ReportingControllerService } from './reportingController.service';
|
|
43
|
-
export * from './reportingSchedulerController.service';
|
|
44
|
-
import { ReportingSchedulerControllerService } from './reportingSchedulerController.service';
|
|
45
43
|
export * from './sliceXController.service';
|
|
46
44
|
import { SliceXControllerService } from './sliceXController.service';
|
|
47
45
|
export * from './strategyController.service';
|
|
@@ -52,4 +50,4 @@ export * from './uILoggerController.service';
|
|
|
52
50
|
import { UILoggerControllerService } from './uILoggerController.service';
|
|
53
51
|
export * from './userPreferenceController.service';
|
|
54
52
|
import { UserPreferenceControllerService } from './userPreferenceController.service';
|
|
55
|
-
export declare const APIS: (typeof AdminControllerService | typeof AdvertiserControllerService | typeof AppSettingsControllerService | typeof AudienceControllerService | typeof AuditControllerService | typeof BidFunnelControllerService | typeof BulkStrategyControllerService | typeof CSSThemeController_Service | typeof CampaignControllerService | typeof CatalogControllerService | typeof ClickDestinationControllerService | typeof CreativeControllerService | typeof CreativeSetsControllerService | typeof CreativeTemplateThemesControllerService | typeof CreativeTemplateVariablesControllerService | typeof CreativeTemplatesControllerService | typeof CustomerReportingControllerService | typeof DashboardControllerService | typeof NotificationsControllerService | typeof PixelControllerService | typeof ReportingControllerService | typeof
|
|
53
|
+
export declare const APIS: (typeof AdminControllerService | typeof AdvertiserControllerService | typeof AppSettingsControllerService | typeof AudienceControllerService | typeof AuditControllerService | typeof BidFunnelControllerService | typeof BulkStrategyControllerService | typeof CSSThemeController_Service | typeof CampaignControllerService | typeof CatalogControllerService | typeof ClickDestinationControllerService | typeof CreativeControllerService | typeof CreativeSetsControllerService | typeof CreativeTemplateThemesControllerService | typeof CreativeTemplateVariablesControllerService | typeof CreativeTemplatesControllerService | typeof CustomerReportingControllerService | typeof DashboardControllerService | typeof NotificationsControllerService | typeof PixelControllerService | typeof ReportingControllerService | typeof SliceXControllerService | typeof StrategyControllerService | typeof StrategyTemplateControllerService | typeof UILoggerControllerService | typeof UserPreferenceControllerService)[];
|