@riocrypto/common 1.0.308 → 1.0.310

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
@@ -81,7 +81,6 @@ export * from "./types/order-input";
81
81
  export * from "./types/quote";
82
82
  export * from "./types/fees";
83
83
  export * from "./types/user-update";
84
- export * from "./types/wyre-api-create-card-payment-response";
85
84
  export * from "./types/wyre-webhook-notification";
86
85
  export * from "./types/wyre-payment-method";
87
86
  export * from "./types/wyre-api-get-card-authorization-response";
package/build/index.js CHANGED
@@ -97,7 +97,6 @@ __exportStar(require("./types/order-input"), exports);
97
97
  __exportStar(require("./types/quote"), exports);
98
98
  __exportStar(require("./types/fees"), exports);
99
99
  __exportStar(require("./types/user-update"), exports);
100
- __exportStar(require("./types/wyre-api-create-card-payment-response"), exports);
101
100
  __exportStar(require("./types/wyre-webhook-notification"), exports);
102
101
  __exportStar(require("./types/wyre-payment-method"), exports);
103
102
  __exportStar(require("./types/wyre-api-get-card-authorization-response"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.308",
3
+ "version": "1.0.310",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",
@@ -1,18 +0,0 @@
1
- import { WyreOrderStatus } from "./wyre-order-status";
2
- export interface WyreApiCreateCardPaymentResponse {
3
- id: string;
4
- createdAt: number;
5
- owner: string;
6
- status: WyreOrderStatus;
7
- authenticationUrl: string;
8
- transferId: string;
9
- sourceAmount: number;
10
- sourceCurrency: string;
11
- destCurrency: string;
12
- dest: string;
13
- walletType: string;
14
- email: string;
15
- accountId: string;
16
- paymentMethodName: string;
17
- errorMessage?: string;
18
- }
@@ -1,4 +0,0 @@
1
- "use strict";
2
- // Response from Wyre Create
3
- // order API
4
- Object.defineProperty(exports, "__esModule", { value: true });