payment-kit 1.13.129 → 1.13.130

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/blocklet.yml CHANGED
@@ -14,7 +14,7 @@ repository:
14
14
  type: git
15
15
  url: git+https://github.com/blocklet/payment-kit.git
16
16
  specVersion: 1.2.8
17
- version: 1.13.129
17
+ version: 1.13.130
18
18
  logo: logo.png
19
19
  files:
20
20
  - dist
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "payment-kit",
3
- "version": "1.13.129",
3
+ "version": "1.13.130",
4
4
  "scripts": {
5
5
  "dev": "cross-env COMPONENT_STORE_URL=https://test.store.blocklet.dev blocklet dev",
6
6
  "eject": "vite eject",
@@ -50,7 +50,7 @@
50
50
  "@arcblock/jwt": "^1.18.108",
51
51
  "@arcblock/ux": "^2.9.23",
52
52
  "@blocklet/logger": "1.16.23-beta-aeb9f5bd",
53
- "@blocklet/payment-react": "1.13.129",
53
+ "@blocklet/payment-react": "1.13.130",
54
54
  "@blocklet/sdk": "1.16.23-beta-aeb9f5bd",
55
55
  "@blocklet/ui-react": "^2.9.23",
56
56
  "@blocklet/uploader": "^0.0.69",
@@ -110,7 +110,7 @@
110
110
  "devDependencies": {
111
111
  "@abtnode/types": "1.16.23-beta-aeb9f5bd",
112
112
  "@arcblock/eslint-config-ts": "^0.2.4",
113
- "@blocklet/payment-types": "1.13.129",
113
+ "@blocklet/payment-types": "1.13.130",
114
114
  "@types/cookie-parser": "^1.4.6",
115
115
  "@types/cors": "^2.8.17",
116
116
  "@types/dotenv-flow": "^3.3.3",
@@ -149,5 +149,5 @@
149
149
  "parser": "typescript"
150
150
  }
151
151
  },
152
- "gitHead": "4ad81bea01de3268d9cf0bda552a0a0a67abd85d"
152
+ "gitHead": "95aaa56f16ce303e514aa7dde9e542628d7acd2c"
153
153
  }
package/src/app.tsx CHANGED
@@ -4,6 +4,7 @@ import Center from '@arcblock/ux/lib/Center';
4
4
  import { LocaleProvider } from '@arcblock/ux/lib/Locale/context';
5
5
  import { ThemeProvider, createTheme } from '@arcblock/ux/lib/Theme';
6
6
  import { ToastProvider } from '@arcblock/ux/lib/Toast';
7
+ import { MiniInvoiceList } from '@blocklet/payment-react';
7
8
  import { CircularProgress } from '@mui/material';
8
9
  import React, { Suspense } from 'react';
9
10
  import { ErrorBoundary } from 'react-error-boundary';
@@ -77,6 +78,7 @@ function App() {
77
78
  </Layout>
78
79
  }
79
80
  />
81
+ <Route key="subscription-embed" path="/customer/embed/subscription" element={<MiniInvoiceList />} />,
80
82
  <Route
81
83
  key="customer-invoice"
82
84
  path="/customer/invoice/:id"