@cryptorobot.ai/client 0.0.39 → 0.0.40

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 (81) hide show
  1. package/lib/src/client.js +29 -2
  2. package/lib/src/services/agents/agents.class.d.ts +11 -0
  3. package/lib/src/services/agents/agents.d.ts +11 -0
  4. package/lib/src/services/agents/agents.schema.d.ts +2371 -0
  5. package/lib/src/services/agents/agents.shared.d.ts +13 -0
  6. package/lib/src/services/agents/agents.shared.js +13 -0
  7. package/lib/src/services/agents/prepare/prepare.class.d.ts +18 -0
  8. package/lib/src/services/agents/prepare/prepare.d.ts +11 -0
  9. package/lib/src/services/agents/prepare/prepare.schema.d.ts +285 -0
  10. package/lib/src/services/agents/prepare/prepare.shared.d.ts +13 -0
  11. package/lib/src/services/agents/prepare/prepare.shared.js +13 -0
  12. package/lib/src/services/agents/sessions/conversations/conversations.class.d.ts +11 -0
  13. package/lib/src/services/agents/sessions/conversations/conversations.d.ts +11 -0
  14. package/lib/src/services/agents/sessions/conversations/conversations.schema.d.ts +2561 -0
  15. package/lib/src/services/agents/sessions/conversations/conversations.shared.d.ts +13 -0
  16. package/lib/src/services/agents/sessions/conversations/conversations.shared.js +13 -0
  17. package/lib/src/services/agents/sessions/sessions.class.d.ts +11 -0
  18. package/lib/src/services/agents/sessions/sessions.d.ts +11 -0
  19. package/lib/src/services/agents/sessions/sessions.schema.d.ts +803 -0
  20. package/lib/src/services/agents/sessions/sessions.shared.d.ts +13 -0
  21. package/lib/src/services/agents/sessions/sessions.shared.js +13 -0
  22. package/lib/src/services/events/events.class.d.ts +11 -0
  23. package/lib/src/services/events/events.d.ts +11 -0
  24. package/lib/src/services/events/events.schema.d.ts +786 -0
  25. package/lib/src/services/events/events.shared.d.ts +13 -0
  26. package/lib/src/services/events/events.shared.js +13 -0
  27. package/lib/src/services/events/triggers/triggers.class.d.ts +11 -0
  28. package/lib/src/services/events/triggers/triggers.d.ts +11 -0
  29. package/lib/src/services/events/triggers/triggers.schema.d.ts +1582 -0
  30. package/lib/src/services/events/triggers/triggers.shared.d.ts +13 -0
  31. package/lib/src/services/events/triggers/triggers.shared.js +13 -0
  32. package/lib/src/services/events/types/types.class.d.ts +11 -0
  33. package/lib/src/services/events/types/types.d.ts +11 -0
  34. package/lib/src/services/events/types/types.schema.d.ts +688 -0
  35. package/lib/src/services/events/types/types.shared.d.ts +13 -0
  36. package/lib/src/services/events/types/types.shared.js +13 -0
  37. package/lib/src/services/exchanges/download/download.shared.d.ts +1 -1
  38. package/lib/src/services/exchanges/download/download.shared.js +1 -1
  39. package/lib/src/services/extensions/extensions.class.d.ts +11 -0
  40. package/lib/src/services/extensions/extensions.d.ts +11 -0
  41. package/lib/src/services/extensions/extensions.schema.d.ts +1275 -0
  42. package/lib/src/services/extensions/extensions.shared.d.ts +13 -0
  43. package/lib/src/services/extensions/extensions.shared.js +13 -0
  44. package/lib/src/services/keys/KeysService.d.ts +13 -0
  45. package/lib/src/services/keys/keys.class.d.ts +11 -0
  46. package/lib/src/services/keys/keys.d.ts +11 -0
  47. package/lib/src/services/keys/keys.schema.d.ts +719 -0
  48. package/lib/src/services/keys/keys.shared.d.ts +14 -0
  49. package/lib/src/services/keys/keys.shared.js +13 -0
  50. package/lib/src/services/messages/messages.schema.d.ts +4 -4
  51. package/lib/src/services/restricted/restricted.class.d.ts +26 -0
  52. package/lib/src/services/restricted/restricted.d.ts +21 -0
  53. package/lib/src/services/restricted/restricted.shared.d.ts +13 -0
  54. package/lib/src/services/restricted/restricted.shared.js +13 -0
  55. package/lib/src/services/strategies/backtest/results/results.schema.d.ts +28 -28
  56. package/lib/src/services/strategies/generate/generate.class.d.ts +11 -0
  57. package/lib/src/services/strategies/generate/generate.d.ts +11 -0
  58. package/lib/src/services/strategies/generate/generate.schema.d.ts +429 -0
  59. package/lib/src/services/strategies/generate/generate.shared.d.ts +13 -0
  60. package/lib/src/services/strategies/generate/generate.shared.js +13 -0
  61. package/lib/src/services/strategies/hyperopt/hyperopt.schema.d.ts +12 -4
  62. package/lib/src/services/strategies/indicators/indicators.schema.d.ts +177 -97
  63. package/lib/src/services/strategies/indicators/talib/talib.schema.d.ts +4 -4
  64. package/lib/src/services/strategies/strategies.schema.d.ts +2708 -303
  65. package/lib/src/services/strategies/templates/templates.schema.d.ts +2142 -12
  66. package/lib/src/services/tools/openapi/openapi.class.d.ts +34 -0
  67. package/lib/src/services/tools/openapi/openapi.d.ts +10 -0
  68. package/lib/src/services/tools/openapi/openapi.shared.d.ts +13 -0
  69. package/lib/src/services/tools/openapi/openapi.shared.js +13 -0
  70. package/lib/src/services/tools/tools.class.d.ts +11 -0
  71. package/lib/src/services/tools/tools.d.ts +11 -0
  72. package/lib/src/services/tools/tools.schema.d.ts +269 -0
  73. package/lib/src/services/tools/tools.shared.d.ts +13 -0
  74. package/lib/src/services/tools/tools.shared.js +13 -0
  75. package/lib/src/services/traders/pods/api/api.schema.d.ts +1284 -188
  76. package/lib/src/services/traders/pods/events/events.schema.d.ts +4 -4
  77. package/lib/src/services/traders/pods/pods.schema.d.ts +1280 -184
  78. package/lib/src/services/traders/traders.schema.d.ts +4 -4
  79. package/lib/src/services/users/users.class.d.ts +2 -2
  80. package/lib/src/services/users/users.schema.d.ts +4 -4
  81. package/package.json +1 -1
