@riocrypto/common 1.0.2034 → 1.0.2036

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.
@@ -4,6 +4,6 @@ export interface FireblocksTransfer {
4
4
  orderId: string;
5
5
  fireblocksTransfers: {
6
6
  id: string;
7
- status: "initiated" | "completed";
7
+ status: "initiated" | "completed" | "failed";
8
8
  }[];
9
9
  }
@@ -1,5 +1,6 @@
1
1
  import { Country } from "./country";
2
2
  import { FXProvider } from "./fx-provider";
3
+ import { Processor } from "./processor";
3
4
  import { Side } from "./side";
4
5
  export interface RioSettingsUpdate {
5
6
  platformFee?: number;
@@ -47,4 +48,7 @@ export interface RioSettingsUpdate {
47
48
  [key in Side]?: number;
48
49
  };
49
50
  };
51
+ activeFiatPaymentProcessors?: {
52
+ [key in Side]: Processor[];
53
+ };
50
54
  }
@@ -1,5 +1,6 @@
1
1
  import { Country } from "./country";
2
2
  import { FXProvider } from "./fx-provider";
3
+ import { Processor } from "./processor";
3
4
  import { Side } from "./side";
4
5
  export interface RioSettings {
5
6
  id: string;
@@ -51,4 +52,7 @@ export interface RioSettings {
51
52
  [key in Side]?: number;
52
53
  };
53
54
  };
55
+ activeFiatPaymentProcessors: {
56
+ [key in Side]: Processor[];
57
+ };
54
58
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2034",
3
+ "version": "1.0.2036",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",