rsl-api-106 106.506.2 → 106.603.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -7,6 +7,7 @@ const customerDepositAccount_1 = require("../outputs/customerDepositAccount");
|
|
|
7
7
|
const occupant_1 = require("../outputs/occupant");
|
|
8
8
|
const paymentMethod_1 = require("../outputs/paymentMethod");
|
|
9
9
|
const service_1 = require("../outputs/service");
|
|
10
|
+
const lineItem_1 = require("../outputs/lineItem");
|
|
10
11
|
const getPaymentLinkInfosQuery = () => {
|
|
11
12
|
return (0, client_1.gql) `
|
|
12
13
|
query getPaymentLinkInfos($paymentLinkAuthenticationInput: PaymentLinkAuthenticationInput!) {
|
|
@@ -27,6 +28,9 @@ const getPaymentLinkInfosQuery = () => {
|
|
|
27
28
|
},
|
|
28
29
|
paymentMethod {
|
|
29
30
|
${paymentMethod_1.paymentMethodOutput}
|
|
31
|
+
},
|
|
32
|
+
invoiceLineitems {
|
|
33
|
+
${lineItem_1.lineItemsOutput}
|
|
30
34
|
}
|
|
31
35
|
}
|
|
32
36
|
}
|
package/lib/types/index.d.ts
CHANGED
|
@@ -2036,6 +2036,7 @@ export type PaymentGatewayForAmountInput = {
|
|
|
2036
2036
|
ccAmount: Scalars["BigDecimal"];
|
|
2037
2037
|
input: CartPaymentMethodInput;
|
|
2038
2038
|
instalmentId?: InputMaybe<Scalars["Int"]>;
|
|
2039
|
+
invoiceId?: InputMaybe<Scalars["Int"]>;
|
|
2039
2040
|
};
|
|
2040
2041
|
export type PaymentGatewayForAmountOutput = {
|
|
2041
2042
|
__typename?: "PaymentGatewayForAmountOutput";
|
|
@@ -2052,6 +2053,7 @@ export type PaymentGatewayForCartOutput = {
|
|
|
2052
2053
|
export type PaymentGatewayForInstalmentInput = {
|
|
2053
2054
|
input: CartPaymentMethodInput;
|
|
2054
2055
|
instalmentId: Scalars["Int"];
|
|
2056
|
+
invoiceId?: InputMaybe<Scalars["Int"]>;
|
|
2055
2057
|
};
|
|
2056
2058
|
export type PaymentGatewayForInstalmentOutput = {
|
|
2057
2059
|
__typename?: "PaymentGatewayForInstalmentOutput";
|
|
@@ -2075,6 +2077,7 @@ export type PaymentLinkInfosOutput = {
|
|
|
2075
2077
|
__typename?: "PaymentLinkInfosOutput";
|
|
2076
2078
|
customerBooking?: Maybe<CustomerBooking>;
|
|
2077
2079
|
customerDepositAccounts?: Maybe<Array<Maybe<CustomerDepositAccount>>>;
|
|
2080
|
+
invoiceLineitems?: Maybe<Array<Maybe<Lineitem>>>;
|
|
2078
2081
|
occupant?: Maybe<Occupant>;
|
|
2079
2082
|
paymentMethod?: Maybe<PaymentMethod>;
|
|
2080
2083
|
service?: Maybe<Service>;
|
|
@@ -2299,6 +2302,7 @@ export type ProductProposal = {
|
|
|
2299
2302
|
__typename?: "ProductProposal";
|
|
2300
2303
|
amount?: Maybe<Amount>;
|
|
2301
2304
|
description?: Maybe<Scalars["String"]>;
|
|
2305
|
+
imagePath?: Maybe<Scalars["String"]>;
|
|
2302
2306
|
label?: Maybe<Scalars["String"]>;
|
|
2303
2307
|
productCode?: Maybe<Scalars["String"]>;
|
|
2304
2308
|
propertyId?: Maybe<Scalars["Int"]>;
|