@pushwoosh/rpc-v2-http-api-data 0.1.832 → 0.1.834
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/accounts_get_auth_info.d.ts +1 -0
- package/data.js +7 -0
- package/inapp_messages.d.ts +1 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -2101,6 +2101,9 @@ export const data = {
|
|
|
2101
2101
|
},
|
|
2102
2102
|
"allowProductCommunication": {
|
|
2103
2103
|
"type": "boolean"
|
|
2104
|
+
},
|
|
2105
|
+
"suspended": {
|
|
2106
|
+
"type": "boolean"
|
|
2104
2107
|
}
|
|
2105
2108
|
}
|
|
2106
2109
|
},
|
|
@@ -10131,6 +10134,10 @@ export const data = {
|
|
|
10131
10134
|
},
|
|
10132
10135
|
"orderDirection": {
|
|
10133
10136
|
"type": "pushwoosh.rpc_v2.inapp_messages.ListInappMessagesRequest.OrderDirection"
|
|
10137
|
+
},
|
|
10138
|
+
"statuses": {
|
|
10139
|
+
"type": "pushwoosh.rpc_v2.inapp_messages.Inapp.Status",
|
|
10140
|
+
"array": true
|
|
10134
10141
|
}
|
|
10135
10142
|
}
|
|
10136
10143
|
},
|
package/inapp_messages.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export type ListInappMessagesRequest = {
|
|
|
16
16
|
perPage?: number;
|
|
17
17
|
orderBy?: ListInappMessagesRequest_OrderBy;
|
|
18
18
|
orderDirection?: ListInappMessagesRequest_OrderDirection;
|
|
19
|
+
statuses?: Inapp_Status[];
|
|
19
20
|
};
|
|
20
21
|
export type Inapp_Status = 'UNDEFINED' | 'ACTIVE' | 'SCHEDULED' | 'COMPLETED' | 'DRAFT';
|
|
21
22
|
export type Inapp = {
|