@revxui/intellibid-client-ts 1.0.71 → 1.0.72
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/campaignRequest.mjs +9 -1
- package/esm2020/model/campaignResponse.mjs +9 -1
- package/fesm2015/revxui-intellibid-client-ts.mjs +16 -0
- package/fesm2015/revxui-intellibid-client-ts.mjs.map +1 -1
- package/fesm2020/revxui-intellibid-client-ts.mjs +16 -0
- package/fesm2020/revxui-intellibid-client-ts.mjs.map +1 -1
- package/model/campaignRequest.d.ts +16 -3
- package/model/campaignResponse.d.ts +12 -0
- package/package.json +1 -1
|
@@ -22,11 +22,14 @@ export interface CampaignRequest {
|
|
|
22
22
|
goalValue?: number;
|
|
23
23
|
marketFeedbackEnabled?: boolean;
|
|
24
24
|
activeOnPlatform?: boolean;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
campaignType: CampaignRequest.CampaignTypeEnum;
|
|
26
|
+
campaignObjective: CampaignRequest.CampaignObjectiveEnum;
|
|
27
|
+
osId?: number;
|
|
28
|
+
mmpConversionEventId?: number;
|
|
29
|
+
mmpAttributionSetting?: CampaignRequest.MmpAttributionSettingEnum;
|
|
28
30
|
payoutValueValidForType?: boolean;
|
|
29
31
|
goalValueConsistent?: boolean;
|
|
32
|
+
appFieldsConsistent?: boolean;
|
|
30
33
|
}
|
|
31
34
|
export declare namespace CampaignRequest {
|
|
32
35
|
type SourcePlatformEnum = 'META' | 'TIKTOK' | 'SNAPCHAT' | 'GOOGLE' | 'LYADS';
|
|
@@ -47,6 +50,16 @@ export declare namespace CampaignRequest {
|
|
|
47
50
|
COSTPERRESULT: GoalEnum;
|
|
48
51
|
ROAS: GoalEnum;
|
|
49
52
|
};
|
|
53
|
+
type CampaignTypeEnum = 'APP' | 'WEBSITE';
|
|
54
|
+
const CampaignTypeEnum: {
|
|
55
|
+
APP: CampaignTypeEnum;
|
|
56
|
+
WEBSITE: CampaignTypeEnum;
|
|
57
|
+
};
|
|
58
|
+
type CampaignObjectiveEnum = 'RT' | 'UA';
|
|
59
|
+
const CampaignObjectiveEnum: {
|
|
60
|
+
RT: CampaignObjectiveEnum;
|
|
61
|
+
UA: CampaignObjectiveEnum;
|
|
62
|
+
};
|
|
50
63
|
type MmpAttributionSettingEnum = 'CTA' | 'CTA_AND_VTA';
|
|
51
64
|
const MmpAttributionSettingEnum: {
|
|
52
65
|
CTA: MmpAttributionSettingEnum;
|
|
@@ -28,6 +28,8 @@ export interface CampaignResponse {
|
|
|
28
28
|
goal?: CampaignResponse.GoalEnum;
|
|
29
29
|
goalValue?: number;
|
|
30
30
|
dailyAdvertiserBudget?: number;
|
|
31
|
+
campaignType?: CampaignResponse.CampaignTypeEnum;
|
|
32
|
+
campaignObjective?: CampaignResponse.CampaignObjectiveEnum;
|
|
31
33
|
osId?: number;
|
|
32
34
|
osName?: string;
|
|
33
35
|
mmpConversionEventId?: number;
|
|
@@ -67,6 +69,16 @@ export declare namespace CampaignResponse {
|
|
|
67
69
|
COSTPERRESULT: GoalEnum;
|
|
68
70
|
ROAS: GoalEnum;
|
|
69
71
|
};
|
|
72
|
+
type CampaignTypeEnum = 'APP' | 'WEBSITE';
|
|
73
|
+
const CampaignTypeEnum: {
|
|
74
|
+
APP: CampaignTypeEnum;
|
|
75
|
+
WEBSITE: CampaignTypeEnum;
|
|
76
|
+
};
|
|
77
|
+
type CampaignObjectiveEnum = 'RT' | 'UA';
|
|
78
|
+
const CampaignObjectiveEnum: {
|
|
79
|
+
RT: CampaignObjectiveEnum;
|
|
80
|
+
UA: CampaignObjectiveEnum;
|
|
81
|
+
};
|
|
70
82
|
type MmpAttributionSettingEnum = 'CTA' | 'CTA_AND_VTA';
|
|
71
83
|
const MmpAttributionSettingEnum: {
|
|
72
84
|
CTA: MmpAttributionSettingEnum;
|