@pushwoosh/rpc-v2-http-api-data 0.2.181 → 0.2.183
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 +11 -1
- package/geozones.d.ts +9 -0
- package/package.json +1 -1
- package/rich_medias.d.ts +1 -1
package/data.js
CHANGED
|
@@ -14771,6 +14771,15 @@ export const data = {
|
|
|
14771
14771
|
},
|
|
14772
14772
|
"endDate": {
|
|
14773
14773
|
"type": "string"
|
|
14774
|
+
},
|
|
14775
|
+
"sendPush": {
|
|
14776
|
+
"type": "boolean"
|
|
14777
|
+
},
|
|
14778
|
+
"fireEvent": {
|
|
14779
|
+
"type": "boolean"
|
|
14780
|
+
},
|
|
14781
|
+
"eventName": {
|
|
14782
|
+
"type": "string"
|
|
14774
14783
|
}
|
|
14775
14784
|
}
|
|
14776
14785
|
},
|
|
@@ -26662,7 +26671,8 @@ export const data = {
|
|
|
26662
26671
|
"pushwoosh.rpc_v2.rich_medias.ListRequest.OrderBy": {
|
|
26663
26672
|
"type": "E",
|
|
26664
26673
|
"values": [
|
|
26665
|
-
"CREATED_DATE"
|
|
26674
|
+
"CREATED_DATE",
|
|
26675
|
+
"UPDATED_DATE"
|
|
26666
26676
|
]
|
|
26667
26677
|
},
|
|
26668
26678
|
"pushwoosh.rpc_v2.rich_medias.ListRequest.OrderType": {
|
package/geozones.d.ts
CHANGED
|
@@ -55,6 +55,15 @@ export type Properties = {
|
|
|
55
55
|
startDate: string;
|
|
56
56
|
/** Inclusive last day the geozone may send; empty = no expiry. */
|
|
57
57
|
endDate: string;
|
|
58
|
+
/**
|
|
59
|
+
* Entry actions, independent of each other. Absent means unchanged on update
|
|
60
|
+
* and the legacy push-only zone on create.
|
|
61
|
+
*/
|
|
62
|
+
sendPush: boolean;
|
|
63
|
+
/** Fires an event on entry, which is how a geozone starts a customer journey. */
|
|
64
|
+
fireEvent: boolean;
|
|
65
|
+
/** Event fired on entry; empty falls back to the system PW_GeozoneEntered. */
|
|
66
|
+
eventName: string;
|
|
58
67
|
};
|
|
59
68
|
export type Geozone = {
|
|
60
69
|
code: string;
|
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. */
|