@blocklet/payment-react 1.13.191 → 1.13.192

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.
@@ -52,7 +52,8 @@ export default function MiniInvoiceList() {
52
52
  pageSize: 20,
53
53
  status: "open,paid,uncollectible",
54
54
  subscription_id: subscriptionId,
55
- authToken
55
+ authToken,
56
+ ignoreZero: true
56
57
  })
57
58
  );
58
59
  if (error) {
@@ -46,7 +46,8 @@ function MiniInvoiceList() {
46
46
  pageSize: 20,
47
47
  status: "open,paid,uncollectible",
48
48
  subscription_id: subscriptionId,
49
- authToken
49
+ authToken,
50
+ ignoreZero: true
50
51
  }));
51
52
  if (error) {
52
53
  return /* @__PURE__ */(0, _jsxRuntime.jsx)(Position, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blocklet/payment-react",
3
- "version": "1.13.191",
3
+ "version": "1.13.192",
4
4
  "description": "Reusable react components for payment kit v2",
5
5
  "keywords": [
6
6
  "react",
@@ -90,7 +90,7 @@
90
90
  "@babel/core": "^7.23.9",
91
91
  "@babel/preset-env": "^7.23.9",
92
92
  "@babel/preset-react": "^7.23.3",
93
- "@blocklet/payment-types": "1.13.191",
93
+ "@blocklet/payment-types": "1.13.192",
94
94
  "@storybook/addon-essentials": "^7.6.13",
95
95
  "@storybook/addon-interactions": "^7.6.13",
96
96
  "@storybook/addon-links": "^7.6.13",
@@ -119,5 +119,5 @@
119
119
  "vite-plugin-babel": "^1.2.0",
120
120
  "vite-plugin-node-polyfills": "^0.19.0"
121
121
  },
122
- "gitHead": "943a116e9a91e634829cf12f40f62f36e35a7321"
122
+ "gitHead": "b29465e659ea2f6ddd8cb822bc3608947d81aac8"
123
123
  }
@@ -61,6 +61,7 @@ export default function MiniInvoiceList() {
61
61
  status: 'open,paid,uncollectible',
62
62
  subscription_id: subscriptionId,
63
63
  authToken,
64
+ ignoreZero: true,
64
65
  })
65
66
  );
66
67