@graphcommerce/magento-payment-included 3.1.32 → 3.2.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.
- package/CHANGELOG.md +16 -0
- package/index.ts +2 -1
- package/methods.tsx +5 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 3.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1675](https://github.com/graphcommerce-org/graphcommerce/pull/1675) [`1b1504c9b`](https://github.com/graphcommerce-org/graphcommerce/commit/1b1504c9b0e51f2787bce91e1ff1940f540411d6) Thanks [@paales](https://github.com/paales)! - Added cashondelivery
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`9e630670f`](https://github.com/graphcommerce-org/graphcommerce/commit/9e630670ff6c952ab7b938d890b5509804985cf3), [`cf3518499`](https://github.com/graphcommerce-org/graphcommerce/commit/cf351849999ad6fe73ce2bb258098a7dd301d517), [`2e9fa5984`](https://github.com/graphcommerce-org/graphcommerce/commit/2e9fa5984a07ff14fc1b3a4f62189a26e8e3ecdd), [`82a0c9049`](https://github.com/graphcommerce-org/graphcommerce/commit/82a0c904992f104bc1ffc3b1be65eb17bdd0ef1d), [`adf13069a`](https://github.com/graphcommerce-org/graphcommerce/commit/adf13069af6460c960276b402237371c12fc6dec), [`1b1504c9b`](https://github.com/graphcommerce-org/graphcommerce/commit/1b1504c9b0e51f2787bce91e1ff1940f540411d6), [`8a34f8081`](https://github.com/graphcommerce-org/graphcommerce/commit/8a34f808186274a6fe1d4f309472f1a9c6d00efd), [`3dde492ad`](https://github.com/graphcommerce-org/graphcommerce/commit/3dde492ad3a49d96481eeb7453fb305d0017b1a5)]:
|
|
12
|
+
- @graphcommerce/next-ui@4.28.1
|
|
13
|
+
- @graphcommerce/graphql@3.5.0
|
|
14
|
+
- @graphcommerce/magento-cart-payment-method@3.6.4
|
|
15
|
+
- @graphcommerce/magento-cart@4.9.0
|
|
16
|
+
- @graphcommerce/magento-store@4.3.2
|
|
17
|
+
- @graphcommerce/image@3.1.10
|
|
18
|
+
|
|
3
19
|
## 3.1.32
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/index.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { purchaseorder } from './PurchaseOrder'
|
|
2
|
-
import { banktransfer, checkmo, free } from './methods'
|
|
2
|
+
import { banktransfer, checkmo, free, cashondelivery } from './methods'
|
|
3
3
|
|
|
4
4
|
export const included_methods = {
|
|
5
5
|
purchaseorder,
|
|
6
6
|
banktransfer,
|
|
7
7
|
checkmo,
|
|
8
|
+
cashondelivery,
|
|
8
9
|
free,
|
|
9
10
|
}
|
package/methods.tsx
CHANGED
|
@@ -18,3 +18,8 @@ export const free: PaymentModule = {
|
|
|
18
18
|
PaymentOptions: PaymentMethodOptionsNoop,
|
|
19
19
|
PaymentPlaceOrder: PaymentMethodPlaceOrderNoop,
|
|
20
20
|
}
|
|
21
|
+
|
|
22
|
+
export const cashondelivery: PaymentModule = {
|
|
23
|
+
PaymentOptions: PaymentMethodOptionsNoop,
|
|
24
|
+
PaymentPlaceOrder: PaymentMethodPlaceOrderNoop,
|
|
25
|
+
}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-payment-included",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "3.
|
|
5
|
+
"version": "3.2.0",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -13,21 +13,21 @@
|
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@graphcommerce/eslint-config-pwa": "^4.1.10",
|
|
16
|
-
"@graphcommerce/magento-cart-shipping-address": "3.5.
|
|
17
|
-
"@graphcommerce/magento-product": "4.7.
|
|
18
|
-
"@graphcommerce/magento-product-configurable": "4.3.
|
|
16
|
+
"@graphcommerce/magento-cart-shipping-address": "3.5.4",
|
|
17
|
+
"@graphcommerce/magento-product": "4.7.3",
|
|
18
|
+
"@graphcommerce/magento-product-configurable": "4.3.5",
|
|
19
19
|
"@graphcommerce/prettier-config-pwa": "^4.0.6",
|
|
20
20
|
"@graphcommerce/typescript-config-pwa": "^4.0.4",
|
|
21
21
|
"@playwright/test": "^1.21.1",
|
|
22
22
|
"type-fest": "^2.12.2"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@graphcommerce/graphql": "3.
|
|
26
|
-
"@graphcommerce/image": "3.1.
|
|
27
|
-
"@graphcommerce/magento-cart": "4.
|
|
28
|
-
"@graphcommerce/magento-cart-payment-method": "3.6.
|
|
29
|
-
"@graphcommerce/magento-store": "4.3.
|
|
30
|
-
"@graphcommerce/next-ui": "4.28.
|
|
25
|
+
"@graphcommerce/graphql": "3.5.0",
|
|
26
|
+
"@graphcommerce/image": "3.1.10",
|
|
27
|
+
"@graphcommerce/magento-cart": "4.9.0",
|
|
28
|
+
"@graphcommerce/magento-cart-payment-method": "3.6.4",
|
|
29
|
+
"@graphcommerce/magento-store": "4.3.2",
|
|
30
|
+
"@graphcommerce/next-ui": "4.28.1",
|
|
31
31
|
"@graphcommerce/react-hook-form": "3.3.5"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|