@blocklet/payment-types 1.13.223 → 1.13.225
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/lib/index.d.ts +1 -0
- package/lib/types.d.ts +2 -0
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -119,6 +119,7 @@ export type TPaymentMethodExpanded = TPaymentMethod & {
|
|
|
119
119
|
};
|
|
120
120
|
export type TPaymentCurrencyExpanded = TPaymentCurrency & {
|
|
121
121
|
object: 'payment_currency';
|
|
122
|
+
paymentMethod: TPaymentMethod;
|
|
122
123
|
};
|
|
123
124
|
export type TCheckoutSessionExpanded = TCheckoutSession & {
|
|
124
125
|
object: 'checkout_session';
|
package/lib/types.d.ts
CHANGED
|
@@ -181,9 +181,11 @@ export type SubscriptionSchedulePhase = {
|
|
|
181
181
|
export type PaymentMethodOptions = {
|
|
182
182
|
arcblock?: {
|
|
183
183
|
payer: string;
|
|
184
|
+
hash?: string;
|
|
184
185
|
};
|
|
185
186
|
ethereum?: {
|
|
186
187
|
payer: string;
|
|
188
|
+
hash?: string;
|
|
187
189
|
};
|
|
188
190
|
stripe?: {
|
|
189
191
|
payer: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blocklet/payment-types",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.225",
|
|
4
4
|
"description": "Typings for Payment Kit SDK",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"types",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"sequelize": "^6.36.0",
|
|
49
49
|
"type-fest": "^4.10.2"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "e5e5f94d4f17d582d7266b063dda56d09ffadf7c"
|
|
52
52
|
}
|