@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.
Files changed (56) hide show
  1. package/README.md +2 -2
  2. package/api/strategyController.service.d.ts +0 -13
  3. package/esm2020/api/adminController.service.mjs +2 -2
  4. package/esm2020/api/advertiserController.service.mjs +2 -2
  5. package/esm2020/api/appSettingsController.service.mjs +2 -2
  6. package/esm2020/api/appsFlyerController.service.mjs +2 -2
  7. package/esm2020/api/audienceController.service.mjs +2 -2
  8. package/esm2020/api/auditController.service.mjs +2 -2
  9. package/esm2020/api/bidFunnelController.service.mjs +2 -2
  10. package/esm2020/api/bulkStrategyController.service.mjs +2 -2
  11. package/esm2020/api/cSSThemeController_.service.mjs +2 -2
  12. package/esm2020/api/campaignController.service.mjs +2 -2
  13. package/esm2020/api/catalogController.service.mjs +2 -2
  14. package/esm2020/api/clickDestinationController.service.mjs +2 -2
  15. package/esm2020/api/creativeController.service.mjs +2 -2
  16. package/esm2020/api/creativeSetsController.service.mjs +2 -2
  17. package/esm2020/api/creativeTemplateThemesController.service.mjs +2 -2
  18. package/esm2020/api/creativeTemplateVariablesController.service.mjs +2 -2
  19. package/esm2020/api/creativeTemplatesController.service.mjs +2 -2
  20. package/esm2020/api/customerReportingController.service.mjs +2 -2
  21. package/esm2020/api/dashboardController.service.mjs +2 -2
  22. package/esm2020/api/experimentsController.service.mjs +2 -2
  23. package/esm2020/api/notificationsController.service.mjs +2 -2
  24. package/esm2020/api/pixelController.service.mjs +2 -2
  25. package/esm2020/api/reportController.service.mjs +2 -2
  26. package/esm2020/api/reportingController.service.mjs +2 -2
  27. package/esm2020/api/reportingSchedulerController.service.mjs +2 -2
  28. package/esm2020/api/safeguardController.service.mjs +2 -2
  29. package/esm2020/api/sliceXController.service.mjs +2 -2
  30. package/esm2020/api/strategyController.service.mjs +2 -36
  31. package/esm2020/api/strategyTemplateController.service.mjs +2 -2
  32. package/esm2020/api/uILoggerController.service.mjs +2 -2
  33. package/esm2020/api/userPreferenceController.service.mjs +2 -2
  34. package/esm2020/model/creativeSetDetails.mjs +1 -1
  35. package/esm2020/model/creativeSetRequest.mjs +1 -1
  36. package/esm2020/model/endCards.mjs +8 -2
  37. package/esm2020/model/models.mjs +1 -4
  38. package/esm2020/model/strategy.mjs +1 -1
  39. package/esm2020/model/strategyDTO.mjs +1 -1
  40. package/fesm2015/revxui-api-clients-ts.mjs +51 -66
  41. package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
  42. package/fesm2020/revxui-api-clients-ts.mjs +40 -79
  43. package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
  44. package/model/creativeSetDetails.d.ts +1 -0
  45. package/model/creativeSetRequest.d.ts +1 -0
  46. package/model/endCards.d.ts +8 -0
  47. package/model/models.d.ts +0 -3
  48. package/model/strategy.d.ts +0 -2
  49. package/model/strategyDTO.d.ts +0 -2
  50. package/package.json +1 -1
  51. package/esm2020/model/adFormatCount.mjs +0 -13
  52. package/esm2020/model/apiResponseObjectMaplongAdFormatCount.mjs +0 -2
  53. package/esm2020/model/maplongAdFormatCount.mjs +0 -2
  54. package/model/adFormatCount.d.ts +0 -16
  55. package/model/apiResponseObjectMaplongAdFormatCount.d.ts +0 -19
  56. package/model/maplongAdFormatCount.d.ts +0 -15
@@ -41,6 +41,7 @@ export interface CreativeSetDetails {
41
41
  nativeAssetPojo?: NativeAssetPojo;
42
42
  placebo?: boolean;
43
43
  scheduledTimezone?: BaseModel;
44
+ serverSideRedirect?: boolean;
44
45
  startTime?: number;
45
46
  strategyList?: Array<BaseModel>;
46
47
  theme?: BaseModel;
@@ -46,6 +46,7 @@ export interface CreativeSetRequest {
46
46
  placebo?: boolean;
47
47
  previewUrl?: string;
48
48
  schedulerTimezone?: number;
49
+ serverSideRedirect?: boolean;
49
50
  startTime?: number;
50
51
  strategiesToLink?: Array<BaseModel>;
51
52
  templateDimensionIds?: Array<number>;
@@ -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';
@@ -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;
@@ -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,6 +1,6 @@
1
1
  {
2
2
  "name": "@revxui/api-clients-ts",
3
- "version": "1.1.443",
3
+ "version": "1.1.445",
4
4
  "description": "swagger client for @revxui/api-clients-ts",
5
5
  "author": "Swagger Codegen Contributors",
6
6
  "keywords": [
@@ -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
@@ -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
- }