@revxui/intellibid-client-ts 1.0.32 → 1.0.34
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/attributionSettings.mjs +13 -0
- package/esm2020/model/dpaEngagementRequest.mjs +1 -1
- package/esm2020/model/dpaEngagementResponse.mjs +1 -1
- package/esm2020/model/models.mjs +2 -1
- package/fesm2015/revxui-intellibid-client-ts.mjs.map +1 -1
- package/fesm2020/revxui-intellibid-client-ts.mjs +12 -0
- package/fesm2020/revxui-intellibid-client-ts.mjs.map +1 -1
- package/model/attributionSettings.d.ts +16 -0
- package/model/dpaEngagementRequest.d.ts +5 -1
- package/model/dpaEngagementResponse.d.ts +3 -0
- package/model/models.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Intellibid API
|
|
3
|
+
* API documentation for the Intellibid platform
|
|
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 AttributionSettings {
|
|
13
|
+
clickWindow?: string;
|
|
14
|
+
engagedViewWindow?: string;
|
|
15
|
+
viewWindow?: string;
|
|
16
|
+
}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { AttributionSettings } from './attributionSettings';
|
|
12
13
|
import { CreativeDetails } from './creativeDetails';
|
|
13
14
|
import { ExclusionRule } from './exclusionRule';
|
|
14
15
|
export interface DpaEngagementRequest {
|
|
@@ -28,11 +29,14 @@ export interface DpaEngagementRequest {
|
|
|
28
29
|
exclusionRules: Array<ExclusionRule>;
|
|
29
30
|
creativeFormat: string;
|
|
30
31
|
creativeDetails?: CreativeDetails;
|
|
32
|
+
attributionSettings: AttributionSettings;
|
|
31
33
|
campaignStatus?: boolean;
|
|
32
34
|
staticCampaign?: boolean;
|
|
33
35
|
sourcePlatform: DpaEngagementRequest.SourcePlatformEnum;
|
|
34
|
-
|
|
36
|
+
customEvent?: string;
|
|
35
37
|
ageRangeValidForPlatform?: boolean;
|
|
38
|
+
ageRangesValidForPlatform?: boolean;
|
|
39
|
+
customEventValidForPlatform?: boolean;
|
|
36
40
|
}
|
|
37
41
|
export declare namespace DpaEngagementRequest {
|
|
38
42
|
type SourcePlatformEnum = 'META' | 'GOOGLE' | 'TIKTOK' | 'SNAPCHAT';
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { AttributionSettings } from './attributionSettings';
|
|
12
13
|
import { CreativeDetails } from './creativeDetails';
|
|
13
14
|
import { ExclusionRule } from './exclusionRule';
|
|
14
15
|
export interface DpaEngagementResponse {
|
|
@@ -37,6 +38,7 @@ export interface DpaEngagementResponse {
|
|
|
37
38
|
mobileOSs?: Array<string>;
|
|
38
39
|
creativeFormat?: string;
|
|
39
40
|
creativeDetails?: CreativeDetails;
|
|
41
|
+
attributionSettings?: AttributionSettings;
|
|
40
42
|
isIntellibidEnabled?: boolean;
|
|
41
43
|
isMarketFeedbackEnabled?: boolean;
|
|
42
44
|
isFeedReady?: boolean;
|
|
@@ -59,6 +61,7 @@ export interface DpaEngagementResponse {
|
|
|
59
61
|
campaignName?: string;
|
|
60
62
|
createdByUserRevXEmail?: string;
|
|
61
63
|
updatedByUserRevXEmail?: string;
|
|
64
|
+
customEvent?: string;
|
|
62
65
|
}
|
|
63
66
|
export declare namespace DpaEngagementResponse {
|
|
64
67
|
type SourcePlatformEnum = 'META' | 'GOOGLE' | 'TIKTOK' | 'SNAPCHAT';
|
package/model/models.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './adImageResponse';
|
|
2
2
|
export * from './adSetDetails';
|
|
3
3
|
export * from './adVideoResponse';
|
|
4
|
+
export * from './attributionSettings';
|
|
4
5
|
export * from './audienceDetails';
|
|
5
6
|
export * from './businessGeoResponse';
|
|
6
7
|
export * from './campaignInsightsRecord';
|