@riocrypto/common 1.0.2606 → 1.0.2607

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
@@ -502,6 +502,7 @@ export * from "./types/indicative-quote-page";
502
502
  export * from "./types/cancelled-order-pnl-entry";
503
503
  export * from "./types/cancelled-order-pnl-report";
504
504
  export * from "./types/banner-announcement";
505
+ export * from "./types/colombia-invoicing-method";
505
506
  export * from "./helpers/get-stablecoin-type";
506
507
  export * from "./helpers/is-usd-backed-crypto";
507
508
  export * from "./helpers/is-eur-backed-crypto";
package/build/index.js CHANGED
@@ -518,6 +518,7 @@ __exportStar(require("./types/indicative-quote-page"), exports);
518
518
  __exportStar(require("./types/cancelled-order-pnl-entry"), exports);
519
519
  __exportStar(require("./types/cancelled-order-pnl-report"), exports);
520
520
  __exportStar(require("./types/banner-announcement"), exports);
521
+ __exportStar(require("./types/colombia-invoicing-method"), exports);
521
522
  __exportStar(require("./helpers/get-stablecoin-type"), exports);
522
523
  __exportStar(require("./helpers/is-usd-backed-crypto"), exports);
523
524
  __exportStar(require("./helpers/is-eur-backed-crypto"), exports);
@@ -0,0 +1,4 @@
1
+ export declare enum ColombiaInvoicingMethod {
2
+ UseProvidedFiscalData = "useProvidedFiscalData",
3
+ DoNotInvoice = "doNotInvoice"
4
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ColombiaInvoicingMethod = void 0;
4
+ var ColombiaInvoicingMethod;
5
+ (function (ColombiaInvoicingMethod) {
6
+ ColombiaInvoicingMethod["UseProvidedFiscalData"] = "useProvidedFiscalData";
7
+ ColombiaInvoicingMethod["DoNotInvoice"] = "doNotInvoice";
8
+ })(ColombiaInvoicingMethod = exports.ColombiaInvoicingMethod || (exports.ColombiaInvoicingMethod = {}));
@@ -8,6 +8,7 @@ import { Fiat } from "./fiat";
8
8
  import { Crypto } from "./crypto";
9
9
  import { Side } from "./side";
10
10
  import { MexicoInvoicingMethod } from "./mexico-invoicing-method";
11
+ import { ColombiaInvoicingMethod } from "./colombia-invoicing-method";
11
12
  type IndividualUser = {
12
13
  id: string;
13
14
  individualData?: {
@@ -83,6 +84,12 @@ export type User = {
83
84
  taxId?: string;
84
85
  postalCode?: string;
85
86
  };
87
+ CO?: {
88
+ method?: ColombiaInvoicingMethod;
89
+ fiscalName?: string;
90
+ taxId?: string;
91
+ postalCode?: string;
92
+ };
86
93
  };
87
94
  quotationTime?: number;
88
95
  slackChannelId?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2606",
3
+ "version": "1.0.2607",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",