@revxui/api-clients-ts 1.1.261 → 1.1.263
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 +13 -0
- package/bundles/revxui-api-clients-ts.umd.js +30 -0
- package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
- package/esm2015/api/audienceController.service.js +29 -1
- package/esm2015/model/creativeSetDetails.js +1 -1
- package/esm2015/model/currencyModel.js +13 -0
- package/esm2015/model/models.js +2 -1
- package/fesm2015/revxui-api-clients-ts.js +40 -0
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/creativeSetDetails.d.ts +2 -1
- package/model/currencyModel.d.ts +16 -0
- package/model/models.d.ts +1 -0
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
|
@@ -11,13 +11,14 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { BaseModel } from './baseModel';
|
|
13
13
|
import { CreativeDTO } from './creativeDTO';
|
|
14
|
+
import { CurrencyModel } from './currencyModel';
|
|
14
15
|
import { EndCards } from './endCards';
|
|
15
16
|
import { Macro } from './macro';
|
|
16
17
|
import { NativeAssetPojo } from './nativeAssetPojo';
|
|
17
18
|
import { Size } from './size';
|
|
18
19
|
export interface CreativeSetDetails {
|
|
19
20
|
active?: boolean;
|
|
20
|
-
advertiser?:
|
|
21
|
+
advertiser?: CurrencyModel;
|
|
21
22
|
archived?: boolean;
|
|
22
23
|
budgetDaily?: number;
|
|
23
24
|
clickDestination?: BaseModel;
|
|
@@ -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
|
+
export interface CurrencyModel {
|
|
13
|
+
currencyCode?: string;
|
|
14
|
+
id?: number;
|
|
15
|
+
name?: string;
|
|
16
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -186,6 +186,7 @@ export * from './creativeStrategyAssociationStatus';
|
|
|
186
186
|
export * from './creativeTemplateDTO';
|
|
187
187
|
export * from './creativeTemplatesMetadataDTO';
|
|
188
188
|
export * from './creativeThirdPartyAdTag';
|
|
189
|
+
export * from './currencyModel';
|
|
189
190
|
export * from './customerReportingData';
|
|
190
191
|
export * from './customerReportingDataListResponse';
|
|
191
192
|
export * from './customerReportingRequest';
|