@revxui/api-clients-ts 0.10.337 → 0.10.339
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api/api.d.ts +3 -1
- package/api/customerReportingController.service.d.ts +40 -0
- package/api/strategyController.service.d.ts +13 -0
- package/bundles/revxui-api-clients-ts.umd.js +127 -1
- package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
- package/bundles/revxui-api-clients-ts.umd.min.js +1 -1
- package/bundles/revxui-api-clients-ts.umd.min.js.map +1 -1
- package/esm2015/api/api.js +4 -2
- package/esm2015/api/customerReportingController.service.js +87 -0
- package/esm2015/api/strategyController.service.js +38 -1
- package/esm2015/api.module.js +3 -1
- package/esm2015/model/customerReportingData.js +13 -0
- package/esm2015/model/customerReportingDataListResponse.js +2 -0
- package/esm2015/model/customerReportingRequest.js +13 -0
- package/esm2015/model/customerReportingResponse.js +2 -0
- package/esm2015/model/models.js +5 -1
- package/fesm2015/revxui-api-clients-ts.js +146 -2
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/customerReportingData.d.ts +20 -0
- package/model/customerReportingDataListResponse.d.ts +15 -0
- package/model/customerReportingRequest.d.ts +18 -0
- package/model/customerReportingResponse.d.ts +17 -0
- package/model/models.d.ts +4 -0
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Api Documentation
|
|
3
|
+
* Api Documentation
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface CustomerReportingData {
|
|
13
|
+
campaign_id?: string;
|
|
14
|
+
clicks?: number;
|
|
15
|
+
cost?: number;
|
|
16
|
+
cpc?: number;
|
|
17
|
+
cpm?: number;
|
|
18
|
+
ctr?: number;
|
|
19
|
+
impressions?: number;
|
|
20
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Api Documentation
|
|
3
|
+
* Api Documentation
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { CustomerReportingData } from './customerReportingData';
|
|
13
|
+
export interface CustomerReportingDataListResponse {
|
|
14
|
+
data_list?: Array<CustomerReportingData>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Api Documentation
|
|
3
|
+
* Api Documentation
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface CustomerReportingRequest {
|
|
13
|
+
bizdate?: string;
|
|
14
|
+
campaignIds?: Array<string>;
|
|
15
|
+
channel?: string;
|
|
16
|
+
sign?: string;
|
|
17
|
+
timestamp?: number;
|
|
18
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Api Documentation
|
|
3
|
+
* Api Documentation
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { CustomerReportingDataListResponse } from './customerReportingDataListResponse';
|
|
13
|
+
export interface CustomerReportingResponse {
|
|
14
|
+
code?: number;
|
|
15
|
+
data?: CustomerReportingDataListResponse;
|
|
16
|
+
message?: string;
|
|
17
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -160,6 +160,10 @@ export * from './creativeStrategyAssociationStatus';
|
|
|
160
160
|
export * from './creativeTemplateDTO';
|
|
161
161
|
export * from './creativeTemplatesMetadataDTO';
|
|
162
162
|
export * from './creativeThirdPartyAdTag';
|
|
163
|
+
export * from './customerReportingData';
|
|
164
|
+
export * from './customerReportingDataListResponse';
|
|
165
|
+
export * from './customerReportingRequest';
|
|
166
|
+
export * from './customerReportingResponse';
|
|
163
167
|
export * from './dashboardData';
|
|
164
168
|
export * from './dashboardFilters';
|
|
165
169
|
export * from './dashboardMetrics';
|