@pushwoosh/rpc-v2-http-api-data 0.1.942 → 0.1.943
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/data.js +6 -0
- package/package.json +1 -1
- package/rich_medias.d.ts +2 -0
package/data.js
CHANGED
|
@@ -21728,6 +21728,12 @@ export const data = {
|
|
|
21728
21728
|
},
|
|
21729
21729
|
"skipped": {
|
|
21730
21730
|
"type": "number"
|
|
21731
|
+
},
|
|
21732
|
+
"uniqueShown": {
|
|
21733
|
+
"type": "number"
|
|
21734
|
+
},
|
|
21735
|
+
"uniqueInteraction": {
|
|
21736
|
+
"type": "number"
|
|
21731
21737
|
}
|
|
21732
21738
|
}
|
|
21733
21739
|
},
|
package/package.json
CHANGED
package/rich_medias.d.ts
CHANGED
|
@@ -38,6 +38,8 @@ export type Metrics = {
|
|
|
38
38
|
interaction: number;
|
|
39
39
|
sessionDurations: Metrics_SessionDuration[];
|
|
40
40
|
skipped: number;
|
|
41
|
+
uniqueShown: number;
|
|
42
|
+
uniqueInteraction: number;
|
|
41
43
|
};
|
|
42
44
|
export type RichMedia_CreatedType = 'UNDEFINED' | 'TEMPLATE' | 'BUILDER';
|
|
43
45
|
export type RichMedia = {
|