@revxui/intellibid-client-ts 1.0.33 → 1.0.35
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/api.d.ts +3 -1
- package/api/dpaEngagementController.service.d.ts +12 -0
- package/api/facebookEngagementController.service.d.ts +4 -3
- package/api/tiktokAudienceController.service.d.ts +35 -0
- package/esm2020/api/api.mjs +4 -2
- package/esm2020/api/dpaEngagementController.service.mjs +33 -1
- package/esm2020/api/facebookEngagementController.service.mjs +5 -2
- package/esm2020/api/tiktokAudienceController.service.mjs +93 -0
- package/esm2020/api.module.mjs +4 -1
- package/esm2020/model/attributionSettings.mjs +13 -0
- package/esm2020/model/dpaEngagementChangeLogResponse.mjs +3 -2
- package/esm2020/model/dpaEngagementRequest.mjs +11 -1
- package/esm2020/model/dpaEngagementResponse.mjs +3 -2
- package/esm2020/model/facebookEngagementRequest.mjs +1 -1
- package/esm2020/model/facebookEngagementResponse.mjs +1 -1
- package/esm2020/model/models.mjs +3 -1
- package/esm2020/model/updatePayoutRequest.mjs +13 -0
- package/fesm2015/revxui-intellibid-client-ts.mjs +141 -5
- package/fesm2015/revxui-intellibid-client-ts.mjs.map +1 -1
- package/fesm2020/revxui-intellibid-client-ts.mjs +163 -5
- package/fesm2020/revxui-intellibid-client-ts.mjs.map +1 -1
- package/model/attributionSettings.d.ts +16 -0
- package/model/dpaEngagementChangeLogResponse.d.ts +2 -1
- package/model/dpaEngagementRequest.d.ts +16 -0
- package/model/dpaEngagementResponse.d.ts +5 -1
- package/model/facebookEngagementRequest.d.ts +1 -0
- package/model/facebookEngagementResponse.d.ts +1 -0
- package/model/models.d.ts +2 -0
- package/model/updatePayoutRequest.d.ts +14 -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
|
+
}
|
|
@@ -22,12 +22,13 @@ export interface DpaEngagementChangeLogResponse {
|
|
|
22
22
|
createdByUserRevXEmail?: string;
|
|
23
23
|
}
|
|
24
24
|
export declare namespace DpaEngagementChangeLogResponse {
|
|
25
|
-
type EntityChangedEnum = 'STATUS' | 'BUDGET' | 'ENGAGEMENT' | 'MARGIN';
|
|
25
|
+
type EntityChangedEnum = 'STATUS' | 'BUDGET' | 'ENGAGEMENT' | 'MARGIN' | 'PAYOUT';
|
|
26
26
|
const EntityChangedEnum: {
|
|
27
27
|
STATUS: EntityChangedEnum;
|
|
28
28
|
BUDGET: EntityChangedEnum;
|
|
29
29
|
ENGAGEMENT: EntityChangedEnum;
|
|
30
30
|
MARGIN: EntityChangedEnum;
|
|
31
|
+
PAYOUT: EntityChangedEnum;
|
|
31
32
|
};
|
|
32
33
|
type StatusEnum = 'SUCCESS' | 'FAILED';
|
|
33
34
|
const StatusEnum: {
|
|
@@ -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 {
|
|
@@ -17,6 +18,8 @@ export interface DpaEngagementRequest {
|
|
|
17
18
|
bidValue: number;
|
|
18
19
|
dailyBudget: number;
|
|
19
20
|
margin: number;
|
|
21
|
+
payoutType: DpaEngagementRequest.PayoutTypeEnum;
|
|
22
|
+
payoutValue: number;
|
|
20
23
|
audienceCategories: Array<string>;
|
|
21
24
|
adPlacements: Array<string>;
|
|
22
25
|
targetCountries: Array<string>;
|
|
@@ -28,14 +31,27 @@ export interface DpaEngagementRequest {
|
|
|
28
31
|
exclusionRules: Array<ExclusionRule>;
|
|
29
32
|
creativeFormat: string;
|
|
30
33
|
creativeDetails?: CreativeDetails;
|
|
34
|
+
attributionSettings: AttributionSettings;
|
|
31
35
|
campaignStatus?: boolean;
|
|
32
36
|
staticCampaign?: boolean;
|
|
33
37
|
sourcePlatform: DpaEngagementRequest.SourcePlatformEnum;
|
|
34
38
|
customEvent?: string;
|
|
35
39
|
ageRangeValidForPlatform?: boolean;
|
|
36
40
|
ageRangesValidForPlatform?: boolean;
|
|
41
|
+
customEventValidForPlatform?: boolean;
|
|
37
42
|
}
|
|
38
43
|
export declare namespace DpaEngagementRequest {
|
|
44
|
+
type PayoutTypeEnum = 'CPM' | 'CPC' | 'CPA' | 'CPS' | 'CPA - Client Attributed' | 'CPS - Client Attributed' | 'MARGIN' | 'PAYOUT_PER_CONVERSION';
|
|
45
|
+
const PayoutTypeEnum: {
|
|
46
|
+
CPM: PayoutTypeEnum;
|
|
47
|
+
CPC: PayoutTypeEnum;
|
|
48
|
+
CPA: PayoutTypeEnum;
|
|
49
|
+
CPS: PayoutTypeEnum;
|
|
50
|
+
CPAClientAttributed: PayoutTypeEnum;
|
|
51
|
+
CPSClientAttributed: PayoutTypeEnum;
|
|
52
|
+
MARGIN: PayoutTypeEnum;
|
|
53
|
+
PAYOUTPERCONVERSION: PayoutTypeEnum;
|
|
54
|
+
};
|
|
39
55
|
type SourcePlatformEnum = 'META' | 'GOOGLE' | 'TIKTOK' | 'SNAPCHAT';
|
|
40
56
|
const SourcePlatformEnum: {
|
|
41
57
|
META: SourcePlatformEnum;
|
|
@@ -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 {
|
|
@@ -20,6 +21,7 @@ export interface DpaEngagementResponse {
|
|
|
20
21
|
bannerId?: number;
|
|
21
22
|
runBy?: DpaEngagementResponse.RunByEnum;
|
|
22
23
|
payoutType?: DpaEngagementResponse.PayoutTypeEnum;
|
|
24
|
+
payoutValue?: number;
|
|
23
25
|
publisherId?: number;
|
|
24
26
|
bidValue?: number;
|
|
25
27
|
dailyBudget?: number;
|
|
@@ -37,6 +39,7 @@ export interface DpaEngagementResponse {
|
|
|
37
39
|
mobileOSs?: Array<string>;
|
|
38
40
|
creativeFormat?: string;
|
|
39
41
|
creativeDetails?: CreativeDetails;
|
|
42
|
+
attributionSettings?: AttributionSettings;
|
|
40
43
|
isIntellibidEnabled?: boolean;
|
|
41
44
|
isMarketFeedbackEnabled?: boolean;
|
|
42
45
|
isFeedReady?: boolean;
|
|
@@ -74,7 +77,7 @@ export declare namespace DpaEngagementResponse {
|
|
|
74
77
|
CLIENT: RunByEnum;
|
|
75
78
|
VIZURY: RunByEnum;
|
|
76
79
|
};
|
|
77
|
-
type PayoutTypeEnum = 'CPM' | 'CPC' | 'CPA' | 'CPS' | 'CPA - Client Attributed' | 'CPS - Client Attributed' | 'MARGIN';
|
|
80
|
+
type PayoutTypeEnum = 'CPM' | 'CPC' | 'CPA' | 'CPS' | 'CPA - Client Attributed' | 'CPS - Client Attributed' | 'MARGIN' | 'PAYOUT_PER_CONVERSION';
|
|
78
81
|
const PayoutTypeEnum: {
|
|
79
82
|
CPM: PayoutTypeEnum;
|
|
80
83
|
CPC: PayoutTypeEnum;
|
|
@@ -83,6 +86,7 @@ export declare namespace DpaEngagementResponse {
|
|
|
83
86
|
CPAClientAttributed: PayoutTypeEnum;
|
|
84
87
|
CPSClientAttributed: PayoutTypeEnum;
|
|
85
88
|
MARGIN: PayoutTypeEnum;
|
|
89
|
+
PAYOUTPERCONVERSION: PayoutTypeEnum;
|
|
86
90
|
};
|
|
87
91
|
type StatusEnum = 'DRAFT' | 'INITIALIZED' | 'RUNNING' | 'UPDATING' | 'PAUSED' | 'FAILED';
|
|
88
92
|
const StatusEnum: {
|
|
@@ -26,6 +26,7 @@ export interface FacebookEngagementResponse {
|
|
|
26
26
|
createdBy?: number;
|
|
27
27
|
updatedOn?: Date;
|
|
28
28
|
updatedBy?: number;
|
|
29
|
+
businessManagerId?: string;
|
|
29
30
|
}
|
|
30
31
|
export declare namespace FacebookEngagementResponse {
|
|
31
32
|
type FacebookCatalogTypeEnum = 'COMMERCE' | 'HOTELS' | 'DESTINATIONS' | 'FLIGHTS';
|
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';
|
|
@@ -36,3 +37,4 @@ export * from './tiktokCountryResponse';
|
|
|
36
37
|
export * from './tiktokEngagement';
|
|
37
38
|
export * from './updateDailyBudgetRequest';
|
|
38
39
|
export * from './updateMarginRequest';
|
|
40
|
+
export * from './updatePayoutRequest';
|
|
@@ -0,0 +1,14 @@
|
|
|
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 UpdatePayoutRequest {
|
|
13
|
+
payoutValue: number;
|
|
14
|
+
}
|