rsl-api-106 106.292.3 → 106.350.0

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.
@@ -2,25 +2,49 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.cartOutputWithoutReservationsCriterias = exports.cartWithoutRoomFeaturesOutput = exports.cartOutput = void 0;
4
4
  const customerBooking_1 = require("./customerBooking");
5
+ const lineItem_1 = require("./lineItem");
5
6
  exports.cartOutput = `
6
7
  id,
7
- reservations {
8
- ${customerBooking_1.customerBookingOutput}
8
+ reservations {
9
+ ${customerBooking_1.customerBookingOutput}
10
+ }
11
+ fromFastCheckinCheckout,
12
+ extraSales {
13
+ id,
14
+ guiid,
15
+ label,
16
+ lineItems {
17
+ ${lineItem_1.lineItemsOutput}
9
18
  }
10
- fromFastCheckinCheckout
19
+ }
11
20
  `;
12
21
  exports.cartWithoutRoomFeaturesOutput = `
13
22
  id,
14
- reservations {
15
- ${customerBooking_1.customerBookingWithoutRoomFeaturesOutput}
23
+ reservations {
24
+ ${customerBooking_1.customerBookingWithoutRoomFeaturesOutput}
25
+ }
26
+ fromFastCheckinCheckout,
27
+ extraSales {
28
+ id,
29
+ guiid,
30
+ label,
31
+ lineItems {
32
+ ${lineItem_1.lineItemsOutput}
16
33
  }
17
- fromFastCheckinCheckout
18
34
  }
19
35
  `;
20
36
  exports.cartOutputWithoutReservationsCriterias = `
21
37
  id,
22
- reservations {
23
- ${customerBooking_1.customerBookingOutputWithoutCriterias}
38
+ reservations {
39
+ ${customerBooking_1.customerBookingOutputWithoutCriterias}
40
+ }
41
+ fromFastCheckinCheckout,
42
+ extraSales {
43
+ id,
44
+ guiid,
45
+ label,
46
+ lineItems {
47
+ ${lineItem_1.lineItemsOutput}
24
48
  }
25
- fromFastCheckinCheckout
49
+ }
26
50
  `;
@@ -32,6 +32,7 @@ exports.lineItemsOutput = `
32
32
  criterias {
33
33
  ${criteriaValue_1.criteriaValueOutput}
34
34
  },
35
+ includedInGiftBox
35
36
  `;
36
37
  exports.lineItemsWithoutFerryOutput = `
37
38
  id,
@@ -56,4 +57,5 @@ exports.lineItemsWithoutFerryOutput = `
56
57
  criterias {
57
58
  ${criteriaValue_1.criteriaValueOutput}
58
59
  },
60
+ includedInGiftBox
59
61
  `;
@@ -10,8 +10,8 @@ const getNeobookingTranslationsQuery = () => {
10
10
  ) {
11
11
  getNeobookingTranslations(session: $session, input: $input) {
12
12
  translations {
13
- codeLanguage
14
- labelLanguage
13
+ code
14
+ label
15
15
  languageVars {
16
16
  code
17
17
  value
@@ -1149,6 +1149,7 @@ export type LoginHash256Output = {
1149
1149
  service?: Maybe<Service>;
1150
1150
  };
1151
1151
  export type LoginInput = {
1152
+ cgosPinCode?: InputMaybe<Scalars["String"]>;
1152
1153
  login: Scalars["String"];
1153
1154
  password: Scalars["String"];
1154
1155
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rsl-api-106",
3
- "version": "106.292.3",
3
+ "version": "106.350.0",
4
4
  "description": "TypeScript NPM Module for Resalys's GraphQL API (106)",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {