@pushwoosh/rpc-v2-http-api-data 0.2.113 → 0.2.114
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 +4 -0
- package/package.json +1 -1
- package/tags.d.ts +5 -0
package/data.js
CHANGED
|
@@ -26244,6 +26244,10 @@ export const data = {
|
|
|
26244
26244
|
},
|
|
26245
26245
|
"perPage": {
|
|
26246
26246
|
"type": "number"
|
|
26247
|
+
},
|
|
26248
|
+
"platforms": {
|
|
26249
|
+
"type": "number",
|
|
26250
|
+
"array": true
|
|
26247
26251
|
}
|
|
26248
26252
|
}
|
|
26249
26253
|
},
|
package/package.json
CHANGED
package/tags.d.ts
CHANGED
|
@@ -83,6 +83,11 @@ export type GetTagValuesRequest = {
|
|
|
83
83
|
/** additional pagination for front */
|
|
84
84
|
page?: number;
|
|
85
85
|
perPage?: number;
|
|
86
|
+
/**
|
|
87
|
+
* Device platform codes to count values on; empty means every platform.
|
|
88
|
+
* User-level tag values are counted under platform 0 and match no filter.
|
|
89
|
+
*/
|
|
90
|
+
platforms?: number[];
|
|
86
91
|
};
|
|
87
92
|
export type GetTagValuesResponse_TagValue = {
|
|
88
93
|
value: string;
|