@revxui/api-clients-ts 0.10.367 → 0.10.368
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/audienceController.service.d.ts +27 -0
- package/api/dashboardController.service.d.ts +24 -24
- package/api/strategyController.service.d.ts +3 -3
- package/bundles/revxui-api-clients-ts.umd.js +96 -24
- 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 +2 -2
- package/esm2015/api/appSettingsController.service.js +2 -2
- package/esm2015/api/audienceController.service.js +70 -2
- package/esm2015/api/auditController.service.js +2 -2
- package/esm2015/api/bulkStrategyController.service.js +2 -2
- package/esm2015/api/cSSThemeController_.service.js +2 -2
- package/esm2015/api/campaignController.service.js +2 -2
- package/esm2015/api/catalogController.service.js +2 -2
- package/esm2015/api/clickDestinationController.service.js +2 -2
- package/esm2015/api/creativeController.service.js +2 -2
- package/esm2015/api/creativeSetsController.service.js +2 -2
- package/esm2015/api/creativeTemplateThemesController.service.js +2 -2
- package/esm2015/api/creativeTemplateVariablesController.service.js +2 -2
- package/esm2015/api/creativeTemplatesController.service.js +2 -2
- package/esm2015/api/customerReportingController.service.js +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/uILoggerController.service.js +2 -2
- package/esm2015/api/userPreferenceController.service.js +2 -2
- package/esm2015/model/apiResponseObjectArrayListCombinedAudienceAnalysisResponse.js +2 -0
- package/esm2015/model/audienceAnalysisRequest.js +13 -0
- package/esm2015/model/combinedAudienceAnalysisResponse.js +13 -0
- package/esm2015/model/models.js +5 -1
- package/esm2015/model/searchRequest.js +1 -1
- package/esm2015/model/totalUniqueUserRequest.js +13 -0
- package/fesm2015/revxui-api-clients-ts.js +128 -24
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/apiResponseObjectArrayListCombinedAudienceAnalysisResponse.d.ts +17 -0
- package/model/audienceAnalysisRequest.d.ts +17 -0
- package/model/combinedAudienceAnalysisResponse.d.ts +19 -0
- package/model/models.d.ts +4 -0
- package/model/searchRequest.d.ts +1 -0
- package/model/totalUniqueUserRequest.d.ts +15 -0
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
|
@@ -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 { CombinedAudienceAnalysisResponse } from './combinedAudienceAnalysisResponse';
|
|
13
|
+
export interface ApiResponseObjectArrayListCombinedAudienceAnalysisResponse {
|
|
14
|
+
error?: Error;
|
|
15
|
+
respId?: string;
|
|
16
|
+
respObject?: Array<CombinedAudienceAnalysisResponse>;
|
|
17
|
+
}
|
|
@@ -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
|
+
export interface AudienceAnalysisRequest {
|
|
13
|
+
anyAudience?: boolean;
|
|
14
|
+
attributionAudience?: Array<number>;
|
|
15
|
+
blockedAudience?: Array<number>;
|
|
16
|
+
targetedAudience?: Array<number>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
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 CombinedAudienceAnalysisResponse {
|
|
13
|
+
anyAudience?: boolean;
|
|
14
|
+
attributionAudience?: Array<number>;
|
|
15
|
+
blockedAudience?: Array<number>;
|
|
16
|
+
convUU?: number;
|
|
17
|
+
targetedAudience?: Array<number>;
|
|
18
|
+
totalUU?: number;
|
|
19
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export * from './apiResponseObjectApiListResponseCreativeSetDashboardMetric';
|
|
|
40
40
|
export * from './apiResponseObjectApiListResponseCreativeTemplateDTO';
|
|
41
41
|
export * from './apiResponseObjectApiListResponsePixel';
|
|
42
42
|
export * from './apiResponseObjectApiListResponseVariablesMappingDTO';
|
|
43
|
+
export * from './apiResponseObjectArrayListCombinedAudienceAnalysisResponse';
|
|
43
44
|
export * from './apiResponseObjectAudienceAccessDTO';
|
|
44
45
|
export * from './apiResponseObjectAudienceDTO';
|
|
45
46
|
export * from './apiResponseObjectBaseModel';
|
|
@@ -105,6 +106,7 @@ export * from './appSettingsDTO';
|
|
|
105
106
|
export * from './appSettingsPropertyDTO';
|
|
106
107
|
export * from './auctionTypeEditField';
|
|
107
108
|
export * from './audienceAccessDTO';
|
|
109
|
+
export * from './audienceAnalysisRequest';
|
|
108
110
|
export * from './audienceBackFilledStats';
|
|
109
111
|
export * from './audienceBackfillQueryTemplateRequest';
|
|
110
112
|
export * from './audienceBackfillRequest';
|
|
@@ -141,6 +143,7 @@ export * from './catalogFeed';
|
|
|
141
143
|
export * from './chartDashboardResponse';
|
|
142
144
|
export * from './clickDestination';
|
|
143
145
|
export * from './clickDestinationAutomationUrls';
|
|
146
|
+
export * from './combinedAudienceAnalysisResponse';
|
|
144
147
|
export * from './creative';
|
|
145
148
|
export * from './creativeCompactDTO';
|
|
146
149
|
export * from './creativeDTO';
|
|
@@ -277,6 +280,7 @@ export * from './targetingObject';
|
|
|
277
280
|
export * from './templateThemeDTO';
|
|
278
281
|
export * from './templateVariablesDTO';
|
|
279
282
|
export * from './timeZoneDTO';
|
|
283
|
+
export * from './totalUniqueUserRequest';
|
|
280
284
|
export * from './userPreferenceCategory';
|
|
281
285
|
export * from './userPreferenceDTO';
|
|
282
286
|
export * from './variablesMappingDTO';
|
package/model/searchRequest.d.ts
CHANGED
|
@@ -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
|
+
export interface TotalUniqueUserRequest {
|
|
13
|
+
audienceIds?: Array<number>;
|
|
14
|
+
isAnyAudience?: boolean;
|
|
15
|
+
}
|