rsl-api-106 106.291.1 → 106.291.2

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.
Files changed (48) hide show
  1. package/lib/mutations/addBankAccount.d.ts +1 -0
  2. package/lib/mutations/addBankAccount.js +19 -0
  3. package/lib/mutations/changeOwnerInvoiceStatusToSent.d.ts +1 -0
  4. package/lib/mutations/changeOwnerInvoiceStatusToSent.js +19 -0
  5. package/lib/mutations/changeOwnerLeasesBankAccount.d.ts +1 -0
  6. package/lib/mutations/changeOwnerLeasesBankAccount.js +19 -0
  7. package/lib/mutations/disputeOwnerInvoice.d.ts +1 -0
  8. package/lib/mutations/disputeOwnerInvoice.js +19 -0
  9. package/lib/mutations/index.d.ts +8 -1
  10. package/lib/mutations/index.js +15 -1
  11. package/lib/mutations/removeBankAccount.d.ts +1 -0
  12. package/lib/mutations/removeBankAccount.js +16 -0
  13. package/lib/mutations/updateOwnerAccount.d.ts +1 -0
  14. package/lib/mutations/updateOwnerAccount.js +19 -0
  15. package/lib/mutations/validateOwnerInvoices.d.ts +1 -0
  16. package/lib/mutations/validateOwnerInvoices.js +19 -0
  17. package/lib/outputs/bank.d.ts +1 -0
  18. package/lib/outputs/bank.js +16 -0
  19. package/lib/outputs/bankAccount.d.ts +1 -0
  20. package/lib/outputs/bankAccount.js +21 -0
  21. package/lib/outputs/iban.d.ts +1 -0
  22. package/lib/outputs/iban.js +7 -0
  23. package/lib/outputs/ownerDocument.d.ts +1 -0
  24. package/lib/outputs/ownerDocument.js +8 -0
  25. package/lib/outputs/ownerInvoice.d.ts +1 -0
  26. package/lib/outputs/ownerInvoice.js +29 -0
  27. package/lib/outputs/ownerInvoiceDocument.d.ts +1 -0
  28. package/lib/outputs/ownerInvoiceDocument.js +8 -0
  29. package/lib/outputs/ownerLease.js +8 -0
  30. package/lib/outputs/ownerLot.d.ts +1 -1
  31. package/lib/outputs/ownerLot.js +6 -1
  32. package/lib/outputs/ownerServiceChargeInvoiceDocument.d.ts +1 -0
  33. package/lib/outputs/ownerServiceChargeInvoiceDocument.js +8 -0
  34. package/lib/outputs/rentReceipt.d.ts +1 -0
  35. package/lib/outputs/rentReceipt.js +9 -0
  36. package/lib/outputs/rib.d.ts +1 -0
  37. package/lib/outputs/rib.js +9 -0
  38. package/lib/queries/getBankAccounts.d.ts +1 -0
  39. package/lib/queries/getBankAccounts.js +18 -0
  40. package/lib/queries/getCurrentOwnerAccount.d.ts +1 -0
  41. package/lib/queries/getCurrentOwnerAccount.js +18 -0
  42. package/lib/queries/getOwnerServiceChargeInvoicesDocument.d.ts +1 -0
  43. package/lib/queries/getOwnerServiceChargeInvoicesDocument.js +18 -0
  44. package/lib/queries/index.d.ts +4 -1
  45. package/lib/queries/index.js +7 -1
  46. package/lib/types/index.d.ts +219 -2
  47. package/lib/types/index.js +6 -1
  48. package/package.json +1 -1
@@ -0,0 +1 @@
1
+ export declare const addBankAccountMutation: () => string;
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.addBankAccountMutation = void 0;
4
+ const bankAccount_1 = require("../outputs/bankAccount");
5
+ const addBankAccountMutation = () => {
6
+ return `
7
+ query addBankAccount($session: Session!, $input: AddBankAccountInput) {
8
+ addBankAccount(
9
+ session: $session,
10
+ input: $input
11
+ ) {
12
+ bankAccount {
13
+ ${bankAccount_1.bankAccountOutput}
14
+ }
15
+ }
16
+ }
17
+ `;
18
+ };
19
+ exports.addBankAccountMutation = addBankAccountMutation;
@@ -0,0 +1 @@
1
+ export declare const changeOwnerInvoiceStatusToSentMutation: () => string;
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.changeOwnerInvoiceStatusToSentMutation = void 0;
4
+ const ownerInvoice_1 = require("../outputs/ownerInvoice");
5
+ const changeOwnerInvoiceStatusToSentMutation = () => {
6
+ return `
7
+ query changeOwnerInvoiceStatusToSent($session: Session!, $input: ChangeOwnerInvoiceStatusToSentInput!) {
8
+ changeOwnerInvoiceStatusToSent(
9
+ session: $session,
10
+ input: $input
11
+ ) {
12
+ invoices {
13
+ ${ownerInvoice_1.ownerInvoiceOutput}
14
+ }
15
+ }
16
+ }
17
+ `;
18
+ };
19
+ exports.changeOwnerInvoiceStatusToSentMutation = changeOwnerInvoiceStatusToSentMutation;
@@ -0,0 +1 @@
1
+ export declare const changeOwnerLeasesBankAccountMutation: () => string;
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.changeOwnerLeasesBankAccountMutation = void 0;
4
+ const ownerLease_1 = require("../outputs/ownerLease");
5
+ const changeOwnerLeasesBankAccountMutation = () => {
6
+ return `
7
+ query changeOwnerLeasesBankAccount($session: Session!, $input: ChangeOwnerLeasesBankAccountInput!) {
8
+ changeOwnerLeasesBankAccount(
9
+ session: $session,
10
+ input: $input
11
+ ) {
12
+ leases {
13
+ ${ownerLease_1.ownerLeaseOutput}
14
+ }
15
+ }
16
+ }
17
+ `;
18
+ };
19
+ exports.changeOwnerLeasesBankAccountMutation = changeOwnerLeasesBankAccountMutation;
@@ -0,0 +1 @@
1
+ export declare const disputeOwnerInvoiceMutation: () => string;
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.disputeOwnerInvoiceMutation = void 0;
4
+ const ownerInvoice_1 = require("../outputs/ownerInvoice");
5
+ const disputeOwnerInvoiceMutation = () => {
6
+ return `
7
+ query disputeOwnerInvoice($session: Session!, $input: DisputeOwnerInvoiceInput!) {
8
+ disputeOwnerInvoice(
9
+ session: $session,
10
+ input: $input
11
+ ) {
12
+ invoice {
13
+ ${ownerInvoice_1.ownerInvoiceOutput}
14
+ }
15
+ }
16
+ }
17
+ `;
18
+ };
19
+ exports.disputeOwnerInvoiceMutation = disputeOwnerInvoiceMutation;
@@ -77,4 +77,11 @@ import { generateLyraFormTokenMutation } from "./generateLyraFormToken";
77
77
  import { redirectPaymentGatewayForAccountMutation } from "./redirectPaymentGatewayForAccount";
78
78
  import { generateSepteoPaymentsSessionMutation } from "./generateSepteoPaymentsSession";
79
79
  import { saveSepteoPaymentsTransactionMutation } from "./saveSepteoPaymentsTransaction";
