@pushwoosh/rpc-v2-http-api-data 0.2.174 → 0.2.175
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 +6 -0
- package/geozones.d.ts +4 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -14835,6 +14835,12 @@ export const data = {
|
|
|
14835
14835
|
},
|
|
14836
14836
|
"inboxIcon": {
|
|
14837
14837
|
"type": "string"
|
|
14838
|
+
},
|
|
14839
|
+
"startDate": {
|
|
14840
|
+
"type": "string"
|
|
14841
|
+
},
|
|
14842
|
+
"endDate": {
|
|
14843
|
+
"type": "string"
|
|
14838
14844
|
}
|
|
14839
14845
|
}
|
|
14840
14846
|
},
|
package/geozones.d.ts
CHANGED
|
@@ -39,6 +39,10 @@ export type Properties = {
|
|
|
39
39
|
remotePage: string;
|
|
40
40
|
inboxExpireDays: number;
|
|
41
41
|
inboxIcon: string;
|
|
42
|
+
/** Inclusive "YYYY-MM-DD" bounds read in the timetable timezone; empty = unbounded. */
|
|
43
|
+
startDate: string;
|
|
44
|
+
/** Inclusive last day the geozone may send; empty = no expiry. */
|
|
45
|
+
endDate: string;
|
|
42
46
|
};
|
|
43
47
|
export type Geozone = {
|
|
44
48
|
code: string;
|