@riocrypto/common 1.0.2036 → 1.0.2038

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,7 +1,9 @@
1
+ import { Processor } from "../types/processor";
1
2
  import { Subjects } from "./subjects";
2
3
  export interface BankAccountVerificationInitiatedEvent {
3
4
  subject: Subjects.BankAccountVerificationInitiated;
4
5
  data: {
5
6
  id: string;
7
+ processor: Processor;
6
8
  };
7
9
  }
@@ -49,6 +49,8 @@ export interface RioSettingsUpdate {
49
49
  };
50
50
  };
51
51
  activeFiatPaymentProcessors?: {
52
- [key in Side]: Processor[];
52
+ [Side.Buy]: Processor[];
53
+ [Side.Sell]: Processor[];
54
+ bankAccountVerifications: Processor[];
53
55
  };
54
56
  }
@@ -1,2 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ const side_1 = require("./side");
@@ -53,6 +53,8 @@ export interface RioSettings {
53
53
  };
54
54
  };
55
55
  activeFiatPaymentProcessors: {
56
- [key in Side]: Processor[];
56
+ [Side.Buy]: Processor[];
57
+ [Side.Sell]: Processor[];
58
+ bankAccountVerifications: Processor[];
57
59
  };
58
60
  }
@@ -1,2 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ const side_1 = require("./side");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2036",
3
+ "version": "1.0.2038",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",