@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,1582 @@
1
+ import type { Static } from '@feathersjs/typebox';
2
+ import type { HookContext } from '../../../declarations';
3
+ import type { EventsTriggersService } from './triggers.class';
4
+ export declare const triggerConditionSchema: import("@feathersjs/typebox").TObject<{
5
+ id: import("@feathersjs/typebox").TString<string>;
6
+ field: import("@feathersjs/typebox").TString<string>;
7
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
8
+ value: import("@feathersjs/typebox").TAny;
9
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
10
+ }>;
11
+ export declare const eventsTriggersSchema: import("@feathersjs/typebox").TObject<{
12
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
13
+ name: import("@feathersjs/typebox").TString<string>;
14
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
15
+ prompt: import("@feathersjs/typebox").TString<string>;
16
+ eventTypeId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
17
+ enabled: import("@feathersjs/typebox").TBoolean;
18
+ conditions: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
19
+ id: import("@feathersjs/typebox").TString<string>;
20
+ field: import("@feathersjs/typebox").TString<string>;
21
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
22
+ value: import("@feathersjs/typebox").TAny;
23
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
24
+ }>>;
25
+ eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
26
+ eventBridgeRuleArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
27
+ createdAt: import("@feathersjs/typebox").TString<"date-time">;
28
+ updatedAt: import("@feathersjs/typebox").TString<"date-time">;
29
+ }>;
30
+ export type EventsTriggers = Static<typeof eventsTriggersSchema>;
31
+ export declare const eventsTriggersValidator: import("@feathersjs/schema").Validator<any, any>;
32
+ export declare const eventsTriggersResolver: import("@feathersjs/schema").Resolver<{
33
+ description?: string | undefined;
34
+ eventBridgeRuleName?: string | undefined;
35
+ eventBridgeRuleArn?: string | undefined;
36
+ name: string;
37
+ enabled: boolean;
38
+ _id: string | {};
39
+ createdAt: string;
40
+ updatedAt: string;
41
+ conditions: {
42
+ type: "string" | "number" | "boolean" | "object" | "array";
43
+ value: any;
44
+ field: string;
45
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
46
+ id: string;
47
+ }[];
48
+ prompt: string;
49
+ eventTypeId: string | {};
50
+ }, HookContext<EventsTriggersService<import("./triggers.class").EventsTriggersParams>>>;
51
+ export declare const eventsTriggersExternalResolver: import("@feathersjs/schema").Resolver<{
52
+ description?: string | undefined;
53
+ eventBridgeRuleName?: string | undefined;
54
+ eventBridgeRuleArn?: string | undefined;
55
+ name: string;
56
+ enabled: boolean;
57
+ _id: string | {};
58
+ createdAt: string;
59
+ updatedAt: string;
60
+ conditions: {
61
+ type: "string" | "number" | "boolean" | "object" | "array";
62
+ value: any;
63
+ field: string;
64
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
65
+ id: string;
66
+ }[];
67
+ prompt: string;
68
+ eventTypeId: string | {};
69
+ }, HookContext<EventsTriggersService<import("./triggers.class").EventsTriggersParams>>>;
70
+ export declare const eventsTriggersDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
71
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
72
+ name: import("@feathersjs/typebox").TString<string>;
73
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
74
+ prompt: import("@feathersjs/typebox").TString<string>;
75
+ eventTypeId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
76
+ enabled: import("@feathersjs/typebox").TBoolean;
77
+ conditions: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
78
+ id: import("@feathersjs/typebox").TString<string>;
79
+ field: import("@feathersjs/typebox").TString<string>;
80
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
81
+ value: import("@feathersjs/typebox").TAny;
82
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
83
+ }>>;
84
+ eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
85
+ eventBridgeRuleArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
86
+ createdAt: import("@feathersjs/typebox").TString<"date-time">;
87
+ updatedAt: import("@feathersjs/typebox").TString<"date-time">;
88
+ }>, ["name", "description", "prompt", "eventTypeId", "enabled", "conditions"]>;
89
+ export type EventsTriggersData = Static<typeof eventsTriggersDataSchema>;
90
+ export declare const eventsTriggersDataValidator: import("@feathersjs/schema").Validator<any, any>;
91
+ export declare const eventsTriggersDataResolver: import("@feathersjs/schema").Resolver<{
92
+ description?: string | undefined;
93
+ eventBridgeRuleName?: string | undefined;
94
+ eventBridgeRuleArn?: string | undefined;
95
+ name: string;
96
+ enabled: boolean;
97
+ _id: string | {};
98
+ createdAt: string;
99
+ updatedAt: string;
100
+ conditions: {
101
+ type: "string" | "number" | "boolean" | "object" | "array";
102
+ value: any;
103
+ field: string;
104
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
105
+ id: string;
106
+ }[];
107
+ prompt: string;
108
+ eventTypeId: string | {};
109
+ }, HookContext<EventsTriggersService<import("./triggers.class").EventsTriggersParams>>>;
110
+ export declare const eventsTriggersPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
111
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
112
+ name: import("@feathersjs/typebox").TString<string>;
113
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
114
+ prompt: import("@feathersjs/typebox").TString<string>;
115
+ eventTypeId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
116
+ enabled: import("@feathersjs/typebox").TBoolean;
117
+ conditions: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
118
+ id: import("@feathersjs/typebox").TString<string>;
119
+ field: import("@feathersjs/typebox").TString<string>;
120
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
121
+ value: import("@feathersjs/typebox").TAny;
122
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
123
+ }>>;
124
+ eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
125
+ eventBridgeRuleArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
126
+ createdAt: import("@feathersjs/typebox").TString<"date-time">;
127
+ updatedAt: import("@feathersjs/typebox").TString<"date-time">;
128
+ }>, ["name", "description", "prompt", "eventTypeId", "enabled", "conditions", "eventBridgeRuleName", "eventBridgeRuleArn"]>>;
129
+ export type EventsTriggersPatch = Static<typeof eventsTriggersPatchSchema>;
130
+ export declare const eventsTriggersPatchValidator: import("@feathersjs/schema").Validator<any, any>;
131
+ export declare const eventsTriggersPatchResolver: import("@feathersjs/schema").Resolver<{
132
+ description?: string | undefined;
133
+ eventBridgeRuleName?: string | undefined;
134
+ eventBridgeRuleArn?: string | undefined;
135
+ name: string;
136
+ enabled: boolean;
137
+ _id: string | {};
138
+ createdAt: string;
139
+ updatedAt: string;
140
+ conditions: {
141
+ type: "string" | "number" | "boolean" | "object" | "array";
142
+ value: any;
143
+ field: string;
144
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
145
+ id: string;
146
+ }[];
147
+ prompt: string;
148
+ eventTypeId: string | {};
149
+ }, HookContext<EventsTriggersService<import("./triggers.class").EventsTriggersParams>>>;
150
+ export declare const eventsTriggersQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
151
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
152
+ name: import("@feathersjs/typebox").TString<string>;
153
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
154
+ prompt: import("@feathersjs/typebox").TString<string>;
155
+ eventTypeId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
156
+ enabled: import("@feathersjs/typebox").TBoolean;
157
+ conditions: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
158
+ id: import("@feathersjs/typebox").TString<string>;
159
+ field: import("@feathersjs/typebox").TString<string>;
160
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
161
+ value: import("@feathersjs/typebox").TAny;
162
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
163
+ }>>;
164
+ eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
165
+ eventBridgeRuleArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
166
+ createdAt: import("@feathersjs/typebox").TString<"date-time">;
167
+ updatedAt: import("@feathersjs/typebox").TString<"date-time">;
168
+ }>, ["_id", "name", "description", "prompt", "eventTypeId", "enabled", "conditions", "eventBridgeRuleName", "eventBridgeRuleArn", "createdAt", "updatedAt"]>;
169
+ export declare const eventsTriggersQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
170
+ $limit: import("@feathersjs/typebox").TNumber;
171
+ $skip: import("@feathersjs/typebox").TNumber;
172
+ $sort: import("@feathersjs/typebox").TObject<{
173
+ name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
174
+ enabled: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
175
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
176
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
177
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
178
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
179
+ conditions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
180
+ prompt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
181
+ eventTypeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
182
+ eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
183
+ eventBridgeRuleArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
184
+ }>;
185
+ $select: import("@feathersjs/typebox").TUnsafe<("name" | "enabled" | "_id" | "createdAt" | "updatedAt" | "description" | "conditions" | "prompt" | "eventTypeId" | "eventBridgeRuleName" | "eventBridgeRuleArn")[]>;
186
+ $and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
187
+ name: 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
+ 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<{
199
+ $gt: import("@feathersjs/typebox").TBoolean;
200
+ $gte: import("@feathersjs/typebox").TBoolean;
201
+ $lt: import("@feathersjs/typebox").TBoolean;
202
+ $lte: import("@feathersjs/typebox").TBoolean;
203
+ $ne: import("@feathersjs/typebox").TBoolean;
204
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
205
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
206
+ }>, import("@feathersjs/typebox").TObject<{
207
+ [key: string]: import("@feathersjs/typebox").TSchema;
208
+ } | undefined>]>>]>>;
209
+ _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<{
210
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
211
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
212
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
213
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
214
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
215
+ $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<{}>]>>;
216
+ $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<{}>]>>;
217
+ }>, import("@feathersjs/typebox").TObject<{
218
+ [key: string]: import("@feathersjs/typebox").TSchema;
219
+ } | undefined>]>>]>>;
220
+ 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<{
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
+ 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<{
232
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
233
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
234
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
235
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
236
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
237
+ $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
238
+ $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
239
+ }>, import("@feathersjs/typebox").TObject<{
240
+ [key: string]: import("@feathersjs/typebox").TSchema;
241
+ } | undefined>]>>]>>;
242
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
243
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
244
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
245
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
246
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
247
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
248
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
249
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
250
+ }>, import("@feathersjs/typebox").TObject<{
251
+ [key: string]: import("@feathersjs/typebox").TSchema;
252
+ } | undefined>]>>]>>;
253
+ conditions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
254
+ id: import("@feathersjs/typebox").TString<string>;
255
+ field: import("@feathersjs/typebox").TString<string>;
256
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
257
+ value: import("@feathersjs/typebox").TAny;
258
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
259
+ }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
260
+ $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
261
+ id: import("@feathersjs/typebox").TString<string>;
262
+ field: import("@feathersjs/typebox").TString<string>;
263
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
264
+ value: import("@feathersjs/typebox").TAny;
265
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
266
+ }>>;
267
+ $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
268
+ id: import("@feathersjs/typebox").TString<string>;
269
+ field: import("@feathersjs/typebox").TString<string>;
270
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
271
+ value: import("@feathersjs/typebox").TAny;
272
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
273
+ }>>;
274
+ $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
275
+ id: import("@feathersjs/typebox").TString<string>;
276
+ field: import("@feathersjs/typebox").TString<string>;
277
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
278
+ value: import("@feathersjs/typebox").TAny;
279
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
280
+ }>>;
281
+ $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
282
+ id: import("@feathersjs/typebox").TString<string>;
283
+ field: import("@feathersjs/typebox").TString<string>;
284
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
285
+ value: import("@feathersjs/typebox").TAny;
286
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
287
+ }>>;
288
+ $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
289
+ id: import("@feathersjs/typebox").TString<string>;
290
+ field: import("@feathersjs/typebox").TString<string>;
291
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
292
+ value: import("@feathersjs/typebox").TAny;
293
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
294
+ }>>;
295
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
296
+ id: import("@feathersjs/typebox").TString<string>;
297
+ field: import("@feathersjs/typebox").TString<string>;
298
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
299
+ value: import("@feathersjs/typebox").TAny;
300
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
301
+ }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
302
+ id: import("@feathersjs/typebox").TString<string>;
303
+ field: import("@feathersjs/typebox").TString<string>;
304
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
305
+ value: import("@feathersjs/typebox").TAny;
306
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
307
+ }>>>;
308
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
309
+ id: import("@feathersjs/typebox").TString<string>;
310
+ field: import("@feathersjs/typebox").TString<string>;
311
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
312
+ value: import("@feathersjs/typebox").TAny;
313
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
314
+ }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
315
+ id: import("@feathersjs/typebox").TString<string>;
316
+ field: import("@feathersjs/typebox").TString<string>;
317
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
318
+ value: import("@feathersjs/typebox").TAny;
319
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
320
+ }>>>;
321
+ }>, import("@feathersjs/typebox").TObject<{
322
+ [key: string]: import("@feathersjs/typebox").TSchema;
323
+ } | undefined>]>>]>>;
324
+ prompt: 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<{
325
+ $gt: import("@feathersjs/typebox").TString<string>;
326
+ $gte: import("@feathersjs/typebox").TString<string>;
327
+ $lt: import("@feathersjs/typebox").TString<string>;
328
+ $lte: import("@feathersjs/typebox").TString<string>;
329
+ $ne: import("@feathersjs/typebox").TString<string>;
330
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
331
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
332
+ }>, import("@feathersjs/typebox").TObject<{
333
+ [key: string]: import("@feathersjs/typebox").TSchema;
334
+ } | undefined>]>>]>>;
335
+ eventTypeId: 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<{
336
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
337
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
338
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
339
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
340
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
341
+ $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<{}>]>>;
342
+ $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<{}>]>>;
343
+ }>, import("@feathersjs/typebox").TObject<{
344
+ [key: string]: import("@feathersjs/typebox").TSchema;
345
+ } | undefined>]>>]>>;
346
+ eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
347
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
348
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
349
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
350
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
351
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
352
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
353
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
354
+ }>, import("@feathersjs/typebox").TObject<{
355
+ [key: string]: import("@feathersjs/typebox").TSchema;
356
+ } | undefined>]>>]>>;
357
+ eventBridgeRuleArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
358
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
359
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
360
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
361
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
362
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
363
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
364
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
365
+ }>, import("@feathersjs/typebox").TObject<{
366
+ [key: string]: import("@feathersjs/typebox").TSchema;
367
+ } | undefined>]>>]>>;
368
+ }>>, import("@feathersjs/typebox").TObject<{
369
+ $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
370
+ name: 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<{
371
+ $gt: import("@feathersjs/typebox").TString<string>;
372
+ $gte: import("@feathersjs/typebox").TString<string>;
373
+ $lt: import("@feathersjs/typebox").TString<string>;
374
+ $lte: import("@feathersjs/typebox").TString<string>;
375
+ $ne: import("@feathersjs/typebox").TString<string>;
376
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
377
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
378
+ }>, import("@feathersjs/typebox").TObject<{
379
+ [key: string]: import("@feathersjs/typebox").TSchema;
380
+ } | undefined>]>>]>>;
381
+ 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<{
382
+ $gt: import("@feathersjs/typebox").TBoolean;
383
+ $gte: import("@feathersjs/typebox").TBoolean;
384
+ $lt: import("@feathersjs/typebox").TBoolean;
385
+ $lte: import("@feathersjs/typebox").TBoolean;
386
+ $ne: import("@feathersjs/typebox").TBoolean;
387
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
388
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
389
+ }>, import("@feathersjs/typebox").TObject<{
390
+ [key: string]: import("@feathersjs/typebox").TSchema;
391
+ } | undefined>]>>]>>;
392
+ _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<{
393
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
394
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
395
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
396
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
397
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
398
+ $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<{}>]>>;
399
+ $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<{}>]>>;
400
+ }>, import("@feathersjs/typebox").TObject<{
401
+ [key: string]: import("@feathersjs/typebox").TSchema;
402
+ } | undefined>]>>]>>;
403
+ 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<{
404
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
405
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
406
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
407
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
408
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
409
+ $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
410
+ $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
411
+ }>, import("@feathersjs/typebox").TObject<{
412
+ [key: string]: import("@feathersjs/typebox").TSchema;
413
+ } | undefined>]>>]>>;
414
+ 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<{
415
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
416
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
417
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
418
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
419
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
420
+ $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
421
+ $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
422
+ }>, import("@feathersjs/typebox").TObject<{
423
+ [key: string]: import("@feathersjs/typebox").TSchema;
424
+ } | undefined>]>>]>>;
425
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
426
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
427
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
428
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
429
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
430
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
431
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
432
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
433
+ }>, import("@feathersjs/typebox").TObject<{
434
+ [key: string]: import("@feathersjs/typebox").TSchema;
435
+ } | undefined>]>>]>>;
436
+ conditions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
437
+ id: import("@feathersjs/typebox").TString<string>;
438
+ field: import("@feathersjs/typebox").TString<string>;
439
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
440
+ value: import("@feathersjs/typebox").TAny;
441
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
442
+ }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
443
+ $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
444
+ id: import("@feathersjs/typebox").TString<string>;
445
+ field: import("@feathersjs/typebox").TString<string>;
446
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
447
+ value: import("@feathersjs/typebox").TAny;
448
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
449
+ }>>;
450
+ $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
451
+ id: import("@feathersjs/typebox").TString<string>;
452
+ field: import("@feathersjs/typebox").TString<string>;
453
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
454
+ value: import("@feathersjs/typebox").TAny;
455
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
456
+ }>>;
457
+ $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
458
+ id: import("@feathersjs/typebox").TString<string>;
459
+ field: import("@feathersjs/typebox").TString<string>;
460
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
461
+ value: import("@feathersjs/typebox").TAny;
462
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
463
+ }>>;
464
+ $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
465
+ id: import("@feathersjs/typebox").TString<string>;
466
+ field: import("@feathersjs/typebox").TString<string>;
467
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
468
+ value: import("@feathersjs/typebox").TAny;
469
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
470
+ }>>;
471
+ $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
472
+ id: import("@feathersjs/typebox").TString<string>;
473
+ field: import("@feathersjs/typebox").TString<string>;
474
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
475
+ value: import("@feathersjs/typebox").TAny;
476
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
477
+ }>>;
478
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
479
+ id: import("@feathersjs/typebox").TString<string>;
480
+ field: import("@feathersjs/typebox").TString<string>;
481
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
482
+ value: import("@feathersjs/typebox").TAny;
483
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
484
+ }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
485
+ id: import("@feathersjs/typebox").TString<string>;
486
+ field: import("@feathersjs/typebox").TString<string>;
487
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
488
+ value: import("@feathersjs/typebox").TAny;
489
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
490
+ }>>>;
491
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
492
+ id: import("@feathersjs/typebox").TString<string>;
493
+ field: import("@feathersjs/typebox").TString<string>;
494
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
495
+ value: import("@feathersjs/typebox").TAny;
496
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
497
+ }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
498
+ id: import("@feathersjs/typebox").TString<string>;
499
+ field: import("@feathersjs/typebox").TString<string>;
500
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
501
+ value: import("@feathersjs/typebox").TAny;
502
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
503
+ }>>>;
504
+ }>, import("@feathersjs/typebox").TObject<{
505
+ [key: string]: import("@feathersjs/typebox").TSchema;
506
+ } | undefined>]>>]>>;
507
+ prompt: 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<{
508
+ $gt: import("@feathersjs/typebox").TString<string>;
509
+ $gte: import("@feathersjs/typebox").TString<string>;
510
+ $lt: import("@feathersjs/typebox").TString<string>;
511
+ $lte: import("@feathersjs/typebox").TString<string>;
512
+ $ne: import("@feathersjs/typebox").TString<string>;
513
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
514
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
515
+ }>, import("@feathersjs/typebox").TObject<{
516
+ [key: string]: import("@feathersjs/typebox").TSchema;
517
+ } | undefined>]>>]>>;
518
+ eventTypeId: 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<{
519
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
520
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
521
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
522
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
523
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
524
+ $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<{}>]>>;
525
+ $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<{}>]>>;
526
+ }>, import("@feathersjs/typebox").TObject<{
527
+ [key: string]: import("@feathersjs/typebox").TSchema;
528
+ } | undefined>]>>]>>;
529
+ eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
530
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
531
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
532
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
533
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
534
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
535
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
536
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
537
+ }>, import("@feathersjs/typebox").TObject<{
538
+ [key: string]: import("@feathersjs/typebox").TSchema;
539
+ } | undefined>]>>]>>;
540
+ eventBridgeRuleArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
541
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
542
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
543
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
544
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
545
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
546
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
547
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
548
+ }>, import("@feathersjs/typebox").TObject<{
549
+ [key: string]: import("@feathersjs/typebox").TSchema;
550
+ } | undefined>]>>]>>;
551
+ }>>>;
552
+ }>]>>;
553
+ $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
554
+ name: 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<{
555
+ $gt: import("@feathersjs/typebox").TString<string>;
556
+ $gte: import("@feathersjs/typebox").TString<string>;
557
+ $lt: import("@feathersjs/typebox").TString<string>;
558
+ $lte: import("@feathersjs/typebox").TString<string>;
559
+ $ne: import("@feathersjs/typebox").TString<string>;
560
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
561
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
562
+ }>, import("@feathersjs/typebox").TObject<{
563
+ [key: string]: import("@feathersjs/typebox").TSchema;
564
+ } | undefined>]>>]>>;
565
+ 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<{
566
+ $gt: import("@feathersjs/typebox").TBoolean;
567
+ $gte: import("@feathersjs/typebox").TBoolean;
568
+ $lt: import("@feathersjs/typebox").TBoolean;
569
+ $lte: import("@feathersjs/typebox").TBoolean;
570
+ $ne: import("@feathersjs/typebox").TBoolean;
571
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
572
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
573
+ }>, import("@feathersjs/typebox").TObject<{
574
+ [key: string]: import("@feathersjs/typebox").TSchema;
575
+ } | undefined>]>>]>>;
576
+ _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<{
577
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
578
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
579
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
580
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
581
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
582
+ $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<{}>]>>;
583
+ $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<{}>]>>;
584
+ }>, import("@feathersjs/typebox").TObject<{
585
+ [key: string]: import("@feathersjs/typebox").TSchema;
586
+ } | undefined>]>>]>>;
587
+ 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<{
588
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
589
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
590
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
591
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
592
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
593
+ $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
594
+ $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
595
+ }>, import("@feathersjs/typebox").TObject<{
596
+ [key: string]: import("@feathersjs/typebox").TSchema;
597
+ } | undefined>]>>]>>;
598
+ 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<{
599
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
600
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
601
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
602
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
603
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
604
+ $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
605
+ $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
606
+ }>, import("@feathersjs/typebox").TObject<{
607
+ [key: string]: import("@feathersjs/typebox").TSchema;
608
+ } | undefined>]>>]>>;
609
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
610
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
611
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
612
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
613
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
614
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
615
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
616
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
617
+ }>, import("@feathersjs/typebox").TObject<{
618
+ [key: string]: import("@feathersjs/typebox").TSchema;
619
+ } | undefined>]>>]>>;
620
+ conditions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
621
+ id: import("@feathersjs/typebox").TString<string>;
622
+ field: import("@feathersjs/typebox").TString<string>;
623
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
624
+ value: import("@feathersjs/typebox").TAny;
625
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
626
+ }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
627
+ $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
628
+ id: import("@feathersjs/typebox").TString<string>;
629
+ field: import("@feathersjs/typebox").TString<string>;
630
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
631
+ value: import("@feathersjs/typebox").TAny;
632
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
633
+ }>>;
634
+ $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
635
+ id: import("@feathersjs/typebox").TString<string>;
636
+ field: import("@feathersjs/typebox").TString<string>;
637
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
638
+ value: import("@feathersjs/typebox").TAny;
639
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
640
+ }>>;
641
+ $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
642
+ id: import("@feathersjs/typebox").TString<string>;
643
+ field: import("@feathersjs/typebox").TString<string>;
644
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
645
+ value: import("@feathersjs/typebox").TAny;
646
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
647
+ }>>;
648
+ $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
649
+ id: import("@feathersjs/typebox").TString<string>;
650
+ field: import("@feathersjs/typebox").TString<string>;
651
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
652
+ value: import("@feathersjs/typebox").TAny;
653
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
654
+ }>>;
655
+ $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
656
+ id: import("@feathersjs/typebox").TString<string>;
657
+ field: import("@feathersjs/typebox").TString<string>;
658
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
659
+ value: import("@feathersjs/typebox").TAny;
660
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
661
+ }>>;
662
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
663
+ id: import("@feathersjs/typebox").TString<string>;
664
+ field: import("@feathersjs/typebox").TString<string>;
665
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
666
+ value: import("@feathersjs/typebox").TAny;
667
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
668
+ }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
669
+ id: import("@feathersjs/typebox").TString<string>;
670
+ field: import("@feathersjs/typebox").TString<string>;
671
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
672
+ value: import("@feathersjs/typebox").TAny;
673
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
674
+ }>>>;
675
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
676
+ id: import("@feathersjs/typebox").TString<string>;
677
+ field: import("@feathersjs/typebox").TString<string>;
678
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
679
+ value: import("@feathersjs/typebox").TAny;
680
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
681
+ }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
682
+ id: import("@feathersjs/typebox").TString<string>;
683
+ field: import("@feathersjs/typebox").TString<string>;
684
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
685
+ value: import("@feathersjs/typebox").TAny;
686
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
687
+ }>>>;
688
+ }>, import("@feathersjs/typebox").TObject<{
689
+ [key: string]: import("@feathersjs/typebox").TSchema;
690
+ } | undefined>]>>]>>;
691
+ prompt: 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<{
692
+ $gt: import("@feathersjs/typebox").TString<string>;
693
+ $gte: import("@feathersjs/typebox").TString<string>;
694
+ $lt: import("@feathersjs/typebox").TString<string>;
695
+ $lte: import("@feathersjs/typebox").TString<string>;
696
+ $ne: import("@feathersjs/typebox").TString<string>;
697
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
698
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
699
+ }>, import("@feathersjs/typebox").TObject<{
700
+ [key: string]: import("@feathersjs/typebox").TSchema;
701
+ } | undefined>]>>]>>;
702
+ eventTypeId: 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<{
703
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
704
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
705
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
706
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
707
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
708
+ $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<{}>]>>;
709
+ $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<{}>]>>;
710
+ }>, import("@feathersjs/typebox").TObject<{
711
+ [key: string]: import("@feathersjs/typebox").TSchema;
712
+ } | undefined>]>>]>>;
713
+ eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
714
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
715
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
716
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
717
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
718
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
719
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
720
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
721
+ }>, import("@feathersjs/typebox").TObject<{
722
+ [key: string]: import("@feathersjs/typebox").TSchema;
723
+ } | undefined>]>>]>>;
724
+ eventBridgeRuleArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
725
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
726
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
727
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
728
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
729
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
730
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
731
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
732
+ }>, import("@feathersjs/typebox").TObject<{
733
+ [key: string]: import("@feathersjs/typebox").TSchema;
734
+ } | undefined>]>>]>>;
735
+ }>>>;
736
+ }>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
737
+ name: 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<{
738
+ $gt: import("@feathersjs/typebox").TString<string>;
739
+ $gte: import("@feathersjs/typebox").TString<string>;
740
+ $lt: import("@feathersjs/typebox").TString<string>;
741
+ $lte: import("@feathersjs/typebox").TString<string>;
742
+ $ne: import("@feathersjs/typebox").TString<string>;
743
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
744
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
745
+ }>, import("@feathersjs/typebox").TObject<{
746
+ [key: string]: import("@feathersjs/typebox").TSchema;
747
+ } | undefined>]>>]>>;
748
+ 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<{
749
+ $gt: import("@feathersjs/typebox").TBoolean;
750
+ $gte: import("@feathersjs/typebox").TBoolean;
751
+ $lt: import("@feathersjs/typebox").TBoolean;
752
+ $lte: import("@feathersjs/typebox").TBoolean;
753
+ $ne: import("@feathersjs/typebox").TBoolean;
754
+ $in: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
755
+ $nin: import("@feathersjs/typebox").TBoolean | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TBoolean>;
756
+ }>, import("@feathersjs/typebox").TObject<{
757
+ [key: string]: import("@feathersjs/typebox").TSchema;
758
+ } | undefined>]>>]>>;
759
+ _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<{
760
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
761
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
762
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
763
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
764
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
765
+ $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<{}>]>>;
766
+ $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<{}>]>>;
767
+ }>, import("@feathersjs/typebox").TObject<{
768
+ [key: string]: import("@feathersjs/typebox").TSchema;
769
+ } | undefined>]>>]>>;
770
+ 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<{
771
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
772
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
773
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
774
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
775
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
776
+ $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
777
+ $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
778
+ }>, import("@feathersjs/typebox").TObject<{
779
+ [key: string]: import("@feathersjs/typebox").TSchema;
780
+ } | undefined>]>>]>>;
781
+ 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<{
782
+ $gt: import("@feathersjs/typebox").TString<"date-time">;
783
+ $gte: import("@feathersjs/typebox").TString<"date-time">;
784
+ $lt: import("@feathersjs/typebox").TString<"date-time">;
785
+ $lte: import("@feathersjs/typebox").TString<"date-time">;
786
+ $ne: import("@feathersjs/typebox").TString<"date-time">;
787
+ $in: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
788
+ $nin: import("@feathersjs/typebox").TString<"date-time"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"date-time">>;
789
+ }>, import("@feathersjs/typebox").TObject<{
790
+ [key: string]: import("@feathersjs/typebox").TSchema;
791
+ } | undefined>]>>]>>;
792
+ description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
793
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
794
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
795
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
796
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
797
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
798
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
799
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
800
+ }>, import("@feathersjs/typebox").TObject<{
801
+ [key: string]: import("@feathersjs/typebox").TSchema;
802
+ } | undefined>]>>]>>;
803
+ conditions: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
804
+ id: import("@feathersjs/typebox").TString<string>;
805
+ field: import("@feathersjs/typebox").TString<string>;
806
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
807
+ value: import("@feathersjs/typebox").TAny;
808
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
809
+ }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
810
+ $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
811
+ id: import("@feathersjs/typebox").TString<string>;
812
+ field: import("@feathersjs/typebox").TString<string>;
813
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
814
+ value: import("@feathersjs/typebox").TAny;
815
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
816
+ }>>;
817
+ $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
818
+ id: import("@feathersjs/typebox").TString<string>;
819
+ field: import("@feathersjs/typebox").TString<string>;
820
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
821
+ value: import("@feathersjs/typebox").TAny;
822
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
823
+ }>>;
824
+ $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
825
+ id: import("@feathersjs/typebox").TString<string>;
826
+ field: import("@feathersjs/typebox").TString<string>;
827
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
828
+ value: import("@feathersjs/typebox").TAny;
829
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
830
+ }>>;
831
+ $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
832
+ id: import("@feathersjs/typebox").TString<string>;
833
+ field: import("@feathersjs/typebox").TString<string>;
834
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
835
+ value: import("@feathersjs/typebox").TAny;
836
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
837
+ }>>;
838
+ $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
839
+ id: import("@feathersjs/typebox").TString<string>;
840
+ field: import("@feathersjs/typebox").TString<string>;
841
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
842
+ value: import("@feathersjs/typebox").TAny;
843
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
844
+ }>>;
845
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
846
+ id: import("@feathersjs/typebox").TString<string>;
847
+ field: import("@feathersjs/typebox").TString<string>;
848
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
849
+ value: import("@feathersjs/typebox").TAny;
850
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
851
+ }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
852
+ id: import("@feathersjs/typebox").TString<string>;
853
+ field: import("@feathersjs/typebox").TString<string>;
854
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
855
+ value: import("@feathersjs/typebox").TAny;
856
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
857
+ }>>>;
858
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
859
+ id: import("@feathersjs/typebox").TString<string>;
860
+ field: import("@feathersjs/typebox").TString<string>;
861
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
862
+ value: import("@feathersjs/typebox").TAny;
863
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
864
+ }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
865
+ id: import("@feathersjs/typebox").TString<string>;
866
+ field: import("@feathersjs/typebox").TString<string>;
867
+ operator: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"equals">, import("@feathersjs/typebox").TLiteral<"not_equals">, import("@feathersjs/typebox").TLiteral<"greater_than">, import("@feathersjs/typebox").TLiteral<"less_than">, import("@feathersjs/typebox").TLiteral<"greater_than_or_equal">, import("@feathersjs/typebox").TLiteral<"less_than_or_equal">, import("@feathersjs/typebox").TLiteral<"contains">, import("@feathersjs/typebox").TLiteral<"not_contains">, import("@feathersjs/typebox").TLiteral<"exists">, import("@feathersjs/typebox").TLiteral<"not_exists">, import("@feathersjs/typebox").TLiteral<"in">, import("@feathersjs/typebox").TLiteral<"not_in">]>;
868
+ value: import("@feathersjs/typebox").TAny;
869
+ type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"string">, import("@feathersjs/typebox").TLiteral<"number">, import("@feathersjs/typebox").TLiteral<"boolean">, import("@feathersjs/typebox").TLiteral<"array">, import("@feathersjs/typebox").TLiteral<"object">]>;
870
+ }>>>;
871
+ }>, import("@feathersjs/typebox").TObject<{
872
+ [key: string]: import("@feathersjs/typebox").TSchema;
873
+ } | undefined>]>>]>>;
874
+ prompt: 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<{
875
+ $gt: import("@feathersjs/typebox").TString<string>;
876
+ $gte: import("@feathersjs/typebox").TString<string>;
877
+ $lt: import("@feathersjs/typebox").TString<string>;
878
+ $lte: import("@feathersjs/typebox").TString<string>;
879
+ $ne: import("@feathersjs/typebox").TString<string>;
880
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
881
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
882
+ }>, import("@feathersjs/typebox").TObject<{
883
+ [key: string]: import("@feathersjs/typebox").TSchema;
884
+ } | undefined>]>>]>>;
885
+ eventTypeId: 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<{
886
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
887
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
888
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
889
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
890
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
891
+ $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<{}>]>>;
892
+ $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<{}>]>>;
893
+ }>, import("@feathersjs/typebox").TObject<{
894
+ [key: string]: import("@feathersjs/typebox").TSchema;
895
+ } | undefined>]>>]>>;
896
+ eventBridgeRuleName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
897
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
898
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
899
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
900
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
901
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
902
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
903
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
904
+ }>, import("@feathersjs/typebox").TObject<{
905
+ [key: string]: import("@feathersjs/typebox").TSchema;
906
+ } | undefined>]>>]>>;
907
+ eventBridgeRuleArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
908
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
909
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
910
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
911
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
912
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
913
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
914
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
915
+ }>, import("@feathersjs/typebox").TObject<{
916
+ [key: string]: import("@feathersjs/typebox").TSchema;
917
+ } | undefined>]>>]>>;
918
+ }>>]>, import("@feathersjs/typebox").TObject<{}>]>;
919
+ export type EventsTriggersQuery = Static<typeof eventsTriggersQuerySchema>;
920
+ export declare const eventsTriggersQueryValidator: import("@feathersjs/schema").Validator<any, any>;
921
+ export declare const eventsTriggersQueryResolver: import("@feathersjs/schema").Resolver<Partial<{
922
+ $limit: number;
923
+ $skip: number;
924
+ $sort: {
925
+ name?: number | undefined;
926
+ enabled?: number | undefined;
927
+ _id?: number | undefined;
928
+ createdAt?: number | undefined;
929
+ updatedAt?: number | undefined;
930
+ description?: number | undefined;
931
+ conditions?: number | undefined;
932
+ prompt?: number | undefined;
933
+ eventTypeId?: number | undefined;
934
+ eventBridgeRuleName?: number | undefined;
935
+ eventBridgeRuleArn?: number | undefined;
936
+ };
937
+ $select: ("name" | "enabled" | "_id" | "createdAt" | "updatedAt" | "description" | "conditions" | "prompt" | "eventTypeId" | "eventBridgeRuleName" | "eventBridgeRuleArn")[];
938
+ $and: ({
939
+ name?: string | Partial<{
940
+ $gt: string;
941
+ $gte: string;
942
+ $lt: string;
943
+ $lte: string;
944
+ $ne: string;
945
+ $in: string | string[];
946
+ $nin: string | string[];
947
+ } & {}> | undefined;
948
+ enabled?: boolean | Partial<{
949
+ $gt: boolean;
950
+ $gte: boolean;
951
+ $lt: boolean;
952
+ $lte: boolean;
953
+ $ne: boolean;
954
+ $in: boolean | boolean[];
955
+ $nin: boolean | boolean[];
956
+ } & {}> | undefined;
957
+ _id?: string | {} | Partial<{
958
+ $gt: string | {};
959
+ $gte: string | {};
960
+ $lt: string | {};
961
+ $lte: string | {};
962
+ $ne: string | {};
963
+ $in: string | {} | (string | {})[];
964
+ $nin: string | {} | (string | {})[];
965
+ } & {}> | undefined;
966
+ createdAt?: string | Partial<{
967
+ $gt: string;
968
+ $gte: string;
969
+ $lt: string;
970
+ $lte: string;
971
+ $ne: string;
972
+ $in: string | string[];
973
+ $nin: string | string[];
974
+ } & {}> | undefined;
975
+ updatedAt?: string | Partial<{
976
+ $gt: string;
977
+ $gte: string;
978
+ $lt: string;
979
+ $lte: string;
980
+ $ne: string;
981
+ $in: string | string[];
982
+ $nin: string | string[];
983
+ } & {}> | undefined;
984
+ description?: string | Partial<{
985
+ $gt?: string | undefined;
986
+ $gte?: string | undefined;
987
+ $lt?: string | undefined;
988
+ $lte?: string | undefined;
989
+ $ne?: string | undefined;
990
+ $in: string | string[];
991
+ $nin: string | string[];
992
+ } & {}> | undefined;
993
+ conditions?: {
994
+ type: "string" | "number" | "boolean" | "object" | "array";
995
+ value: any;
996
+ field: string;
997
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
998
+ id: string;
999
+ }[] | Partial<{
1000
+ $gt: {
1001
+ type: "string" | "number" | "boolean" | "object" | "array";
1002
+ value: any;
1003
+ field: string;
1004
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1005
+ id: string;
1006
+ }[];
1007
+ $gte: {
1008
+ type: "string" | "number" | "boolean" | "object" | "array";
1009
+ value: any;
1010
+ field: string;
1011
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1012
+ id: string;
1013
+ }[];
1014
+ $lt: {
1015
+ type: "string" | "number" | "boolean" | "object" | "array";
1016
+ value: any;
1017
+ field: string;
1018
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1019
+ id: string;
1020
+ }[];
1021
+ $lte: {
1022
+ type: "string" | "number" | "boolean" | "object" | "array";
1023
+ value: any;
1024
+ field: string;
1025
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1026
+ id: string;
1027
+ }[];
1028
+ $ne: {
1029
+ type: "string" | "number" | "boolean" | "object" | "array";
1030
+ value: any;
1031
+ field: string;
1032
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1033
+ id: string;
1034
+ }[];
1035
+ $in: {
1036
+ type: "string" | "number" | "boolean" | "object" | "array";
1037
+ value: any;
1038
+ field: string;
1039
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1040
+ id: string;
1041
+ }[] | {
1042
+ type: "string" | "number" | "boolean" | "object" | "array";
1043
+ value: any;
1044
+ field: string;
1045
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1046
+ id: string;
1047
+ }[][];
1048
+ $nin: {
1049
+ type: "string" | "number" | "boolean" | "object" | "array";
1050
+ value: any;
1051
+ field: string;
1052
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1053
+ id: string;
1054
+ }[] | {
1055
+ type: "string" | "number" | "boolean" | "object" | "array";
1056
+ value: any;
1057
+ field: string;
1058
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1059
+ id: string;
1060
+ }[][];
1061
+ } & {}> | undefined;
1062
+ prompt?: string | Partial<{
1063
+ $gt: string;
1064
+ $gte: string;
1065
+ $lt: string;
1066
+ $lte: string;
1067
+ $ne: string;
1068
+ $in: string | string[];
1069
+ $nin: string | string[];
1070
+ } & {}> | undefined;
1071
+ eventTypeId?: string | {} | Partial<{
1072
+ $gt: string | {};
1073
+ $gte: string | {};
1074
+ $lt: string | {};
1075
+ $lte: string | {};
1076
+ $ne: string | {};
1077
+ $in: string | {} | (string | {})[];
1078
+ $nin: string | {} | (string | {})[];
1079
+ } & {}> | undefined;
1080
+ eventBridgeRuleName?: string | Partial<{
1081
+ $gt?: string | undefined;
1082
+ $gte?: string | undefined;
1083
+ $lt?: string | undefined;
1084
+ $lte?: string | undefined;
1085
+ $ne?: string | undefined;
1086
+ $in: string | string[];
1087
+ $nin: string | string[];
1088
+ } & {}> | undefined;
1089
+ eventBridgeRuleArn?: string | Partial<{
1090
+ $gt?: string | undefined;
1091
+ $gte?: string | undefined;
1092
+ $lt?: string | undefined;
1093
+ $lte?: string | undefined;
1094
+ $ne?: string | undefined;
1095
+ $in: string | string[];
1096
+ $nin: string | string[];
1097
+ } & {}> | undefined;
1098
+ } | {
1099
+ $or: {
1100
+ name?: string | Partial<{
1101
+ $gt: string;
1102
+ $gte: string;
1103
+ $lt: string;
1104
+ $lte: string;
1105
+ $ne: string;
1106
+ $in: string | string[];
1107
+ $nin: string | string[];
1108
+ } & {}> | undefined;
1109
+ enabled?: boolean | Partial<{
1110
+ $gt: boolean;
1111
+ $gte: boolean;
1112
+ $lt: boolean;
1113
+ $lte: boolean;
1114
+ $ne: boolean;
1115
+ $in: boolean | boolean[];
1116
+ $nin: boolean | boolean[];
1117
+ } & {}> | undefined;
1118
+ _id?: string | {} | Partial<{
1119
+ $gt: string | {};
1120
+ $gte: string | {};
1121
+ $lt: string | {};
1122
+ $lte: string | {};
1123
+ $ne: string | {};
1124
+ $in: string | {} | (string | {})[];
1125
+ $nin: string | {} | (string | {})[];
1126
+ } & {}> | undefined;
1127
+ createdAt?: string | Partial<{
1128
+ $gt: string;
1129
+ $gte: string;
1130
+ $lt: string;
1131
+ $lte: string;
1132
+ $ne: string;
1133
+ $in: string | string[];
1134
+ $nin: string | string[];
1135
+ } & {}> | undefined;
1136
+ updatedAt?: string | Partial<{
1137
+ $gt: string;
1138
+ $gte: string;
1139
+ $lt: string;
1140
+ $lte: string;
1141
+ $ne: string;
1142
+ $in: string | string[];
1143
+ $nin: string | string[];
1144
+ } & {}> | undefined;
1145
+ description?: string | Partial<{
1146
+ $gt?: string | undefined;
1147
+ $gte?: string | undefined;
1148
+ $lt?: string | undefined;
1149
+ $lte?: string | undefined;
1150
+ $ne?: string | undefined;
1151
+ $in: string | string[];
1152
+ $nin: string | string[];
1153
+ } & {}> | undefined;
1154
+ conditions?: {
1155
+ type: "string" | "number" | "boolean" | "object" | "array";
1156
+ value: any;
1157
+ field: string;
1158
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1159
+ id: string;
1160
+ }[] | Partial<{
1161
+ $gt: {
1162
+ type: "string" | "number" | "boolean" | "object" | "array";
1163
+ value: any;
1164
+ field: string;
1165
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1166
+ id: string;
1167
+ }[];
1168
+ $gte: {
1169
+ type: "string" | "number" | "boolean" | "object" | "array";
1170
+ value: any;
1171
+ field: string;
1172
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1173
+ id: string;
1174
+ }[];
1175
+ $lt: {
1176
+ type: "string" | "number" | "boolean" | "object" | "array";
1177
+ value: any;
1178
+ field: string;
1179
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1180
+ id: string;
1181
+ }[];
1182
+ $lte: {
1183
+ type: "string" | "number" | "boolean" | "object" | "array";
1184
+ value: any;
1185
+ field: string;
1186
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1187
+ id: string;
1188
+ }[];
1189
+ $ne: {
1190
+ type: "string" | "number" | "boolean" | "object" | "array";
1191
+ value: any;
1192
+ field: string;
1193
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1194
+ id: string;
1195
+ }[];
1196
+ $in: {
1197
+ type: "string" | "number" | "boolean" | "object" | "array";
1198
+ value: any;
1199
+ field: string;
1200
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1201
+ id: string;
1202
+ }[] | {
1203
+ type: "string" | "number" | "boolean" | "object" | "array";
1204
+ value: any;
1205
+ field: string;
1206
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1207
+ id: string;
1208
+ }[][];
1209
+ $nin: {
1210
+ type: "string" | "number" | "boolean" | "object" | "array";
1211
+ value: any;
1212
+ field: string;
1213
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1214
+ id: string;
1215
+ }[] | {
1216
+ type: "string" | "number" | "boolean" | "object" | "array";
1217
+ value: any;
1218
+ field: string;
1219
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1220
+ id: string;
1221
+ }[][];
1222
+ } & {}> | undefined;
1223
+ prompt?: string | Partial<{
1224
+ $gt: string;
1225
+ $gte: string;
1226
+ $lt: string;
1227
+ $lte: string;
1228
+ $ne: string;
1229
+ $in: string | string[];
1230
+ $nin: string | string[];
1231
+ } & {}> | undefined;
1232
+ eventTypeId?: string | {} | Partial<{
1233
+ $gt: string | {};
1234
+ $gte: string | {};
1235
+ $lt: string | {};
1236
+ $lte: string | {};
1237
+ $ne: string | {};
1238
+ $in: string | {} | (string | {})[];
1239
+ $nin: string | {} | (string | {})[];
1240
+ } & {}> | undefined;
1241
+ eventBridgeRuleName?: string | Partial<{
1242
+ $gt?: string | undefined;
1243
+ $gte?: string | undefined;
1244
+ $lt?: string | undefined;
1245
+ $lte?: string | undefined;
1246
+ $ne?: string | undefined;
1247
+ $in: string | string[];
1248
+ $nin: string | string[];
1249
+ } & {}> | undefined;
1250
+ eventBridgeRuleArn?: string | Partial<{
1251
+ $gt?: string | undefined;
1252
+ $gte?: string | undefined;
1253
+ $lt?: string | undefined;
1254
+ $lte?: string | undefined;
1255
+ $ne?: string | undefined;
1256
+ $in: string | string[];
1257
+ $nin: string | string[];
1258
+ } & {}> | undefined;
1259
+ }[];
1260
+ })[];
1261
+ $or: {
1262
+ name?: string | Partial<{
1263
+ $gt: string;
1264
+ $gte: string;
1265
+ $lt: string;
1266
+ $lte: string;
1267
+ $ne: string;
1268
+ $in: string | string[];
1269
+ $nin: string | string[];
1270
+ } & {}> | undefined;
1271
+ enabled?: boolean | Partial<{
1272
+ $gt: boolean;
1273
+ $gte: boolean;
1274
+ $lt: boolean;
1275
+ $lte: boolean;
1276
+ $ne: boolean;
1277
+ $in: boolean | boolean[];
1278
+ $nin: boolean | boolean[];
1279
+ } & {}> | undefined;
1280
+ _id?: string | {} | Partial<{
1281
+ $gt: string | {};
1282
+ $gte: string | {};
1283
+ $lt: string | {};
1284
+ $lte: string | {};
1285
+ $ne: string | {};
1286
+ $in: string | {} | (string | {})[];
1287
+ $nin: string | {} | (string | {})[];
1288
+ } & {}> | undefined;
1289
+ createdAt?: string | Partial<{
1290
+ $gt: string;
1291
+ $gte: string;
1292
+ $lt: string;
1293
+ $lte: string;
1294
+ $ne: string;
1295
+ $in: string | string[];
1296
+ $nin: string | string[];
1297
+ } & {}> | undefined;
1298
+ updatedAt?: string | Partial<{
1299
+ $gt: string;
1300
+ $gte: string;
1301
+ $lt: string;
1302
+ $lte: string;
1303
+ $ne: string;
1304
+ $in: string | string[];
1305
+ $nin: string | string[];
1306
+ } & {}> | undefined;
1307
+ description?: string | Partial<{
1308
+ $gt?: string | undefined;
1309
+ $gte?: string | undefined;
1310
+ $lt?: string | undefined;
1311
+ $lte?: string | undefined;
1312
+ $ne?: string | undefined;
1313
+ $in: string | string[];
1314
+ $nin: string | string[];
1315
+ } & {}> | undefined;
1316
+ conditions?: {
1317
+ type: "string" | "number" | "boolean" | "object" | "array";
1318
+ value: any;
1319
+ field: string;
1320
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1321
+ id: string;
1322
+ }[] | Partial<{
1323
+ $gt: {
1324
+ type: "string" | "number" | "boolean" | "object" | "array";
1325
+ value: any;
1326
+ field: string;
1327
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1328
+ id: string;
1329
+ }[];
1330
+ $gte: {
1331
+ type: "string" | "number" | "boolean" | "object" | "array";
1332
+ value: any;
1333
+ field: string;
1334
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1335
+ id: string;
1336
+ }[];
1337
+ $lt: {
1338
+ type: "string" | "number" | "boolean" | "object" | "array";
1339
+ value: any;
1340
+ field: string;
1341
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1342
+ id: string;
1343
+ }[];
1344
+ $lte: {
1345
+ type: "string" | "number" | "boolean" | "object" | "array";
1346
+ value: any;
1347
+ field: string;
1348
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1349
+ id: string;
1350
+ }[];
1351
+ $ne: {
1352
+ type: "string" | "number" | "boolean" | "object" | "array";
1353
+ value: any;
1354
+ field: string;
1355
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1356
+ id: string;
1357
+ }[];
1358
+ $in: {
1359
+ type: "string" | "number" | "boolean" | "object" | "array";
1360
+ value: any;
1361
+ field: string;
1362
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1363
+ id: string;
1364
+ }[] | {
1365
+ type: "string" | "number" | "boolean" | "object" | "array";
1366
+ value: any;
1367
+ field: string;
1368
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1369
+ id: string;
1370
+ }[][];
1371
+ $nin: {
1372
+ type: "string" | "number" | "boolean" | "object" | "array";
1373
+ value: any;
1374
+ field: string;
1375
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1376
+ id: string;
1377
+ }[] | {
1378
+ type: "string" | "number" | "boolean" | "object" | "array";
1379
+ value: any;
1380
+ field: string;
1381
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1382
+ id: string;
1383
+ }[][];
1384
+ } & {}> | undefined;
1385
+ prompt?: string | Partial<{
1386
+ $gt: string;
1387
+ $gte: string;
1388
+ $lt: string;
1389
+ $lte: string;
1390
+ $ne: string;
1391
+ $in: string | string[];
1392
+ $nin: string | string[];
1393
+ } & {}> | undefined;
1394
+ eventTypeId?: string | {} | Partial<{
1395
+ $gt: string | {};
1396
+ $gte: string | {};
1397
+ $lt: string | {};
1398
+ $lte: string | {};
1399
+ $ne: string | {};
1400
+ $in: string | {} | (string | {})[];
1401
+ $nin: string | {} | (string | {})[];
1402
+ } & {}> | undefined;
1403
+ eventBridgeRuleName?: string | Partial<{
1404
+ $gt?: string | undefined;
1405
+ $gte?: string | undefined;
1406
+ $lt?: string | undefined;
1407
+ $lte?: string | undefined;
1408
+ $ne?: string | undefined;
1409
+ $in: string | string[];
1410
+ $nin: string | string[];
1411
+ } & {}> | undefined;
1412
+ eventBridgeRuleArn?: string | Partial<{
1413
+ $gt?: string | undefined;
1414
+ $gte?: string | undefined;
1415
+ $lt?: string | undefined;
1416
+ $lte?: string | undefined;
1417
+ $ne?: string | undefined;
1418
+ $in: string | string[];
1419
+ $nin: string | string[];
1420
+ } & {}> | undefined;
1421
+ }[];
1422
+ }> & {
1423
+ name?: string | Partial<{
1424
+ $gt: string;
1425
+ $gte: string;
1426
+ $lt: string;
1427
+ $lte: string;
1428
+ $ne: string;
1429
+ $in: string | string[];
1430
+ $nin: string | string[];
1431
+ } & {}> | undefined;
1432
+ enabled?: boolean | Partial<{
1433
+ $gt: boolean;
1434
+ $gte: boolean;
1435
+ $lt: boolean;
1436
+ $lte: boolean;
1437
+ $ne: boolean;
1438
+ $in: boolean | boolean[];
1439
+ $nin: boolean | boolean[];
1440
+ } & {}> | undefined;
1441
+ _id?: string | {} | Partial<{
1442
+ $gt: string | {};
1443
+ $gte: string | {};
1444
+ $lt: string | {};
1445
+ $lte: string | {};
1446
+ $ne: string | {};
1447
+ $in: string | {} | (string | {})[];
1448
+ $nin: string | {} | (string | {})[];
1449
+ } & {}> | undefined;
1450
+ createdAt?: string | Partial<{
1451
+ $gt: string;
1452
+ $gte: string;
1453
+ $lt: string;
1454
+ $lte: string;
1455
+ $ne: string;
1456
+ $in: string | string[];
1457
+ $nin: string | string[];
1458
+ } & {}> | undefined;
1459
+ updatedAt?: string | Partial<{
1460
+ $gt: string;
1461
+ $gte: string;
1462
+ $lt: string;
1463
+ $lte: string;
1464
+ $ne: string;
1465
+ $in: string | string[];
1466
+ $nin: string | string[];
1467
+ } & {}> | undefined;
1468
+ description?: string | Partial<{
1469
+ $gt?: string | undefined;
1470
+ $gte?: string | undefined;
1471
+ $lt?: string | undefined;
1472
+ $lte?: string | undefined;
1473
+ $ne?: string | undefined;
1474
+ $in: string | string[];
1475
+ $nin: string | string[];
1476
+ } & {}> | undefined;
1477
+ conditions?: {
1478
+ type: "string" | "number" | "boolean" | "object" | "array";
1479
+ value: any;
1480
+ field: string;
1481
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1482
+ id: string;
1483
+ }[] | Partial<{
1484
+ $gt: {
1485
+ type: "string" | "number" | "boolean" | "object" | "array";
1486
+ value: any;
1487
+ field: string;
1488
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1489
+ id: string;
1490
+ }[];
1491
+ $gte: {
1492
+ type: "string" | "number" | "boolean" | "object" | "array";
1493
+ value: any;
1494
+ field: string;
1495
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1496
+ id: string;
1497
+ }[];
1498
+ $lt: {
1499
+ type: "string" | "number" | "boolean" | "object" | "array";
1500
+ value: any;
1501
+ field: string;
1502
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1503
+ id: string;
1504
+ }[];
1505
+ $lte: {
1506
+ type: "string" | "number" | "boolean" | "object" | "array";
1507
+ value: any;
1508
+ field: string;
1509
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1510
+ id: string;
1511
+ }[];
1512
+ $ne: {
1513
+ type: "string" | "number" | "boolean" | "object" | "array";
1514
+ value: any;
1515
+ field: string;
1516
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1517
+ id: string;
1518
+ }[];
1519
+ $in: {
1520
+ type: "string" | "number" | "boolean" | "object" | "array";
1521
+ value: any;
1522
+ field: string;
1523
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1524
+ id: string;
1525
+ }[] | {
1526
+ type: "string" | "number" | "boolean" | "object" | "array";
1527
+ value: any;
1528
+ field: string;
1529
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1530
+ id: string;
1531
+ }[][];
1532
+ $nin: {
1533
+ type: "string" | "number" | "boolean" | "object" | "array";
1534
+ value: any;
1535
+ field: string;
1536
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1537
+ id: string;
1538
+ }[] | {
1539
+ type: "string" | "number" | "boolean" | "object" | "array";
1540
+ value: any;
1541
+ field: string;
1542
+ operator: "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "contains" | "not_contains" | "exists" | "not_exists" | "in" | "not_in";
1543
+ id: string;
1544
+ }[][];
1545
+ } & {}> | undefined;
1546
+ prompt?: string | Partial<{
1547
+ $gt: string;
1548
+ $gte: string;
1549
+ $lt: string;
1550
+ $lte: string;
1551
+ $ne: string;
1552
+ $in: string | string[];
1553
+ $nin: string | string[];
1554
+ } & {}> | undefined;
1555
+ eventTypeId?: string | {} | Partial<{
1556
+ $gt: string | {};
1557
+ $gte: string | {};
1558
+ $lt: string | {};
1559
+ $lte: string | {};
1560
+ $ne: string | {};
1561
+ $in: string | {} | (string | {})[];
1562
+ $nin: string | {} | (string | {})[];
1563
+ } & {}> | undefined;
1564
+ eventBridgeRuleName?: string | Partial<{
1565
+ $gt?: string | undefined;
1566
+ $gte?: string | undefined;
1567
+ $lt?: string | undefined;
1568
+ $lte?: string | undefined;
1569
+ $ne?: string | undefined;
1570
+ $in: string | string[];
1571
+ $nin: string | string[];
1572
+ } & {}> | undefined;
1573
+ eventBridgeRuleArn?: string | Partial<{
1574
+ $gt?: string | undefined;
1575
+ $gte?: string | undefined;
1576
+ $lt?: string | undefined;
1577
+ $lte?: string | undefined;
1578
+ $ne?: string | undefined;
1579
+ $in: string | string[];
1580
+ $nin: string | string[];
1581
+ } & {}> | undefined;
1582
+ } & {}, HookContext<EventsTriggersService<import("./triggers.class").EventsTriggersParams>>>;