@corsa-labs/sdk 4.12.0 → 4.13.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.
- package/dist/models/BlockchainWalletDto.d.ts +5 -0
- package/dist/models/BlockchainWalletIntegrationsDto.d.ts +10 -0
- package/dist/models/BlockchainWalletIntegrationsDto.js +3 -0
- package/dist/models/BlockchainWalletIntegrationsDto.js.map +1 -0
- package/dist/models/CreateBlockchainWalletDto.d.ts +5 -0
- package/dist/models/TransactionIntegrationsDto.d.ts +4 -0
- package/dist/models/UpdateBlockchainWalletDto.d.ts +5 -0
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BlockchainWalletIntegrationsDto } from './BlockchainWalletIntegrationsDto';
|
|
1
2
|
import type { ClientAssociatedToBlockchainWalletDto } from './ClientAssociatedToBlockchainWalletDto';
|
|
2
3
|
import type { RiskDto } from './RiskDto';
|
|
3
4
|
export type BlockchainWalletDto = {
|
|
@@ -45,4 +46,8 @@ export type BlockchainWalletDto = {
|
|
|
45
46
|
* Custom fields data
|
|
46
47
|
*/
|
|
47
48
|
customFields?: Record<string, any>;
|
|
49
|
+
/**
|
|
50
|
+
* Integrations data for the blockchain wallet
|
|
51
|
+
*/
|
|
52
|
+
integrations?: BlockchainWalletIntegrationsDto;
|
|
48
53
|
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export type BlockchainWalletIntegrationsDto = {
|
|
2
|
+
/**
|
|
3
|
+
* Utila wallet ID for integration with utila
|
|
4
|
+
*/
|
|
5
|
+
utilaWalletId?: string;
|
|
6
|
+
/**
|
|
7
|
+
* Metadata object for integration with utila (will be stringified when sent to neo4j-graphql-service)
|
|
8
|
+
*/
|
|
9
|
+
utilaMetadata?: Record<string, any>;
|
|
10
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BlockchainWalletIntegrationsDto.js","sourceRoot":"","sources":["../../models/BlockchainWalletIntegrationsDto.ts"],"names":[],"mappings":""}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BlockchainWalletIntegrationsDto } from './BlockchainWalletIntegrationsDto';
|
|
1
2
|
import type { ClientBlockchainWalletRelationDto } from './ClientBlockchainWalletRelationDto';
|
|
2
3
|
import type { RiskDto } from './RiskDto';
|
|
3
4
|
export type CreateBlockchainWalletDto = {
|
|
@@ -29,4 +30,8 @@ export type CreateBlockchainWalletDto = {
|
|
|
29
30
|
* List of clients associated with the blockchain wallet (maximum 50)
|
|
30
31
|
*/
|
|
31
32
|
associatedClients?: Array<ClientBlockchainWalletRelationDto>;
|
|
33
|
+
/**
|
|
34
|
+
* Integrations data for the blockchain wallet
|
|
35
|
+
*/
|
|
36
|
+
integrations?: BlockchainWalletIntegrationsDto;
|
|
32
37
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BlockchainWalletIntegrationsDto } from './BlockchainWalletIntegrationsDto';
|
|
1
2
|
import type { ClientBlockchainWalletRelationDto } from './ClientBlockchainWalletRelationDto';
|
|
2
3
|
import type { CreateOrUpdateRiskDto } from './CreateOrUpdateRiskDto';
|
|
3
4
|
export type UpdateBlockchainWalletDto = {
|
|
@@ -17,6 +18,10 @@ export type UpdateBlockchainWalletDto = {
|
|
|
17
18
|
* List of clients associated with the blockchain wallet (maximum 50)
|
|
18
19
|
*/
|
|
19
20
|
associatedClients?: Array<ClientBlockchainWalletRelationDto>;
|
|
21
|
+
/**
|
|
22
|
+
* Integrations data for the blockchain wallet
|
|
23
|
+
*/
|
|
24
|
+
integrations?: BlockchainWalletIntegrationsDto;
|
|
20
25
|
/**
|
|
21
26
|
* Current risk assessment of the blockchain wallet
|
|
22
27
|
*/
|