@riocrypto/common 1.0.2433 → 1.0.2435
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 +1 -0
- package/build/index.js +1 -0
- package/build/types/mexico-invoicing-method.d.ts +5 -0
- package/build/types/mexico-invoicing-method.js +9 -0
- package/build/types/order-attribute.d.ts +2 -1
- package/build/types/order-attribute.js +1 -0
- package/build/types/user.d.ts +2 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -443,6 +443,7 @@ export * from "./types/inbound-crypto-deposit-destination-type";
|
|
|
443
443
|
export * from "./types/STP-mxn-withdrawal-status";
|
|
444
444
|
export * from "./types/bitso-mxn-withdrawal-status";
|
|
445
445
|
export * from "./types/fireblocks-transfer-status";
|
|
446
|
+
export * from "./types/mexico-invoicing-method";
|
|
446
447
|
export * from "./classes/KYCFieldClass";
|
|
447
448
|
export * from "./classes/KYCFileClass";
|
|
448
449
|
export * from "./classes/CountryAsset";
|
package/build/index.js
CHANGED
|
@@ -459,6 +459,7 @@ __exportStar(require("./types/inbound-crypto-deposit-destination-type"), exports
|
|
|
459
459
|
__exportStar(require("./types/STP-mxn-withdrawal-status"), exports);
|
|
460
460
|
__exportStar(require("./types/bitso-mxn-withdrawal-status"), exports);
|
|
461
461
|
__exportStar(require("./types/fireblocks-transfer-status"), exports);
|
|
462
|
+
__exportStar(require("./types/mexico-invoicing-method"), exports);
|
|
462
463
|
__exportStar(require("./classes/KYCFieldClass"), exports);
|
|
463
464
|
__exportStar(require("./classes/KYCFileClass"), exports);
|
|
464
465
|
__exportStar(require("./classes/CountryAsset"), exports);
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MexicoInvoicingMethod = void 0;
|
|
4
|
+
var MexicoInvoicingMethod;
|
|
5
|
+
(function (MexicoInvoicingMethod) {
|
|
6
|
+
MexicoInvoicingMethod["UseGeneralPublic"] = "useGeneralPublic";
|
|
7
|
+
MexicoInvoicingMethod["UseProvidedFiscalData"] = "useProvidedFiscalData";
|
|
8
|
+
MexicoInvoicingMethod["DoNotInvoice"] = "doNotInvoice";
|
|
9
|
+
})(MexicoInvoicingMethod = exports.MexicoInvoicingMethod || (exports.MexicoInvoicingMethod = {}));
|
|
@@ -11,5 +11,6 @@ export declare enum OrderAttribute {
|
|
|
11
11
|
IsAxeTaker = "isAxeTaker",
|
|
12
12
|
IsReplacement = "isReplacement",
|
|
13
13
|
UsesBulkPayout = "usesBulkPayout",
|
|
14
|
-
IsPartOfTWAPSession = "isPartOfTWAPSession"
|
|
14
|
+
IsPartOfTWAPSession = "isPartOfTWAPSession",
|
|
15
|
+
CannotCancel = "cannotCancel"
|
|
15
16
|
}
|
|
@@ -16,4 +16,5 @@ var OrderAttribute;
|
|
|
16
16
|
OrderAttribute["IsReplacement"] = "isReplacement";
|
|
17
17
|
OrderAttribute["UsesBulkPayout"] = "usesBulkPayout";
|
|
18
18
|
OrderAttribute["IsPartOfTWAPSession"] = "isPartOfTWAPSession";
|
|
19
|
+
OrderAttribute["CannotCancel"] = "cannotCancel";
|
|
19
20
|
})(OrderAttribute = exports.OrderAttribute || (exports.OrderAttribute = {}));
|
package/build/types/user.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { Country } from "./country";
|
|
|
7
7
|
import { Fiat } from "./fiat";
|
|
8
8
|
import { Crypto } from "./crypto";
|
|
9
9
|
import { Side } from "./side";
|
|
10
|
+
import { MexicoInvoicingMethod } from "./mexico-invoicing-method";
|
|
10
11
|
declare type IndividualUser = {
|
|
11
12
|
id: string;
|
|
12
13
|
individualData?: {
|
|
@@ -76,7 +77,7 @@ export declare type User = {
|
|
|
76
77
|
};
|
|
77
78
|
invoicing?: {
|
|
78
79
|
MX?: {
|
|
79
|
-
|
|
80
|
+
method?: MexicoInvoicingMethod;
|
|
80
81
|
fiscalName?: string;
|
|
81
82
|
fiscalRegimenCode?: number;
|
|
82
83
|
taxId?: string;
|