@pushwoosh/rpc-v2-http-api-data 0.1.408 → 0.1.409
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/applications.d.ts +15 -0
- package/data.js +53 -1180
- package/index.d.ts +2 -0
- package/package.json +1 -1
- package/pushwoosh_channels_messagingApi_v2.d.ts +1 -12
package/applications.d.ts
CHANGED
|
@@ -96,3 +96,18 @@ export type SendEmailVerificationRequest = {
|
|
|
96
96
|
description?: string;
|
|
97
97
|
};
|
|
98
98
|
export type SendEmailVerificationResponse = {};
|
|
99
|
+
export interface EmailFromService {
|
|
100
|
+
List(request: ListRequest): Promise<ListResponse>;
|
|
101
|
+
Use(request: UseRequest): Promise<UseResponse>;
|
|
102
|
+
}
|
|
103
|
+
export type ListRequest = {
|
|
104
|
+
application?: string;
|
|
105
|
+
};
|
|
106
|
+
export type ListResponse = {
|
|
107
|
+
emails: string[];
|
|
108
|
+
};
|
|
109
|
+
export type UseRequest = {
|
|
110
|
+
application?: string;
|
|
111
|
+
email?: string;
|
|
112
|
+
};
|
|
113
|
+
export type UseResponse = {};
|