@agenus-io/pixel-backend-sdk 1.0.24 → 1.0.26
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/dist/Class/interface.d.ts +16 -8
- package/package.json +1 -1
|
@@ -31,6 +31,11 @@ interface CreatePixel {
|
|
|
31
31
|
token: string;
|
|
32
32
|
customerId: string;
|
|
33
33
|
}[];
|
|
34
|
+
pixelGoogleTags?: {
|
|
35
|
+
id: string;
|
|
36
|
+
title?: string;
|
|
37
|
+
token: string;
|
|
38
|
+
}[];
|
|
34
39
|
}
|
|
35
40
|
export declare namespace ICreatePixelDTO {
|
|
36
41
|
type Params = {
|
|
@@ -102,6 +107,11 @@ export declare namespace IGetOnePixelDTO {
|
|
|
102
107
|
data: {
|
|
103
108
|
productIds: string[];
|
|
104
109
|
offerIds: string[];
|
|
110
|
+
pixelGoogleTags: {
|
|
111
|
+
id: string;
|
|
112
|
+
title?: string;
|
|
113
|
+
token: string;
|
|
114
|
+
}[];
|
|
105
115
|
pixelTikTok: {
|
|
106
116
|
id: string;
|
|
107
117
|
title?: string;
|
|
@@ -109,14 +119,12 @@ export declare namespace IGetOnePixelDTO {
|
|
|
109
119
|
externalId: string;
|
|
110
120
|
}[];
|
|
111
121
|
pixelGoogle: {
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
};
|
|
119
|
-
};
|
|
122
|
+
id: true;
|
|
123
|
+
title?: string;
|
|
124
|
+
token: true;
|
|
125
|
+
customerId: true;
|
|
126
|
+
resourceName: true;
|
|
127
|
+
}[];
|
|
120
128
|
pixelMeta: {
|
|
121
129
|
id: string;
|
|
122
130
|
title?: string;
|