@pushwoosh/rpc-v2-http-api-data 0.1.909 → 0.1.910
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 +3 -23
- package/package.json +1 -1
- package/tags.d.ts +2 -11
package/data.js
CHANGED
|
@@ -24708,27 +24708,6 @@ export const data = {
|
|
|
24708
24708
|
"DESC"
|
|
24709
24709
|
]
|
|
24710
24710
|
},
|
|
24711
|
-
"pushwoosh.rpc_v2.tags.ListTagsRequest.Filter": {
|
|
24712
|
-
"type": "I",
|
|
24713
|
-
"fields": {
|
|
24714
|
-
"types": {
|
|
24715
|
-
"type": "pushwoosh.rpc_v2.tags.Tag.Type",
|
|
24716
|
-
"array": true
|
|
24717
|
-
},
|
|
24718
|
-
"system": {
|
|
24719
|
-
"type": "boolean",
|
|
24720
|
-
"optional": true
|
|
24721
|
-
},
|
|
24722
|
-
"appSpecific": {
|
|
24723
|
-
"type": "boolean",
|
|
24724
|
-
"optional": true
|
|
24725
|
-
},
|
|
24726
|
-
"userSpecific": {
|
|
24727
|
-
"type": "boolean",
|
|
24728
|
-
"optional": true
|
|
24729
|
-
}
|
|
24730
|
-
}
|
|
24731
|
-
},
|
|
24732
24711
|
"pushwoosh.rpc_v2.tags.ListTagsRequest": {
|
|
24733
24712
|
"type": "I",
|
|
24734
24713
|
"fields": {
|
|
@@ -24747,8 +24726,9 @@ export const data = {
|
|
|
24747
24726
|
"perPage": {
|
|
24748
24727
|
"type": "number"
|
|
24749
24728
|
},
|
|
24750
|
-
"
|
|
24751
|
-
"type": "pushwoosh.rpc_v2.tags.
|
|
24729
|
+
"types": {
|
|
24730
|
+
"type": "pushwoosh.rpc_v2.tags.Tag.Type",
|
|
24731
|
+
"array": true
|
|
24752
24732
|
}
|
|
24753
24733
|
}
|
|
24754
24734
|
},
|
package/package.json
CHANGED
package/tags.d.ts
CHANGED
|
@@ -40,16 +40,6 @@ export type DeleteTagRequest = {
|
|
|
40
40
|
export type DeleteTagResponse = {};
|
|
41
41
|
export type ListTagsRequest_OrderBy = 'NAME' | 'CREATED';
|
|
42
42
|
export type ListTagsRequest_OrderDirection = 'ASC' | 'DESC';
|
|
43
|
-
export type ListTagsRequest_Filter = {
|
|
44
|
-
/** filter by tag types, e.g. [STRING, INTEGER] */
|
|
45
|
-
types: Tag_Type[];
|
|
46
|
-
/** filter by system flag */
|
|
47
|
-
system?: boolean;
|
|
48
|
-
/** filter by app_specific flag */
|
|
49
|
-
appSpecific?: boolean;
|
|
50
|
-
/** filter by user_specific flag */
|
|
51
|
-
userSpecific?: boolean;
|
|
52
|
-
};
|
|
53
43
|
export type ListTagsRequest = {
|
|
54
44
|
/** like %name% */
|
|
55
45
|
searchByName?: string;
|
|
@@ -57,7 +47,8 @@ export type ListTagsRequest = {
|
|
|
57
47
|
orderDirection?: ListTagsRequest_OrderDirection;
|
|
58
48
|
page?: number;
|
|
59
49
|
perPage?: number;
|
|
60
|
-
filter
|
|
50
|
+
/** filter by tag types, empty means all */
|
|
51
|
+
types?: Tag_Type[];
|
|
61
52
|
};
|
|
62
53
|
export type ListTagsResponse = {
|
|
63
54
|
tags: Tag[];
|