rsl-api-106 106.51.2 → 106.84.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.
- package/lib/mutations/addCustomerDepositAccountPaymentsFromPaymentLink.d.ts +2 -0
- package/lib/mutations/addCustomerDepositAccountPaymentsFromPaymentLink.js +23 -0
- package/lib/mutations/index.d.ts +75 -73
- package/lib/mutations/index.js +5 -1
- package/lib/mutations/redirectPaymentGatewayFromPaymentLink.d.ts +2 -0
- package/lib/mutations/redirectPaymentGatewayFromPaymentLink.js +20 -0
- package/lib/outputs/customerBooking.js +1 -0
- package/lib/outputs/product.js +3 -1
- package/lib/queries/getPaymentLinkInfos.d.ts +2 -0
- package/lib/queries/getPaymentLinkInfos.js +35 -0
- package/lib/queries/index.d.ts +75 -74
- package/lib/queries/index.js +3 -1
- package/lib/types/index.d.ts +51 -5
- package/package.json +1 -1
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.addCustomerDepositAccountPaymentsFromPaymentLinkMutation = void 0;
|
|
4
|
+
const client_1 = require("@apollo/client");
|
|
5
|
+
const customerBooking_1 = require("../outputs/customerBooking");
|
|
6
|
+
const addCustomerDepositAccountPaymentsFromPaymentLinkMutation = () => {
|
|
7
|
+
return (0, client_1.gql) `
|
|
8
|
+
mutation addCustomerDepositAccountPaymentsFromPaymentLink(
|
|
9
|
+
$paymentLinkAuthenticationInput: PaymentLinkAuthenticationInput!
|
|
10
|
+
$input: CustomerDepositAccountPaymentsInputFromPaymentLink
|
|
11
|
+
) {
|
|
12
|
+
addCustomerDepositAccountPaymentsFromPaymentLink(
|
|
13
|
+
paymentLinkAuthenticationInput: $paymentLinkAuthenticationInput
|
|
14
|
+
input: $input
|
|
15
|
+
) {
|
|
16
|
+
reservation {
|
|
17
|
+
${customerBooking_1.customerBookingOutput}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
`;
|
|
22
|
+
};
|
|
23
|
+
exports.addCustomerDepositAccountPaymentsFromPaymentLinkMutation = addCustomerDepositAccountPaymentsFromPaymentLinkMutation;
|
package/lib/mutations/index.d.ts
CHANGED
|
@@ -1,73 +1,75 @@
|
|
|
1
|
-
import { addBabyMutation } from
|
|
2
|
-
import { addCustomerDepositAccountPaymentsMutation } from
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
|
|
1
|
+
import { addBabyMutation } from "./addBaby";
|
|
2
|
+
import { addCustomerDepositAccountPaymentsMutation } from "./addCustomerDepositAccountPayments";
|
|
3
|
+
import { addCustomerDepositAccountPaymentsFromPaymentLinkMutation } from "./addCustomerDepositAccountPaymentsFromPaymentLink";
|
|
4
|
+
import { addDiscountCodeMutation } from "./addDiscountCode";
|
|
5
|
+
import { addFidelityPointToProductMutation } from "./addFidelityPointToProduct";
|
|
6
|
+
import { addGiftCodeMutation } from "./addGiftCode";
|
|
7
|
+
import { addObservationMutation } from "./addObservation";
|
|
8
|
+
import { addOccupantMutation } from "./addOccupant";
|
|
9
|
+
import { addPartnerCustomerAccountMutation } from "./addPartnerCustomerAccount";
|
|
10
|
+
import { addPartnerToCartMutation } from "./addPartnerToCart";
|
|
11
|
+
import { addProductToBookingMutation } from "./addProductToBooking";
|
|
12
|
+
import { addProductToOccupantMutation } from "./addProductToOccupant";
|
|
13
|
+
import { assignRoomMutation } from "./assignRoom";
|
|
14
|
+
import { cancelFerryBookingMutation } from "./cancelFerryBooking";
|
|
15
|
+
import { changePasswordMutation } from "./changePassword";
|
|
16
|
+
import { chooseFerryProposalMutation } from "./chooseFerryProposal";
|
|
17
|
+
import { chooseProposalFromKeysMutation } from "./chooseProposalFromKeys";
|
|
18
|
+
import { chooseRoundTripProposalsMutation } from "./chooseRoundTripProposals";
|
|
19
|
+
import { confirmFastCheckoutMutation } from "./confirmFastCheckout";
|
|
20
|
+
import { createCustomerAccountMutation } from "./createCustomerAccount";
|
|
21
|
+
import { createServiceCustomerAccountMutation } from "./createServiceCustomerAccount";
|
|
22
|
+
import { disableEnablePartnerCustomerAccountMutation } from "./disableEnablePartnerCustomerAccount";
|
|
23
|
+
import { disableServiceCustomerAccountMutation } from "./disableServiceCustomerAccount";
|
|
24
|
+
import { doFastCheckinMutation } from "./doFastCheckin";
|
|
25
|
+
import { doFastCheckoutMutation } from "./doFastCheckout";
|
|
26
|
+
import { expireSessionMutation } from "./expireSession";
|
|
27
|
+
import { facebookLoginMutation } from "./facebookLogin";
|
|
28
|
+
import { loginMutation } from "./login";
|
|
29
|
+
import { loginAnyCustomerTypeMutation } from "./loginAnyCustomerType";
|
|
30
|
+
import { loginETOModeMutation } from "./loginETOMode";
|
|
31
|
+
import { loginHash256Mutation } from "./loginHash256";
|
|
32
|
+
import { loginPartnerMutation } from "./loginPartner";
|
|
33
|
+
import { logoutMutation } from "./logout";
|
|
34
|
+
import { payOnStoredCreditCardMutation } from "./payOnStoredCreditCard";
|
|
35
|
+
import { redirectPaymentGatewayForAmountMutation } from "./redirectPaymentGatewayForAmount";
|
|
36
|
+
import { redirectPaymentGatewayForCartMutation } from "./redirectPaymentGatewayForCart";
|
|
37
|
+
import { redirectPaymentGatewayForInstalmentMutation } from "./redirectPaymentGatewayForInstalment";
|
|
38
|
+
import { redirectPaymentGatewayFromPaymentLinkMutation } from "./redirectPaymentGatewayFromPaymentLink";
|
|
39
|
+
import { removeBookingFromCartMutation } from "./removeBookingFromCart";
|
|
40
|
+
import { removeCartPaymentsMutation } from "./removeCartPayments";
|
|
41
|
+
import { removeCustomerAccountMutation } from "./removeCustomerAccount";
|
|
42
|
+
import { removeDiscountCodeMutation } from "./removeDiscountCode";
|
|
43
|
+
import { removeGiftCodeMutation } from "./removeGiftCode";
|
|
44
|
+
import { removeOccupantMutation } from "./removeOccupant";
|
|
45
|
+
import { removeStayMutation } from "./removeStay";
|
|
46
|
+
import { resetCartMutation } from "./resetCart";
|
|
47
|
+
import { resetPendingFerryBookingMutation } from "./resetPendingFerryBooking";
|
|
48
|
+
import { saveCartMutation } from "./saveCart";
|
|
49
|
+
import { saveFerryBookingMutation } from "./saveFerryBooking";
|
|
50
|
+
import { setSessionLanguageMutation } from "./setSessionLanguage";
|
|
51
|
+
import { switchToPartnerConventionMutation } from "./switchToPartnerConvention";
|
|
52
|
+
import { unassignRoomMutation } from "./unassignRoom";
|
|
53
|
+
import { unlockBookingMutation } from "./unlockBooking";
|
|
54
|
+
import { updateBookingCriteriasMutation } from "./updateBookingCriterias";
|
|
55
|
+
import { updateCartPaymentMethodMutation } from "./updateCartPaymentMethod";
|
|
56
|
+
import { updateCartPaymentPlansMutation } from "./updateCartPaymentPlans";
|
|
57
|
+
import { updateCustomerAccountMutation } from "./updateCustomerAccount";
|
|
58
|
+
import { updateCustomerBookingMutation } from "./updateCustomerBooking";
|
|
59
|
+
import { updateFerryAccommodationsMutation } from "./updateFerryAccommodations";
|
|
60
|
+
import { updateFerryBookingMutation } from "./updateFerryBooking";
|
|
61
|
+
import { updateFerryTravelersInformationMutation } from "./updateFerryTravelersInformation";
|
|
62
|
+
import { updateOccupantMutation } from "./updateOccupant";
|
|
63
|
+
import { updateOccupantSkisetMeasurementsMutation } from "./updateOccupantSkisetMeasurements";
|
|
64
|
+
import { updatePartnerAccountMutation } from "./updatePartnerAccount";
|
|
65
|
+
import { updatePartnerPaymentPlansMutation } from "./updatePartnerPaymentPlans";
|
|
66
|
+
import { updatePayerPaymentPlansMutation } from "./updatePayerPaymentPlans";
|
|
67
|
+
import { updatePrimaryOccupantMutation } from "./updatePrimaryOccupant";
|
|
68
|
+
import { updateProductCriteriasMutation } from "./updateProductCriterias";
|
|
69
|
+
import { updateRoomFromMapMutation } from "./updateRoomFromMap";
|
|
70
|
+
import { updateServiceCustomerAccountMutation } from "./updateServiceCustomerAccount";
|
|
71
|
+
import { updateStayTimeMutation } from "./updateStayTime";
|
|
72
|
+
import { updateTotalOccupantsMutation } from "./updateTotalOccupants";
|
|
73
|
+
import { uploadFilesMutation } from "./uploadFiles";
|
|
74
|
+
import { validateLyraPaymentMutation } from "./validateLyraPayment";
|
|
75
|
+
export { addBabyMutation, addCustomerDepositAccountPaymentsMutation, addDiscountCodeMutation, addGiftCodeMutation, addObservationMutation, addOccupantMutation, addPartnerToCartMutation, addProductToBookingMutation, addProductToOccupantMutation, chooseProposalFromKeysMutation, confirmFastCheckoutMutation, createCustomerAccountMutation, doFastCheckinMutation, doFastCheckoutMutation, facebookLoginMutation, loginMutation, loginAnyCustomerTypeMutation, loginETOModeMutation, loginPartnerMutation, logoutMutation, redirectPaymentGatewayForAmountMutation, redirectPaymentGatewayForCartMutation, redirectPaymentGatewayForInstalmentMutation, removeBookingFromCartMutation, removeCartPaymentsMutation, removeCustomerAccountMutation, removeDiscountCodeMutation, removeGiftCodeMutation, removeOccupantMutation, removeStayMutation, resetCartMutation, saveCartMutation, switchToPartnerConventionMutation, updateCartPaymentMethodMutation, updateCartPaymentPlansMutation, updateCustomerAccountMutation, updateCustomerBookingMutation, updateOccupantMutation, updatePartnerPaymentPlansMutation, updatePayerPaymentPlansMutation, updateTotalOccupantsMutation, updateRoomFromMapMutation, updatePrimaryOccupantMutation, updateStayTimeMutation, loginHash256Mutation, expireSessionMutation, unlockBookingMutation, updateBookingCriteriasMutation, changePasswordMutation, updateOccupantSkisetMeasurementsMutation, payOnStoredCreditCardMutation, setSessionLanguageMutation, addFidelityPointToProductMutation, chooseFerryProposalMutation, updateFerryAccommodationsMutation, updateFerryTravelersInformationMutation, saveFerryBookingMutation, cancelFerryBookingMutation, updateFerryBookingMutation, resetPendingFerryBookingMutation, updatePartnerAccountMutation, chooseRoundTripProposalsMutation, createServiceCustomerAccountMutation, updateServiceCustomerAccountMutation, disableServiceCustomerAccountMutation, addPartnerCustomerAccountMutation, disableEnablePartnerCustomerAccountMutation, validateLyraPaymentMutation, uploadFilesMutation, assignRoomMutation, unassignRoomMutation, updateProductCriteriasMutation, addCustomerDepositAccountPaymentsFromPaymentLinkMutation, redirectPaymentGatewayFromPaymentLinkMutation, };
|
package/lib/mutations/index.js
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.updateOccupantSkisetMeasurementsMutation = exports.changePasswordMutation = exports.updateBookingCriteriasMutation = exports.unlockBookingMutation = exports.expireSessionMutation = exports.loginHash256Mutation = exports.updateStayTimeMutation = exports.updatePrimaryOccupantMutation = exports.updateRoomFromMapMutation = exports.updateTotalOccupantsMutation = exports.updatePayerPaymentPlansMutation = exports.updatePartnerPaymentPlansMutation = exports.updateOccupantMutation = exports.updateCustomerBookingMutation = exports.updateCustomerAccountMutation = exports.updateCartPaymentPlansMutation = exports.updateCartPaymentMethodMutation = exports.switchToPartnerConventionMutation = exports.saveCartMutation = exports.resetCartMutation = exports.removeStayMutation = exports.removeOccupantMutation = exports.removeGiftCodeMutation = exports.removeDiscountCodeMutation = exports.removeCustomerAccountMutation = exports.removeCartPaymentsMutation = exports.removeBookingFromCartMutation = exports.redirectPaymentGatewayForInstalmentMutation = exports.redirectPaymentGatewayForCartMutation = exports.redirectPaymentGatewayForAmountMutation = exports.logoutMutation = exports.loginPartnerMutation = exports.loginETOModeMutation = exports.loginAnyCustomerTypeMutation = exports.loginMutation = exports.facebookLoginMutation = exports.doFastCheckoutMutation = exports.doFastCheckinMutation = exports.createCustomerAccountMutation = exports.confirmFastCheckoutMutation = exports.chooseProposalFromKeysMutation = exports.addProductToOccupantMutation = exports.addProductToBookingMutation = exports.addPartnerToCartMutation = exports.addOccupantMutation = exports.addObservationMutation = exports.addGiftCodeMutation = exports.addDiscountCodeMutation = exports.addCustomerDepositAccountPaymentsMutation = exports.addBabyMutation = void 0;
|
|
4
|
-
exports.updateProductCriteriasMutation = exports.unassignRoomMutation = exports.assignRoomMutation = exports.uploadFilesMutation = exports.validateLyraPaymentMutation = exports.disableEnablePartnerCustomerAccountMutation = exports.addPartnerCustomerAccountMutation = exports.disableServiceCustomerAccountMutation = exports.updateServiceCustomerAccountMutation = exports.createServiceCustomerAccountMutation = exports.chooseRoundTripProposalsMutation = exports.updatePartnerAccountMutation = exports.resetPendingFerryBookingMutation = exports.updateFerryBookingMutation = exports.cancelFerryBookingMutation = exports.saveFerryBookingMutation = exports.updateFerryTravelersInformationMutation = exports.updateFerryAccommodationsMutation = exports.chooseFerryProposalMutation = exports.addFidelityPointToProductMutation = exports.setSessionLanguageMutation = exports.payOnStoredCreditCardMutation = void 0;
|
|
4
|
+
exports.redirectPaymentGatewayFromPaymentLinkMutation = exports.addCustomerDepositAccountPaymentsFromPaymentLinkMutation = exports.updateProductCriteriasMutation = exports.unassignRoomMutation = exports.assignRoomMutation = exports.uploadFilesMutation = exports.validateLyraPaymentMutation = exports.disableEnablePartnerCustomerAccountMutation = exports.addPartnerCustomerAccountMutation = exports.disableServiceCustomerAccountMutation = exports.updateServiceCustomerAccountMutation = exports.createServiceCustomerAccountMutation = exports.chooseRoundTripProposalsMutation = exports.updatePartnerAccountMutation = exports.resetPendingFerryBookingMutation = exports.updateFerryBookingMutation = exports.cancelFerryBookingMutation = exports.saveFerryBookingMutation = exports.updateFerryTravelersInformationMutation = exports.updateFerryAccommodationsMutation = exports.chooseFerryProposalMutation = exports.addFidelityPointToProductMutation = exports.setSessionLanguageMutation = exports.payOnStoredCreditCardMutation = void 0;
|
|
5
5
|
const addBaby_1 = require("./addBaby");
|
|
6
6
|
Object.defineProperty(exports, "addBabyMutation", { enumerable: true, get: function () { return addBaby_1.addBabyMutation; } });
|
|
7
7
|
const addCustomerDepositAccountPayments_1 = require("./addCustomerDepositAccountPayments");
|
|
8
8
|
Object.defineProperty(exports, "addCustomerDepositAccountPaymentsMutation", { enumerable: true, get: function () { return addCustomerDepositAccountPayments_1.addCustomerDepositAccountPaymentsMutation; } });
|
|
9
|
+
const addCustomerDepositAccountPaymentsFromPaymentLink_1 = require("./addCustomerDepositAccountPaymentsFromPaymentLink");
|
|
10
|
+
Object.defineProperty(exports, "addCustomerDepositAccountPaymentsFromPaymentLinkMutation", { enumerable: true, get: function () { return addCustomerDepositAccountPaymentsFromPaymentLink_1.addCustomerDepositAccountPaymentsFromPaymentLinkMutation; } });
|
|
9
11
|
const addDiscountCode_1 = require("./addDiscountCode");
|
|
10
12
|
Object.defineProperty(exports, "addDiscountCodeMutation", { enumerable: true, get: function () { return addDiscountCode_1.addDiscountCodeMutation; } });
|
|
11
13
|
const addFidelityPointToProduct_1 = require("./addFidelityPointToProduct");
|
|
@@ -74,6 +76,8 @@ const redirectPaymentGatewayForCart_1 = require("./redirectPaymentGatewayForCart
|
|
|
74
76
|
Object.defineProperty(exports, "redirectPaymentGatewayForCartMutation", { enumerable: true, get: function () { return redirectPaymentGatewayForCart_1.redirectPaymentGatewayForCartMutation; } });
|
|
75
77
|
const redirectPaymentGatewayForInstalment_1 = require("./redirectPaymentGatewayForInstalment");
|
|
76
78
|
Object.defineProperty(exports, "redirectPaymentGatewayForInstalmentMutation", { enumerable: true, get: function () { return redirectPaymentGatewayForInstalment_1.redirectPaymentGatewayForInstalmentMutation; } });
|
|
79
|
+
const redirectPaymentGatewayFromPaymentLink_1 = require("./redirectPaymentGatewayFromPaymentLink");
|
|
80
|
+
Object.defineProperty(exports, "redirectPaymentGatewayFromPaymentLinkMutation", { enumerable: true, get: function () { return redirectPaymentGatewayFromPaymentLink_1.redirectPaymentGatewayFromPaymentLinkMutation; } });
|
|
77
81
|
const removeBookingFromCart_1 = require("./removeBookingFromCart");
|
|
78
82
|
Object.defineProperty(exports, "removeBookingFromCartMutation", { enumerable: true, get: function () { return removeBookingFromCart_1.removeBookingFromCartMutation; } });
|
|
79
83
|
const removeCartPayments_1 = require("./removeCartPayments");
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.redirectPaymentGatewayFromPaymentLinkMutation = void 0;
|
|
4
|
+
const client_1 = require("@apollo/client");
|
|
5
|
+
const redirectPaymentGatewayFromPaymentLinkMutation = () => {
|
|
6
|
+
return (0, client_1.gql) `
|
|
7
|
+
mutation redirectPaymentGatewayFromPaymentLink(
|
|
8
|
+
$paymentLinkAuthenticationInput: PaymentLinkAuthenticationInput!
|
|
9
|
+
$input: PaymentGatewayFromPaymentLinkInput
|
|
10
|
+
) {
|
|
11
|
+
redirectPaymentGatewayFromPaymentLink(
|
|
12
|
+
paymentLinkAuthenticationInput: $paymentLinkAuthenticationInput
|
|
13
|
+
input: $input
|
|
14
|
+
) {
|
|
15
|
+
gateway
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
`;
|
|
19
|
+
};
|
|
20
|
+
exports.redirectPaymentGatewayFromPaymentLinkMutation = redirectPaymentGatewayFromPaymentLinkMutation;
|
package/lib/outputs/product.js
CHANGED
|
@@ -37,6 +37,7 @@ const subProductOutput = `
|
|
|
37
37
|
productCriterias {
|
|
38
38
|
${criteriaValue_1.criteriaValueOutput}
|
|
39
39
|
},
|
|
40
|
+
forCart
|
|
40
41
|
`;
|
|
41
42
|
exports.productOutput = `
|
|
42
43
|
ageFrom,
|
|
@@ -75,5 +76,6 @@ exports.productOutput = `
|
|
|
75
76
|
subProducts {
|
|
76
77
|
${subProductOutput}
|
|
77
78
|
},
|
|
78
|
-
occupantApplication
|
|
79
|
+
occupantApplication,
|
|
80
|
+
forCart
|
|
79
81
|
`;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getPaymentLinkInfosQueryQuery = void 0;
|
|
4
|
+
const client_1 = require("@apollo/client");
|
|
5
|
+
const customerBooking_1 = require("../outputs/customerBooking");
|
|
6
|
+
const customerDepositAccount_1 = require("../outputs/customerDepositAccount");
|
|
7
|
+
const occupant_1 = require("../outputs/occupant");
|
|
8
|
+
const paymentMethod_1 = require("../outputs/paymentMethod");
|
|
9
|
+
const service_1 = require("../outputs/service");
|
|
10
|
+
const getPaymentLinkInfosQueryQuery = () => {
|
|
11
|
+
return (0, client_1.gql) `
|
|
12
|
+
query getPaymentLinkInfosQuery($paymentLinkAuthenticationInput: PaymentLinkAuthenticationInput!) {
|
|
13
|
+
getPaymentLinkInfosQuery (
|
|
14
|
+
paymentLinkAuthenticationInput: $paymentLinkAuthenticationInput
|
|
15
|
+
) {
|
|
16
|
+
customerBooking {
|
|
17
|
+
${customerBooking_1.customerBookingOutput}
|
|
18
|
+
},
|
|
19
|
+
occupant {
|
|
20
|
+
${occupant_1.occupantOutput}
|
|
21
|
+
},
|
|
22
|
+
service {
|
|
23
|
+
${service_1.serviceOutput}
|
|
24
|
+
},
|
|
25
|
+
customerDepositAccounts {
|
|
26
|
+
${customerDepositAccount_1.customerDepositAccountOutput}
|
|
27
|
+
},
|
|
28
|
+
paymentMethod {
|
|
29
|
+
${paymentMethod_1.paymentMethodOutput}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
`;
|
|
34
|
+
};
|
|
35
|
+
exports.getPaymentLinkInfosQueryQuery = getPaymentLinkInfosQueryQuery;
|
package/lib/queries/index.d.ts
CHANGED
|
@@ -1,74 +1,75 @@
|
|
|
1
|
-
import { checkApiAliveQuery } from
|
|
2
|
-
import { checkModuleFacebookActivatedQuery } from
|
|
3
|
-
import { checkSessionActivatedQuery } from
|
|
4
|
-
import { checkValidLoginQuery } from
|
|
5
|
-
import { getAccommodationProductsQuery } from
|
|
6
|
-
import { getAllOccupantProductsAllAgeRangesQuery } from
|
|
7
|
-
import { getAlternativeProposalRulesForContractFolderQuery } from
|
|
8
|
-
import { getAvailableRoomFeaturesQuery } from
|
|
9
|
-
import { getAvailForRoomTypesQuery } from
|
|
10
|
-
import { getBookingDocumentsQuery } from
|
|
11
|
-
import { getBookingProductsQuery } from
|
|
12
|
-
import { getBookingRecordCriteriasQuery } from
|
|
13
|
-
import { getBrochuresQuery } from
|
|
14
|
-
import { getCampaignsQuery } from
|
|
15
|
-
import { getCartQuery } from
|
|
16
|
-
import { getCivilitiesQuery } from
|
|
17
|
-
import { getCountriesQuery } from
|
|
18
|
-
import { getCriteriaInformationQuery } from
|
|
19
|
-
import { getCurrentCustomerAccountQuery } from
|
|
20
|
-
import { getCustomerBookingsQuery, getCustomerBookingsWithoutRoomFeaturesQuery } from
|
|
21
|
-
import { getCustomerCriteriasQuery } from
|
|
22
|
-
import { getCustomerDepositAccountsQuery } from
|
|
23
|
-
import { getCustomerGiftCodesQuery } from
|
|
24
|
-
import { getCustomerLoyaltyPointsQuery } from
|
|
25
|
-
import { getCustomerPrivilegeCardsQuery } from
|
|
26
|
-
import { getFerryAddonCategoriesQuery } from
|
|
27
|
-
import { getFerryAvailableAccommodationsQuery } from
|
|
28
|
-
import { getFerryCarsQuery } from
|
|
29
|
-
import { getFerryCivilitiesQuery } from
|
|
30
|
-
import { getFerryCrossingsQuery } from
|
|
31
|
-
import { getFerryNationalitiesQuery } from
|
|
32
|
-
import { getFerryPortsQuery } from
|
|
33
|
-
import { getFerryProductsQuery } from
|
|
34
|
-
import { getFerryProposalsQuery } from
|
|
35
|
-
import { getFerryTrailerCategoriesQuery } from
|
|
36
|
-
import { getFerryVehicleCategoriesQuery } from
|
|
37
|
-
import { getFerryVehicleFuelsQuery } from
|
|
38
|
-
import { getFidelityLogsQuery } from
|
|
39
|
-
import { getFidelityRulesQuery } from
|
|
40
|
-
import { getLanguagesQuery } from
|
|
41
|
-
import { getLyraFormTokenQuery } from
|
|
42
|
-
import { getMapSelectorDataQuery } from
|
|
43
|
-
import { getMyLoginQuery } from
|
|
44
|
-
import { getNeobookingTranslationsQuery } from
|
|
45
|
-
import { getOccupantProductsQuery } from
|
|
46
|
-
import { getOccupantsFromCurrentCustomerQuery } from
|
|
47
|
-
import { getPartnerQuery } from
|
|
48
|
-
import { getPartnerCustomersQuery } from
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
|
|
1
|
+
import { checkApiAliveQuery } from "./checkApiAlive";
|
|
2
|
+
import { checkModuleFacebookActivatedQuery } from "./checkModuleFacebookActivated";
|
|
3
|
+
import { checkSessionActivatedQuery } from "./checkSessionActivated";
|
|
4
|
+
import { checkValidLoginQuery } from "./checkValidLogin";
|
|
5
|
+
import { getAccommodationProductsQuery } from "./getAccommodationProducts";
|
|
6
|
+
import { getAllOccupantProductsAllAgeRangesQuery } from "./getAllOccupantProductsAllAgeRanges";
|
|
7
|
+
import { getAlternativeProposalRulesForContractFolderQuery } from "./getAlternativeProposalRulesForContractFolder";
|
|
8
|
+
import { getAvailableRoomFeaturesQuery } from "./getAvailableRoomFeatures";
|
|
9
|
+
import { getAvailForRoomTypesQuery } from "./getAvailForRoomTypes";
|
|
10
|
+
import { getBookingDocumentsQuery } from "./getBookingDocuments";
|
|
11
|
+
import { getBookingProductsQuery } from "./getBookingProducts";
|
|
12
|
+
import { getBookingRecordCriteriasQuery } from "./getBookingRecordCriterias";
|
|
13
|
+
import { getBrochuresQuery } from "./getBrochures";
|
|
14
|
+
import { getCampaignsQuery } from "./getCampaigns";
|
|
15
|
+
import { getCartQuery } from "./getCart";
|
|
16
|
+
import { getCivilitiesQuery } from "./getCivilities";
|
|
17
|
+
import { getCountriesQuery } from "./getCountries";
|
|
18
|
+
import { getCriteriaInformationQuery } from "./getCriteriaInformation";
|
|
19
|
+
import { getCurrentCustomerAccountQuery } from "./getCurrentCustomerAccount";
|
|
20
|
+
import { getCustomerBookingsQuery, getCustomerBookingsWithoutRoomFeaturesQuery } from "./getCustomerBookings";
|
|
21
|
+
import { getCustomerCriteriasQuery } from "./getCustomerCriterias";
|
|
22
|
+
import { getCustomerDepositAccountsQuery } from "./getCustomerDepositAccounts";
|
|
23
|
+
import { getCustomerGiftCodesQuery } from "./getCustomerGiftCodes";
|
|
24
|
+
import { getCustomerLoyaltyPointsQuery } from "./getCustomerLoyaltyPoints";
|
|
25
|
+
import { getCustomerPrivilegeCardsQuery } from "./getCustomerPrivilegeCards";
|
|
26
|
+
import { getFerryAddonCategoriesQuery } from "./getFerryAddonCategories";
|
|
27
|
+
import { getFerryAvailableAccommodationsQuery } from "./getFerryAvailableAccommodations";
|
|
28
|
+
import { getFerryCarsQuery } from "./getFerryCars";
|
|
29
|
+
import { getFerryCivilitiesQuery } from "./getFerryCivilities";
|
|
30
|
+
import { getFerryCrossingsQuery } from "./getFerryCrossings";
|
|
31
|
+
import { getFerryNationalitiesQuery } from "./getFerryNationalities";
|
|
32
|
+
import { getFerryPortsQuery } from "./getFerryPorts";
|
|
33
|
+
import { getFerryProductsQuery } from "./getFerryProducts";
|
|
34
|
+
import { getFerryProposalsQuery } from "./getFerryProposals";
|
|
35
|
+
import { getFerryTrailerCategoriesQuery } from "./getFerryTrailerCategories";
|
|
36
|
+
import { getFerryVehicleCategoriesQuery } from "./getFerryVehicleCategories";
|
|
37
|
+
import { getFerryVehicleFuelsQuery } from "./getFerryVehicleFuels";
|
|
38
|
+
import { getFidelityLogsQuery } from "./getFidelityLogs";
|
|
39
|
+
import { getFidelityRulesQuery } from "./getFidelityRules";
|
|
40
|
+
import { getLanguagesQuery } from "./getLanguages";
|
|
41
|
+
import { getLyraFormTokenQuery } from "./getLyraFormToken";
|
|
42
|
+
import { getMapSelectorDataQuery } from "./getMapSelectorData";
|
|
43
|
+
import { getMyLoginQuery } from "./getMyLogin";
|
|
44
|
+
import { getNeobookingTranslationsQuery } from "./getNeobookingTranslations";
|
|
45
|
+
import { getOccupantProductsQuery } from "./getOccupantProducts";
|
|
46
|
+
import { getOccupantsFromCurrentCustomerQuery } from "./getOccupantsFromCurrentCustomer";
|
|
47
|
+
import { getPartnerQuery } from "./getPartner";
|
|
48
|
+
import { getPartnerCustomersQuery } from "./getPartnerCustomers";
|
|
49
|
+
import { getPaymentLinkInfosQueryQuery } from "./getPaymentLinkInfos";
|
|
50
|
+
import { getPaymentMethodsQuery } from "./getPaymentMethods";
|
|
51
|
+
import { getPaymentPlansQuery } from "./getPaymentPlans";
|
|
52
|
+
import { getPendingFerryBookingQuery } from "./getPendingFerryBooking";
|
|
53
|
+
import { getPostCodeApiDetailQuery } from "./getPostCodeApiDetail";
|
|
54
|
+
import { getPostCodeApiSimpleQuery } from "./getPostCodeApiSimple";
|
|
55
|
+
import { getPrivilegeCardTypesQuery } from "./getPrivilegeCardTypes";
|
|
56
|
+
import { getProductCategoriesQuery } from "./getProductCategories";
|
|
57
|
+
import { getFavoritesPropertiesQuery, getPropertiesQuery, getPropertiesSelectQuery, getPropertiesWithoutRoomFeaturesQuery } from "./getProperties";
|
|
58
|
+
import { getProposalByRoomTypesQuery } from "./getProposalByRoomTypes";
|
|
59
|
+
import { getProposalsQuery } from "./getProposals";
|
|
60
|
+
import { getProposalsByKeysQuery } from "./getProposalsByKeys";
|
|
61
|
+
import { getProposalsByPropertiesQuery, getProposalsByPropertiesWithoutRoomFeaturesQuery } from "./getProposalsByProperties";
|
|
62
|
+
import { getRelationshipsQuery } from "./getRelationships";
|
|
63
|
+
import { getResalysErrorListQuery } from "./getResalysErrorList";
|
|
64
|
+
import { getResalysVersionQuery } from "./getResalysVersion";
|
|
65
|
+
import { getRoomTypeCategoriesQuery } from "./getRoomTypeCategories";
|
|
66
|
+
import { getRoomTypesQuery, getRoomTypesWithoutRoomFeaturesQuery } from "./getRoomTypes";
|
|
67
|
+
import { getSalesChannelModeQuery } from "./getSalesChannelMode";
|
|
68
|
+
import { getSessionQuery } from "./getSession";
|
|
69
|
+
import { getSkisetMeasurementsQuery } from "./getSkisetMeasurements";
|
|
70
|
+
import { getTranslationsQuery } from "./getTranslations";
|
|
71
|
+
import { getUserLanguageQuery } from "./getUserLanguage";
|
|
72
|
+
import { hasProductsForOccupantQuery } from "./hasProductsForOccupant";
|
|
73
|
+
import { renewPasswordQuery } from "./renewPassword";
|
|
74
|
+
import { requestBrochureQuery } from "./requestBrochure";
|
|
75
|
+
export { checkModuleFacebookActivatedQuery, checkSessionActivatedQuery, getAccommodationProductsQuery, getAvailableRoomFeaturesQuery, getBookingDocumentsQuery, getBookingProductsQuery, getBookingRecordCriteriasQuery, getBrochuresQuery, getCampaignsQuery, getCartQuery, getCivilitiesQuery, getCountriesQuery, getCriteriaInformationQuery, getCustomerBookingsQuery, getCustomerCriteriasQuery, getCustomerDepositAccountsQuery, getCustomerGiftCodesQuery, getCustomerLoyaltyPointsQuery, getCustomerPrivilegeCardsQuery, getLanguagesQuery, getMapSelectorDataQuery, getMyLoginQuery, getNeobookingTranslationsQuery, getOccupantProductsQuery, getPartnerQuery, getPaymentMethodsQuery, getPaymentPlansQuery, getPostCodeApiSimpleQuery, getPostCodeApiDetailQuery, getPrivilegeCardTypesQuery, getProductCategoriesQuery, getPropertiesQuery, getFavoritesPropertiesQuery, getPropertiesSelectQuery, getProposalsQuery, getProposalsByKeysQuery, getProposalsByPropertiesQuery, getResalysVersionQuery, getRoomTypeCategoriesQuery, getRoomTypesQuery, getSalesChannelModeQuery, getSessionQuery, getTranslationsQuery, renewPasswordQuery, requestBrochureQuery, hasProductsForOccupantQuery, getProposalByRoomTypesQuery, getAvailForRoomTypesQuery, getCurrentCustomerAccountQuery, getAllOccupantProductsAllAgeRangesQuery, getAlternativeProposalRulesForContractFolderQuery, getResalysErrorListQuery, getSkisetMeasurementsQuery, checkApiAliveQuery, getUserLanguageQuery, checkValidLoginQuery, getFidelityRulesQuery, getFidelityLogsQuery, getPendingFerryBookingQuery, getFerryCivilitiesQuery, getFerryNationalitiesQuery, getFerryVehicleCategoriesQuery, getFerryAddonCategoriesQuery, getFerryTrailerCategoriesQuery, getFerryCarsQuery, getFerryPortsQuery, getFerryCrossingsQuery, getFerryProposalsQuery, getFerryAvailableAccommodationsQuery, getFerryProductsQuery, getFerryVehicleFuelsQuery, getOccupantsFromCurrentCustomerQuery, getRelationshipsQuery, getPartnerCustomersQuery, getLyraFormTokenQuery, getCustomerBookingsWithoutRoomFeaturesQuery, getPropertiesWithoutRoomFeaturesQuery, getProposalsByPropertiesWithoutRoomFeaturesQuery, getRoomTypesWithoutRoomFeaturesQuery, getPaymentLinkInfosQueryQuery, };
|
package/lib/queries/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getAllOccupantProductsAllAgeRangesQuery = exports.getCurrentCustomerAccountQuery = exports.getAvailForRoomTypesQuery = exports.getProposalByRoomTypesQuery = exports.hasProductsForOccupantQuery = exports.requestBrochureQuery = exports.renewPasswordQuery = exports.getTranslationsQuery = exports.getSessionQuery = exports.getSalesChannelModeQuery = exports.getRoomTypesQuery = exports.getRoomTypeCategoriesQuery = exports.getResalysVersionQuery = exports.getProposalsByPropertiesQuery = exports.getProposalsByKeysQuery = exports.getProposalsQuery = exports.getPropertiesSelectQuery = exports.getFavoritesPropertiesQuery = exports.getPropertiesQuery = exports.getProductCategoriesQuery = exports.getPrivilegeCardTypesQuery = exports.getPostCodeApiDetailQuery = exports.getPostCodeApiSimpleQuery = exports.getPaymentPlansQuery = exports.getPaymentMethodsQuery = exports.getPartnerQuery = exports.getOccupantProductsQuery = exports.getNeobookingTranslationsQuery = exports.getMyLoginQuery = exports.getMapSelectorDataQuery = exports.getLanguagesQuery = exports.getCustomerPrivilegeCardsQuery = exports.getCustomerLoyaltyPointsQuery = exports.getCustomerGiftCodesQuery = exports.getCustomerDepositAccountsQuery = exports.getCustomerCriteriasQuery = exports.getCustomerBookingsQuery = exports.getCriteriaInformationQuery = exports.getCountriesQuery = exports.getCivilitiesQuery = exports.getCartQuery = exports.getCampaignsQuery = exports.getBrochuresQuery = exports.getBookingRecordCriteriasQuery = exports.getBookingProductsQuery = exports.getBookingDocumentsQuery = exports.getAvailableRoomFeaturesQuery = exports.getAccommodationProductsQuery = exports.checkSessionActivatedQuery = exports.checkModuleFacebookActivatedQuery = void 0;
|
|
4
|
-
exports.getRoomTypesWithoutRoomFeaturesQuery = exports.getProposalsByPropertiesWithoutRoomFeaturesQuery = exports.getPropertiesWithoutRoomFeaturesQuery = exports.getCustomerBookingsWithoutRoomFeaturesQuery = exports.getLyraFormTokenQuery = exports.getPartnerCustomersQuery = exports.getRelationshipsQuery = exports.getOccupantsFromCurrentCustomerQuery = exports.getFerryVehicleFuelsQuery = exports.getFerryProductsQuery = exports.getFerryAvailableAccommodationsQuery = exports.getFerryProposalsQuery = exports.getFerryCrossingsQuery = exports.getFerryPortsQuery = exports.getFerryCarsQuery = exports.getFerryTrailerCategoriesQuery = exports.getFerryAddonCategoriesQuery = exports.getFerryVehicleCategoriesQuery = exports.getFerryNationalitiesQuery = exports.getFerryCivilitiesQuery = exports.getPendingFerryBookingQuery = exports.getFidelityLogsQuery = exports.getFidelityRulesQuery = exports.checkValidLoginQuery = exports.getUserLanguageQuery = exports.checkApiAliveQuery = exports.getSkisetMeasurementsQuery = exports.getResalysErrorListQuery = exports.getAlternativeProposalRulesForContractFolderQuery = void 0;
|
|
4
|
+
exports.getPaymentLinkInfosQueryQuery = exports.getRoomTypesWithoutRoomFeaturesQuery = exports.getProposalsByPropertiesWithoutRoomFeaturesQuery = exports.getPropertiesWithoutRoomFeaturesQuery = exports.getCustomerBookingsWithoutRoomFeaturesQuery = exports.getLyraFormTokenQuery = exports.getPartnerCustomersQuery = exports.getRelationshipsQuery = exports.getOccupantsFromCurrentCustomerQuery = exports.getFerryVehicleFuelsQuery = exports.getFerryProductsQuery = exports.getFerryAvailableAccommodationsQuery = exports.getFerryProposalsQuery = exports.getFerryCrossingsQuery = exports.getFerryPortsQuery = exports.getFerryCarsQuery = exports.getFerryTrailerCategoriesQuery = exports.getFerryAddonCategoriesQuery = exports.getFerryVehicleCategoriesQuery = exports.getFerryNationalitiesQuery = exports.getFerryCivilitiesQuery = exports.getPendingFerryBookingQuery = exports.getFidelityLogsQuery = exports.getFidelityRulesQuery = exports.checkValidLoginQuery = exports.getUserLanguageQuery = exports.checkApiAliveQuery = exports.getSkisetMeasurementsQuery = exports.getResalysErrorListQuery = exports.getAlternativeProposalRulesForContractFolderQuery = void 0;
|
|
5
5
|
const checkApiAlive_1 = require("./checkApiAlive");
|
|
6
6
|
Object.defineProperty(exports, "checkApiAliveQuery", { enumerable: true, get: function () { return checkApiAlive_1.checkApiAliveQuery; } });
|
|
7
7
|
const checkModuleFacebookActivated_1 = require("./checkModuleFacebookActivated");
|
|
@@ -99,6 +99,8 @@ const getPartner_1 = require("./getPartner");
|
|
|
99
99
|
Object.defineProperty(exports, "getPartnerQuery", { enumerable: true, get: function () { return getPartner_1.getPartnerQuery; } });
|
|
100
100
|
const getPartnerCustomers_1 = require("./getPartnerCustomers");
|
|
101
101
|
Object.defineProperty(exports, "getPartnerCustomersQuery", { enumerable: true, get: function () { return getPartnerCustomers_1.getPartnerCustomersQuery; } });
|
|
102
|
+
const getPaymentLinkInfos_1 = require("./getPaymentLinkInfos");
|
|
103
|
+
Object.defineProperty(exports, "getPaymentLinkInfosQueryQuery", { enumerable: true, get: function () { return getPaymentLinkInfos_1.getPaymentLinkInfosQueryQuery; } });
|
|
102
104
|
const getPaymentMethods_1 = require("./getPaymentMethods");
|
|
103
105
|
Object.defineProperty(exports, "getPaymentMethodsQuery", { enumerable: true, get: function () { return getPaymentMethods_1.getPaymentMethodsQuery; } });
|
|
104
106
|
const getPaymentPlans_1 = require("./getPaymentPlans");
|
package/lib/types/index.d.ts
CHANGED
|
@@ -584,6 +584,7 @@ export type CustomerBooking = {
|
|
|
584
584
|
isEnableFerryBooking?: Maybe<Scalars["Boolean"]>;
|
|
585
585
|
isEstimate?: Maybe<Scalars["Boolean"]>;
|
|
586
586
|
isFCIdone?: Maybe<Scalars["Boolean"]>;
|
|
587
|
+
isMaster?: Maybe<Scalars["Boolean"]>;
|
|
587
588
|
isOption?: Maybe<Scalars["Boolean"]>;
|
|
588
589
|
isPSPPayment?: Maybe<Scalars["Boolean"]>;
|
|
589
590
|
nbDays?: Maybe<Scalars["Int"]>;
|
|
@@ -652,10 +653,17 @@ export type CustomerDepositAccountPaymentsInput = {
|
|
|
652
653
|
currencyCode: Scalars["String"];
|
|
653
654
|
depositAccountPayments?: InputMaybe<Array<InputMaybe<DepositAccountPaymentInput>>>;
|
|
654
655
|
};
|
|
656
|
+
export type CustomerDepositAccountPaymentsInputFromPaymentLink = {
|
|
657
|
+
depositAccountPayments?: InputMaybe<Array<InputMaybe<DepositAccountPaymentInput>>>;
|
|
658
|
+
};
|
|
655
659
|
export type CustomerDepositAccountPaymentsOutput = {
|
|
656
660
|
__typename?: "CustomerDepositAccountPaymentsOutput";
|
|
657
661
|
reservation?: Maybe<CustomerBooking>;
|
|
658
662
|
};
|
|
663
|
+
export type CustomerDepositAccountPaymentsOutputFromPaymentLink = {
|
|
664
|
+
__typename?: "CustomerDepositAccountPaymentsOutputFromPaymentLink";
|
|
665
|
+
reservation?: Maybe<CustomerBooking>;
|
|
666
|
+
};
|
|
659
667
|
export type CustomerDepositAccountsOutput = {
|
|
660
668
|
__typename?: "CustomerDepositAccountsOutput";
|
|
661
669
|
customerDepositAccounts?: Maybe<Array<Maybe<CustomerDepositAccount>>>;
|
|
@@ -1101,6 +1109,7 @@ export type Mutation = {
|
|
|
1101
1109
|
__typename?: "Mutation";
|
|
1102
1110
|
addBaby?: Maybe<AddBabyOutput>;
|
|
1103
1111
|
addCustomerDepositAccountPayments?: Maybe<CustomerDepositAccountPaymentsOutput>;
|
|
1112
|
+
addCustomerDepositAccountPaymentsFromPaymentLink?: Maybe<CustomerDepositAccountPaymentsOutputFromPaymentLink>;
|
|
1104
1113
|
addDiscountCode?: Maybe<DiscountCodeOutput>;
|
|
1105
1114
|
addFidelityPointToProduct?: Maybe<FidelityPointToCartOutput>;
|
|
1106
1115
|
addGiftCode?: Maybe<GiftCodeOutput>;
|
|
@@ -1143,6 +1152,7 @@ export type Mutation = {
|
|
|
1143
1152
|
redirectPaymentGatewayForAmount?: Maybe<PaymentGatewayForAmountOutput>;
|
|
1144
1153
|
redirectPaymentGatewayForCart?: Maybe<PaymentGatewayForCartOutput>;
|
|
1145
1154
|
redirectPaymentGatewayForInstalment?: Maybe<PaymentGatewayForInstalmentOutput>;
|
|
1155
|
+
redirectPaymentGatewayFromPaymentLink?: Maybe<PaymentGatewayFromPaymentLinkOutput>;
|
|
1146
1156
|
removeBookingFromCart?: Maybe<RemoveBookingFromCartOutput>;
|
|
1147
1157
|
removeCartPayments?: Maybe<RemoveCartPaymentsOutput>;
|
|
1148
1158
|
removeCustomerAccount?: Maybe<RemoveCustomerAccountOutput>;
|
|
@@ -1178,8 +1188,8 @@ export type Mutation = {
|
|
|
1178
1188
|
updateServiceCustomerAccount?: Maybe<CustomerAccountOutput>;
|
|
1179
1189
|
updateStayTime?: Maybe<StayTimeOutput>;
|
|
1180
1190
|
updateTotalOccupants?: Maybe<TotalOccupantsOutput>;
|
|
1181
|
-
validateLyraPayment?: Maybe<LyraPaymentValidationOutput>;
|
|
1182
1191
|
uploadFiles?: Maybe<UploadFilesOutput>;
|
|
1192
|
+
validateLyraPayment?: Maybe<LyraPaymentValidationOutput>;
|
|
1183
1193
|
};
|
|
1184
1194
|
export type MutationAddBabyArgs = {
|
|
1185
1195
|
input: AddBabyInput;
|
|
@@ -1189,6 +1199,10 @@ export type MutationAddCustomerDepositAccountPaymentsArgs = {
|
|
|
1189
1199
|
input?: InputMaybe<CustomerDepositAccountPaymentsInput>;
|
|
1190
1200
|
session: Session;
|
|
1191
1201
|
};
|
|
1202
|
+
export type MutationAddCustomerDepositAccountPaymentsFromPaymentLinkArgs = {
|
|
1203
|
+
input?: InputMaybe<CustomerDepositAccountPaymentsInputFromPaymentLink>;
|
|
1204
|
+
paymentLinkAuthenticationInput: PaymentLinkAuthenticationInput;
|
|
1205
|
+
};
|
|
1192
1206
|
export type MutationAddDiscountCodeArgs = {
|
|
1193
1207
|
input: DiscountCodeInput;
|
|
1194
1208
|
session: Session;
|
|
@@ -1323,6 +1337,10 @@ export type MutationRedirectPaymentGatewayForInstalmentArgs = {
|
|
|
1323
1337
|
input: PaymentGatewayForInstalmentInput;
|
|
1324
1338
|
session: Session;
|
|
1325
1339
|
};
|
|
1340
|
+
export type MutationRedirectPaymentGatewayFromPaymentLinkArgs = {
|
|
1341
|
+
input?: InputMaybe<PaymentGatewayFromPaymentLinkInput>;
|
|
1342
|
+
paymentLinkAuthenticationInput: PaymentLinkAuthenticationInput;
|
|
1343
|
+
};
|
|
1326
1344
|
export type MutationRemoveBookingFromCartArgs = {
|
|
1327
1345
|
input?: InputMaybe<RemoveBookingFromCartInput>;
|
|
1328
1346
|
session: Session;
|
|
@@ -1458,14 +1476,14 @@ export type MutationUpdateTotalOccupantsArgs = {
|
|
|
1458
1476
|
input: TotalOccupantsInput;
|
|
1459
1477
|
session: Session;
|
|
1460
1478
|
};
|
|
1461
|
-
export type MutationValidateLyraPaymentArgs = {
|
|
1462
|
-
input: LyraPaymentValidationInput;
|
|
1463
|
-
session: Session;
|
|
1464
|
-
};
|
|
1465
1479
|
export type MutationUploadFilesArgs = {
|
|
1466
1480
|
input: Array<InputMaybe<UploadFileInput>>;
|
|
1467
1481
|
session: Session;
|
|
1468
1482
|
};
|
|
1483
|
+
export type MutationValidateLyraPaymentArgs = {
|
|
1484
|
+
input: LyraPaymentValidationInput;
|
|
1485
|
+
session: Session;
|
|
1486
|
+
};
|
|
1469
1487
|
export type MyLoginInput = {
|
|
1470
1488
|
email?: InputMaybe<Scalars["String"]>;
|
|
1471
1489
|
firstName?: InputMaybe<Scalars["String"]>;
|
|
@@ -1731,6 +1749,28 @@ export type PaymentGatewayForInstalmentOutput = {
|
|
|
1731
1749
|
__typename?: "PaymentGatewayForInstalmentOutput";
|
|
1732
1750
|
gateway?: Maybe<Scalars["String"]>;
|
|
1733
1751
|
};
|
|
1752
|
+
export type PaymentGatewayFromPaymentLinkInput = {
|
|
1753
|
+
ccardType?: InputMaybe<Scalars["Int"]>;
|
|
1754
|
+
instalmentId?: InputMaybe<Scalars["Int"]>;
|
|
1755
|
+
paymentAmount?: InputMaybe<Scalars["BigDecimal"]>;
|
|
1756
|
+
url?: InputMaybe<PspUrl>;
|
|
1757
|
+
};
|
|
1758
|
+
export type PaymentGatewayFromPaymentLinkOutput = {
|
|
1759
|
+
__typename?: "PaymentGatewayFromPaymentLinkOutput";
|
|
1760
|
+
gateway?: Maybe<Scalars["String"]>;
|
|
1761
|
+
};
|
|
1762
|
+
export type PaymentLinkAuthenticationInput = {
|
|
1763
|
+
paymentLinkToken: Scalars["String"];
|
|
1764
|
+
username: Scalars["String"];
|
|
1765
|
+
};
|
|
1766
|
+
export type PaymentLinkInfosOutput = {
|
|
1767
|
+
__typename?: "PaymentLinkInfosOutput";
|
|
1768
|
+
customerBooking?: Maybe<CustomerBooking>;
|
|
1769
|
+
customerDepositAccounts?: Maybe<Array<Maybe<CustomerDepositAccount>>>;
|
|
1770
|
+
occupant?: Maybe<Occupant>;
|
|
1771
|
+
paymentMethod?: Maybe<PaymentMethod>;
|
|
1772
|
+
service?: Maybe<Service>;
|
|
1773
|
+
};
|
|
1734
1774
|
export type PaymentMethod = {
|
|
1735
1775
|
__typename?: "PaymentMethod";
|
|
1736
1776
|
automaticPaymentCode?: Maybe<Scalars["String"]>;
|
|
@@ -1869,6 +1909,7 @@ export type Product = {
|
|
|
1869
1909
|
code: Scalars["String"];
|
|
1870
1910
|
description?: Maybe<Scalars["String"]>;
|
|
1871
1911
|
distributionType?: Maybe<ProductDistributionType>;
|
|
1912
|
+
forCart?: Maybe<Scalars["Boolean"]>;
|
|
1872
1913
|
id: Scalars["Int"];
|
|
1873
1914
|
imagePath?: Maybe<Scalars["String"]>;
|
|
1874
1915
|
isBase?: Maybe<Scalars["Boolean"]>;
|
|
@@ -2113,6 +2154,7 @@ export type Query = {
|
|
|
2113
2154
|
getOwnerRoomPlanningData?: Maybe<OwnerRoomPlanningDataOutput>;
|
|
2114
2155
|
getPartner?: Maybe<PartnerOutput>;
|
|
2115
2156
|
getPartnerCustomers?: Maybe<PartnerCustomerInfoOutput>;
|
|
2157
|
+
getPaymentLinkInfos?: Maybe<PaymentLinkInfosOutput>;
|
|
2116
2158
|
getPaymentMethods?: Maybe<PaymentMethodsOutput>;
|
|
2117
2159
|
getPaymentPlans?: Maybe<PaymentPlansOutput>;
|
|
2118
2160
|
getPendingFerryBooking?: Maybe<PendingFerryBookingOutput>;
|
|
@@ -2386,6 +2428,10 @@ export type QueryGetPartnerCustomersArgs = {
|
|
|
2386
2428
|
session: Session;
|
|
2387
2429
|
};
|
|
2388
2430
|
/** test query */
|
|
2431
|
+
export type QueryGetPaymentLinkInfosArgs = {
|
|
2432
|
+
paymentLinkAuthenticationInput: PaymentLinkAuthenticationInput;
|
|
2433
|
+
};
|
|
2434
|
+
/** test query */
|
|
2389
2435
|
export type QueryGetPaymentMethodsArgs = {
|
|
2390
2436
|
session: Session;
|
|
2391
2437
|
};
|