@pushwoosh/rpc-v2-http-api-data 0.1.985 → 0.1.987
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 +33 -0
- package/inapp_messages.d.ts +10 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -10962,6 +10962,15 @@ export const data = {
|
|
|
10962
10962
|
},
|
|
10963
10963
|
"messageType": {
|
|
10964
10964
|
"type": "pushwoosh.rpc_v2.inapp_messages.Inapp.MessageType"
|
|
10965
|
+
},
|
|
10966
|
+
"tagFilterExpression": {
|
|
10967
|
+
"type": "pushwoosh.objects.filters.v1.FilterExpression"
|
|
10968
|
+
},
|
|
10969
|
+
"eventFilterExpression": {
|
|
10970
|
+
"type": "pushwoosh.objects.filters.v1.FilterExpression"
|
|
10971
|
+
},
|
|
10972
|
+
"triggerFilterExpression": {
|
|
10973
|
+
"type": "pushwoosh.objects.filters.v1.FilterExpression"
|
|
10965
10974
|
}
|
|
10966
10975
|
}
|
|
10967
10976
|
},
|
|
@@ -11091,6 +11100,18 @@ export const data = {
|
|
|
11091
11100
|
"messageType": {
|
|
11092
11101
|
"type": "pushwoosh.rpc_v2.inapp_messages.Inapp.MessageType",
|
|
11093
11102
|
"optional": true
|
|
11103
|
+
},
|
|
11104
|
+
"tagFilterExpression": {
|
|
11105
|
+
"type": "pushwoosh.objects.filters.v1.FilterExpression",
|
|
11106
|
+
"optional": true
|
|
11107
|
+
},
|
|
11108
|
+
"eventFilterExpression": {
|
|
11109
|
+
"type": "pushwoosh.objects.filters.v1.FilterExpression",
|
|
11110
|
+
"optional": true
|
|
11111
|
+
},
|
|
11112
|
+
"triggerFilterExpression": {
|
|
11113
|
+
"type": "pushwoosh.objects.filters.v1.FilterExpression",
|
|
11114
|
+
"optional": true
|
|
11094
11115
|
}
|
|
11095
11116
|
}
|
|
11096
11117
|
},
|
|
@@ -11182,6 +11203,18 @@ export const data = {
|
|
|
11182
11203
|
"messageType": {
|
|
11183
11204
|
"type": "pushwoosh.rpc_v2.inapp_messages.Inapp.MessageType",
|
|
11184
11205
|
"optional": true
|
|
11206
|
+
},
|
|
11207
|
+
"tagFilterExpression": {
|
|
11208
|
+
"type": "pushwoosh.objects.filters.v1.FilterExpression",
|
|
11209
|
+
"optional": true
|
|
11210
|
+
},
|
|
11211
|
+
"eventFilterExpression": {
|
|
11212
|
+
"type": "pushwoosh.objects.filters.v1.FilterExpression",
|
|
11213
|
+
"optional": true
|
|
11214
|
+
},
|
|
11215
|
+
"triggerFilterExpression": {
|
|
11216
|
+
"type": "pushwoosh.objects.filters.v1.FilterExpression",
|
|
11217
|
+
"optional": true
|
|
11185
11218
|
}
|
|
11186
11219
|
}
|
|
11187
11220
|
},
|
package/inapp_messages.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { RpcMethod } from './commonTypes';
|
|
2
|
+
import { FilterExpression as pushwoosh_objects_filters_v1_FilterExpression } from './pushwoosh_objects_filters_v1';
|
|
2
3
|
export type InAppMessagesService_List = RpcMethod<ListInappMessagesRequest, ListInappMessagesResponse>;
|
|
3
4
|
export type InAppMessagesService_Get = RpcMethod<GetInappMessageRequest, GetInappMessageResponse>;
|
|
4
5
|
export type InAppMessagesService_Delete = RpcMethod<DeleteInappMessageRequest, DeleteInappMessageResponse>;
|
|
@@ -55,6 +56,9 @@ export type Inapp = {
|
|
|
55
56
|
timezone: string;
|
|
56
57
|
globalCappingEnabled: boolean;
|
|
57
58
|
messageType: Inapp_MessageType;
|
|
59
|
+
tagFilterExpression: pushwoosh_objects_filters_v1_FilterExpression;
|
|
60
|
+
eventFilterExpression: pushwoosh_objects_filters_v1_FilterExpression;
|
|
61
|
+
triggerFilterExpression: pushwoosh_objects_filters_v1_FilterExpression;
|
|
58
62
|
};
|
|
59
63
|
export type ListInappMessagesResponse = {
|
|
60
64
|
inapps: Inapp[];
|
|
@@ -99,6 +103,9 @@ export type CreateInappRequest = {
|
|
|
99
103
|
timezone?: string;
|
|
100
104
|
globalCappingEnabled?: boolean;
|
|
101
105
|
messageType?: Inapp_MessageType;
|
|
106
|
+
tagFilterExpression?: pushwoosh_objects_filters_v1_FilterExpression;
|
|
107
|
+
eventFilterExpression?: pushwoosh_objects_filters_v1_FilterExpression;
|
|
108
|
+
triggerFilterExpression?: pushwoosh_objects_filters_v1_FilterExpression;
|
|
102
109
|
};
|
|
103
110
|
export type CreateInappResponse = {
|
|
104
111
|
code: string;
|
|
@@ -126,6 +133,9 @@ export type UpdateInappRequest = {
|
|
|
126
133
|
timezone?: string;
|
|
127
134
|
globalCappingEnabled?: boolean;
|
|
128
135
|
messageType?: Inapp_MessageType;
|
|
136
|
+
tagFilterExpression?: pushwoosh_objects_filters_v1_FilterExpression;
|
|
137
|
+
eventFilterExpression?: pushwoosh_objects_filters_v1_FilterExpression;
|
|
138
|
+
triggerFilterExpression?: pushwoosh_objects_filters_v1_FilterExpression;
|
|
129
139
|
};
|
|
130
140
|
export type UpdateInappResponse = {};
|
|
131
141
|
/** Stop - convert active inapp to draft */
|