@revxui/api-clients-ts 1.1.443 → 1.1.445
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 +0 -13
- package/esm2020/api/adminController.service.mjs +2 -2
- package/esm2020/api/advertiserController.service.mjs +2 -2
- package/esm2020/api/appSettingsController.service.mjs +2 -2
- package/esm2020/api/appsFlyerController.service.mjs +2 -2
- package/esm2020/api/audienceController.service.mjs +2 -2
- package/esm2020/api/auditController.service.mjs +2 -2
- package/esm2020/api/bidFunnelController.service.mjs +2 -2
- package/esm2020/api/bulkStrategyController.service.mjs +2 -2
- package/esm2020/api/cSSThemeController_.service.mjs +2 -2
- package/esm2020/api/campaignController.service.mjs +2 -2
- package/esm2020/api/catalogController.service.mjs +2 -2
- package/esm2020/api/clickDestinationController.service.mjs +2 -2
- package/esm2020/api/creativeController.service.mjs +2 -2
- package/esm2020/api/creativeSetsController.service.mjs +2 -2
- package/esm2020/api/creativeTemplateThemesController.service.mjs +2 -2
- package/esm2020/api/creativeTemplateVariablesController.service.mjs +2 -2
- package/esm2020/api/creativeTemplatesController.service.mjs +2 -2
- package/esm2020/api/customerReportingController.service.mjs +2 -2
- package/esm2020/api/dashboardController.service.mjs +2 -2
- package/esm2020/api/experimentsController.service.mjs +2 -2
- package/esm2020/api/notificationsController.service.mjs +2 -2
- package/esm2020/api/pixelController.service.mjs +2 -2
- package/esm2020/api/reportController.service.mjs +2 -2
- package/esm2020/api/reportingController.service.mjs +2 -2
- package/esm2020/api/reportingSchedulerController.service.mjs +2 -2
- package/esm2020/api/safeguardController.service.mjs +2 -2
- package/esm2020/api/sliceXController.service.mjs +2 -2
- package/esm2020/api/strategyController.service.mjs +2 -36
- package/esm2020/api/strategyTemplateController.service.mjs +2 -2
- package/esm2020/api/uILoggerController.service.mjs +2 -2
- package/esm2020/api/userPreferenceController.service.mjs +2 -2
- package/esm2020/model/creativeSetDetails.mjs +1 -1
- package/esm2020/model/creativeSetRequest.mjs +1 -1
- package/esm2020/model/endCards.mjs +8 -2
- package/esm2020/model/models.mjs +1 -4
- package/esm2020/model/strategy.mjs +1 -1
- package/esm2020/model/strategyDTO.mjs +1 -1
- package/fesm2015/revxui-api-clients-ts.mjs +51 -66
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +40 -79
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/creativeSetDetails.d.ts +1 -0
- package/model/creativeSetRequest.d.ts +1 -0
- package/model/endCards.d.ts +8 -0
- package/model/models.d.ts +0 -3
- package/model/strategy.d.ts +0 -2
- package/model/strategyDTO.d.ts +0 -2
- package/package.json +1 -1
- package/esm2020/model/adFormatCount.mjs +0 -13
- package/esm2020/model/apiResponseObjectMaplongAdFormatCount.mjs +0 -2
- package/esm2020/model/maplongAdFormatCount.mjs +0 -2
- package/model/adFormatCount.d.ts +0 -16
- package/model/apiResponseObjectMaplongAdFormatCount.d.ts +0 -19
- package/model/maplongAdFormatCount.d.ts +0 -15
package/model/endCards.d.ts
CHANGED
|
@@ -10,7 +10,15 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
export interface EndCards {
|
|
13
|
+
endCardType?: EndCards.EndCardTypeEnum;
|
|
13
14
|
height?: number;
|
|
14
15
|
link?: string;
|
|
15
16
|
width?: number;
|
|
16
17
|
}
|
|
18
|
+
export declare namespace EndCards {
|
|
19
|
+
type EndCardTypeEnum = 'IMAGE' | 'HTML';
|
|
20
|
+
const EndCardTypeEnum: {
|
|
21
|
+
IMAGE: EndCardTypeEnum;
|
|
22
|
+
HTML: EndCardTypeEnum;
|
|
23
|
+
};
|
|
24
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -7,7 +7,6 @@ export * from './activityLog';
|
|
|
7
7
|
export * from './activityLogsCreativeSetsBulkUpdateDTO';
|
|
8
8
|
export * from './activityLogsStrategyBulkUpdateDTO';
|
|
9
9
|
export * from './adBreak';
|
|
10
|
-
export * from './adFormatCount';
|
|
11
10
|
export * from './adPod';
|
|
12
11
|
export * from './adoDTO';
|
|
13
12
|
export * from './advertiser';
|
|
@@ -134,7 +133,6 @@ export * from './apiResponseObjectListTemplateThemeDTO';
|
|
|
134
133
|
export * from './apiResponseObjectListTemplateVariablesDTO';
|
|
135
134
|
export * from './apiResponseObjectListUserPreferenceDTO';
|
|
136
135
|
export * from './apiResponseObjectMapintResponseMessage';
|
|
137
|
-
export * from './apiResponseObjectMaplongAdFormatCount';
|
|
138
136
|
export * from './apiResponseObjectMaplongResponseMessage';
|
|
139
137
|
export * from './apiResponseObjectMaplongstring';
|
|
140
138
|
export * from './apiResponseObjectMapstringlong';
|
|
@@ -322,7 +320,6 @@ export * from './jsonNode';
|
|
|
322
320
|
export * from './lookAlikeAudienceConfigDTO';
|
|
323
321
|
export * from './macro';
|
|
324
322
|
export * from './mapintResponseMessage';
|
|
325
|
-
export * from './maplongAdFormatCount';
|
|
326
323
|
export * from './maplongResponseMessage';
|
|
327
324
|
export * from './maplongstring';
|
|
328
325
|
export * from './mapstringlong';
|
package/model/strategy.d.ts
CHANGED
|
@@ -9,11 +9,9 @@
|
|
|
9
9
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { AdFormatCount } from './adFormatCount';
|
|
13
12
|
import { BaseModel } from './baseModel';
|
|
14
13
|
export interface Strategy {
|
|
15
14
|
active?: boolean;
|
|
16
|
-
adFormatCount?: AdFormatCount;
|
|
17
15
|
advertiser?: BaseModel;
|
|
18
16
|
advertiserId?: number;
|
|
19
17
|
bidCapMax?: number;
|
package/model/strategyDTO.d.ts
CHANGED
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { AbandonedSessionUserTargeting } from './abandonedSessionUserTargeting';
|
|
13
|
-
import { AdFormatCount } from './adFormatCount';
|
|
14
13
|
import { AgeGroup } from './ageGroup';
|
|
15
14
|
import { AudienceStrDeviceDTO } from './audienceStrDeviceDTO';
|
|
16
15
|
import { BaseModel } from './baseModel';
|
|
@@ -38,7 +37,6 @@ export interface StrategyDTO {
|
|
|
38
37
|
abandonedSessionUserTargeting?: AbandonedSessionUserTargeting;
|
|
39
38
|
abtestBidAndBudgetAdjustment?: boolean;
|
|
40
39
|
active?: boolean;
|
|
41
|
-
adFormatCount?: AdFormatCount;
|
|
42
40
|
adGroupCount?: number;
|
|
43
41
|
advertiser?: BaseModel;
|
|
44
42
|
advertiserId?: number;
|
package/package.json
CHANGED
|
@@ -1,13 +0,0 @@
|
|
|
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 {};
|
|
13
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWRGb3JtYXRDb3VudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL21vZGVsL2FkRm9ybWF0Q291bnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7Ozs7R0FVRyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogQXBpIERvY3VtZW50YXRpb25cbiAqIEFwaSBEb2N1bWVudGF0aW9uXG4gKlxuICogT3BlbkFQSSBzcGVjIHZlcnNpb246IDEuMFxuICogXG4gKlxuICogTk9URTogVGhpcyBjbGFzcyBpcyBhdXRvIGdlbmVyYXRlZCBieSB0aGUgc3dhZ2dlciBjb2RlIGdlbmVyYXRvciBwcm9ncmFtLlxuICogaHR0cHM6Ly9naXRodWIuY29tL3N3YWdnZXItYXBpL3N3YWdnZXItY29kZWdlbi5naXRcbiAqIERvIG5vdCBlZGl0IHRoZSBjbGFzcyBtYW51YWxseS5cbiAqL1xuXG5cbmV4cG9ydCBpbnRlcmZhY2UgQWRGb3JtYXRDb3VudCB7IFxuICAgIGJhbm5lckNvdW50PzogbnVtYmVyO1xuICAgIG5hdGl2ZUNvdW50PzogbnVtYmVyO1xuICAgIHZpZGVvQ291bnQ/OiBudW1iZXI7XG59XG4iXX0=
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpUmVzcG9uc2VPYmplY3RNYXBsb25nQWRGb3JtYXRDb3VudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL21vZGVsL2FwaVJlc3BvbnNlT2JqZWN0TWFwbG9uZ0FkRm9ybWF0Q291bnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogQXBpIERvY3VtZW50YXRpb25cbiAqIEFwaSBEb2N1bWVudGF0aW9uXG4gKlxuICogT3BlbkFQSSBzcGVjIHZlcnNpb246IDEuMFxuICogXG4gKlxuICogTk9URTogVGhpcyBjbGFzcyBpcyBhdXRvIGdlbmVyYXRlZCBieSB0aGUgc3dhZ2dlciBjb2RlIGdlbmVyYXRvciBwcm9ncmFtLlxuICogaHR0cHM6Ly9naXRodWIuY29tL3N3YWdnZXItYXBpL3N3YWdnZXItY29kZWdlbi5naXRcbiAqIERvIG5vdCBlZGl0IHRoZSBjbGFzcyBtYW51YWxseS5cbiAqL1xuaW1wb3J0IHsgQWRGb3JtYXRDb3VudCB9IGZyb20gJy4vYWRGb3JtYXRDb3VudCc7XG5cblxuZXhwb3J0IGludGVyZmFjZSBBcGlSZXNwb25zZU9iamVjdE1hcGxvbmdBZEZvcm1hdENvdW50IHsgXG4gICAgZXJyb3I/OiBFcnJvcjtcbiAgICByZXNwSWQ/OiBzdHJpbmc7XG4gICAgcmVzcE9iamVjdD86IHsgW2tleTogc3RyaW5nXTogQWRGb3JtYXRDb3VudDsgfTtcbn1cbiJdfQ==
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFwbG9uZ0FkRm9ybWF0Q291bnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC9tYXBsb25nQWRGb3JtYXRDb3VudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBBcGkgRG9jdW1lbnRhdGlvblxuICogQXBpIERvY3VtZW50YXRpb25cbiAqXG4gKiBPcGVuQVBJIHNwZWMgdmVyc2lvbjogMS4wXG4gKiBcbiAqXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IHRoZSBzd2FnZ2VyIGNvZGUgZ2VuZXJhdG9yIHByb2dyYW0uXG4gKiBodHRwczovL2dpdGh1Yi5jb20vc3dhZ2dlci1hcGkvc3dhZ2dlci1jb2RlZ2VuLmdpdFxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG5pbXBvcnQgeyBBZEZvcm1hdENvdW50IH0gZnJvbSAnLi9hZEZvcm1hdENvdW50JztcblxuXG5leHBvcnQgaW50ZXJmYWNlIE1hcGxvbmdBZEZvcm1hdENvdW50IHsgXG4gIFtrZXk6IHN0cmluZ106IEFkRm9ybWF0Q291bnQ7XG5cblxufVxuIl19
|
package/model/adFormatCount.d.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
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 AdFormatCount {
|
|
13
|
-
bannerCount?: number;
|
|
14
|
-
nativeCount?: number;
|
|
15
|
-
videoCount?: number;
|
|
16
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
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 { AdFormatCount } from './adFormatCount';
|
|
13
|
-
export interface ApiResponseObjectMaplongAdFormatCount {
|
|
14
|
-
error?: Error;
|
|
15
|
-
respId?: string;
|
|
16
|
-
respObject?: {
|
|
17
|
-
[key: string]: AdFormatCount;
|
|
18
|
-
};
|
|
19
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 { AdFormatCount } from './adFormatCount';
|
|
13
|
-
export interface MaplongAdFormatCount {
|
|
14
|
-
[key: string]: AdFormatCount;
|
|
15
|
-
}
|