@pushwoosh/rpc-v2-http-api-data 0.1.834 → 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 +4 -0
- package/messages.d.ts +1 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -12099,6 +12099,10 @@ export const data = {
|
|
|
12099
12099
|
},
|
|
12100
12100
|
"emailInfo": {
|
|
12101
12101
|
"type": "pushwoosh.rpc_v2.messages.EmailInfo"
|
|
12102
|
+
},
|
|
12103
|
+
"childMessages": {
|
|
12104
|
+
"type": "pushwoosh.rpc_v2.messages.Message",
|
|
12105
|
+
"array": true
|
|
12102
12106
|
}
|
|
12103
12107
|
},
|
|
12104
12108
|
"oneofs": {
|
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';
|