@cryptorobot.ai/client 0.0.14 → 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/client.d.ts +2 -0
- package/lib/client.js +2 -0
- package/lib/configuration.d.ts +2 -0
- package/lib/helpers/deployments.helper.d.ts +2 -1
- package/lib/helpers/logging.helper.d.ts +1 -0
- 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 +140 -164
- package/lib/services/traders/pods/api/api.schema.d.ts +372 -444
- package/lib/services/traders/pods/pods.schema.d.ts +256 -304
- package/lib/services/traders/traders.schema.d.ts +116 -140
- package/lib/services/users/users.schema.d.ts +8 -0
- package/lib/services/version/version.class.d.ts +20 -0
- package/lib/services/version/version.d.ts +10 -0
- package/lib/services/version/version.shared.d.ts +13 -0
- package/lib/services/version/version.shared.js +13 -0
- package/package.json +10 -3
package/lib/client.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type { TransportConnection, Application } from '@feathersjs/feathers';
|
|
2
2
|
import type { AuthenticationClientOptions } from '@feathersjs/authentication-client';
|
|
3
|
+
import './services/version/version.shared';
|
|
4
|
+
export type { Version, VersionData, VersionQuery, VersionPatch } from './services/version/version.shared';
|
|
3
5
|
import './services/stripe/customers/paymentmethods/paymentmethods.shared';
|
|
4
6
|
export type { StripeCustomersPaymentmethods, StripeCustomersPaymentmethodsData, StripeCustomersPaymentmethodsQuery, StripeCustomersPaymentmethodsPatch } from './services/stripe/customers/paymentmethods/paymentmethods.shared';
|
|
5
7
|
import './services/stripe/customers/subscriptions/subscriptions.shared';
|
package/lib/client.js
CHANGED
|
@@ -7,6 +7,7 @@ exports.createClient = void 0;
|
|
|
7
7
|
// For more information about this file see https://dove.feathersjs.com/guides/cli/client.html
|
|
8
8
|
const feathers_1 = require("@feathersjs/feathers");
|
|
9
9
|
const authentication_client_1 = __importDefault(require("@feathersjs/authentication-client"));
|
|
10
|
+
const version_shared_1 = require("./services/version/version.shared");
|
|
10
11
|
const paymentmethods_shared_1 = require("./services/stripe/customers/paymentmethods/paymentmethods.shared");
|
|
11
12
|
const subscriptions_shared_1 = require("./services/stripe/customers/subscriptions/subscriptions.shared");
|
|
12
13
|
const products_shared_1 = require("./services/stripe/products/products.shared");
|
|
@@ -93,6 +94,7 @@ const createClient = (connection, authenticationOptions = {}) => {
|
|
|
93
94
|
client.configure(products_shared_1.stripeProductsClient);
|
|
94
95
|
client.configure(subscriptions_shared_1.stripeCustomersSubscriptionsClient);
|
|
95
96
|
client.configure(paymentmethods_shared_1.stripeCustomersPaymentmethodsClient);
|
|
97
|
+
client.configure(version_shared_1.versionClient);
|
|
96
98
|
return client;
|
|
97
99
|
};
|
|
98
100
|
exports.createClient = createClient;
|
package/lib/configuration.d.ts
CHANGED
|
@@ -106,6 +106,7 @@ export declare const configurationSchema: import("@feathersjs/typebox").TInterse
|
|
|
106
106
|
ccxt: import("@feathersjs/typebox").TObject<{
|
|
107
107
|
loadMarketsIntervalInMinutes: import("@feathersjs/typebox").TNumber;
|
|
108
108
|
minRefreshIntervalBalancesInMinutes: import("@feathersjs/typebox").TNumber;
|
|
109
|
+
proxies: import("@feathersjs/typebox").TAny;
|
|
109
110
|
}>;
|
|
110
111
|
storage: import("@feathersjs/typebox").TString<string>;
|
|
111
112
|
configurationId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -143,6 +144,7 @@ export declare const configurationSchema: import("@feathersjs/typebox").TInterse
|
|
|
143
144
|
apiKey: import("@feathersjs/typebox").TString<string>;
|
|
144
145
|
}>;
|
|
145
146
|
testData: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
147
|
+
mixpanel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
146
148
|
}>]>;
|
|
147
149
|
export type ApplicationConfiguration = Static<typeof configurationSchema>;
|
|
148
150
|
export declare const configurationValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
@@ -5,7 +5,8 @@ export declare class Docker {
|
|
|
5
5
|
static checkIfStrategyIsAvailable(context: HookContext): void;
|
|
6
6
|
static checkIfStrategyExistsInDisk(context: HookContext): Promise<void>;
|
|
7
7
|
static checkIfConfigExistsInDisk(context: HookContext): Promise<void>;
|
|
8
|
-
static
|
|
8
|
+
static requestAvailableHostPort(context: HookContext): Promise<String>;
|
|
9
|
+
static generate(context: HookContext): Promise<object>;
|
|
9
10
|
static deploy(context: HookContext, deployment: any): Promise<any>;
|
|
10
11
|
static getTraderData(context: HookContext): string;
|
|
11
12
|
}
|
|
@@ -4,4 +4,5 @@ export default class Log {
|
|
|
4
4
|
static debug(message: any, context: any, filename?: any, extra?: any): void;
|
|
5
5
|
static error(message: any, context: any, filename?: any, extra?: any): void;
|
|
6
6
|
static silly(message: any, context: any, filename?: any, extra?: any): void;
|
|
7
|
+
static verbose(message: any, context: any, filename?: any, extra?: any): void;
|
|
7
8
|
}
|
|
@@ -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 | {};
|