@pushwoosh/rpc-v2-http-api-data 0.1.449 → 0.1.450
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/account_invites.d.ts +2 -3
- package/data.js +3 -5
- package/package.json +1 -1
package/account_invites.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export interface AccountInvitesService {
|
|
|
4
4
|
Delete(request: DeleteRequest): Promise<DeleteResponse>;
|
|
5
5
|
Create(request: CreateRequest): Promise<CreateResponse>;
|
|
6
6
|
}
|
|
7
|
-
export type ListRequest_OrderBy = 'INVITE_DATE' | 'EMAIL';
|
|
7
|
+
export type ListRequest_OrderBy = 'INVITE_DATE' | 'EMAIL' | 'STATUS';
|
|
8
8
|
export type ListRequest_OrderDirection = 'ASC' | 'DESC';
|
|
9
9
|
export type ListRequest = {
|
|
10
10
|
page?: number;
|
|
@@ -12,7 +12,6 @@ export type ListRequest = {
|
|
|
12
12
|
orderBy?: ListRequest_OrderBy;
|
|
13
13
|
orderDirection?: ListRequest_OrderDirection;
|
|
14
14
|
searchByEmail?: string;
|
|
15
|
-
searchByStatus?: string;
|
|
16
15
|
};
|
|
17
16
|
export type ListResponse_Invite = {
|
|
18
17
|
code: string;
|
|
@@ -24,7 +23,7 @@ export type ListResponse = {
|
|
|
24
23
|
invites: ListResponse_Invite[];
|
|
25
24
|
page: number;
|
|
26
25
|
perPage: number;
|
|
27
|
-
|
|
26
|
+
total: number;
|
|
28
27
|
};
|
|
29
28
|
export type ResendRequest = {
|
|
30
29
|
code?: string;
|
package/data.js
CHANGED
|
@@ -192,7 +192,8 @@ export const data = {
|
|
|
192
192
|
"type": "E",
|
|
193
193
|
"values": [
|
|
194
194
|
"INVITE_DATE",
|
|
195
|
-
"EMAIL"
|
|
195
|
+
"EMAIL",
|
|
196
|
+
"STATUS"
|
|
196
197
|
]
|
|
197
198
|
},
|
|
198
199
|
"pushwoosh.rpc_v2.account_invites.ListRequest.OrderDirection": {
|
|
@@ -219,9 +220,6 @@ export const data = {
|
|
|
219
220
|
},
|
|
220
221
|
"searchByEmail": {
|
|
221
222
|
"type": "string"
|
|
222
|
-
},
|
|
223
|
-
"searchByStatus": {
|
|
224
|
-
"type": "string"
|
|
225
223
|
}
|
|
226
224
|
}
|
|
227
225
|
},
|
|
@@ -255,7 +253,7 @@ export const data = {
|
|
|
255
253
|
"perPage": {
|
|
256
254
|
"type": "number"
|
|
257
255
|
},
|
|
258
|
-
"
|
|
256
|
+
"total": {
|
|
259
257
|
"type": "number"
|
|
260
258
|
}
|
|
261
259
|
}
|