@dhedge/trading-widget 3.3.4 → 3.3.5
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/core-kit/const/logger.d.ts +3 -1
- package/{index-146145a3.cjs → index-3635d66b.cjs} +34 -34
- package/{index-683da8b1.js → index-7958cab7.js} +3002 -3007
- package/index.cjs +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/{pyth-adapter-6df6645f.js → pyth-adapter-2a79fb6a.js} +1 -1
- package/{pyth-adapter-834651fc.cjs → pyth-adapter-70a707b2.cjs} +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { TransactionAction } from 'core-kit/types';
|
|
1
2
|
export declare const TRADING_PANEL_LOG_EVENT: {
|
|
2
3
|
INVEST_INPUT_FOCUS: string;
|
|
3
4
|
APPROVED_TOKEN: string;
|
|
@@ -12,10 +13,11 @@ export declare const TRADING_PANEL_LOG_EVENT: {
|
|
|
12
13
|
TRADING_SETTINGS_OPENED: string;
|
|
13
14
|
INFINITE_ALLOWANCE_CHANGE: string;
|
|
14
15
|
};
|
|
16
|
+
export declare const LOG_EVENT_BY_TRANSACTION_ACTION_MAP: Record<TransactionAction, string[]>;
|
|
15
17
|
/**
|
|
16
18
|
* Limits: Up to 50 custom event parameters per project;
|
|
17
19
|
* 40 must be numeric and 10 textual
|
|
18
|
-
* Parameter names can be up to 40 characters long
|
|
20
|
+
* Parameter names can be up to 40 characters long alphanumeric with underscores
|
|
19
21
|
* Parameter textual values can be up to 100 characters long
|
|
20
22
|
*/
|
|
21
23
|
export declare const TRADING_LOG_EVENT_PARAM: {
|