@riocrypto/common 1.0.1615 → 1.0.1616

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.
@@ -1,3 +1,3 @@
1
- export declare enum OrderAttributes {
1
+ export declare enum OrderAttribute {
2
2
  binanceFlow = "binanceFlow"
3
3
  }
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.OrderAttributes = void 0;
4
- var OrderAttributes;
5
- (function (OrderAttributes) {
6
- OrderAttributes["binanceFlow"] = "binanceFlow";
7
- })(OrderAttributes = exports.OrderAttributes || (exports.OrderAttributes = {}));
3
+ exports.OrderAttribute = void 0;
4
+ var OrderAttribute;
5
+ (function (OrderAttribute) {
6
+ OrderAttribute["binanceFlow"] = "binanceFlow";
7
+ })(OrderAttribute = exports.OrderAttribute || (exports.OrderAttribute = {}));
@@ -11,7 +11,7 @@ import { PayoutMethod } from "./payout-method";
11
11
  import { Partner } from "./partner";
12
12
  import { ExchangeRateOrder } from "./exchange-rate-order";
13
13
  import { OrderSubstatus } from "./order-substatus";
14
- import { OrderAttributes } from "./order-attribute";
14
+ import { OrderAttribute } from "./order-attribute";
15
15
  export interface Order {
16
16
  id: string;
17
17
  quoteId: string;
@@ -63,5 +63,5 @@ export interface Order {
63
63
  paymentAddressId?: string;
64
64
  payoutAddressId?: string;
65
65
  payoutBankAccountId?: string;
66
- attributes?: OrderAttributes[];
66
+ attributes?: OrderAttribute[];
67
67
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1615",
3
+ "version": "1.0.1616",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",