@cryptorobot.ai/client 0.0.32 → 0.0.35
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/app.d.ts +1 -0
- package/lib/client.d.ts +2 -0
- package/lib/client.js +7 -5
- package/lib/configuration.d.ts +41 -1
- package/lib/helpers/app.helper.d.ts +1 -0
- package/lib/helpers/ccxt.helper.d.ts +2 -0
- package/lib/helpers/deployments.helper.d.ts +1 -1
- package/lib/helpers/funnel.helper.d.ts +2 -0
- package/lib/helpers/push-notification.helper.d.ts +1 -0
- package/lib/hooks/application/setup-ccxt-load-marketplaces-mocked.d.ts +3 -0
- package/lib/hooks/application/setup-fs.d.ts +3 -0
- package/lib/hooks/revenuecat-is-subscription-active.d.ts +2 -0
- package/lib/services/auth-management/auth-management.shared.js +1 -12
- package/lib/services/config/config.class.d.ts +1 -1
- package/lib/services/exchanges/balance/balance.class.d.ts +1 -1
- package/lib/services/exchanges/balance/balance.schema.d.ts +32 -24
- package/lib/services/exchanges/download/download.schema.d.ts +32 -24
- package/lib/services/exchanges/exchanges.d.ts +1 -0
- package/lib/services/exchanges/exchanges.schema.d.ts +85 -77
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +32 -24
- package/lib/services/index.d.ts +1 -1
- package/lib/services/messages/messages.schema.d.ts +80 -32
- package/lib/services/strategies/backtest/backtest.d.ts +1 -0
- package/lib/services/strategies/backtest/backtest.schema.d.ts +133 -197
- package/lib/services/strategies/backtest/results/results.schema.d.ts +4 -4
- package/lib/services/strategies/indicators/indicators.schema.d.ts +61 -61
- package/lib/services/strategies/strategies.d.ts +1 -0
- package/lib/services/strategies/strategies.schema.d.ts +36 -20
- package/lib/services/strategies/templates/templates.schema.d.ts +9 -1
- package/lib/services/stripe/webhooks/webhooks.class.d.ts +26 -0
- package/lib/services/stripe/webhooks/webhooks.d.ts +9 -0
- package/lib/services/stripe/webhooks/webhooks.shared.d.ts +13 -0
- package/lib/services/stripe/webhooks/webhooks.shared.js +13 -0
- package/lib/services/traders/pods/api/api.schema.d.ts +116 -76
- package/lib/services/traders/pods/pods.schema.d.ts +92 -60
- package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +217 -3
- package/lib/services/traders/traders.schema.d.ts +141 -133
- package/lib/services/users/users.d.ts +1 -0
- package/lib/services/users/users.helper.d.ts +1 -1
- package/lib/services/users/users.schema.d.ts +236 -88
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import type { Static } from '@feathersjs/typebox';
|
|
|
2
2
|
import type { HookContext } from '../../declarations';
|
|
3
3
|
import type { TradersService } from './traders.class';
|
|
4
4
|
export declare const tradersSchema: import("@feathersjs/typebox").TObject<{
|
|
5
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
5
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
6
6
|
name: import("@feathersjs/typebox").TAny;
|
|
7
7
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
8
8
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
@@ -177,7 +177,8 @@ export declare const tradersSchema: import("@feathersjs/typebox").TObject<{
|
|
|
177
177
|
reload: import("@feathersjs/typebox").TBoolean;
|
|
178
178
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
179
179
|
}>>;
|
|
180
|
-
pod: import("@feathersjs/typebox").
|
|
180
|
+
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
181
|
+
_include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
181
182
|
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
182
183
|
host: import("@feathersjs/typebox").TString<string>;
|
|
183
184
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -222,6 +223,7 @@ export declare const tradersResolver: import("@feathersjs/schema").Resolver<{
|
|
|
222
223
|
reload: boolean;
|
|
223
224
|
balance_dust_level: number;
|
|
224
225
|
} | undefined;
|
|
226
|
+
_id?: string | {} | undefined;
|
|
225
227
|
plugins?: {
|
|
226
228
|
number_assets?: number | undefined;
|
|
227
229
|
refresh_period?: number | undefined;
|
|
@@ -317,6 +319,8 @@ export declare const tradersResolver: import("@feathersjs/schema").Resolver<{
|
|
|
317
319
|
close_rate: string;
|
|
318
320
|
};
|
|
319
321
|
} | undefined;
|
|
322
|
+
pod?: {} | undefined;
|
|
323
|
+
_include?: any;
|
|
320
324
|
reset?: boolean | undefined;
|
|
321
325
|
host: string;
|
|
322
326
|
name: any;
|
|
@@ -324,7 +328,6 @@ export declare const tradersResolver: import("@feathersjs/schema").Resolver<{
|
|
|
324
328
|
strategies: string[];
|
|
325
329
|
secret: string;
|
|
326
330
|
key: string;
|
|
327
|
-
_id: string | {};
|
|
328
331
|
createdAt: any;
|
|
329
332
|
updatedAt: any;
|
|
330
333
|
connected: boolean;
|
|
@@ -367,7 +370,6 @@ export declare const tradersResolver: import("@feathersjs/schema").Resolver<{
|
|
|
367
370
|
jwt_secret_key: string;
|
|
368
371
|
CORS_origins: string[];
|
|
369
372
|
};
|
|
370
|
-
pod: string;
|
|
371
373
|
}, HookContext<TradersService<import("./traders.class").TradersParams>>>;
|
|
372
374
|
export declare const tradersExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
373
375
|
telegram?: {
|
|
@@ -405,6 +407,7 @@ export declare const tradersExternalResolver: import("@feathersjs/schema").Resol
|
|
|
405
407
|
reload: boolean;
|
|
406
408
|
balance_dust_level: number;
|
|
407
409
|
} | undefined;
|
|
410
|
+
_id?: string | {} | undefined;
|
|
408
411
|
plugins?: {
|
|
409
412
|
number_assets?: number | undefined;
|
|
410
413
|
refresh_period?: number | undefined;
|
|
@@ -500,6 +503,8 @@ export declare const tradersExternalResolver: import("@feathersjs/schema").Resol
|
|
|
500
503
|
close_rate: string;
|
|
501
504
|
};
|
|
502
505
|
} | undefined;
|
|
506
|
+
pod?: {} | undefined;
|
|
507
|
+
_include?: any;
|
|
503
508
|
reset?: boolean | undefined;
|
|
504
509
|
host: string;
|
|
505
510
|
name: any;
|
|
@@ -507,7 +512,6 @@ export declare const tradersExternalResolver: import("@feathersjs/schema").Resol
|
|
|
507
512
|
strategies: string[];
|
|
508
513
|
secret: string;
|
|
509
514
|
key: string;
|
|
510
|
-
_id: string | {};
|
|
511
515
|
createdAt: any;
|
|
512
516
|
updatedAt: any;
|
|
513
517
|
connected: boolean;
|
|
@@ -550,10 +554,9 @@ export declare const tradersExternalResolver: import("@feathersjs/schema").Resol
|
|
|
550
554
|
jwt_secret_key: string;
|
|
551
555
|
CORS_origins: string[];
|
|
552
556
|
};
|
|
553
|
-
pod: string;
|
|
554
557
|
}, HookContext<TradersService<import("./traders.class").TradersParams>>>;
|
|
555
558
|
export declare const tradersDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
556
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
559
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
557
560
|
name: import("@feathersjs/typebox").TAny;
|
|
558
561
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
559
562
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
@@ -728,13 +731,14 @@ export declare const tradersDataSchema: import("@feathersjs/typebox").TPick<impo
|
|
|
728
731
|
reload: import("@feathersjs/typebox").TBoolean;
|
|
729
732
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
730
733
|
}>>;
|
|
731
|
-
pod: import("@feathersjs/typebox").
|
|
734
|
+
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
735
|
+
_include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
732
736
|
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
733
737
|
host: import("@feathersjs/typebox").TString<string>;
|
|
734
738
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
735
739
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
736
740
|
"traders/pods": import("@feathersjs/typebox").TAny;
|
|
737
|
-
}>, []>;
|
|
741
|
+
}>, ["_id"]>;
|
|
738
742
|
export type TradersData = Static<typeof tradersDataSchema>;
|
|
739
743
|
export declare const tradersDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
740
744
|
export declare const tradersDataResolver: import("@feathersjs/schema").Resolver<{
|
|
@@ -773,6 +777,7 @@ export declare const tradersDataResolver: import("@feathersjs/schema").Resolver<
|
|
|
773
777
|
reload: boolean;
|
|
774
778
|
balance_dust_level: number;
|
|
775
779
|
} | undefined;
|
|
780
|
+
_id?: string | {} | undefined;
|
|
776
781
|
plugins?: {
|
|
777
782
|
number_assets?: number | undefined;
|
|
778
783
|
refresh_period?: number | undefined;
|
|
@@ -868,6 +873,8 @@ export declare const tradersDataResolver: import("@feathersjs/schema").Resolver<
|
|
|
868
873
|
close_rate: string;
|
|
869
874
|
};
|
|
870
875
|
} | undefined;
|
|
876
|
+
pod?: {} | undefined;
|
|
877
|
+
_include?: any;
|
|
871
878
|
reset?: boolean | undefined;
|
|
872
879
|
host: string;
|
|
873
880
|
name: any;
|
|
@@ -875,7 +882,6 @@ export declare const tradersDataResolver: import("@feathersjs/schema").Resolver<
|
|
|
875
882
|
strategies: string[];
|
|
876
883
|
secret: string;
|
|
877
884
|
key: string;
|
|
878
|
-
_id: string | {};
|
|
879
885
|
createdAt: any;
|
|
880
886
|
updatedAt: any;
|
|
881
887
|
connected: boolean;
|
|
@@ -918,10 +924,9 @@ export declare const tradersDataResolver: import("@feathersjs/schema").Resolver<
|
|
|
918
924
|
jwt_secret_key: string;
|
|
919
925
|
CORS_origins: string[];
|
|
920
926
|
};
|
|
921
|
-
pod: string;
|
|
922
927
|
}, HookContext<TradersService<import("./traders.class").TradersParams>>>;
|
|
923
928
|
export declare const tradersPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
924
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
929
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
925
930
|
name: import("@feathersjs/typebox").TAny;
|
|
926
931
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
927
932
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
@@ -1096,7 +1101,8 @@ export declare const tradersPatchSchema: import("@feathersjs/typebox").TPartial<
|
|
|
1096
1101
|
reload: import("@feathersjs/typebox").TBoolean;
|
|
1097
1102
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
1098
1103
|
}>>;
|
|
1099
|
-
pod: import("@feathersjs/typebox").
|
|
1104
|
+
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
1105
|
+
_include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
1100
1106
|
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1101
1107
|
host: import("@feathersjs/typebox").TString<string>;
|
|
1102
1108
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -1141,6 +1147,7 @@ export declare const tradersPatchResolver: import("@feathersjs/schema").Resolver
|
|
|
1141
1147
|
reload: boolean;
|
|
1142
1148
|
balance_dust_level: number;
|
|
1143
1149
|
} | undefined;
|
|
1150
|
+
_id?: string | {} | undefined;
|
|
1144
1151
|
plugins?: {
|
|
1145
1152
|
number_assets?: number | undefined;
|
|
1146
1153
|
refresh_period?: number | undefined;
|
|
@@ -1236,6 +1243,8 @@ export declare const tradersPatchResolver: import("@feathersjs/schema").Resolver
|
|
|
1236
1243
|
close_rate: string;
|
|
1237
1244
|
};
|
|
1238
1245
|
} | undefined;
|
|
1246
|
+
pod?: {} | undefined;
|
|
1247
|
+
_include?: any;
|
|
1239
1248
|
reset?: boolean | undefined;
|
|
1240
1249
|
host: string;
|
|
1241
1250
|
name: any;
|
|
@@ -1243,7 +1252,6 @@ export declare const tradersPatchResolver: import("@feathersjs/schema").Resolver
|
|
|
1243
1252
|
strategies: string[];
|
|
1244
1253
|
secret: string;
|
|
1245
1254
|
key: string;
|
|
1246
|
-
_id: string | {};
|
|
1247
1255
|
createdAt: any;
|
|
1248
1256
|
updatedAt: any;
|
|
1249
1257
|
connected: boolean;
|
|
@@ -1286,10 +1294,9 @@ export declare const tradersPatchResolver: import("@feathersjs/schema").Resolver
|
|
|
1286
1294
|
jwt_secret_key: string;
|
|
1287
1295
|
CORS_origins: string[];
|
|
1288
1296
|
};
|
|
1289
|
-
pod: string;
|
|
1290
1297
|
}, HookContext<TradersService<import("./traders.class").TradersParams>>>;
|
|
1291
1298
|
export declare const tradersQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
1292
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
1299
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1293
1300
|
name: import("@feathersjs/typebox").TAny;
|
|
1294
1301
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
1295
1302
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
@@ -1464,7 +1471,8 @@ export declare const tradersQueryProperties: import("@feathersjs/typebox").TPick
|
|
|
1464
1471
|
reload: import("@feathersjs/typebox").TBoolean;
|
|
1465
1472
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
1466
1473
|
}>>;
|
|
1467
|
-
pod: import("@feathersjs/typebox").
|
|
1474
|
+
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
1475
|
+
_include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
1468
1476
|
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1469
1477
|
host: import("@feathersjs/typebox").TString<string>;
|
|
1470
1478
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -1527,14 +1535,14 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1527
1535
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1528
1536
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1529
1537
|
} | undefined>]>>]>>;
|
|
1530
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
1531
|
-
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
1532
|
-
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
1533
|
-
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
1534
|
-
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
1535
|
-
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
1536
|
-
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
1537
|
-
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
1538
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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<{
|
|
1539
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1540
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1541
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1542
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1543
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1544
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
1545
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
1538
1546
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1539
1547
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1540
1548
|
} | undefined>]>>]>>;
|
|
@@ -1749,14 +1757,14 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1749
1757
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1750
1758
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1751
1759
|
} | undefined>]>>]>>;
|
|
1752
|
-
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").
|
|
1753
|
-
$gt: import("@feathersjs/typebox").
|
|
1754
|
-
$gte: import("@feathersjs/typebox").
|
|
1755
|
-
$lt: import("@feathersjs/typebox").
|
|
1756
|
-
$lte: import("@feathersjs/typebox").
|
|
1757
|
-
$ne: import("@feathersjs/typebox").
|
|
1758
|
-
$in: import("@feathersjs/typebox").
|
|
1759
|
-
$nin: import("@feathersjs/typebox").
|
|
1760
|
+
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
1761
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
1762
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
1763
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
1764
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
1765
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
1766
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
|
|
1767
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
|
|
1760
1768
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1761
1769
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1762
1770
|
} | undefined>]>>]>>;
|
|
@@ -1795,14 +1803,14 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
1795
1803
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1796
1804
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1797
1805
|
} | undefined>]>>]>>;
|
|
1798
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
1799
|
-
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
1800
|
-
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
1801
|
-
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
1802
|
-
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
1803
|
-
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
1804
|
-
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
1805
|
-
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
1806
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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<{
|
|
1807
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1808
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1809
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1810
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1811
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1812
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
1813
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
1806
1814
|
}>, import("@feathersjs/typebox").TObject<{
|
|
1807
1815
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
1808
1816
|
} | undefined>]>>]>>;
|
|
@@ -2017,14 +2025,14 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2017
2025
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2018
2026
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2019
2027
|
} | undefined>]>>]>>;
|
|
2020
|
-
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").
|
|
2021
|
-
$gt: import("@feathersjs/typebox").
|
|
2022
|
-
$gte: import("@feathersjs/typebox").
|
|
2023
|
-
$lt: import("@feathersjs/typebox").
|
|
2024
|
-
$lte: import("@feathersjs/typebox").
|
|
2025
|
-
$ne: import("@feathersjs/typebox").
|
|
2026
|
-
$in: import("@feathersjs/typebox").
|
|
2027
|
-
$nin: import("@feathersjs/typebox").
|
|
2028
|
+
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2029
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
2030
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
2031
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
2032
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
2033
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
2034
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
|
|
2035
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
|
|
2028
2036
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2029
2037
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2030
2038
|
} | undefined>]>>]>>;
|
|
@@ -2064,14 +2072,14 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2064
2072
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2065
2073
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2066
2074
|
} | undefined>]>>]>>;
|
|
2067
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
2068
|
-
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
2069
|
-
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
2070
|
-
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
2071
|
-
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
2072
|
-
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
2073
|
-
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
2074
|
-
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
2075
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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<{
|
|
2076
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2077
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2078
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2079
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2080
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2081
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
2082
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
2075
2083
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2076
2084
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2077
2085
|
} | undefined>]>>]>>;
|
|
@@ -2286,14 +2294,14 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2286
2294
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2287
2295
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2288
2296
|
} | undefined>]>>]>>;
|
|
2289
|
-
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").
|
|
2290
|
-
$gt: import("@feathersjs/typebox").
|
|
2291
|
-
$gte: import("@feathersjs/typebox").
|
|
2292
|
-
$lt: import("@feathersjs/typebox").
|
|
2293
|
-
$lte: import("@feathersjs/typebox").
|
|
2294
|
-
$ne: import("@feathersjs/typebox").
|
|
2295
|
-
$in: import("@feathersjs/typebox").
|
|
2296
|
-
$nin: import("@feathersjs/typebox").
|
|
2297
|
+
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2298
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
2299
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
2300
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
2301
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
2302
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
2303
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
|
|
2304
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
|
|
2297
2305
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2298
2306
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2299
2307
|
} | undefined>]>>]>>;
|
|
@@ -2332,14 +2340,14 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2332
2340
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2333
2341
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2334
2342
|
} | undefined>]>>]>>;
|
|
2335
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
2336
|
-
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
2337
|
-
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
2338
|
-
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
2339
|
-
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
2340
|
-
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
2341
|
-
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
2342
|
-
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
2343
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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<{
|
|
2344
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2345
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2346
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2347
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2348
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2349
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
2350
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
2343
2351
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2344
2352
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2345
2353
|
} | undefined>]>>]>>;
|
|
@@ -2554,14 +2562,14 @@ export declare const tradersQuerySchema: import("@feathersjs/typebox").TIntersec
|
|
|
2554
2562
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2555
2563
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2556
2564
|
} | undefined>]>>]>>;
|
|
2557
|
-
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").
|
|
2558
|
-
$gt: import("@feathersjs/typebox").
|
|
2559
|
-
$gte: import("@feathersjs/typebox").
|
|
2560
|
-
$lt: import("@feathersjs/typebox").
|
|
2561
|
-
$lte: import("@feathersjs/typebox").
|
|
2562
|
-
$ne: import("@feathersjs/typebox").
|
|
2563
|
-
$in: import("@feathersjs/typebox").
|
|
2564
|
-
$nin: import("@feathersjs/typebox").
|
|
2565
|
+
pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2566
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
2567
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
2568
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
2569
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
2570
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
|
|
2571
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
|
|
2572
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
|
|
2565
2573
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2566
2574
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2567
2575
|
} | undefined>]>>]>>;
|
|
@@ -2611,11 +2619,11 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2611
2619
|
$nin: "docker" | "docker"[];
|
|
2612
2620
|
} & {}> | undefined;
|
|
2613
2621
|
_id?: string | {} | Partial<{
|
|
2614
|
-
$gt
|
|
2615
|
-
$gte
|
|
2616
|
-
$lt
|
|
2617
|
-
$lte
|
|
2618
|
-
$ne
|
|
2622
|
+
$gt?: string | {} | undefined;
|
|
2623
|
+
$gte?: string | {} | undefined;
|
|
2624
|
+
$lt?: string | {} | undefined;
|
|
2625
|
+
$lte?: string | {} | undefined;
|
|
2626
|
+
$ne?: string | {} | undefined;
|
|
2619
2627
|
$in: string | {} | (string | {})[];
|
|
2620
2628
|
$nin: string | {} | (string | {})[];
|
|
2621
2629
|
} & {}> | undefined;
|
|
@@ -2784,14 +2792,14 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2784
2792
|
CORS_origins: string[];
|
|
2785
2793
|
}[];
|
|
2786
2794
|
} & {}> | undefined;
|
|
2787
|
-
pod?:
|
|
2788
|
-
$gt
|
|
2789
|
-
$gte
|
|
2790
|
-
$lt
|
|
2791
|
-
$lte
|
|
2792
|
-
$ne
|
|
2793
|
-
$in:
|
|
2794
|
-
$nin:
|
|
2795
|
+
pod?: {} | Partial<{
|
|
2796
|
+
$gt?: {} | undefined;
|
|
2797
|
+
$gte?: {} | undefined;
|
|
2798
|
+
$lt?: {} | undefined;
|
|
2799
|
+
$lte?: {} | undefined;
|
|
2800
|
+
$ne?: {} | undefined;
|
|
2801
|
+
$in: {} | {}[];
|
|
2802
|
+
$nin: {} | {}[];
|
|
2795
2803
|
} & {}> | undefined;
|
|
2796
2804
|
} | {
|
|
2797
2805
|
$or: {
|
|
@@ -2815,11 +2823,11 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2815
2823
|
$nin: "docker" | "docker"[];
|
|
2816
2824
|
} & {}> | undefined;
|
|
2817
2825
|
_id?: string | {} | Partial<{
|
|
2818
|
-
$gt
|
|
2819
|
-
$gte
|
|
2820
|
-
$lt
|
|
2821
|
-
$lte
|
|
2822
|
-
$ne
|
|
2826
|
+
$gt?: string | {} | undefined;
|
|
2827
|
+
$gte?: string | {} | undefined;
|
|
2828
|
+
$lt?: string | {} | undefined;
|
|
2829
|
+
$lte?: string | {} | undefined;
|
|
2830
|
+
$ne?: string | {} | undefined;
|
|
2823
2831
|
$in: string | {} | (string | {})[];
|
|
2824
2832
|
$nin: string | {} | (string | {})[];
|
|
2825
2833
|
} & {}> | undefined;
|
|
@@ -2988,14 +2996,14 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
2988
2996
|
CORS_origins: string[];
|
|
2989
2997
|
}[];
|
|
2990
2998
|
} & {}> | undefined;
|
|
2991
|
-
pod?:
|
|
2992
|
-
$gt
|
|
2993
|
-
$gte
|
|
2994
|
-
$lt
|
|
2995
|
-
$lte
|
|
2996
|
-
$ne
|
|
2997
|
-
$in:
|
|
2998
|
-
$nin:
|
|
2999
|
+
pod?: {} | Partial<{
|
|
3000
|
+
$gt?: {} | undefined;
|
|
3001
|
+
$gte?: {} | undefined;
|
|
3002
|
+
$lt?: {} | undefined;
|
|
3003
|
+
$lte?: {} | undefined;
|
|
3004
|
+
$ne?: {} | undefined;
|
|
3005
|
+
$in: {} | {}[];
|
|
3006
|
+
$nin: {} | {}[];
|
|
2999
3007
|
} & {}> | undefined;
|
|
3000
3008
|
}[];
|
|
3001
3009
|
})[];
|
|
@@ -3020,11 +3028,11 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
3020
3028
|
$nin: "docker" | "docker"[];
|
|
3021
3029
|
} & {}> | undefined;
|
|
3022
3030
|
_id?: string | {} | Partial<{
|
|
3023
|
-
$gt
|
|
3024
|
-
$gte
|
|
3025
|
-
$lt
|
|
3026
|
-
$lte
|
|
3027
|
-
$ne
|
|
3031
|
+
$gt?: string | {} | undefined;
|
|
3032
|
+
$gte?: string | {} | undefined;
|
|
3033
|
+
$lt?: string | {} | undefined;
|
|
3034
|
+
$lte?: string | {} | undefined;
|
|
3035
|
+
$ne?: string | {} | undefined;
|
|
3028
3036
|
$in: string | {} | (string | {})[];
|
|
3029
3037
|
$nin: string | {} | (string | {})[];
|
|
3030
3038
|
} & {}> | undefined;
|
|
@@ -3193,14 +3201,14 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
3193
3201
|
CORS_origins: string[];
|
|
3194
3202
|
}[];
|
|
3195
3203
|
} & {}> | undefined;
|
|
3196
|
-
pod?:
|
|
3197
|
-
$gt
|
|
3198
|
-
$gte
|
|
3199
|
-
$lt
|
|
3200
|
-
$lte
|
|
3201
|
-
$ne
|
|
3202
|
-
$in:
|
|
3203
|
-
$nin:
|
|
3204
|
+
pod?: {} | Partial<{
|
|
3205
|
+
$gt?: {} | undefined;
|
|
3206
|
+
$gte?: {} | undefined;
|
|
3207
|
+
$lt?: {} | undefined;
|
|
3208
|
+
$lte?: {} | undefined;
|
|
3209
|
+
$ne?: {} | undefined;
|
|
3210
|
+
$in: {} | {}[];
|
|
3211
|
+
$nin: {} | {}[];
|
|
3204
3212
|
} & {}> | undefined;
|
|
3205
3213
|
}[];
|
|
3206
3214
|
}> & {
|
|
@@ -3224,11 +3232,11 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
3224
3232
|
$nin: "docker" | "docker"[];
|
|
3225
3233
|
} & {}> | undefined;
|
|
3226
3234
|
_id?: string | {} | Partial<{
|
|
3227
|
-
$gt
|
|
3228
|
-
$gte
|
|
3229
|
-
$lt
|
|
3230
|
-
$lte
|
|
3231
|
-
$ne
|
|
3235
|
+
$gt?: string | {} | undefined;
|
|
3236
|
+
$gte?: string | {} | undefined;
|
|
3237
|
+
$lt?: string | {} | undefined;
|
|
3238
|
+
$lte?: string | {} | undefined;
|
|
3239
|
+
$ne?: string | {} | undefined;
|
|
3232
3240
|
$in: string | {} | (string | {})[];
|
|
3233
3241
|
$nin: string | {} | (string | {})[];
|
|
3234
3242
|
} & {}> | undefined;
|
|
@@ -3397,13 +3405,13 @@ export declare const tradersQueryResolver: import("@feathersjs/schema").Resolver
|
|
|
3397
3405
|
CORS_origins: string[];
|
|
3398
3406
|
}[];
|
|
3399
3407
|
} & {}> | undefined;
|
|
3400
|
-
pod?:
|
|
3401
|
-
$gt
|
|
3402
|
-
$gte
|
|
3403
|
-
$lt
|
|
3404
|
-
$lte
|
|
3405
|
-
$ne
|
|
3406
|
-
$in:
|
|
3407
|
-
$nin:
|
|
3408
|
+
pod?: {} | Partial<{
|
|
3409
|
+
$gt?: {} | undefined;
|
|
3410
|
+
$gte?: {} | undefined;
|
|
3411
|
+
$lt?: {} | undefined;
|
|
3412
|
+
$lte?: {} | undefined;
|
|
3413
|
+
$ne?: {} | undefined;
|
|
3414
|
+
$in: {} | {}[];
|
|
3415
|
+
$nin: {} | {}[];
|
|
3408
3416
|
} & {}> | undefined;
|
|
3409
3417
|
} & {}, HookContext<TradersService<import("./traders.class").TradersParams>>>;
|
|
@@ -4,6 +4,7 @@ import { userPath } from './users.shared';
|
|
|
4
4
|
export * from './users.class';
|
|
5
5
|
export * from './users.schema';
|
|
6
6
|
export declare const user: (app: Application) => void;
|
|
7
|
+
export declare const hooks: any;
|
|
7
8
|
declare module '../../declarations' {
|
|
8
9
|
interface ServiceTypes {
|
|
9
10
|
[userPath]: UserService;
|