@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
|
@@ -351,8 +351,8 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
351
351
|
$lt: import("@feathersjs/typebox").TString<"email">;
|
|
352
352
|
$lte: import("@feathersjs/typebox").TString<"email">;
|
|
353
353
|
$ne: import("@feathersjs/typebox").TString<"email">;
|
|
354
|
-
$in: import("@feathersjs/typebox").
|
|
355
|
-
$nin: import("@feathersjs/typebox").
|
|
354
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
|
|
355
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
|
|
356
356
|
}>, import("@feathersjs/typebox").TObject<{
|
|
357
357
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
358
358
|
} | undefined>]>>]>>;
|
|
@@ -362,8 +362,8 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
362
362
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
363
363
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
364
364
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
365
|
-
$in: import("@feathersjs/typebox").
|
|
366
|
-
$nin: import("@feathersjs/typebox").
|
|
365
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
366
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
367
367
|
}>, import("@feathersjs/typebox").TObject<{
|
|
368
368
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
369
369
|
} | undefined>]>>]>>;
|
|
@@ -373,8 +373,8 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
373
373
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
374
374
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
375
375
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
376
|
-
$in: import("@feathersjs/typebox").
|
|
377
|
-
$nin: import("@feathersjs/typebox").
|
|
376
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
|
|
377
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
|
|
378
378
|
}>, import("@feathersjs/typebox").TObject<{
|
|
379
379
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
380
380
|
} | undefined>]>>]>>;
|
|
@@ -386,8 +386,8 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
386
386
|
$lt: import("@feathersjs/typebox").TString<"email">;
|
|
387
387
|
$lte: import("@feathersjs/typebox").TString<"email">;
|
|
388
388
|
$ne: import("@feathersjs/typebox").TString<"email">;
|
|
389
|
-
$in: import("@feathersjs/typebox").
|
|
390
|
-
$nin: import("@feathersjs/typebox").
|
|
389
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
|
|
390
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
|
|
391
391
|
}>, import("@feathersjs/typebox").TObject<{
|
|
392
392
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
393
393
|
} | undefined>]>>]>>;
|
|
@@ -397,8 +397,8 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
397
397
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
398
398
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
399
399
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
400
|
-
$in: import("@feathersjs/typebox").
|
|
401
|
-
$nin: import("@feathersjs/typebox").
|
|
400
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
401
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
402
402
|
}>, import("@feathersjs/typebox").TObject<{
|
|
403
403
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
404
404
|
} | undefined>]>>]>>;
|
|
@@ -408,8 +408,8 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
408
408
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
409
409
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
410
410
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
411
|
-
$in: import("@feathersjs/typebox").
|
|
412
|
-
$nin: import("@feathersjs/typebox").
|
|
411
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
|
|
412
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
|
|
413
413
|
}>, import("@feathersjs/typebox").TObject<{
|
|
414
414
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
415
415
|
} | undefined>]>>]>>;
|
|
@@ -422,8 +422,8 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
422
422
|
$lt: import("@feathersjs/typebox").TString<"email">;
|
|
423
423
|
$lte: import("@feathersjs/typebox").TString<"email">;
|
|
424
424
|
$ne: import("@feathersjs/typebox").TString<"email">;
|
|
425
|
-
$in: import("@feathersjs/typebox").
|
|
426
|
-
$nin: import("@feathersjs/typebox").
|
|
425
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
|
|
426
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
|
|
427
427
|
}>, import("@feathersjs/typebox").TObject<{
|
|
428
428
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
429
429
|
} | undefined>]>>]>>;
|
|
@@ -433,8 +433,8 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
433
433
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
434
434
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
435
435
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
436
|
-
$in: import("@feathersjs/typebox").
|
|
437
|
-
$nin: import("@feathersjs/typebox").
|
|
436
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
437
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
438
438
|
}>, import("@feathersjs/typebox").TObject<{
|
|
439
439
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
440
440
|
} | undefined>]>>]>>;
|
|
@@ -444,8 +444,8 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
444
444
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
445
445
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
446
446
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
447
|
-
$in: import("@feathersjs/typebox").
|
|
448
|
-
$nin: import("@feathersjs/typebox").
|
|
447
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
|
|
448
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
|
|
449
449
|
}>, import("@feathersjs/typebox").TObject<{
|
|
450
450
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
451
451
|
} | undefined>]>>]>>;
|
|
@@ -457,8 +457,8 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
457
457
|
$lt: import("@feathersjs/typebox").TString<"email">;
|
|
458
458
|
$lte: import("@feathersjs/typebox").TString<"email">;
|
|
459
459
|
$ne: import("@feathersjs/typebox").TString<"email">;
|
|
460
|
-
$in: import("@feathersjs/typebox").
|
|
461
|
-
$nin: import("@feathersjs/typebox").
|
|
460
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
|
|
461
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
|
|
462
462
|
}>, import("@feathersjs/typebox").TObject<{
|
|
463
463
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
464
464
|
} | undefined>]>>]>>;
|
|
@@ -468,8 +468,8 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
468
468
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
469
469
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
470
470
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
471
|
-
$in: import("@feathersjs/typebox").
|
|
472
|
-
$nin: import("@feathersjs/typebox").
|
|
471
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
472
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
473
473
|
}>, import("@feathersjs/typebox").TObject<{
|
|
474
474
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
475
475
|
} | undefined>]>>]>>;
|
|
@@ -479,8 +479,8 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
479
479
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
480
480
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
481
481
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
482
|
-
$in: import("@feathersjs/typebox").
|
|
483
|
-
$nin: import("@feathersjs/typebox").
|
|
482
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
|
|
483
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
|
|
484
484
|
}>, import("@feathersjs/typebox").TObject<{
|
|
485
485
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
486
486
|
} | undefined>]>>]>>;
|
|
@@ -503,8 +503,8 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
503
503
|
$lt: string;
|
|
504
504
|
$lte: string;
|
|
505
505
|
$ne: string;
|
|
506
|
-
$in: string
|
|
507
|
-
$nin: string
|
|
506
|
+
$in: string[];
|
|
507
|
+
$nin: string[];
|
|
508
508
|
} & {}> | undefined;
|
|
509
509
|
_id?: string | {} | Partial<{
|
|
510
510
|
$gt: string | {};
|
|
@@ -512,8 +512,8 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
512
512
|
$lt: string | {};
|
|
513
513
|
$lte: string | {};
|
|
514
514
|
$ne: string | {};
|
|
515
|
-
$in:
|
|
516
|
-
$nin:
|
|
515
|
+
$in: (string | {})[];
|
|
516
|
+
$nin: (string | {})[];
|
|
517
517
|
} & {}> | undefined;
|
|
518
518
|
verifyToken?: string | Partial<{
|
|
519
519
|
$gt?: string | null | undefined;
|
|
@@ -521,8 +521,8 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
521
521
|
$lt?: string | null | undefined;
|
|
522
522
|
$lte?: string | null | undefined;
|
|
523
523
|
$ne?: string | null | undefined;
|
|
524
|
-
$in:
|
|
525
|
-
$nin:
|
|
524
|
+
$in: (string | null)[];
|
|
525
|
+
$nin: (string | null)[];
|
|
526
526
|
} & {}> | null | undefined;
|
|
527
527
|
} | {
|
|
528
528
|
$or: {
|
|
@@ -532,8 +532,8 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
532
532
|
$lt: string;
|
|
533
533
|
$lte: string;
|
|
534
534
|
$ne: string;
|
|
535
|
-
$in: string
|
|
536
|
-
$nin: string
|
|
535
|
+
$in: string[];
|
|
536
|
+
$nin: string[];
|
|
537
537
|
} & {}> | undefined;
|
|
538
538
|
_id?: string | {} | Partial<{
|
|
539
539
|
$gt: string | {};
|
|
@@ -541,8 +541,8 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
541
541
|
$lt: string | {};
|
|
542
542
|
$lte: string | {};
|
|
543
543
|
$ne: string | {};
|
|
544
|
-
$in:
|
|
545
|
-
$nin:
|
|
544
|
+
$in: (string | {})[];
|
|
545
|
+
$nin: (string | {})[];
|
|
546
546
|
} & {}> | undefined;
|
|
547
547
|
verifyToken?: string | Partial<{
|
|
548
548
|
$gt?: string | null | undefined;
|
|
@@ -550,8 +550,8 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
550
550
|
$lt?: string | null | undefined;
|
|
551
551
|
$lte?: string | null | undefined;
|
|
552
552
|
$ne?: string | null | undefined;
|
|
553
|
-
$in:
|
|
554
|
-
$nin:
|
|
553
|
+
$in: (string | null)[];
|
|
554
|
+
$nin: (string | null)[];
|
|
555
555
|
} & {}> | null | undefined;
|
|
556
556
|
}[];
|
|
557
557
|
})[];
|
|
@@ -562,8 +562,8 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
562
562
|
$lt: string;
|
|
563
563
|
$lte: string;
|
|
564
564
|
$ne: string;
|
|
565
|
-
$in: string
|
|
566
|
-
$nin: string
|
|
565
|
+
$in: string[];
|
|
566
|
+
$nin: string[];
|
|
567
567
|
} & {}> | undefined;
|
|
568
568
|
_id?: string | {} | Partial<{
|
|
569
569
|
$gt: string | {};
|
|
@@ -571,8 +571,8 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
571
571
|
$lt: string | {};
|
|
572
572
|
$lte: string | {};
|
|
573
573
|
$ne: string | {};
|
|
574
|
-
$in:
|
|
575
|
-
$nin:
|
|
574
|
+
$in: (string | {})[];
|
|
575
|
+
$nin: (string | {})[];
|
|
576
576
|
} & {}> | undefined;
|
|
577
577
|
verifyToken?: string | Partial<{
|
|
578
578
|
$gt?: string | null | undefined;
|
|
@@ -580,8 +580,8 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
580
580
|
$lt?: string | null | undefined;
|
|
581
581
|
$lte?: string | null | undefined;
|
|
582
582
|
$ne?: string | null | undefined;
|
|
583
|
-
$in:
|
|
584
|
-
$nin:
|
|
583
|
+
$in: (string | null)[];
|
|
584
|
+
$nin: (string | null)[];
|
|
585
585
|
} & {}> | null | undefined;
|
|
586
586
|
}[];
|
|
587
587
|
}> & {
|
|
@@ -591,8 +591,8 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
591
591
|
$lt: string;
|
|
592
592
|
$lte: string;
|
|
593
593
|
$ne: string;
|
|
594
|
-
$in: string
|
|
595
|
-
$nin: string
|
|
594
|
+
$in: string[];
|
|
595
|
+
$nin: string[];
|
|
596
596
|
} & {}> | undefined;
|
|
597
597
|
_id?: string | {} | Partial<{
|
|
598
598
|
$gt: string | {};
|
|
@@ -600,8 +600,8 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
600
600
|
$lt: string | {};
|
|
601
601
|
$lte: string | {};
|
|
602
602
|
$ne: string | {};
|
|
603
|
-
$in:
|
|
604
|
-
$nin:
|
|
603
|
+
$in: (string | {})[];
|
|
604
|
+
$nin: (string | {})[];
|
|
605
605
|
} & {}> | undefined;
|
|
606
606
|
verifyToken?: string | Partial<{
|
|
607
607
|
$gt?: string | null | undefined;
|
|
@@ -609,7 +609,7 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
609
609
|
$lt?: string | null | undefined;
|
|
610
610
|
$lte?: string | null | undefined;
|
|
611
611
|
$ne?: string | null | undefined;
|
|
612
|
-
$in:
|
|
613
|
-
$nin:
|
|
612
|
+
$in: (string | null)[];
|
|
613
|
+
$nin: (string | null)[];
|
|
614
614
|
} & {}> | null | undefined;
|
|
615
615
|
} & {}, HookContext<UserService<import("./users.class").UserParams>>>;
|