@heliofi/common-fe 0.2.313 → 0.2.315
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/dist/index.d.ts +3 -0
- package/dist/index.js +2 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ declare enum DepositBlockchainSymbol {
|
|
|
18
18
|
PLASMA = "PLASMA",
|
|
19
19
|
MEGAETH = "MEGAETH",
|
|
20
20
|
SEISMIC = "SEISMIC",
|
|
21
|
+
ROBINHOOD = "ROBINHOOD",
|
|
21
22
|
}
|
|
22
23
|
//#endregion
|
|
23
24
|
//#region ../common/src/domain/model/blockchainEngine/constants/BlockchainEngineType.d.ts
|
|
@@ -107,6 +108,7 @@ declare enum BetaFeature {
|
|
|
107
108
|
CHECKOUT_V2 = "checkout_v2",
|
|
108
109
|
TRON_ENERGY_RENTAL = "TRON_ENERGY_RENTAL",
|
|
109
110
|
THEMES_V2 = "themesV2",
|
|
111
|
+
MOONPAY_IP_MATCHING_DISABLED = "MOONPAY_IP_MATCHING_DISABLED",
|
|
110
112
|
}
|
|
111
113
|
//#endregion
|
|
112
114
|
//#region ../common/src/domain/constants/deposits.d.ts
|
|
@@ -282,6 +284,7 @@ declare class BaseCompany extends Entity {
|
|
|
282
284
|
tradingViewDetails?: string;
|
|
283
285
|
kycVerified?: boolean;
|
|
284
286
|
kybVerified?: boolean;
|
|
287
|
+
isVerified?: boolean;
|
|
285
288
|
isVerificationRequired: boolean;
|
|
286
289
|
moonpayApiKey?: string;
|
|
287
290
|
moonpayIsEnabled?: boolean;
|
package/dist/index.js
CHANGED
|
@@ -19,6 +19,7 @@ let DepositBlockchainSymbol = /* @__PURE__ */ function(DepositBlockchainSymbol)
|
|
|
19
19
|
DepositBlockchainSymbol["PLASMA"] = "PLASMA";
|
|
20
20
|
DepositBlockchainSymbol["MEGAETH"] = "MEGAETH";
|
|
21
21
|
DepositBlockchainSymbol["SEISMIC"] = "SEISMIC";
|
|
22
|
+
DepositBlockchainSymbol["ROBINHOOD"] = "ROBINHOOD";
|
|
22
23
|
return DepositBlockchainSymbol;
|
|
23
24
|
}({});
|
|
24
25
|
//#endregion
|
|
@@ -131,6 +132,7 @@ let BetaFeature = /* @__PURE__ */ function(BetaFeature) {
|
|
|
131
132
|
BetaFeature["CHECKOUT_V2"] = "checkout_v2";
|
|
132
133
|
BetaFeature["TRON_ENERGY_RENTAL"] = "TRON_ENERGY_RENTAL";
|
|
133
134
|
BetaFeature["THEMES_V2"] = "themesV2";
|
|
135
|
+
BetaFeature["MOONPAY_IP_MATCHING_DISABLED"] = "MOONPAY_IP_MATCHING_DISABLED";
|
|
134
136
|
return BetaFeature;
|
|
135
137
|
}({});
|
|
136
138
|
//#endregion
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heliofi/common-fe",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.315",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Zero-dependency, frontend-safe shared enums (and, later, DTO type shapes) for Helio consumers. No class-validator / reflect-metadata / heavy blockchain deps.",
|
|
6
6
|
"license": "ISC",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"typescript": "5.*"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "897e9ebf77716a83433ec4ad1dc9a6db9ae78e8e"
|
|
33
33
|
}
|