rsl-api-106 106.291.9 → 106.292.1
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.
|
@@ -5,7 +5,7 @@ const client_1 = require("@apollo/client");
|
|
|
5
5
|
const bankAccount_1 = require("../outputs/bankAccount");
|
|
6
6
|
const addBankAccountMutation = () => {
|
|
7
7
|
return (0, client_1.gql) `
|
|
8
|
-
|
|
8
|
+
mutation addBankAccount($session: Session!, $input: AddBankAccountInput) {
|
|
9
9
|
addBankAccount(
|
|
10
10
|
session: $session,
|
|
11
11
|
input: $input
|
|
@@ -4,7 +4,7 @@ exports.removeBankAccountMutation = void 0;
|
|
|
4
4
|
const client_1 = require("@apollo/client");
|
|
5
5
|
const removeBankAccountMutation = () => {
|
|
6
6
|
return (0, client_1.gql) `
|
|
7
|
-
|
|
7
|
+
mutation removeBankAccount(
|
|
8
8
|
$session: Session!
|
|
9
9
|
$input: RemoveBankAccountInput
|
|
10
10
|
) {
|
package/lib/outputs/lineItem.js
CHANGED
|
@@ -31,7 +31,8 @@ exports.lineItemsOutput = `
|
|
|
31
31
|
isSkiset,
|
|
32
32
|
criterias {
|
|
33
33
|
${criteriaValue_1.criteriaValueOutput}
|
|
34
|
-
}
|
|
34
|
+
},
|
|
35
|
+
includedInGiftBox
|
|
35
36
|
`;
|
|
36
37
|
exports.lineItemsWithoutFerryOutput = `
|
|
37
38
|
id,
|
|
@@ -55,4 +56,6 @@ exports.lineItemsWithoutFerryOutput = `
|
|
|
55
56
|
isSkiset,
|
|
56
57
|
criterias {
|
|
57
58
|
${criteriaValue_1.criteriaValueOutput}
|
|
58
|
-
}
|
|
59
|
+
},
|
|
60
|
+
includedInGiftBox
|
|
61
|
+
`;
|
package/lib/types/index.d.ts
CHANGED
|
@@ -63,6 +63,13 @@ export type AddBabyOutput = {
|
|
|
63
63
|
__typename?: "AddBabyOutput";
|
|
64
64
|
cart?: Maybe<Cart>;
|
|
65
65
|
};
|
|
66
|
+
export type AddBankAccountInput = {
|
|
67
|
+
bank: BankInput;
|
|
68
|
+
iban?: InputMaybe<IbanInput>;
|
|
69
|
+
label: Scalars["String"];
|
|
70
|
+
rib?: InputMaybe<RibInput>;
|
|
71
|
+
type: BankAccountType;
|
|
72
|
+
};
|
|
66
73
|
export type AddOccupantInput = {
|
|
67
74
|
cartItemID?: InputMaybe<Scalars["Int"]>;
|
|
68
75
|
occupantType?: InputMaybe<OccupantTypeEnum>;
|
|
@@ -198,6 +205,51 @@ export type AvailableRoomsOutput = {
|
|
|
198
205
|
__typename?: "AvailableRoomsOutput";
|
|
199
206
|
availableRooms?: Maybe<Array<Maybe<PlanningRoom>>>;
|
|
200
207
|
};
|
|
208
|
+
export type Bank = {
|
|
209
|
+
__typename?: "Bank";
|
|
210
|
+
address?: Maybe<BankAddress>;
|
|
211
|
+
name?: Maybe<Scalars["String"]>;
|
|
212
|
+
};
|
|
213
|
+
export type BankAccount = {
|
|
214
|
+
__typename?: "BankAccount";
|
|
215
|
+
bank?: Maybe<Bank>;
|
|
216
|
+
iban?: Maybe<Iban>;
|
|
217
|
+
id?: Maybe<Scalars["Int"]>;
|
|
218
|
+
isValid?: Maybe<Scalars["Boolean"]>;
|
|
219
|
+
label?: Maybe<Scalars["String"]>;
|
|
220
|
+
rib?: Maybe<Rib>;
|
|
221
|
+
type?: Maybe<BankAccountType>;
|
|
222
|
+
};
|
|
223
|
+
export type BankAccountOutput = {
|
|
224
|
+
__typename?: "BankAccountOutput";
|
|
225
|
+
bankAccount?: Maybe<BankAccount>;
|
|
226
|
+
};
|
|
227
|
+
export declare enum BankAccountType {
|
|
228
|
+
Iban = "IBAN",
|
|
229
|
+
Rib = "RIB"
|
|
230
|
+
}
|
|
231
|
+
export type BankAccountsOutput = {
|
|
232
|
+
__typename?: "BankAccountsOutput";
|
|
233
|
+
bankAccounts?: Maybe<Array<Maybe<BankAccount>>>;
|
|
234
|
+
};
|
|
235
|
+
export type BankAddress = {
|
|
236
|
+
__typename?: "BankAddress";
|
|
237
|
+
city?: Maybe<Scalars["String"]>;
|
|
238
|
+
country?: Maybe<Country>;
|
|
239
|
+
line1?: Maybe<Scalars["String"]>;
|
|
240
|
+
line2?: Maybe<Scalars["String"]>;
|
|
241
|
+
postalCode?: Maybe<Scalars["String"]>;
|
|
242
|
+
};
|
|
243
|
+
export type BankAddressInput = {
|
|
244
|
+
addressLine1: Scalars["String"];
|
|
245
|
+
addressLine2?: InputMaybe<Scalars["String"]>;
|
|
246
|
+
city: Scalars["String"];
|
|
247
|
+
countryCode: Scalars["String"];
|
|
248
|
+
postalCode: Scalars["String"];
|
|
249
|
+
};
|
|
250
|
+
export type BankInput = {
|
|
251
|
+
address: BankAddressInput;
|
|
252
|
+
};
|
|
201
253
|
export type BookingCustomerDepositAccountInfosOutput = {
|
|
202
254
|
__typename?: "BookingCustomerDepositAccountInfosOutput";
|
|
203
255
|
customerDepositAccountInfos?: Maybe<Array<Maybe<CustomerDepositAccountInfo>>>;
|
|
@@ -250,14 +302,6 @@ export type BusinessActor = {
|
|
|
250
302
|
id?: Maybe<Scalars["Int"]>;
|
|
251
303
|
label?: Maybe<Scalars["String"]>;
|
|
252
304
|
};
|
|
253
|
-
export type CmsCriteria = {
|
|
254
|
-
__typename?: "CMSCriteria";
|
|
255
|
-
classId: Scalars["Int"];
|
|
256
|
-
cmsCriteriaValues?: Maybe<Array<Maybe<CmsCriteriaValue>>>;
|
|
257
|
-
code: Scalars["String"];
|
|
258
|
-
inputType?: Maybe<InputType>;
|
|
259
|
-
label?: Maybe<Scalars["String"]>;
|
|
260
|
-
};
|
|
261
305
|
export type CalendarPeriod = {
|
|
262
306
|
__typename?: "CalendarPeriod";
|
|
263
307
|
color?: Maybe<Scalars["String"]>;
|
|
@@ -300,6 +344,7 @@ export type Car = {
|
|
|
300
344
|
};
|
|
301
345
|
export type Cart = {
|
|
302
346
|
__typename?: "Cart";
|
|
347
|
+
extraSales?: Maybe<Array<Maybe<ExtraSale>>>;
|
|
303
348
|
fromFastCheckinCheckout?: Maybe<Scalars["Boolean"]>;
|
|
304
349
|
id?: Maybe<Scalars["Int"]>;
|
|
305
350
|
reservations?: Maybe<Array<Maybe<CustomerBooking>>>;
|
|
@@ -334,6 +379,20 @@ export type CartPaymentPlansOutput = {
|
|
|
334
379
|
__typename?: "CartPaymentPlansOutput";
|
|
335
380
|
cart?: Maybe<Cart>;
|
|
336
381
|
};
|
|
382
|
+
export type ChangeOwnerInvoiceStatusToSentInput = {
|
|
383
|
+
invoiceIds: Array<InputMaybe<Scalars["Int"]>>;
|
|
384
|
+
};
|
|
385
|
+
export type ChangeOwnerInvoiceStatusToSentOutput = {
|
|
386
|
+
__typename?: "ChangeOwnerInvoiceStatusToSentOutput";
|
|
387
|
+
invoices?: Maybe<Array<Maybe<OwnerInvoice>>>;
|
|
388
|
+
};
|
|
389
|
+
export type ChangeOwnerLeasesBankAccountInput = {
|
|
390
|
+
bankAccountId: Scalars["Int"];
|
|
391
|
+
};
|
|
392
|
+
export type ChangeOwnerLeasesBankAccountOutput = {
|
|
393
|
+
__typename?: "ChangeOwnerLeasesBankAccountOutput";
|
|
394
|
+
leases?: Maybe<Array<Maybe<OwnerLease>>>;
|
|
395
|
+
};
|
|
337
396
|
export type ChangePasswordInput = {
|
|
338
397
|
confirmPassword: Scalars["String"];
|
|
339
398
|
password: Scalars["String"];
|
|
@@ -391,16 +450,6 @@ export type ClientType = {
|
|
|
391
450
|
id: Scalars["Int"];
|
|
392
451
|
label?: Maybe<Scalars["String"]>;
|
|
393
452
|
};
|
|
394
|
-
export type CmsCriteriaValue = {
|
|
395
|
-
__typename?: "CmsCriteriaValue";
|
|
396
|
-
code?: Maybe<Scalars["String"]>;
|
|
397
|
-
color?: Maybe<Scalars["String"]>;
|
|
398
|
-
label?: Maybe<Scalars["String"]>;
|
|
399
|
-
};
|
|
400
|
-
export type CmsCriteriaValueInput = {
|
|
401
|
-
code: Scalars["String"];
|
|
402
|
-
value: Scalars["String"];
|
|
403
|
-
};
|
|
404
453
|
export type ConfirmFastCheckoutInput = {
|
|
405
454
|
cartItemID?: InputMaybe<Scalars["Int"]>;
|
|
406
455
|
confirmFastCheckout?: InputMaybe<Scalars["Boolean"]>;
|
|
@@ -524,6 +573,7 @@ export type Criterias = {
|
|
|
524
573
|
nbChildren2?: InputMaybe<Scalars["Int"]>;
|
|
525
574
|
nbDays?: InputMaybe<Scalars["Int"]>;
|
|
526
575
|
noCounterProposal?: InputMaybe<Scalars["Boolean"]>;
|
|
576
|
+
ownerLeaseId?: InputMaybe<Scalars["Int"]>;
|
|
527
577
|
partnerPrivilegeCardID?: InputMaybe<Scalars["Int"]>;
|
|
528
578
|
privilegeCardID?: InputMaybe<Scalars["Int"]>;
|
|
529
579
|
propertyIds?: InputMaybe<Array<InputMaybe<Scalars["Int"]>>>;
|
|
@@ -532,6 +582,7 @@ export type Criterias = {
|
|
|
532
582
|
roomType?: InputMaybe<Scalars["String"]>;
|
|
533
583
|
sortString?: InputMaybe<Scalars["String"]>;
|
|
534
584
|
startDate?: InputMaybe<Scalars["Date"]>;
|
|
585
|
+
stayCreditId?: InputMaybe<Scalars["Int"]>;
|
|
535
586
|
};
|
|
536
587
|
export type CriteriasPort = {
|
|
537
588
|
arrivalPortName: Scalars["String"];
|
|
@@ -566,6 +617,10 @@ export type CurrentCustomerAccountOutput = {
|
|
|
566
617
|
__typename?: "CurrentCustomerAccountOutput";
|
|
567
618
|
service?: Maybe<Service>;
|
|
568
619
|
};
|
|
620
|
+
export type CurrentOwnerAccountOutput = {
|
|
621
|
+
__typename?: "CurrentOwnerAccountOutput";
|
|
622
|
+
service?: Maybe<Service>;
|
|
623
|
+
};
|
|
569
624
|
export type CustomerAccountInput = {
|
|
570
625
|
account?: InputMaybe<AccountInput>;
|
|
571
626
|
address?: InputMaybe<CustomerAddressInput>;
|
|
@@ -657,6 +712,7 @@ export type CustomerBookingSubStatus = {
|
|
|
657
712
|
};
|
|
658
713
|
export type CustomerBookingsInput = {
|
|
659
714
|
bookingIds?: InputMaybe<Array<InputMaybe<Scalars["Int"]>>>;
|
|
715
|
+
campaignCode?: InputMaybe<Scalars["String"]>;
|
|
660
716
|
canceled?: InputMaybe<Scalars["Boolean"]>;
|
|
661
717
|
estimate?: InputMaybe<Scalars["Boolean"]>;
|
|
662
718
|
option?: InputMaybe<Scalars["Boolean"]>;
|
|
@@ -761,6 +817,14 @@ export type DiscountCodeOutput = {
|
|
|
761
817
|
__typename?: "DiscountCodeOutput";
|
|
762
818
|
cart?: Maybe<Cart>;
|
|
763
819
|
};
|
|
820
|
+
export type DisputeOwnerInvoiceInput = {
|
|
821
|
+
invoiceId: Scalars["Int"];
|
|
822
|
+
reason: Scalars["String"];
|
|
823
|
+
};
|
|
824
|
+
export type DisputeOwnerInvoiceOutput = {
|
|
825
|
+
__typename?: "DisputeOwnerInvoiceOutput";
|
|
826
|
+
invoice?: Maybe<OwnerInvoice>;
|
|
827
|
+
};
|
|
764
828
|
export type Distribution = {
|
|
765
829
|
__typename?: "Distribution";
|
|
766
830
|
roomNumbers?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
@@ -785,6 +849,13 @@ export type ExpireSessionOutput = {
|
|
|
785
849
|
__typename?: "ExpireSessionOutput";
|
|
786
850
|
isExpired?: Maybe<Scalars["Boolean"]>;
|
|
787
851
|
};
|
|
852
|
+
export type ExtraSale = {
|
|
853
|
+
__typename?: "ExtraSale";
|
|
854
|
+
guiid?: Maybe<Scalars["Int"]>;
|
|
855
|
+
id?: Maybe<Scalars["Int"]>;
|
|
856
|
+
label?: Maybe<Scalars["String"]>;
|
|
857
|
+
lineItems?: Maybe<Array<Maybe<Lineitem>>>;
|
|
858
|
+
};
|
|
788
859
|
export type FacebookLoginInput = {
|
|
789
860
|
facebookID: Scalars["String"];
|
|
790
861
|
};
|
|
@@ -1000,6 +1071,15 @@ export type Heights = {
|
|
|
1000
1071
|
id?: Maybe<Scalars["Int"]>;
|
|
1001
1072
|
value?: Maybe<Scalars["String"]>;
|
|
1002
1073
|
};
|
|
1074
|
+
export type IbanInput = {
|
|
1075
|
+
bic: Scalars["String"];
|
|
1076
|
+
iban: Scalars["String"];
|
|
1077
|
+
};
|
|
1078
|
+
export type Iban = {
|
|
1079
|
+
__typename?: "Iban";
|
|
1080
|
+
bic?: Maybe<Scalars["String"]>;
|
|
1081
|
+
iban?: Maybe<Scalars["String"]>;
|
|
1082
|
+
};
|
|
1003
1083
|
export declare enum InputType {
|
|
1004
1084
|
Checkbox = "CHECKBOX",
|
|
1005
1085
|
Enum = "ENUM",
|
|
@@ -1032,6 +1112,7 @@ export type Lineitem = {
|
|
|
1032
1112
|
ferryBooking?: Maybe<FerryBooking>;
|
|
1033
1113
|
guiid?: Maybe<Scalars["Int"]>;
|
|
1034
1114
|
id?: Maybe<Scalars["Int"]>;
|
|
1115
|
+
includedInGiftBox?: Maybe<Scalars["Boolean"]>;
|
|
1035
1116
|
isSkiset?: Maybe<Scalars["Boolean"]>;
|
|
1036
1117
|
label?: Maybe<Scalars["String"]>;
|
|
1037
1118
|
preReserved?: Maybe<Scalars["Boolean"]>;
|
|
@@ -1173,6 +1254,7 @@ export type MoneyInput = {
|
|
|
1173
1254
|
export type Mutation = {
|
|
1174
1255
|
__typename?: "Mutation";
|
|
1175
1256
|
addBaby?: Maybe<AddBabyOutput>;
|
|
1257
|
+
addBankAccount?: Maybe<BankAccountOutput>;
|
|
1176
1258
|
addCustomerDepositAccountPayments?: Maybe<CustomerDepositAccountPaymentsOutput>;
|
|
1177
1259
|
addCustomerDepositAccountPaymentsFromPaymentLink?: Maybe<CustomerDepositAccountPaymentsOutputFromPaymentLink>;
|
|
1178
1260
|
addDiscountCode?: Maybe<DiscountCodeOutput>;
|
|
@@ -1190,10 +1272,13 @@ export type Mutation = {
|
|
|
1190
1272
|
* ### LANG_gql_actions
|
|
1191
1273
|
*/
|
|
1192
1274
|
addPartnerToCart?: Maybe<PartnerToCartOutput>;
|
|
1275
|
+
addProductProposalToCart?: Maybe<ProductProposalToCartOutput>;
|
|
1193
1276
|
addProductToBooking?: Maybe<ProductToBookingOutput>;
|
|
1194
1277
|
addProductToOccupant?: Maybe<ProductToOccupantOutput>;
|
|
1195
1278
|
assignRoom?: Maybe<AssignRoomOutput>;
|
|
1196
1279
|
cancelFerryBooking?: Maybe<CancelFerryBookingOutput>;
|
|
1280
|
+
changeOwnerInvoiceStatusToSent?: Maybe<ChangeOwnerInvoiceStatusToSentOutput>;
|
|
1281
|
+
changeOwnerLeasesBankAccount?: Maybe<ChangeOwnerLeasesBankAccountOutput>;
|
|
1197
1282
|
changePassword?: Maybe<ChangePasswordOutput>;
|
|
1198
1283
|
chooseFerryProposal?: Maybe<ChooseFerryProposalOutput>;
|
|
1199
1284
|
chooseProposalFromKeys?: Maybe<ChooseProposalFromKeysOutput>;
|
|
@@ -1203,6 +1288,7 @@ export type Mutation = {
|
|
|
1203
1288
|
createServiceCustomerAccount?: Maybe<CustomerAccountOutput>;
|
|
1204
1289
|
disableEnablePartnerCustomerAccount?: Maybe<CustomerAccountOutput>;
|
|
1205
1290
|
disableServiceCustomerAccount?: Maybe<CustomerAccountOutput>;
|
|
1291
|
+
disputeOwnerInvoice?: Maybe<DisputeOwnerInvoiceOutput>;
|
|
1206
1292
|
doFastCheckin?: Maybe<DoFastCheckinOutput>;
|
|
1207
1293
|
doFastCheckout?: Maybe<DoFastCheckoutOutput>;
|
|
1208
1294
|
expireSession?: Maybe<ExpireSessionOutput>;
|
|
@@ -1221,12 +1307,14 @@ export type Mutation = {
|
|
|
1221
1307
|
redirectPaymentGatewayForCart?: Maybe<PaymentGatewayForCartOutput>;
|
|
1222
1308
|
redirectPaymentGatewayForInstalment?: Maybe<PaymentGatewayForInstalmentOutput>;
|
|
1223
1309
|
redirectPaymentGatewayFromPaymentLink?: Maybe<PaymentGatewayFromPaymentLinkOutput>;
|
|
1310
|
+
removeBankAccount?: Maybe<RemoveBankAccountsOutput>;
|
|
1224
1311
|
removeBookingFromCart?: Maybe<RemoveBookingFromCartOutput>;
|
|
1225
1312
|
removeCartPayments?: Maybe<RemoveCartPaymentsOutput>;
|
|
1226
1313
|
removeCustomerAccount?: Maybe<RemoveCustomerAccountOutput>;
|
|
1227
1314
|
removeDiscountCode?: Maybe<RemoveDiscountCodeOutput>;
|
|
1228
1315
|
removeGiftCode?: Maybe<RemoveGiftCodeOutput>;
|
|
1229
1316
|
removeOccupant?: Maybe<RemoveOccupantOutput>;
|
|
1317
|
+
removeProductProposalToCart?: Maybe<ProductProposalToCartOutput>;
|
|
1230
1318
|
removeStay?: Maybe<RemoveStayOutput>;
|
|
1231
1319
|
resetCart?: Maybe<ResetCartOutput>;
|
|
1232
1320
|
resetPendingFerryBooking?: Maybe<ResetPendingFerryBookingOutput>;
|
|
@@ -1247,23 +1335,30 @@ export type Mutation = {
|
|
|
1247
1335
|
updateFerryTravelersInformation?: Maybe<UpdateFerryTravelersInformationOutput>;
|
|
1248
1336
|
updateOccupant?: Maybe<OccupantOutput>;
|
|
1249
1337
|
updateOccupantSkisetMeasurements?: Maybe<UpdateOccupantSkisetMeasurementsOutput>;
|
|
1338
|
+
updateOwnerAccount?: Maybe<CustomerAccountOutput>;
|
|
1250
1339
|
updatePartnerAccount?: Maybe<PartnerOutput>;
|
|
1251
1340
|
updatePartnerCustomerAccount?: Maybe<CustomerAccountOutput>;
|
|
1252
1341
|
updatePartnerPaymentPlans?: Maybe<PartnerPaymentPlansOutput>;
|
|
1253
1342
|
updatePayerPaymentPlans?: Maybe<PayerPaymentPlansOutput>;
|
|
1254
1343
|
updatePrimaryOccupant?: Maybe<PrimaryOccupantOutput>;
|
|
1255
1344
|
updateProductCriterias?: Maybe<UpdateBookingCriteriasOutput>;
|
|
1345
|
+
updateProductInfosForBenificiary?: Maybe<UpdateProductInfosForBenificiaryOutput>;
|
|
1256
1346
|
updateRoomFromMap?: Maybe<RoomFromMapOutput>;
|
|
1257
1347
|
updateServiceCustomerAccount?: Maybe<CustomerAccountOutput>;
|
|
1258
1348
|
updateStayTime?: Maybe<StayTimeOutput>;
|
|
1259
1349
|
updateTotalOccupants?: Maybe<TotalOccupantsOutput>;
|
|
1260
1350
|
uploadFiles?: Maybe<UploadFilesOutput>;
|
|
1261
1351
|
validateLyraPayment?: Maybe<LyraPaymentValidationOutput>;
|
|
1352
|
+
validateOwnerInvoices?: Maybe<ValidateOwnerInvoicesOutput>;
|
|
1262
1353
|
};
|
|
1263
1354
|
export type MutationAddBabyArgs = {
|
|
1264
1355
|
input: AddBabyInput;
|
|
1265
1356
|
session: Session;
|
|
1266
1357
|
};
|
|
1358
|
+
export type MutationAddBankAccountArgs = {
|
|
1359
|
+
input?: InputMaybe<AddBankAccountInput>;
|
|
1360
|
+
session: Session;
|
|
1361
|
+
};
|
|
1267
1362
|
export type MutationAddCustomerDepositAccountPaymentsArgs = {
|
|
1268
1363
|
input?: InputMaybe<CustomerDepositAccountPaymentsInput>;
|
|
1269
1364
|
session: Session;
|
|
@@ -1300,6 +1395,10 @@ export type MutationAddPartnerToCartArgs = {
|
|
|
1300
1395
|
input: PartnerToCartInput;
|
|
1301
1396
|
session: Session;
|
|
1302
1397
|
};
|
|
1398
|
+
export type MutationAddProductProposalToCartArgs = {
|
|
1399
|
+
input: ProductProposalToCartInput;
|
|
1400
|
+
session: Session;
|
|
1401
|
+
};
|
|
1303
1402
|
export type MutationAddProductToBookingArgs = {
|
|
1304
1403
|
input: ProductToBookingInput;
|
|
1305
1404
|
session: Session;
|
|
@@ -1316,6 +1415,14 @@ export type MutationCancelFerryBookingArgs = {
|
|
|
1316
1415
|
input?: InputMaybe<CancelFerryBookingInput>;
|
|
1317
1416
|
session: Session;
|
|
1318
1417
|
};
|
|
1418
|
+
export type MutationChangeOwnerInvoiceStatusToSentArgs = {
|
|
1419
|
+
input: ChangeOwnerInvoiceStatusToSentInput;
|
|
1420
|
+
session: Session;
|
|
1421
|
+
};
|
|
1422
|
+
export type MutationChangeOwnerLeasesBankAccountArgs = {
|
|
1423
|
+
input: ChangeOwnerLeasesBankAccountInput;
|
|
1424
|
+
session: Session;
|
|
1425
|
+
};
|
|
1319
1426
|
export type MutationChangePasswordArgs = {
|
|
1320
1427
|
input: ChangePasswordInput;
|
|
1321
1428
|
session: Session;
|
|
@@ -1352,6 +1459,10 @@ export type MutationDisableServiceCustomerAccountArgs = {
|
|
|
1352
1459
|
input?: InputMaybe<DisableServiceCustomerAccountInput>;
|
|
1353
1460
|
session: Session;
|
|
1354
1461
|
};
|
|
1462
|
+
export type MutationDisputeOwnerInvoiceArgs = {
|
|
1463
|
+
input: DisputeOwnerInvoiceInput;
|
|
1464
|
+
session: Session;
|
|
1465
|
+
};
|
|
1355
1466
|
export type MutationDoFastCheckinArgs = {
|
|
1356
1467
|
input?: InputMaybe<DoFastCheckinInput>;
|
|
1357
1468
|
session: Session;
|
|
@@ -1422,6 +1533,10 @@ export type MutationRedirectPaymentGatewayFromPaymentLinkArgs = {
|
|
|
1422
1533
|
input?: InputMaybe<PaymentGatewayFromPaymentLinkInput>;
|
|
1423
1534
|
paymentLinkAuthenticationInput: PaymentLinkAuthenticationInput;
|
|
1424
1535
|
};
|
|
1536
|
+
export type MutationRemoveBankAccountArgs = {
|
|
1537
|
+
input?: InputMaybe<RemoveBankAccountInput>;
|
|
1538
|
+
session: Session;
|
|
1539
|
+
};
|
|
1425
1540
|
export type MutationRemoveBookingFromCartArgs = {
|
|
1426
1541
|
input?: InputMaybe<RemoveBookingFromCartInput>;
|
|
1427
1542
|
session: Session;
|
|
@@ -1443,6 +1558,10 @@ export type MutationRemoveOccupantArgs = {
|
|
|
1443
1558
|
input: RemoveOccupantInput;
|
|
1444
1559
|
session: Session;
|
|
1445
1560
|
};
|
|
1561
|
+
export type MutationRemoveProductProposalToCartArgs = {
|
|
1562
|
+
input: RemoveProductProposalToCartInput;
|
|
1563
|
+
session: Session;
|
|
1564
|
+
};
|
|
1446
1565
|
export type MutationRemoveStayArgs = {
|
|
1447
1566
|
input: RemoveStayInput;
|
|
1448
1567
|
session: Session;
|
|
@@ -1521,6 +1640,10 @@ export type MutationUpdateOccupantSkisetMeasurementsArgs = {
|
|
|
1521
1640
|
input: UpdateOccupantSkisetMeasurementsInput;
|
|
1522
1641
|
session: Session;
|
|
1523
1642
|
};
|
|
1643
|
+
export type MutationUpdateOwnerAccountArgs = {
|
|
1644
|
+
input?: InputMaybe<CustomerAccountInput>;
|
|
1645
|
+
session: Session;
|
|
1646
|
+
};
|
|
1524
1647
|
export type MutationUpdatePartnerAccountArgs = {
|
|
1525
1648
|
input?: InputMaybe<PartnerAccountInput>;
|
|
1526
1649
|
session: Session;
|
|
@@ -1545,6 +1668,10 @@ export type MutationUpdateProductCriteriasArgs = {
|
|
|
1545
1668
|
input: UpdateProductCriteriasInput;
|
|
1546
1669
|
session: Session;
|
|
1547
1670
|
};
|
|
1671
|
+
export type MutationUpdateProductInfosForBenificiaryArgs = {
|
|
1672
|
+
input: UpdateProductForBenificiaryInput;
|
|
1673
|
+
session: Session;
|
|
1674
|
+
};
|
|
1548
1675
|
export type MutationUpdateRoomFromMapArgs = {
|
|
1549
1676
|
input: RoomFromMapInput;
|
|
1550
1677
|
session: Session;
|
|
@@ -1569,6 +1696,10 @@ export type MutationValidateLyraPaymentArgs = {
|
|
|
1569
1696
|
input: LyraPaymentValidationInput;
|
|
1570
1697
|
session: Session;
|
|
1571
1698
|
};
|
|
1699
|
+
export type MutationValidateOwnerInvoicesArgs = {
|
|
1700
|
+
input: ValidateOwnerInvoicesInput;
|
|
1701
|
+
session: Session;
|
|
1702
|
+
};
|
|
1572
1703
|
export type MyLoginInput = {
|
|
1573
1704
|
email?: InputMaybe<Scalars["String"]>;
|
|
1574
1705
|
firstName?: InputMaybe<Scalars["String"]>;
|
|
@@ -1674,12 +1805,44 @@ export type Option = {
|
|
|
1674
1805
|
default?: Maybe<Scalars["Boolean"]>;
|
|
1675
1806
|
label?: Maybe<Scalars["String"]>;
|
|
1676
1807
|
};
|
|
1808
|
+
export type OwnerDocument = {
|
|
1809
|
+
__typename?: "OwnerDocument";
|
|
1810
|
+
label?: Maybe<Scalars["String"]>;
|
|
1811
|
+
uploadDate?: Maybe<Scalars["Date"]>;
|
|
1812
|
+
url?: Maybe<Scalars["String"]>;
|
|
1813
|
+
};
|
|
1814
|
+
export type OwnerInvoice = {
|
|
1815
|
+
__typename?: "OwnerInvoice";
|
|
1816
|
+
amount?: Maybe<Amount>;
|
|
1817
|
+
dispute?: Maybe<Scalars["String"]>;
|
|
1818
|
+
dueDate?: Maybe<Scalars["Date"]>;
|
|
1819
|
+
id?: Maybe<Scalars["Int"]>;
|
|
1820
|
+
isInvoiced?: Maybe<Scalars["Boolean"]>;
|
|
1821
|
+
isOkForCentral?: Maybe<Scalars["Boolean"]>;
|
|
1822
|
+
isOkForOwner?: Maybe<Scalars["Boolean"]>;
|
|
1823
|
+
remainingAmount?: Maybe<Amount>;
|
|
1824
|
+
rentReceipts?: Maybe<Array<Maybe<RentReceipt>>>;
|
|
1825
|
+
revisedRent?: Maybe<Scalars["Boolean"]>;
|
|
1826
|
+
status?: Maybe<Scalars["String"]>;
|
|
1827
|
+
summaryDocuments?: Maybe<Array<Maybe<OwnerInvoiceDocument>>>;
|
|
1828
|
+
url?: Maybe<Scalars["String"]>;
|
|
1829
|
+
};
|
|
1830
|
+
export type OwnerInvoiceDocument = {
|
|
1831
|
+
__typename?: "OwnerInvoiceDocument";
|
|
1832
|
+
date?: Maybe<Scalars["Date"]>;
|
|
1833
|
+
label?: Maybe<Scalars["String"]>;
|
|
1834
|
+
url?: Maybe<Scalars["String"]>;
|
|
1835
|
+
};
|
|
1677
1836
|
export type OwnerLease = {
|
|
1678
1837
|
__typename?: "OwnerLease";
|
|
1838
|
+
bankAccount?: Maybe<BankAccount>;
|
|
1839
|
+
conventionId?: Maybe<Scalars["Int"]>;
|
|
1840
|
+
documents?: Maybe<Array<Maybe<OwnerDocument>>>;
|
|
1679
1841
|
etabId?: Maybe<Scalars["Int"]>;
|
|
1680
1842
|
etabLabel?: Maybe<Scalars["String"]>;
|
|
1681
1843
|
id?: Maybe<Scalars["Int"]>;
|
|
1682
1844
|
periods?: Maybe<Array<Maybe<OwnerLeasePeriod>>>;
|
|
1845
|
+
webLabel?: Maybe<Scalars["String"]>;
|
|
1683
1846
|
};
|
|
1684
1847
|
export type OwnerLeasePeriod = {
|
|
1685
1848
|
__typename?: "OwnerLeasePeriod";
|
|
@@ -1689,19 +1852,31 @@ export type OwnerLeasePeriod = {
|
|
|
1689
1852
|
export type OwnerLot = {
|
|
1690
1853
|
__typename?: "OwnerLot";
|
|
1691
1854
|
id?: Maybe<Scalars["Int"]>;
|
|
1855
|
+
invoices?: Maybe<Array<Maybe<OwnerInvoice>>>;
|
|
1692
1856
|
label?: Maybe<Scalars["String"]>;
|
|
1693
1857
|
roomNumbers?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
1858
|
+
type?: Maybe<Scalars["String"]>;
|
|
1694
1859
|
};
|
|
1695
1860
|
export type OwnerRoomPlanningDataInput = {
|
|
1696
1861
|
campaignCode: Scalars["String"];
|
|
1697
|
-
month
|
|
1862
|
+
month: Scalars["Int"];
|
|
1698
1863
|
ownerLotId: Scalars["Int"];
|
|
1699
|
-
year
|
|
1864
|
+
year: Scalars["Int"];
|
|
1700
1865
|
};
|
|
1701
1866
|
export type OwnerRoomPlanningDataOutput = {
|
|
1702
1867
|
__typename?: "OwnerRoomPlanningDataOutput";
|
|
1703
1868
|
calendarPeriods?: Maybe<Array<Maybe<CalendarPeriod>>>;
|
|
1704
1869
|
};
|
|
1870
|
+
export type OwnerServiceChargeInvoiceDocument = {
|
|
1871
|
+
__typename?: "OwnerServiceChargeInvoiceDocument";
|
|
1872
|
+
date?: Maybe<Scalars["Date"]>;
|
|
1873
|
+
label?: Maybe<Scalars["String"]>;
|
|
1874
|
+
url?: Maybe<Scalars["String"]>;
|
|
1875
|
+
};
|
|
1876
|
+
export type OwnerServiceChargeInvoicesDocumentOutput = {
|
|
1877
|
+
__typename?: "OwnerServiceChargeInvoicesDocumentOutput";
|
|
1878
|
+
documents?: Maybe<Array<Maybe<OwnerServiceChargeInvoiceDocument>>>;
|
|
1879
|
+
};
|
|
1705
1880
|
export type OwnerleasesOutput = {
|
|
1706
1881
|
__typename?: "OwnerleasesOutput";
|
|
1707
1882
|
leases?: Maybe<Array<Maybe<OwnerLease>>>;
|
|
@@ -2039,14 +2214,6 @@ export type ProductByCategory = {
|
|
|
2039
2214
|
categoryLabel?: Maybe<Scalars["String"]>;
|
|
2040
2215
|
products?: Maybe<Array<Maybe<Product>>>;
|
|
2041
2216
|
};
|
|
2042
|
-
export type ProductCmsCriteria = {
|
|
2043
|
-
__typename?: "ProductCMSCriteria";
|
|
2044
|
-
cmsCriteria?: Maybe<CmsCriteria>;
|
|
2045
|
-
};
|
|
2046
|
-
export type ProductCmsCriteriasOutput = {
|
|
2047
|
-
__typename?: "ProductCMSCriteriasOutput";
|
|
2048
|
-
criterias?: Maybe<Array<Maybe<ProductCmsCriteria>>>;
|
|
2049
|
-
};
|
|
2050
2217
|
export type ProductCategoriesOutput = {
|
|
2051
2218
|
__typename?: "ProductCategoriesOutput";
|
|
2052
2219
|
productCategories?: Maybe<Array<Maybe<ProductCategory>>>;
|
|
@@ -2063,6 +2230,18 @@ export declare enum ProductDistributionType {
|
|
|
2063
2230
|
Occupant = "OCCUPANT",
|
|
2064
2231
|
Room = "ROOM"
|
|
2065
2232
|
}
|
|
2233
|
+
export declare enum ProductForBenificiarySendToEnum {
|
|
2234
|
+
Both = "both",
|
|
2235
|
+
Buyer = "buyer",
|
|
2236
|
+
Customer = "customer"
|
|
2237
|
+
}
|
|
2238
|
+
export type ProductInfosForBenificiaryInput = {
|
|
2239
|
+
lineitemGuiid: Scalars["Int"];
|
|
2240
|
+
};
|
|
2241
|
+
export type ProductInfosForBenificiaryOutput = {
|
|
2242
|
+
__typename?: "ProductInfosForBenificiaryOutput";
|
|
2243
|
+
productSearchForBenificiary?: Maybe<ProductSearchForBenificiary>;
|
|
2244
|
+
};
|
|
2066
2245
|
export declare enum ProductOccupantApplication {
|
|
2067
2246
|
Everybody = "EVERYBODY",
|
|
2068
2247
|
EverybodyInRoom = "EVERYBODY_IN_ROOM",
|
|
@@ -2079,17 +2258,24 @@ export type ProductPropertiesOutput = {
|
|
|
2079
2258
|
};
|
|
2080
2259
|
export type ProductProposal = {
|
|
2081
2260
|
__typename?: "ProductProposal";
|
|
2082
|
-
|
|
2083
|
-
|
|
2261
|
+
amount?: Maybe<Amount>;
|
|
2262
|
+
description?: Maybe<Scalars["String"]>;
|
|
2084
2263
|
label?: Maybe<Scalars["String"]>;
|
|
2085
2264
|
productCode?: Maybe<Scalars["String"]>;
|
|
2086
2265
|
propertyId?: Maybe<Scalars["Int"]>;
|
|
2087
2266
|
proposalKey: Scalars["String"];
|
|
2088
|
-
|
|
2267
|
+
};
|
|
2268
|
+
export type ProductProposalToCartInput = {
|
|
2269
|
+
proposalKey: Scalars["String"];
|
|
2270
|
+
quantity?: InputMaybe<Scalars["Int"]>;
|
|
2271
|
+
};
|
|
2272
|
+
export type ProductProposalToCartOutput = {
|
|
2273
|
+
__typename?: "ProductProposalToCartOutput";
|
|
2274
|
+
cart?: Maybe<Cart>;
|
|
2089
2275
|
};
|
|
2090
2276
|
export type ProductProposalsInput = {
|
|
2091
|
-
cmsCriteriaValue?: InputMaybe<CmsCriteriaValueInput>;
|
|
2092
2277
|
nbDays?: InputMaybe<Scalars["Int"]>;
|
|
2278
|
+
productSearchCriteriaInput?: InputMaybe<ProductSearchCriteriaInput>;
|
|
2093
2279
|
propertyId?: InputMaybe<Scalars["Int"]>;
|
|
2094
2280
|
selectedDate: Scalars["Date"];
|
|
2095
2281
|
};
|
|
@@ -2097,6 +2283,60 @@ export type ProductProposalsOutput = {
|
|
|
2097
2283
|
__typename?: "ProductProposalsOutput";
|
|
2098
2284
|
proposals?: Maybe<Array<Maybe<ProductProposal>>>;
|
|
2099
2285
|
};
|
|
2286
|
+
export type ProductSearchBeneficiaryChoice = {
|
|
2287
|
+
__typename?: "ProductSearchBeneficiaryChoice";
|
|
2288
|
+
label?: Maybe<Scalars["String"]>;
|
|
2289
|
+
value?: Maybe<Scalars["String"]>;
|
|
2290
|
+
};
|
|
2291
|
+
export type ProductSearchCriteria = {
|
|
2292
|
+
__typename?: "ProductSearchCriteria";
|
|
2293
|
+
code?: Maybe<Scalars["String"]>;
|
|
2294
|
+
label?: Maybe<Scalars["String"]>;
|
|
2295
|
+
values?: Maybe<Array<Maybe<ProductSearchCriteriaValue>>>;
|
|
2296
|
+
};
|
|
2297
|
+
export type ProductSearchCriteriaInput = {
|
|
2298
|
+
productSearchCriteriaCode: Scalars["String"];
|
|
2299
|
+
productSearchCriteriaValueCode: Scalars["String"];
|
|
2300
|
+
};
|
|
2301
|
+
export type ProductSearchCriteriaValue = {
|
|
2302
|
+
__typename?: "ProductSearchCriteriaValue";
|
|
2303
|
+
code?: Maybe<Scalars["String"]>;
|
|
2304
|
+
label?: Maybe<Scalars["String"]>;
|
|
2305
|
+
};
|
|
2306
|
+
export type ProductSearchCriteriasOutput = {
|
|
2307
|
+
__typename?: "ProductSearchCriteriasOutput";
|
|
2308
|
+
criterias?: Maybe<Array<Maybe<ProductSearchCriteria>>>;
|
|
2309
|
+
};
|
|
2310
|
+
export type ProductSearchForBenificiary = {
|
|
2311
|
+
__typename?: "ProductSearchForBenificiary";
|
|
2312
|
+
isOwner?: Maybe<Scalars["Boolean"]>;
|
|
2313
|
+
sendTo?: Maybe<ProductForBenificiarySendToEnum>;
|
|
2314
|
+
service?: Maybe<Service>;
|
|
2315
|
+
treatmentCode?: Maybe<Scalars["String"]>;
|
|
2316
|
+
treatments?: Maybe<Array<Maybe<ProductSearchBeneficiaryChoice>>>;
|
|
2317
|
+
};
|
|
2318
|
+
export type ProductSummariesInput = {
|
|
2319
|
+
campaignCode?: InputMaybe<Scalars["String"]>;
|
|
2320
|
+
};
|
|
2321
|
+
export type ProductSummariesOutput = {
|
|
2322
|
+
__typename?: "ProductSummariesOutput";
|
|
2323
|
+
bookingProducts?: Maybe<Array<Maybe<ProductSummary>>>;
|
|
2324
|
+
extraSales?: Maybe<Array<Maybe<ProductSummary>>>;
|
|
2325
|
+
};
|
|
2326
|
+
export type ProductSummary = {
|
|
2327
|
+
__typename?: "ProductSummary";
|
|
2328
|
+
amount?: Maybe<Amount>;
|
|
2329
|
+
bookingId?: Maybe<Scalars["Int"]>;
|
|
2330
|
+
description?: Maybe<Scalars["String"]>;
|
|
2331
|
+
endDate?: Maybe<Scalars["Date"]>;
|
|
2332
|
+
extraSaleInvoiceNumber?: Maybe<Scalars["String"]>;
|
|
2333
|
+
isBaseProduct?: Maybe<Scalars["Boolean"]>;
|
|
2334
|
+
isExtraSale?: Maybe<Scalars["Boolean"]>;
|
|
2335
|
+
label?: Maybe<Scalars["String"]>;
|
|
2336
|
+
productCode?: Maybe<Scalars["String"]>;
|
|
2337
|
+
quantity?: Maybe<Scalars["Float"]>;
|
|
2338
|
+
startDate?: Maybe<Scalars["Date"]>;
|
|
2339
|
+
};
|
|
2100
2340
|
export type ProductToBookingInput = {
|
|
2101
2341
|
cartItemID?: InputMaybe<Scalars["Int"]>;
|
|
2102
2342
|
productCode: Scalars["String"];
|
|
@@ -2242,6 +2482,7 @@ export type Query = {
|
|
|
2242
2482
|
getAvailForRoomTypes?: Maybe<AvailForRoomTypesOutput>;
|
|
2243
2483
|
getAvailableRoomFeatures?: Maybe<AvailableRoomFeaturesOutput>;
|
|
2244
2484
|
getAvailableRooms?: Maybe<AvailableRoomsOutput>;
|
|
2485
|
+
getBankAccounts?: Maybe<BankAccountsOutput>;
|
|
2245
2486
|
getBookingCustomerDepositAccountInfos?: Maybe<BookingCustomerDepositAccountInfosOutput>;
|
|
2246
2487
|
getBookingDocuments?: Maybe<BookingDocumentsOutput>;
|
|
2247
2488
|
getBookingPaymentPlans?: Maybe<PaymentPlansOutput>;
|
|
@@ -2259,6 +2500,7 @@ export type Query = {
|
|
|
2259
2500
|
*/
|
|
2260
2501
|
getCriteriaInformation?: Maybe<CriteriaInformationOutput>;
|
|
2261
2502
|
getCurrentCustomerAccount?: Maybe<CurrentCustomerAccountOutput>;
|
|
2503
|
+
getCurrentOwnerAccount?: Maybe<CurrentOwnerAccountOutput>;
|
|
2262
2504
|
getCustomerBookings?: Maybe<CustomerBookingsOutput>;
|
|
2263
2505
|
getCustomerCriterias?: Maybe<CustomerCriteriasOutput>;
|
|
2264
2506
|
getCustomerDepositAccounts?: Maybe<CustomerDepositAccountsOutput>;
|
|
@@ -2289,6 +2531,7 @@ export type Query = {
|
|
|
2289
2531
|
getOccupantsFromCurrentCustomer?: Maybe<OccupantsFromCurrentCustomerOutput>;
|
|
2290
2532
|
getOwnerLeases?: Maybe<OwnerleasesOutput>;
|
|
2291
2533
|
getOwnerRoomPlanningData?: Maybe<OwnerRoomPlanningDataOutput>;
|
|
2534
|
+
getOwnerServiceChargeInvoicesDocument?: Maybe<OwnerServiceChargeInvoicesDocumentOutput>;
|
|
2292
2535
|
getPartner?: Maybe<PartnerOutput>;
|
|
2293
2536
|
getPartnerCustomers?: Maybe<PartnerCustomerInfoOutput>;
|
|
2294
2537
|
getPaymentLinkInfos?: Maybe<PaymentLinkInfosOutput>;
|
|
@@ -2307,6 +2550,11 @@ export type Query = {
|
|
|
2307
2550
|
*/
|
|
2308
2551
|
getPrivilegeCardTypes?: Maybe<PrivilegeCardTypesOutput>;
|
|
2309
2552
|
getProductCategories?: Maybe<ProductCategoriesOutput>;
|
|
2553
|
+
getProductInfosForBenificiary?: Maybe<ProductInfosForBenificiaryOutput>;
|
|
2554
|
+
getProductProperties?: Maybe<ProductPropertiesOutput>;
|
|
2555
|
+
getProductProposals?: Maybe<ProductProposalsOutput>;
|
|
2556
|
+
getProductSearchCriterias?: Maybe<ProductSearchCriteriasOutput>;
|
|
2557
|
+
getProductSummaries?: Maybe<ProductSummariesOutput>;
|
|
2310
2558
|
getProperties?: Maybe<PropertiesOutput>;
|
|
2311
2559
|
getProposalByRoomTypes?: Maybe<ProposalByRoomTypesOutput>;
|
|
2312
2560
|
getProposals?: Maybe<ProposalsOutput>;
|
|
@@ -2332,8 +2580,10 @@ export type Query = {
|
|
|
2332
2580
|
*/
|
|
2333
2581
|
getSession?: Maybe<SessionOutput>;
|
|
2334
2582
|
getSkisetMeasurements?: Maybe<MeasurementsOutput>;
|
|
2583
|
+
getStayCredits?: Maybe<StayCreditsOutput>;
|
|
2335
2584
|
getTranslations?: Maybe<TranslationsOutput>;
|
|
2336
2585
|
getUserLanguage?: Maybe<UserLanguageOutput>;
|
|
2586
|
+
getVouchersFromCart?: Maybe<VouchersFromCartOutput>;
|
|
2337
2587
|
hasProductsForOccupant?: Maybe<ProductsForOccupantOutput>;
|
|
2338
2588
|
renewPassword?: Maybe<RenewPasswordOutput>;
|
|
2339
2589
|
requestBrochure?: Maybe<BrochureOutput>;
|
|
@@ -2382,6 +2632,10 @@ export type QueryGetAvailableRoomsArgs = {
|
|
|
2382
2632
|
session: Session;
|
|
2383
2633
|
};
|
|
2384
2634
|
/** test query */
|
|
2635
|
+
export type QueryGetBankAccountsArgs = {
|
|
2636
|
+
session: Session;
|
|
2637
|
+
};
|
|
2638
|
+
/** test query */
|
|
2385
2639
|
export type QueryGetBookingCustomerDepositAccountInfosArgs = {
|
|
2386
2640
|
session: Session;
|
|
2387
2641
|
};
|
|
@@ -2434,6 +2688,10 @@ export type QueryGetCurrentCustomerAccountArgs = {
|
|
|
2434
2688
|
session: Session;
|
|
2435
2689
|
};
|
|
2436
2690
|
/** test query */
|
|
2691
|
+
export type QueryGetCurrentOwnerAccountArgs = {
|
|
2692
|
+
session: Session;
|
|
2693
|
+
};
|
|
2694
|
+
/** test query */
|
|
2437
2695
|
export type QueryGetCustomerBookingsArgs = {
|
|
2438
2696
|
input?: InputMaybe<CustomerBookingsInput>;
|
|
2439
2697
|
session: Session;
|
|
@@ -2565,6 +2823,10 @@ export type QueryGetOwnerRoomPlanningDataArgs = {
|
|
|
2565
2823
|
session: Session;
|
|
2566
2824
|
};
|
|
2567
2825
|
/** test query */
|
|
2826
|
+
export type QueryGetOwnerServiceChargeInvoicesDocumentArgs = {
|
|
2827
|
+
session: Session;
|
|
2828
|
+
};
|
|
2829
|
+
/** test query */
|
|
2568
2830
|
export type QueryGetPartnerArgs = {
|
|
2569
2831
|
session: Session;
|
|
2570
2832
|
};
|
|
@@ -2608,6 +2870,29 @@ export type QueryGetProductCategoriesArgs = {
|
|
|
2608
2870
|
session: Session;
|
|
2609
2871
|
};
|
|
2610
2872
|
/** test query */
|
|
2873
|
+
export type QueryGetProductInfosForBenificiaryArgs = {
|
|
2874
|
+
input: ProductInfosForBenificiaryInput;
|
|
2875
|
+
session: Session;
|
|
2876
|
+
};
|
|
2877
|
+
/** test query */
|
|
2878
|
+
export type QueryGetProductPropertiesArgs = {
|
|
2879
|
+
session: Session;
|
|
2880
|
+
};
|
|
2881
|
+
/** test query */
|
|
2882
|
+
export type QueryGetProductProposalsArgs = {
|
|
2883
|
+
input: ProductProposalsInput;
|
|
2884
|
+
session: Session;
|
|
2885
|
+
};
|
|
2886
|
+
/** test query */
|
|
2887
|
+
export type QueryGetProductSearchCriteriasArgs = {
|
|
2888
|
+
session: Session;
|
|
2889
|
+
};
|
|
2890
|
+
/** test query */
|
|
2891
|
+
export type QueryGetProductSummariesArgs = {
|
|
2892
|
+
input?: InputMaybe<ProductSummariesInput>;
|
|
2893
|
+
session: Session;
|
|
2894
|
+
};
|
|
2895
|
+
/** test query */
|
|
2611
2896
|
export type QueryGetPropertiesArgs = {
|
|
2612
2897
|
authentication: AuthenticationInput;
|
|
2613
2898
|
input?: InputMaybe<PropertiesInput>;
|
|
@@ -2667,6 +2952,10 @@ export type QueryGetSkisetMeasurementsArgs = {
|
|
|
2667
2952
|
session: Session;
|
|
2668
2953
|
};
|
|
2669
2954
|
/** test query */
|
|
2955
|
+
export type QueryGetStayCreditsArgs = {
|
|
2956
|
+
session: Session;
|
|
2957
|
+
};
|
|
2958
|
+
/** test query */
|
|
2670
2959
|
export type QueryGetTranslationsArgs = {
|
|
2671
2960
|
input?: InputMaybe<TranslationsInput>;
|
|
2672
2961
|
session: Session;
|
|
@@ -2676,6 +2965,10 @@ export type QueryGetUserLanguageArgs = {
|
|
|
2676
2965
|
session: Session;
|
|
2677
2966
|
};
|
|
2678
2967
|
/** test query */
|
|
2968
|
+
export type QueryGetVouchersFromCartArgs = {
|
|
2969
|
+
session: Session;
|
|
2970
|
+
};
|
|
2971
|
+
/** test query */
|
|
2679
2972
|
export type QueryHasProductsForOccupantArgs = {
|
|
2680
2973
|
input?: InputMaybe<HasProductsForOccupantInput>;
|
|
2681
2974
|
session: Session;
|
|
@@ -2690,6 +2983,12 @@ export type QueryRequestBrochureArgs = {
|
|
|
2690
2983
|
input?: InputMaybe<BrochureInput>;
|
|
2691
2984
|
session: Session;
|
|
2692
2985
|
};
|
|
2986
|
+
export type RibInput = {
|
|
2987
|
+
accountNumber: Scalars["String"];
|
|
2988
|
+
bankCode: Scalars["String"];
|
|
2989
|
+
branchCode: Scalars["String"];
|
|
2990
|
+
ribKey: Scalars["String"];
|
|
2991
|
+
};
|
|
2693
2992
|
export type Relationship = {
|
|
2694
2993
|
__typename?: "Relationship";
|
|
2695
2994
|
id: Scalars["Int"];
|
|
@@ -2699,6 +2998,13 @@ export type RelationshipOutput = {
|
|
|
2699
2998
|
__typename?: "RelationshipOutput";
|
|
2700
2999
|
relationships?: Maybe<Array<Maybe<Relationship>>>;
|
|
2701
3000
|
};
|
|
3001
|
+
export type RemoveBankAccountInput = {
|
|
3002
|
+
bankAccountId: Scalars["Int"];
|
|
3003
|
+
};
|
|
3004
|
+
export type RemoveBankAccountsOutput = {
|
|
3005
|
+
__typename?: "RemoveBankAccountsOutput";
|
|
3006
|
+
removed?: Maybe<Scalars["Boolean"]>;
|
|
3007
|
+
};
|
|
2702
3008
|
export type RemoveBookingFromCartInput = {
|
|
2703
3009
|
bookingCartItemID: Scalars["Int"];
|
|
2704
3010
|
};
|
|
@@ -2741,6 +3047,9 @@ export type RemoveOccupantOutput = {
|
|
|
2741
3047
|
__typename?: "RemoveOccupantOutput";
|
|
2742
3048
|
cart?: Maybe<Cart>;
|
|
2743
3049
|
};
|
|
3050
|
+
export type RemoveProductProposalToCartInput = {
|
|
3051
|
+
lineitemGuiid: Scalars["Int"];
|
|
3052
|
+
};
|
|
2744
3053
|
export type RemoveStayInput = {
|
|
2745
3054
|
lastStayRemoveAllFerryConfirmed?: InputMaybe<Scalars["Boolean"]>;
|
|
2746
3055
|
stayGuiid: Scalars["Int"];
|
|
@@ -2756,6 +3065,13 @@ export type RenewPasswordOutput = {
|
|
|
2756
3065
|
__typename?: "RenewPasswordOutput";
|
|
2757
3066
|
renewPasswordDemand?: Maybe<Scalars["Boolean"]>;
|
|
2758
3067
|
};
|
|
3068
|
+
export type RentReceipt = {
|
|
3069
|
+
__typename?: "RentReceipt";
|
|
3070
|
+
date?: Maybe<Scalars["Date"]>;
|
|
3071
|
+
label?: Maybe<Scalars["String"]>;
|
|
3072
|
+
status?: Maybe<Scalars["String"]>;
|
|
3073
|
+
url?: Maybe<Scalars["String"]>;
|
|
3074
|
+
};
|
|
2759
3075
|
export type ResalysError = {
|
|
2760
3076
|
__typename?: "ResalysError";
|
|
2761
3077
|
code?: Maybe<Scalars["Int"]>;
|
|
@@ -2777,6 +3093,13 @@ export type ResetPendingFerryBookingOutput = {
|
|
|
2777
3093
|
__typename?: "ResetPendingFerryBookingOutput";
|
|
2778
3094
|
ferryBooking?: Maybe<FerryBooking>;
|
|
2779
3095
|
};
|
|
3096
|
+
export type Rib = {
|
|
3097
|
+
__typename?: "Rib";
|
|
3098
|
+
accountNumber?: Maybe<Scalars["String"]>;
|
|
3099
|
+
bankCode?: Maybe<Scalars["String"]>;
|
|
3100
|
+
branchCode?: Maybe<Scalars["String"]>;
|
|
3101
|
+
ribKey?: Maybe<Scalars["String"]>;
|
|
3102
|
+
};
|
|
2780
3103
|
export type RoomFeature = {
|
|
2781
3104
|
__typename?: "RoomFeature";
|
|
2782
3105
|
categoryLabel?: Maybe<Scalars["String"]>;
|
|
@@ -2909,6 +3232,14 @@ export type Service = {
|
|
|
2909
3232
|
serviceLanguage?: Maybe<Language>;
|
|
2910
3233
|
servicesList?: Maybe<Array<Maybe<Service>>>;
|
|
2911
3234
|
};
|
|
3235
|
+
export type ServiceInput = {
|
|
3236
|
+
address?: InputMaybe<CustomerAddressInput>;
|
|
3237
|
+
birthDate?: InputMaybe<Scalars["RslDate"]>;
|
|
3238
|
+
civility?: InputMaybe<Scalars["String"]>;
|
|
3239
|
+
firstName?: InputMaybe<Scalars["String"]>;
|
|
3240
|
+
languageCode?: InputMaybe<Scalars["String"]>;
|
|
3241
|
+
lastName?: InputMaybe<Scalars["String"]>;
|
|
3242
|
+
};
|
|
2912
3243
|
export type ServiceRelationship = {
|
|
2913
3244
|
relationship: Scalars["Int"];
|
|
2914
3245
|
serviceId: Scalars["Int"];
|
|
@@ -2955,6 +3286,24 @@ export type Stay = {
|
|
|
2955
3286
|
startDate?: Maybe<Scalars["Date"]>;
|
|
2956
3287
|
totalAmount?: Maybe<Amount>;
|
|
2957
3288
|
};
|
|
3289
|
+
export type StayCredit = {
|
|
3290
|
+
__typename?: "StayCredit";
|
|
3291
|
+
endUseDate?: Maybe<Scalars["Date"]>;
|
|
3292
|
+
id?: Maybe<Scalars["Int"]>;
|
|
3293
|
+
internationalComment?: Maybe<Scalars["String"]>;
|
|
3294
|
+
internationalName?: Maybe<Scalars["String"]>;
|
|
3295
|
+
lotTypeLabel?: Maybe<Scalars["String"]>;
|
|
3296
|
+
remainingCreditLabel?: Maybe<Scalars["String"]>;
|
|
3297
|
+
startUseDate?: Maybe<Scalars["Date"]>;
|
|
3298
|
+
useCreditLabel?: Maybe<Scalars["String"]>;
|
|
3299
|
+
};
|
|
3300
|
+
export type StayCreditsOutput = {
|
|
3301
|
+
__typename?: "StayCreditsOutput";
|
|
3302
|
+
notUsedStayCredits?: Maybe<Array<Maybe<StayCredit>>>;
|
|
3303
|
+
ownerLeaseWithoutStayCredits?: Maybe<Array<Maybe<OwnerLease>>>;
|
|
3304
|
+
stayCredits?: Maybe<Array<Maybe<StayCredit>>>;
|
|
3305
|
+
usedStayCredits?: Maybe<Array<Maybe<StayCredit>>>;
|
|
3306
|
+
};
|
|
2958
3307
|
export type StayMapInfos = {
|
|
2959
3308
|
__typename?: "StayMapInfos";
|
|
2960
3309
|
hasNoAvailableRoom?: Maybe<Scalars["Boolean"]>;
|
|
@@ -3058,6 +3407,12 @@ export type UnlockBookingOutput = {
|
|
|
3058
3407
|
__typename?: "UnlockBookingOutput";
|
|
3059
3408
|
bookingUnlocked?: Maybe<Scalars["Boolean"]>;
|
|
3060
3409
|
};
|
|
3410
|
+
export type UpdateBookingCriteriasFromOwnerLeaseInput = {
|
|
3411
|
+
ownerLeaseId: Scalars["Int"];
|
|
3412
|
+
};
|
|
3413
|
+
export type UpdateBookingCriteriasFromStatCreditInput = {
|
|
3414
|
+
stayCreditId: Scalars["Int"];
|
|
3415
|
+
};
|
|
3061
3416
|
export type UpdateBookingCriteriasInput = {
|
|
3062
3417
|
cartItemID?: InputMaybe<Scalars["Int"]>;
|
|
3063
3418
|
criterias?: InputMaybe<Array<InputMaybe<CriteriaValueInput>>>;
|
|
@@ -3115,6 +3470,19 @@ export type UpdateProductCriteriasInput = {
|
|
|
3115
3470
|
criterias?: InputMaybe<Array<InputMaybe<CriteriaValueInput>>>;
|
|
3116
3471
|
lineitemGUIID: Scalars["Int"];
|
|
3117
3472
|
};
|
|
3473
|
+
export type UpdateProductForBenificiaryInput = {
|
|
3474
|
+
isOwner: Scalars["Boolean"];
|
|
3475
|
+
lineitemGuiid: Scalars["Int"];
|
|
3476
|
+
observation1?: InputMaybe<Scalars["String"]>;
|
|
3477
|
+
observation2?: InputMaybe<Scalars["String"]>;
|
|
3478
|
+
sendTo: ProductForBenificiarySendToEnum;
|
|
3479
|
+
service: ServiceInput;
|
|
3480
|
+
treatmentCode: Scalars["String"];
|
|
3481
|
+
};
|
|
3482
|
+
export type UpdateProductInfosForBenificiaryOutput = {
|
|
3483
|
+
__typename?: "UpdateProductInfosForBenificiaryOutput";
|
|
3484
|
+
productSearchForBenificiary?: Maybe<ProductSearchForBenificiary>;
|
|
3485
|
+
};
|
|
3118
3486
|
export type UpdateServiceCustomerAccountInput = {
|
|
3119
3487
|
birthDate?: InputMaybe<Scalars["Date"]>;
|
|
3120
3488
|
civility?: InputMaybe<Scalars["String"]>;
|
|
@@ -3168,6 +3536,13 @@ export type ValidLoginOutput = {
|
|
|
3168
3536
|
__typename?: "ValidLoginOutput";
|
|
3169
3537
|
valid?: Maybe<Scalars["Boolean"]>;
|
|
3170
3538
|
};
|
|
3539
|
+
export type ValidateOwnerInvoicesInput = {
|
|
3540
|
+
invoiceIds: Array<InputMaybe<Scalars["Int"]>>;
|
|
3541
|
+
};
|
|
3542
|
+
export type ValidateOwnerInvoicesOutput = {
|
|
3543
|
+
__typename?: "ValidateOwnerInvoicesOutput";
|
|
3544
|
+
invoices?: Maybe<Array<Maybe<OwnerInvoice>>>;
|
|
3545
|
+
};
|
|
3171
3546
|
export type Vehicle = {
|
|
3172
3547
|
__typename?: "Vehicle";
|
|
3173
3548
|
additionalHeight?: Maybe<Scalars["Float"]>;
|
|
@@ -3189,6 +3564,15 @@ export type VehicleInfo = {
|
|
|
3189
3564
|
fuel?: InputMaybe<Scalars["String"]>;
|
|
3190
3565
|
licensePlate?: InputMaybe<Scalars["String"]>;
|
|
3191
3566
|
};
|
|
3567
|
+
export type Voucher = {
|
|
3568
|
+
__typename?: "Voucher";
|
|
3569
|
+
code?: Maybe<Scalars["String"]>;
|
|
3570
|
+
service?: Maybe<Service>;
|
|
3571
|
+
};
|
|
3572
|
+
export type VouchersFromCartOutput = {
|
|
3573
|
+
__typename?: "VouchersFromCartOutput";
|
|
3574
|
+
vouchers?: Maybe<Array<Maybe<Voucher>>>;
|
|
3575
|
+
};
|
|
3192
3576
|
/**
|
|
3193
3577
|
* LANG_gql_WeeklyCriterias
|
|
3194
3578
|
* LANG_gql_WeeklyCriterias_2
|
package/lib/types/index.js
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SkisetMeasureType = exports.ProductOccupantApplication = exports.ProductDistributionType = exports.PaymentdueType = exports.OccupantTypeEnum = exports.LyraPaymentValidatationStatus = exports.InputType = exports.BookingStatus = void 0;
|
|
3
|
+
exports.SkisetMeasureType = exports.ProductOccupantApplication = exports.ProductForBenificiarySendToEnum = exports.ProductDistributionType = exports.PaymentdueType = exports.OccupantTypeEnum = exports.LyraPaymentValidatationStatus = exports.InputType = exports.BookingStatus = exports.BankAccountType = void 0;
|
|
4
|
+
var BankAccountType;
|
|
5
|
+
(function (BankAccountType) {
|
|
6
|
+
BankAccountType["Iban"] = "IBAN";
|
|
7
|
+
BankAccountType["Rib"] = "RIB";
|
|
8
|
+
})(BankAccountType = exports.BankAccountType || (exports.BankAccountType = {}));
|
|
4
9
|
var BookingStatus;
|
|
5
10
|
(function (BookingStatus) {
|
|
6
11
|
BookingStatus["Estimate"] = "ESTIMATE";
|
|
@@ -38,6 +43,12 @@ var ProductDistributionType;
|
|
|
38
43
|
ProductDistributionType["Occupant"] = "OCCUPANT";
|
|
39
44
|
ProductDistributionType["Room"] = "ROOM";
|
|
40
45
|
})(ProductDistributionType = exports.ProductDistributionType || (exports.ProductDistributionType = {}));
|
|
46
|
+
var ProductForBenificiarySendToEnum;
|
|
47
|
+
(function (ProductForBenificiarySendToEnum) {
|
|
48
|
+
ProductForBenificiarySendToEnum["Both"] = "both";
|
|
49
|
+
ProductForBenificiarySendToEnum["Buyer"] = "buyer";
|
|
50
|
+
ProductForBenificiarySendToEnum["Customer"] = "customer";
|
|
51
|
+
})(ProductForBenificiarySendToEnum = exports.ProductForBenificiarySendToEnum || (exports.ProductForBenificiarySendToEnum = {}));
|
|
41
52
|
var ProductOccupantApplication;
|
|
42
53
|
(function (ProductOccupantApplication) {
|
|
43
54
|
ProductOccupantApplication["Everybody"] = "EVERYBODY";
|