@pushwoosh/rpc-v2-http-api-data 0.1.874 → 0.1.876
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/inapp_messages.d.ts +1 -1
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -10358,7 +10358,8 @@ export const data = {
|
|
|
10358
10358
|
"ACTIVE",
|
|
10359
10359
|
"SCHEDULED",
|
|
10360
10360
|
"COMPLETED",
|
|
10361
|
-
"DRAFT"
|
|
10361
|
+
"DRAFT",
|
|
10362
|
+
"STOPPED"
|
|
10362
10363
|
]
|
|
10363
10364
|
},
|
|
10364
10365
|
"pushwoosh.rpc_v2.inapp_messages.Inapp": {
|
package/inapp_messages.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export type ListInappMessagesRequest = {
|
|
|
26
26
|
orderDirection?: ListInappMessagesRequest_OrderDirection;
|
|
27
27
|
statuses?: Inapp_Status[];
|
|
28
28
|
};
|
|
29
|
-
export type Inapp_Status = 'UNDEFINED' | 'ACTIVE' | 'SCHEDULED' | 'COMPLETED' | 'DRAFT';
|
|
29
|
+
export type Inapp_Status = 'UNDEFINED' | 'ACTIVE' | 'SCHEDULED' | 'COMPLETED' | 'DRAFT' | 'STOPPED';
|
|
30
30
|
export type Inapp = {
|
|
31
31
|
code: string;
|
|
32
32
|
name: string;
|