@revxui/api-clients-ts 1.1.482 → 1.1.483
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/esm2020/model/assetSelectionDTO.mjs +2 -0
- package/esm2020/model/creativeAssetOptimizationRequest.mjs +1 -1
- package/esm2020/model/endCardSelectionDTO.mjs +19 -0
- package/esm2020/model/models.mjs +3 -1
- package/fesm2015/revxui-api-clients-ts.mjs +20 -1
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +20 -1
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/assetSelectionDTO.d.ts +18 -0
- package/model/creativeAssetOptimizationRequest.d.ts +2 -3
- package/model/endCardSelectionDTO.d.ts +22 -0
- package/model/models.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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
|
+
import { EndCardSelectionDTO } from './endCardSelectionDTO';
|
|
13
|
+
import { SelectedTargetDTO } from './selectedTargetDTO';
|
|
14
|
+
export interface AssetSelectionDTO {
|
|
15
|
+
endCard?: EndCardSelectionDTO;
|
|
16
|
+
selectedTargets?: Array<SelectedTargetDTO>;
|
|
17
|
+
uploadId?: number;
|
|
18
|
+
}
|
|
@@ -9,14 +9,13 @@
|
|
|
9
9
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { AssetSelectionDTO } from './assetSelectionDTO';
|
|
12
13
|
import { CreativeSetRequest } from './creativeSetRequest';
|
|
13
|
-
import { SelectedTargetDTO } from './selectedTargetDTO';
|
|
14
14
|
export interface CreativeAssetOptimizationRequest {
|
|
15
15
|
advertiserId?: number;
|
|
16
|
+
assets?: Array<AssetSelectionDTO>;
|
|
16
17
|
creativeSetRequest?: CreativeSetRequest;
|
|
17
18
|
creativeSetType?: CreativeAssetOptimizationRequest.CreativeSetTypeEnum;
|
|
18
|
-
selectedTargets?: Array<SelectedTargetDTO>;
|
|
19
|
-
uploadId?: number;
|
|
20
19
|
}
|
|
21
20
|
export declare namespace CreativeAssetOptimizationRequest {
|
|
22
21
|
type CreativeSetTypeEnum = 'IMAGE' | 'VIDEO' | 'THIRD_PARTY_AD_TAGS' | 'ZIPPED_HTML' | 'NATIVE_IMAGE' | 'NATIVE_VIDEO' | 'DYNAMIC_IMAGE' | 'DYNAMIC_MACRO' | 'DYNAMIC_HTML' | 'DYNAMIC_VIDEO' | 'HYBRID_STATIC_AD' | 'HYBRID_DYNAMIC_AD' | 'THIRD_PARTY_VIDEO_AD_TAGS' | 'NATIVE_ICON' | 'ICON' | 'CTV_VIDEO' | 'PLAYABLE';
|
|
@@ -0,0 +1,22 @@
|
|
|
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 EndCardSelectionDTO {
|
|
13
|
+
endCardType?: EndCardSelectionDTO.EndCardTypeEnum;
|
|
14
|
+
uploadId?: number;
|
|
15
|
+
}
|
|
16
|
+
export declare namespace EndCardSelectionDTO {
|
|
17
|
+
type EndCardTypeEnum = 'IMAGE' | 'HTML';
|
|
18
|
+
const EndCardTypeEnum: {
|
|
19
|
+
IMAGE: EndCardTypeEnum;
|
|
20
|
+
HTML: EndCardTypeEnum;
|
|
21
|
+
};
|
|
22
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -187,6 +187,7 @@ export * from './apiResponseObjectlong';
|
|
|
187
187
|
export * from './apiResponseObjectstring';
|
|
188
188
|
export * from './appSettingsDTO';
|
|
189
189
|
export * from './appSettingsPropertyDTO';
|
|
190
|
+
export * from './assetSelectionDTO';
|
|
190
191
|
export * from './auctionTypeEditField';
|
|
191
192
|
export * from './audienceAccessDTO';
|
|
192
193
|
export * from './audienceAnalysisRequest';
|
|
@@ -329,6 +330,7 @@ export * from './dynamicVideoTemplate';
|
|
|
329
330
|
export * from './eResponseobject';
|
|
330
331
|
export * from './eligibleUsersRequest';
|
|
331
332
|
export * from './eligibleUsersResponse';
|
|
333
|
+
export * from './endCardSelectionDTO';
|
|
332
334
|
export * from './endCards';
|
|
333
335
|
export * from './experimentsEntity';
|
|
334
336
|
export * from './extendedBaseModel';
|