payment-kit 1.15.12 → 1.15.13
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/api/src/routes/connect/shared.ts +13 -1
- package/blocklet.yml +1 -1
- package/package.json +4 -4
|
@@ -107,6 +107,7 @@ export async function ensurePaymentIntent(checkoutSessionId: string, userDid?: s
|
|
|
107
107
|
if (!user) {
|
|
108
108
|
throw new Error('Seems you have not connected to this app before');
|
|
109
109
|
}
|
|
110
|
+
|
|
110
111
|
if (customer.did !== user.did) {
|
|
111
112
|
throw new Error('This is not your payment intent');
|
|
112
113
|
}
|
|
@@ -174,6 +175,10 @@ export async function ensureSetupIntent(checkoutSessionId: string, userDid?: str
|
|
|
174
175
|
}
|
|
175
176
|
if (userDid) {
|
|
176
177
|
const { user } = await blocklet.getUser(userDid, { enableConnectedAccount: true });
|
|
178
|
+
if (!user) {
|
|
179
|
+
throw new Error('Seems you have not connected to this app before');
|
|
180
|
+
}
|
|
181
|
+
|
|
177
182
|
if (customer.did !== user.did) {
|
|
178
183
|
throw new Error('This is not your setupIntent');
|
|
179
184
|
}
|
|
@@ -740,7 +745,14 @@ export async function getStakeTxClaim({
|
|
|
740
745
|
const threshold = fromTokenToUnit(Math.max(billingThreshold, minStakeAmount), paymentCurrency.decimal);
|
|
741
746
|
const staking = getSubscriptionStakeSetup(items, paymentCurrency.id, threshold.toString());
|
|
742
747
|
const amount = staking.licensed.add(staking.metered).toString();
|
|
743
|
-
logger.info('getStakeTxClaim', {
|
|
748
|
+
logger.info('getStakeTxClaim', {
|
|
749
|
+
subscriptionId: subscription.id,
|
|
750
|
+
billingThreshold,
|
|
751
|
+
minStakeAmount,
|
|
752
|
+
threshold: threshold.toString(),
|
|
753
|
+
staking,
|
|
754
|
+
amount: amount.toString(),
|
|
755
|
+
});
|
|
744
756
|
|
|
745
757
|
if (paymentMethod.type === 'arcblock') {
|
|
746
758
|
// create staking data
|
package/blocklet.yml
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "payment-kit",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.13",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "blocklet dev --open",
|
|
6
6
|
"eject": "vite eject",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@arcblock/validator": "^1.18.135",
|
|
53
53
|
"@blocklet/js-sdk": "^1.16.32",
|
|
54
54
|
"@blocklet/logger": "^1.16.32",
|
|
55
|
-
"@blocklet/payment-react": "1.15.
|
|
55
|
+
"@blocklet/payment-react": "1.15.13",
|
|
56
56
|
"@blocklet/sdk": "^1.16.32",
|
|
57
57
|
"@blocklet/ui-react": "^2.10.39",
|
|
58
58
|
"@blocklet/uploader": "^0.1.40",
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"devDependencies": {
|
|
119
119
|
"@abtnode/types": "^1.16.32",
|
|
120
120
|
"@arcblock/eslint-config-ts": "^0.3.2",
|
|
121
|
-
"@blocklet/payment-types": "1.15.
|
|
121
|
+
"@blocklet/payment-types": "1.15.13",
|
|
122
122
|
"@types/cookie-parser": "^1.4.7",
|
|
123
123
|
"@types/cors": "^2.8.17",
|
|
124
124
|
"@types/debug": "^4.1.12",
|
|
@@ -160,5 +160,5 @@
|
|
|
160
160
|
"parser": "typescript"
|
|
161
161
|
}
|
|
162
162
|
},
|
|
163
|
-
"gitHead": "
|
|
163
|
+
"gitHead": "17f736f8f3ea85502eb19d7107b5a0b00d03b754"
|
|
164
164
|
}
|