@longvansoftware/storefront-js-client 2.5.5 → 2.5.7
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.
|
@@ -40,6 +40,7 @@ exports.PAYMENTS_BY_ORDERS = (0, graphql_tag_1.gql) `
|
|
|
40
40
|
confirmPaidDate
|
|
41
41
|
qrCode
|
|
42
42
|
payUrl
|
|
43
|
+
paymentNote
|
|
43
44
|
}
|
|
44
45
|
}
|
|
45
46
|
`;
|
|
@@ -165,21 +166,21 @@ exports.PAYMENT_STATUS = (0, graphql_tag_1.gql) `
|
|
|
165
166
|
}
|
|
166
167
|
`;
|
|
167
168
|
exports.GW_CONFIG_DETAIL = (0, graphql_tag_1.gql) `
|
|
168
|
-
query GwConfigDetail
|
|
169
|
-
gwConfigDetail(configId: $configId){
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
169
|
+
query GwConfigDetail($configId: String!) {
|
|
170
|
+
gwConfigDetail(configId: $configId) {
|
|
171
|
+
id
|
|
172
|
+
name
|
|
173
|
+
methodCode
|
|
174
|
+
partnerCode
|
|
175
|
+
subMethodCode
|
|
176
|
+
gwPartnerCode
|
|
177
|
+
gwPartnerName
|
|
178
|
+
gwSubChannel
|
|
179
|
+
gwMethodVersion
|
|
180
|
+
accessKey
|
|
181
|
+
secretKey
|
|
182
|
+
description
|
|
183
|
+
activated
|
|
183
184
|
}
|
|
184
185
|
}
|
|
185
186
|
`;
|