@riocrypto/common 1.0.1146 → 1.0.1148

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
@@ -189,6 +189,7 @@ export * from "./types/internal-swap";
189
189
  export * from "./types/webhook-type";
190
190
  export * from "./types/bitso-mxn-withdrawal";
191
191
  export * from "./types/circle-chain";
192
+ export * from "./types/circle-payout";
192
193
  export * from "./classes/Asset";
193
194
  export * from "./classes/CountryAsset";
194
195
  export * from "./classes/CryptoAsset";
package/build/index.js CHANGED
@@ -205,6 +205,7 @@ __exportStar(require("./types/internal-swap"), exports);
205
205
  __exportStar(require("./types/webhook-type"), exports);
206
206
  __exportStar(require("./types/bitso-mxn-withdrawal"), exports);
207
207
  __exportStar(require("./types/circle-chain"), exports);
208
+ __exportStar(require("./types/circle-payout"), exports);
208
209
  __exportStar(require("./classes/Asset"), exports);
209
210
  __exportStar(require("./classes/CountryAsset"), exports);
210
211
  __exportStar(require("./classes/CryptoAsset"), exports);
@@ -0,0 +1,7 @@
1
+ export interface CirclePayout {
2
+ id: string;
3
+ userId: string;
4
+ orderId: string;
5
+ circlePayoutId: string;
6
+ status: "pending" | "complete" | "failed";
7
+ }
@@ -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.1146",
3
+ "version": "1.0.1148",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",