@heliofi/common-fe 0.2.297 → 0.2.299
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 +8 -5
- package/dist/index.js +1 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ declare enum DepositBlockchainSymbol {
|
|
|
17
17
|
HYPERCORE = "HYPERCORE",
|
|
18
18
|
PLASMA = "PLASMA",
|
|
19
19
|
MEGAETH = "MEGAETH",
|
|
20
|
+
SEISMIC = "SEISMIC",
|
|
20
21
|
}
|
|
21
22
|
//#endregion
|
|
22
23
|
//#region ../common/src/domain/model/blockchainEngine/constants/BlockchainEngineType.d.ts
|
|
@@ -28,6 +29,7 @@ declare enum BlockchainEngineType {
|
|
|
28
29
|
HYPERCORE = "HYPERCORE",
|
|
29
30
|
DOGE = "DOGE",
|
|
30
31
|
TON = "TON",
|
|
32
|
+
SEISMIC = "SEISMIC",
|
|
31
33
|
}
|
|
32
34
|
//#endregion
|
|
33
35
|
//#region ../common/src/domain/constants/platform.d.ts
|
|
@@ -235,6 +237,11 @@ declare enum BetaFeature {
|
|
|
235
237
|
CHECKOUT_V2 = "checkout_v2",
|
|
236
238
|
}
|
|
237
239
|
//#endregion
|
|
240
|
+
//#region ../common/src/domain/model/currency/entities/Currency.entity.d.ts
|
|
241
|
+
declare class Currency extends BaseCurrency {
|
|
242
|
+
blockchain: Blockchain;
|
|
243
|
+
}
|
|
244
|
+
//#endregion
|
|
238
245
|
//#region ../common/src/domain/model/theme/entities/CustomTheme.entity.d.ts
|
|
239
246
|
declare class CustomTheme extends Entity {
|
|
240
247
|
primaryColor: string;
|
|
@@ -354,11 +361,6 @@ declare class SubmitWithdrawalEntity extends Entity {
|
|
|
354
361
|
broadcastAck: BroadcastAck | null;
|
|
355
362
|
}
|
|
356
363
|
//#endregion
|
|
357
|
-
//#region ../common/src/domain/model/currency/entities/Currency.entity.d.ts
|
|
358
|
-
declare class Currency extends BaseCurrency {
|
|
359
|
-
blockchain: Blockchain;
|
|
360
|
-
}
|
|
361
|
-
//#endregion
|
|
362
364
|
//#region ../common/src/domain/model/withdraw/entities/WithdrawalQuoteFee.entity.d.ts
|
|
363
365
|
declare class WithdrawalQuoteFeeEntity extends Entity {
|
|
364
366
|
amount: string;
|
|
@@ -449,6 +451,7 @@ declare class PreparedWithdrawalDto {
|
|
|
449
451
|
toCurrencyId: string;
|
|
450
452
|
sourceCurrencyId: string;
|
|
451
453
|
customerId?: string;
|
|
454
|
+
slippageBps?: number;
|
|
452
455
|
}
|
|
453
456
|
//#endregion
|
|
454
457
|
//#region ../common/src/domain/model/withdraw/dtos/submitWithdrawal.dto.d.ts
|
package/dist/index.js
CHANGED
|
@@ -22,6 +22,7 @@ let BlockchainEngineType = /* @__PURE__ */ function(BlockchainEngineType) {
|
|
|
22
22
|
BlockchainEngineType["HYPERCORE"] = "HYPERCORE";
|
|
23
23
|
BlockchainEngineType["DOGE"] = "DOGE";
|
|
24
24
|
BlockchainEngineType["TON"] = "TON";
|
|
25
|
+
BlockchainEngineType["SEISMIC"] = "SEISMIC";
|
|
25
26
|
return BlockchainEngineType;
|
|
26
27
|
}({});
|
|
27
28
|
//#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.299",
|
|
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": "ad7594e1d0db8f675b9b9b200a93e90b03c25a68"
|
|
33
33
|
}
|