@cryptorobot.ai/client 0.0.12 → 0.0.14
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/services/exchanges/balance/balance.schema.d.ts +40 -40
- package/lib/services/exchanges/download/download.schema.d.ts +40 -40
- package/lib/services/exchanges/download/webhooks/webhooks.schema.d.ts +80 -80
- package/lib/services/exchanges/exchanges.schema.d.ts +72 -72
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +64 -64
- package/lib/services/markets/markets.schema.d.ts +72 -72
- package/lib/services/messages/messages.schema.d.ts +48 -48
- package/lib/services/strategies/ai/ai.schema.d.ts +32 -32
- package/lib/services/strategies/backtest/backtest.schema.d.ts +56 -56
- package/lib/services/strategies/backtest/results/results.schema.d.ts +72 -72
- package/lib/services/strategies/indicators/indicators.schema.d.ts +32 -32
- package/lib/services/strategies/strategies.schema.d.ts +88 -88
- package/lib/services/strategies/templates/templates.schema.d.ts +32 -32
- package/lib/services/traders/pods/api/api.schema.d.ts +64 -64
- package/lib/services/traders/pods/events/events.schema.d.ts +72 -72
- package/lib/services/traders/pods/pods.schema.d.ts +80 -80
- package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +48 -48
- package/lib/services/traders/traders.schema.d.ts +152 -296
- package/lib/services/users/users.schema.d.ts +48 -48
- package/package.json +1 -1
|
@@ -1240,8 +1240,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1240
1240
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1241
1241
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1242
1242
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1243
|
-
$in: import("@feathersjs/typebox").
|
|
1244
|
-
$nin: import("@feathersjs/typebox").
|
|
1243
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1244
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1245
1245
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1246
1246
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1247
1247
|
} | undefined>]>>]>>;
|
|
@@ -1251,8 +1251,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1251
1251
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1252
1252
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1253
1253
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1254
|
-
$in: import("@feathersjs/typebox").
|
|
1255
|
-
$nin: import("@feathersjs/typebox").
|
|
1254
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1255
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1256
1256
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1257
1257
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1258
1258
|
} | undefined>]>>]>>;
|
|
@@ -1262,8 +1262,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1262
1262
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1263
1263
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1264
1264
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1265
|
-
$in: import("@feathersjs/typebox").
|
|
1266
|
-
$nin: import("@feathersjs/typebox").
|
|
1265
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
1266
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
1267
1267
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1268
1268
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1269
1269
|
} | undefined>]>>]>>;
|
|
@@ -1273,8 +1273,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1273
1273
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1274
1274
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1275
1275
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1276
|
-
$in: import("@feathersjs/typebox").
|
|
1277
|
-
$nin: import("@feathersjs/typebox").
|
|
1276
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1277
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1278
1278
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1279
1279
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1280
1280
|
} | undefined>]>>]>>;
|
|
@@ -1284,8 +1284,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1284
1284
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1285
1285
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1286
1286
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1287
|
-
$in: import("@feathersjs/typebox").
|
|
1288
|
-
$nin: import("@feathersjs/typebox").
|
|
1287
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1288
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1289
1289
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1290
1290
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1291
1291
|
} | undefined>]>>]>>;
|
|
@@ -1295,8 +1295,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1295
1295
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1296
1296
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1297
1297
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1298
|
-
$in: import("@feathersjs/typebox").
|
|
1299
|
-
$nin: import("@feathersjs/typebox").
|
|
1298
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1299
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1300
1300
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1301
1301
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1302
1302
|
} | undefined>]>>]>>;
|
|
@@ -1306,8 +1306,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1306
1306
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1307
1307
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1308
1308
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1309
|
-
$in: import("@feathersjs/typebox").
|
|
1310
|
-
$nin: import("@feathersjs/typebox").
|
|
1309
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1310
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1311
1311
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1312
1312
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1313
1313
|
} | undefined>]>>]>>;
|
|
@@ -1317,8 +1317,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1317
1317
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1318
1318
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1319
1319
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1320
|
-
$in: import("@feathersjs/typebox").
|
|
1321
|
-
$nin: import("@feathersjs/typebox").
|
|
1320
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1321
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1322
1322
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1323
1323
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1324
1324
|
} | undefined>]>>]>>;
|
|
@@ -1328,8 +1328,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1328
1328
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1329
1329
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1330
1330
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1331
|
-
$in: import("@feathersjs/typebox").
|
|
1332
|
-
$nin: import("@feathersjs/typebox").
|
|
1331
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1332
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1333
1333
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1334
1334
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1335
1335
|
} | undefined>]>>]>>;
|
|
@@ -1339,8 +1339,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1339
1339
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1340
1340
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1341
1341
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1342
|
-
$in: import("@feathersjs/typebox").
|
|
1343
|
-
$nin: import("@feathersjs/typebox").
|
|
1342
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
1343
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
1344
1344
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1345
1345
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1346
1346
|
} | undefined>]>>]>>;
|
|
@@ -1404,16 +1404,7 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1404
1404
|
username: import("@feathersjs/typebox").TString<string>;
|
|
1405
1405
|
password: import("@feathersjs/typebox").TString<string>;
|
|
1406
1406
|
}>;
|
|
1407
|
-
$in: import("@feathersjs/typebox").TObject<{
|
|
1408
|
-
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1409
|
-
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
1410
|
-
listen_port: import("@feathersjs/typebox").TNumber;
|
|
1411
|
-
verbosity: import("@feathersjs/typebox").TString<string>;
|
|
1412
|
-
jwt_secret_key: import("@feathersjs/typebox").TString<string>;
|
|
1413
|
-
CORS_origins: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1414
|
-
username: import("@feathersjs/typebox").TString<string>;
|
|
1415
|
-
password: import("@feathersjs/typebox").TString<string>;
|
|
1416
|
-
}> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1407
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1417
1408
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1418
1409
|
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
1419
1410
|
listen_port: import("@feathersjs/typebox").TNumber;
|
|
@@ -1423,16 +1414,7 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1423
1414
|
username: import("@feathersjs/typebox").TString<string>;
|
|
1424
1415
|
password: import("@feathersjs/typebox").TString<string>;
|
|
1425
1416
|
}>>;
|
|
1426
|
-
$nin: import("@feathersjs/typebox").TObject<{
|
|
1427
|
-
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1428
|
-
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
1429
|
-
listen_port: import("@feathersjs/typebox").TNumber;
|
|
1430
|
-
verbosity: import("@feathersjs/typebox").TString<string>;
|
|
1431
|
-
jwt_secret_key: import("@feathersjs/typebox").TString<string>;
|
|
1432
|
-
CORS_origins: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1433
|
-
username: import("@feathersjs/typebox").TString<string>;
|
|
1434
|
-
password: import("@feathersjs/typebox").TString<string>;
|
|
1435
|
-
}> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1417
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1436
1418
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1437
1419
|
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
1438
1420
|
listen_port: import("@feathersjs/typebox").TNumber;
|
|
@@ -1451,8 +1433,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1451
1433
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1452
1434
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1453
1435
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1454
|
-
$in: import("@feathersjs/typebox").
|
|
1455
|
-
$nin: import("@feathersjs/typebox").
|
|
1436
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1437
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1456
1438
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1457
1439
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1458
1440
|
} | undefined>]>>]>>;
|
|
@@ -1464,8 +1446,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1464
1446
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1465
1447
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1466
1448
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1467
|
-
$in: import("@feathersjs/typebox").
|
|
1468
|
-
$nin: import("@feathersjs/typebox").
|
|
1449
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1450
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1469
1451
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1470
1452
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1471
1453
|
} | undefined>]>>]>>;
|
|
@@ -1475,8 +1457,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1475
1457
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1476
1458
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1477
1459
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1478
|
-
$in: import("@feathersjs/typebox").
|
|
1479
|
-
$nin: import("@feathersjs/typebox").
|
|
1460
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1461
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1480
1462
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1481
1463
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1482
1464
|
} | undefined>]>>]>>;
|
|
@@ -1486,8 +1468,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1486
1468
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1487
1469
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1488
1470
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1489
|
-
$in: import("@feathersjs/typebox").
|
|
1490
|
-
$nin: import("@feathersjs/typebox").
|
|
1471
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
1472
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
1491
1473
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1492
1474
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1493
1475
|
} | undefined>]>>]>>;
|
|
@@ -1497,8 +1479,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1497
1479
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1498
1480
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1499
1481
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1500
|
-
$in: import("@feathersjs/typebox").
|
|
1501
|
-
$nin: import("@feathersjs/typebox").
|
|
1482
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1483
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1502
1484
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1503
1485
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1504
1486
|
} | undefined>]>>]>>;
|
|
@@ -1508,8 +1490,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1508
1490
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1509
1491
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1510
1492
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1511
|
-
$in: import("@feathersjs/typebox").
|
|
1512
|
-
$nin: import("@feathersjs/typebox").
|
|
1493
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1494
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1513
1495
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1514
1496
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1515
1497
|
} | undefined>]>>]>>;
|
|
@@ -1519,8 +1501,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1519
1501
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1520
1502
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1521
1503
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1522
|
-
$in: import("@feathersjs/typebox").
|
|
1523
|
-
$nin: import("@feathersjs/typebox").
|
|
1504
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1505
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1524
1506
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1525
1507
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1526
1508
|
} | undefined>]>>]>>;
|
|
@@ -1530,8 +1512,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1530
1512
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1531
1513
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1532
1514
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1533
|
-
$in: import("@feathersjs/typebox").
|
|
1534
|
-
$nin: import("@feathersjs/typebox").
|
|
1515
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1516
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1535
1517
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1536
1518
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1537
1519
|
} | undefined>]>>]>>;
|
|
@@ -1541,8 +1523,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1541
1523
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1542
1524
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1543
1525
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1544
|
-
$in: import("@feathersjs/typebox").
|
|
1545
|
-
$nin: import("@feathersjs/typebox").
|
|
1526
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1527
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1546
1528
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1547
1529
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1548
1530
|
} | undefined>]>>]>>;
|
|
@@ -1552,8 +1534,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1552
1534
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1553
1535
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1554
1536
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1555
|
-
$in: import("@feathersjs/typebox").
|
|
1556
|
-
$nin: import("@feathersjs/typebox").
|
|
1537
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1538
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1557
1539
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1558
1540
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1559
1541
|
} | undefined>]>>]>>;
|
|
@@ -1563,8 +1545,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1563
1545
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1564
1546
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1565
1547
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1566
|
-
$in: import("@feathersjs/typebox").
|
|
1567
|
-
$nin: import("@feathersjs/typebox").
|
|
1548
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
1549
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
1568
1550
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1569
1551
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1570
1552
|
} | undefined>]>>]>>;
|
|
@@ -1628,16 +1610,7 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1628
1610
|
username: import("@feathersjs/typebox").TString<string>;
|
|
1629
1611
|
password: import("@feathersjs/typebox").TString<string>;
|
|
1630
1612
|
}>;
|
|
1631
|
-
$in: import("@feathersjs/typebox").TObject<{
|
|
1632
|
-
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1633
|
-
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
1634
|
-
listen_port: import("@feathersjs/typebox").TNumber;
|
|
1635
|
-
verbosity: import("@feathersjs/typebox").TString<string>;
|
|
1636
|
-
jwt_secret_key: import("@feathersjs/typebox").TString<string>;
|
|
1637
|
-
CORS_origins: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1638
|
-
username: import("@feathersjs/typebox").TString<string>;
|
|
1639
|
-
password: import("@feathersjs/typebox").TString<string>;
|
|
1640
|
-
}> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1613
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1641
1614
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1642
1615
|
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
1643
1616
|
listen_port: import("@feathersjs/typebox").TNumber;
|
|
@@ -1647,16 +1620,7 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1647
1620
|
username: import("@feathersjs/typebox").TString<string>;
|
|
1648
1621
|
password: import("@feathersjs/typebox").TString<string>;
|
|
1649
1622
|
}>>;
|
|
1650
|
-
$nin: import("@feathersjs/typebox").TObject<{
|
|
1651
|
-
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1652
|
-
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
1653
|
-
listen_port: import("@feathersjs/typebox").TNumber;
|
|
1654
|
-
verbosity: import("@feathersjs/typebox").TString<string>;
|
|
1655
|
-
jwt_secret_key: import("@feathersjs/typebox").TString<string>;
|
|
1656
|
-
CORS_origins: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1657
|
-
username: import("@feathersjs/typebox").TString<string>;
|
|
1658
|
-
password: import("@feathersjs/typebox").TString<string>;
|
|
1659
|
-
}> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1623
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1660
1624
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1661
1625
|
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
1662
1626
|
listen_port: import("@feathersjs/typebox").TNumber;
|
|
@@ -1675,8 +1639,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1675
1639
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1676
1640
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1677
1641
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1678
|
-
$in: import("@feathersjs/typebox").
|
|
1679
|
-
$nin: import("@feathersjs/typebox").
|
|
1642
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1643
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1680
1644
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1681
1645
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1682
1646
|
} | undefined>]>>]>>;
|
|
@@ -1689,8 +1653,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1689
1653
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1690
1654
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1691
1655
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1692
|
-
$in: import("@feathersjs/typebox").
|
|
1693
|
-
$nin: import("@feathersjs/typebox").
|
|
1656
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1657
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1694
1658
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1695
1659
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1696
1660
|
} | undefined>]>>]>>;
|
|
@@ -1700,8 +1664,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1700
1664
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1701
1665
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1702
1666
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1703
|
-
$in: import("@feathersjs/typebox").
|
|
1704
|
-
$nin: import("@feathersjs/typebox").
|
|
1667
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1668
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1705
1669
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1706
1670
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1707
1671
|
} | undefined>]>>]>>;
|
|
@@ -1711,8 +1675,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1711
1675
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1712
1676
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1713
1677
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1714
|
-
$in: import("@feathersjs/typebox").
|
|
1715
|
-
$nin: import("@feathersjs/typebox").
|
|
1678
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
1679
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
1716
1680
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1717
1681
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1718
1682
|
} | undefined>]>>]>>;
|
|
@@ -1722,8 +1686,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1722
1686
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1723
1687
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1724
1688
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1725
|
-
$in: import("@feathersjs/typebox").
|
|
1726
|
-
$nin: import("@feathersjs/typebox").
|
|
1689
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1690
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1727
1691
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1728
1692
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1729
1693
|
} | undefined>]>>]>>;
|
|
@@ -1733,8 +1697,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1733
1697
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1734
1698
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1735
1699
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1736
|
-
$in: import("@feathersjs/typebox").
|
|
1737
|
-
$nin: import("@feathersjs/typebox").
|
|
1700
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1701
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1738
1702
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1739
1703
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1740
1704
|
} | undefined>]>>]>>;
|
|
@@ -1744,8 +1708,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1744
1708
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1745
1709
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1746
1710
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1747
|
-
$in: import("@feathersjs/typebox").
|
|
1748
|
-
$nin: import("@feathersjs/typebox").
|
|
1711
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1712
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1749
1713
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1750
1714
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1751
1715
|
} | undefined>]>>]>>;
|
|
@@ -1755,8 +1719,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1755
1719
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1756
1720
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1757
1721
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1758
|
-
$in: import("@feathersjs/typebox").
|
|
1759
|
-
$nin: import("@feathersjs/typebox").
|
|
1722
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1723
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1760
1724
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1761
1725
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1762
1726
|
} | undefined>]>>]>>;
|
|
@@ -1766,8 +1730,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1766
1730
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1767
1731
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1768
1732
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1769
|
-
$in: import("@feathersjs/typebox").
|
|
1770
|
-
$nin: import("@feathersjs/typebox").
|
|
1733
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1734
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1771
1735
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1772
1736
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1773
1737
|
} | undefined>]>>]>>;
|
|
@@ -1777,8 +1741,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1777
1741
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1778
1742
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1779
1743
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1780
|
-
$in: import("@feathersjs/typebox").
|
|
1781
|
-
$nin: import("@feathersjs/typebox").
|
|
1744
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1745
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1782
1746
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1783
1747
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1784
1748
|
} | undefined>]>>]>>;
|
|
@@ -1788,8 +1752,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1788
1752
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1789
1753
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1790
1754
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1791
|
-
$in: import("@feathersjs/typebox").
|
|
1792
|
-
$nin: import("@feathersjs/typebox").
|
|
1755
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
1756
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
1793
1757
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1794
1758
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1795
1759
|
} | undefined>]>>]>>;
|
|
@@ -1853,16 +1817,7 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1853
1817
|
username: import("@feathersjs/typebox").TString<string>;
|
|
1854
1818
|
password: import("@feathersjs/typebox").TString<string>;
|
|
1855
1819
|
}>;
|
|
1856
|
-
$in: import("@feathersjs/typebox").TObject<{
|
|
1857
|
-
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1858
|
-
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
1859
|
-
listen_port: import("@feathersjs/typebox").TNumber;
|
|
1860
|
-
verbosity: import("@feathersjs/typebox").TString<string>;
|
|
1861
|
-
jwt_secret_key: import("@feathersjs/typebox").TString<string>;
|
|
1862
|
-
CORS_origins: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1863
|
-
username: import("@feathersjs/typebox").TString<string>;
|
|
1864
|
-
password: import("@feathersjs/typebox").TString<string>;
|
|
1865
|
-
}> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1820
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1866
1821
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1867
1822
|
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
1868
1823
|
listen_port: import("@feathersjs/typebox").TNumber;
|
|
@@ -1872,16 +1827,7 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1872
1827
|
username: import("@feathersjs/typebox").TString<string>;
|
|
1873
1828
|
password: import("@feathersjs/typebox").TString<string>;
|
|
1874
1829
|
}>>;
|
|
1875
|
-
$nin: import("@feathersjs/typebox").TObject<{
|
|
1876
|
-
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1877
|
-
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
1878
|
-
listen_port: import("@feathersjs/typebox").TNumber;
|
|
1879
|
-
verbosity: import("@feathersjs/typebox").TString<string>;
|
|
1880
|
-
jwt_secret_key: import("@feathersjs/typebox").TString<string>;
|
|
1881
|
-
CORS_origins: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1882
|
-
username: import("@feathersjs/typebox").TString<string>;
|
|
1883
|
-
password: import("@feathersjs/typebox").TString<string>;
|
|
1884
|
-
}> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1830
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1885
1831
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1886
1832
|
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
1887
1833
|
listen_port: import("@feathersjs/typebox").TNumber;
|
|
@@ -1900,8 +1846,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1900
1846
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1901
1847
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1902
1848
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1903
|
-
$in: import("@feathersjs/typebox").
|
|
1904
|
-
$nin: import("@feathersjs/typebox").
|
|
1849
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1850
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1905
1851
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1906
1852
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1907
1853
|
} | undefined>]>>]>>;
|
|
@@ -1913,8 +1859,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1913
1859
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
1914
1860
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
1915
1861
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
1916
|
-
$in: import("@feathersjs/typebox").
|
|
1917
|
-
$nin: import("@feathersjs/typebox").
|
|
1862
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1863
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1918
1864
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1919
1865
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1920
1866
|
} | undefined>]>>]>>;
|
|
@@ -1924,8 +1870,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1924
1870
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1925
1871
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1926
1872
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1927
|
-
$in: import("@feathersjs/typebox").
|
|
1928
|
-
$nin: import("@feathersjs/typebox").
|
|
1873
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1874
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1929
1875
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1930
1876
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1931
1877
|
} | undefined>]>>]>>;
|
|
@@ -1935,8 +1881,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1935
1881
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1936
1882
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1937
1883
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1938
|
-
$in: import("@feathersjs/typebox").
|
|
1939
|
-
$nin: import("@feathersjs/typebox").
|
|
1884
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
1885
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
1940
1886
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1941
1887
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1942
1888
|
} | undefined>]>>]>>;
|
|
@@ -1946,8 +1892,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1946
1892
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1947
1893
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1948
1894
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1949
|
-
$in: import("@feathersjs/typebox").
|
|
1950
|
-
$nin: import("@feathersjs/typebox").
|
|
1895
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1896
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1951
1897
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1952
1898
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1953
1899
|
} | undefined>]>>]>>;
|
|
@@ -1957,8 +1903,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1957
1903
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1958
1904
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1959
1905
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1960
|
-
$in: import("@feathersjs/typebox").
|
|
1961
|
-
$nin: import("@feathersjs/typebox").
|
|
1906
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1907
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1962
1908
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1963
1909
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1964
1910
|
} | undefined>]>>]>>;
|
|
@@ -1968,8 +1914,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1968
1914
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1969
1915
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1970
1916
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
1971
|
-
$in: import("@feathersjs/typebox").
|
|
1972
|
-
$nin: import("@feathersjs/typebox").
|
|
1917
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1918
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1973
1919
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1974
1920
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1975
1921
|
} | undefined>]>>]>>;
|
|
@@ -1979,8 +1925,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1979
1925
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1980
1926
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1981
1927
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1982
|
-
$in: import("@feathersjs/typebox").
|
|
1983
|
-
$nin: import("@feathersjs/typebox").
|
|
1928
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1929
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1984
1930
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1985
1931
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1986
1932
|
} | undefined>]>>]>>;
|
|
@@ -1990,8 +1936,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1990
1936
|
$lt: import("@feathersjs/typebox").TAny;
|
|
1991
1937
|
$lte: import("@feathersjs/typebox").TAny;
|
|
1992
1938
|
$ne: import("@feathersjs/typebox").TAny;
|
|
1993
|
-
$in: import("@feathersjs/typebox").
|
|
1994
|
-
$nin: import("@feathersjs/typebox").
|
|
1939
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1940
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
1995
1941
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1996
1942
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1997
1943
|
} | undefined>]>>]>>;
|
|
@@ -2001,8 +1947,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2001
1947
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
2002
1948
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
2003
1949
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
2004
|
-
$in: import("@feathersjs/typebox").
|
|
2005
|
-
$nin: import("@feathersjs/typebox").
|
|
1950
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
1951
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2006
1952
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2007
1953
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2008
1954
|
} | undefined>]>>]>>;
|
|
@@ -2012,8 +1958,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2012
1958
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2013
1959
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2014
1960
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2015
|
-
$in: import("@feathersjs/typebox").
|
|
2016
|
-
$nin: import("@feathersjs/typebox").
|
|
1961
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
1962
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2017
1963
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2018
1964
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2019
1965
|
} | undefined>]>>]>>;
|
|
@@ -2077,16 +2023,7 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2077
2023
|
username: import("@feathersjs/typebox").TString<string>;
|
|
2078
2024
|
password: import("@feathersjs/typebox").TString<string>;
|
|
2079
2025
|
}>;
|
|
2080
|
-
$in: import("@feathersjs/typebox").TObject<{
|
|
2081
|
-
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2082
|
-
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
2083
|
-
listen_port: import("@feathersjs/typebox").TNumber;
|
|
2084
|
-
verbosity: import("@feathersjs/typebox").TString<string>;
|
|
2085
|
-
jwt_secret_key: import("@feathersjs/typebox").TString<string>;
|
|
2086
|
-
CORS_origins: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2087
|
-
username: import("@feathersjs/typebox").TString<string>;
|
|
2088
|
-
password: import("@feathersjs/typebox").TString<string>;
|
|
2089
|
-
}> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
2026
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
2090
2027
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2091
2028
|
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
2092
2029
|
listen_port: import("@feathersjs/typebox").TNumber;
|
|
@@ -2096,16 +2033,7 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2096
2033
|
username: import("@feathersjs/typebox").TString<string>;
|
|
2097
2034
|
password: import("@feathersjs/typebox").TString<string>;
|
|
2098
2035
|
}>>;
|
|
2099
|
-
$nin: import("@feathersjs/typebox").TObject<{
|
|
2100
|
-
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2101
|
-
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
2102
|
-
listen_port: import("@feathersjs/typebox").TNumber;
|
|
2103
|
-
verbosity: import("@feathersjs/typebox").TString<string>;
|
|
2104
|
-
jwt_secret_key: import("@feathersjs/typebox").TString<string>;
|
|
2105
|
-
CORS_origins: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2106
|
-
username: import("@feathersjs/typebox").TString<string>;
|
|
2107
|
-
password: import("@feathersjs/typebox").TString<string>;
|
|
2108
|
-
}> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
2036
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
2109
2037
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2110
2038
|
listen_ip_address: import("@feathersjs/typebox").TString<string>;
|
|
2111
2039
|
listen_port: import("@feathersjs/typebox").TNumber;
|
|
@@ -2124,8 +2052,8 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2124
2052
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
2125
2053
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
2126
2054
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
2127
|
-
$in: import("@feathersjs/typebox").
|
|
2128
|
-
$nin: import("@feathersjs/typebox").
|
|
2055
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2056
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
2129
2057
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2130
2058
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2131
2059
|
} | undefined>]>>]>>;
|
|
@@ -2157,8 +2085,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2157
2085
|
$lt: string;
|
|
2158
2086
|
$lte: string;
|
|
2159
2087
|
$ne: string;
|
|
2160
|
-
$in: string
|
|
2161
|
-
$nin: string
|
|
2088
|
+
$in: string[];
|
|
2089
|
+
$nin: string[];
|
|
2162
2090
|
} & {}> | undefined;
|
|
2163
2091
|
name?: any;
|
|
2164
2092
|
provider?: "docker" | Partial<{
|
|
@@ -2167,8 +2095,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2167
2095
|
$lt: "docker";
|
|
2168
2096
|
$lte: "docker";
|
|
2169
2097
|
$ne: "docker";
|
|
2170
|
-
$in: "docker"
|
|
2171
|
-
$nin: "docker"
|
|
2098
|
+
$in: "docker"[];
|
|
2099
|
+
$nin: "docker"[];
|
|
2172
2100
|
} & {}> | undefined;
|
|
2173
2101
|
_id?: string | {} | Partial<{
|
|
2174
2102
|
$gt: string | {};
|
|
@@ -2176,8 +2104,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2176
2104
|
$lt: string | {};
|
|
2177
2105
|
$lte: string | {};
|
|
2178
2106
|
$ne: string | {};
|
|
2179
|
-
$in:
|
|
2180
|
-
$nin:
|
|
2107
|
+
$in: (string | {})[];
|
|
2108
|
+
$nin: (string | {})[];
|
|
2181
2109
|
} & {}> | undefined;
|
|
2182
2110
|
updatedAt?: any;
|
|
2183
2111
|
strategyId?: string | {} | Partial<{
|
|
@@ -2186,8 +2114,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2186
2114
|
$lt: string | {};
|
|
2187
2115
|
$lte: string | {};
|
|
2188
2116
|
$ne: string | {};
|
|
2189
|
-
$in:
|
|
2190
|
-
$nin:
|
|
2117
|
+
$in: (string | {})[];
|
|
2118
|
+
$nin: (string | {})[];
|
|
2191
2119
|
} & {}> | undefined;
|
|
2192
2120
|
exchangeId?: any;
|
|
2193
2121
|
userId?: any;
|
|
@@ -2197,8 +2125,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2197
2125
|
$lt: string;
|
|
2198
2126
|
$lte: string;
|
|
2199
2127
|
$ne: string;
|
|
2200
|
-
$in: string
|
|
2201
|
-
$nin: string
|
|
2128
|
+
$in: string[];
|
|
2129
|
+
$nin: string[];
|
|
2202
2130
|
} & {}> | undefined;
|
|
2203
2131
|
running?: boolean | Partial<{
|
|
2204
2132
|
$gt?: boolean | undefined;
|
|
@@ -2206,8 +2134,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2206
2134
|
$lt?: boolean | undefined;
|
|
2207
2135
|
$lte?: boolean | undefined;
|
|
2208
2136
|
$ne?: boolean | undefined;
|
|
2209
|
-
$in: boolean
|
|
2210
|
-
$nin: boolean
|
|
2137
|
+
$in: boolean[];
|
|
2138
|
+
$nin: boolean[];
|
|
2211
2139
|
} & {}> | undefined;
|
|
2212
2140
|
api_server?: {
|
|
2213
2141
|
password: string;
|
|
@@ -2278,15 +2206,6 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2278
2206
|
jwt_secret_key: string;
|
|
2279
2207
|
CORS_origins: string[];
|
|
2280
2208
|
username: string;
|
|
2281
|
-
} | {
|
|
2282
|
-
password: string;
|
|
2283
|
-
enabled: boolean;
|
|
2284
|
-
listen_ip_address: string;
|
|
2285
|
-
listen_port: number;
|
|
2286
|
-
verbosity: string;
|
|
2287
|
-
jwt_secret_key: string;
|
|
2288
|
-
CORS_origins: string[];
|
|
2289
|
-
username: string;
|
|
2290
2209
|
}[];
|
|
2291
2210
|
$nin: {
|
|
2292
2211
|
password: string;
|
|
@@ -2297,15 +2216,6 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2297
2216
|
jwt_secret_key: string;
|
|
2298
2217
|
CORS_origins: string[];
|
|
2299
2218
|
username: string;
|
|
2300
|
-
} | {
|
|
2301
|
-
password: string;
|
|
2302
|
-
enabled: boolean;
|
|
2303
|
-
listen_ip_address: string;
|
|
2304
|
-
listen_port: number;
|
|
2305
|
-
verbosity: string;
|
|
2306
|
-
jwt_secret_key: string;
|
|
2307
|
-
CORS_origins: string[];
|
|
2308
|
-
username: string;
|
|
2309
2219
|
}[];
|
|
2310
2220
|
} & {}> | undefined;
|
|
2311
2221
|
pod?: string | Partial<{
|
|
@@ -2314,8 +2224,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2314
2224
|
$lt: string;
|
|
2315
2225
|
$lte: string;
|
|
2316
2226
|
$ne: string;
|
|
2317
|
-
$in: string
|
|
2318
|
-
$nin: string
|
|
2227
|
+
$in: string[];
|
|
2228
|
+
$nin: string[];
|
|
2319
2229
|
} & {}> | undefined;
|
|
2320
2230
|
} | {
|
|
2321
2231
|
$or: {
|
|
@@ -2325,8 +2235,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2325
2235
|
$lt: string;
|
|
2326
2236
|
$lte: string;
|
|
2327
2237
|
$ne: string;
|
|
2328
|
-
$in: string
|
|
2329
|
-
$nin: string
|
|
2238
|
+
$in: string[];
|
|
2239
|
+
$nin: string[];
|
|
2330
2240
|
} & {}> | undefined;
|
|
2331
2241
|
name?: any;
|
|
2332
2242
|
provider?: "docker" | Partial<{
|
|
@@ -2335,8 +2245,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2335
2245
|
$lt: "docker";
|
|
2336
2246
|
$lte: "docker";
|
|
2337
2247
|
$ne: "docker";
|
|
2338
|
-
$in: "docker"
|
|
2339
|
-
$nin: "docker"
|
|
2248
|
+
$in: "docker"[];
|
|
2249
|
+
$nin: "docker"[];
|
|
2340
2250
|
} & {}> | undefined;
|
|
2341
2251
|
_id?: string | {} | Partial<{
|
|
2342
2252
|
$gt: string | {};
|
|
@@ -2344,8 +2254,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2344
2254
|
$lt: string | {};
|
|
2345
2255
|
$lte: string | {};
|
|
2346
2256
|
$ne: string | {};
|
|
2347
|
-
$in:
|
|
2348
|
-
$nin:
|
|
2257
|
+
$in: (string | {})[];
|
|
2258
|
+
$nin: (string | {})[];
|
|
2349
2259
|
} & {}> | undefined;
|
|
2350
2260
|
updatedAt?: any;
|
|
2351
2261
|
strategyId?: string | {} | Partial<{
|
|
@@ -2354,8 +2264,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2354
2264
|
$lt: string | {};
|
|
2355
2265
|
$lte: string | {};
|
|
2356
2266
|
$ne: string | {};
|
|
2357
|
-
$in:
|
|
2358
|
-
$nin:
|
|
2267
|
+
$in: (string | {})[];
|
|
2268
|
+
$nin: (string | {})[];
|
|
2359
2269
|
} & {}> | undefined;
|
|
2360
2270
|
exchangeId?: any;
|
|
2361
2271
|
userId?: any;
|
|
@@ -2365,8 +2275,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2365
2275
|
$lt: string;
|
|
2366
2276
|
$lte: string;
|
|
2367
2277
|
$ne: string;
|
|
2368
|
-
$in: string
|
|
2369
|
-
$nin: string
|
|
2278
|
+
$in: string[];
|
|
2279
|
+
$nin: string[];
|
|
2370
2280
|
} & {}> | undefined;
|
|
2371
2281
|
running?: boolean | Partial<{
|
|
2372
2282
|
$gt?: boolean | undefined;
|
|
@@ -2374,8 +2284,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2374
2284
|
$lt?: boolean | undefined;
|
|
2375
2285
|
$lte?: boolean | undefined;
|
|
2376
2286
|
$ne?: boolean | undefined;
|
|
2377
|
-
$in: boolean
|
|
2378
|
-
$nin: boolean
|
|
2287
|
+
$in: boolean[];
|
|
2288
|
+
$nin: boolean[];
|
|
2379
2289
|
} & {}> | undefined;
|
|
2380
2290
|
api_server?: {
|
|
2381
2291
|
password: string;
|
|
@@ -2446,15 +2356,6 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2446
2356
|
jwt_secret_key: string;
|
|
2447
2357
|
CORS_origins: string[];
|
|
2448
2358
|
username: string;
|
|
2449
|
-
} | {
|
|
2450
|
-
password: string;
|
|
2451
|
-
enabled: boolean;
|
|
2452
|
-
listen_ip_address: string;
|
|
2453
|
-
listen_port: number;
|
|
2454
|
-
verbosity: string;
|
|
2455
|
-
jwt_secret_key: string;
|
|
2456
|
-
CORS_origins: string[];
|
|
2457
|
-
username: string;
|
|
2458
2359
|
}[];
|
|
2459
2360
|
$nin: {
|
|
2460
2361
|
password: string;
|
|
@@ -2465,15 +2366,6 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2465
2366
|
jwt_secret_key: string;
|
|
2466
2367
|
CORS_origins: string[];
|
|
2467
2368
|
username: string;
|
|
2468
|
-
} | {
|
|
2469
|
-
password: string;
|
|
2470
|
-
enabled: boolean;
|
|
2471
|
-
listen_ip_address: string;
|
|
2472
|
-
listen_port: number;
|
|
2473
|
-
verbosity: string;
|
|
2474
|
-
jwt_secret_key: string;
|
|
2475
|
-
CORS_origins: string[];
|
|
2476
|
-
username: string;
|
|
2477
2369
|
}[];
|
|
2478
2370
|
} & {}> | undefined;
|
|
2479
2371
|
pod?: string | Partial<{
|
|
@@ -2482,8 +2374,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2482
2374
|
$lt: string;
|
|
2483
2375
|
$lte: string;
|
|
2484
2376
|
$ne: string;
|
|
2485
|
-
$in: string
|
|
2486
|
-
$nin: string
|
|
2377
|
+
$in: string[];
|
|
2378
|
+
$nin: string[];
|
|
2487
2379
|
} & {}> | undefined;
|
|
2488
2380
|
}[];
|
|
2489
2381
|
})[];
|
|
@@ -2494,8 +2386,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2494
2386
|
$lt: string;
|
|
2495
2387
|
$lte: string;
|
|
2496
2388
|
$ne: string;
|
|
2497
|
-
$in: string
|
|
2498
|
-
$nin: string
|
|
2389
|
+
$in: string[];
|
|
2390
|
+
$nin: string[];
|
|
2499
2391
|
} & {}> | undefined;
|
|
2500
2392
|
name?: any;
|
|
2501
2393
|
provider?: "docker" | Partial<{
|
|
@@ -2504,8 +2396,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2504
2396
|
$lt: "docker";
|
|
2505
2397
|
$lte: "docker";
|
|
2506
2398
|
$ne: "docker";
|
|
2507
|
-
$in: "docker"
|
|
2508
|
-
$nin: "docker"
|
|
2399
|
+
$in: "docker"[];
|
|
2400
|
+
$nin: "docker"[];
|
|
2509
2401
|
} & {}> | undefined;
|
|
2510
2402
|
_id?: string | {} | Partial<{
|
|
2511
2403
|
$gt: string | {};
|
|
@@ -2513,8 +2405,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2513
2405
|
$lt: string | {};
|
|
2514
2406
|
$lte: string | {};
|
|
2515
2407
|
$ne: string | {};
|
|
2516
|
-
$in:
|
|
2517
|
-
$nin:
|
|
2408
|
+
$in: (string | {})[];
|
|
2409
|
+
$nin: (string | {})[];
|
|
2518
2410
|
} & {}> | undefined;
|
|
2519
2411
|
updatedAt?: any;
|
|
2520
2412
|
strategyId?: string | {} | Partial<{
|
|
@@ -2523,8 +2415,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2523
2415
|
$lt: string | {};
|
|
2524
2416
|
$lte: string | {};
|
|
2525
2417
|
$ne: string | {};
|
|
2526
|
-
$in:
|
|
2527
|
-
$nin:
|
|
2418
|
+
$in: (string | {})[];
|
|
2419
|
+
$nin: (string | {})[];
|
|
2528
2420
|
} & {}> | undefined;
|
|
2529
2421
|
exchangeId?: any;
|
|
2530
2422
|
userId?: any;
|
|
@@ -2534,8 +2426,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2534
2426
|
$lt: string;
|
|
2535
2427
|
$lte: string;
|
|
2536
2428
|
$ne: string;
|
|
2537
|
-
$in: string
|
|
2538
|
-
$nin: string
|
|
2429
|
+
$in: string[];
|
|
2430
|
+
$nin: string[];
|
|
2539
2431
|
} & {}> | undefined;
|
|
2540
2432
|
running?: boolean | Partial<{
|
|
2541
2433
|
$gt?: boolean | undefined;
|
|
@@ -2543,8 +2435,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2543
2435
|
$lt?: boolean | undefined;
|
|
2544
2436
|
$lte?: boolean | undefined;
|
|
2545
2437
|
$ne?: boolean | undefined;
|
|
2546
|
-
$in: boolean
|
|
2547
|
-
$nin: boolean
|
|
2438
|
+
$in: boolean[];
|
|
2439
|
+
$nin: boolean[];
|
|
2548
2440
|
} & {}> | undefined;
|
|
2549
2441
|
api_server?: {
|
|
2550
2442
|
password: string;
|
|
@@ -2615,15 +2507,6 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2615
2507
|
jwt_secret_key: string;
|
|
2616
2508
|
CORS_origins: string[];
|
|
2617
2509
|
username: string;
|
|
2618
|
-
} | {
|
|
2619
|
-
password: string;
|
|
2620
|
-
enabled: boolean;
|
|
2621
|
-
listen_ip_address: string;
|
|
2622
|
-
listen_port: number;
|
|
2623
|
-
verbosity: string;
|
|
2624
|
-
jwt_secret_key: string;
|
|
2625
|
-
CORS_origins: string[];
|
|
2626
|
-
username: string;
|
|
2627
2510
|
}[];
|
|
2628
2511
|
$nin: {
|
|
2629
2512
|
password: string;
|
|
@@ -2634,15 +2517,6 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2634
2517
|
jwt_secret_key: string;
|
|
2635
2518
|
CORS_origins: string[];
|
|
2636
2519
|
username: string;
|
|
2637
|
-
} | {
|
|
2638
|
-
password: string;
|
|
2639
|
-
enabled: boolean;
|
|
2640
|
-
listen_ip_address: string;
|
|
2641
|
-
listen_port: number;
|
|
2642
|
-
verbosity: string;
|
|
2643
|
-
jwt_secret_key: string;
|
|
2644
|
-
CORS_origins: string[];
|
|
2645
|
-
username: string;
|
|
2646
2520
|
}[];
|
|
2647
2521
|
} & {}> | undefined;
|
|
2648
2522
|
pod?: string | Partial<{
|
|
@@ -2651,8 +2525,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2651
2525
|
$lt: string;
|
|
2652
2526
|
$lte: string;
|
|
2653
2527
|
$ne: string;
|
|
2654
|
-
$in: string
|
|
2655
|
-
$nin: string
|
|
2528
|
+
$in: string[];
|
|
2529
|
+
$nin: string[];
|
|
2656
2530
|
} & {}> | undefined;
|
|
2657
2531
|
}[];
|
|
2658
2532
|
}> & {
|
|
@@ -2662,8 +2536,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2662
2536
|
$lt: string;
|
|
2663
2537
|
$lte: string;
|
|
2664
2538
|
$ne: string;
|
|
2665
|
-
$in: string
|
|
2666
|
-
$nin: string
|
|
2539
|
+
$in: string[];
|
|
2540
|
+
$nin: string[];
|
|
2667
2541
|
} & {}> | undefined;
|
|
2668
2542
|
name?: any;
|
|
2669
2543
|
provider?: "docker" | Partial<{
|
|
@@ -2672,8 +2546,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2672
2546
|
$lt: "docker";
|
|
2673
2547
|
$lte: "docker";
|
|
2674
2548
|
$ne: "docker";
|
|
2675
|
-
$in: "docker"
|
|
2676
|
-
$nin: "docker"
|
|
2549
|
+
$in: "docker"[];
|
|
2550
|
+
$nin: "docker"[];
|
|
2677
2551
|
} & {}> | undefined;
|
|
2678
2552
|
_id?: string | {} | Partial<{
|
|
2679
2553
|
$gt: string | {};
|
|
@@ -2681,8 +2555,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2681
2555
|
$lt: string | {};
|
|
2682
2556
|
$lte: string | {};
|
|
2683
2557
|
$ne: string | {};
|
|
2684
|
-
$in:
|
|
2685
|
-
$nin:
|
|
2558
|
+
$in: (string | {})[];
|
|
2559
|
+
$nin: (string | {})[];
|
|
2686
2560
|
} & {}> | undefined;
|
|
2687
2561
|
updatedAt?: any;
|
|
2688
2562
|
strategyId?: string | {} | Partial<{
|
|
@@ -2691,8 +2565,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2691
2565
|
$lt: string | {};
|
|
2692
2566
|
$lte: string | {};
|
|
2693
2567
|
$ne: string | {};
|
|
2694
|
-
$in:
|
|
2695
|
-
$nin:
|
|
2568
|
+
$in: (string | {})[];
|
|
2569
|
+
$nin: (string | {})[];
|
|
2696
2570
|
} & {}> | undefined;
|
|
2697
2571
|
exchangeId?: any;
|
|
2698
2572
|
userId?: any;
|
|
@@ -2702,8 +2576,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2702
2576
|
$lt: string;
|
|
2703
2577
|
$lte: string;
|
|
2704
2578
|
$ne: string;
|
|
2705
|
-
$in: string
|
|
2706
|
-
$nin: string
|
|
2579
|
+
$in: string[];
|
|
2580
|
+
$nin: string[];
|
|
2707
2581
|
} & {}> | undefined;
|
|
2708
2582
|
running?: boolean | Partial<{
|
|
2709
2583
|
$gt?: boolean | undefined;
|
|
@@ -2711,8 +2585,8 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2711
2585
|
$lt?: boolean | undefined;
|
|
2712
2586
|
$lte?: boolean | undefined;
|
|
2713
2587
|
$ne?: boolean | undefined;
|
|
2714
|
-
$in: boolean
|
|
2715
|
-
$nin: boolean
|
|
2588
|
+
$in: boolean[];
|
|
2589
|
+
$nin: boolean[];
|
|
2716
2590
|
} & {}> | undefined;
|
|
2717
2591
|
api_server?: {
|
|
2718
2592
|
password: string;
|
|
@@ -2783,15 +2657,6 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2783
2657
|
jwt_secret_key: string;
|
|
2784
2658
|
CORS_origins: string[];
|
|
2785
2659
|
username: string;
|
|
2786
|
-
} | {
|
|
2787
|
-
password: string;
|
|
2788
|
-
enabled: boolean;
|
|
2789
|
-
listen_ip_address: string;
|
|
2790
|
-
listen_port: number;
|
|
2791
|
-
verbosity: string;
|
|
2792
|
-
jwt_secret_key: string;
|
|
2793
|
-
CORS_origins: string[];
|
|
2794
|
-
username: string;
|
|
2795
2660
|
}[];
|
|
2796
2661
|
$nin: {
|
|
2797
2662
|
password: string;
|
|
@@ -2802,15 +2667,6 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2802
2667
|
jwt_secret_key: string;
|
|
2803
2668
|
CORS_origins: string[];
|
|
2804
2669
|
username: string;
|
|
2805
|
-
} | {
|
|
2806
|
-
password: string;
|
|
2807
|
-
enabled: boolean;
|
|
2808
|
-
listen_ip_address: string;
|
|
2809
|
-
listen_port: number;
|
|
2810
|
-
verbosity: string;
|
|
2811
|
-
jwt_secret_key: string;
|
|
2812
|
-
CORS_origins: string[];
|
|
2813
|
-
username: string;
|
|
2814
2670
|
}[];
|
|
2815
2671
|
} & {}> | undefined;
|
|
2816
2672
|
pod?: string | Partial<{
|
|
@@ -2819,7 +2675,7 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2819
2675
|
$lt: string;
|
|
2820
2676
|
$lte: string;
|
|
2821
2677
|
$ne: string;
|
|
2822
|
-
$in: string
|
|
2823
|
-
$nin: string
|
|
2678
|
+
$in: string[];
|
|
2679
|
+
$nin: string[];
|
|
2824
2680
|
} & {}> | undefined;
|
|
2825
2681
|
} & {}, HookContext<TradersService<import("./traders.class").TradersParams>>>;
|