@pushwoosh/rpc-v2-http-api-data 0.1.807 → 0.1.808
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 +23 -0
- package/messages.d.ts +7 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -12053,6 +12053,12 @@ export const data = {
|
|
|
12053
12053
|
"response": "pushwoosh.rpc_v2.messages.GetDeviceReceivedMessagesResponse",
|
|
12054
12054
|
"method": "post",
|
|
12055
12055
|
"path": "/api/messages/getDeviceReceivedMessages"
|
|
12056
|
+
},
|
|
12057
|
+
"GetDevicesList": {
|
|
12058
|
+
"request": "pushwoosh.rpc_v2.messages.GetDevicesListRequest",
|
|
12059
|
+
"response": "pushwoosh.rpc_v2.messages.GetDevicesListResponse",
|
|
12060
|
+
"method": "post",
|
|
12061
|
+
"path": "/api/messages/getDevicesList"
|
|
12056
12062
|
}
|
|
12057
12063
|
}
|
|
12058
12064
|
},
|
|
@@ -12629,6 +12635,23 @@ export const data = {
|
|
|
12629
12635
|
}
|
|
12630
12636
|
}
|
|
12631
12637
|
},
|
|
12638
|
+
"pushwoosh.rpc_v2.messages.GetDevicesListRequest": {
|
|
12639
|
+
"type": "I",
|
|
12640
|
+
"fields": {
|
|
12641
|
+
"messageCode": {
|
|
12642
|
+
"type": "string"
|
|
12643
|
+
}
|
|
12644
|
+
}
|
|
12645
|
+
},
|
|
12646
|
+
"pushwoosh.rpc_v2.messages.GetDevicesListResponse": {
|
|
12647
|
+
"type": "I",
|
|
12648
|
+
"fields": {
|
|
12649
|
+
"devices": {
|
|
12650
|
+
"type": "string",
|
|
12651
|
+
"array": true
|
|
12652
|
+
}
|
|
12653
|
+
}
|
|
12654
|
+
},
|
|
12632
12655
|
"pushwoosh.objects.filters.v1.__filter_collection_internal": {
|
|
12633
12656
|
"type": "I",
|
|
12634
12657
|
"fields": {
|
package/messages.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export interface MessagesService {
|
|
|
8
8
|
GetDeliveryReport(request: GetDeliveryReportRequest): Promise<GetDeliveryReportResponse>;
|
|
9
9
|
FindRecipients(request: FindRecipientsRequest): Promise<FindRecipientsResponse>;
|
|
10
10
|
GetDeviceReceivedMessages(request: GetDeviceReceivedMessagesRequest): Promise<GetDeviceReceivedMessagesResponse>;
|
|
11
|
+
GetDevicesList(request: GetDevicesListRequest): Promise<GetDevicesListResponse>;
|
|
11
12
|
}
|
|
12
13
|
export type Type = 'All' | 'Push' | 'Email';
|
|
13
14
|
export type PushInfo = {
|
|
@@ -192,3 +193,9 @@ export type GetDeviceReceivedMessagesResponse_Message = {
|
|
|
192
193
|
export type GetDeviceReceivedMessagesResponse = {
|
|
193
194
|
messages: GetDeviceReceivedMessagesResponse_Message[];
|
|
194
195
|
};
|
|
196
|
+
export type GetDevicesListRequest = {
|
|
197
|
+
messageCode?: string;
|
|
198
|
+
};
|
|
199
|
+
export type GetDevicesListResponse = {
|
|
200
|
+
devices: string[];
|
|
201
|
+
};
|