mts-booking-library 2.4.13 → 2.4.14

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.
@@ -4,13 +4,17 @@
4
4
  * @property {number} id - The unique identifier for the stop.
5
5
  * @property {Date} departureTime - The time when the journey departs from this stop.
6
6
  * @property {Date} destinationTime - The time when the journey arrives at this stop.
7
+ * @property {string} departureTimeString - The departure time as a formatted ISO string.
8
+ * @property {string} destinationTimeString - The destination time as a formatted ISO string.
7
9
  * @property {string} name - The name of the stop.
8
10
  * @property {string} address - The address of the stop.
9
11
  */
10
12
  export type Stop = {
11
13
  id: number;
12
14
  departureTime: Date;
15
+ departureTimeString: string;
13
16
  destinationTime: Date;
17
+ destinationTimeString: string;
14
18
  name: string;
15
19
  address: string;
16
20
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mts-booking-library",
3
- "version": "2.4.13",
3
+ "version": "2.4.14",
4
4
  "description": "Library for using MyTicketSolution Booking API",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",