@orderly.network/trading 2.8.1 → 2.8.2

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.mts CHANGED
@@ -109,6 +109,8 @@ interface TradingViewConfigInterface {
109
109
  customCssUrl?: string;
110
110
  colorConfig?: ColorConfigInterface;
111
111
  locale?: TradingviewWidgetPropsInterface["locale"];
112
+ enabled_features?: string[];
113
+ disabled_features?: string[];
112
114
  }
113
115
  interface ColorConfigInterface {
114
116
  chartBG?: string;
@@ -413,6 +415,8 @@ declare const useFundingRateModalScript: (options: FundingRateOptions) => {
413
415
  lastFundingRate: string | undefined;
414
416
  estFundingRate: string | undefined;
415
417
  estFundingFee: string;
418
+ lastFundingRateAnnualized: string | undefined;
419
+ estFundingRateAnnualized: string | undefined;
416
420
  };
417
421
  type FundingRateModalState = ReturnType<typeof useFundingRateModalScript>;
418
422
 
package/dist/index.d.ts CHANGED
@@ -109,6 +109,8 @@ interface TradingViewConfigInterface {
109
109
  customCssUrl?: string;
110
110
  colorConfig?: ColorConfigInterface;
111
111
  locale?: TradingviewWidgetPropsInterface["locale"];
112
+ enabled_features?: string[];
113
+ disabled_features?: string[];
112
114
  }
113
115
  interface ColorConfigInterface {
114
116
  chartBG?: string;
@@ -413,6 +415,8 @@ declare const useFundingRateModalScript: (options: FundingRateOptions) => {
413
415
  lastFundingRate: string | undefined;
414
416
  estFundingRate: string | undefined;
415
417
  estFundingFee: string;
418
+ lastFundingRateAnnualized: string | undefined;
419
+ estFundingRateAnnualized: string | undefined;
416
420
  };
417
421
  type FundingRateModalState = ReturnType<typeof useFundingRateModalScript>;
418
422