@@ -0,0 +1,688 @@
1
+ import type { Static } from '@feathersjs/typebox';
2
+ import type { HookContext } from '../../../declarations';
3
+ import type { EventsTypesService } from './types.class';
4
+ export declare const feathersEventTypes: readonly ["created", "updated", "patched", "removed"];
5
+ export declare const eventsTypesSchema: import("@feathersjs/typebox").TObject<{
6
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
7
+ event: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
8
+ service: import("@feathersjs/typebox").TString<string>;
9
+ enabled: import("@feathersjs/typebox").TBoolean;
10
+ example: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
11
+ createdAt: import("@feathersjs/typebox").TString<"date-time">;
12
+ updatedAt: import("@feathersjs/typebox").TString<"date-time">;
13
+ }>;
14
+ export type EventsTypes = Static<typeof eventsTypesSchema>;
15
+ export declare const eventsTypesValidator: import("@feathersjs/schema").Validator<any, any>;
16
+ export declare const eventsTypesResolver: import("@feathersjs/schema").Resolver<{
17
+ example?: {} | undefined;
18
+ enabled: boolean;
19
+ service: string;
20
+ _id: string | {};
21
+ createdAt: string;
22
+ updatedAt: string;
23
+ event: "created" | "updated" | "patched" | "removed";
24
+ }, HookContext<EventsTypesService<import("./types.class").EventsTypesParams>>>;
25
+ export declare const eventsTypesExternalResolver: import("@feathersjs/schema").Resolver<{
26
+ example?: {} | undefined;
27
+ enabled: boolean;
28
+ service: string;
29
+ _id: string | {};
30
+ createdAt: string;
31
+ updatedAt: string;
32
+ event: "created" | "updated" | "patched" | "removed";
33
+ }, HookContext<EventsTypesService<import("./types.class").EventsTypesParams>>>;
34
+ export declare const eventsTypesDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
35
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
36
+ event: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
37
+ service: import("@feathersjs/typebox").TString<string>;
38
+ enabled: import("@feathersjs/typebox").TBoolean;
39
+ example: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
40
+ createdAt: import("@feathersjs/typebox").TString<"date-time">;
41
+ updatedAt: import("@feathersjs/typebox").TString<"date-time">;
42
+ }>, ["event", "service", "enabled", "example"]>;
43
+ export type EventsTypesData = Static<typeof eventsTypesDataSchema>;
44
+ export declare const eventsTypesDataValidator: import("@feathersjs/schema").Validator<any, any>;
45
+ export declare const eventsTypesDataResolver: import("@feathersjs/schema").Resolver<{
46
+ example?: {} | undefined;
47
+ enabled: boolean;
48
+ service: string;
49
+ _id: string | {};
50
+ createdAt: string;
51
+ updatedAt: string;
52
+ event: "created" | "updated" | "patched" | "removed";
53
+ }, HookContext<EventsTypesService<import("./types.class").EventsTypesParams>>>;
54
+ export declare const eventsTypesPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
55
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
56
+ event: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
57
+ service: import("@feathersjs/typebox").TString<string>;
58
+ enabled: import("@feathersjs/typebox").TBoolean;
59
+ example: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
60
+ createdAt: import("@feathersjs/typebox").TString<"date-time">;
61
+ updatedAt: import("@feathersjs/typebox").TString<"date-time">;
62
+ }>, ["event", "service", "enabled", "example"]>>;
63
+ export type EventsTypesPatch = Static<typeof eventsTypesPatchSchema>;
64
+ export declare const eventsTypesPatchValidator: import("@feathersjs/schema").Validator<any, any>;
65
+ export declare const eventsTypesPatchResolver: import("@feathersjs/schema").Resolver<{
66
+ example?: {} | undefined;
67
+ enabled: boolean;
68
+ service: string;
69
+ _id: string | {};
70
+ createdAt: string;
71
+ updatedAt: string;
72
+ event: "created" | "updated" | "patched" | "removed";
73
+ }, HookContext<EventsTypesService<import("./types.class").EventsTypesParams>>>;
74
+ export declare const eventsTypesQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
75
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
76
+ event: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
77
+ service: import("@feathersjs/typebox").TString<string>;
78
+ enabled: import("@feathersjs/typebox").TBoolean;
79
+ example: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
80
+ createdAt: import("@feathersjs/typebox").TString<"date-time">;
81
+ updatedAt: import("@feathersjs/typebox").TString<"date-time">;
82
+ }>, ["_id", "event", "service", "enabled", "example", "createdAt", "updatedAt"]>;
83
+ export declare const eventsTypesQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
84
+ $limit: import("@feathersjs/typebox").TNumber;
85
+ $skip: import("@feathersjs/typebox").TNumber;
86
+ $sort: import("@feathersjs/typebox").TObject<{
87
+ enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
88
+ service: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
89
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
90
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
91
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
92
+ event: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
93
+ example: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
94
+ }>;
95
+ $select: import("@feathersjs/typebox").TUnsafe<("enabled" | "service" | "_id" | "createdAt" | "updatedAt" | "event" | "example")[]>;
96
+ $and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
97
+ enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
98
+ $gt: import("@feathersjs/typebox").TBoolean;
99
+ $gte: import("@feathersjs/typebox").TBoolean;
100
+ $lt: import("@feathersjs/typebox").TBoolean;
101
+ $lte: import("@feathersjs/typebox").TBoolean;
102
+ $ne: import("@feathersjs/typebox").TBoolean;
103
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
104
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
105
+ }>, import("@feathersjs/typebox").TObject<{
106
+ [key: string]: import("@feathersjs/typebox").TSchema;
107
+ } | undefined>]>>]>>;
108
+ service: 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<{
109
+ $gt: import("@feathersjs/typebox").TString<string>;
110
+ $gte: import("@feathersjs/typebox").TString<string>;
111
+ $lt: import("@feathersjs/typebox").TString<string>;
112
+ $lte: import("@feathersjs/typebox").TString<string>;
113
+ $ne: import("@feathersjs/typebox").TString<string>;
114
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
115
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
116
+ }>, import("@feathersjs/typebox").TObject<{
117
+ [key: string]: import("@feathersjs/typebox").TSchema;
118
+ } | undefined>]>>]>>;
119
+ _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<{
120
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
121
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
122
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
123
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
124
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
125
+ $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<{}>]>>;
126
+ $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<{}>]>>;
127
+ }>, import("@feathersjs/typebox").TObject<{
128
+ [key: string]: import("@feathersjs/typebox").TSchema;
129
+ } | undefined>]>>]>>;
130
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
131
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
132
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
133
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
134
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
135
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
136
+ $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
137
+ $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
138
+ }>, import("@feathersjs/typebox").TObject<{
139
+ [key: string]: import("@feathersjs/typebox").TSchema;
140
+ } | undefined>]>>]>>;
141
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
142
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
143
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
144
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
145
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
146
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
147
+ $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
148
+ $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
149
+ }>, import("@feathersjs/typebox").TObject<{
150
+ [key: string]: import("@feathersjs/typebox").TSchema;
151
+ } | undefined>]>>]>>;
152
+ event: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
153
+ $gt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
154
+ $gte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
155
+ $lt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
156
+ $lte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
157
+ $ne: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
158
+ $in: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>>;
159
+ $nin: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>>;
160
+ }>, import("@feathersjs/typebox").TObject<{
161
+ [key: string]: import("@feathersjs/typebox").TSchema;
162
+ } | undefined>]>>]>>;
163
+ example: 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<{
164
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
165
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
166
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
167
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
168
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
169
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
170
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
171
+ }>, import("@feathersjs/typebox").TObject<{
172
+ [key: string]: import("@feathersjs/typebox").TSchema;
173
+ } | undefined>]>>]>>;
174
+ }>>, import("@feathersjs/typebox").TObject<{
175
+ $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
176
+ enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
177
+ $gt: import("@feathersjs/typebox").TBoolean;
178
+ $gte: import("@feathersjs/typebox").TBoolean;
179
+ $lt: import("@feathersjs/typebox").TBoolean;
180
+ $lte: import("@feathersjs/typebox").TBoolean;
181
+ $ne: import("@feathersjs/typebox").TBoolean;
182
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
183
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
184
+ }>, import("@feathersjs/typebox").TObject<{
185
+ [key: string]: import("@feathersjs/typebox").TSchema;
186
+ } | undefined>]>>]>>;
187
+ service: 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<{
188
+ $gt: import("@feathersjs/typebox").TString<string>;
189
+ $gte: import("@feathersjs/typebox").TString<string>;
190
+ $lt: import("@feathersjs/typebox").TString<string>;
191
+ $lte: import("@feathersjs/typebox").TString<string>;
192
+ $ne: import("@feathersjs/typebox").TString<string>;
193
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
194
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
195
+ }>, import("@feathersjs/typebox").TObject<{
196
+ [key: string]: import("@feathersjs/typebox").TSchema;
197
+ } | undefined>]>>]>>;
198
+ _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<{
199
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
200
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
201
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
202
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
203
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
204
+ $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<{}>]>>;
205
+ $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<{}>]>>;
206
+ }>, import("@feathersjs/typebox").TObject<{
207
+ [key: string]: import("@feathersjs/typebox").TSchema;
208
+ } | undefined>]>>]>>;
209
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
210
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
211
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
212
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
213
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
214
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
215
+ $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
216
+ $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
217
+ }>, import("@feathersjs/typebox").TObject<{
218
+ [key: string]: import("@feathersjs/typebox").TSchema;
219
+ } | undefined>]>>]>>;
220
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
221
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
222
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
223
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
224
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
225
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
226
+ $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
227
+ $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
228
+ }>, import("@feathersjs/typebox").TObject<{
229
+ [key: string]: import("@feathersjs/typebox").TSchema;
230
+ } | undefined>]>>]>>;
231
+ event: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
232
+ $gt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
233
+ $gte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
234
+ $lt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
235
+ $lte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
236
+ $ne: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
237
+ $in: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>>;
238
+ $nin: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>>;
239
+ }>, import("@feathersjs/typebox").TObject<{
240
+ [key: string]: import("@feathersjs/typebox").TSchema;
241
+ } | undefined>]>>]>>;
242
+ example: 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<{
243
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
244
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
245
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
246
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
247
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
248
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
249
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
250
+ }>, import("@feathersjs/typebox").TObject<{
251
+ [key: string]: import("@feathersjs/typebox").TSchema;
252
+ } | undefined>]>>]>>;
253
+ }>>>;
254
+ }>]>>;
255
+ $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
256
+ enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
257
+ $gt: import("@feathersjs/typebox").TBoolean;
258
+ $gte: import("@feathersjs/typebox").TBoolean;
259
+ $lt: import("@feathersjs/typebox").TBoolean;
260
+ $lte: import("@feathersjs/typebox").TBoolean;
261
+ $ne: import("@feathersjs/typebox").TBoolean;
262
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
263
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
264
+ }>, import("@feathersjs/typebox").TObject<{
265
+ [key: string]: import("@feathersjs/typebox").TSchema;
266
+ } | undefined>]>>]>>;
267
+ service: 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<{
268
+ $gt: import("@feathersjs/typebox").TString<string>;
269
+ $gte: import("@feathersjs/typebox").TString<string>;
270
+ $lt: import("@feathersjs/typebox").TString<string>;
271
+ $lte: import("@feathersjs/typebox").TString<string>;
272
+ $ne: import("@feathersjs/typebox").TString<string>;
273
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
274
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
275
+ }>, import("@feathersjs/typebox").TObject<{
276
+ [key: string]: import("@feathersjs/typebox").TSchema;
277
+ } | undefined>]>>]>>;
278
+ _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<{
279
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
280
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
281
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
282
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
283
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
284
+ $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<{}>]>>;
285
+ $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<{}>]>>;
286
+ }>, import("@feathersjs/typebox").TObject<{
287
+ [key: string]: import("@feathersjs/typebox").TSchema;
288
+ } | undefined>]>>]>>;
289
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
290
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
291
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
292
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
293
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
294
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
295
+ $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
296
+ $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
297
+ }>, import("@feathersjs/typebox").TObject<{
298
+ [key: string]: import("@feathersjs/typebox").TSchema;
299
+ } | undefined>]>>]>>;
300
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
301
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
302
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
303
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
304
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
305
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
306
+ $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
307
+ $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
308
+ }>, import("@feathersjs/typebox").TObject<{
309
+ [key: string]: import("@feathersjs/typebox").TSchema;
310
+ } | undefined>]>>]>>;
311
+ event: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
312
+ $gt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
313
+ $gte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
314
+ $lt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
315
+ $lte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
316
+ $ne: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
317
+ $in: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>>;
318
+ $nin: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>>;
319
+ }>, import("@feathersjs/typebox").TObject<{
320
+ [key: string]: import("@feathersjs/typebox").TSchema;
321
+ } | undefined>]>>]>>;
322
+ example: 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<{
323
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
324
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
325
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
326
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
327
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
328
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
329
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
330
+ }>, import("@feathersjs/typebox").TObject<{
331
+ [key: string]: import("@feathersjs/typebox").TSchema;
332
+ } | undefined>]>>]>>;
333
+ }>>>;
334
+ }>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
335
+ enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TBoolean, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
336
+ $gt: import("@feathersjs/typebox").TBoolean;
337
+ $gte: import("@feathersjs/typebox").TBoolean;
338
+ $lt: import("@feathersjs/typebox").TBoolean;
339
+ $lte: import("@feathersjs/typebox").TBoolean;
340
+ $ne: import("@feathersjs/typebox").TBoolean;
341
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
342
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
343
+ }>, import("@feathersjs/typebox").TObject<{
344
+ [key: string]: import("@feathersjs/typebox").TSchema;
345
+ } | undefined>]>>]>>;
346
+ service: 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<{
347
+ $gt: import("@feathersjs/typebox").TString<string>;
348
+ $gte: import("@feathersjs/typebox").TString<string>;
349
+ $lt: import("@feathersjs/typebox").TString<string>;
350
+ $lte: import("@feathersjs/typebox").TString<string>;
351
+ $ne: import("@feathersjs/typebox").TString<string>;
352
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
353
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
354
+ }>, import("@feathersjs/typebox").TObject<{
355
+ [key: string]: import("@feathersjs/typebox").TSchema;
356
+ } | undefined>]>>]>>;
357
+ _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<{
358
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
359
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
360
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
361
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
362
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
363
+ $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<{}>]>>;
364
+ $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<{}>]>>;
365
+ }>, import("@feathersjs/typebox").TObject<{
366
+ [key: string]: import("@feathersjs/typebox").TSchema;
367
+ } | undefined>]>>]>>;
368
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
369
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
370
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
371
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
372
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
373
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
374
+ $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
375
+ $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
376
+ }>, import("@feathersjs/typebox").TObject<{
377
+ [key: string]: import("@feathersjs/typebox").TSchema;
378
+ } | undefined>]>>]>>;
379
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"date-time">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
380
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
381
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
382
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
383
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
384
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
385
+ $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
386
+ $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
387
+ }>, import("@feathersjs/typebox").TObject<{
388
+ [key: string]: import("@feathersjs/typebox").TSchema;
389
+ } | undefined>]>>]>>;
390
+ event: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
391
+ $gt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
392
+ $gte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
393
+ $lt: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
394
+ $lte: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
395
+ $ne: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>;
396
+ $in: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>>;
397
+ $nin: import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<import("@feathersjs/typebox").TLiteral<"created" | "updated" | "patched" | "removed">[]>>;
398
+ }>, import("@feathersjs/typebox").TObject<{
399
+ [key: string]: import("@feathersjs/typebox").TSchema;
400
+ } | undefined>]>>]>>;
401
+ example: 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<{
402
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
403
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
404
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
405
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
406
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
407
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
408
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>>;
409
+ }>, import("@feathersjs/typebox").TObject<{
410
+ [key: string]: import("@feathersjs/typebox").TSchema;
411
+ } | undefined>]>>]>>;
412
+ }>>]>, import("@feathersjs/typebox").TObject<{}>]>;
413
+ export type EventsTypesQuery = Static<typeof eventsTypesQuerySchema>;
414
+ export declare const eventsTypesQueryValidator: import("@feathersjs/schema").Validator<any, any>;
415
+ export declare const eventsTypesQueryResolver: import("@feathersjs/schema").Resolver<Partial<{
416
+ $limit: number;
417
+ $skip: number;
418
+ $sort: {
419
+ enabled?: number | undefined;
420
+ service?: number | undefined;
421
+ _id?: number | undefined;
422
+ createdAt?: number | undefined;
423
+ updatedAt?: number | undefined;
424
+ event?: number | undefined;
425
+ example?: number | undefined;
426
+ };
427
+ $select: ("enabled" | "service" | "_id" | "createdAt" | "updatedAt" | "event" | "example")[];
428
+ $and: ({
429
+ enabled?: boolean | Partial<{
430
+ $gt: boolean;
431
+ $gte: boolean;
432
+ $lt: boolean;
433
+ $lte: boolean;
434
+ $ne: boolean;
435
+ $in: boolean | boolean[];
436
+ $nin: boolean | boolean[];
437
+ } & {}> | undefined;
438
+ service?: string | Partial<{
439
+ $gt: string;
440
+ $gte: string;
441
+ $lt: string;
442
+ $lte: string;
443
+ $ne: string;
444
+ $in: string | string[];
445
+ $nin: string | string[];
446
+ } & {}> | undefined;
447
+ _id?: string | {} | Partial<{
448
+ $gt: string | {};
449
+ $gte: string | {};
450
+ $lt: string | {};
451
+ $lte: string | {};
452
+ $ne: string | {};
453
+ $in: string | {} | (string | {})[];
454
+ $nin: string | {} | (string | {})[];
455
+ } & {}> | undefined;
456
+ createdAt?: string | Partial<{
457
+ $gt: string;
458
+ $gte: string;
459
+ $lt: string;
460
+ $lte: string;
461
+ $ne: string;
462
+ $in: string | string[];
463
+ $nin: string | string[];
464
+ } & {}> | undefined;
465
+ updatedAt?: string | Partial<{
466
+ $gt: string;
467
+ $gte: string;
468
+ $lt: string;
469
+ $lte: string;
470
+ $ne: string;
471
+ $in: string | string[];
472
+ $nin: string | string[];
473
+ } & {}> | undefined;
474
+ event?: "created" | "updated" | "patched" | "removed" | Partial<{
475
+ $gt: "created" | "updated" | "patched" | "removed";
476
+ $gte: "created" | "updated" | "patched" | "removed";
477
+ $lt: "created" | "updated" | "patched" | "removed";
478
+ $lte: "created" | "updated" | "patched" | "removed";
479
+ $ne: "created" | "updated" | "patched" | "removed";
480
+ $in: "created" | "updated" | "patched" | "removed" | ("created" | "updated" | "patched" | "removed")[];
481
+ $nin: "created" | "updated" | "patched" | "removed" | ("created" | "updated" | "patched" | "removed")[];
482
+ } & {}> | undefined;
483
+ example?: {} | Partial<{
484
+ $gt?: {} | undefined;
485
+ $gte?: {} | undefined;
486
+ $lt?: {} | undefined;
487
+ $lte?: {} | undefined;
488
+ $ne?: {} | undefined;
489
+ $in: {} | {}[];
490
+ $nin: {} | {}[];
491
+ } & {}> | undefined;
492
+ } | {
493
+ $or: {
494
+ enabled?: boolean | Partial<{
495
+ $gt: boolean;
496
+ $gte: boolean;
497
+ $lt: boolean;
498
+ $lte: boolean;
499
+ $ne: boolean;
500
+ $in: boolean | boolean[];
501
+ $nin: boolean | boolean[];
502
+ } & {}> | undefined;
503
+ service?: string | Partial<{
504
+ $gt: string;
505
+ $gte: string;
506
+ $lt: string;
507
+ $lte: string;
508
+ $ne: string;
509
+ $in: string | string[];
510
+ $nin: string | string[];
511
+ } & {}> | undefined;
512
+ _id?: string | {} | Partial<{
513
+ $gt: string | {};
514
+ $gte: string | {};
515
+ $lt: string | {};
516
+ $lte: string | {};
517
+ $ne: string | {};
518
+ $in: string | {} | (string | {})[];
519
+ $nin: string | {} | (string | {})[];
520
+ } & {}> | undefined;
521
+ createdAt?: string | Partial<{
522
+ $gt: string;
523
+ $gte: string;
524
+ $lt: string;
525
+ $lte: string;
526
+ $ne: string;
527
+ $in: string | string[];
528
+ $nin: string | string[];
529
+ } & {}> | undefined;
530
+ updatedAt?: string | Partial<{
531
+ $gt: string;
532
+ $gte: string;
533
+ $lt: string;
534
+ $lte: string;
535
+ $ne: string;
536
+ $in: string | string[];
537
+ $nin: string | string[];
538
+ } & {}> | undefined;
539
+ event?: "created" | "updated" | "patched" | "removed" | Partial<{
540
+ $gt: "created" | "updated" | "patched" | "removed";
541
+ $gte: "created" | "updated" | "patched" | "removed";
542
+ $lt: "created" | "updated" | "patched" | "removed";
543
+ $lte: "created" | "updated" | "patched" | "removed";
544
+ $ne: "created" | "updated" | "patched" | "removed";
545
+ $in: "created" | "updated" | "patched" | "removed" | ("created" | "updated" | "patched" | "removed")[];
546
+ $nin: "created" | "updated" | "patched" | "removed" | ("created" | "updated" | "patched" | "removed")[];
547
+ } & {}> | undefined;
548
+ example?: {} | Partial<{
549
+ $gt?: {} | undefined;
550
+ $gte?: {} | undefined;
551
+ $lt?: {} | undefined;
552
+ $lte?: {} | undefined;
553
+ $ne?: {} | undefined;
554
+ $in: {} | {}[];
555
+ $nin: {} | {}[];
556
+ } & {}> | undefined;
557
+ }[];
558
+ })[];
559
+ $or: {
560
+ enabled?: boolean | Partial<{
561
+ $gt: boolean;
562
+ $gte: boolean;
563
+ $lt: boolean;
564
+ $lte: boolean;
565
+ $ne: boolean;
566
+ $in: boolean | boolean[];
567
+ $nin: boolean | boolean[];
568
+ } & {}> | undefined;
569
+ service?: string | Partial<{
570
+ $gt: string;
571
+ $gte: string;
572
+ $lt: string;
573
+ $lte: string;
574
+ $ne: string;
575
+ $in: string | string[];
576
+ $nin: string | string[];
577
+ } & {}> | undefined;
578
+ _id?: string | {} | Partial<{
579
+ $gt: string | {};
580
+ $gte: string | {};
581
+ $lt: string | {};
582
+ $lte: string | {};
583
+ $ne: string | {};
584
+ $in: string | {} | (string | {})[];
585
+ $nin: string | {} | (string | {})[];
586
+ } & {}> | undefined;
587
+ createdAt?: string | Partial<{
588
+ $gt: string;
589
+ $gte: string;
590
+ $lt: string;
591
+ $lte: string;
592
+ $ne: string;
593
+ $in: string | string[];
594
+ $nin: string | string[];
595
+ } & {}> | undefined;
596
+ updatedAt?: string | Partial<{
597
+ $gt: string;
598
+ $gte: string;
599
+ $lt: string;
600
+ $lte: string;
601
+ $ne: string;
602
+ $in: string | string[];
603
+ $nin: string | string[];
604
+ } & {}> | undefined;
605
+ event?: "created" | "updated" | "patched" | "removed" | Partial<{
606
+ $gt: "created" | "updated" | "patched" | "removed";
607
+ $gte: "created" | "updated" | "patched" | "removed";
608
+ $lt: "created" | "updated" | "patched" | "removed";
609
+ $lte: "created" | "updated" | "patched" | "removed";
610
+ $ne: "created" | "updated" | "patched" | "removed";
611
+ $in: "created" | "updated" | "patched" | "removed" | ("created" | "updated" | "patched" | "removed")[];
612
+ $nin: "created" | "updated" | "patched" | "removed" | ("created" | "updated" | "patched" | "removed")[];
613
+ } & {}> | undefined;
614
+ example?: {} | Partial<{
615
+ $gt?: {} | undefined;
616
+ $gte?: {} | undefined;
617
+ $lt?: {} | undefined;
618
+ $lte?: {} | undefined;
619
+ $ne?: {} | undefined;
620
+ $in: {} | {}[];
621
+ $nin: {} | {}[];
622
+ } & {}> | undefined;
623
+ }[];
624
+ }> & {
625
+ enabled?: boolean | Partial<{
626
+ $gt: boolean;
627
+ $gte: boolean;
628
+ $lt: boolean;
629
+ $lte: boolean;
630
+ $ne: boolean;
631
+ $in: boolean | boolean[];
632
+ $nin: boolean | boolean[];
633
+ } & {}> | undefined;
634
+ service?: string | Partial<{
635
+ $gt: string;
636
+ $gte: string;
637
+ $lt: string;
638
+ $lte: string;
639
+ $ne: string;
640
+ $in: string | string[];
641
+ $nin: string | string[];
642
+ } & {}> | undefined;
643
+ _id?: string | {} | Partial<{
644
+ $gt: string | {};
645
+ $gte: string | {};
646
+ $lt: string | {};
647
+ $lte: string | {};
648
+ $ne: string | {};
649
+ $in: string | {} | (string | {})[];
650
+ $nin: string | {} | (string | {})[];
651
+ } & {}> | undefined;
652
+ createdAt?: string | Partial<{
653
+ $gt: string;
654
+ $gte: string;
655
+ $lt: string;
656
+ $lte: string;
657
+ $ne: string;
658
+ $in: string | string[];
659
+ $nin: string | string[];
660
+ } & {}> | undefined;
661
+ updatedAt?: string | Partial<{
662
+ $gt: string;
663
+ $gte: string;
664
+ $lt: string;
665
+ $lte: string;
666
+ $ne: string;
667
+ $in: string | string[];
668
+ $nin: string | string[];
669
+ } & {}> | undefined;
670
+ event?: "created" | "updated" | "patched" | "removed" | Partial<{
671
+ $gt: "created" | "updated" | "patched" | "removed";
672
+ $gte: "created" | "updated" | "patched" | "removed";
673
+ $lt: "created" | "updated" | "patched" | "removed";
674
+ $lte: "created" | "updated" | "patched" | "removed";
675
+ $ne: "created" | "updated" | "patched" | "removed";
676
+ $in: "created" | "updated" | "patched" | "removed" | ("created" | "updated" | "patched" | "removed")[];
677
+ $nin: "created" | "updated" | "patched" | "removed" | ("created" | "updated" | "patched" | "removed")[];
678
+ } & {}> | undefined;
679
+ example?: {} | Partial<{
680
+ $gt?: {} | undefined;
681
+ $gte?: {} | undefined;
682
+ $lt?: {} | undefined;
683
+ $lte?: {} | undefined;
684
+ $ne?: {} | undefined;
685
+ $in: {} | {}[];
686
+ $nin: {} | {}[];
687
+ } & {}> | undefined;
688
+ } & {}, HookContext<EventsTypesService<import("./types.class").EventsTypesParams>>>;