0.31.0 • Published 2 days ago

@bookingsuedtirol/mss-nodejs v0.31.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 days ago

mss-nodejs

npm version

MSS API v2.0 wrapper for Node.js projects.

Available services

  • getHotelList
  • getSpecialList
  • getRoomList
  • getPriceList
  • getRoomAvailability
  • getHotelPictures
  • getHotelPictureGroups
  • prepareBooking
  • getBooking
  • createInquiry
  • getUserSources

Runnable example

npm run dev

Example

import { Client, Request } from "@bookingsuedtirol/mss-nodejs";

const client = new Client({
  user: "username",
  password: "password",
  source: "source",
});

const res = await client.request((req) => {
  req.header.method = "getHotelList";
  req.request.search.id = ["11230"];
  req.request.options = {
    hotel_details:
      Request.HotelDetails.BasicInfo |
      Request.HotelDetails.PaymentOptionsForOnlineBooking,
  };
  return req;
});

const hotel = res.result.hotel[0];
console.log(hotel.name); // => "Hotel Lichtenstern"
console.log(hotel.stars); // => 3

Error handling

If MSS returns an error response or the request times out, the Promise is rejected:

try {
  const res = await client.request((req) => {
    // …
  });
  // do something with res
} catch (err) {
  console.error(err);
}
0.31.0

2 days ago

0.30.0

2 months ago

0.29.0

4 months ago

0.27.0

7 months ago

0.26.0

7 months ago

0.25.0

11 months ago

0.24.0

1 year ago

0.23.0

1 year ago