@pushwoosh/rpc-v2-http-api-data 0.1.449 → 0.1.451

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.
@@ -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
- totalPages: number;
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
- "totalPages": {
256
+ "total": {
259
257
  "type": "number"
260
258
  }
261
259
  }
@@ -7962,6 +7960,9 @@ export const data = {
7962
7960
  },
7963
7961
  "isEmail": {
7964
7962
  "type": "boolean"
7963
+ },
7964
+ "errorMessage": {
7965
+ "type": "string"
7965
7966
  }
7966
7967
  }
7967
7968
  },
package/messages.d.ts CHANGED
@@ -183,6 +183,7 @@ export type GetDeviceReceivedMessagesResponse_Message = {
183
183
  sendTime: Date;
184
184
  openedTime: Date;
185
185
  isEmail: boolean;
186
+ errorMessage: string;
186
187
  };
187
188
  export type GetDeviceReceivedMessagesResponse = {
188
189
  messages: GetDeviceReceivedMessagesResponse_Message[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.449",
3
+ "version": "0.1.451",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",