mts-booking-library 1.3.8 → 1.3.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,12 +2,14 @@
2
2
  * @description Represents information about a service.
3
3
  *
4
4
  * @property {string} sellerName - The name of the seller offering the service.
5
+ * @property {string} sellerId - The id of the seller offering the service.
5
6
  * @property {string} minimumTotalPrice - The minimum total price for booking the service, meaning the price if all passenger choose the cheapest tariff.
6
7
  * @property {string} bookingProcessMessage - Optional message to be displayed to the user when booking this service.
7
8
  * @property {boolean} isBookable - Indicates whether the service is bookable (true) or not (false).
8
9
  */
9
10
  export type ServiceInfo = {
10
11
  sellerName: string;
12
+ sellerId: string;
11
13
  minimumTotalPrice: string;
12
14
  bookingProcessMessage: string;
13
15
  isBookable: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mts-booking-library",
3
- "version": "1.3.8",
3
+ "version": "1.3.9",
4
4
  "description": "Library for using MyTicketSolution Booking API",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",