@pushwoosh/rpc-v2-http-api-data 0.1.829 → 0.1.831
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 +21 -0
- package/inapp_messages.d.ts +4 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -10094,6 +10094,21 @@ export const data = {
|
|
|
10094
10094
|
}
|
|
10095
10095
|
}
|
|
10096
10096
|
},
|
|
10097
|
+
"pushwoosh.rpc_v2.inapp_messages.ListInappMessagesRequest.OrderBy": {
|
|
10098
|
+
"type": "E",
|
|
10099
|
+
"values": [
|
|
10100
|
+
"CREATED",
|
|
10101
|
+
"NAME",
|
|
10102
|
+
"UPDATED"
|
|
10103
|
+
]
|
|
10104
|
+
},
|
|
10105
|
+
"pushwoosh.rpc_v2.inapp_messages.ListInappMessagesRequest.OrderDirection": {
|
|
10106
|
+
"type": "E",
|
|
10107
|
+
"values": [
|
|
10108
|
+
"DESC",
|
|
10109
|
+
"ASC"
|
|
10110
|
+
]
|
|
10111
|
+
},
|
|
10097
10112
|
"pushwoosh.rpc_v2.inapp_messages.ListInappMessagesRequest": {
|
|
10098
10113
|
"type": "I",
|
|
10099
10114
|
"fields": {
|
|
@@ -10108,6 +10123,12 @@ export const data = {
|
|
|
10108
10123
|
},
|
|
10109
10124
|
"perPage": {
|
|
10110
10125
|
"type": "number"
|
|
10126
|
+
},
|
|
10127
|
+
"orderBy": {
|
|
10128
|
+
"type": "pushwoosh.rpc_v2.inapp_messages.ListInappMessagesRequest.OrderBy"
|
|
10129
|
+
},
|
|
10130
|
+
"orderDirection": {
|
|
10131
|
+
"type": "pushwoosh.rpc_v2.inapp_messages.ListInappMessagesRequest.OrderDirection"
|
|
10111
10132
|
}
|
|
10112
10133
|
}
|
|
10113
10134
|
},
|
package/inapp_messages.d.ts
CHANGED
|
@@ -7,11 +7,15 @@ export interface InAppMessagesService {
|
|
|
7
7
|
Stop(request: StopInappRequest): Promise<StopInappResponse>;
|
|
8
8
|
Publish(request: PublishInappRequest): Promise<PublishInappResponse>;
|
|
9
9
|
}
|
|
10
|
+
export type ListInappMessagesRequest_OrderBy = 'CREATED' | 'NAME' | 'UPDATED';
|
|
11
|
+
export type ListInappMessagesRequest_OrderDirection = 'DESC' | 'ASC';
|
|
10
12
|
export type ListInappMessagesRequest = {
|
|
11
13
|
application?: string;
|
|
12
14
|
search?: string;
|
|
13
15
|
page?: number;
|
|
14
16
|
perPage?: number;
|
|
17
|
+
orderBy?: ListInappMessagesRequest_OrderBy;
|
|
18
|
+
orderDirection?: ListInappMessagesRequest_OrderDirection;
|
|
15
19
|
};
|
|
16
20
|
export type Inapp_Status = 'UNDEFINED' | 'ACTIVE' | 'SCHEDULED' | 'COMPLETED' | 'DRAFT';
|
|
17
21
|
export type Inapp = {
|