wapi-client 0.9.2 → 0.9.4
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/dist/api/ws-client.cjs +1 -1
- package/dist/api/ws-client.js +1 -1
- package/dist/client.cjs +1 -1
- package/dist/client.d.ts +4 -4
- package/dist/client.js +1 -1
- package/dist/fns/aggregate-transfers/aggregate-transfers.d.ts +1 -1
- package/dist/fns/find-tokens/find-tokens.enums.d.ts +2 -3
- package/dist/fns/find-tokens/find-tokens.schema.input.json +1 -16
- package/dist/fns/find-transfer-groups/find-transfer-groups.enums.d.ts +2 -8
- package/dist/fns/find-transfer-groups/find-transfer-groups.schema.input.json +3 -34
- package/dist/fns/find-wallets/find-wallets.enums.d.ts +1 -1
- package/dist/fns/reverse-transfers/reverse-transfers.d.ts +1 -1
- package/dist/fns/update-transfer-groups/update-transfer-groups.d.ts +1 -1
- package/dist/fns/update-transfers/update-transfers.d.ts +1 -1
- package/dist/lib/query-builder.d.ts +6 -8
- package/dist/txs/create-distribution/create-distribution.enums.d.ts +1 -1
- package/dist/txs/find-balance-many/find-balance-many.enums.d.ts +1 -1
- package/dist/txs/find-token-many/find-token-many.enums.d.ts +4 -3
- package/dist/txs/find-token-many/find-token-many.schema.input.json +6 -0
- package/dist/txs/find-token-many/find-token-many.schema.output.json +8 -1
- package/dist/txs/find-transfer-group-many/find-transfer-group-many.enums.d.ts +10 -4
- package/dist/txs/find-transfer-group-many/find-transfer-group-many.schema.input.json +4 -3
- package/dist/txs/find-transfer-group-many/find-transfer-group-many.schema.output.json +23 -1
- package/dist/txs/find-transfer-many/find-transfer-many.enums.d.ts +1 -1
- package/dist/txs/get-balance-history/get-balance-history.enums.d.ts +5 -1
- package/dist/txs/get-balance-history/get-balance-history.schema.output.json +7 -1
- package/dist/txs/get-token/get-token.enums.d.ts +43 -1
- package/dist/txs/get-token/get-token.schema.input.json +5 -1
- package/dist/txs/get-token/get-token.schema.output.json +63 -2
- package/dist/txs/get-token-many/get-token-many.enums.d.ts +6 -2
- package/dist/txs/get-token-many/get-token-many.schema.input.json +5 -0
- package/dist/txs/get-token-many/get-token-many.schema.output.json +3 -0
- package/dist/txs/update-transfer-group/update-transfer-group.enums.d.ts +1 -1
- package/dist/types/index.d.ts +91 -43
- package/dist/wapi-client-web.iife.js +1 -1
- package/dist/wapi-client.iife.js +1 -1
- package/package.json +2 -3
|
@@ -7,7 +7,14 @@
|
|
|
7
7
|
"properties": {
|
|
8
8
|
"token": {
|
|
9
9
|
"description": "requested token",
|
|
10
|
-
"
|
|
10
|
+
"anyOf": [
|
|
11
|
+
{
|
|
12
|
+
"$ref": "#/definitions/token"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"$ref": "#/definitions/token_with_balance"
|
|
16
|
+
}
|
|
17
|
+
]
|
|
11
18
|
}
|
|
12
19
|
},
|
|
13
20
|
"definitions": {
|
|
@@ -49,7 +56,61 @@
|
|
|
49
56
|
}
|
|
50
57
|
},
|
|
51
58
|
"required": ["id"],
|
|
52
|
-
"additionalProperties": false
|
|
59
|
+
"$typescript": "{\"additionalProperties\": false}"
|
|
60
|
+
},
|
|
61
|
+
"token_with_balance": {
|
|
62
|
+
"type": "object",
|
|
63
|
+
"allOf": [
|
|
64
|
+
{
|
|
65
|
+
"$ref": "#/definitions/token"
|
|
66
|
+
},
|
|
67
|
+
|
|
68
|
+
{
|
|
69
|
+
"$ref": "#/definitions/token_balance"
|
|
70
|
+
}
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
"token_balance": {
|
|
74
|
+
"type": "object",
|
|
75
|
+
"properties": {
|
|
76
|
+
"balance_transfer_id": {
|
|
77
|
+
"description": "Latest transfer id",
|
|
78
|
+
"$ref": "/db/transfer-log/transfer-log.schema.json#/properties/transfer_id"
|
|
79
|
+
},
|
|
80
|
+
"balance_pending_amount": {
|
|
81
|
+
"description": "Current pending balance",
|
|
82
|
+
"$ref": "/db/transfer-log/transfer-log.schema.json#/properties/pending_amount"
|
|
83
|
+
},
|
|
84
|
+
"balance_pending_amount_to": {
|
|
85
|
+
"description": "Sum of incoming pending transfers",
|
|
86
|
+
"$ref": "/db/transfer-log/transfer-log.schema.json#/properties/pending_amount_to"
|
|
87
|
+
},
|
|
88
|
+
"balance_pending_amount_from": {
|
|
89
|
+
"description": "Sum of outgoing pending transfers",
|
|
90
|
+
"$ref": "/db/transfer-log/transfer-log.schema.json#/properties/pending_amount_from"
|
|
91
|
+
},
|
|
92
|
+
"balance_finished_amount": {
|
|
93
|
+
"description": "Current finished balance",
|
|
94
|
+
"$ref": "/db/transfer-log/transfer-log.schema.json#/properties/finished_amount"
|
|
95
|
+
},
|
|
96
|
+
"balance_amount": {
|
|
97
|
+
"description": "Current finished and pending balance sum",
|
|
98
|
+
"type": "number"
|
|
99
|
+
},
|
|
100
|
+
"balance_available_balance": {
|
|
101
|
+
"description": "Available balance that is sum of pending_amount_from and finished_amount",
|
|
102
|
+
"$ref": "/db/transfer-log/transfer-log.schema.json#/properties/available_balance"
|
|
103
|
+
},
|
|
104
|
+
"balance_latest_control_hash": {
|
|
105
|
+
"description": "Latest control_hash associated with wallet token combination",
|
|
106
|
+
"$ref": "/db/transfer-log/transfer-log.schema.json#/properties/latest_control_hash"
|
|
107
|
+
},
|
|
108
|
+
"balance_updated_at": {
|
|
109
|
+
"description": "Last modification date of balance",
|
|
110
|
+
"$ref": "/db/transfer-log/transfer-log.schema.json#/properties/created_at"
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
"$typescript": "{\"additionalProperties\": false}"
|
|
53
114
|
}
|
|
54
115
|
},
|
|
55
116
|
"additionalProperties": false
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { UniqueTokenFilter } from '../get-token/get-token.enums';
|
|
1
|
+
import { TokenWithBalance, UniqueTokenFilter } from '../get-token/get-token.enums';
|
|
2
2
|
import { ITxGeneralOptions } from '../tx-consts.enums';
|
|
3
3
|
import { TokenTable, TokenTableOptional } from '../../db/token/token.enums';
|
|
4
4
|
/**
|
|
@@ -14,6 +14,10 @@ export interface GetTokenManyAdditionalOptions {
|
|
|
14
14
|
* If true then the returning object is only guaranteed to have id
|
|
15
15
|
*/
|
|
16
16
|
return_only_id?: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* Return the total system balance of token
|
|
19
|
+
*/
|
|
20
|
+
include_balance?: boolean;
|
|
17
21
|
}
|
|
18
22
|
export type GetTokenManyTxOptions = ITxGeneralOptions & GetTokenManyAdditionalOptions;
|
|
19
23
|
/**
|
|
@@ -25,7 +29,7 @@ export interface GetTokenManyTxInput {
|
|
|
25
29
|
tokens: UniqueTokenFilter[];
|
|
26
30
|
options?: GetTokenManyTxOptions;
|
|
27
31
|
}
|
|
28
|
-
export type TokenResult = TokenTable | TokenTableOptional | null;
|
|
32
|
+
export type TokenResult = TokenTable | TokenTableOptional | TokenWithBalance | null;
|
|
29
33
|
/**
|
|
30
34
|
* Output of getTokenMany
|
|
31
35
|
*
|
|
@@ -41,6 +41,11 @@
|
|
|
41
41
|
"type": "boolean",
|
|
42
42
|
"description": "If true then the returning object is only guaranteed to have id",
|
|
43
43
|
"default": false
|
|
44
|
+
},
|
|
45
|
+
"include_balance": {
|
|
46
|
+
"type": "boolean",
|
|
47
|
+
"description": "Return the total system balance of token",
|
|
48
|
+
"default": false
|
|
44
49
|
}
|
|
45
50
|
},
|
|
46
51
|
"default": {},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { UniqueTransferGroupFilter } from '../get-transfer-group/get-transfer-group.enums';
|
|
2
2
|
import { ITxGeneralOptionsWithoutTx, ITxMetadataAction } from '../tx-consts.enums';
|
|
3
|
-
import { TransferGroupTable } from '../../db/transfer-group/transfer-group.enums';
|
|
4
3
|
import { TransferGroupStatus, TransferStatus } from '../../db/consts.enums';
|
|
4
|
+
import { TransferGroupTable } from '../../db/transfer-group/transfer-group.enums';
|
|
5
5
|
import { Transfer } from '../get-transfer/get-transfer.enums';
|
|
6
6
|
/**
|
|
7
7
|
* Optional flags for input
|
package/dist/types/index.d.ts
CHANGED
|
@@ -2564,7 +2564,7 @@ declare module 'wapi-client/lib/query-builder' {
|
|
|
2564
2564
|
nulls?: 'first' | 'last';
|
|
2565
2565
|
};
|
|
2566
2566
|
export type QueryBuilderOrderingInput = string | QueryBuilderOrderingInputObject;
|
|
2567
|
-
export class QueryBuilderInterface<TableFields extends string, StringFields extends string, MetadataFields extends string, Result> extends QueryBuilderInner<TableFields, StringFields, MetadataFields, Result> {
|
|
2567
|
+
export class QueryBuilderInterface<TableFields extends string, StringFields extends string, MetadataFields extends string, Options, Result> extends QueryBuilderInner<TableFields, StringFields, MetadataFields, Result> {
|
|
2568
2568
|
private execFn;
|
|
2569
2569
|
protected optionsObject: {
|
|
2570
2570
|
[k: string]: unknown;
|
|
@@ -2579,9 +2579,7 @@ declare module 'wapi-client/lib/query-builder' {
|
|
|
2579
2579
|
});
|
|
2580
2580
|
private start;
|
|
2581
2581
|
toJSON(): BuiltQuery;
|
|
2582
|
-
options(optionsInput:
|
|
2583
|
-
[key: string]: unknown;
|
|
2584
|
-
}): this;
|
|
2582
|
+
options(optionsInput: Options): this;
|
|
2585
2583
|
then<TResult1 = Result, TResult2 = never>(onfulfilled?: (value: Result) => TResult1 | PromiseLike<TResult1>, onrejected?: (reason: Error) => TResult2 | PromiseLike<TResult2>): Promise<TResult1 | TResult2>;
|
|
2586
2584
|
catch<TResult2 = never>(onerror: (reason: Error) => TResult2 | PromiseLike<TResult2>): Promise<Result | TResult2>;
|
|
2587
2585
|
stream(): ReadStream;
|
|
@@ -2616,7 +2614,7 @@ declare module 'wapi-client/lib/query-builder' {
|
|
|
2616
2614
|
*
|
|
2617
2615
|
* ```
|
|
2618
2616
|
*/
|
|
2619
|
-
export class QueryBuilder<TableFields extends string, StringFields extends string, MetadataFields extends string, ResultFields extends string, Options extends BaseOptions, Result> extends QueryBuilderInterface<TableFields, StringFields, MetadataFields, Result> {
|
|
2617
|
+
export class QueryBuilder<TableFields extends string, StringFields extends string, MetadataFields extends string, ResultFields extends string, Options extends BaseOptions, Result> extends QueryBuilderInterface<TableFields, StringFields, MetadataFields, Options, Result> {
|
|
2620
2618
|
constructor({ start, modifiers, optionsModifiers, }: {
|
|
2621
2619
|
start: (query: BuiltQuery) => StreamPromise<Result>;
|
|
2622
2620
|
modifiers?: (field: TableFields | StringFields | MetadataFields, value: Primitive | {
|
|
@@ -2659,7 +2657,7 @@ declare module 'wapi-client/lib/query-builder' {
|
|
|
2659
2657
|
*
|
|
2660
2658
|
* ```
|
|
2661
2659
|
*/
|
|
2662
|
-
export class AggregateQueryBuilder<TableFields extends string, StringFields extends string, MetadataFields extends string, GroupFields extends string, Result> extends QueryBuilderInterface<TableFields, StringFields, MetadataFields, Result> {
|
|
2660
|
+
export class AggregateQueryBuilder<TableFields extends string, StringFields extends string, MetadataFields extends string, GroupFields extends string, Options, Result> extends QueryBuilderInterface<TableFields, StringFields, MetadataFields, Options, Result> {
|
|
2663
2661
|
private aggregatorObject;
|
|
2664
2662
|
private timezoneString;
|
|
2665
2663
|
constructor({ start, modifiers, optionsModifiers, }: {
|
|
@@ -2679,7 +2677,7 @@ declare module 'wapi-client/lib/query-builder' {
|
|
|
2679
2677
|
max(input?: string): this;
|
|
2680
2678
|
sum(input?: string): this;
|
|
2681
2679
|
}
|
|
2682
|
-
export class UpdateQueryBuilder<TableFields extends string, StringFields extends string, MetadataFields extends string, ResultFields extends string, UpdateFields, Result> extends QueryBuilderInterface<TableFields, StringFields, MetadataFields, Result> {
|
|
2680
|
+
export class UpdateQueryBuilder<TableFields extends string, StringFields extends string, MetadataFields extends string, ResultFields extends string, UpdateFields, Options, Result> extends QueryBuilderInterface<TableFields, StringFields, MetadataFields, Options, Result> {
|
|
2683
2681
|
private updateObject;
|
|
2684
2682
|
constructor({ start, modifiers, optionsModifiers, }: {
|
|
2685
2683
|
start?: (query: BuiltUpdateQuery) => StreamPromise<Result>;
|
|
@@ -2691,7 +2689,7 @@ declare module 'wapi-client/lib/query-builder' {
|
|
|
2691
2689
|
toJSON(): BuiltUpdateQuery;
|
|
2692
2690
|
update(updateData: UpdateFields): this;
|
|
2693
2691
|
}
|
|
2694
|
-
export class ReverseQueryBuilder<TableFields extends string, StringFields extends string, MetadataFields extends string, ReverseModifications, Result> extends QueryBuilderInterface<TableFields, StringFields, MetadataFields, Result> {
|
|
2692
|
+
export class ReverseQueryBuilder<TableFields extends string, StringFields extends string, MetadataFields extends string, ReverseModifications, Options, Result> extends QueryBuilderInterface<TableFields, StringFields, MetadataFields, Options, Result> {
|
|
2695
2693
|
private reverseModifications;
|
|
2696
2694
|
constructor({ start, modifiers, optionsModifiers, }: {
|
|
2697
2695
|
start?: (query: BuiltReverseQuery) => StreamPromise<Result>;
|
|
@@ -3222,6 +3220,10 @@ declare module 'wapi-client/txs/get-token/get-token.enums' {
|
|
|
3222
3220
|
* If true then the returning object is only guaranteed to have id
|
|
3223
3221
|
*/
|
|
3224
3222
|
return_only_id?: boolean;
|
|
3223
|
+
/**
|
|
3224
|
+
* Return the total system balance of token
|
|
3225
|
+
*/
|
|
3226
|
+
include_balance?: boolean;
|
|
3225
3227
|
}
|
|
3226
3228
|
/**
|
|
3227
3229
|
* ID based filter for token
|
|
@@ -3311,6 +3313,44 @@ declare module 'wapi-client/txs/get-token/get-token.enums' {
|
|
|
3311
3313
|
*/
|
|
3312
3314
|
belongs_to_foreign?: string | null;
|
|
3313
3315
|
}
|
|
3316
|
+
export interface TokenWithBalance extends Token {
|
|
3317
|
+
/**
|
|
3318
|
+
* Latest transfer affecting the balance
|
|
3319
|
+
*/
|
|
3320
|
+
balance_transfer_id: number | null;
|
|
3321
|
+
/**
|
|
3322
|
+
* Current pending balance
|
|
3323
|
+
*/
|
|
3324
|
+
balance_pending_amount: number | null;
|
|
3325
|
+
/**
|
|
3326
|
+
* Sum of incoming pending transfers
|
|
3327
|
+
*/
|
|
3328
|
+
balance_pending_amount_to: number | null;
|
|
3329
|
+
/**
|
|
3330
|
+
* Sum of outgoing pending transfers
|
|
3331
|
+
*/
|
|
3332
|
+
balance_pending_amount_from: number | null;
|
|
3333
|
+
/**
|
|
3334
|
+
* Current finished balance
|
|
3335
|
+
*/
|
|
3336
|
+
balance_finished_amount: number | null;
|
|
3337
|
+
/**
|
|
3338
|
+
* Current finished and pending balance sum
|
|
3339
|
+
*/
|
|
3340
|
+
balance_amount: number | null;
|
|
3341
|
+
/**
|
|
3342
|
+
* Available balance that is sum of pending_amount_from and finished_amount
|
|
3343
|
+
*/
|
|
3344
|
+
balance_available_balance: number | null;
|
|
3345
|
+
/**
|
|
3346
|
+
* Latest control_hash associated with wallet token combination
|
|
3347
|
+
*/
|
|
3348
|
+
balance_latest_control_hash: number | null;
|
|
3349
|
+
/**
|
|
3350
|
+
* Last modification date of balance
|
|
3351
|
+
*/
|
|
3352
|
+
balance_updated_at: number | null;
|
|
3353
|
+
}
|
|
3314
3354
|
/**
|
|
3315
3355
|
* Output of getToken
|
|
3316
3356
|
*
|
|
@@ -3320,7 +3360,7 @@ declare module 'wapi-client/txs/get-token/get-token.enums' {
|
|
|
3320
3360
|
/**
|
|
3321
3361
|
* requested token
|
|
3322
3362
|
*/
|
|
3323
|
-
token?: Token;
|
|
3363
|
+
token?: Token | TokenWithBalance;
|
|
3324
3364
|
}
|
|
3325
3365
|
}
|
|
3326
3366
|
declare module 'wapi-client/txs/get-transfer-group/get-transfer-group.enums' {
|
|
@@ -3734,8 +3774,8 @@ declare module 'wapi-client/txs/get-transfer/get-transfer.enums' {
|
|
|
3734
3774
|
declare module 'wapi-client/txs/find-transfer-many/find-transfer-many.enums' {
|
|
3735
3775
|
import { ITxLimitingOptions, ITxGeneralOptions, ITxSelectOptions, ITxDeselectOptions, ITxMetadataOptions, ITxOrderingInput, ITxFindMetadata } from 'wapi-client/txs/tx-consts.enums';
|
|
3736
3776
|
import { UniqueWalletFilter } from 'wapi-client/txs/get-wallet/get-wallet.enums';
|
|
3737
|
-
import { DbFilterMetadata, DbFilterFunctionWhereInner, DbFilterFunctionWherePrimitive, DbFilterFunctionWherePrimitiveForeign, DbFilterFunctionWherePrimitiveIdentifier, DbFilterFunctionWhereObject, DbFilterFunctionWhereIns, DbFilterFunctionWhereNulls, DbFilterFunctionWhereMetadataIns, DbFilterFunctionWhereMetadataPrimitive, DbFilterFunctionWhereMetadataNulls } from 'wapi-client/db/consts.enums';
|
|
3738
3777
|
import { TransferTableAccessibleFields } from 'wapi-client/db/transfer/transfer.enums';
|
|
3778
|
+
import { DbFilterMetadata, DbFilterFunctionWhereInner, DbFilterFunctionWherePrimitive, DbFilterFunctionWherePrimitiveForeign, DbFilterFunctionWherePrimitiveIdentifier, DbFilterFunctionWhereObject, DbFilterFunctionWhereIns, DbFilterFunctionWhereNulls, DbFilterFunctionWhereMetadataIns, DbFilterFunctionWhereMetadataPrimitive, DbFilterFunctionWhereMetadataNulls } from 'wapi-client/db/consts.enums';
|
|
3739
3779
|
import { UniqueTokenFilter } from 'wapi-client/txs/get-token/get-token.enums';
|
|
3740
3780
|
import { UniqueTransferGroupFilter } from 'wapi-client/txs/get-transfer-group/get-transfer-group.enums';
|
|
3741
3781
|
import { Transfer } from 'wapi-client/txs/get-transfer/get-transfer.enums';
|
|
@@ -4049,7 +4089,7 @@ declare module 'wapi-client/fns/aggregate-transfers/aggregate-transfers' {
|
|
|
4049
4089
|
* Aggregate Transfers using either a simple filter or queryBuilder
|
|
4050
4090
|
*
|
|
4051
4091
|
*/
|
|
4052
|
-
export function aggregateTransfers(options: ClientFunctionOptions): AggregateQueryBuilder<AggregateTransfersFnFields, AggregateTransfersFnStringFields, AggregateTransfersFnMetadataFields, AggregateTransfersFnGroupFields, AggregateTransfersFnOutput>;
|
|
4092
|
+
export function aggregateTransfers(options: ClientFunctionOptions): AggregateQueryBuilder<AggregateTransfersFnFields, AggregateTransfersFnStringFields, AggregateTransfersFnMetadataFields, AggregateTransfersFnGroupFields, AggregateTransfersFnOptions, AggregateTransfersFnOutput>;
|
|
4053
4093
|
export function aggregateTransfers(options: ClientFunctionOptions, input: AggregateTransfersFnInput, fnOptions?: AggregateTransfersFnOptions): StreamPromise<AggregateTransfersFnOutput>;
|
|
4054
4094
|
}
|
|
4055
4095
|
declare module 'wapi-client/txs/create-access-token/create-access-token.enums' {
|
|
@@ -6291,8 +6331,8 @@ declare module 'wapi-client/db/transfer-log/transfer-log.enums' {
|
|
|
6291
6331
|
}
|
|
6292
6332
|
declare module 'wapi-client/txs/find-balance-many/find-balance-many.enums' {
|
|
6293
6333
|
import { ITxLimitingOptions, ITxGeneralOptions, ITxSelectOptions, ITxDeselectOptions, ITxMetadataOptions, ITxOrderingInput, ITxFindMetadata } from 'wapi-client/txs/tx-consts.enums';
|
|
6294
|
-
import { DbFilterMetadata, DbFilterFunctionWhereInner, DbFilterFunctionWherePrimitive, DbFilterFunctionWherePrimitiveForeign, DbFilterFunctionWhereObject, DbFilterFunctionWhereIns, DbFilterFunctionWhereNulls, DbFilterFunctionWhereMetadataIns, DbFilterFunctionWhereMetadataNulls } from 'wapi-client/db/consts.enums';
|
|
6295
6334
|
import { TransferLogTableFields } from 'wapi-client/db/transfer-log/transfer-log.enums';
|
|
6335
|
+
import { DbFilterMetadata, DbFilterFunctionWhereInner, DbFilterFunctionWherePrimitive, DbFilterFunctionWherePrimitiveForeign, DbFilterFunctionWhereObject, DbFilterFunctionWhereIns, DbFilterFunctionWhereNulls, DbFilterFunctionWhereMetadataIns, DbFilterFunctionWhereMetadataNulls } from 'wapi-client/db/consts.enums';
|
|
6296
6336
|
import { UniqueWalletFilter } from 'wapi-client/txs/get-wallet/get-wallet.enums';
|
|
6297
6337
|
import { UniqueTokenFilter } from 'wapi-client/txs/get-token/get-token.enums';
|
|
6298
6338
|
import { UniqueTransferFilter } from 'wapi-client/txs/get-transfer/get-transfer.enums';
|
|
@@ -6443,14 +6483,15 @@ declare module 'wapi-client/fns/find-balances/find-balances' {
|
|
|
6443
6483
|
}
|
|
6444
6484
|
declare module 'wapi-client/txs/find-token-many/find-token-many.enums' {
|
|
6445
6485
|
import { ITxLimitingOptions, ITxGeneralOptions, ITxSelectOptions, ITxDeselectOptions, ITxMetadataOptions, ITxOrderingInput, ITxFindMetadata } from 'wapi-client/txs/tx-consts.enums';
|
|
6446
|
-
import { DbFilterMetadata, DbFilterFunctionWhereInner, DbFilterFunctionWherePrimitive, DbFilterFunctionWherePrimitiveForeign, DbFilterFunctionWhereObject, DbFilterFunctionWhereIns, DbFilterFunctionWhereNulls, DbFilterFunctionWhereMetadataIns, DbFilterFunctionWhereMetadataPrimitive, DbFilterFunctionWhereMetadataNulls } from 'wapi-client/db/consts.enums';
|
|
6447
6486
|
import { TokenTableFields } from 'wapi-client/db/token/token.enums';
|
|
6487
|
+
import { DbFilterMetadata, DbFilterFunctionWhereInner, DbFilterFunctionWherePrimitive, DbFilterFunctionWherePrimitiveForeign, DbFilterFunctionWhereObject, DbFilterFunctionWhereIns, DbFilterFunctionWhereNulls, DbFilterFunctionWhereMetadataIns, DbFilterFunctionWhereMetadataPrimitive, DbFilterFunctionWhereMetadataNulls } from 'wapi-client/db/consts.enums';
|
|
6448
6488
|
import { UniqueWalletFilter } from 'wapi-client/txs/get-wallet/get-wallet.enums';
|
|
6449
|
-
import { Token } from 'wapi-client/txs/get-token/get-token.enums';
|
|
6489
|
+
import { Token, TokenWithBalance } from 'wapi-client/txs/get-token/get-token.enums';
|
|
6450
6490
|
/**
|
|
6451
6491
|
* Optional flags for input
|
|
6452
6492
|
*/
|
|
6453
6493
|
export interface FindTokenManyAdditionalOptions {
|
|
6494
|
+
include_balance?: boolean;
|
|
6454
6495
|
}
|
|
6455
6496
|
/**
|
|
6456
6497
|
* Optional flags for input ordering
|
|
@@ -6521,20 +6562,19 @@ declare module 'wapi-client/txs/find-token-many/find-token-many.enums' {
|
|
|
6521
6562
|
/**
|
|
6522
6563
|
* Found tokens
|
|
6523
6564
|
*/
|
|
6524
|
-
tokens: Token[];
|
|
6565
|
+
tokens: Token[] | TokenWithBalance[];
|
|
6525
6566
|
metadata: ITxFindMetadata;
|
|
6526
6567
|
}
|
|
6527
6568
|
}
|
|
6528
6569
|
declare module 'wapi-client/fns/find-tokens/find-tokens.enums' {
|
|
6529
6570
|
import { DbFilterMetadata } from 'wapi-client/db/consts.enums';
|
|
6530
6571
|
import { IFnFindOptionsExtra } from 'wapi-client/fns/fn-consts.enums';
|
|
6531
|
-
import {
|
|
6532
|
-
import { FindTokenManyOrderingOptions, FindTokenManyTxOutput } from 'wapi-client/txs/find-token-many/find-token-many.enums';
|
|
6572
|
+
import { FindTokenManyTxOptions, FindTokenManyTxOutput } from 'wapi-client/txs/find-token-many/find-token-many.enums';
|
|
6533
6573
|
export type FindTokensFnInputStringFields = 'foreign' | 'belongs_to';
|
|
6534
6574
|
/**
|
|
6535
6575
|
* findtokens function options
|
|
6536
6576
|
*/
|
|
6537
|
-
export type FindTokensFnOptions = IFnFindOptionsExtra &
|
|
6577
|
+
export type FindTokensFnOptions = IFnFindOptionsExtra & FindTokenManyTxOptions;
|
|
6538
6578
|
/**
|
|
6539
6579
|
* Input for findTokens
|
|
6540
6580
|
*
|
|
@@ -6589,15 +6629,14 @@ declare module 'wapi-client/fns/find-tokens/find-tokens' {
|
|
|
6589
6629
|
}
|
|
6590
6630
|
declare module 'wapi-client/txs/find-transfer-group-many/find-transfer-group-many.enums' {
|
|
6591
6631
|
import { ITxLimitingOptions, ITxGeneralOptions, ITxSelectOptions, ITxDeselectOptions, ITxMetadataOptions, ITxOrderingInput, ITxFindMetadata } from 'wapi-client/txs/tx-consts.enums';
|
|
6592
|
-
import {
|
|
6632
|
+
import { TransferGroupTableFields } from 'wapi-client/db/transfer-group/transfer-group.enums';
|
|
6593
6633
|
import { DbFilterMetadata, DbFilterFunctionWhereInner, DbFilterFunctionWherePrimitive, DbFilterFunctionWherePrimitiveIdentifier, DbFilterFunctionWhereObject, DbFilterFunctionWhereIns, DbFilterFunctionWhereNulls, DbFilterFunctionWhereMetadataIns, DbFilterFunctionWhereMetadataPrimitive, DbFilterFunctionWhereMetadataNulls } from 'wapi-client/db/consts.enums';
|
|
6594
6634
|
import { UniqueTransferGroupFilter, TransferGroup } from 'wapi-client/txs/get-transfer-group/get-transfer-group.enums';
|
|
6595
|
-
import { TransferGroupTableFields } from 'wapi-client/db/transfer-group/transfer-group.enums';
|
|
6596
6635
|
export interface FindTransferGroupManyAdditionalOptions {
|
|
6597
6636
|
/**
|
|
6598
6637
|
* Return running balance for each transfer_group for wallet in question
|
|
6599
6638
|
*/
|
|
6600
|
-
|
|
6639
|
+
return_transfers_count?: boolean;
|
|
6601
6640
|
}
|
|
6602
6641
|
/**
|
|
6603
6642
|
* Optional flags for input ordering
|
|
@@ -6672,29 +6711,30 @@ declare module 'wapi-client/txs/find-transfer-group-many/find-transfer-group-man
|
|
|
6672
6711
|
*
|
|
6673
6712
|
* @category Output
|
|
6674
6713
|
*/
|
|
6714
|
+
export interface TransferGroupTransfersCount {
|
|
6715
|
+
/**
|
|
6716
|
+
* Number of transfers in the transfer_group
|
|
6717
|
+
*/
|
|
6718
|
+
transfers_count?: number;
|
|
6719
|
+
}
|
|
6720
|
+
export type TransferGroupWithTransfersCount = TransferGroup & TransferGroupTransfersCount;
|
|
6675
6721
|
export interface FindTransferGroupManyTxOutput {
|
|
6676
6722
|
/**
|
|
6677
6723
|
* Found transfers
|
|
6678
6724
|
*/
|
|
6679
|
-
transfer_groups:
|
|
6725
|
+
transfer_groups: TransferGroupWithTransfersCount[];
|
|
6680
6726
|
metadata: ITxFindMetadata;
|
|
6681
6727
|
}
|
|
6682
6728
|
}
|
|
6683
6729
|
declare module 'wapi-client/fns/find-transfer-groups/find-transfer-groups.enums' {
|
|
6684
6730
|
import { DbFilterMetadata, TransferGroupType } from 'wapi-client/db/consts.enums';
|
|
6685
6731
|
import { IFnFindOptionsExtra } from 'wapi-client/fns/fn-consts.enums';
|
|
6686
|
-
import {
|
|
6687
|
-
import { FindTransferGroupManyOrderingOptions, FindTransferGroupManyTxOutput } from 'wapi-client/txs/find-transfer-group-many/find-transfer-group-many.enums';
|
|
6688
|
-
/**
|
|
6689
|
-
* simplified options for findTransferGroups
|
|
6690
|
-
*/
|
|
6691
|
-
export interface FindTransferGroupsFnExtraOptions {
|
|
6692
|
-
}
|
|
6732
|
+
import { FindTransferGroupManyTxOptions, FindTransferGroupManyTxOutput } from 'wapi-client/txs/find-transfer-group-many/find-transfer-group-many.enums';
|
|
6693
6733
|
export type FindTransferGroupsFnInputStringFields = 'identifier' | 'reverses';
|
|
6694
6734
|
/**
|
|
6695
6735
|
* findTransferGroups function options
|
|
6696
6736
|
*/
|
|
6697
|
-
export type FindTransferGroupsFnOptions = IFnFindOptionsExtra &
|
|
6737
|
+
export type FindTransferGroupsFnOptions = IFnFindOptionsExtra & FindTransferGroupManyTxOptions;
|
|
6698
6738
|
/**
|
|
6699
6739
|
* Input for findTransferGroups
|
|
6700
6740
|
*
|
|
@@ -6974,7 +7014,7 @@ declare module 'wapi-client/fns/find-wallets/find-wallets.enums' {
|
|
|
6974
7014
|
/**
|
|
6975
7015
|
* Optional flags for input
|
|
6976
7016
|
*/
|
|
6977
|
-
export type FindWalletsFnOptions = IFnFindOptionsExtra & FindWalletManyTxOptions & FindWalletsFnExtraOptions;
|
|
7017
|
+
export type FindWalletsFnOptions = IFnFindOptionsExtra & Omit<FindWalletManyTxOptions, keyof FindWalletsFnExtraOptions> & FindWalletsFnExtraOptions;
|
|
6978
7018
|
/**
|
|
6979
7019
|
* Input for findWallets
|
|
6980
7020
|
*
|
|
@@ -7163,6 +7203,10 @@ declare module 'wapi-client/txs/get-balance-history/get-balance-history.enums' {
|
|
|
7163
7203
|
* Current finished and pending balance sum
|
|
7164
7204
|
*/
|
|
7165
7205
|
amount?: number;
|
|
7206
|
+
/**
|
|
7207
|
+
* The status of the change to balance
|
|
7208
|
+
*/
|
|
7209
|
+
status?: 'pending' | 'finished';
|
|
7166
7210
|
/**
|
|
7167
7211
|
* Latest control_hash associated with wallet token combination
|
|
7168
7212
|
*/
|
|
@@ -7250,7 +7294,7 @@ declare module 'wapi-client/txs/get-balance-history/get-balance-history.enums' {
|
|
|
7250
7294
|
*/
|
|
7251
7295
|
transfer_status_finalized_at?: string | null;
|
|
7252
7296
|
}
|
|
7253
|
-
export type BalanceHistoryFields = 'transfer_id' | 'transfer_identifier' | 'transfer_control_hash' | 'transfer_from_wallet_id' | 'transfer_from_wallet_foreign' | 'transfer_to_wallet_id' | 'transfer_to_wallet_foreign' | 'transfer_amount' | 'transfer_type' | 'transfer_status' | 'transfer_force' | 'transfer_created_at' | 'transfer_updated_at' | 'transfer_metadata' | 'transfer_transfer_group_id' | 'transfer_transfer_group_identifier' | 'transfer_reverses_id' | 'transfer_reverses_identifier' | 'transfer_status_finalized_at' | 'balance_id' | 'token_id' | 'token_foreign' | 'wallet_id' | 'wallet_foreign' | 'pending_amount' | 'pending_amount_to' | 'pending_amount_from' | 'finished_amount' | 'amount' | 'latest_control_hash' | 'updated_at' | 'status';
|
|
7297
|
+
export type BalanceHistoryFields = 'transfer_id' | 'transfer_identifier' | 'transfer_control_hash' | 'transfer_from_wallet_id' | 'transfer_from_wallet_foreign' | 'transfer_to_wallet_id' | 'transfer_to_wallet_foreign' | 'transfer_amount' | 'transfer_type' | 'transfer_status' | 'transfer_force' | 'transfer_created_at' | 'transfer_updated_at' | 'transfer_metadata' | 'transfer_transfer_group_id' | 'transfer_transfer_group_identifier' | 'transfer_reverses_id' | 'transfer_reverses_identifier' | 'transfer_status_finalized_at' | 'balance_id' | 'token_id' | 'token_foreign' | 'wallet_id' | 'wallet_foreign' | 'pending_amount' | 'pending_amount_to' | 'pending_amount_from' | 'finished_amount' | 'amount' | 'latest_control_hash' | 'updated_at' | 'status' | 'available_balance';
|
|
7254
7298
|
/**
|
|
7255
7299
|
* Output of getBalanceHistory
|
|
7256
7300
|
*
|
|
@@ -8623,7 +8667,7 @@ declare module 'wapi-client/fns/reverse-transfers/reverse-transfers' {
|
|
|
8623
8667
|
* @internal
|
|
8624
8668
|
*
|
|
8625
8669
|
*/
|
|
8626
|
-
export function reverseTransfers(options: ClientFunctionOptions): ReverseQueryBuilder<ReverseTransfersFnFields, ReverseTransfersFnStringFields, ReverseTransfersFnMetadataFields, ReverseTransfersFnModifications, ReverseTransfersFnOutput>;
|
|
8670
|
+
export function reverseTransfers(options: ClientFunctionOptions): ReverseQueryBuilder<ReverseTransfersFnFields, ReverseTransfersFnStringFields, ReverseTransfersFnMetadataFields, ReverseTransfersFnModifications, ReverseTransfersFnOptions, ReverseTransfersFnOutput>;
|
|
8627
8671
|
export function reverseTransfers(options: ClientFunctionOptions, input: ReverseTransfersFnInput, fnOptions: ReverseTransfersFnOptions): StreamPromise<ReverseTransfersFnOutput>;
|
|
8628
8672
|
}
|
|
8629
8673
|
declare module 'wapi-client/txs/set-flags/set-flags.enums' {
|
|
@@ -8843,8 +8887,8 @@ declare module 'wapi-client/fns/update-transfer/update-transfer' {
|
|
|
8843
8887
|
declare module 'wapi-client/txs/update-transfer-group/update-transfer-group.enums' {
|
|
8844
8888
|
import { UniqueTransferGroupFilter } from 'wapi-client/txs/get-transfer-group/get-transfer-group.enums';
|
|
8845
8889
|
import { ITxGeneralOptionsWithoutTx, ITxMetadataAction } from 'wapi-client/txs/tx-consts.enums';
|
|
8846
|
-
import { TransferGroupTable } from 'wapi-client/db/transfer-group/transfer-group.enums';
|
|
8847
8890
|
import { TransferGroupStatus, TransferStatus } from 'wapi-client/db/consts.enums';
|
|
8891
|
+
import { TransferGroupTable } from 'wapi-client/db/transfer-group/transfer-group.enums';
|
|
8848
8892
|
import { Transfer } from 'wapi-client/txs/get-transfer/get-transfer.enums';
|
|
8849
8893
|
/**
|
|
8850
8894
|
* Optional flags for input
|
|
@@ -9154,7 +9198,7 @@ declare module 'wapi-client/fns/update-transfer-groups/update-transfer-groups' {
|
|
|
9154
9198
|
* @internal
|
|
9155
9199
|
*
|
|
9156
9200
|
*/
|
|
9157
|
-
export function updateTransferGroups(options: ClientFunctionOptions): UpdateQueryBuilder<UpdateTransferGroupsFnFields, UpdateTransferGroupsFnStringFields, UpdateTransferGroupsFnMetadataFields, UpdateTransferGroupsFnResultFields, UpdateTransferGroupData, UpdateTransferGroupsFnOutput>;
|
|
9201
|
+
export function updateTransferGroups(options: ClientFunctionOptions): UpdateQueryBuilder<UpdateTransferGroupsFnFields, UpdateTransferGroupsFnStringFields, UpdateTransferGroupsFnMetadataFields, UpdateTransferGroupsFnResultFields, UpdateTransferGroupData, UpdateTransferGroupsFnOptions, UpdateTransferGroupsFnOutput>;
|
|
9158
9202
|
export function updateTransferGroups(options: ClientFunctionOptions, input: UpdateTransferGroupsFnInput, fnOptions?: UpdateTransferGroupsFnOptions): StreamPromise<UpdateTransferGroupsFnOutput>;
|
|
9159
9203
|
}
|
|
9160
9204
|
declare module 'wapi-client/txs/update-transfer-many/update-transfer-many.enums' {
|
|
@@ -9266,7 +9310,7 @@ declare module 'wapi-client/fns/update-transfers/update-transfers' {
|
|
|
9266
9310
|
* @internal
|
|
9267
9311
|
*
|
|
9268
9312
|
*/
|
|
9269
|
-
export function updateTransfers(options: ClientFunctionOptions): UpdateQueryBuilder<UpdateTransfersFnFields, UpdateTransfersFnStringFields, UpdateTransfersFnMetadataFields, UpdateTransfersFnResultFields, UpdateTransfersFnUpdateFields, UpdateTransfersFnOutput>;
|
|
9313
|
+
export function updateTransfers(options: ClientFunctionOptions): UpdateQueryBuilder<UpdateTransfersFnFields, UpdateTransfersFnStringFields, UpdateTransfersFnMetadataFields, UpdateTransfersFnResultFields, UpdateTransfersFnUpdateFields, UpdateTransfersFnOptions, UpdateTransfersFnOutput>;
|
|
9270
9314
|
export function updateTransfers(options: ClientFunctionOptions, input: UpdateTransfersFnInput, fnOptions?: UpdateTransfersFnOptions): StreamPromise<UpdateTransfersFnOutput>;
|
|
9271
9315
|
}
|
|
9272
9316
|
declare module 'wapi-client/txs/update-wallet/update-wallet.enums' {
|
|
@@ -10220,8 +10264,8 @@ declare module 'wapi-client/txs/create-distribution/create-distribution.enums' {
|
|
|
10220
10264
|
import { UniqueWalletFilter } from 'wapi-client/txs/get-wallet/get-wallet.enums';
|
|
10221
10265
|
import { UniqueTokenFilter } from 'wapi-client/txs/get-token/get-token.enums';
|
|
10222
10266
|
import { UniqueTransferGroupFilter } from 'wapi-client/txs/get-transfer-group/get-transfer-group.enums';
|
|
10223
|
-
import { TransferTable } from 'wapi-client/db/transfer/transfer.enums';
|
|
10224
10267
|
import { TransferGroupTable } from 'wapi-client/db/transfer-group/transfer-group.enums';
|
|
10268
|
+
import { TransferTable } from 'wapi-client/db/transfer/transfer.enums';
|
|
10225
10269
|
/**
|
|
10226
10270
|
* Optional flags for input
|
|
10227
10271
|
*/
|
|
@@ -10458,7 +10502,7 @@ declare module 'wapi-client/txs/get-database-import-progress/get-database-import
|
|
|
10458
10502
|
}
|
|
10459
10503
|
}
|
|
10460
10504
|
declare module 'wapi-client/txs/get-token-many/get-token-many.enums' {
|
|
10461
|
-
import { UniqueTokenFilter } from 'wapi-client/txs/get-token/get-token.enums';
|
|
10505
|
+
import { TokenWithBalance, UniqueTokenFilter } from 'wapi-client/txs/get-token/get-token.enums';
|
|
10462
10506
|
import { ITxGeneralOptions } from 'wapi-client/txs/tx-consts.enums';
|
|
10463
10507
|
import { TokenTable, TokenTableOptional } from 'wapi-client/db/token/token.enums';
|
|
10464
10508
|
/**
|
|
@@ -10474,6 +10518,10 @@ declare module 'wapi-client/txs/get-token-many/get-token-many.enums' {
|
|
|
10474
10518
|
* If true then the returning object is only guaranteed to have id
|
|
10475
10519
|
*/
|
|
10476
10520
|
return_only_id?: boolean;
|
|
10521
|
+
/**
|
|
10522
|
+
* Return the total system balance of token
|
|
10523
|
+
*/
|
|
10524
|
+
include_balance?: boolean;
|
|
10477
10525
|
}
|
|
10478
10526
|
export type GetTokenManyTxOptions = ITxGeneralOptions & GetTokenManyAdditionalOptions;
|
|
10479
10527
|
/**
|
|
@@ -10485,7 +10533,7 @@ declare module 'wapi-client/txs/get-token-many/get-token-many.enums' {
|
|
|
10485
10533
|
tokens: UniqueTokenFilter[];
|
|
10486
10534
|
options?: GetTokenManyTxOptions;
|
|
10487
10535
|
}
|
|
10488
|
-
export type TokenResult = TokenTable | TokenTableOptional | null;
|
|
10536
|
+
export type TokenResult = TokenTable | TokenTableOptional | TokenWithBalance | null;
|
|
10489
10537
|
/**
|
|
10490
10538
|
* Output of getTokenMany
|
|
10491
10539
|
*
|
|
@@ -11542,7 +11590,7 @@ declare module 'wapi-client/client' {
|
|
|
11542
11590
|
* @returns {StreamPromise<AggregateTransfersFnOutput>}
|
|
11543
11591
|
*
|
|
11544
11592
|
*/
|
|
11545
|
-
aggregateTransfers(): AggregateQueryBuilder<AggregateTransfersFnFields, AggregateTransfersFnStringFields, AggregateTransfersFnMetadataFields, AggregateTransfersFnGroupFields, AggregateTransfersFnOutput>;
|
|
11593
|
+
aggregateTransfers(): AggregateQueryBuilder<AggregateTransfersFnFields, AggregateTransfersFnStringFields, AggregateTransfersFnMetadataFields, AggregateTransfersFnGroupFields, AggregateTransfersFnOptions, AggregateTransfersFnOutput>;
|
|
11546
11594
|
aggregateTransfers(input: AggregateTransfersFnInput, options?: AggregateTransfersFnOptions): StreamPromise<AggregateTransfersFnOutput>;
|
|
11547
11595
|
/**
|
|
11548
11596
|
*
|
|
@@ -12842,7 +12890,7 @@ declare module 'wapi-client/client' {
|
|
|
12842
12890
|
* @returns {StreamPromise<ReverseTransfersFnOutput>}
|
|
12843
12891
|
*
|
|
12844
12892
|
*/
|
|
12845
|
-
reverseTransfers(): ReverseQueryBuilder<ReverseTransfersFnFields, ReverseTransfersFnStringFields, ReverseTransfersFnMetadataFields, ReverseTransfersFnModifications, ReverseTransfersFnOutput>;
|
|
12893
|
+
reverseTransfers(): ReverseQueryBuilder<ReverseTransfersFnFields, ReverseTransfersFnStringFields, ReverseTransfersFnMetadataFields, ReverseTransfersFnModifications, ReverseTransfersFnOptions, ReverseTransfersFnOutput>;
|
|
12846
12894
|
reverseTransfers(input: ReverseTransfersFnInput, options?: ReverseTransfersFnOptions): StreamPromise<ReverseTransfersFnOutput>;
|
|
12847
12895
|
/**
|
|
12848
12896
|
*
|
|
@@ -13056,7 +13104,7 @@ declare module 'wapi-client/client' {
|
|
|
13056
13104
|
* @returns {StreamPromise<UpdateTransferGroupsFnOutput>}
|
|
13057
13105
|
*
|
|
13058
13106
|
*/
|
|
13059
|
-
updateTransferGroups(): UpdateQueryBuilder<UpdateTransferGroupsFnFields, UpdateTransferGroupsFnStringFields, UpdateTransferGroupsFnMetadataFields, UpdateTransferGroupsFnResultFields, UpdateTransferGroupsFnUpdateFields, UpdateTransferGroupsFnOutput>;
|
|
13107
|
+
updateTransferGroups(): UpdateQueryBuilder<UpdateTransferGroupsFnFields, UpdateTransferGroupsFnStringFields, UpdateTransferGroupsFnMetadataFields, UpdateTransferGroupsFnResultFields, UpdateTransferGroupsFnUpdateFields, UpdateTransferGroupsFnOptions, UpdateTransferGroupsFnOutput>;
|
|
13060
13108
|
updateTransferGroups(input: UpdateTransferGroupsFnInput, options?: UpdateTransferGroupsFnOptions): StreamPromise<UpdateTransferGroupsFnOutput>;
|
|
13061
13109
|
/**
|
|
13062
13110
|
*
|
|
@@ -13085,7 +13133,7 @@ declare module 'wapi-client/client' {
|
|
|
13085
13133
|
* @returns {StreamPromise<UpdateTransfersFnOutput>}
|
|
13086
13134
|
*
|
|
13087
13135
|
*/
|
|
13088
|
-
updateTransfers(): UpdateQueryBuilder<UpdateTransfersFnFields, UpdateTransfersFnStringFields, UpdateTransfersFnMetadataFields, UpdateTransfersFnResultFields, UpdateTransfersFnUpdateFields, UpdateTransfersFnOutput>;
|
|
13136
|
+
updateTransfers(): UpdateQueryBuilder<UpdateTransfersFnFields, UpdateTransfersFnStringFields, UpdateTransfersFnMetadataFields, UpdateTransfersFnResultFields, UpdateTransfersFnUpdateFields, UpdateTransfersFnOptions, UpdateTransfersFnOutput>;
|
|
13089
13137
|
updateTransfers(input: UpdateTransfersFnInput, options?: UpdateTransfersFnOptions): StreamPromise<UpdateTransfersFnOutput>;
|
|
13090
13138
|
/**
|
|
13091
13139
|
* Update Wallet
|