@cryptorobot.ai/client 0.0.15 → 0.0.16
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/hooks/bootstrap-user-exchanges.d.ts +2 -0
- package/lib/hooks/bootstrap-user-strategies.d.ts +2 -0
- package/lib/services/exchanges/exchanges.schema.d.ts +53 -3
- package/lib/services/messages/messages.schema.d.ts +93 -3
- package/lib/services/strategies/strategies.schema.d.ts +16 -16
- package/lib/services/traders/pods/api/api.schema.d.ts +16 -16
- package/lib/services/traders/pods/pods.schema.d.ts +16 -16
- package/lib/services/users/users.schema.d.ts +8 -0
- package/package.json +1 -1
|
@@ -422,18 +422,19 @@ export declare const exchangesQueryProperties: import("@feathersjs/typebox").TPi
|
|
|
422
422
|
token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
423
423
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
424
424
|
__v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
425
|
-
}>, ["_id", "name", "userId", "which", "connected"]>;
|
|
425
|
+
}>, ["_id", "name", "userId", "which", "updatedAt", "connected"]>;
|
|
426
426
|
export declare const exchangesQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
427
427
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
428
428
|
$skip: import("@feathersjs/typebox").TNumber;
|
|
429
429
|
$sort: import("@feathersjs/typebox").TObject<{
|
|
430
430
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
431
431
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
432
|
+
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
432
433
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
433
434
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
434
435
|
connected: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
435
436
|
}>;
|
|
436
|
-
$select: import("@feathersjs/typebox").TUnsafe<("name" | "_id" | "userId" | "which" | "connected")[]>;
|
|
437
|
+
$select: import("@feathersjs/typebox").TUnsafe<("name" | "_id" | "updatedAt" | "userId" | "which" | "connected")[]>;
|
|
437
438
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
438
439
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
439
440
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -457,6 +458,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
457
458
|
}>, import("@feathersjs/typebox").TObject<{
|
|
458
459
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
459
460
|
} | undefined>]>>]>>;
|
|
461
|
+
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
462
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
463
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
464
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
465
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
466
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
467
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
468
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
469
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
470
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
471
|
+
} | undefined>]>>]>>;
|
|
460
472
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
461
473
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
462
474
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
@@ -514,6 +526,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
514
526
|
}>, import("@feathersjs/typebox").TObject<{
|
|
515
527
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
516
528
|
} | undefined>]>>]>>;
|
|
529
|
+
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
530
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
531
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
532
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
533
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
534
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
535
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
536
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
537
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
538
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
539
|
+
} | undefined>]>>]>>;
|
|
517
540
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
518
541
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
519
542
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
@@ -572,6 +595,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
572
595
|
}>, import("@feathersjs/typebox").TObject<{
|
|
573
596
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
574
597
|
} | undefined>]>>]>>;
|
|
598
|
+
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
599
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
600
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
601
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
602
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
603
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
604
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
605
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
606
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
607
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
608
|
+
} | undefined>]>>]>>;
|
|
575
609
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
576
610
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
577
611
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
@@ -629,6 +663,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
629
663
|
}>, import("@feathersjs/typebox").TObject<{
|
|
630
664
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
631
665
|
} | undefined>]>>]>>;
|
|
666
|
+
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
667
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
668
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
669
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
670
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
671
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
672
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
673
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
674
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
675
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
676
|
+
} | undefined>]>>]>>;
|
|
632
677
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
633
678
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
634
679
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
@@ -671,11 +716,12 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
671
716
|
$sort: {
|
|
672
717
|
name?: number | undefined;
|
|
673
718
|
_id?: number | undefined;
|
|
719
|
+
updatedAt?: number | undefined;
|
|
674
720
|
userId?: number | undefined;
|
|
675
721
|
which?: number | undefined;
|
|
676
722
|
connected?: number | undefined;
|
|
677
723
|
};
|
|
678
|
-
$select: ("name" | "_id" | "userId" | "which" | "connected")[];
|
|
724
|
+
$select: ("name" | "_id" | "updatedAt" | "userId" | "which" | "connected")[];
|
|
679
725
|
$and: ({
|
|
680
726
|
name?: any;
|
|
681
727
|
_id?: string | {} | Partial<{
|
|
@@ -687,6 +733,7 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
687
733
|
$in: (string | {})[];
|
|
688
734
|
$nin: (string | {})[];
|
|
689
735
|
} & {}> | undefined;
|
|
736
|
+
updatedAt?: any;
|
|
690
737
|
userId?: string | {} | Partial<{
|
|
691
738
|
$gt?: string | {} | undefined;
|
|
692
739
|
$gte?: string | {} | undefined;
|
|
@@ -726,6 +773,7 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
726
773
|
$in: (string | {})[];
|
|
727
774
|
$nin: (string | {})[];
|
|
728
775
|
} & {}> | undefined;
|
|
776
|
+
updatedAt?: any;
|
|
729
777
|
userId?: string | {} | Partial<{
|
|
730
778
|
$gt?: string | {} | undefined;
|
|
731
779
|
$gte?: string | {} | undefined;
|
|
@@ -766,6 +814,7 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
766
814
|
$in: (string | {})[];
|
|
767
815
|
$nin: (string | {})[];
|
|
768
816
|
} & {}> | undefined;
|
|
817
|
+
updatedAt?: any;
|
|
769
818
|
userId?: string | {} | Partial<{
|
|
770
819
|
$gt?: string | {} | undefined;
|
|
771
820
|
$gte?: string | {} | undefined;
|
|
@@ -805,6 +854,7 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
805
854
|
$in: (string | {})[];
|
|
806
855
|
$nin: (string | {})[];
|
|
807
856
|
} & {}> | undefined;
|
|
857
|
+
updatedAt?: any;
|
|
808
858
|
userId?: string | {} | Partial<{
|
|
809
859
|
$gt?: string | {} | undefined;
|
|
810
860
|
$gte?: string | {} | undefined;
|
|
@@ -33,6 +33,7 @@ export declare const messagesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
33
33
|
theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
34
34
|
layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
35
35
|
}>>;
|
|
36
|
+
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
36
37
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
37
38
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
38
39
|
isVerified: import("@feathersjs/typebox").TBoolean;
|
|
@@ -78,6 +79,7 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
78
79
|
theme?: string | undefined;
|
|
79
80
|
layout?: string | undefined;
|
|
80
81
|
} | undefined;
|
|
82
|
+
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
81
83
|
timezone?: string | undefined;
|
|
82
84
|
subscribe?: string | undefined;
|
|
83
85
|
verifyToken?: string | null | undefined;
|
|
@@ -131,6 +133,7 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
131
133
|
theme?: string | undefined;
|
|
132
134
|
layout?: string | undefined;
|
|
133
135
|
} | undefined;
|
|
136
|
+
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
134
137
|
timezone?: string | undefined;
|
|
135
138
|
subscribe?: string | undefined;
|
|
136
139
|
verifyToken?: string | null | undefined;
|
|
@@ -194,6 +197,7 @@ export declare const messagesDataSchema: import("@feathersjs/typebox").TPick<imp
|
|
|
194
197
|
theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
195
198
|
layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
196
199
|
}>>;
|
|
200
|
+
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
197
201
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
198
202
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
199
203
|
isVerified: import("@feathersjs/typebox").TBoolean;
|
|
@@ -239,6 +243,7 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
239
243
|
theme?: string | undefined;
|
|
240
244
|
layout?: string | undefined;
|
|
241
245
|
} | undefined;
|
|
246
|
+
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
242
247
|
timezone?: string | undefined;
|
|
243
248
|
subscribe?: string | undefined;
|
|
244
249
|
verifyToken?: string | null | undefined;
|
|
@@ -302,6 +307,7 @@ export declare const messagesPatchSchema: import("@feathersjs/typebox").TPartial
|
|
|
302
307
|
theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
303
308
|
layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
304
309
|
}>>;
|
|
310
|
+
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
305
311
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
306
312
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
307
313
|
isVerified: import("@feathersjs/typebox").TBoolean;
|
|
@@ -347,6 +353,7 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
347
353
|
theme?: string | undefined;
|
|
348
354
|
layout?: string | undefined;
|
|
349
355
|
} | undefined;
|
|
356
|
+
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
350
357
|
timezone?: string | undefined;
|
|
351
358
|
subscribe?: string | undefined;
|
|
352
359
|
verifyToken?: string | null | undefined;
|
|
@@ -410,6 +417,7 @@ export declare const messagesQueryProperties: import("@feathersjs/typebox").TPic
|
|
|
410
417
|
theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
411
418
|
layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
412
419
|
}>>;
|
|
420
|
+
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
413
421
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
414
422
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
415
423
|
isVerified: import("@feathersjs/typebox").TBoolean;
|
|
@@ -430,17 +438,29 @@ export declare const messagesQueryProperties: import("@feathersjs/typebox").TPic
|
|
|
430
438
|
}>>>;
|
|
431
439
|
avatar: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
432
440
|
read: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
433
|
-
}>, ["_id", "userId", "read"]>;
|
|
441
|
+
}>, ["_id", "userId", "read", "time"]>;
|
|
434
442
|
export declare const messagesQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
435
443
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
436
444
|
$skip: import("@feathersjs/typebox").TNumber;
|
|
437
445
|
$sort: import("@feathersjs/typebox").TObject<{
|
|
446
|
+
time: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
438
447
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
439
448
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
440
449
|
read: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
441
450
|
}>;
|
|
442
|
-
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "userId" | "read")[]>;
|
|
451
|
+
$select: import("@feathersjs/typebox").TUnsafe<("time" | "_id" | "userId" | "read")[]>;
|
|
443
452
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
453
|
+
time: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
454
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
455
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
456
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
457
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
458
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
459
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
460
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
461
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
462
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
463
|
+
} | undefined>]>>]>>;
|
|
444
464
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
445
465
|
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
446
466
|
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
@@ -476,6 +496,17 @@ export declare const messagesQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
476
496
|
} | undefined>]>>]>>;
|
|
477
497
|
}>>, import("@feathersjs/typebox").TObject<{
|
|
478
498
|
$or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
499
|
+
time: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
500
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
501
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
502
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
503
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
504
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
505
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
506
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
507
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
508
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
509
|
+
} | undefined>]>>]>>;
|
|
479
510
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
480
511
|
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
481
512
|
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
@@ -512,6 +543,17 @@ export declare const messagesQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
512
543
|
}>>>;
|
|
513
544
|
}>]>>;
|
|
514
545
|
$or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
546
|
+
time: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
547
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
548
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
549
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
550
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
551
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
552
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
553
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
554
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
555
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
556
|
+
} | undefined>]>>]>>;
|
|
515
557
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
516
558
|
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
517
559
|
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
@@ -547,6 +589,17 @@ export declare const messagesQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
547
589
|
} | undefined>]>>]>>;
|
|
548
590
|
}>>>;
|
|
549
591
|
}>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
592
|
+
time: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
593
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
594
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
595
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
596
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
597
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
598
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
599
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
600
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
601
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
602
|
+
} | undefined>]>>]>>;
|
|
550
603
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
551
604
|
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
552
605
|
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
@@ -587,12 +640,22 @@ export declare const messagesQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
587
640
|
$limit: number;
|
|
588
641
|
$skip: number;
|
|
589
642
|
$sort: {
|
|
643
|
+
time?: number | undefined;
|
|
590
644
|
_id?: number | undefined;
|
|
591
645
|
userId?: number | undefined;
|
|
592
646
|
read?: number | undefined;
|
|
593
647
|
};
|
|
594
|
-
$select: ("_id" | "userId" | "read")[];
|
|
648
|
+
$select: ("time" | "_id" | "userId" | "read")[];
|
|
595
649
|
$and: ({
|
|
650
|
+
time?: number | Partial<{
|
|
651
|
+
$gt?: number | undefined;
|
|
652
|
+
$gte?: number | undefined;
|
|
653
|
+
$lt?: number | undefined;
|
|
654
|
+
$lte?: number | undefined;
|
|
655
|
+
$ne?: number | undefined;
|
|
656
|
+
$in: number[];
|
|
657
|
+
$nin: number[];
|
|
658
|
+
} & {}> | undefined;
|
|
596
659
|
_id?: string | {} | Partial<{
|
|
597
660
|
$gt: string | {};
|
|
598
661
|
$gte: string | {};
|
|
@@ -622,6 +685,15 @@ export declare const messagesQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
622
685
|
} & {}> | undefined;
|
|
623
686
|
} | {
|
|
624
687
|
$or: {
|
|
688
|
+
time?: number | Partial<{
|
|
689
|
+
$gt?: number | undefined;
|
|
690
|
+
$gte?: number | undefined;
|
|
691
|
+
$lt?: number | undefined;
|
|
692
|
+
$lte?: number | undefined;
|
|
693
|
+
$ne?: number | undefined;
|
|
694
|
+
$in: number[];
|
|
695
|
+
$nin: number[];
|
|
696
|
+
} & {}> | undefined;
|
|
625
697
|
_id?: string | {} | Partial<{
|
|
626
698
|
$gt: string | {};
|
|
627
699
|
$gte: string | {};
|
|
@@ -652,6 +724,15 @@ export declare const messagesQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
652
724
|
}[];
|
|
653
725
|
})[];
|
|
654
726
|
$or: {
|
|
727
|
+
time?: number | Partial<{
|
|
728
|
+
$gt?: number | undefined;
|
|
729
|
+
$gte?: number | undefined;
|
|
730
|
+
$lt?: number | undefined;
|
|
731
|
+
$lte?: number | undefined;
|
|
732
|
+
$ne?: number | undefined;
|
|
733
|
+
$in: number[];
|
|
734
|
+
$nin: number[];
|
|
735
|
+
} & {}> | undefined;
|
|
655
736
|
_id?: string | {} | Partial<{
|
|
656
737
|
$gt: string | {};
|
|
657
738
|
$gte: string | {};
|
|
@@ -681,6 +762,15 @@ export declare const messagesQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
681
762
|
} & {}> | undefined;
|
|
682
763
|
}[];
|
|
683
764
|
}> & {
|
|
765
|
+
time?: number | Partial<{
|
|
766
|
+
$gt?: number | undefined;
|
|
767
|
+
$gte?: number | undefined;
|
|
768
|
+
$lt?: number | undefined;
|
|
769
|
+
$lte?: number | undefined;
|
|
770
|
+
$ne?: number | undefined;
|
|
771
|
+
$in: number[];
|
|
772
|
+
$nin: number[];
|
|
773
|
+
} & {}> | undefined;
|
|
684
774
|
_id?: string | {} | Partial<{
|
|
685
775
|
$gt: string | {};
|
|
686
776
|
$gte: string | {};
|
|
@@ -18,8 +18,8 @@ export declare const strategiesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
18
18
|
exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
19
19
|
timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
20
20
|
order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
22
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
23
23
|
emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
24
24
|
forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
25
25
|
forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
@@ -396,8 +396,8 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
396
396
|
timeinforce?: unknown;
|
|
397
397
|
order_types?: {
|
|
398
398
|
stoploss?: string | undefined;
|
|
399
|
-
|
|
400
|
-
|
|
399
|
+
entry?: "Limit" | "Market" | undefined;
|
|
400
|
+
exit?: "Limit" | "Market" | undefined;
|
|
401
401
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
402
402
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
403
403
|
forcesell?: "Limit" | "Market" | undefined;
|
|
@@ -613,8 +613,8 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
|
|
|
613
613
|
timeinforce?: unknown;
|
|
614
614
|
order_types?: {
|
|
615
615
|
stoploss?: string | undefined;
|
|
616
|
-
|
|
617
|
-
|
|
616
|
+
entry?: "Limit" | "Market" | undefined;
|
|
617
|
+
exit?: "Limit" | "Market" | undefined;
|
|
618
618
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
619
619
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
620
620
|
forcesell?: "Limit" | "Market" | undefined;
|
|
@@ -671,8 +671,8 @@ export declare const strategiesDataSchema: import("@feathersjs/typebox").TPick<i
|
|
|
671
671
|
exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
672
672
|
timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
673
673
|
order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
674
|
-
|
|
675
|
-
|
|
674
|
+
entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
675
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
676
676
|
emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
677
677
|
forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
678
678
|
forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
@@ -1049,8 +1049,8 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
|
|
|
1049
1049
|
timeinforce?: unknown;
|
|
1050
1050
|
order_types?: {
|
|
1051
1051
|
stoploss?: string | undefined;
|
|
1052
|
-
|
|
1053
|
-
|
|
1052
|
+
entry?: "Limit" | "Market" | undefined;
|
|
1053
|
+
exit?: "Limit" | "Market" | undefined;
|
|
1054
1054
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
1055
1055
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
1056
1056
|
forcesell?: "Limit" | "Market" | undefined;
|
|
@@ -1107,8 +1107,8 @@ export declare const strategiesPatchSchema: import("@feathersjs/typebox").TParti
|
|
|
1107
1107
|
exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1108
1108
|
timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
1109
1109
|
order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1110
|
-
|
|
1111
|
-
|
|
1110
|
+
entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
1111
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
1112
1112
|
emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
1113
1113
|
forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
1114
1114
|
forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
@@ -1485,8 +1485,8 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
|
|
|
1485
1485
|
timeinforce?: unknown;
|
|
1486
1486
|
order_types?: {
|
|
1487
1487
|
stoploss?: string | undefined;
|
|
1488
|
-
|
|
1489
|
-
|
|
1488
|
+
entry?: "Limit" | "Market" | undefined;
|
|
1489
|
+
exit?: "Limit" | "Market" | undefined;
|
|
1490
1490
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
1491
1491
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
1492
1492
|
forcesell?: "Limit" | "Market" | undefined;
|
|
@@ -1543,8 +1543,8 @@ export declare const strategiesQueryProperties: import("@feathersjs/typebox").TP
|
|
|
1543
1543
|
exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1544
1544
|
timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
1545
1545
|
order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1546
|
-
|
|
1547
|
-
|
|
1546
|
+
entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
1547
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
1548
1548
|
emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
1549
1549
|
forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
1550
1550
|
forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
@@ -375,8 +375,8 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
375
375
|
exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
376
376
|
timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
377
377
|
order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
378
|
-
|
|
379
|
-
|
|
378
|
+
entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
379
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
380
380
|
emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
381
381
|
forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
382
382
|
forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
@@ -825,8 +825,8 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
825
825
|
timeinforce?: unknown;
|
|
826
826
|
order_types?: {
|
|
827
827
|
stoploss?: string | undefined;
|
|
828
|
-
|
|
829
|
-
|
|
828
|
+
entry?: "Limit" | "Market" | undefined;
|
|
829
|
+
exit?: "Limit" | "Market" | undefined;
|
|
830
830
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
831
831
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
832
832
|
forcesell?: "Limit" | "Market" | undefined;
|
|
@@ -1409,8 +1409,8 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1409
1409
|
timeinforce?: unknown;
|
|
1410
1410
|
order_types?: {
|
|
1411
1411
|
stoploss?: string | undefined;
|
|
1412
|
-
|
|
1413
|
-
|
|
1412
|
+
entry?: "Limit" | "Market" | undefined;
|
|
1413
|
+
exit?: "Limit" | "Market" | undefined;
|
|
1414
1414
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
1415
1415
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
1416
1416
|
forcesell?: "Limit" | "Market" | undefined;
|
|
@@ -2129,8 +2129,8 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2129
2129
|
exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2130
2130
|
timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
2131
2131
|
order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2132
|
-
|
|
2133
|
-
|
|
2132
|
+
entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
2133
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
2134
2134
|
emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
2135
2135
|
forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
2136
2136
|
forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
@@ -2579,8 +2579,8 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2579
2579
|
timeinforce?: unknown;
|
|
2580
2580
|
order_types?: {
|
|
2581
2581
|
stoploss?: string | undefined;
|
|
2582
|
-
|
|
2583
|
-
|
|
2582
|
+
entry?: "Limit" | "Market" | undefined;
|
|
2583
|
+
exit?: "Limit" | "Market" | undefined;
|
|
2584
2584
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
2585
2585
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
2586
2586
|
forcesell?: "Limit" | "Market" | undefined;
|
|
@@ -3299,8 +3299,8 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3299
3299
|
exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3300
3300
|
timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
3301
3301
|
order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3302
|
-
|
|
3303
|
-
|
|
3302
|
+
entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
3303
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
3304
3304
|
emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
3305
3305
|
forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
3306
3306
|
forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
@@ -3749,8 +3749,8 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
3749
3749
|
timeinforce?: unknown;
|
|
3750
3750
|
order_types?: {
|
|
3751
3751
|
stoploss?: string | undefined;
|
|
3752
|
-
|
|
3753
|
-
|
|
3752
|
+
entry?: "Limit" | "Market" | undefined;
|
|
3753
|
+
exit?: "Limit" | "Market" | undefined;
|
|
3754
3754
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
3755
3755
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
3756
3756
|
forcesell?: "Limit" | "Market" | undefined;
|
|
@@ -4469,8 +4469,8 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
4469
4469
|
exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4470
4470
|
timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
4471
4471
|
order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4472
|
-
|
|
4473
|
-
|
|
4472
|
+
entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
4473
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
4474
4474
|
emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
4475
4475
|
forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
4476
4476
|
forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
@@ -223,8 +223,8 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
223
223
|
exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
224
224
|
timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
225
225
|
order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
226
|
-
|
|
227
|
-
|
|
226
|
+
entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
227
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
228
228
|
emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
229
229
|
forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
230
230
|
forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
@@ -666,8 +666,8 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
666
666
|
timeinforce?: unknown;
|
|
667
667
|
order_types?: {
|
|
668
668
|
stoploss?: string | undefined;
|
|
669
|
-
|
|
670
|
-
|
|
669
|
+
entry?: "Limit" | "Market" | undefined;
|
|
670
|
+
exit?: "Limit" | "Market" | undefined;
|
|
671
671
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
672
672
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
673
673
|
forcesell?: "Limit" | "Market" | undefined;
|
|
@@ -1093,8 +1093,8 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1093
1093
|
timeinforce?: unknown;
|
|
1094
1094
|
order_types?: {
|
|
1095
1095
|
stoploss?: string | undefined;
|
|
1096
|
-
|
|
1097
|
-
|
|
1096
|
+
entry?: "Limit" | "Market" | undefined;
|
|
1097
|
+
exit?: "Limit" | "Market" | undefined;
|
|
1098
1098
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
1099
1099
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
1100
1100
|
forcesell?: "Limit" | "Market" | undefined;
|
|
@@ -1506,8 +1506,8 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1506
1506
|
exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1507
1507
|
timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
1508
1508
|
order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1509
|
-
|
|
1510
|
-
|
|
1509
|
+
entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
1510
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
1511
1511
|
emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
1512
1512
|
forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
1513
1513
|
forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
@@ -1949,8 +1949,8 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
1949
1949
|
timeinforce?: unknown;
|
|
1950
1950
|
order_types?: {
|
|
1951
1951
|
stoploss?: string | undefined;
|
|
1952
|
-
|
|
1953
|
-
|
|
1952
|
+
entry?: "Limit" | "Market" | undefined;
|
|
1953
|
+
exit?: "Limit" | "Market" | undefined;
|
|
1954
1954
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
1955
1955
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
1956
1956
|
forcesell?: "Limit" | "Market" | undefined;
|
|
@@ -2362,8 +2362,8 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2362
2362
|
exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2363
2363
|
timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
2364
2364
|
order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2365
|
-
|
|
2366
|
-
|
|
2365
|
+
entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
2366
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
2367
2367
|
emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
2368
2368
|
forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
2369
2369
|
forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
@@ -2805,8 +2805,8 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2805
2805
|
timeinforce?: unknown;
|
|
2806
2806
|
order_types?: {
|
|
2807
2807
|
stoploss?: string | undefined;
|
|
2808
|
-
|
|
2809
|
-
|
|
2808
|
+
entry?: "Limit" | "Market" | undefined;
|
|
2809
|
+
exit?: "Limit" | "Market" | undefined;
|
|
2810
2810
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
2811
2811
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
2812
2812
|
forcesell?: "Limit" | "Market" | undefined;
|
|
@@ -3218,8 +3218,8 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3218
3218
|
exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3219
3219
|
timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
3220
3220
|
order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3221
|
-
|
|
3222
|
-
|
|
3221
|
+
entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
3222
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
3223
3223
|
emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
3224
3224
|
forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
3225
3225
|
forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
@@ -24,6 +24,7 @@ export declare const userSchema: import("@feathersjs/typebox").TObject<{
|
|
|
24
24
|
theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
25
25
|
layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
26
26
|
}>>;
|
|
27
|
+
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
27
28
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
28
29
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
29
30
|
isVerified: import("@feathersjs/typebox").TBoolean;
|
|
@@ -64,6 +65,7 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
|
|
|
64
65
|
theme?: string | undefined;
|
|
65
66
|
layout?: string | undefined;
|
|
66
67
|
} | undefined;
|
|
68
|
+
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
67
69
|
timezone?: string | undefined;
|
|
68
70
|
subscribe?: string | undefined;
|
|
69
71
|
verifyToken?: string | null | undefined;
|
|
@@ -105,6 +107,7 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
|
|
|
105
107
|
theme?: string | undefined;
|
|
106
108
|
layout?: string | undefined;
|
|
107
109
|
} | undefined;
|
|
110
|
+
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
108
111
|
timezone?: string | undefined;
|
|
109
112
|
subscribe?: string | undefined;
|
|
110
113
|
verifyToken?: string | null | undefined;
|
|
@@ -149,6 +152,7 @@ export declare const userDataSchema: import("@feathersjs/typebox").TPick<import(
|
|
|
149
152
|
theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
150
153
|
layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
151
154
|
}>>;
|
|
155
|
+
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
152
156
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
153
157
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
154
158
|
isVerified: import("@feathersjs/typebox").TBoolean;
|
|
@@ -189,6 +193,7 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
|
189
193
|
theme?: string | undefined;
|
|
190
194
|
layout?: string | undefined;
|
|
191
195
|
} | undefined;
|
|
196
|
+
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
192
197
|
timezone?: string | undefined;
|
|
193
198
|
subscribe?: string | undefined;
|
|
194
199
|
verifyToken?: string | null | undefined;
|
|
@@ -233,6 +238,7 @@ export declare const userPatchSchema: import("@feathersjs/typebox").TPartial<imp
|
|
|
233
238
|
theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
234
239
|
layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
235
240
|
}>>;
|
|
241
|
+
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
236
242
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
237
243
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
238
244
|
isVerified: import("@feathersjs/typebox").TBoolean;
|
|
@@ -273,6 +279,7 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
|
273
279
|
theme?: string | undefined;
|
|
274
280
|
layout?: string | undefined;
|
|
275
281
|
} | undefined;
|
|
282
|
+
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
276
283
|
timezone?: string | undefined;
|
|
277
284
|
subscribe?: string | undefined;
|
|
278
285
|
verifyToken?: string | null | undefined;
|
|
@@ -317,6 +324,7 @@ export declare const userQueryProperties: import("@feathersjs/typebox").TPick<im
|
|
|
317
324
|
theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
318
325
|
layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
319
326
|
}>>;
|
|
327
|
+
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
320
328
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
321
329
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
322
330
|
isVerified: import("@feathersjs/typebox").TBoolean;
|