80
- export { addBabyMutation, addCustomerDepositAccountPaymentsMutation, addDiscountCodeMutation, addGiftCodeMutation, addObservationMutation, addOccupantMutation, addPartnerToCartMutation, addProductToBookingMutation, addProductToOccupantMutation, chooseProposalFromKeysMutation, confirmFastCheckoutMutation, createCustomerAccountMutation, doFastCheckinMutation, doFastCheckoutMutation, facebookLoginMutation, loginMutation, loginAnyCustomerTypeMutation, loginETOModeMutation, loginPartnerMutation, logoutMutation, redirectPaymentGatewayForAmountMutation, redirectPaymentGatewayForCartMutation, redirectPaymentGatewayForInstalmentMutation, removeBookingFromCartMutation, removeCartPaymentsMutation, removeCustomerAccountMutation, removeDiscountCodeMutation, removeGiftCodeMutation, removeOccupantMutation, removeStayMutation, resetCartMutation, saveCartMutation, switchToPartnerConventionMutation, updateCartPaymentMethodMutation, updateCartPaymentPlansMutation, updateCustomerAccountMutation, updateCustomerBookingMutation, updateOccupantMutation, updatePartnerPaymentPlansMutation, updatePayerPaymentPlansMutation, updateTotalOccupantsMutation, updateRoomFromMapMutation, updatePrimaryOccupantMutation, updateStayTimeMutation, loginHash256Mutation, expireSessionMutation, unlockBookingMutation, updateBookingCriteriasMutation, changePasswordMutation, updateOccupantSkisetMeasurementsMutation, payOnStoredCreditCardMutation, setSessionLanguageMutation, addFidelityPointToProductMutation, chooseFerryProposalMutation, updateFerryAccommodationsMutation, updateFerryTravelersInformationMutation, saveFerryBookingMutation, cancelFerryBookingMutation, updateFerryBookingMutation, resetPendingFerryBookingMutation, updatePartnerAccountMutation, chooseRoundTripProposalsMutation, createServiceCustomerAccountMutation, updateServiceCustomerAccountMutation, disableServiceCustomerAccountMutation, addPartnerCustomerAccountMutation, disableEnablePartnerCustomerAccountMutation, validateLyraPaymentMutation, uploadFilesMutation, assignRoomMutation, unassignRoomMutation, updateProductCriteriasMutation, addCustomerDepositAccountPaymentsFromPaymentLinkMutation, redirectPaymentGatewayFromPaymentLinkMutation, updatePartnerCustomerAccountMutation, generateLyraFormTokenMutation, redirectPaymentGatewayForAccountMutation, generateSepteoPaymentsSessionMutation, saveSepteoPaymentsTransactionMutation, };
80
+ import { updateOwnerAccountMutation } from "./updateOwnerAccount";
81
+ import { removeBankAccountMutation } from "./removeBankAccount";
82
+ import { addBankAccountMutation } from "./addBankAccount";
83
+ import { changeOwnerLeasesBankAccountMutation } from "./changeOwnerLeasesBankAccount";
84
+ import { changeOwnerInvoiceStatusToSentMutation } from "./changeOwnerInvoiceStatusToSent";
85
+ import { validateOwnerInvoicesMutation } from "./validateOwnerInvoices";
86
+ import { disputeOwnerInvoiceMutation } from "./disputeOwnerInvoice";
87
+ export { addBabyMutation, addCustomerDepositAccountPaymentsMutation, addDiscountCodeMutation, addGiftCodeMutation, addObservationMutation, addOccupantMutation, addPartnerToCartMutation, addProductToBookingMutation, addProductToOccupantMutation, chooseProposalFromKeysMutation, confirmFastCheckoutMutation, createCustomerAccountMutation, doFastCheckinMutation, doFastCheckoutMutation, facebookLoginMutation, loginMutation, loginAnyCustomerTypeMutation, loginETOModeMutation, loginPartnerMutation, logoutMutation, redirectPaymentGatewayForAmountMutation, redirectPaymentGatewayForCartMutation, redirectPaymentGatewayForInstalmentMutation, removeBookingFromCartMutation, removeCartPaymentsMutation, removeCustomerAccountMutation, removeDiscountCodeMutation, removeGiftCodeMutation, removeOccupantMutation, removeStayMutation, resetCartMutation, saveCartMutation, switchToPartnerConventionMutation, updateCartPaymentMethodMutation, updateCartPaymentPlansMutation, updateCustomerAccountMutation, updateCustomerBookingMutation, updateOccupantMutation, updatePartnerPaymentPlansMutation, updatePayerPaymentPlansMutation, updateTotalOccupantsMutation, updateRoomFromMapMutation, updatePrimaryOccupantMutation, updateStayTimeMutation, loginHash256Mutation, expireSessionMutation, unlockBookingMutation, updateBookingCriteriasMutation, changePasswordMutation, updateOccupantSkisetMeasurementsMutation, payOnStoredCreditCardMutation, setSessionLanguageMutation, addFidelityPointToProductMutation, chooseFerryProposalMutation, updateFerryAccommodationsMutation, updateFerryTravelersInformationMutation, saveFerryBookingMutation, cancelFerryBookingMutation, updateFerryBookingMutation, resetPendingFerryBookingMutation, updatePartnerAccountMutation, chooseRoundTripProposalsMutation, createServiceCustomerAccountMutation, updateServiceCustomerAccountMutation, disableServiceCustomerAccountMutation, addPartnerCustomerAccountMutation, disableEnablePartnerCustomerAccountMutation, validateLyraPaymentMutation, uploadFilesMutation, assignRoomMutation, unassignRoomMutation, updateProductCriteriasMutation, addCustomerDepositAccountPaymentsFromPaymentLinkMutation, redirectPaymentGatewayFromPaymentLinkMutation, updatePartnerCustomerAccountMutation, generateLyraFormTokenMutation, redirectPaymentGatewayForAccountMutation, generateSepteoPaymentsSessionMutation, saveSepteoPaymentsTransactionMutation, updateOwnerAccountMutation, removeBankAccountMutation, addBankAccountMutation, changeOwnerLeasesBankAccountMutation, changeOwnerInvoiceStatusToSentMutation, validateOwnerInvoicesMutation, disputeOwnerInvoiceMutation, };
@@ -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.saveSepteoPaymentsTransactionMutation = exports.generateSepteoPaymentsSessionMutation = exports.redirectPaymentGatewayForAccountMutation = exports.generateLyraFormTokenMutation = exports.updatePartnerCustomerAccountMutation = exports.redirectPaymentGatewayFromPaymentLinkMutation = exports.addCustomerDepositAccountPaymentsFromPaymentLinkMutation = exports.updateProductCriteriasMutation = exports.unassignRoomMutation = exports.assignRoomMutation = exports.uploadFilesMutation = exports.validateLyraPaymentMutation = exports.disableEnablePartnerCustomerAccountMutation = exports.addPartnerCustomerAccountMutation = exports.disableServiceCustomerAccountMutation = exports.updateServiceCustomerAccountMutation = exports.createServiceCustomerAccountMutation = exports.chooseRoundTripProposalsMutation = exports.updatePartnerAccountMutation = exports.resetPendingFerryBookingMutation = exports.updateFerryBookingMutation = exports.cancelFerryBookingMutation = exports.saveFerryBookingMutation = exports.updateFerryTravelersInformationMutation = exports.updateFerryAccommodationsMutation = exports.chooseFerryProposalMutation = exports.addFidelityPointToProductMutation = exports.setSessionLanguageMutation = exports.payOnStoredCreditCardMutation = void 0;
4
+ exports.disputeOwnerInvoiceMutation = exports.validateOwnerInvoicesMutation = exports.changeOwnerInvoiceStatusToSentMutation = exports.changeOwnerLeasesBankAccountMutation = exports.addBankAccountMutation = exports.removeBankAccountMutation = exports.updateOwnerAccountMutation = exports.saveSepteoPaymentsTransactionMutation = exports.generateSepteoPaymentsSessionMutation = exports.redirectPaymentGatewayForAccountMutation = exports.generateLyraFormTokenMutation = exports.updatePartnerCustomerAccountMutation = exports.redirectPaymentGatewayFromPaymentLinkMutation = exports.addCustomerDepositAccountPaymentsFromPaymentLinkMutation = exports.updateProductCriteriasMutation = exports.unassignRoomMutation = exports.assignRoomMutation = exports.uploadFilesMutation = exports.validateLyraPaymentMutation = exports.disableEnablePartnerCustomerAccountMutation = exports.addPartnerCustomerAccountMutation = exports.disableServiceCustomerAccountMutation = exports.updateServiceCustomerAccountMutation = exports.createServiceCustomerAccountMutation = exports.chooseRoundTripProposalsMutation = exports.updatePartnerAccountMutation = exports.resetPendingFerryBookingMutation = exports.updateFerryBookingMutation = exports.cancelFerryBookingMutation = exports.saveFerryBookingMutation = exports.updateFerryTravelersInformationMutation = exports.updateFerryAccommodationsMutation = exports.chooseFerryProposalMutation = exports.addFidelityPointToProductMutation = exports.setSessionLanguageMutation = exports.payOnStoredCreditCardMutation = void 0;
5
5
  const addBaby_1 = require("./addBaby");
6
6
  Object.defineProperty(exports, "addBabyMutation", { enumerable: true, get: function () { return addBaby_1.addBabyMutation; } });
7
7
  const addCustomerDepositAccountPayments_1 = require("./addCustomerDepositAccountPayments");
