@cryptorobot.ai/client 0.0.19 → 0.0.26
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/lib/client.d.ts +38 -36
- package/lib/client.js +6 -12
- package/lib/configuration.d.ts +20 -1
- package/lib/firebase-push-notification.d.ts +1 -0
- package/lib/helpers/backtest.helper.d.ts +53 -4
- package/lib/helpers/ccxt.helper.d.ts +75 -0
- package/lib/helpers/deployments.helper.d.ts +72 -0
- package/lib/helpers/funnel.helper.d.ts +17 -0
- package/lib/helpers/hyperopt.helper.d.ts +14 -0
- package/lib/helpers/push-notification.helper.d.ts +7 -0
- package/lib/helpers/queue.helper.d.ts +8 -0
- package/lib/helpers/sqlite3.helper.d.ts +6 -0
- package/lib/helpers/sqs.helper.d.ts +7 -0
- package/lib/helpers/subscription.helper.d.ts +48 -0
- package/lib/helpers/telegram.helper.d.ts +26 -1
- package/lib/helpers/trader.helper.d.ts +26 -0
- package/lib/hooks/application/setup-config-preparation.d.ts +1 -1
- package/lib/hooks/application/setup-info.d.ts +1 -1
- package/lib/hooks/application/setup-load-indicators.d.ts +1 -1
- package/lib/hooks/application/setup-load-strategy-templates.d.ts +1 -1
- package/lib/hooks/aws-prepare-batch-job.d.ts +2 -0
- package/lib/hooks/backtest-copy-candles-from-user-data.d.ts +1 -1
- package/lib/hooks/{backtest-generate-and-start.d.ts → backtest-generate-and-queue.d.ts} +1 -1
- package/lib/hooks/backtest-generate-config.d.ts +6 -0
- package/lib/hooks/backtest-generate-exchange-config.d.ts +6 -0
- package/lib/hooks/backtest-get-results.d.ts +12 -0
- package/lib/hooks/file-generate-config-hyperopt.d.ts +2 -0
- package/lib/hooks/setup-ensure-image.d.ts +3 -0
- package/lib/hooks/setup-firebase.d.ts +2 -0
- package/lib/hooks/setup-homepage.d.ts +3 -0
- package/lib/hooks/setup-mautic.d.ts +3 -0
- package/lib/hooks/setup-mixpanel.d.ts +3 -0
- package/lib/hooks/setup-prepare-maildev-while-in-test-env.d.ts +1 -1
- package/lib/hooks/setup-queues.d.ts +1 -1
- package/lib/hooks/sqlite-reset-database.d.ts +2 -0
- package/lib/hooks/traders/pods-process-worker.d.ts +5 -0
- package/lib/sentry.d.ts +2 -0
- package/lib/services/exchanges/balance/balance.schema.d.ts +56 -56
- package/lib/services/exchanges/download/download.schema.d.ts +60 -60
- package/lib/services/exchanges/download/webhooks/webhooks.schema.d.ts +84 -84
- package/lib/services/exchanges/exchanges.schema.d.ts +198 -198
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +110 -110
- package/lib/services/homepage/homepage.class.d.ts +15 -0
- package/lib/services/homepage/homepage.d.ts +10 -0
- package/lib/services/homepage/homepage.schema.d.ts +237 -0
- package/lib/services/homepage/homepage.shared.d.ts +4 -0
- package/lib/services/homepage/homepage.shared.js +6 -0
- package/lib/services/markets/markets.schema.d.ts +112 -112
- package/lib/services/messages/messages.schema.d.ts +136 -64
- package/lib/services/strategies/ai/ai.schema.d.ts +32 -32
- package/lib/services/strategies/backtest/backtest.schema.d.ts +394 -84
- package/lib/services/strategies/backtest/results/results.class.d.ts +1 -1
- package/lib/services/strategies/backtest/results/results.schema.d.ts +454 -156
- package/lib/services/strategies/hyperopt/hyperopt.class.d.ts +11 -0
- package/lib/services/strategies/hyperopt/hyperopt.d.ts +11 -0
- package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +375 -0
- package/lib/services/strategies/hyperopt/hyperopt.shared.d.ts +13 -0
- package/lib/services/strategies/hyperopt/hyperopt.shared.js +13 -0
- package/lib/services/strategies/indicators/indicators.schema.d.ts +40 -40
- package/lib/services/strategies/strategies.schema.d.ts +329 -247
- package/lib/services/strategies/templates/templates.schema.d.ts +41 -41
- package/lib/services/stripe/charges/charges.d.ts +1 -1
- package/lib/services/stripe/customers/customers.d.ts +1 -1
- package/lib/services/stripe/customers/paymentintent/paymentintent.d.ts +1 -1
- package/lib/services/stripe/customers/paymentmethods/paymentmethods.d.ts +1 -1
- package/lib/services/stripe/products/products.d.ts +1 -1
- package/lib/services/traders/pods/api/api.class.d.ts +1 -1
- package/lib/services/traders/pods/api/api.schema.d.ts +519 -519
- package/lib/services/traders/pods/events/events.schema.d.ts +375 -111
- package/lib/services/traders/pods/pods.schema.d.ts +384 -384
- package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +76 -76
- package/lib/services/traders/traders.class.d.ts +7 -1
- package/lib/services/traders/traders.d.ts +1 -0
- package/lib/services/traders/traders.schema.d.ts +852 -380
- package/lib/services/users/users.class.d.ts +1 -1
- package/lib/services/users/users.schema.d.ts +158 -52
- package/package.json +24 -16
- package/lib/hooks/bootstrap-user-telegram.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cryptorobot.ai/client",
|
|
3
3
|
"description": "A typed client for the cryptorobot.ai platform",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.26",
|
|
5
5
|
"homepage": "",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"cryptocurrency",
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
"bitcoin",
|
|
14
14
|
"ethereum"
|
|
15
15
|
],
|
|
16
|
-
"author": {},
|
|
17
16
|
"contributors": [],
|
|
18
17
|
"bugs": {},
|
|
19
18
|
"engines": {
|
|
@@ -41,20 +40,29 @@
|
|
|
41
40
|
"lib/**/*.shared.js"
|
|
42
41
|
],
|
|
43
42
|
"main": "lib/client",
|
|
43
|
+
"config": {
|
|
44
|
+
"commitizen": {
|
|
45
|
+
"path": "node_modules/cz-customizable"
|
|
46
|
+
},
|
|
47
|
+
"cz-customizable": {
|
|
48
|
+
"config": ".cz.config.js"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
44
51
|
"dependencies": {
|
|
45
|
-
"@feathersjs/authentication": "^5.0.
|
|
46
|
-
"@feathersjs/authentication-client": "^5.0.
|
|
47
|
-
"@feathersjs/authentication-local": "^5.0.
|
|
48
|
-
"@feathersjs/authentication-oauth": "^5.0.
|
|
49
|
-
"@feathersjs/configuration": "^5.0.
|
|
50
|
-
"@feathersjs/errors": "^5.0.
|
|
51
|
-
"@feathersjs/feathers": "^5.0.
|
|
52
|
-
"@feathersjs/schema": "^5.0.
|
|
53
|
-
"@feathersjs/koa": "^5.0.
|
|
54
|
-
"@feathersjs/mongodb": "^5.0.
|
|
55
|
-
"@feathersjs/socketio": "^5.0.
|
|
56
|
-
"@feathersjs/transport-commons": "^5.0.
|
|
57
|
-
"@feathersjs/typebox": "^5.0.
|
|
58
|
-
"@feathersjs/socketio-client": "^5.0.
|
|
52
|
+
"@feathersjs/authentication": "^5.0.21",
|
|
53
|
+
"@feathersjs/authentication-client": "^5.0.21",
|
|
54
|
+
"@feathersjs/authentication-local": "^5.0.21",
|
|
55
|
+
"@feathersjs/authentication-oauth": "^5.0.21",
|
|
56
|
+
"@feathersjs/configuration": "^5.0.21",
|
|
57
|
+
"@feathersjs/errors": "^5.0.21",
|
|
58
|
+
"@feathersjs/feathers": "^5.0.21",
|
|
59
|
+
"@feathersjs/schema": "^5.0.21",
|
|
60
|
+
"@feathersjs/koa": "^5.0.21",
|
|
61
|
+
"@feathersjs/mongodb": "^5.0.21",
|
|
62
|
+
"@feathersjs/socketio": "^5.0.21",
|
|
63
|
+
"@feathersjs/transport-commons": "^5.0.21",
|
|
64
|
+
"@feathersjs/typebox": "^5.0.21",
|
|
65
|
+
"@feathersjs/socketio-client": "^5.0.21",
|
|
66
|
+
"@feathersjs/memory": "^5.0.21"
|
|
59
67
|
}
|
|
60
68
|
}
|