@riocrypto/common 1.0.2609 → 1.0.2610

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/build/index.d.ts CHANGED
@@ -301,6 +301,7 @@ export * from "./types/fireblocks-vault";
301
301
  export * from "./types/fireblocks-transfer";
302
302
  export * from "./types/user-type";
303
303
  export * from "./types/compliance-tree-user";
304
+ export * from "./types/compliance-recent-session";
304
305
  export * from "./types/compliance-step-type";
305
306
  export * from "./types/platform-fee-range";
306
307
  export * from "./types/api-key";
package/build/index.js CHANGED
@@ -317,6 +317,7 @@ __exportStar(require("./types/fireblocks-vault"), exports);
317
317
  __exportStar(require("./types/fireblocks-transfer"), exports);
318
318
  __exportStar(require("./types/user-type"), exports);
319
319
  __exportStar(require("./types/compliance-tree-user"), exports);
320
+ __exportStar(require("./types/compliance-recent-session"), exports);
320
321
  __exportStar(require("./types/compliance-step-type"), exports);
321
322
  __exportStar(require("./types/platform-fee-range"), exports);
322
323
  __exportStar(require("./types/api-key"), exports);
@@ -0,0 +1,17 @@
1
+ import { Country } from "./country";
2
+ import { ComplianceSessionStatus } from "./compliance-session-status";
3
+ import { UserType } from "./user-type";
4
+ export interface ComplianceRecentSession {
5
+ id: string;
6
+ userId: string;
7
+ userDisplayName: string;
8
+ userType: UserType;
9
+ country?: Country;
10
+ status: ComplianceSessionStatus;
11
+ message: string;
12
+ createdAt: string;
13
+ startedBy?: string | null;
14
+ startedByName?: string | null;
15
+ ruleSetId?: string | null;
16
+ ruleSetName?: string | null;
17
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -8,4 +8,6 @@ export type ComplianceTreeUser = {
8
8
  displayName: string;
9
9
  email?: string;
10
10
  onboardingStatus?: OnboardingStatus;
11
+ parentAccountId?: string;
12
+ parentAccountName?: string;
11
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2609",
3
+ "version": "1.0.2610",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",