@riocrypto/common 1.0.881 → 1.0.882

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
@@ -152,6 +152,7 @@ export * from "./types/admin-task";
152
152
  export * from "./types/partner";
153
153
  export * from "./types/import-order-input";
154
154
  export * from "./types/master-order-record";
155
+ export * from "./types/invoice";
155
156
  export * from "./classes/Asset";
156
157
  export * from "./classes/CountryAsset";
157
158
  export * from "./classes/CryptoAsset";
package/build/index.js CHANGED
@@ -168,6 +168,7 @@ __exportStar(require("./types/admin-task"), exports);
168
168
  __exportStar(require("./types/partner"), exports);
169
169
  __exportStar(require("./types/import-order-input"), exports);
170
170
  __exportStar(require("./types/master-order-record"), exports);
171
+ __exportStar(require("./types/invoice"), exports);
171
172
  __exportStar(require("./classes/Asset"), exports);
172
173
  __exportStar(require("./classes/CountryAsset"), exports);
173
174
  __exportStar(require("./classes/CryptoAsset"), exports);
@@ -0,0 +1,12 @@
1
+ import { Country } from "./country";
2
+ export interface Invoice {
3
+ id: string;
4
+ createdAt: Date;
5
+ userId: string;
6
+ orderId: string;
7
+ country: Country;
8
+ provider: string;
9
+ providerId: string;
10
+ pdfUrl?: string;
11
+ xmlUrl?: string;
12
+ }
@@ -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.881",
3
+ "version": "1.0.882",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",