@dynamic-labs/sdk-api 0.17.0 → 0.19.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/package.json +1 -1
- package/src/models/BusinessAccountMember.cjs +2 -0
- package/src/models/BusinessAccountMember.d.ts +6 -0
- package/src/models/BusinessAccountMember.js +2 -0
- package/src/models/ChainalysisRuleField.cjs +7 -5
- package/src/models/ChainalysisRuleField.d.ts +7 -5
- package/src/models/ChainalysisRuleField.js +7 -5
- package/src/models/ScreeningCoreField.cjs +5 -3
- package/src/models/ScreeningCoreField.d.ts +5 -3
- package/src/models/ScreeningCoreField.js +5 -3
- package/src/models/TrmRuleField.cjs +5 -6
- package/src/models/TrmRuleField.d.ts +5 -6
- package/src/models/TrmRuleField.js +5 -6
package/package.json
CHANGED
|
@@ -17,6 +17,7 @@ function BusinessAccountMemberFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
17
17
|
'id': json['id'],
|
|
18
18
|
'businessAccountId': json['businessAccountId'],
|
|
19
19
|
'userId': json['userId'],
|
|
20
|
+
'email': !runtime.exists(json, 'email') ? undefined : json['email'],
|
|
20
21
|
'role': BusinessAccountMemberRole.BusinessAccountMemberRoleFromJSON(json['role']),
|
|
21
22
|
'addedByUserId': !runtime.exists(json, 'addedByUserId') ? undefined : json['addedByUserId'],
|
|
22
23
|
'createdAt': !runtime.exists(json, 'createdAt') ? undefined : (new Date(json['createdAt'])),
|
|
@@ -33,6 +34,7 @@ function BusinessAccountMemberToJSON(value) {
|
|
|
33
34
|
'id': value.id,
|
|
34
35
|
'businessAccountId': value.businessAccountId,
|
|
35
36
|
'userId': value.userId,
|
|
37
|
+
'email': value.email,
|
|
36
38
|
'role': BusinessAccountMemberRole.BusinessAccountMemberRoleToJSON(value.role),
|
|
37
39
|
'addedByUserId': value.addedByUserId,
|
|
38
40
|
'createdAt': value.createdAt === undefined ? undefined : (value.createdAt.toISOString()),
|
|
@@ -34,6 +34,12 @@ export interface BusinessAccountMember {
|
|
|
34
34
|
* @memberof BusinessAccountMember
|
|
35
35
|
*/
|
|
36
36
|
userId: string;
|
|
37
|
+
/**
|
|
38
|
+
* Member's verified email; null when they have none
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof BusinessAccountMember
|
|
41
|
+
*/
|
|
42
|
+
email?: string | null;
|
|
37
43
|
/**
|
|
38
44
|
*
|
|
39
45
|
* @type {BusinessAccountMemberRole}
|
|
@@ -13,6 +13,7 @@ function BusinessAccountMemberFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
13
13
|
'id': json['id'],
|
|
14
14
|
'businessAccountId': json['businessAccountId'],
|
|
15
15
|
'userId': json['userId'],
|
|
16
|
+
'email': !exists(json, 'email') ? undefined : json['email'],
|
|
16
17
|
'role': BusinessAccountMemberRoleFromJSON(json['role']),
|
|
17
18
|
'addedByUserId': !exists(json, 'addedByUserId') ? undefined : json['addedByUserId'],
|
|
18
19
|
'createdAt': !exists(json, 'createdAt') ? undefined : (new Date(json['createdAt'])),
|
|
@@ -29,6 +30,7 @@ function BusinessAccountMemberToJSON(value) {
|
|
|
29
30
|
'id': value.id,
|
|
30
31
|
'businessAccountId': value.businessAccountId,
|
|
31
32
|
'userId': value.userId,
|
|
33
|
+
'email': value.email,
|
|
32
34
|
'role': BusinessAccountMemberRoleToJSON(value.role),
|
|
33
35
|
'addedByUserId': value.addedByUserId,
|
|
34
36
|
'createdAt': value.createdAt === undefined ? undefined : (value.createdAt.toISOString()),
|
|
@@ -17,12 +17,14 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
17
17
|
*/
|
|
18
18
|
/**
|
|
19
19
|
* Absolute paths compare against the response; bare names compare against the
|
|
20
|
-
* bound element of the enclosing `exists
|
|
21
|
-
*
|
|
22
|
-
* `
|
|
23
|
-
*
|
|
20
|
+
* bound element of the enclosing `exists` — `category` under
|
|
21
|
+
* `addressIdentifications`, `exposures` or `triggers`; `exposureType`,
|
|
22
|
+
* `direction` and `value` under `exposures`; `percentage` and the
|
|
23
|
+
* `ruleTriggered` fields under `triggers`. Core fields work here too, and are
|
|
24
|
+
* the only ones a pre-screen rule may use. String fields lowercase both sides
|
|
25
|
+
* before comparing, except `exposureType`, whose vocabulary is closed.
|
|
24
26
|
* `cluster` and `ruleTriggered` are nullable, so a field beneath either is
|
|
25
|
-
* unknown
|
|
27
|
+
* unknown.
|
|
26
28
|
* @export
|
|
27
29
|
* @enum {string}
|
|
28
30
|
*/
|
|
@@ -11,12 +11,14 @@
|
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Absolute paths compare against the response; bare names compare against the
|
|
14
|
-
* bound element of the enclosing `exists
|
|
15
|
-
*
|
|
16
|
-
* `
|
|
17
|
-
*
|
|
14
|
+
* bound element of the enclosing `exists` — `category` under
|
|
15
|
+
* `addressIdentifications`, `exposures` or `triggers`; `exposureType`,
|
|
16
|
+
* `direction` and `value` under `exposures`; `percentage` and the
|
|
17
|
+
* `ruleTriggered` fields under `triggers`. Core fields work here too, and are
|
|
18
|
+
* the only ones a pre-screen rule may use. String fields lowercase both sides
|
|
19
|
+
* before comparing, except `exposureType`, whose vocabulary is closed.
|
|
18
20
|
* `cluster` and `ruleTriggered` are nullable, so a field beneath either is
|
|
19
|
-
* unknown
|
|
21
|
+
* unknown.
|
|
20
22
|
* @export
|
|
21
23
|
* @enum {string}
|
|
22
24
|
*/
|
|
@@ -13,12 +13,14 @@
|
|
|
13
13
|
*/
|
|
14
14
|
/**
|
|
15
15
|
* Absolute paths compare against the response; bare names compare against the
|
|
16
|
-
* bound element of the enclosing `exists
|
|
17
|
-
*
|
|
18
|
-
* `
|
|
19
|
-
*
|
|
16
|
+
* bound element of the enclosing `exists` — `category` under
|
|
17
|
+
* `addressIdentifications`, `exposures` or `triggers`; `exposureType`,
|
|
18
|
+
* `direction` and `value` under `exposures`; `percentage` and the
|
|
19
|
+
* `ruleTriggered` fields under `triggers`. Core fields work here too, and are
|
|
20
|
+
* the only ones a pre-screen rule may use. String fields lowercase both sides
|
|
21
|
+
* before comparing, except `exposureType`, whose vocabulary is closed.
|
|
20
22
|
* `cluster` and `ruleTriggered` are nullable, so a field beneath either is
|
|
21
|
-
* unknown
|
|
23
|
+
* unknown.
|
|
22
24
|
* @export
|
|
23
25
|
* @enum {string}
|
|
24
26
|
*/
|
|
@@ -16,9 +16,11 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
16
16
|
* Do not edit the class manually.
|
|
17
17
|
*/
|
|
18
18
|
/**
|
|
19
|
-
* Fields
|
|
20
|
-
*
|
|
21
|
-
* the
|
|
19
|
+
* Fields needing no vendor response, so they work in both phases, and the only
|
|
20
|
+
* fields a pre-screen rule may use. `tx.amountUsd` and `tx.asset` are present
|
|
21
|
+
* only where the request establishes them; neither is available on the signing
|
|
22
|
+
* path. `address` compares case-sensitively, since base58 chains are
|
|
23
|
+
* case-significant. An absent field compares unknown, so the rule sits out.
|
|
22
24
|
* @export
|
|
23
25
|
* @enum {string}
|
|
24
26
|
*/
|
|
@@ -10,9 +10,11 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
|
-
* Fields
|
|
14
|
-
*
|
|
15
|
-
* the
|
|
13
|
+
* Fields needing no vendor response, so they work in both phases, and the only
|
|
14
|
+
* fields a pre-screen rule may use. `tx.amountUsd` and `tx.asset` are present
|
|
15
|
+
* only where the request establishes them; neither is available on the signing
|
|
16
|
+
* path. `address` compares case-sensitively, since base58 chains are
|
|
17
|
+
* case-significant. An absent field compares unknown, so the rule sits out.
|
|
16
18
|
* @export
|
|
17
19
|
* @enum {string}
|
|
18
20
|
*/
|
|
@@ -12,9 +12,11 @@
|
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
/**
|
|
15
|
-
* Fields
|
|
16
|
-
*
|
|
17
|
-
* the
|
|
15
|
+
* Fields needing no vendor response, so they work in both phases, and the only
|
|
16
|
+
* fields a pre-screen rule may use. `tx.amountUsd` and `tx.asset` are present
|
|
17
|
+
* only where the request establishes them; neither is available on the signing
|
|
18
|
+
* path. `address` compares case-sensitively, since base58 chains are
|
|
19
|
+
* case-significant. An absent field compares unknown, so the rule sits out.
|
|
18
20
|
* @export
|
|
19
21
|
* @enum {string}
|
|
20
22
|
*/
|
|
@@ -17,12 +17,11 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
17
17
|
*/
|
|
18
18
|
/**
|
|
19
19
|
* Absolute paths compare against the response; bare names compare against the
|
|
20
|
-
* bound element of the enclosing `exists
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
25
|
-
* the values TRM emits (1, 5, 10, 15); labels are display-only.
|
|
20
|
+
* bound element of the enclosing `exists` — `category`, `riskType` and
|
|
21
|
+
* `categoryRiskScoreLevel` under `trm.addressRiskIndicators`; `category`,
|
|
22
|
+
* `isVasp` and `riskScoreLevel` under `trm.entities`. Core fields work here
|
|
23
|
+
* too, and are the only ones a pre-screen rule may use. Category strings match
|
|
24
|
+
* case-sensitively; TRM returns them TitleCase.
|
|
26
25
|
* @export
|
|
27
26
|
* @enum {string}
|
|
28
27
|
*/
|
|
@@ -11,12 +11,11 @@
|
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Absolute paths compare against the response; bare names compare against the
|
|
14
|
-
* bound element of the enclosing `exists
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
*
|
|
19
|
-
* the values TRM emits (1, 5, 10, 15); labels are display-only.
|
|
14
|
+
* bound element of the enclosing `exists` — `category`, `riskType` and
|
|
15
|
+
* `categoryRiskScoreLevel` under `trm.addressRiskIndicators`; `category`,
|
|
16
|
+
* `isVasp` and `riskScoreLevel` under `trm.entities`. Core fields work here
|
|
17
|
+
* too, and are the only ones a pre-screen rule may use. Category strings match
|
|
18
|
+
* case-sensitively; TRM returns them TitleCase.
|
|
20
19
|
* @export
|
|
21
20
|
* @enum {string}
|
|
22
21
|
*/
|
|
@@ -13,12 +13,11 @@
|
|
|
13
13
|
*/
|
|
14
14
|
/**
|
|
15
15
|
* Absolute paths compare against the response; bare names compare against the
|
|
16
|
-
* bound element of the enclosing `exists
|
|
17
|
-
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
* the values TRM emits (1, 5, 10, 15); labels are display-only.
|
|
16
|
+
* bound element of the enclosing `exists` — `category`, `riskType` and
|
|
17
|
+
* `categoryRiskScoreLevel` under `trm.addressRiskIndicators`; `category`,
|
|
18
|
+
* `isVasp` and `riskScoreLevel` under `trm.entities`. Core fields work here
|
|
19
|
+
* too, and are the only ones a pre-screen rule may use. Category strings match
|
|
20
|
+
* case-sensitively; TRM returns them TitleCase.
|
|
22
21
|
* @export
|
|
23
22
|
* @enum {string}
|
|
24
23
|
*/
|