rsl-api-106 106.40.7 → 106.46.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/assignRoom.d.ts +2 -0
- package/lib/mutations/assignRoom.js +20 -0
- package/lib/mutations/index.d.ts +4 -1
- package/lib/mutations/index.js +7 -1
- package/lib/mutations/unassignRoom.d.ts +2 -0
- package/lib/mutations/unassignRoom.js +20 -0
- package/lib/mutations/uploadFiles.d.ts +2 -0
- package/lib/mutations/uploadFiles.js +17 -0
- package/lib/outputs/criteriaValue.js +1 -0
- package/lib/outputs/planningRoom.d.ts +1 -0
- package/lib/outputs/planningRoom.js +11 -0
- package/lib/queries/getAvailableRooms.d.ts +2 -0
- package/lib/queries/getAvailableRooms.js +20 -0
- package/lib/types/index.d.ts +67 -0
- package/package.json +1 -1
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.assignRoomMutation = void 0;
|
|
4
|
+
const client_1 = require("@apollo/client");
|
|
5
|
+
const cart_1 = require("../outputs/cart");
|
|
6
|
+
const assignRoomMutation = () => {
|
|
7
|
+
return (0, client_1.gql) `
|
|
8
|
+
mutation assignRoom($session: Session!, $input: AssignRoomInput!) {
|
|
9
|
+
assignRoom(
|
|
10
|
+
session: $session,
|
|
11
|
+
input: $input
|
|
12
|
+
) {
|
|
13
|
+
cart {
|
|
14
|
+
${cart_1.cartOutput}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
`;
|
|
19
|
+
};
|
|
20
|
+
exports.assignRoomMutation = assignRoomMutation;
|
package/lib/mutations/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import { addPartnerCustomerAccountMutation } from './addPartnerCustomerAccount';
|
|
|
9
9
|
import { addPartnerToCartMutation } from './addPartnerToCart';
|
|
10
10
|
import { addProductToBookingMutation } from './addProductToBooking';
|
|
11
11
|
import { addProductToOccupantMutation } from './addProductToOccupant';
|
|
12
|
+
import { assignRoomMutation } from './assignRoom';
|
|
12
13
|
import { cancelFerryBookingMutation } from './cancelFerryBooking';
|
|
13
14
|
import { changePasswordMutation } from './changePassword';
|
|
14
15
|
import { chooseFerryProposalMutation } from './chooseFerryProposal';
|
|
@@ -46,6 +47,7 @@ import { saveCartMutation } from './saveCart';
|
|
|
46
47
|
import { saveFerryBookingMutation } from './saveFerryBooking';
|
|
47
48
|
import { setSessionLanguageMutation } from './setSessionLanguage';
|
|
48
49
|
import { switchToPartnerConventionMutation } from './switchToPartnerConvention';
|
|
50
|
+
import { unassignRoomMutation } from './unassignRoom';
|
|
49
51
|
import { unlockBookingMutation } from './unlockBooking';
|
|
50
52
|
import { updateBookingCriteriasMutation } from './updateBookingCriterias';
|
|
51
53
|
import { updateCartPaymentMethodMutation } from './updateCartPaymentMethod';
|
|
@@ -65,5 +67,6 @@ import { updateRoomFromMapMutation } from './updateRoomFromMap';
|
|
|
65
67
|
import { updateServiceCustomerAccountMutation } from './updateServiceCustomerAccount';
|
|
66
68
|
import { updateStayTimeMutation } from './updateStayTime';
|
|
67
69
|
import { updateTotalOccupantsMutation } from './updateTotalOccupants';
|
|
70
|
+
import { uploadFilesMutation } from './uploadFiles';
|
|
68
71
|
import { validateLyraPaymentMutation } from './validateLyraPayment';
|
|
69
|
-
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, };
|
|
72
|
+
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, };
|
package/lib/mutations/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.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.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");
|
|
@@ -24,6 +24,8 @@ const addProductToBooking_1 = require("./addProductToBooking");
|
|
|
24
24
|
Object.defineProperty(exports, "addProductToBookingMutation", { enumerable: true, get: function () { return addProductToBooking_1.addProductToBookingMutation; } });
|
|
25
25
|
const addProductToOccupant_1 = require("./addProductToOccupant");
|
|
26
26
|
Object.defineProperty(exports, "addProductToOccupantMutation", { enumerable: true, get: function () { return addProductToOccupant_1.addProductToOccupantMutation; } });
|
|
27
|
+
const assignRoom_1 = require("./assignRoom");
|
|
28
|
+
Object.defineProperty(exports, "assignRoomMutation", { enumerable: true, get: function () { return assignRoom_1.assignRoomMutation; } });
|
|
27
29
|
const cancelFerryBooking_1 = require("./cancelFerryBooking");
|
|
28
30
|
Object.defineProperty(exports, "cancelFerryBookingMutation", { enumerable: true, get: function () { return cancelFerryBooking_1.cancelFerryBookingMutation; } });
|
|
29
31
|
const changePassword_1 = require("./changePassword");
|
|
@@ -98,6 +100,8 @@ const setSessionLanguage_1 = require("./setSessionLanguage");
|
|
|
98
100
|
Object.defineProperty(exports, "setSessionLanguageMutation", { enumerable: true, get: function () { return setSessionLanguage_1.setSessionLanguageMutation; } });
|
|
99
101
|
const switchToPartnerConvention_1 = require("./switchToPartnerConvention");
|
|
100
102
|
Object.defineProperty(exports, "switchToPartnerConventionMutation", { enumerable: true, get: function () { return switchToPartnerConvention_1.switchToPartnerConventionMutation; } });
|
|
103
|
+
const unassignRoom_1 = require("./unassignRoom");
|
|
104
|
+
Object.defineProperty(exports, "unassignRoomMutation", { enumerable: true, get: function () { return unassignRoom_1.unassignRoomMutation; } });
|
|
101
105
|
const unlockBooking_1 = require("./unlockBooking");
|
|
102
106
|
Object.defineProperty(exports, "unlockBookingMutation", { enumerable: true, get: function () { return unlockBooking_1.unlockBookingMutation; } });
|
|
103
107
|
const updateBookingCriterias_1 = require("./updateBookingCriterias");
|
|
@@ -136,5 +140,7 @@ const updateStayTime_1 = require("./updateStayTime");
|
|
|
136
140
|
Object.defineProperty(exports, "updateStayTimeMutation", { enumerable: true, get: function () { return updateStayTime_1.updateStayTimeMutation; } });
|
|
137
141
|
const updateTotalOccupants_1 = require("./updateTotalOccupants");
|
|
138
142
|
Object.defineProperty(exports, "updateTotalOccupantsMutation", { enumerable: true, get: function () { return updateTotalOccupants_1.updateTotalOccupantsMutation; } });
|
|
143
|
+
const uploadFiles_1 = require("./uploadFiles");
|
|
144
|
+
Object.defineProperty(exports, "uploadFilesMutation", { enumerable: true, get: function () { return uploadFiles_1.uploadFilesMutation; } });
|
|
139
145
|
const validateLyraPayment_1 = require("./validateLyraPayment");
|
|
140
146
|
Object.defineProperty(exports, "validateLyraPaymentMutation", { enumerable: true, get: function () { return validateLyraPayment_1.validateLyraPaymentMutation; } });
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.unassignRoomMutation = void 0;
|
|
4
|
+
const client_1 = require("@apollo/client");
|
|
5
|
+
const cart_1 = require("../outputs/cart");
|
|
6
|
+
const unassignRoomMutation = () => {
|
|
7
|
+
return (0, client_1.gql) `
|
|
8
|
+
mutation unassignRoom($session: Session!, $input: UnassignRoomInput!) {
|
|
9
|
+
unassignRoom(
|
|
10
|
+
session: $session,
|
|
11
|
+
input: $input
|
|
12
|
+
) {
|
|
13
|
+
cart {
|
|
14
|
+
${cart_1.cartOutput}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
`;
|
|
19
|
+
};
|
|
20
|
+
exports.unassignRoomMutation = unassignRoomMutation;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.uploadFilesMutation = void 0;
|
|
4
|
+
const client_1 = require("@apollo/client");
|
|
5
|
+
const uploadFilesMutation = () => {
|
|
6
|
+
return (0, client_1.gql) `
|
|
7
|
+
mutation uploadFiles($session: Session!, $input: [UploadFileInput]!) {
|
|
8
|
+
uploadFiles(session: $session, input: $input) {
|
|
9
|
+
uploadData {
|
|
10
|
+
uploadUrl
|
|
11
|
+
fileId
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
`;
|
|
16
|
+
};
|
|
17
|
+
exports.uploadFilesMutation = uploadFilesMutation;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const planningRoomOutput = "\n roomNumber,\n label,\n roomTypeCode,\n available,\n startDate,\n endDate\n";
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getAvailableRoomsQuery = void 0;
|
|
4
|
+
const client_1 = require("@apollo/client");
|
|
5
|
+
const planningRoom_1 = require("../outputs/planningRoom");
|
|
6
|
+
const getAvailableRoomsQuery = () => {
|
|
7
|
+
return (0, client_1.gql) `
|
|
8
|
+
query getAvailableRooms($session: Session!, $input: AvailableRoomsInput!) {
|
|
9
|
+
getAvailableRooms (
|
|
10
|
+
session: $session,
|
|
11
|
+
input: $input
|
|
12
|
+
) {
|
|
13
|
+
availableRooms {
|
|
14
|
+
${planningRoom_1.planningRoomOutput}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
`;
|
|
19
|
+
};
|
|
20
|
+
exports.getAvailableRoomsQuery = getAvailableRoomsQuery;
|
package/lib/types/index.d.ts
CHANGED
|
@@ -143,6 +143,14 @@ export type ApiAliveOutput = {
|
|
|
143
143
|
__typename?: "ApiAliveOutput";
|
|
144
144
|
alive?: Maybe<Scalars["Boolean"]>;
|
|
145
145
|
};
|
|
146
|
+
export type AssignRoomInput = {
|
|
147
|
+
roomNumber: Scalars["String"];
|
|
148
|
+
stayGuiid: Scalars["Int"];
|
|
149
|
+
};
|
|
150
|
+
export type AssignRoomOutput = {
|
|
151
|
+
__typename?: "AssignRoomOutput";
|
|
152
|
+
cart?: Maybe<Cart>;
|
|
153
|
+
};
|
|
146
154
|
export type AuthenticationInput = {
|
|
147
155
|
password: Scalars["String"];
|
|
148
156
|
username: Scalars["String"];
|
|
@@ -182,6 +190,14 @@ export type AvailableRoomFeaturesOutput = {
|
|
|
182
190
|
__typename?: "AvailableRoomFeaturesOutput";
|
|
183
191
|
roomFeatures?: Maybe<Array<Maybe<RoomFeature>>>;
|
|
184
192
|
};
|
|
193
|
+
export type AvailableRoomsInput = {
|
|
194
|
+
allTypes?: InputMaybe<Scalars["Boolean"]>;
|
|
195
|
+
stayGuiid: Scalars["Int"];
|
|
196
|
+
};
|
|
197
|
+
export type AvailableRoomsOutput = {
|
|
198
|
+
__typename?: "AvailableRoomsOutput";
|
|
199
|
+
availableRooms?: Maybe<Array<Maybe<PlanningRoom>>>;
|
|
200
|
+
};
|
|
185
201
|
export type BookingDocumentsInput = {
|
|
186
202
|
bookingId: Scalars["Int"];
|
|
187
203
|
};
|
|
@@ -293,6 +309,7 @@ export type CartPaymentMethodOutput = {
|
|
|
293
309
|
cart?: Maybe<Cart>;
|
|
294
310
|
};
|
|
295
311
|
export type CartPaymentPlansInput = {
|
|
312
|
+
cartItemID?: InputMaybe<Scalars["Int"]>;
|
|
296
313
|
partnerPaymentPlan?: InputMaybe<Scalars["String"]>;
|
|
297
314
|
paymentPlan?: InputMaybe<Scalars["String"]>;
|
|
298
315
|
};
|
|
@@ -452,6 +469,7 @@ export type CriteriaValue = {
|
|
|
452
469
|
__typename?: "CriteriaValue";
|
|
453
470
|
code: Scalars["String"];
|
|
454
471
|
fileName?: Maybe<Scalars["String"]>;
|
|
472
|
+
fileUrl?: Maybe<Scalars["String"]>;
|
|
455
473
|
label?: Maybe<Scalars["String"]>;
|
|
456
474
|
servicesList?: Maybe<Array<Maybe<Service>>>;
|
|
457
475
|
startDate?: Maybe<Scalars["Date"]>;
|
|
@@ -1100,6 +1118,7 @@ export type Mutation = {
|
|
|
1100
1118
|
addPartnerToCart?: Maybe<PartnerToCartOutput>;
|
|
1101
1119
|
addProductToBooking?: Maybe<ProductToBookingOutput>;
|
|
1102
1120
|
addProductToOccupant?: Maybe<ProductToOccupantOutput>;
|
|
1121
|
+
assignRoom?: Maybe<AssignRoomOutput>;
|
|
1103
1122
|
cancelFerryBooking?: Maybe<CancelFerryBookingOutput>;
|
|
1104
1123
|
changePassword?: Maybe<ChangePasswordOutput>;
|
|
1105
1124
|
chooseFerryProposal?: Maybe<ChooseFerryProposalOutput>;
|
|
@@ -1137,6 +1156,7 @@ export type Mutation = {
|
|
|
1137
1156
|
saveFerryBooking?: Maybe<SaveFerryBookingOutput>;
|
|
1138
1157
|
setSessionLanguage?: Maybe<UserLanguageOutput>;
|
|
1139
1158
|
switchToPartnerConvention?: Maybe<SwitchToPartnerConventionOutput>;
|
|
1159
|
+
unassignRoom?: Maybe<UnassignRoomOutput>;
|
|
1140
1160
|
unlockBooking?: Maybe<UnlockBookingOutput>;
|
|
1141
1161
|
updateBookingCriterias?: Maybe<UpdateBookingCriteriasOutput>;
|
|
1142
1162
|
updateCartPaymentMethod?: Maybe<CartPaymentMethodOutput>;
|
|
@@ -1159,6 +1179,7 @@ export type Mutation = {
|
|
|
1159
1179
|
updateStayTime?: Maybe<StayTimeOutput>;
|
|
1160
1180
|
updateTotalOccupants?: Maybe<TotalOccupantsOutput>;
|
|
1161
1181
|
validateLyraPayment?: Maybe<LyraPaymentValidationOutput>;
|
|
1182
|
+
uploadFiles?: Maybe<UploadFilesOutput>;
|
|
1162
1183
|
};
|
|
1163
1184
|
export type MutationAddBabyArgs = {
|
|
1164
1185
|
input: AddBabyInput;
|
|
@@ -1204,6 +1225,10 @@ export type MutationAddProductToOccupantArgs = {
|
|
|
1204
1225
|
input: Array<InputMaybe<ProductToOccupantInput>>;
|
|
1205
1226
|
session: Session;
|
|
1206
1227
|
};
|
|
1228
|
+
export type MutationAssignRoomArgs = {
|
|
1229
|
+
input: AssignRoomInput;
|
|
1230
|
+
session: Session;
|
|
1231
|
+
};
|
|
1207
1232
|
export type MutationCancelFerryBookingArgs = {
|
|
1208
1233
|
input?: InputMaybe<CancelFerryBookingInput>;
|
|
1209
1234
|
session: Session;
|
|
@@ -1345,6 +1370,10 @@ export type MutationSwitchToPartnerConventionArgs = {
|
|
|
1345
1370
|
input: SwitchToPartnerConventionInput;
|
|
1346
1371
|
session: Session;
|
|
1347
1372
|
};
|
|
1373
|
+
export type MutationUnassignRoomArgs = {
|
|
1374
|
+
input: UnassignRoomInput;
|
|
1375
|
+
session: Session;
|
|
1376
|
+
};
|
|
1348
1377
|
export type MutationUnlockBookingArgs = {
|
|
1349
1378
|
input: UnlockBookingInput;
|
|
1350
1379
|
session: Session;
|
|
@@ -1433,6 +1462,10 @@ export type MutationValidateLyraPaymentArgs = {
|
|
|
1433
1462
|
input: LyraPaymentValidationInput;
|
|
1434
1463
|
session: Session;
|
|
1435
1464
|
};
|
|
1465
|
+
export type MutationUploadFilesArgs = {
|
|
1466
|
+
input: Array<InputMaybe<UploadFileInput>>;
|
|
1467
|
+
session: Session;
|
|
1468
|
+
};
|
|
1436
1469
|
export type MyLoginInput = {
|
|
1437
1470
|
email?: InputMaybe<Scalars["String"]>;
|
|
1438
1471
|
firstName?: InputMaybe<Scalars["String"]>;
|
|
@@ -1746,6 +1779,15 @@ export type PendingFerryBookingOutput = {
|
|
|
1746
1779
|
__typename?: "PendingFerryBookingOutput";
|
|
1747
1780
|
ferryBooking?: Maybe<FerryBooking>;
|
|
1748
1781
|
};
|
|
1782
|
+
export type PlanningRoom = {
|
|
1783
|
+
__typename?: "PlanningRoom";
|
|
1784
|
+
available?: Maybe<Scalars["Boolean"]>;
|
|
1785
|
+
endDate?: Maybe<Scalars["Date"]>;
|
|
1786
|
+
label?: Maybe<Scalars["String"]>;
|
|
1787
|
+
roomNumber?: Maybe<Scalars["String"]>;
|
|
1788
|
+
roomTypeCode?: Maybe<Scalars["String"]>;
|
|
1789
|
+
startDate?: Maybe<Scalars["Date"]>;
|
|
1790
|
+
};
|
|
1749
1791
|
export type Port = {
|
|
1750
1792
|
__typename?: "Port";
|
|
1751
1793
|
label?: Maybe<Scalars["String"]>;
|
|
@@ -2023,6 +2065,7 @@ export type Query = {
|
|
|
2023
2065
|
getAlternativeProposalRulesForContractFolder?: Maybe<AlternativeProposalRulesForContractFolderOutput>;
|
|
2024
2066
|
getAvailForRoomTypes?: Maybe<AvailForRoomTypesOutput>;
|
|
2025
2067
|
getAvailableRoomFeatures?: Maybe<AvailableRoomFeaturesOutput>;
|
|
2068
|
+
getAvailableRooms?: Maybe<AvailableRoomsOutput>;
|
|
2026
2069
|
getBookingDocuments?: Maybe<BookingDocumentsOutput>;
|
|
2027
2070
|
getBookingPaymentPlans?: Maybe<PaymentPlansOutput>;
|
|
2028
2071
|
getBookingProducts?: Maybe<BookingProductsOutput>;
|
|
@@ -2155,6 +2198,11 @@ export type QueryGetAvailableRoomFeaturesArgs = {
|
|
|
2155
2198
|
session: Session;
|
|
2156
2199
|
};
|
|
2157
2200
|
/** test query */
|
|
2201
|
+
export type QueryGetAvailableRoomsArgs = {
|
|
2202
|
+
input: AvailableRoomsInput;
|
|
2203
|
+
session: Session;
|
|
2204
|
+
};
|
|
2205
|
+
/** test query */
|
|
2158
2206
|
export type QueryGetBookingDocumentsArgs = {
|
|
2159
2207
|
input: BookingDocumentsInput;
|
|
2160
2208
|
session: Session;
|
|
@@ -2789,6 +2837,13 @@ export type Trip = {
|
|
|
2789
2837
|
trailer?: Maybe<Trailer>;
|
|
2790
2838
|
vehicle?: Maybe<Vehicle>;
|
|
2791
2839
|
};
|
|
2840
|
+
export type UnassignRoomInput = {
|
|
2841
|
+
stayGuiid: Scalars["Int"];
|
|
2842
|
+
};
|
|
2843
|
+
export type UnassignRoomOutput = {
|
|
2844
|
+
__typename?: "UnassignRoomOutput";
|
|
2845
|
+
cart?: Maybe<Cart>;
|
|
2846
|
+
};
|
|
2792
2847
|
export type UnlockBookingInput = {
|
|
2793
2848
|
bookingId: Scalars["Int"];
|
|
2794
2849
|
};
|
|
@@ -2861,6 +2916,18 @@ export type UpdateServiceCustomerAccountInput = {
|
|
|
2861
2916
|
relationshipId?: InputMaybe<Scalars["Int"]>;
|
|
2862
2917
|
serviceId: Scalars["Int"];
|
|
2863
2918
|
};
|
|
2919
|
+
export type UploadFileData = {
|
|
2920
|
+
__typename?: "UploadFileData";
|
|
2921
|
+
fileId: Scalars["String"];
|
|
2922
|
+
uploadUrl: Scalars["String"];
|
|
2923
|
+
};
|
|
2924
|
+
export type UploadFileInput = {
|
|
2925
|
+
fileName: Scalars["String"];
|
|
2926
|
+
};
|
|
2927
|
+
export type UploadFilesOutput = {
|
|
2928
|
+
__typename?: "UploadFilesOutput";
|
|
2929
|
+
uploadData?: Maybe<Array<Maybe<UploadFileData>>>;
|
|
2930
|
+
};
|
|
2864
2931
|
export type User = {
|
|
2865
2932
|
__typename?: "User";
|
|
2866
2933
|
grouping?: Maybe<UserGrouping>;
|