@pushwoosh/rpc-v2-http-api-data 0.2.182 → 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 +9 -0
- package/geozones.d.ts +9 -0
- package/package.json +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
|
},
|
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;
|