@corsa-labs/sdk 3.29.0 → 3.30.0
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.
|
@@ -16,14 +16,14 @@ export declare class BlockchainWalletsService {
|
|
|
16
16
|
*/
|
|
17
17
|
createBlockchainWallet(requestBody: CreateBlockchainWalletDto, upsert?: boolean): CancelablePromise<BlockchainWalletDto>;
|
|
18
18
|
/**
|
|
19
|
-
* Get a blockchain wallet by ID or
|
|
19
|
+
* Get a blockchain wallet by ID, reference ID, or wallet address
|
|
20
20
|
* @param blockchainWalletId
|
|
21
21
|
* @returns BlockchainWalletDto
|
|
22
22
|
* @throws ApiError
|
|
23
23
|
*/
|
|
24
24
|
getBlockchainWallet(blockchainWalletId: string): CancelablePromise<BlockchainWalletDto>;
|
|
25
25
|
/**
|
|
26
|
-
* Update blockchain wallet details
|
|
26
|
+
* Update blockchain wallet details by ID, reference ID, or wallet address
|
|
27
27
|
* @param blockchainWalletId
|
|
28
28
|
* @param requestBody
|
|
29
29
|
* @returns BlockchainWalletDto
|
|
@@ -31,7 +31,7 @@ export declare class BlockchainWalletsService {
|
|
|
31
31
|
*/
|
|
32
32
|
updateBlockchainWallet(blockchainWalletId: string, requestBody: UpdateBlockchainWalletDto): CancelablePromise<BlockchainWalletDto>;
|
|
33
33
|
/**
|
|
34
|
-
* Associate a blockchain wallet with one or more clients
|
|
34
|
+
* Associate a blockchain wallet with one or more clients by ID, reference ID, or wallet address
|
|
35
35
|
* @param blockchainWalletId
|
|
36
36
|
* @param requestBody
|
|
37
37
|
* @returns BlockchainWalletDto
|
|
@@ -25,7 +25,7 @@ class BlockchainWalletsService {
|
|
|
25
25
|
});
|
|
26
26
|
}
|
|
27
27
|
/**
|
|
28
|
-
* Get a blockchain wallet by ID or
|
|
28
|
+
* Get a blockchain wallet by ID, reference ID, or wallet address
|
|
29
29
|
* @param blockchainWalletId
|
|
30
30
|
* @returns BlockchainWalletDto
|
|
31
31
|
* @throws ApiError
|
|
@@ -40,7 +40,7 @@ class BlockchainWalletsService {
|
|
|
40
40
|
});
|
|
41
41
|
}
|
|
42
42
|
/**
|
|
43
|
-
* Update blockchain wallet details
|
|
43
|
+
* Update blockchain wallet details by ID, reference ID, or wallet address
|
|
44
44
|
* @param blockchainWalletId
|
|
45
45
|
* @param requestBody
|
|
46
46
|
* @returns BlockchainWalletDto
|
|
@@ -58,7 +58,7 @@ class BlockchainWalletsService {
|
|
|
58
58
|
});
|
|
59
59
|
}
|
|
60
60
|
/**
|
|
61
|
-
* Associate a blockchain wallet with one or more clients
|
|
61
|
+
* Associate a blockchain wallet with one or more clients by ID, reference ID, or wallet address
|
|
62
62
|
* @param blockchainWalletId
|
|
63
63
|
* @param requestBody
|
|
64
64
|
* @returns BlockchainWalletDto
|