@cryptorobot.ai/client 0.0.32 → 0.0.34

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.
Files changed (40) hide show
  1. package/lib/app.d.ts +1 -0
  2. package/lib/client.d.ts +2 -0
  3. package/lib/client.js +7 -5
  4. package/lib/configuration.d.ts +12 -1
  5. package/lib/helpers/app.helper.d.ts +1 -0
  6. package/lib/helpers/ccxt.helper.d.ts +2 -0
  7. package/lib/helpers/deployments.helper.d.ts +1 -1
  8. package/lib/helpers/funnel.helper.d.ts +2 -0
  9. package/lib/helpers/push-notification.helper.d.ts +1 -0
  10. package/lib/hooks/application/setup-ccxt-load-marketplaces-mocked.d.ts +3 -0
  11. package/lib/hooks/application/setup-fs.d.ts +3 -0
  12. package/lib/hooks/revenuecat-is-subscription-active.d.ts +2 -0
  13. package/lib/services/auth-management/auth-management.shared.js +1 -12
  14. package/lib/services/config/config.class.d.ts +1 -1
  15. package/lib/services/exchanges/balance/balance.class.d.ts +1 -1
  16. package/lib/services/exchanges/balance/balance.schema.d.ts +32 -24
  17. package/lib/services/exchanges/download/download.schema.d.ts +32 -24
  18. package/lib/services/exchanges/exchanges.d.ts +1 -0
  19. package/lib/services/exchanges/exchanges.schema.d.ts +85 -77
  20. package/lib/services/exchanges/ticker/ticker.schema.d.ts +32 -24
  21. package/lib/services/index.d.ts +1 -1
  22. package/lib/services/messages/messages.schema.d.ts +40 -24
  23. package/lib/services/strategies/backtest/backtest.d.ts +1 -0
  24. package/lib/services/strategies/backtest/backtest.schema.d.ts +133 -197
  25. package/lib/services/strategies/indicators/indicators.schema.d.ts +61 -61
  26. package/lib/services/strategies/strategies.d.ts +1 -0
  27. package/lib/services/strategies/strategies.schema.d.ts +32 -16
  28. package/lib/services/strategies/templates/templates.schema.d.ts +9 -1
  29. package/lib/services/stripe/webhooks/webhooks.class.d.ts +26 -0
  30. package/lib/services/stripe/webhooks/webhooks.d.ts +9 -0
  31. package/lib/services/stripe/webhooks/webhooks.shared.d.ts +13 -0
  32. package/lib/services/stripe/webhooks/webhooks.shared.js +13 -0
  33. package/lib/services/traders/pods/api/api.schema.d.ts +112 -72
  34. package/lib/services/traders/pods/pods.schema.d.ts +88 -56
  35. package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +217 -3
  36. package/lib/services/traders/traders.schema.d.ts +141 -133
  37. package/lib/services/users/users.d.ts +1 -0
  38. package/lib/services/users/users.helper.d.ts +1 -1
  39. package/lib/services/users/users.schema.d.ts +196 -80
  40. 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").TString<string>;
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").TString<string>;
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").TString<string>;
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").TString<string>;
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<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[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<{}>]> | import("@feathersjs/typebox").TArray<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<{}>]> | import("@feathersjs/typebox").TArray<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").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1753
- $gt: import("@feathersjs/typebox").TString<string>;
1754
- $gte: import("@feathersjs/typebox").TString<string>;
1755
- $lt: import("@feathersjs/typebox").TString<string>;
1756
- $lte: import("@feathersjs/typebox").TString<string>;
1757
- $ne: import("@feathersjs/typebox").TString<string>;
1758
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1759
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
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<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[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<{}>]> | import("@feathersjs/typebox").TArray<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<{}>]> | import("@feathersjs/typebox").TArray<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").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
2021
- $gt: import("@feathersjs/typebox").TString<string>;
2022
- $gte: import("@feathersjs/typebox").TString<string>;
2023
- $lt: import("@feathersjs/typebox").TString<string>;
2024
- $lte: import("@feathersjs/typebox").TString<string>;
2025
- $ne: import("@feathersjs/typebox").TString<string>;
2026
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
2027
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
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<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[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<{}>]> | import("@feathersjs/typebox").TArray<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<{}>]> | import("@feathersjs/typebox").TArray<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").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
2290
- $gt: import("@feathersjs/typebox").TString<string>;
2291
- $gte: import("@feathersjs/typebox").TString<string>;
2292
- $lt: import("@feathersjs/typebox").TString<string>;
2293
- $lte: import("@feathersjs/typebox").TString<string>;
2294
- $ne: import("@feathersjs/typebox").TString<string>;
2295
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
2296
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
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<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[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<{}>]> | import("@feathersjs/typebox").TArray<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<{}>]> | import("@feathersjs/typebox").TArray<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").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
2558
- $gt: import("@feathersjs/typebox").TString<string>;
2559
- $gte: import("@feathersjs/typebox").TString<string>;
2560
- $lt: import("@feathersjs/typebox").TString<string>;
2561
- $lte: import("@feathersjs/typebox").TString<string>;
2562
- $ne: import("@feathersjs/typebox").TString<string>;
2563
- $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
2564
- $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
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: string | {};
2615
- $gte: string | {};
2616
- $lt: string | {};
2617
- $lte: string | {};
2618
- $ne: string | {};
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?: string | Partial<{
2788
- $gt: string;
2789
- $gte: string;
2790
- $lt: string;
2791
- $lte: string;
2792
- $ne: string;
2793
- $in: string | string[];
2794
- $nin: string | string[];
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: string | {};
2819
- $gte: string | {};
2820
- $lt: string | {};
2821
- $lte: string | {};
2822
- $ne: string | {};
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?: string | Partial<{
2992
- $gt: string;
2993
- $gte: string;
2994
- $lt: string;
2995
- $lte: string;
2996
- $ne: string;
2997
- $in: string | string[];
2998
- $nin: string | string[];
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: string | {};
3024
- $gte: string | {};
3025
- $lt: string | {};
3026
- $lte: string | {};
3027
- $ne: string | {};
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?: string | Partial<{
3197
- $gt: string;
3198
- $gte: string;
3199
- $lt: string;
3200
- $lte: string;
3201
- $ne: string;
3202
- $in: string | string[];
3203
- $nin: string | string[];
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: string | {};
3228
- $gte: string | {};
3229
- $lt: string | {};
3230
- $lte: string | {};
3231
- $ne: string | {};
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?: string | Partial<{
3401
- $gt: string;
3402
- $gte: string;
3403
- $lt: string;
3404
- $lte: string;
3405
- $ne: string;
3406
- $in: string | string[];
3407
- $nin: string | string[];
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;
@@ -1,5 +1,5 @@
1
- import { UserData } from './users.class';
2
1
  import { HookContext } from '@feathersjs/feathers';
2
+ import { UserData } from './users.class';
3
3
  export declare class UserHelper {
4
4
  user: any;
5
5
  constructor();