@revxui/api-clients-ts 1.1.239 → 1.1.241
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/strategyController.service.d.ts +8 -8
- package/bundles/revxui-api-clients-ts.umd.js +37 -59
- 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 +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/reportingSchedulerController.service.js +2 -2
- package/esm2015/api/sliceXController.service.js +2 -2
- package/esm2015/api/strategyController.service.js +12 -12
- 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/model/creativeSetResponse.js +1 -12
- package/esm2015/model/duplicateCreativeSetResponse.js +1 -12
- package/esm2015/model/models.js +3 -1
- package/esm2015/model/strategyDTO.js +1 -1
- package/esm2015/model/targetObject.js +13 -0
- package/esm2015/model/zipCode.js +2 -0
- package/fesm2015/revxui-api-clients-ts.js +49 -59
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/creativeSetResponse.d.ts +2 -0
- package/model/duplicateCreativeSetResponse.d.ts +2 -0
- package/model/models.d.ts +2 -0
- package/model/strategyDTO.d.ts +2 -0
- package/model/targetObject.d.ts +15 -0
- package/model/zipCode.d.ts +16 -0
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
|
@@ -9,7 +9,9 @@
|
|
|
9
9
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { CreativeSetDetails } from './creativeSetDetails';
|
|
12
13
|
export interface CreativeSetResponse {
|
|
14
|
+
creativeSetDetails?: CreativeSetDetails;
|
|
13
15
|
message?: string;
|
|
14
16
|
otherCreativeSetDimensions?: Array<string>;
|
|
15
17
|
otherCreativeSetPossible?: boolean;
|
|
@@ -9,7 +9,9 @@
|
|
|
9
9
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { CreativeSetDetails } from './creativeSetDetails';
|
|
12
13
|
export interface DuplicateCreativeSetResponse {
|
|
14
|
+
creativeSetDetails?: CreativeSetDetails;
|
|
13
15
|
creativeSetId?: number;
|
|
14
16
|
message?: string;
|
|
15
17
|
otherCreativeSetDimensions?: Array<string>;
|
package/model/models.d.ts
CHANGED
|
@@ -307,6 +307,7 @@ export * from './targetGeoEditField';
|
|
|
307
307
|
export * from './targetMobileDeviceBrands';
|
|
308
308
|
export * from './targetMobileDeviceModels';
|
|
309
309
|
export * from './targetMobileDevices';
|
|
310
|
+
export * from './targetObject';
|
|
310
311
|
export * from './targetOperatingSystem';
|
|
311
312
|
export * from './targetOperatingSystemEditField';
|
|
312
313
|
export * from './targetingObject';
|
|
@@ -324,3 +325,4 @@ export * from './videoProperties';
|
|
|
324
325
|
export * from './videoTargeting';
|
|
325
326
|
export * from './whitelabelingEntity';
|
|
326
327
|
export * from './widgetPerformanceMetrics';
|
|
328
|
+
export * from './zipCode';
|
package/model/strategyDTO.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ import { TargetGeoDTO } from './targetGeoDTO';
|
|
|
23
23
|
import { TargetMobileDevices } from './targetMobileDevices';
|
|
24
24
|
import { TimeZoneDTO } from './timeZoneDTO';
|
|
25
25
|
import { VideoTargeting } from './videoTargeting';
|
|
26
|
+
import { ZipCode } from './zipCode';
|
|
26
27
|
export interface StrategyDTO {
|
|
27
28
|
active?: boolean;
|
|
28
29
|
adGroupCount?: number;
|
|
@@ -111,6 +112,7 @@ export interface StrategyDTO {
|
|
|
111
112
|
trackingParameter?: string;
|
|
112
113
|
userPurchaseFrequency?: Array<BaseModel>;
|
|
113
114
|
videoPlacement?: VideoTargeting;
|
|
115
|
+
zipCodes?: ZipCode;
|
|
114
116
|
}
|
|
115
117
|
export declare namespace StrategyDTO {
|
|
116
118
|
type AuctionTypeTargetingEnum = 'FIRST' | 'SECOND' | 'ALL';
|
|
@@ -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 TargetObject {
|
|
13
|
+
blockedList?: Array<string>;
|
|
14
|
+
targetList?: Array<string>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
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 { TargetObject } from './targetObject';
|
|
13
|
+
export interface ZipCode {
|
|
14
|
+
selectAllZipCodes?: boolean;
|
|
15
|
+
zipCodes?: TargetObject;
|
|
16
|
+
}
|