@riocrypto/common 1.0.341 → 1.0.343
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/events/order-created-event.d.ts +1 -0
- package/build/events/order-updated-event.d.ts +1 -0
- package/build/index.d.ts +1 -0
- package/build/index.js +1 -0
- package/build/types/business-user.d.ts +2 -0
- package/build/types/platform-fee-range.d.ts +5 -0
- package/build/types/platform-fee-range.js +2 -0
- package/build/types/user.d.ts +2 -0
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -108,6 +108,7 @@ export * from "./types/business-user";
|
|
|
108
108
|
export * from "./types/business-user-input";
|
|
109
109
|
export * from "./types/business-user-update";
|
|
110
110
|
export * from "./types/user-type";
|
|
111
|
+
export * from "./types/platform-fee-range";
|
|
111
112
|
export * from "./classes/Asset";
|
|
112
113
|
export * from "./classes/CountryAsset";
|
|
113
114
|
export * from "./classes/CryptoAsset";
|
package/build/index.js
CHANGED
|
@@ -124,6 +124,7 @@ __exportStar(require("./types/business-user"), exports);
|
|
|
124
124
|
__exportStar(require("./types/business-user-input"), exports);
|
|
125
125
|
__exportStar(require("./types/business-user-update"), exports);
|
|
126
126
|
__exportStar(require("./types/user-type"), exports);
|
|
127
|
+
__exportStar(require("./types/platform-fee-range"), exports);
|
|
127
128
|
__exportStar(require("./classes/Asset"), exports);
|
|
128
129
|
__exportStar(require("./classes/CountryAsset"), exports);
|
|
129
130
|
__exportStar(require("./classes/CryptoAsset"), exports);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Country } from "./country";
|
|
2
2
|
import { KYCStatus } from "./kyc-status";
|
|
3
3
|
import { Language } from "./language";
|
|
4
|
+
import { PlatformFeeRange } from "./platform-fee-range";
|
|
4
5
|
import { USState } from "./us-state";
|
|
5
6
|
import { UserAttribute } from "./user-attribute";
|
|
6
7
|
import { UserType } from "./user-type";
|
|
@@ -25,4 +26,5 @@ export interface BusinessUser {
|
|
|
25
26
|
KYCReportFile?: string;
|
|
26
27
|
attributes?: UserAttribute[];
|
|
27
28
|
brokerId?: string;
|
|
29
|
+
platofrmFeeRanges?: PlatformFeeRange[];
|
|
28
30
|
}
|
package/build/types/user.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Country } from "./country";
|
|
2
2
|
import { KYCStatus } from "./kyc-status";
|
|
3
3
|
import { Language } from "./language";
|
|
4
|
+
import { PlatformFeeRange } from "./platform-fee-range";
|
|
4
5
|
import { USState } from "./us-state";
|
|
5
6
|
import { UserAttribute } from "./user-attribute";
|
|
6
7
|
import { UserType } from "./user-type";
|
|
@@ -24,4 +25,5 @@ export interface User {
|
|
|
24
25
|
partnerId?: string;
|
|
25
26
|
attributes?: UserAttribute[];
|
|
26
27
|
brokerId?: string;
|
|
28
|
+
platofrmFeeRanges?: PlatformFeeRange[];
|
|
27
29
|
}
|