@pushwoosh/rpc-v2-http-api-data 0.1.833 → 0.1.835
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 +8 -0
- package/inapp_messages.d.ts +1 -0
- package/messages.d.ts +1 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -10134,6 +10134,10 @@ export const data = {
|
|
|
10134
10134
|
},
|
|
10135
10135
|
"orderDirection": {
|
|
10136
10136
|
"type": "pushwoosh.rpc_v2.inapp_messages.ListInappMessagesRequest.OrderDirection"
|
|
10137
|
+
},
|
|
10138
|
+
"statuses": {
|
|
10139
|
+
"type": "pushwoosh.rpc_v2.inapp_messages.Inapp.Status",
|
|
10140
|
+
"array": true
|
|
10137
10141
|
}
|
|
10138
10142
|
}
|
|
10139
10143
|
},
|
|
@@ -12095,6 +12099,10 @@ export const data = {
|
|
|
12095
12099
|
},
|
|
12096
12100
|
"emailInfo": {
|
|
12097
12101
|
"type": "pushwoosh.rpc_v2.messages.EmailInfo"
|
|
12102
|
+
},
|
|
12103
|
+
"childMessages": {
|
|
12104
|
+
"type": "pushwoosh.rpc_v2.messages.Message",
|
|
12105
|
+
"array": true
|
|
12098
12106
|
}
|
|
12099
12107
|
},
|
|
12100
12108
|
"oneofs": {
|
package/inapp_messages.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export type ListInappMessagesRequest = {
|
|
|
16
16
|
perPage?: number;
|
|
17
17
|
orderBy?: ListInappMessagesRequest_OrderBy;
|
|
18
18
|
orderDirection?: ListInappMessagesRequest_OrderDirection;
|
|
19
|
+
statuses?: Inapp_Status[];
|
|
19
20
|
};
|
|
20
21
|
export type Inapp_Status = 'UNDEFINED' | 'ACTIVE' | 'SCHEDULED' | 'COMPLETED' | 'DRAFT';
|
|
21
22
|
export type Inapp = {
|
package/messages.d.ts
CHANGED
|
@@ -45,6 +45,7 @@ export type Message = {
|
|
|
45
45
|
createdDate: Date;
|
|
46
46
|
properties: Record<string, string>;
|
|
47
47
|
schedulingType: Message_SchedulingType;
|
|
48
|
+
childMessages: Message[];
|
|
48
49
|
info: Message_info;
|
|
49
50
|
};
|
|
50
51
|
export type ListMessagesRequest_OrderBy = 'NAME' | 'CREATED' | 'SEND_DATE';
|