@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.
@@ -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,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=BlockchainWalletIntegrationsDto.js.map
@@ -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
  };
@@ -11,4 +11,8 @@ export type TransactionIntegrationsDto = {
11
11
  * Trm transaction ID
12
12
  */
13
13
  trmTransactionId?: string;
14
+ /**
15
+ * Utila transaction ID
16
+ */
17
+ utilaTransactionId?: string;
14
18
  };
@@ -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
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corsa-labs/sdk",
3
- "version": "4.12.0",
3
+ "version": "4.13.0",
4
4
  "description": "SDK for Corsa API",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",