@riocrypto/common 1.0.1607 → 1.0.1610

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
@@ -269,7 +269,6 @@ export * from "./classes/PartnerClass";
269
269
  export * from "./classes/ImmigrationStatusClass";
270
270
  export * from "./helpers/get-user-from-client-helper";
271
271
  export * from "./helpers/validate-address";
272
- export * from "./helpers/round-down-to-two-decimal-places";
273
272
  export * from "./helpers/humanize-order-status";
274
273
  export * from "./helpers/humanize-chained-order-status";
275
274
  export * from "./helpers/humanize-onboarding-status";
package/build/index.js CHANGED
@@ -285,7 +285,6 @@ __exportStar(require("./classes/PartnerClass"), exports);
285
285
  __exportStar(require("./classes/ImmigrationStatusClass"), exports);
286
286
  __exportStar(require("./helpers/get-user-from-client-helper"), exports);
287
287
  __exportStar(require("./helpers/validate-address"), exports);
288
- __exportStar(require("./helpers/round-down-to-two-decimal-places"), exports);
289
288
  __exportStar(require("./helpers/humanize-order-status"), exports);
290
289
  __exportStar(require("./helpers/humanize-chained-order-status"), exports);
291
290
  __exportStar(require("./helpers/humanize-onboarding-status"), exports);
@@ -8,6 +8,7 @@ export interface BankPayout {
8
8
  transferDetails?: {
9
9
  speiTrackingNumber?: string;
10
10
  spidTrackingNumber?: string;
11
+ cepLink?: string;
11
12
  reference?: string;
12
13
  };
13
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1607",
3
+ "version": "1.0.1610",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",
@@ -1 +0,0 @@
1
- export declare const roundDownToTwoDecimalPlaces: (number: number) => number;
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.roundDownToTwoDecimalPlaces = void 0;
4
- const roundDownToTwoDecimalPlaces = (number) => {
5
- return Number(number.toFixed(2));
6
- };
7
- exports.roundDownToTwoDecimalPlaces = roundDownToTwoDecimalPlaces;