cryptobot-types 1.1.6 → 1.1.7

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cryptobot-types",
3
- "version": "1.1.6",
4
- "description": "",
3
+ "version": "1.1.7",
4
+ "description": "Type package for the cryptobot trading framework.",
5
5
  "types": "types/index.d.ts",
6
6
  "registry": "https://registry.npmjs.org/",
7
7
  "scripts": {
@@ -10,7 +10,7 @@
10
10
  "files": [
11
11
  "types"
12
12
  ],
13
- "author": "",
13
+ "author": "Sebastian Boehler",
14
14
  "license": "ISC",
15
15
  "dependencies": {
16
16
  "@types/node": "^20.8.3",
@@ -8,7 +8,13 @@ export type Rule = {
8
8
  isCorrelationTest?: boolean;
9
9
  };
10
10
 
11
- export type Exchanges = "binance" | "coinbase" | "dydx" | "kraken" | "okx";
11
+ export type Exchanges =
12
+ | "binance"
13
+ | "coinbase"
14
+ | "dydx"
15
+ | "kraken"
16
+ | "okx"
17
+ | "bybit";
12
18
 
13
19
  export type EntryOrderTypes = "Long Entry" | "Short Entry";
14
20
  type ExitOrderTypes = "Long Exit" | "Short Exit";