@riocrypto/common 1.0.1761 → 1.0.1763

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,8 @@ export * from "./types/arbitrage-asset";
301
301
  export * from "./types/arbitrage-frequency";
302
302
  export * from "./types/arbitrage-provider";
303
303
  export * from "./types/fx-provider";
304
+ export * from "./types/internal-transfer-automation-frequency";
305
+ export * from "./types/internal-transfer-automation";
304
306
  export * from "./classes/KYCFieldClass";
305
307
  export * from "./classes/KYCFileClass";
306
308
  export * from "./classes/CountryAsset";
package/build/index.js CHANGED
@@ -317,6 +317,8 @@ __exportStar(require("./types/arbitrage-asset"), exports);
317
317
  __exportStar(require("./types/arbitrage-frequency"), exports);
318
318
  __exportStar(require("./types/arbitrage-provider"), exports);
319
319
  __exportStar(require("./types/fx-provider"), exports);
320
+ __exportStar(require("./types/internal-transfer-automation-frequency"), exports);
321
+ __exportStar(require("./types/internal-transfer-automation"), exports);
320
322
  __exportStar(require("./classes/KYCFieldClass"), exports);
321
323
  __exportStar(require("./classes/KYCFileClass"), exports);
322
324
  __exportStar(require("./classes/CountryAsset"), exports);
@@ -0,0 +1,5 @@
1
+ export declare enum InternalTransferAutomationFrequency {
2
+ Once = "once",
3
+ Daily = "daily",
4
+ MondayToFriday = "mondayToFriday"
5
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.InternalTransferAutomationFrequency = void 0;
4
+ var InternalTransferAutomationFrequency;
5
+ (function (InternalTransferAutomationFrequency) {
6
+ InternalTransferAutomationFrequency["Once"] = "once";
7
+ InternalTransferAutomationFrequency["Daily"] = "daily";
8
+ InternalTransferAutomationFrequency["MondayToFriday"] = "mondayToFriday";
9
+ })(InternalTransferAutomationFrequency = exports.InternalTransferAutomationFrequency || (exports.InternalTransferAutomationFrequency = {}));
@@ -0,0 +1,16 @@
1
+ import { InternalTransferType } from "./internal-transfer-type";
2
+ import { TreasuryProvider } from "./treasury-provider";
3
+ import { Fiat } from "./fiat";
4
+ import { Crypto } from "./crypto";
5
+ import { InternalTransferAutomationFrequency } from "./internal-transfer-automation-frequency";
6
+ export interface InternalTransferAutomation {
7
+ id: string;
8
+ createdAt: Date;
9
+ adminId: string;
10
+ transferType: InternalTransferType;
11
+ origin: TreasuryProvider;
12
+ destination: TreasuryProvider;
13
+ amount: number;
14
+ currency: Fiat | Crypto;
15
+ frequency: InternalTransferAutomationFrequency;
16
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1761",
3
+ "version": "1.0.1763",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",