mezon-js 2.10.74 → 2.10.75
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.gen.ts +4 -0
- package/dist/api.gen.d.ts +2 -0
- package/package.json +1 -1
package/api.gen.ts
CHANGED
|
@@ -2304,6 +2304,8 @@ export interface ApiTransactionDetail {
|
|
|
2304
2304
|
//
|
|
2305
2305
|
create_time?: string;
|
|
2306
2306
|
//
|
|
2307
|
+
update_time?: string;
|
|
2308
|
+
//
|
|
2307
2309
|
receiver_id?: string;
|
|
2308
2310
|
//
|
|
2309
2311
|
receiver_username?: string;
|
|
@@ -2312,6 +2314,8 @@ export interface ApiTransactionDetail {
|
|
|
2312
2314
|
//
|
|
2313
2315
|
sender_username?: string;
|
|
2314
2316
|
//
|
|
2317
|
+
metadata?: string;
|
|
2318
|
+
//
|
|
2315
2319
|
trans_id?: string;
|
|
2316
2320
|
}
|
|
2317
2321
|
|
package/dist/api.gen.d.ts
CHANGED
|
@@ -1333,10 +1333,12 @@ export interface ApiTokenSentEvent {
|
|
|
1333
1333
|
export interface ApiTransactionDetail {
|
|
1334
1334
|
amount?: number;
|
|
1335
1335
|
create_time?: string;
|
|
1336
|
+
update_time?: string;
|
|
1336
1337
|
receiver_id?: string;
|
|
1337
1338
|
receiver_username?: string;
|
|
1338
1339
|
sender_id?: string;
|
|
1339
1340
|
sender_username?: string;
|
|
1341
|
+
metadata?: string;
|
|
1340
1342
|
trans_id?: string;
|
|
1341
1343
|
}
|
|
1342
1344
|
/** Update a user's account details. */
|