@@ -160,3 +160,17 @@ const generateSepteoPaymentsSession_1 = require("./generateSepteoPaymentsSession
160
160
  Object.defineProperty(exports, "generateSepteoPaymentsSessionMutation", { enumerable: true, get: function () { return generateSepteoPaymentsSession_1.generateSepteoPaymentsSessionMutation; } });
161
161
  const saveSepteoPaymentsTransaction_1 = require("./saveSepteoPaymentsTransaction");
162
162
  Object.defineProperty(exports, "saveSepteoPaymentsTransactionMutation", { enumerable: true, get: function () { return saveSepteoPaymentsTransaction_1.saveSepteoPaymentsTransactionMutation; } });
163
+ const updateOwnerAccount_1 = require("./updateOwnerAccount");
164
+ Object.defineProperty(exports, "updateOwnerAccountMutation", { enumerable: true, get: function () { return updateOwnerAccount_1.updateOwnerAccountMutation; } });
165
+ const removeBankAccount_1 = require("./removeBankAccount");
166
+ Object.defineProperty(exports, "removeBankAccountMutation", { enumerable: true, get: function () { return removeBankAccount_1.removeBankAccountMutation; } });
167
+ const addBankAccount_1 = require("./addBankAccount");
168
+ Object.defineProperty(exports, "addBankAccountMutation", { enumerable: true, get: function () { return addBankAccount_1.addBankAccountMutation; } });
169
+ const changeOwnerLeasesBankAccount_1 = require("./changeOwnerLeasesBankAccount");
170
+ Object.defineProperty(exports, "changeOwnerLeasesBankAccountMutation", { enumerable: true, get: function () { return changeOwnerLeasesBankAccount_1.changeOwnerLeasesBankAccountMutation; } });
171
+ const changeOwnerInvoiceStatusToSent_1 = require("./changeOwnerInvoiceStatusToSent");
172
+ Object.defineProperty(exports, "changeOwnerInvoiceStatusToSentMutation", { enumerable: true, get: function () { return changeOwnerInvoiceStatusToSent_1.changeOwnerInvoiceStatusToSentMutation; } });
173
+ const validateOwnerInvoices_1 = require("./validateOwnerInvoices");
174
+ Object.defineProperty(exports, "validateOwnerInvoicesMutation", { enumerable: true, get: function () { return validateOwnerInvoices_1.validateOwnerInvoicesMutation; } });
175
+ const disputeOwnerInvoice_1 = require("./disputeOwnerInvoice");
176
+ Object.defineProperty(exports, "disputeOwnerInvoiceMutation", { enumerable: true, get: function () { return disputeOwnerInvoice_1.disputeOwnerInvoiceMutation; } });
@@ -0,0 +1 @@
1
+ export declare const removeBankAccountMutation: () => string;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.removeBankAccountMutation = void 0;
4
+ const removeBankAccountMutation = () => {
5
+ return `
6
+ query removeBankAccount($session: Session!, $input: RemoveBankAccountInput) {
7
+ removeBankAccount(
8
+ session: $session,
9
+ input: $input
10
+ ) {
11
+ removed
12
+ }
13
+ }
14
+ `;
15
+ };
16
+ exports.removeBankAccountMutation = removeBankAccountMutation;
@@ -0,0 +1 @@
1
+ export declare const updateOwnerAccountMutation: () => string;
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.updateOwnerAccountMutation = void 0;
4
+ const service_1 = require("../outputs/service");
5
+ const updateOwnerAccountMutation = () => {
6
+ return `
7
+ query updateOwnerAccount($session: Session!, $input: CustomerAccountInput) {
8
+ updateOwnerAccount(
9
+ session: $session,
10
+ input: $input
11
+ ) {
12
+ service {
13
+ ${service_1.serviceOutput}
14
+ }
15
+ }
16
+ }
17
+ `;
18
+ };
19
+ exports.updateOwnerAccountMutation = updateOwnerAccountMutation;
@@ -0,0 +1 @@
1
+ export declare const validateOwnerInvoicesMutation: () => string;
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.validateOwnerInvoicesMutation = void 0;
4
+ const ownerInvoice_1 = require("../outputs/ownerInvoice");
5
+ const validateOwnerInvoicesMutation = () => {
6
+ return `
7
+ query validateOwnerInvoices($session: Session!, $input: ValidateOwnerInvoicesInput!) {
8
+ validateOwnerInvoices(
9
+ session: $session,
10
+ input: $input
11
+ ) {
12
+ invoices {
13
+ ${ownerInvoice_1.ownerInvoiceOutput}
14
+ }
15
+ }
16
+ }
17
+ `;
18
+ };
19
+ exports.validateOwnerInvoicesMutation = validateOwnerInvoicesMutation;
@@ -0,0 +1 @@
1
+ export declare const bankOutput: string;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.bankOutput = void 0;
4
+ const country_1 = require("./country");
5
+ exports.bankOutput = `
6
+ name,
7
+ address {
8
+ line1,
9
+ line2,
10
+ postalCode,
11
+ city,
12
+ country {
13
+ ${country_1.countryOutput}
14
+ }
15
+ }
16
+ `;
@@ -0,0 +1 @@
1
+ export declare const bankAccountOutput: string;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.bankAccountOutput = void 0;
4
+ const bank_1 = require("./bank");
5
+ const iban_1 = require("./iban");
6
+ const rib_1 = require("./rib");
7
+ exports.bankAccountOutput = `
8
+ id,
9
+ label,
10
+ type,
11
+ rib {
12
+ ${rib_1.ribOutput}
13
+ },
14
+ iban {
15
+ ${iban_1.ibanOutput}
16
+ },
17
+ bank {
18
+ ${bank_1.bankOutput}
19
+ }
20
+ isValid
21
+ `;
@@ -0,0 +1 @@
1
+ export declare const ibanOutput = "\n iban,\n bic\n";
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ibanOutput = void 0;
4
+ exports.ibanOutput = `
5
+ iban,
6
+ bic
7
+ `;
@@ -0,0 +1 @@
1
+ export declare const ownerDocumentOutput = "\n label,\n uploadDate,\n url\n";
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ownerDocumentOutput = void 0;
4
+ exports.ownerDocumentOutput = `
5
+ label,
6
+ uploadDate,
7
+ url
8
+ `;
@@ -0,0 +1 @@
1
+ export declare const ownerInvoiceOutput: string;
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ownerInvoiceOutput = void 0;
4
+ const amount_1 = require("./amount");
5
+ const ownerInvoiceDocument_1 = require("./ownerInvoiceDocument");
6
+ const rentReceipt_1 = require("./rentReceipt");
7
+ exports.ownerInvoiceOutput = `
8
+ id,
9
+ isInvoiced,
10
+ dueDate,
11
+ status,
12
+ amount {
13
+ ${amount_1.amountOutput}
14
+ },
15
+ remainingAmount {
16
+ ${amount_1.amountOutput}
17
+ },
18
+ revisedRent,
19
+ url,
20
+ isOkForOwner,
21
+ isOkForCentral,
22
+ dispute,
23
+ summaryDocuments {
24
+ ${ownerInvoiceDocument_1.ownerInvoiceDocumentOutput}
25
+ },
26
+ rentReceipts {
27
+ ${rentReceipt_1.rentReceiptOutput}
28
+ }
29
+ `;
@@ -0,0 +1 @@
1
+ export declare const ownerInvoiceDocumentOutput = "\n label,\n date,\n url\n";
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ownerInvoiceDocumentOutput = void 0;
4
+ exports.ownerInvoiceDocumentOutput = `
5
+ label,
6
+ date,
7
+ url
8
+ `;
@@ -1,6 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ownerLeasesOutput = exports.ownerLeaseOutput = void 0;
4
+ const bankAccount_1 = require("./bankAccount");
5
+ const ownerDocument_1 = require("./ownerDocument");
4
6
  const ownerLeasePeriod_1 = require("./ownerLeasePeriod");
5
7
  exports.ownerLeaseOutput = `
6
8
  etabId,
@@ -8,6 +10,12 @@ exports.ownerLeaseOutput = `
8
10
  id,
9
11
  periods {
10
12
  ${ownerLeasePeriod_1.ownerLeasePeriodOutput}
13
+ },
14
+ documents {
15
+ ${ownerDocument_1.ownerDocumentOutput}
16
+ },
17
+ bankAccount {
18
+ ${bankAccount_1.bankAccountOutput}
11
19
  }
12
20
  `;
13
21
  exports.ownerLeasesOutput = `
@@ -1 +1 @@
1
- export declare const ownerLotOutput = "\n id,\n label,\n roomNumbers\n";
1
+ export declare const ownerLotOutput: string;
@@ -1,8 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ownerLotOutput = void 0;
4
+ const ownerInvoice_1 = require("./ownerInvoice");
4
5
  exports.ownerLotOutput = `
5
6
  id,
7
+ type,
6
8
  label,
7
- roomNumbers
9
+ roomNumbers,
10
+ invoices {
11
+ ${ownerInvoice_1.ownerInvoiceOutput}
12
+ }
8
13
  `;
@@ -0,0 +1 @@
1
+ export declare const ownerServiceChargeInvoiceDocumentOutput = "\n label,\n date,\n url,\n";
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ownerServiceChargeInvoiceDocumentOutput = void 0;
4
+ exports.ownerServiceChargeInvoiceDocumentOutput = `
5
+ label,
6
+ date,
7
+ url,
8
+ `;
@@ -0,0 +1 @@
1
+ export declare const rentReceiptOutput = "\n label,\n status,\n date,\n url\n";
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.rentReceiptOutput = void 0;
4
+ exports.rentReceiptOutput = `
5
+ label,
6
+ status,
7
+ date,
8
+ url
9
+ `;
@@ -0,0 +1 @@
1
+ export declare const ribOutput = "\n bankCode,\n branchCode,\n accountNumber,\n ribKey\n";
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ribOutput = void 0;
4
+ exports.ribOutput = `
5
+ bankCode,
6
+ branchCode,
7
+ accountNumber,
8
+ ribKey
9
+ `;
@@ -0,0 +1 @@
1
+ export declare const getBankAccountsQuery: () => string;
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getBankAccountsQuery = void 0;
4
+ const bankAccount_1 = require("../outputs/bankAccount");
5
+ const getBankAccountsQuery = () => {
6
+ return `
7
+ query getBankAccounts($session: Session!) {
8
+ getBankAccounts(
9
+ session: $session
10
+ ) {
11
+ bankAccounts {
12
+ ${bankAccount_1.bankAccountOutput}
13
+ }
14
+ }
15
+ }
16
+ `;
17
+ };
18
+ exports.getBankAccountsQuery = getBankAccountsQuery;
@@ -0,0 +1 @@
1
+ export declare const getCurrentOwnerAccountQuery: () => string;
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getCurrentOwnerAccountQuery = void 0;
4
+ const service_1 = require("../outputs/service");
5
+ const getCurrentOwnerAccountQuery = () => {
6
+ return `
7
+ query getCurrentOwnerAccount($session: Session!) {
8
+ getCurrentOwnerAccount(
9
+ session: $session
10
+ ) {
11
+ service {
12
+ ${service_1.serviceOutput}
13
+ }
14
+ }
15
+ }
16
+ `;
17
+ };
18
+ exports.getCurrentOwnerAccountQuery = getCurrentOwnerAccountQuery;
@@ -0,0 +1 @@
1
+ export declare const getOwnerServiceChargeInvoicesDocumentQuery: () => string;
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getOwnerServiceChargeInvoicesDocumentQuery = void 0;
4
+ const ownerServiceChargeInvoiceDocument_1 = require("../outputs/ownerServiceChargeInvoiceDocument");
5
+ const getOwnerServiceChargeInvoicesDocumentQuery = () => {
6
+ return `
7
+ query getOwnerServiceChargeInvoicesDocument($session: Session!) {
8
+ getOwnerServiceChargeInvoicesDocument(
9
+ session: $session
10
+ ) {
11
+ documents {
12
+ ${ownerServiceChargeInvoiceDocument_1.ownerServiceChargeInvoiceDocumentOutput}
13
+ }
14
+ }
15
+ }
16
+ `;
17
+ };
18
+ exports.getOwnerServiceChargeInvoicesDocumentQuery = getOwnerServiceChargeInvoicesDocumentQuery;
@@ -77,4 +77,7 @@ import { getOwnerRoomPlanningDataQuery } from "./getOwnerRoomPlanningData";
77
77
  import { getAvailableRoomsQuery } from "./getAvailableRooms";
78
78
  import { getBookingPaymentPlansQuery } from "./getBookingPaymentPlans";
79
79
  import { getBookingCustomerDepositAccountInfosQuery } from "./getBookingCustomerDepositAccountInfos";
80
- export { checkModuleFacebookActivatedQuery, checkSessionActivatedQuery, getAccommodationProductsQuery, getAvailableRoomFeaturesQuery, getBookingDocumentsQuery, getBookingProductsQuery, getBookingRecordCriteriasQuery, getBrochuresQuery, getCampaignsQuery, getCartQuery, getCivilitiesQuery, getCountriesQuery, getCriteriaInformationQuery, getCustomerBookingsQuery, getCustomerCriteriasQuery, getCustomerDepositAccountsQuery, getCustomerGiftCodesQuery, getCustomerLoyaltyPointsQuery, getCustomerPrivilegeCardsQuery, getLanguagesQuery, getMapSelectorDataQuery, getMyLoginQuery, getNeobookingTranslationsQuery, getOccupantProductsQuery, getPartnerQuery, getPaymentMethodsQuery, getPaymentPlansQuery, getPostCodeApiSimpleQuery, getPostCodeApiDetailQuery, getPrivilegeCardTypesQuery, getProductCategoriesQuery, getPropertiesQuery, getFavoritesPropertiesQuery, getPropertiesSelectQuery, getProposalsQuery, getProposalsByKeysQuery, getProposalsByPropertiesQuery, getResalysVersionQuery, getRoomTypeCategoriesQuery, getRoomTypesQuery, getSalesChannelModeQuery, getSessionQuery, getTranslationsQuery, renewPasswordQuery, requestBrochureQuery, hasProductsForOccupantQuery, getProposalByRoomTypesQuery, getAvailForRoomTypesQuery, getCurrentCustomerAccountQuery, getAllOccupantProductsAllAgeRangesQuery, getAlternativeProposalRulesForContractFolderQuery, getResalysErrorListQuery, getSkisetMeasurementsQuery, checkApiAliveQuery, getUserLanguageQuery, checkValidLoginQuery, getFidelityRulesQuery, getFidelityLogsQuery, getPendingFerryBookingQuery, getFerryCivilitiesQuery, getFerryNationalitiesQuery, getFerryVehicleCategoriesQuery, getFerryAddonCategoriesQuery, getFerryTrailerCategoriesQuery, getFerryCarsQuery, getFerryPortsQuery, getFerryCrossingsQuery, getFerryProposalsQuery, getFerryAvailableAccommodationsQuery, getFerryProductsQuery, getFerryVehicleFuelsQuery, getOccupantsFromCurrentCustomerQuery, getRelationshipsQuery, getPartnerCustomersQuery, getLyraFormTokenQuery, getCustomerBookingsWithoutRoomFeaturesQuery, getPropertiesWithoutRoomFeaturesQuery, getProposalsByPropertiesWithoutRoomFeaturesQuery, getRoomTypesWithoutRoomFeaturesQuery, getPaymentLinkInfosQuery, getOwnerLeasesQuery, getOwnerRoomPlanningDataQuery, getAvailableRoomsQuery, getBookingPaymentPlansQuery, getBookingCustomerDepositAccountInfosQuery, };
80
+ import { getCurrentOwnerAccountQuery } from "./getCurrentOwnerAccount";
81
+ import { getOwnerServiceChargeInvoicesDocumentQuery } from "./getOwnerServiceChargeInvoicesDocument";
82
+ import { getBankAccountsQuery } from "./getBankAccounts";
83
+ export { checkModuleFacebookActivatedQuery, checkSessionActivatedQuery, getAccommodationProductsQuery, getAvailableRoomFeaturesQuery, getBookingDocumentsQuery, getBookingProductsQuery, getBookingRecordCriteriasQuery, getBrochuresQuery, getCampaignsQuery, getCartQuery, getCivilitiesQuery, getCountriesQuery, getCriteriaInformationQuery, getCustomerBookingsQuery, getCustomerCriteriasQuery, getCustomerDepositAccountsQuery, getCustomerGiftCodesQuery, getCustomerLoyaltyPointsQuery, getCustomerPrivilegeCardsQuery, getLanguagesQuery, getMapSelectorDataQuery, getMyLoginQuery, getNeobookingTranslationsQuery, getOccupantProductsQuery, getPartnerQuery, getPaymentMethodsQuery, getPaymentPlansQuery, getPostCodeApiSimpleQuery, getPostCodeApiDetailQuery, getPrivilegeCardTypesQuery, getProductCategoriesQuery, getPropertiesQuery, getFavoritesPropertiesQuery, getPropertiesSelectQuery, getProposalsQuery, getProposalsByKeysQuery, getProposalsByPropertiesQuery, getResalysVersionQuery, getRoomTypeCategoriesQuery, getRoomTypesQuery, getSalesChannelModeQuery, getSessionQuery, getTranslationsQuery, renewPasswordQuery, requestBrochureQuery, hasProductsForOccupantQuery, getProposalByRoomTypesQuery, getAvailForRoomTypesQuery, getCurrentCustomerAccountQuery, getAllOccupantProductsAllAgeRangesQuery, getAlternativeProposalRulesForContractFolderQuery, getResalysErrorListQuery, getSkisetMeasurementsQuery, checkApiAliveQuery, getUserLanguageQuery, checkValidLoginQuery, getFidelityRulesQuery, getFidelityLogsQuery, getPendingFerryBookingQuery, getFerryCivilitiesQuery, getFerryNationalitiesQuery, getFerryVehicleCategoriesQuery, getFerryAddonCategoriesQuery, getFerryTrailerCategoriesQuery, getFerryCarsQuery, getFerryPortsQuery, getFerryCrossingsQuery, getFerryProposalsQuery, getFerryAvailableAccommodationsQuery, getFerryProductsQuery, getFerryVehicleFuelsQuery, getOccupantsFromCurrentCustomerQuery, getRelationshipsQuery, getPartnerCustomersQuery, getLyraFormTokenQuery, getCustomerBookingsWithoutRoomFeaturesQuery, getPropertiesWithoutRoomFeaturesQuery, getProposalsByPropertiesWithoutRoomFeaturesQuery, getRoomTypesWithoutRoomFeaturesQuery, getPaymentLinkInfosQuery, getOwnerLeasesQuery, getOwnerRoomPlanningDataQuery, getAvailableRoomsQuery, getBookingPaymentPlansQuery, getBookingCustomerDepositAccountInfosQuery, getCurrentOwnerAccountQuery, getOwnerServiceChargeInvoicesDocumentQuery, getBankAccountsQuery, };
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getAllOccupantProductsAllAgeRangesQuery = exports.getCurrentCustomerAccountQuery = exports.getAvailForRoomTypesQuery = exports.getProposalByRoomTypesQuery = exports.hasProductsForOccupantQuery = exports.requestBrochureQuery = exports.renewPasswordQuery = exports.getTranslationsQuery = exports.getSessionQuery = exports.getSalesChannelModeQuery = exports.getRoomTypesQuery = exports.getRoomTypeCategoriesQuery = exports.getResalysVersionQuery = exports.getProposalsByPropertiesQuery = exports.getProposalsByKeysQuery = exports.getProposalsQuery = exports.getPropertiesSelectQuery = exports.getFavoritesPropertiesQuery = exports.getPropertiesQuery = exports.getProductCategoriesQuery = exports.getPrivilegeCardTypesQuery = exports.getPostCodeApiDetailQuery = exports.getPostCodeApiSimpleQuery = exports.getPaymentPlansQuery = exports.getPaymentMethodsQuery = exports.getPartnerQuery = exports.getOccupantProductsQuery = exports.getNeobookingTranslationsQuery = exports.getMyLoginQuery = exports.getMapSelectorDataQuery = exports.getLanguagesQuery = exports.getCustomerPrivilegeCardsQuery = exports.getCustomerLoyaltyPointsQuery = exports.getCustomerGiftCodesQuery = exports.getCustomerDepositAccountsQuery = exports.getCustomerCriteriasQuery = exports.getCustomerBookingsQuery = exports.getCriteriaInformationQuery = exports.getCountriesQuery = exports.getCivilitiesQuery = exports.getCartQuery = exports.getCampaignsQuery = exports.getBrochuresQuery = exports.getBookingRecordCriteriasQuery = exports.getBookingProductsQuery = exports.getBookingDocumentsQuery = exports.getAvailableRoomFeaturesQuery = exports.getAccommodationProductsQuery = exports.checkSessionActivatedQuery = exports.checkModuleFacebookActivatedQuery = void 0;
4
- exports.getBookingCustomerDepositAccountInfosQuery = exports.getBookingPaymentPlansQuery = exports.getAvailableRoomsQuery = exports.getOwnerRoomPlanningDataQuery = exports.getOwnerLeasesQuery = exports.getPaymentLinkInfosQuery = exports.getRoomTypesWithoutRoomFeaturesQuery = exports.getProposalsByPropertiesWithoutRoomFeaturesQuery = exports.getPropertiesWithoutRoomFeaturesQuery = exports.getCustomerBookingsWithoutRoomFeaturesQuery = exports.getLyraFormTokenQuery = exports.getPartnerCustomersQuery = exports.getRelationshipsQuery = exports.getOccupantsFromCurrentCustomerQuery = exports.getFerryVehicleFuelsQuery = exports.getFerryProductsQuery = exports.getFerryAvailableAccommodationsQuery = exports.getFerryProposalsQuery = exports.getFerryCrossingsQuery = exports.getFerryPortsQuery = exports.getFerryCarsQuery = exports.getFerryTrailerCategoriesQuery = exports.getFerryAddonCategoriesQuery = exports.getFerryVehicleCategoriesQuery = exports.getFerryNationalitiesQuery = exports.getFerryCivilitiesQuery = exports.getPendingFerryBookingQuery = exports.getFidelityLogsQuery = exports.getFidelityRulesQuery = exports.checkValidLoginQuery = exports.getUserLanguageQuery = exports.checkApiAliveQuery = exports.getSkisetMeasurementsQuery = exports.getResalysErrorListQuery = exports.getAlternativeProposalRulesForContractFolderQuery = void 0;
4
+ exports.getBankAccountsQuery = exports.getOwnerServiceChargeInvoicesDocumentQuery = exports.getCurrentOwnerAccountQuery = exports.getBookingCustomerDepositAccountInfosQuery = exports.getBookingPaymentPlansQuery = exports.getAvailableRoomsQuery = exports.getOwnerRoomPlanningDataQuery = exports.getOwnerLeasesQuery = exports.getPaymentLinkInfosQuery = exports.getRoomTypesWithoutRoomFeaturesQuery = exports.getProposalsByPropertiesWithoutRoomFeaturesQuery = exports.getPropertiesWithoutRoomFeaturesQuery = exports.getCustomerBookingsWithoutRoomFeaturesQuery = exports.getLyraFormTokenQuery = exports.getPartnerCustomersQuery = exports.getRelationshipsQuery = exports.getOccupantsFromCurrentCustomerQuery = exports.getFerryVehicleFuelsQuery = exports.getFerryProductsQuery = exports.getFerryAvailableAccommodationsQuery = exports.getFerryProposalsQuery = exports.getFerryCrossingsQuery = exports.getFerryPortsQuery = exports.getFerryCarsQuery = exports.getFerryTrailerCategoriesQuery = exports.getFerryAddonCategoriesQuery = exports.getFerryVehicleCategoriesQuery = exports.getFerryNationalitiesQuery = exports.getFerryCivilitiesQuery = exports.getPendingFerryBookingQuery = exports.getFidelityLogsQuery = exports.getFidelityRulesQuery = exports.checkValidLoginQuery = exports.getUserLanguageQuery = exports.checkApiAliveQuery = exports.getSkisetMeasurementsQuery = exports.getResalysErrorListQuery = exports.getAlternativeProposalRulesForContractFolderQuery = void 0;
5
5
  const checkApiAlive_1 = require("./checkApiAlive");
6
6
  Object.defineProperty(exports, "checkApiAliveQuery", { enumerable: true, get: function () { return checkApiAlive_1.checkApiAliveQuery; } });
7
7
  const checkModuleFacebookActivated_1 = require("./checkModuleFacebookActivated");
@@ -166,3 +166,9 @@ const getBookingPaymentPlans_1 = require("./getBookingPaymentPlans");
166
166
  Object.defineProperty(exports, "getBookingPaymentPlansQuery", { enumerable: true, get: function () { return getBookingPaymentPlans_1.getBookingPaymentPlansQuery; } });
167
167
  const getBookingCustomerDepositAccountInfos_1 = require("./getBookingCustomerDepositAccountInfos");
168
168
  Object.defineProperty(exports, "getBookingCustomerDepositAccountInfosQuery", { enumerable: true, get: function () { return getBookingCustomerDepositAccountInfos_1.getBookingCustomerDepositAccountInfosQuery; } });
169
+ const getCurrentOwnerAccount_1 = require("./getCurrentOwnerAccount");
170
+ Object.defineProperty(exports, "getCurrentOwnerAccountQuery", { enumerable: true, get: function () { return getCurrentOwnerAccount_1.getCurrentOwnerAccountQuery; } });
171
+ const getOwnerServiceChargeInvoicesDocument_1 = require("./getOwnerServiceChargeInvoicesDocument");
172
+ Object.defineProperty(exports, "getOwnerServiceChargeInvoicesDocumentQuery", { enumerable: true, get: function () { return getOwnerServiceChargeInvoicesDocument_1.getOwnerServiceChargeInvoicesDocumentQuery; } });
173
+ const getBankAccounts_1 = require("./getBankAccounts");
174
+ Object.defineProperty(exports, "getBankAccountsQuery", { enumerable: true, get: function () { return getBankAccounts_1.getBankAccountsQuery; } });
@@ -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>>>;
@@ -334,6 +386,20 @@ export type CartPaymentPlansOutput = {
334
386
  __typename?: "CartPaymentPlansOutput";
335
387
  cart?: Maybe<Cart>;
336
388
  };
389
+ export type ChangeOwnerInvoiceStatusToSentInput = {
390
+ invoiceIds: Array<InputMaybe<Scalars["Int"]>>;
391
+ };
392
+ export type ChangeOwnerInvoiceStatusToSentOutput = {
393
+ __typename?: "ChangeOwnerInvoiceStatusToSentOutput";
394
+ invoices?: Maybe<Array<Maybe<OwnerInvoice>>>;
395
+ };
396
+ export type ChangeOwnerLeasesBankAccountInput = {
397
+ bankAccountId: Scalars["Int"];
398
+ };
399
+ export type ChangeOwnerLeasesBankAccountOutput = {
400
+ __typename?: "ChangeOwnerLeasesBankAccountOutput";
401
+ leases?: Maybe<Array<Maybe<OwnerLease>>>;
402
+ };
337
403
  export type ChangePasswordInput = {
338
404
  confirmPassword: Scalars["String"];
339
405
  password: Scalars["String"];
@@ -565,6 +631,10 @@ export type CurrentCustomerAccountOutput = {
565
631
  __typename?: "CurrentCustomerAccountOutput";
566
632
  service?: Maybe<Service>;
567
633
  };
634
+ export type CurrentOwnerAccountOutput = {
635
+ __typename?: "CurrentOwnerAccountOutput";
636
+ service?: Maybe<Service>;
637
+ };
568
638
  export type CustomerAccountInput = {
569
639
  account?: InputMaybe<AccountInput>;
570
640
  address?: InputMaybe<CustomerAddressInput>;
@@ -759,6 +829,14 @@ export type DiscountCodeOutput = {
759
829
  __typename?: "DiscountCodeOutput";
760
830
  cart?: Maybe<Cart>;
761
831
  };
832
+ export type DisputeOwnerInvoiceInput = {
833
+ invoiceId: Scalars["Int"];
834
+ reason: Scalars["String"];
835
+ };
836
+ export type DisputeOwnerInvoiceOutput = {
837
+ __typename?: "DisputeOwnerInvoiceOutput";
838
+ invoice?: Maybe<OwnerInvoice>;
839
+ };
762
840
  export type Distribution = {
763
841
  __typename?: "Distribution";
764
842
  roomNumbers?: Maybe<Array<Maybe<Scalars["String"]>>>;
@@ -998,11 +1076,24 @@ export type Heights = {
998
1076
  id?: Maybe<Scalars["Int"]>;
999
1077
  value?: Maybe<Scalars["String"]>;
1000
1078
  };
1079
+ export type IbanInput = {
1080
+ bic: Scalars["String"];
1081
+ iban: Scalars["String"];
1082
+ };
1083
+ export type Iban = {
1084
+ __typename?: "Iban";
1085
+ bic?: Maybe<Scalars["String"]>;
1086
+ iban?: Maybe<Scalars["String"]>;
1087
+ };
1001
1088
  export declare enum InputType {
1002
1089
  Checkbox = "CHECKBOX",
1003
1090
  Enum = "ENUM",
1004
1091
  Text = "TEXT"
1005
1092
  }
1093
+ export type Installment = {
1094
+ __typename?: "Installment";
1095
+ invoice?: Maybe<OwnerInvoice>;
1096
+ };
1006
1097
  export type Language = {
1007
1098
  __typename?: "Language";
1008
1099
  code?: Maybe<Scalars["String"]>;
@@ -1171,6 +1262,7 @@ export type MoneyInput = {
1171
1262
  export type Mutation = {
1172
1263
  __typename?: "Mutation";
1173
1264
  addBaby?: Maybe<AddBabyOutput>;
1265
+ addBankAccount?: Maybe<BankAccountOutput>;
1174
1266
  addCustomerDepositAccountPayments?: Maybe<CustomerDepositAccountPaymentsOutput>;
1175
1267
  addCustomerDepositAccountPaymentsFromPaymentLink?: Maybe<CustomerDepositAccountPaymentsOutputFromPaymentLink>;
1176
1268
  addDiscountCode?: Maybe<DiscountCodeOutput>;
@@ -1192,6 +1284,8 @@ export type Mutation = {
1192
1284
  addProductToOccupant?: Maybe<ProductToOccupantOutput>;
1193
1285
  assignRoom?: Maybe<AssignRoomOutput>;
1194
1286
  cancelFerryBooking?: Maybe<CancelFerryBookingOutput>;
1287
+ changeOwnerInvoiceStatusToSent?: Maybe<ChangeOwnerInvoiceStatusToSentOutput>;
1288
+ changeOwnerLeasesBankAccount?: Maybe<ChangeOwnerLeasesBankAccountOutput>;
1195
1289
  changePassword?: Maybe<ChangePasswordOutput>;
1196
1290
  chooseFerryProposal?: Maybe<ChooseFerryProposalOutput>;
1197
1291
  chooseProposalFromKeys?: Maybe<ChooseProposalFromKeysOutput>;
@@ -1201,6 +1295,7 @@ export type Mutation = {
1201
1295
  createServiceCustomerAccount?: Maybe<CustomerAccountOutput>;
1202
1296
  disableEnablePartnerCustomerAccount?: Maybe<CustomerAccountOutput>;
1203
1297
  disableServiceCustomerAccount?: Maybe<CustomerAccountOutput>;
1298
+ disputeOwnerInvoice?: Maybe<DisputeOwnerInvoiceOutput>;
1204
1299
  doFastCheckin?: Maybe<DoFastCheckinOutput>;
1205
1300
  doFastCheckout?: Maybe<DoFastCheckoutOutput>;
1206
1301
  expireSession?: Maybe<ExpireSessionOutput>;
@@ -1219,6 +1314,7 @@ export type Mutation = {
1219
1314
  redirectPaymentGatewayForCart?: Maybe<PaymentGatewayForCartOutput>;
1220
1315
  redirectPaymentGatewayForInstalment?: Maybe<PaymentGatewayForInstalmentOutput>;
1221
1316
  redirectPaymentGatewayFromPaymentLink?: Maybe<PaymentGatewayFromPaymentLinkOutput>;
1317
+ removeBankAccount?: Maybe<RemoveBankAccountsOutput>;
1222
1318
  removeBookingFromCart?: Maybe<RemoveBookingFromCartOutput>;
1223
1319
  removeCartPayments?: Maybe<RemoveCartPaymentsOutput>;
1224
1320
  removeCustomerAccount?: Maybe<RemoveCustomerAccountOutput>;
@@ -1245,6 +1341,7 @@ export type Mutation = {
1245
1341
  updateFerryTravelersInformation?: Maybe<UpdateFerryTravelersInformationOutput>;
1246
1342
  updateOccupant?: Maybe<OccupantOutput>;
1247
1343
  updateOccupantSkisetMeasurements?: Maybe<UpdateOccupantSkisetMeasurementsOutput>;
1344
+ updateOwnerAccount?: Maybe<CustomerAccountOutput>;
1248
1345
  updatePartnerAccount?: Maybe<PartnerOutput>;
1249
1346
  updatePartnerCustomerAccount?: Maybe<CustomerAccountOutput>;
1250
1347
  updatePartnerPaymentPlans?: Maybe<PartnerPaymentPlansOutput>;
@@ -1257,11 +1354,16 @@ export type Mutation = {
1257
1354
  updateTotalOccupants?: Maybe<TotalOccupantsOutput>;
1258
1355
  uploadFiles?: Maybe<UploadFilesOutput>;
1259
1356
  validateLyraPayment?: Maybe<LyraPaymentValidationOutput>;
1357
+ validateOwnerInvoices?: Maybe<ValidateOwnerInvoicesOutput>;
1260
1358
  };
1261
1359
  export type MutationAddBabyArgs = {
1262
1360
  input: AddBabyInput;
1263
1361
  session: Session;
1264
1362
  };
1363
+ export type MutationAddBankAccountArgs = {
1364
+ input?: InputMaybe<AddBankAccountInput>;
1365
+ session: Session;
1366
+ };
1265
1367
  export type MutationAddCustomerDepositAccountPaymentsArgs = {
1266
1368
  input?: InputMaybe<CustomerDepositAccountPaymentsInput>;
1267
1369
  session: Session;
@@ -1314,6 +1416,14 @@ export type MutationCancelFerryBookingArgs = {
1314
1416
  input?: InputMaybe<CancelFerryBookingInput>;
1315
1417
  session: Session;
1316
1418
  };
1419
+ export type MutationChangeOwnerInvoiceStatusToSentArgs = {
1420
+ input: ChangeOwnerInvoiceStatusToSentInput;
1421
+ session: Session;
1422
+ };
1423
+ export type MutationChangeOwnerLeasesBankAccountArgs = {
1424
+ input: ChangeOwnerLeasesBankAccountInput;
1425
+ session: Session;
1426
+ };
1317
1427
  export type MutationChangePasswordArgs = {
1318
1428
  input: ChangePasswordInput;
1319
1429
  session: Session;
@@ -1350,6 +1460,10 @@ export type MutationDisableServiceCustomerAccountArgs = {
1350
1460
  input?: InputMaybe<DisableServiceCustomerAccountInput>;
1351
1461
  session: Session;
1352
1462
  };
1463
+ export type MutationDisputeOwnerInvoiceArgs = {
1464
+ input: DisputeOwnerInvoiceInput;
1465
+ session: Session;
1466
+ };
1353
1467
  export type MutationDoFastCheckinArgs = {
1354
1468
  input?: InputMaybe<DoFastCheckinInput>;
1355
1469
  session: Session;
@@ -1420,6 +1534,10 @@ export type MutationRedirectPaymentGatewayFromPaymentLinkArgs = {
1420
1534
  input?: InputMaybe<PaymentGatewayFromPaymentLinkInput>;
1421
1535
  paymentLinkAuthenticationInput: PaymentLinkAuthenticationInput;
1422
1536
  };
1537
+ export type MutationRemoveBankAccountArgs = {
1538
+ input?: InputMaybe<RemoveBankAccountInput>;
1539
+ session: Session;
1540
+ };
1423
1541
  export type MutationRemoveBookingFromCartArgs = {
1424
1542
  input?: InputMaybe<RemoveBookingFromCartInput>;
1425
1543
  session: Session;
@@ -1519,6 +1637,10 @@ export type MutationUpdateOccupantSkisetMeasurementsArgs = {
1519
1637
  input: UpdateOccupantSkisetMeasurementsInput;
1520
1638
  session: Session;
1521
1639
  };
1640
+ export type MutationUpdateOwnerAccountArgs = {
1641
+ input?: InputMaybe<CustomerAccountInput>;
1642
+ session: Session;
1643
+ };
1522
1644
  export type MutationUpdatePartnerAccountArgs = {
1523
1645
  input?: InputMaybe<PartnerAccountInput>;
1524
1646
  session: Session;
@@ -1567,6 +1689,10 @@ export type MutationValidateLyraPaymentArgs = {
1567
1689
  input: LyraPaymentValidationInput;
1568
1690
  session: Session;
1569
1691
  };
1692
+ export type MutationValidateOwnerInvoicesArgs = {
1693
+ input: ValidateOwnerInvoicesInput;
1694
+ session: Session;
1695
+ };
1570
1696
  export type MyLoginInput = {
1571
1697
  email?: InputMaybe<Scalars["String"]>;
1572
1698
  firstName?: InputMaybe<Scalars["String"]>;
@@ -1666,8 +1792,38 @@ export type Option = {
1666
1792
  default?: Maybe<Scalars["Boolean"]>;
1667
1793
  label?: Maybe<Scalars["String"]>;
1668
1794
  };
1795
+ export type OwnerDocument = {
1796
+ __typename?: "OwnerDocument";
1797
+ label?: Maybe<Scalars["String"]>;
1798
+ uploadDate?: Maybe<Scalars["Date"]>;
1799
+ url?: Maybe<Scalars["String"]>;
1800
+ };
1801
+ export type OwnerInvoice = {
1802
+ __typename?: "OwnerInvoice";
1803
+ amount?: Maybe<Amount>;
1804
+ dispute?: Maybe<Scalars["String"]>;
1805
+ dueDate?: Maybe<Scalars["Date"]>;
1806
+ id?: Maybe<Scalars["Int"]>;
1807
+ isInvoiced?: Maybe<Scalars["Boolean"]>;
1808
+ isOkForCentral?: Maybe<Scalars["Boolean"]>;
1809
+ isOkForOwner?: Maybe<Scalars["Boolean"]>;
1810
+ remainingAmount?: Maybe<Amount>;
1811
+ rentReceipts?: Maybe<Array<Maybe<RentReceipt>>>;
1812
+ revisedRent?: Maybe<Scalars["Boolean"]>;
1813
+ status?: Maybe<Scalars["String"]>;
1814
+ summaryDocuments?: Maybe<Array<Maybe<OwnerInvoiceDocument>>>;
1815
+ url?: Maybe<Scalars["String"]>;
1816
+ };
1817
+ export type OwnerInvoiceDocument = {
1818
+ __typename?: "OwnerInvoiceDocument";
1819
+ date?: Maybe<Scalars["Date"]>;
1820
+ label?: Maybe<Scalars["String"]>;
1821
+ url?: Maybe<Scalars["String"]>;
1822
+ };
1669
1823
  export type OwnerLease = {
1670
1824
  __typename?: "OwnerLease";
1825
+ bankAccount?: Maybe<BankAccount>;
1826
+ documents?: Maybe<Array<Maybe<OwnerDocument>>>;
1671
1827
  etabId?: Maybe<Scalars["Int"]>;
1672
1828
  etabLabel?: Maybe<Scalars["String"]>;
1673
1829
  id?: Maybe<Scalars["Int"]>;
@@ -1681,19 +1837,31 @@ export type OwnerLeasePeriod = {
1681
1837
  export type OwnerLot = {
1682
1838
  __typename?: "OwnerLot";
1683
1839
  id?: Maybe<Scalars["Int"]>;
1840
+ invoices?: Maybe<Array<Maybe<OwnerInvoice>>>;
1684
1841
  label?: Maybe<Scalars["String"]>;
1685
1842
  roomNumbers?: Maybe<Array<Maybe<Scalars["String"]>>>;
1843
+ type?: Maybe<Scalars["String"]>;
1686
1844
  };
1687
1845
  export type OwnerRoomPlanningDataInput = {
1688
1846
  campaignCode: Scalars["String"];
1689
- month?: InputMaybe<Scalars["Int"]>;
1847
+ month: Scalars["Int"];
1690
1848
  ownerLotId: Scalars["Int"];
1691
- year?: InputMaybe<Scalars["Int"]>;
1849
+ year: Scalars["Int"];
1692
1850
  };
1693
1851
  export type OwnerRoomPlanningDataOutput = {
1694
1852
  __typename?: "OwnerRoomPlanningDataOutput";
1695
1853
  calendarPeriods?: Maybe<Array<Maybe<CalendarPeriod>>>;
1696
1854
  };
1855
+ export type OwnerServiceChargeInvoiceDocument = {
1856
+ __typename?: "OwnerServiceChargeInvoiceDocument";
1857
+ date?: Maybe<Scalars["Date"]>;
1858
+ label?: Maybe<Scalars["String"]>;
1859
+ url?: Maybe<Scalars["String"]>;
1860
+ };
1861
+ export type OwnerServiceChargeInvoicesDocumentOutput = {
1862
+ __typename?: "OwnerServiceChargeInvoicesDocumentOutput";
1863
+ documents?: Maybe<Array<Maybe<OwnerServiceChargeInvoiceDocument>>>;
1864
+ };
1697
1865
  export type OwnerleasesOutput = {
1698
1866
  __typename?: "OwnerleasesOutput";
1699
1867
  leases?: Maybe<Array<Maybe<OwnerLease>>>;
@@ -2232,6 +2400,7 @@ export type Query = {
2232
2400
  getAvailForRoomTypes?: Maybe<AvailForRoomTypesOutput>;
2233
2401
  getAvailableRoomFeatures?: Maybe<AvailableRoomFeaturesOutput>;
2234
2402
  getAvailableRooms?: Maybe<AvailableRoomsOutput>;
2403
+ getBankAccounts?: Maybe<BankAccountsOutput>;
2235
2404
  getBookingCustomerDepositAccountInfos?: Maybe<BookingCustomerDepositAccountInfosOutput>;
2236
2405
  getBookingDocuments?: Maybe<BookingDocumentsOutput>;
2237
2406
  getBookingPaymentPlans?: Maybe<PaymentPlansOutput>;
@@ -2249,6 +2418,7 @@ export type Query = {
2249
2418
  */
2250
2419
  getCriteriaInformation?: Maybe<CriteriaInformationOutput>;
2251
2420
  getCurrentCustomerAccount?: Maybe<CurrentCustomerAccountOutput>;
2421
+ getCurrentOwnerAccount?: Maybe<CurrentOwnerAccountOutput>;
2252
2422
  getCustomerBookings?: Maybe<CustomerBookingsOutput>;
2253
2423
  getCustomerCriterias?: Maybe<CustomerCriteriasOutput>;
2254
2424
  getCustomerDepositAccounts?: Maybe<CustomerDepositAccountsOutput>;
@@ -2278,6 +2448,7 @@ export type Query = {
2278
2448
  getOccupantsFromCurrentCustomer?: Maybe<OccupantsFromCurrentCustomerOutput>;
2279
2449
  getOwnerLeases?: Maybe<OwnerleasesOutput>;
2280
2450
  getOwnerRoomPlanningData?: Maybe<OwnerRoomPlanningDataOutput>;
2451
+ getOwnerServiceChargeInvoicesDocument?: Maybe<OwnerServiceChargeInvoicesDocumentOutput>;
2281
2452
  getPartner?: Maybe<PartnerOutput>;
2282
2453
  getPartnerCustomers?: Maybe<PartnerCustomerInfoOutput>;
2283
2454
  getPaymentLinkInfos?: Maybe<PaymentLinkInfosOutput>;
@@ -2371,6 +2542,10 @@ export type QueryGetAvailableRoomsArgs = {
2371
2542
  session: Session;
2372
2543
  };
2373
2544
  /** test query */
2545
+ export type QueryGetBankAccountsArgs = {
2546
+ session: Session;
2547
+ };
2548
+ /** test query */
2374
2549
  export type QueryGetBookingCustomerDepositAccountInfosArgs = {
2375
2550
  session: Session;
2376
2551
  };
@@ -2423,6 +2598,10 @@ export type QueryGetCurrentCustomerAccountArgs = {
2423
2598
  session: Session;
2424
2599
  };
2425
2600
  /** test query */
2601
+ export type QueryGetCurrentOwnerAccountArgs = {
2602
+ session: Session;
2603
+ };
2604
+ /** test query */
2426
2605
  export type QueryGetCustomerBookingsArgs = {
2427
2606
  input?: InputMaybe<CustomerBookingsInput>;
2428
2607
  session: Session;
@@ -2550,6 +2729,10 @@ export type QueryGetOwnerRoomPlanningDataArgs = {
2550
2729
  session: Session;
2551
2730
  };
2552
2731
  /** test query */
2732
+ export type QueryGetOwnerServiceChargeInvoicesDocumentArgs = {
2733
+ session: Session;
2734
+ };
2735
+ /** test query */
2553
2736
  export type QueryGetPartnerArgs = {
2554
2737
  session: Session;
2555
2738
  };
@@ -2675,6 +2858,12 @@ export type QueryRequestBrochureArgs = {
2675
2858
  input?: InputMaybe<BrochureInput>;
2676
2859
  session: Session;
2677
2860
  };
2861
+ export type RibInput = {
2862
+ accountNumber: Scalars["String"];
2863
+ bankCode: Scalars["String"];
2864
+ branchCode: Scalars["String"];
2865
+ ribKey: Scalars["String"];
2866
+ };
2678
2867
  export type Relationship = {
2679
2868
  __typename?: "Relationship";
2680
2869
  id: Scalars["Int"];
@@ -2684,6 +2873,13 @@ export type RelationshipOutput = {
2684
2873
  __typename?: "RelationshipOutput";
2685
2874
  relationships?: Maybe<Array<Maybe<Relationship>>>;
2686
2875
  };
2876
+ export type RemoveBankAccountInput = {
2877
+ bankAccountId: Scalars["Int"];
2878
+ };
2879
+ export type RemoveBankAccountsOutput = {
2880
+ __typename?: "RemoveBankAccountsOutput";
2881
+ removed?: Maybe<Scalars["Boolean"]>;
2882
+ };
2687
2883
  export type RemoveBookingFromCartInput = {
2688
2884
  bookingCartItemID: Scalars["Int"];
2689
2885
  };
@@ -2741,6 +2937,13 @@ export type RenewPasswordOutput = {
2741
2937
  __typename?: "RenewPasswordOutput";
2742
2938
  renewPasswordDemand?: Maybe<Scalars["Boolean"]>;
2743
2939
  };
2940
+ export type RentReceipt = {
2941
+ __typename?: "RentReceipt";
2942
+ date?: Maybe<Scalars["Date"]>;
2943
+ label?: Maybe<Scalars["String"]>;
2944
+ status?: Maybe<Scalars["String"]>;
2945
+ url?: Maybe<Scalars["String"]>;
2946
+ };
2744
2947
  export type ResalysError = {
2745
2948
  __typename?: "ResalysError";
2746
2949
  code?: Maybe<Scalars["Int"]>;
@@ -2762,6 +2965,13 @@ export type ResetPendingFerryBookingOutput = {
2762
2965
  __typename?: "ResetPendingFerryBookingOutput";
2763
2966
  ferryBooking?: Maybe<FerryBooking>;
2764
2967
  };
2968
+ export type Rib = {
2969
+ __typename?: "Rib";
2970
+ accountNumber?: Maybe<Scalars["String"]>;
2971
+ bankCode?: Maybe<Scalars["String"]>;
2972
+ branchCode?: Maybe<Scalars["String"]>;
2973
+ ribKey?: Maybe<Scalars["String"]>;
2974
+ };
2765
2975
  export type RoomFeature = {
2766
2976
  __typename?: "RoomFeature";
2767
2977
  categoryLabel?: Maybe<Scalars["String"]>;
@@ -3152,6 +3362,13 @@ export type ValidLoginOutput = {
3152
3362
  __typename?: "ValidLoginOutput";
3153
3363
  valid?: Maybe<Scalars["Boolean"]>;
3154
3364
  };
3365
+ export type ValidateOwnerInvoicesInput = {
3366
+ invoiceIds: Array<InputMaybe<Scalars["Int"]>>;
3367
+ };
3368
+ export type ValidateOwnerInvoicesOutput = {
3369
+ __typename?: "ValidateOwnerInvoicesOutput";
3370
+ invoices?: Maybe<Array<Maybe<OwnerInvoice>>>;
3371
+ };
3155
3372
  export type Vehicle = {
3156
3373
  __typename?: "Vehicle";
3157
3374
  additionalHeight?: Maybe<Scalars["Float"]>;
@@ -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.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";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rsl-api-106",
3
- "version": "106.291.1",
3
+ "version": "106.291.2",
4
4
  "description": "TypeScript NPM Module for Resalys's GraphQL API (106)",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {