@blocklet/payment-types 1.21.17 → 1.22.1
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/customer.d.ts +2 -2
- package/lib/types.d.ts +1 -1
- package/package.json +2 -2
package/lib/customer.d.ts
CHANGED
|
@@ -131,13 +131,13 @@ export declare class Customer extends Model<InferAttributes<Customer>, InferCrea
|
|
|
131
131
|
decreaseTokenBalance(currencyId: string, amount: string, dryRun?: boolean): Promise<{
|
|
132
132
|
starting: Record<string, string>;
|
|
133
133
|
ending: {
|
|
134
|
-
[x: string]:
|
|
134
|
+
[x: string]: string;
|
|
135
135
|
};
|
|
136
136
|
}>;
|
|
137
137
|
increaseTokenBalance(currencyId: string, amount: string, dryRun?: boolean): Promise<{
|
|
138
138
|
starting: Record<string, string>;
|
|
139
139
|
ending: {
|
|
140
|
-
[x: string]:
|
|
140
|
+
[x: string]: string;
|
|
141
141
|
};
|
|
142
142
|
}>;
|
|
143
143
|
static initialize(sequelize: any): void;
|
package/lib/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blocklet/payment-types",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.22.1",
|
|
4
4
|
"description": "Typings for Payment Kit SDK",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"types",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"sequelize": "^6.37.7",
|
|
49
49
|
"type-fest": "^4.41.0"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "8db720c3902e307a6d869ff706ae4857f88cf867"
|
|
52
52
|
}
|