rsl-api-106 106.291.8 → 106.291.9
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/outputs/lineItem.js +2 -5
- package/lib/types/index.d.ts +32 -416
- package/lib/types/index.js +1 -12
- package/package.json +1 -1
package/lib/outputs/lineItem.js
CHANGED
|
@@ -31,8 +31,7 @@ exports.lineItemsOutput = `
|
|
|
31
31
|
isSkiset,
|
|
32
32
|
criterias {
|
|
33
33
|
${criteriaValue_1.criteriaValueOutput}
|
|
34
|
-
}
|
|
35
|
-
includedInGiftBox
|
|
34
|
+
}
|
|
36
35
|
`;
|
|
37
36
|
exports.lineItemsWithoutFerryOutput = `
|
|
38
37
|
id,
|
|
@@ -56,6 +55,4 @@ exports.lineItemsWithoutFerryOutput = `
|
|
|
56
55
|
isSkiset,
|
|
57
56
|
criterias {
|
|
58
57
|
${criteriaValue_1.criteriaValueOutput}
|
|
59
|
-
}
|
|
60
|
-
includedInGiftBox
|
|
61
|
-
`;
|
|
58
|
+
}`;
|
package/lib/types/index.d.ts
CHANGED
|
@@ -63,13 +63,6 @@ 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
|
-
};
|
|
73
66
|
export type AddOccupantInput = {
|
|
74
67
|
cartItemID?: InputMaybe<Scalars["Int"]>;
|
|
75
68
|
occupantType?: InputMaybe<OccupantTypeEnum>;
|
|
@@ -205,51 +198,6 @@ export type AvailableRoomsOutput = {
|
|
|
205
198
|
__typename?: "AvailableRoomsOutput";
|
|
206
199
|
availableRooms?: Maybe<Array<Maybe<PlanningRoom>>>;
|
|
207
200
|
};
|
|
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
|
-
};
|
|
253
201
|
export type BookingCustomerDepositAccountInfosOutput = {
|
|
254
202
|
__typename?: "BookingCustomerDepositAccountInfosOutput";
|
|
255
203
|
customerDepositAccountInfos?: Maybe<Array<Maybe<CustomerDepositAccountInfo>>>;
|
|
@@ -302,6 +250,14 @@ export type BusinessActor = {
|
|
|
302
250
|
id?: Maybe<Scalars["Int"]>;
|
|
303
251
|
label?: Maybe<Scalars["String"]>;
|
|
304
252
|
};
|
|
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
|
+
};
|
|
305
261
|
export type CalendarPeriod = {
|
|
306
262
|
__typename?: "CalendarPeriod";
|
|
307
263
|
color?: Maybe<Scalars["String"]>;
|
|
@@ -344,7 +300,6 @@ export type Car = {
|
|
|
344
300
|
};
|
|
345
301
|
export type Cart = {
|
|
346
302
|
__typename?: "Cart";
|
|
347
|
-
extraSales?: Maybe<Array<Maybe<ExtraSale>>>;
|
|
348
303
|
fromFastCheckinCheckout?: Maybe<Scalars["Boolean"]>;
|
|
349
304
|
id?: Maybe<Scalars["Int"]>;
|
|
350
305
|
reservations?: Maybe<Array<Maybe<CustomerBooking>>>;
|
|
@@ -379,20 +334,6 @@ export type CartPaymentPlansOutput = {
|
|
|
379
334
|
__typename?: "CartPaymentPlansOutput";
|
|
380
335
|
cart?: Maybe<Cart>;
|
|
381
336
|
};
|
|
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
|
-
};
|
|
396
337
|
export type ChangePasswordInput = {
|
|
397
338
|
confirmPassword: Scalars["String"];
|
|
398
339
|
password: Scalars["String"];
|
|
@@ -450,6 +391,16 @@ export type ClientType = {
|
|
|
450
391
|
id: Scalars["Int"];
|
|
451
392
|
label?: Maybe<Scalars["String"]>;
|
|
452
393
|
};
|
|
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
|
+
};
|
|
453
404
|
export type ConfirmFastCheckoutInput = {
|
|
454
405
|
cartItemID?: InputMaybe<Scalars["Int"]>;
|
|
455
406
|
confirmFastCheckout?: InputMaybe<Scalars["Boolean"]>;
|
|
@@ -573,7 +524,6 @@ export type Criterias = {
|
|
|
573
524
|
nbChildren2?: InputMaybe<Scalars["Int"]>;
|
|
574
525
|
nbDays?: InputMaybe<Scalars["Int"]>;
|
|
575
526
|
noCounterProposal?: InputMaybe<Scalars["Boolean"]>;
|
|
576
|
-
ownerLeaseId?: InputMaybe<Scalars["Int"]>;
|
|
577
527
|
partnerPrivilegeCardID?: InputMaybe<Scalars["Int"]>;
|
|
578
528
|
privilegeCardID?: InputMaybe<Scalars["Int"]>;
|
|
579
529
|
propertyIds?: InputMaybe<Array<InputMaybe<Scalars["Int"]>>>;
|
|
@@ -582,7 +532,6 @@ export type Criterias = {
|
|
|
582
532
|
roomType?: InputMaybe<Scalars["String"]>;
|
|
583
533
|
sortString?: InputMaybe<Scalars["String"]>;
|
|
584
534
|
startDate?: InputMaybe<Scalars["Date"]>;
|
|
585
|
-
stayCreditId?: InputMaybe<Scalars["Int"]>;
|
|
586
535
|
};
|
|
587
536
|
export type CriteriasPort = {
|
|
588
537
|
arrivalPortName: Scalars["String"];
|
|
@@ -617,10 +566,6 @@ export type CurrentCustomerAccountOutput = {
|
|
|
617
566
|
__typename?: "CurrentCustomerAccountOutput";
|
|
618
567
|
service?: Maybe<Service>;
|
|
619
568
|
};
|
|
620
|
-
export type CurrentOwnerAccountOutput = {
|
|
621
|
-
__typename?: "CurrentOwnerAccountOutput";
|
|
622
|
-
service?: Maybe<Service>;
|
|
623
|
-
};
|
|
624
569
|
export type CustomerAccountInput = {
|
|
625
570
|
account?: InputMaybe<AccountInput>;
|
|
626
571
|
address?: InputMaybe<CustomerAddressInput>;
|
|
@@ -712,7 +657,6 @@ export type CustomerBookingSubStatus = {
|
|
|
712
657
|
};
|
|
713
658
|
export type CustomerBookingsInput = {
|
|
714
659
|
bookingIds?: InputMaybe<Array<InputMaybe<Scalars["Int"]>>>;
|
|
715
|
-
campaignCode?: InputMaybe<Scalars["String"]>;
|
|
716
660
|
canceled?: InputMaybe<Scalars["Boolean"]>;
|
|
717
661
|
estimate?: InputMaybe<Scalars["Boolean"]>;
|
|
718
662
|
option?: InputMaybe<Scalars["Boolean"]>;
|
|
@@ -817,14 +761,6 @@ export type DiscountCodeOutput = {
|
|
|
817
761
|
__typename?: "DiscountCodeOutput";
|
|
818
762
|
cart?: Maybe<Cart>;
|
|
819
763
|
};
|
|
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
|
-
};
|
|
828
764
|
export type Distribution = {
|
|
829
765
|
__typename?: "Distribution";
|
|
830
766
|
roomNumbers?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
@@ -849,13 +785,6 @@ export type ExpireSessionOutput = {
|
|
|
849
785
|
__typename?: "ExpireSessionOutput";
|
|
850
786
|
isExpired?: Maybe<Scalars["Boolean"]>;
|
|
851
787
|
};
|
|
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
|
-
};
|
|
859
788
|
export type FacebookLoginInput = {
|
|
860
789
|
facebookID: Scalars["String"];
|
|
861
790
|
};
|
|
@@ -1071,15 +1000,6 @@ export type Heights = {
|
|
|
1071
1000
|
id?: Maybe<Scalars["Int"]>;
|
|
1072
1001
|
value?: Maybe<Scalars["String"]>;
|
|
1073
1002
|
};
|
|
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
|
-
};
|
|
1083
1003
|
export declare enum InputType {
|
|
1084
1004
|
Checkbox = "CHECKBOX",
|
|
1085
1005
|
Enum = "ENUM",
|
|
@@ -1112,7 +1032,6 @@ export type Lineitem = {
|
|
|
1112
1032
|
ferryBooking?: Maybe<FerryBooking>;
|
|
1113
1033
|
guiid?: Maybe<Scalars["Int"]>;
|
|
1114
1034
|
id?: Maybe<Scalars["Int"]>;
|
|
1115
|
-
includedInGiftBox?: Maybe<Scalars["Boolean"]>;
|
|
1116
1035
|
isSkiset?: Maybe<Scalars["Boolean"]>;
|
|
1117
1036
|
label?: Maybe<Scalars["String"]>;
|
|
1118
1037
|
preReserved?: Maybe<Scalars["Boolean"]>;
|
|
@@ -1254,7 +1173,6 @@ export type MoneyInput = {
|
|
|
1254
1173
|
export type Mutation = {
|
|
1255
1174
|
__typename?: "Mutation";
|
|
1256
1175
|
addBaby?: Maybe<AddBabyOutput>;
|
|
1257
|
-
addBankAccount?: Maybe<BankAccountOutput>;
|
|
1258
1176
|
addCustomerDepositAccountPayments?: Maybe<CustomerDepositAccountPaymentsOutput>;
|
|
1259
1177
|
addCustomerDepositAccountPaymentsFromPaymentLink?: Maybe<CustomerDepositAccountPaymentsOutputFromPaymentLink>;
|
|
1260
1178
|
addDiscountCode?: Maybe<DiscountCodeOutput>;
|
|
@@ -1272,13 +1190,10 @@ export type Mutation = {
|
|
|
1272
1190
|
* ### LANG_gql_actions
|
|
1273
1191
|
*/
|
|
1274
1192
|
addPartnerToCart?: Maybe<PartnerToCartOutput>;
|
|
1275
|
-
addProductProposalToCart?: Maybe<ProductProposalToCartOutput>;
|
|
1276
1193
|
addProductToBooking?: Maybe<ProductToBookingOutput>;
|
|
1277
1194
|
addProductToOccupant?: Maybe<ProductToOccupantOutput>;
|
|
1278
1195
|
assignRoom?: Maybe<AssignRoomOutput>;
|
|
1279
1196
|
cancelFerryBooking?: Maybe<CancelFerryBookingOutput>;
|
|
1280
|
-
changeOwnerInvoiceStatusToSent?: Maybe<ChangeOwnerInvoiceStatusToSentOutput>;
|
|
1281
|
-
changeOwnerLeasesBankAccount?: Maybe<ChangeOwnerLeasesBankAccountOutput>;
|
|
1282
1197
|
changePassword?: Maybe<ChangePasswordOutput>;
|
|
1283
1198
|
chooseFerryProposal?: Maybe<ChooseFerryProposalOutput>;
|
|
1284
1199
|
chooseProposalFromKeys?: Maybe<ChooseProposalFromKeysOutput>;
|
|
@@ -1288,7 +1203,6 @@ export type Mutation = {
|
|
|
1288
1203
|
createServiceCustomerAccount?: Maybe<CustomerAccountOutput>;
|
|
1289
1204
|
disableEnablePartnerCustomerAccount?: Maybe<CustomerAccountOutput>;
|
|
1290
1205
|
disableServiceCustomerAccount?: Maybe<CustomerAccountOutput>;
|
|
1291
|
-
disputeOwnerInvoice?: Maybe<DisputeOwnerInvoiceOutput>;
|
|
1292
1206
|
doFastCheckin?: Maybe<DoFastCheckinOutput>;
|
|
1293
1207
|
doFastCheckout?: Maybe<DoFastCheckoutOutput>;
|
|
1294
1208
|
expireSession?: Maybe<ExpireSessionOutput>;
|
|
@@ -1307,14 +1221,12 @@ export type Mutation = {
|
|
|
1307
1221
|
redirectPaymentGatewayForCart?: Maybe<PaymentGatewayForCartOutput>;
|
|
1308
1222
|
redirectPaymentGatewayForInstalment?: Maybe<PaymentGatewayForInstalmentOutput>;
|
|
1309
1223
|
redirectPaymentGatewayFromPaymentLink?: Maybe<PaymentGatewayFromPaymentLinkOutput>;
|
|
1310
|
-
removeBankAccount?: Maybe<RemoveBankAccountsOutput>;
|
|
1311
1224
|
removeBookingFromCart?: Maybe<RemoveBookingFromCartOutput>;
|
|
1312
1225
|
removeCartPayments?: Maybe<RemoveCartPaymentsOutput>;
|
|
1313
1226
|
removeCustomerAccount?: Maybe<RemoveCustomerAccountOutput>;
|
|
1314
1227
|
removeDiscountCode?: Maybe<RemoveDiscountCodeOutput>;
|
|
1315
1228
|
removeGiftCode?: Maybe<RemoveGiftCodeOutput>;
|
|
1316
1229
|
removeOccupant?: Maybe<RemoveOccupantOutput>;
|
|
1317
|
-
removeProductProposalToCart?: Maybe<ProductProposalToCartOutput>;
|
|
1318
1230
|
removeStay?: Maybe<RemoveStayOutput>;
|
|
1319
1231
|
resetCart?: Maybe<ResetCartOutput>;
|
|
1320
1232
|
resetPendingFerryBooking?: Maybe<ResetPendingFerryBookingOutput>;
|
|
@@ -1335,30 +1247,23 @@ export type Mutation = {
|
|
|
1335
1247
|
updateFerryTravelersInformation?: Maybe<UpdateFerryTravelersInformationOutput>;
|
|
1336
1248
|
updateOccupant?: Maybe<OccupantOutput>;
|
|
1337
1249
|
updateOccupantSkisetMeasurements?: Maybe<UpdateOccupantSkisetMeasurementsOutput>;
|
|
1338
|
-
updateOwnerAccount?: Maybe<CustomerAccountOutput>;
|
|
1339
1250
|
updatePartnerAccount?: Maybe<PartnerOutput>;
|
|
1340
1251
|
updatePartnerCustomerAccount?: Maybe<CustomerAccountOutput>;
|
|
1341
1252
|
updatePartnerPaymentPlans?: Maybe<PartnerPaymentPlansOutput>;
|
|
1342
1253
|
updatePayerPaymentPlans?: Maybe<PayerPaymentPlansOutput>;
|
|
1343
1254
|
updatePrimaryOccupant?: Maybe<PrimaryOccupantOutput>;
|
|
1344
1255
|
updateProductCriterias?: Maybe<UpdateBookingCriteriasOutput>;
|
|
1345
|
-
updateProductInfosForBenificiary?: Maybe<UpdateProductInfosForBenificiaryOutput>;
|
|
1346
1256
|
updateRoomFromMap?: Maybe<RoomFromMapOutput>;
|
|
1347
1257
|
updateServiceCustomerAccount?: Maybe<CustomerAccountOutput>;
|
|
1348
1258
|
updateStayTime?: Maybe<StayTimeOutput>;
|
|
1349
1259
|
updateTotalOccupants?: Maybe<TotalOccupantsOutput>;
|
|
1350
1260
|
uploadFiles?: Maybe<UploadFilesOutput>;
|
|
1351
1261
|
validateLyraPayment?: Maybe<LyraPaymentValidationOutput>;
|
|
1352
|
-
validateOwnerInvoices?: Maybe<ValidateOwnerInvoicesOutput>;
|
|
1353
1262
|
};
|
|
1354
1263
|
export type MutationAddBabyArgs = {
|
|
1355
1264
|
input: AddBabyInput;
|
|
1356
1265
|
session: Session;
|
|
1357
1266
|
};
|
|
1358
|
-
export type MutationAddBankAccountArgs = {
|
|
1359
|
-
input?: InputMaybe<AddBankAccountInput>;
|
|
1360
|
-
session: Session;
|
|
1361
|
-
};
|
|
1362
1267
|
export type MutationAddCustomerDepositAccountPaymentsArgs = {
|
|
1363
1268
|
input?: InputMaybe<CustomerDepositAccountPaymentsInput>;
|
|
1364
1269
|
session: Session;
|
|
@@ -1395,10 +1300,6 @@ export type MutationAddPartnerToCartArgs = {
|
|
|
1395
1300
|
input: PartnerToCartInput;
|
|
1396
1301
|
session: Session;
|
|
1397
1302
|
};
|
|
1398
|
-
export type MutationAddProductProposalToCartArgs = {
|
|
1399
|
-
input: ProductProposalToCartInput;
|
|
1400
|
-
session: Session;
|
|
1401
|
-
};
|
|
1402
1303
|
export type MutationAddProductToBookingArgs = {
|
|
1403
1304
|
input: ProductToBookingInput;
|
|
1404
1305
|
session: Session;
|
|
@@ -1415,14 +1316,6 @@ export type MutationCancelFerryBookingArgs = {
|
|
|
1415
1316
|
input?: InputMaybe<CancelFerryBookingInput>;
|
|
1416
1317
|
session: Session;
|
|
1417
1318
|
};
|
|
1418
|
-
export type MutationChangeOwnerInvoiceStatusToSentArgs = {
|
|
1419
|
-
input: ChangeOwnerInvoiceStatusToSentInput;
|
|
1420
|
-
session: Session;
|
|
1421
|
-
};
|
|
1422
|
-
export type MutationChangeOwnerLeasesBankAccountArgs = {
|
|
1423
|
-
input: ChangeOwnerLeasesBankAccountInput;
|
|
1424
|
-
session: Session;
|
|
1425
|
-
};
|
|
1426
1319
|
export type MutationChangePasswordArgs = {
|
|
1427
1320
|
input: ChangePasswordInput;
|
|
1428
1321
|
session: Session;
|
|
@@ -1459,10 +1352,6 @@ export type MutationDisableServiceCustomerAccountArgs = {
|
|
|
1459
1352
|
input?: InputMaybe<DisableServiceCustomerAccountInput>;
|
|
1460
1353
|
session: Session;
|
|
1461
1354
|
};
|
|
1462
|
-
export type MutationDisputeOwnerInvoiceArgs = {
|
|
1463
|
-
input: DisputeOwnerInvoiceInput;
|
|
1464
|
-
session: Session;
|
|
1465
|
-
};
|
|
1466
1355
|
export type MutationDoFastCheckinArgs = {
|
|
1467
1356
|
input?: InputMaybe<DoFastCheckinInput>;
|
|
1468
1357
|
session: Session;
|
|
@@ -1533,10 +1422,6 @@ export type MutationRedirectPaymentGatewayFromPaymentLinkArgs = {
|
|
|
1533
1422
|
input?: InputMaybe<PaymentGatewayFromPaymentLinkInput>;
|
|
1534
1423
|
paymentLinkAuthenticationInput: PaymentLinkAuthenticationInput;
|
|
1535
1424
|
};
|
|
1536
|
-
export type MutationRemoveBankAccountArgs = {
|
|
1537
|
-
input?: InputMaybe<RemoveBankAccountInput>;
|
|
1538
|
-
session: Session;
|
|
1539
|
-
};
|
|
1540
1425
|
export type MutationRemoveBookingFromCartArgs = {
|
|
1541
1426
|
input?: InputMaybe<RemoveBookingFromCartInput>;
|
|
1542
1427
|
session: Session;
|
|
@@ -1558,10 +1443,6 @@ export type MutationRemoveOccupantArgs = {
|
|
|
1558
1443
|
input: RemoveOccupantInput;
|
|
1559
1444
|
session: Session;
|
|
1560
1445
|
};
|
|
1561
|
-
export type MutationRemoveProductProposalToCartArgs = {
|
|
1562
|
-
input: RemoveProductProposalToCartInput;
|
|
1563
|
-
session: Session;
|
|
1564
|
-
};
|
|
1565
1446
|
export type MutationRemoveStayArgs = {
|
|
1566
1447
|
input: RemoveStayInput;
|
|
1567
1448
|
session: Session;
|
|
@@ -1640,10 +1521,6 @@ export type MutationUpdateOccupantSkisetMeasurementsArgs = {
|
|
|
1640
1521
|
input: UpdateOccupantSkisetMeasurementsInput;
|
|
1641
1522
|
session: Session;
|
|
1642
1523
|
};
|
|
1643
|
-
export type MutationUpdateOwnerAccountArgs = {
|
|
1644
|
-
input?: InputMaybe<CustomerAccountInput>;
|
|
1645
|
-
session: Session;
|
|
1646
|
-
};
|
|
1647
1524
|
export type MutationUpdatePartnerAccountArgs = {
|
|
1648
1525
|
input?: InputMaybe<PartnerAccountInput>;
|
|
1649
1526
|
session: Session;
|
|
@@ -1668,10 +1545,6 @@ export type MutationUpdateProductCriteriasArgs = {
|
|
|
1668
1545
|
input: UpdateProductCriteriasInput;
|
|
1669
1546
|
session: Session;
|
|
1670
1547
|
};
|
|
1671
|
-
export type MutationUpdateProductInfosForBenificiaryArgs = {
|
|
1672
|
-
input: UpdateProductForBenificiaryInput;
|
|
1673
|
-
session: Session;
|
|
1674
|
-
};
|
|
1675
1548
|
export type MutationUpdateRoomFromMapArgs = {
|
|
1676
1549
|
input: RoomFromMapInput;
|
|
1677
1550
|
session: Session;
|
|
@@ -1696,10 +1569,6 @@ export type MutationValidateLyraPaymentArgs = {
|
|
|
1696
1569
|
input: LyraPaymentValidationInput;
|
|
1697
1570
|
session: Session;
|
|
1698
1571
|
};
|
|
1699
|
-
export type MutationValidateOwnerInvoicesArgs = {
|
|
1700
|
-
input: ValidateOwnerInvoicesInput;
|
|
1701
|
-
session: Session;
|
|
1702
|
-
};
|
|
1703
1572
|
export type MyLoginInput = {
|
|
1704
1573
|
email?: InputMaybe<Scalars["String"]>;
|
|
1705
1574
|
firstName?: InputMaybe<Scalars["String"]>;
|
|
@@ -1805,44 +1674,12 @@ export type Option = {
|
|
|
1805
1674
|
default?: Maybe<Scalars["Boolean"]>;
|
|
1806
1675
|
label?: Maybe<Scalars["String"]>;
|
|
1807
1676
|
};
|
|
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
|
-
};
|
|
1836
1677
|
export type OwnerLease = {
|
|
1837
1678
|
__typename?: "OwnerLease";
|
|
1838
|
-
bankAccount?: Maybe<BankAccount>;
|
|
1839
|
-
conventionId?: Maybe<Scalars["Int"]>;
|
|
1840
|
-
documents?: Maybe<Array<Maybe<OwnerDocument>>>;
|
|
1841
1679
|
etabId?: Maybe<Scalars["Int"]>;
|
|
1842
1680
|
etabLabel?: Maybe<Scalars["String"]>;
|
|
1843
1681
|
id?: Maybe<Scalars["Int"]>;
|
|
1844
1682
|
periods?: Maybe<Array<Maybe<OwnerLeasePeriod>>>;
|
|
1845
|
-
webLabel?: Maybe<Scalars["String"]>;
|
|
1846
1683
|
};
|
|
1847
1684
|
export type OwnerLeasePeriod = {
|
|
1848
1685
|
__typename?: "OwnerLeasePeriod";
|
|
@@ -1852,31 +1689,19 @@ export type OwnerLeasePeriod = {
|
|
|
1852
1689
|
export type OwnerLot = {
|
|
1853
1690
|
__typename?: "OwnerLot";
|
|
1854
1691
|
id?: Maybe<Scalars["Int"]>;
|
|
1855
|
-
invoices?: Maybe<Array<Maybe<OwnerInvoice>>>;
|
|
1856
1692
|
label?: Maybe<Scalars["String"]>;
|
|
1857
1693
|
roomNumbers?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
1858
|
-
type?: Maybe<Scalars["String"]>;
|
|
1859
1694
|
};
|
|
1860
1695
|
export type OwnerRoomPlanningDataInput = {
|
|
1861
1696
|
campaignCode: Scalars["String"];
|
|
1862
|
-
month
|
|
1697
|
+
month?: InputMaybe<Scalars["Int"]>;
|
|
1863
1698
|
ownerLotId: Scalars["Int"];
|
|
1864
|
-
year
|
|
1699
|
+
year?: InputMaybe<Scalars["Int"]>;
|
|
1865
1700
|
};
|
|
1866
1701
|
export type OwnerRoomPlanningDataOutput = {
|
|
1867
1702
|
__typename?: "OwnerRoomPlanningDataOutput";
|
|
1868
1703
|
calendarPeriods?: Maybe<Array<Maybe<CalendarPeriod>>>;
|
|
1869
1704
|
};
|
|
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
|
-
};
|
|
1880
1705
|
export type OwnerleasesOutput = {
|
|
1881
1706
|
__typename?: "OwnerleasesOutput";
|
|
1882
1707
|
leases?: Maybe<Array<Maybe<OwnerLease>>>;
|
|
@@ -2214,6 +2039,14 @@ export type ProductByCategory = {
|
|
|
2214
2039
|
categoryLabel?: Maybe<Scalars["String"]>;
|
|
2215
2040
|
products?: Maybe<Array<Maybe<Product>>>;
|
|
2216
2041
|
};
|
|
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
|
+
};
|
|
2217
2050
|
export type ProductCategoriesOutput = {
|
|
2218
2051
|
__typename?: "ProductCategoriesOutput";
|
|
2219
2052
|
productCategories?: Maybe<Array<Maybe<ProductCategory>>>;
|
|
@@ -2230,18 +2063,6 @@ export declare enum ProductDistributionType {
|
|
|
2230
2063
|
Occupant = "OCCUPANT",
|
|
2231
2064
|
Room = "ROOM"
|
|
2232
2065
|
}
|
|
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
|
-
};
|
|
2245
2066
|
export declare enum ProductOccupantApplication {
|
|
2246
2067
|
Everybody = "EVERYBODY",
|
|
2247
2068
|
EverybodyInRoom = "EVERYBODY_IN_ROOM",
|
|
@@ -2258,24 +2079,17 @@ export type ProductPropertiesOutput = {
|
|
|
2258
2079
|
};
|
|
2259
2080
|
export type ProductProposal = {
|
|
2260
2081
|
__typename?: "ProductProposal";
|
|
2261
|
-
|
|
2262
|
-
|
|
2082
|
+
desc?: Maybe<Scalars["String"]>;
|
|
2083
|
+
endDate?: Maybe<Scalars["Date"]>;
|
|
2263
2084
|
label?: Maybe<Scalars["String"]>;
|
|
2264
2085
|
productCode?: Maybe<Scalars["String"]>;
|
|
2265
2086
|
propertyId?: Maybe<Scalars["Int"]>;
|
|
2266
2087
|
proposalKey: Scalars["String"];
|
|
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>;
|
|
2088
|
+
startDate?: Maybe<Scalars["Date"]>;
|
|
2275
2089
|
};
|
|
2276
2090
|
export type ProductProposalsInput = {
|
|
2091
|
+
cmsCriteriaValue?: InputMaybe<CmsCriteriaValueInput>;
|
|
2277
2092
|
nbDays?: InputMaybe<Scalars["Int"]>;
|
|
2278
|
-
productSearchCriteriaInput?: InputMaybe<ProductSearchCriteriaInput>;
|
|
2279
2093
|
propertyId?: InputMaybe<Scalars["Int"]>;
|
|
2280
2094
|
selectedDate: Scalars["Date"];
|
|
2281
2095
|
};
|
|
@@ -2283,60 +2097,6 @@ export type ProductProposalsOutput = {
|
|
|
2283
2097
|
__typename?: "ProductProposalsOutput";
|
|
2284
2098
|
proposals?: Maybe<Array<Maybe<ProductProposal>>>;
|
|
2285
2099
|
};
|
|
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
|
-
};
|
|
2340
2100
|
export type ProductToBookingInput = {
|
|
2341
2101
|
cartItemID?: InputMaybe<Scalars["Int"]>;
|
|
2342
2102
|
productCode: Scalars["String"];
|
|
@@ -2482,7 +2242,6 @@ export type Query = {
|
|
|
2482
2242
|
getAvailForRoomTypes?: Maybe<AvailForRoomTypesOutput>;
|
|
2483
2243
|
getAvailableRoomFeatures?: Maybe<AvailableRoomFeaturesOutput>;
|
|
2484
2244
|
getAvailableRooms?: Maybe<AvailableRoomsOutput>;
|
|
2485
|
-
getBankAccounts?: Maybe<BankAccountsOutput>;
|
|
2486
2245
|
getBookingCustomerDepositAccountInfos?: Maybe<BookingCustomerDepositAccountInfosOutput>;
|
|
2487
2246
|
getBookingDocuments?: Maybe<BookingDocumentsOutput>;
|
|
2488
2247
|
getBookingPaymentPlans?: Maybe<PaymentPlansOutput>;
|
|
@@ -2500,7 +2259,6 @@ export type Query = {
|
|
|
2500
2259
|
*/
|
|
2501
2260
|
getCriteriaInformation?: Maybe<CriteriaInformationOutput>;
|
|
2502
2261
|
getCurrentCustomerAccount?: Maybe<CurrentCustomerAccountOutput>;
|
|
2503
|
-
getCurrentOwnerAccount?: Maybe<CurrentOwnerAccountOutput>;
|
|
2504
2262
|
getCustomerBookings?: Maybe<CustomerBookingsOutput>;
|
|
2505
2263
|
getCustomerCriterias?: Maybe<CustomerCriteriasOutput>;
|
|
2506
2264
|
getCustomerDepositAccounts?: Maybe<CustomerDepositAccountsOutput>;
|
|
@@ -2531,7 +2289,6 @@ export type Query = {
|
|
|
2531
2289
|
getOccupantsFromCurrentCustomer?: Maybe<OccupantsFromCurrentCustomerOutput>;
|
|
2532
2290
|
getOwnerLeases?: Maybe<OwnerleasesOutput>;
|
|
2533
2291
|
getOwnerRoomPlanningData?: Maybe<OwnerRoomPlanningDataOutput>;
|
|
2534
|
-
getOwnerServiceChargeInvoicesDocument?: Maybe<OwnerServiceChargeInvoicesDocumentOutput>;
|
|
2535
2292
|
getPartner?: Maybe<PartnerOutput>;
|
|
2536
2293
|
getPartnerCustomers?: Maybe<PartnerCustomerInfoOutput>;
|
|
2537
2294
|
getPaymentLinkInfos?: Maybe<PaymentLinkInfosOutput>;
|
|
@@ -2550,11 +2307,6 @@ export type Query = {
|
|
|
2550
2307
|
*/
|
|
2551
2308
|
getPrivilegeCardTypes?: Maybe<PrivilegeCardTypesOutput>;
|
|
2552
2309
|
getProductCategories?: Maybe<ProductCategoriesOutput>;
|
|
2553
|
-
getProductInfosForBenificiary?: Maybe<ProductInfosForBenificiaryOutput>;
|
|
2554
|
-
getProductProperties?: Maybe<ProductPropertiesOutput>;
|
|
2555
|
-
getProductProposals?: Maybe<ProductProposalsOutput>;
|
|
2556
|
-
getProductSearchCriterias?: Maybe<ProductSearchCriteriasOutput>;
|
|
2557
|
-
getProductSummaries?: Maybe<ProductSummariesOutput>;
|
|
2558
2310
|
getProperties?: Maybe<PropertiesOutput>;
|
|
2559
2311
|
getProposalByRoomTypes?: Maybe<ProposalByRoomTypesOutput>;
|
|
2560
2312
|
getProposals?: Maybe<ProposalsOutput>;
|
|
@@ -2580,10 +2332,8 @@ export type Query = {
|
|
|
2580
2332
|
*/
|
|
2581
2333
|
getSession?: Maybe<SessionOutput>;
|
|
2582
2334
|
getSkisetMeasurements?: Maybe<MeasurementsOutput>;
|
|
2583
|
-
getStayCredits?: Maybe<StayCreditsOutput>;
|
|
2584
2335
|
getTranslations?: Maybe<TranslationsOutput>;
|
|
2585
2336
|
getUserLanguage?: Maybe<UserLanguageOutput>;
|
|
2586
|
-
getVouchersFromCart?: Maybe<VouchersFromCartOutput>;
|
|
2587
2337
|
hasProductsForOccupant?: Maybe<ProductsForOccupantOutput>;
|
|
2588
2338
|
renewPassword?: Maybe<RenewPasswordOutput>;
|
|
2589
2339
|
requestBrochure?: Maybe<BrochureOutput>;
|
|
@@ -2632,10 +2382,6 @@ export type QueryGetAvailableRoomsArgs = {
|
|
|
2632
2382
|
session: Session;
|
|
2633
2383
|
};
|
|
2634
2384
|
/** test query */
|
|
2635
|
-
export type QueryGetBankAccountsArgs = {
|
|
2636
|
-
session: Session;
|
|
2637
|
-
};
|
|
2638
|
-
/** test query */
|
|
2639
2385
|
export type QueryGetBookingCustomerDepositAccountInfosArgs = {
|
|
2640
2386
|
session: Session;
|
|
2641
2387
|
};
|
|
@@ -2688,10 +2434,6 @@ export type QueryGetCurrentCustomerAccountArgs = {
|
|
|
2688
2434
|
session: Session;
|
|
2689
2435
|
};
|
|
2690
2436
|
/** test query */
|
|
2691
|
-
export type QueryGetCurrentOwnerAccountArgs = {
|
|
2692
|
-
session: Session;
|
|
2693
|
-
};
|
|
2694
|
-
/** test query */
|
|
2695
2437
|
export type QueryGetCustomerBookingsArgs = {
|
|
2696
2438
|
input?: InputMaybe<CustomerBookingsInput>;
|
|
2697
2439
|
session: Session;
|
|
@@ -2823,10 +2565,6 @@ export type QueryGetOwnerRoomPlanningDataArgs = {
|
|
|
2823
2565
|
session: Session;
|
|
2824
2566
|
};
|
|
2825
2567
|
/** test query */
|
|
2826
|
-
export type QueryGetOwnerServiceChargeInvoicesDocumentArgs = {
|
|
2827
|
-
session: Session;
|
|
2828
|
-
};
|
|
2829
|
-
/** test query */
|
|
2830
2568
|
export type QueryGetPartnerArgs = {
|
|
2831
2569
|
session: Session;
|
|
2832
2570
|
};
|
|
@@ -2870,29 +2608,6 @@ export type QueryGetProductCategoriesArgs = {
|
|
|
2870
2608
|
session: Session;
|
|
2871
2609
|
};
|
|
2872
2610
|
/** 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 */
|
|
2896
2611
|
export type QueryGetPropertiesArgs = {
|
|
2897
2612
|
authentication: AuthenticationInput;
|
|
2898
2613
|
input?: InputMaybe<PropertiesInput>;
|
|
@@ -2952,10 +2667,6 @@ export type QueryGetSkisetMeasurementsArgs = {
|
|
|
2952
2667
|
session: Session;
|
|
2953
2668
|
};
|
|
2954
2669
|
/** test query */
|
|
2955
|
-
export type QueryGetStayCreditsArgs = {
|
|
2956
|
-
session: Session;
|
|
2957
|
-
};
|
|
2958
|
-
/** test query */
|
|
2959
2670
|
export type QueryGetTranslationsArgs = {
|
|
2960
2671
|
input?: InputMaybe<TranslationsInput>;
|
|
2961
2672
|
session: Session;
|
|
@@ -2965,10 +2676,6 @@ export type QueryGetUserLanguageArgs = {
|
|
|
2965
2676
|
session: Session;
|
|
2966
2677
|
};
|
|
2967
2678
|
/** test query */
|
|
2968
|
-
export type QueryGetVouchersFromCartArgs = {
|
|
2969
|
-
session: Session;
|
|
2970
|
-
};
|
|
2971
|
-
/** test query */
|
|
2972
2679
|
export type QueryHasProductsForOccupantArgs = {
|
|
2973
2680
|
input?: InputMaybe<HasProductsForOccupantInput>;
|
|
2974
2681
|
session: Session;
|
|
@@ -2983,12 +2690,6 @@ export type QueryRequestBrochureArgs = {
|
|
|
2983
2690
|
input?: InputMaybe<BrochureInput>;
|
|
2984
2691
|
session: Session;
|
|
2985
2692
|
};
|
|
2986
|
-
export type RibInput = {
|
|
2987
|
-
accountNumber: Scalars["String"];
|
|
2988
|
-
bankCode: Scalars["String"];
|
|
2989
|
-
branchCode: Scalars["String"];
|
|
2990
|
-
ribKey: Scalars["String"];
|
|
2991
|
-
};
|
|
2992
2693
|
export type Relationship = {
|
|
2993
2694
|
__typename?: "Relationship";
|
|
2994
2695
|
id: Scalars["Int"];
|
|
@@ -2998,13 +2699,6 @@ export type RelationshipOutput = {
|
|
|
2998
2699
|
__typename?: "RelationshipOutput";
|
|
2999
2700
|
relationships?: Maybe<Array<Maybe<Relationship>>>;
|
|
3000
2701
|
};
|
|
3001
|
-
export type RemoveBankAccountInput = {
|
|
3002
|
-
bankAccountId: Scalars["Int"];
|
|
3003
|
-
};
|
|
3004
|
-
export type RemoveBankAccountsOutput = {
|
|
3005
|
-
__typename?: "RemoveBankAccountsOutput";
|
|
3006
|
-
removed?: Maybe<Scalars["Boolean"]>;
|
|
3007
|
-
};
|
|
3008
2702
|
export type RemoveBookingFromCartInput = {
|
|
3009
2703
|
bookingCartItemID: Scalars["Int"];
|
|
3010
2704
|
};
|
|
@@ -3047,9 +2741,6 @@ export type RemoveOccupantOutput = {
|
|
|
3047
2741
|
__typename?: "RemoveOccupantOutput";
|
|
3048
2742
|
cart?: Maybe<Cart>;
|
|
3049
2743
|
};
|
|
3050
|
-
export type RemoveProductProposalToCartInput = {
|
|
3051
|
-
lineitemGuiid: Scalars["Int"];
|
|
3052
|
-
};
|
|
3053
2744
|
export type RemoveStayInput = {
|
|
3054
2745
|
lastStayRemoveAllFerryConfirmed?: InputMaybe<Scalars["Boolean"]>;
|
|
3055
2746
|
stayGuiid: Scalars["Int"];
|
|
@@ -3065,13 +2756,6 @@ export type RenewPasswordOutput = {
|
|
|
3065
2756
|
__typename?: "RenewPasswordOutput";
|
|
3066
2757
|
renewPasswordDemand?: Maybe<Scalars["Boolean"]>;
|
|
3067
2758
|
};
|
|
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
|
-
};
|
|
3075
2759
|
export type ResalysError = {
|
|
3076
2760
|
__typename?: "ResalysError";
|
|
3077
2761
|
code?: Maybe<Scalars["Int"]>;
|
|
@@ -3093,13 +2777,6 @@ export type ResetPendingFerryBookingOutput = {
|
|
|
3093
2777
|
__typename?: "ResetPendingFerryBookingOutput";
|
|
3094
2778
|
ferryBooking?: Maybe<FerryBooking>;
|
|
3095
2779
|
};
|
|
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
|
-
};
|
|
3103
2780
|
export type RoomFeature = {
|
|
3104
2781
|
__typename?: "RoomFeature";
|
|
3105
2782
|
categoryLabel?: Maybe<Scalars["String"]>;
|
|
@@ -3232,14 +2909,6 @@ export type Service = {
|
|
|
3232
2909
|
serviceLanguage?: Maybe<Language>;
|
|
3233
2910
|
servicesList?: Maybe<Array<Maybe<Service>>>;
|
|
3234
2911
|
};
|
|
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
|
-
};
|
|
3243
2912
|
export type ServiceRelationship = {
|
|
3244
2913
|
relationship: Scalars["Int"];
|
|
3245
2914
|
serviceId: Scalars["Int"];
|
|
@@ -3286,24 +2955,6 @@ export type Stay = {
|
|
|
3286
2955
|
startDate?: Maybe<Scalars["Date"]>;
|
|
3287
2956
|
totalAmount?: Maybe<Amount>;
|
|
3288
2957
|
};
|
|
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
|
-
};
|
|
3307
2958
|
export type StayMapInfos = {
|
|
3308
2959
|
__typename?: "StayMapInfos";
|
|
3309
2960
|
hasNoAvailableRoom?: Maybe<Scalars["Boolean"]>;
|
|
@@ -3407,12 +3058,6 @@ export type UnlockBookingOutput = {
|
|
|
3407
3058
|
__typename?: "UnlockBookingOutput";
|
|
3408
3059
|
bookingUnlocked?: Maybe<Scalars["Boolean"]>;
|
|
3409
3060
|
};
|
|
3410
|
-
export type UpdateBookingCriteriasFromOwnerLeaseInput = {
|
|
3411
|
-
ownerLeaseId: Scalars["Int"];
|
|
3412
|
-
};
|
|
3413
|
-
export type UpdateBookingCriteriasFromStatCreditInput = {
|
|
3414
|
-
stayCreditId: Scalars["Int"];
|
|
3415
|
-
};
|
|
3416
3061
|
export type UpdateBookingCriteriasInput = {
|
|
3417
3062
|
cartItemID?: InputMaybe<Scalars["Int"]>;
|
|
3418
3063
|
criterias?: InputMaybe<Array<InputMaybe<CriteriaValueInput>>>;
|
|
@@ -3470,19 +3115,6 @@ export type UpdateProductCriteriasInput = {
|
|
|
3470
3115
|
criterias?: InputMaybe<Array<InputMaybe<CriteriaValueInput>>>;
|
|
3471
3116
|
lineitemGUIID: Scalars["Int"];
|
|
3472
3117
|
};
|
|
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
|
-
};
|
|
3486
3118
|
export type UpdateServiceCustomerAccountInput = {
|
|
3487
3119
|
birthDate?: InputMaybe<Scalars["Date"]>;
|
|
3488
3120
|
civility?: InputMaybe<Scalars["String"]>;
|
|
@@ -3536,13 +3168,6 @@ export type ValidLoginOutput = {
|
|
|
3536
3168
|
__typename?: "ValidLoginOutput";
|
|
3537
3169
|
valid?: Maybe<Scalars["Boolean"]>;
|
|
3538
3170
|
};
|
|
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
|
-
};
|
|
3546
3171
|
export type Vehicle = {
|
|
3547
3172
|
__typename?: "Vehicle";
|
|
3548
3173
|
additionalHeight?: Maybe<Scalars["Float"]>;
|
|
@@ -3564,15 +3189,6 @@ export type VehicleInfo = {
|
|
|
3564
3189
|
fuel?: InputMaybe<Scalars["String"]>;
|
|
3565
3190
|
licensePlate?: InputMaybe<Scalars["String"]>;
|
|
3566
3191
|
};
|
|
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
|
-
};
|
|
3576
3192
|
/**
|
|
3577
3193
|
* LANG_gql_WeeklyCriterias
|
|
3578
3194
|
* LANG_gql_WeeklyCriterias_2
|
package/lib/types/index.js
CHANGED
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SkisetMeasureType = exports.ProductOccupantApplication = exports.
|
|
4
|
-
var BankAccountType;
|
|
5
|
-
(function (BankAccountType) {
|
|
6
|
-
BankAccountType["Iban"] = "IBAN";
|
|
7
|
-
BankAccountType["Rib"] = "RIB";
|
|
8
|
-
})(BankAccountType = exports.BankAccountType || (exports.BankAccountType = {}));
|
|
3
|
+
exports.SkisetMeasureType = exports.ProductOccupantApplication = exports.ProductDistributionType = exports.PaymentdueType = exports.OccupantTypeEnum = exports.LyraPaymentValidatationStatus = exports.InputType = exports.BookingStatus = void 0;
|
|
9
4
|
var BookingStatus;
|
|
10
5
|
(function (BookingStatus) {
|
|
11
6
|
BookingStatus["Estimate"] = "ESTIMATE";
|
|
@@ -43,12 +38,6 @@ var ProductDistributionType;
|
|
|
43
38
|
ProductDistributionType["Occupant"] = "OCCUPANT";
|
|
44
39
|
ProductDistributionType["Room"] = "ROOM";
|
|
45
40
|
})(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 = {}));
|
|
52
41
|
var ProductOccupantApplication;
|
|
53
42
|
(function (ProductOccupantApplication) {
|
|
54
43
|
ProductOccupantApplication["Everybody"] = "EVERYBODY";
|