@pushwoosh/rpc-v2-http-api-data 0.2.181 → 0.2.182
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 +2 -1
- package/package.json +1 -1
- package/rich_medias.d.ts +1 -1
package/data.js
CHANGED
|
@@ -26662,7 +26662,8 @@ export const data = {
|
|
|
26662
26662
|
"pushwoosh.rpc_v2.rich_medias.ListRequest.OrderBy": {
|
|
26663
26663
|
"type": "E",
|
|
26664
26664
|
"values": [
|
|
26665
|
-
"CREATED_DATE"
|
|
26665
|
+
"CREATED_DATE",
|
|
26666
|
+
"UPDATED_DATE"
|
|
26666
26667
|
]
|
|
26667
26668
|
},
|
|
26668
26669
|
"pushwoosh.rpc_v2.rich_medias.ListRequest.OrderType": {
|
package/package.json
CHANGED
package/rich_medias.d.ts
CHANGED
|
@@ -98,7 +98,7 @@ export type GetResponse = {
|
|
|
98
98
|
richMedia: RichMedia;
|
|
99
99
|
};
|
|
100
100
|
export type ListRequest_ListView = 'LIST' | 'TILES';
|
|
101
|
-
export type ListRequest_OrderBy = 'CREATED_DATE';
|
|
101
|
+
export type ListRequest_OrderBy = 'CREATED_DATE' | 'UPDATED_DATE';
|
|
102
102
|
export type ListRequest_OrderType = 'ASC' | 'DESC';
|
|
103
103
|
export type ListRequest = {
|
|
104
104
|
/** Free-text search over rich media name and code. */
|