@eventvisor/core 0.0.2

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 (165) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +9 -0
  3. package/jest.config.js +4 -0
  4. package/lib/builder/buildProject.d.ts +21 -0
  5. package/lib/builder/buildProject.js +153 -0
  6. package/lib/builder/buildProject.js.map +1 -0
  7. package/lib/builder/hashes.d.ts +2 -0
  8. package/lib/builder/hashes.js +59 -0
  9. package/lib/builder/hashes.js.map +1 -0
  10. package/lib/builder/index.d.ts +1 -0
  11. package/lib/builder/index.js +18 -0
  12. package/lib/builder/index.js.map +1 -0
  13. package/lib/cli/cli.d.ts +26 -0
  14. package/lib/cli/cli.js +69 -0
  15. package/lib/cli/cli.js.map +1 -0
  16. package/lib/cli/index.d.ts +1 -0
  17. package/lib/cli/index.js +18 -0
  18. package/lib/cli/index.js.map +1 -0
  19. package/lib/cli/plugins.d.ts +4 -0
  20. package/lib/cli/plugins.js +12 -0
  21. package/lib/cli/plugins.js.map +1 -0
  22. package/lib/config/index.d.ts +2 -0
  23. package/lib/config/index.js +19 -0
  24. package/lib/config/index.js.map +1 -0
  25. package/lib/config/parsers.d.ts +15 -0
  26. package/lib/config/parsers.js +65 -0
  27. package/lib/config/parsers.js.map +1 -0
  28. package/lib/config/projectConfig.d.ts +42 -0
  29. package/lib/config/projectConfig.js +137 -0
  30. package/lib/config/projectConfig.js.map +1 -0
  31. package/lib/datasource/adapter.d.ts +16 -0
  32. package/lib/datasource/adapter.js +7 -0
  33. package/lib/datasource/adapter.js.map +1 -0
  34. package/lib/datasource/datasource.d.ts +48 -0
  35. package/lib/datasource/datasource.js +117 -0
  36. package/lib/datasource/datasource.js.map +1 -0
  37. package/lib/datasource/filesystemAdapter.d.ts +29 -0
  38. package/lib/datasource/filesystemAdapter.js +192 -0
  39. package/lib/datasource/filesystemAdapter.js.map +1 -0
  40. package/lib/datasource/index.d.ts +3 -0
  41. package/lib/datasource/index.js +20 -0
  42. package/lib/datasource/index.js.map +1 -0
  43. package/lib/dependencies.d.ts +11 -0
  44. package/lib/dependencies.js +3 -0
  45. package/lib/dependencies.js.map +1 -0
  46. package/lib/index.d.ts +4 -0
  47. package/lib/index.js +21 -0
  48. package/lib/index.js.map +1 -0
  49. package/lib/index.spec.d.ts +0 -0
  50. package/lib/index.spec.js +6 -0
  51. package/lib/index.spec.js.map +1 -0
  52. package/lib/init/index.d.ts +8 -0
  53. package/lib/init/index.js +90 -0
  54. package/lib/init/index.js.map +1 -0
  55. package/lib/linter/attributeSchema.d.ts +5 -0
  56. package/lib/linter/attributeSchema.js +55 -0
  57. package/lib/linter/attributeSchema.js.map +1 -0
  58. package/lib/linter/conditionsSchema.d.ts +303 -0
  59. package/lib/linter/conditionsSchema.js +106 -0
  60. package/lib/linter/conditionsSchema.js.map +1 -0
  61. package/lib/linter/destinationSchema.d.ts +5 -0
  62. package/lib/linter/destinationSchema.js +57 -0
  63. package/lib/linter/destinationSchema.js.map +1 -0
  64. package/lib/linter/effectSchema.d.ts +1257 -0
  65. package/lib/linter/effectSchema.js +77 -0
  66. package/lib/linter/effectSchema.js.map +1 -0
  67. package/lib/linter/eventSchema.d.ts +5 -0
  68. package/lib/linter/eventSchema.js +70 -0
  69. package/lib/linter/eventSchema.js.map +1 -0
  70. package/lib/linter/index.d.ts +1 -0
  71. package/lib/linter/index.js +18 -0
  72. package/lib/linter/index.js.map +1 -0
  73. package/lib/linter/jsonSchema.d.ts +25 -0
  74. package/lib/linter/jsonSchema.js +487 -0
  75. package/lib/linter/jsonSchema.js.map +1 -0
  76. package/lib/linter/jsonSchema.spec.d.ts +1 -0
  77. package/lib/linter/jsonSchema.spec.js +875 -0
  78. package/lib/linter/jsonSchema.spec.js.map +1 -0
  79. package/lib/linter/lintProject.d.ts +2 -0
  80. package/lib/linter/lintProject.js +141 -0
  81. package/lib/linter/lintProject.js.map +1 -0
  82. package/lib/linter/persistSchema.d.ts +609 -0
  83. package/lib/linter/persistSchema.js +52 -0
  84. package/lib/linter/persistSchema.js.map +1 -0
  85. package/lib/linter/printError.d.ts +9 -0
  86. package/lib/linter/printError.js +75 -0
  87. package/lib/linter/printError.js.map +1 -0
  88. package/lib/linter/sampleSchema.d.ts +331 -0
  89. package/lib/linter/sampleSchema.js +70 -0
  90. package/lib/linter/sampleSchema.js.map +1 -0
  91. package/lib/linter/sourceSchema.d.ts +11 -0
  92. package/lib/linter/sourceSchema.js +73 -0
  93. package/lib/linter/sourceSchema.js.map +1 -0
  94. package/lib/linter/tagsSchema.d.ts +3 -0
  95. package/lib/linter/tagsSchema.js +44 -0
  96. package/lib/linter/tagsSchema.js.map +1 -0
  97. package/lib/linter/testSchema.d.ts +5 -0
  98. package/lib/linter/testSchema.js +44 -0
  99. package/lib/linter/testSchema.js.map +1 -0
  100. package/lib/linter/transformsSchema.d.ts +29 -0
  101. package/lib/linter/transformsSchema.js +66 -0
  102. package/lib/linter/transformsSchema.js.map +1 -0
  103. package/lib/tester/createTestInstance.d.ts +16 -0
  104. package/lib/tester/createTestInstance.js +158 -0
  105. package/lib/tester/createTestInstance.js.map +1 -0
  106. package/lib/tester/executeTest.d.ts +24 -0
  107. package/lib/tester/executeTest.js +305 -0
  108. package/lib/tester/executeTest.js.map +1 -0
  109. package/lib/tester/index.d.ts +1 -0
  110. package/lib/tester/index.js +18 -0
  111. package/lib/tester/index.js.map +1 -0
  112. package/lib/tester/printTestResult.d.ts +10 -0
  113. package/lib/tester/printTestResult.js +80 -0
  114. package/lib/tester/printTestResult.js.map +1 -0
  115. package/lib/tester/testProject.d.ts +12 -0
  116. package/lib/tester/testProject.js +93 -0
  117. package/lib/tester/testProject.js.map +1 -0
  118. package/lib/utils/index.d.ts +1 -0
  119. package/lib/utils/index.js +18 -0
  120. package/lib/utils/index.js.map +1 -0
  121. package/lib/utils/prettyDuration.d.ts +1 -0
  122. package/lib/utils/prettyDuration.js +27 -0
  123. package/lib/utils/prettyDuration.js.map +1 -0
  124. package/package.json +42 -0
  125. package/src/builder/buildProject.ts +222 -0
  126. package/src/builder/hashes.ts +30 -0
  127. package/src/builder/index.ts +1 -0
  128. package/src/cli/cli.ts +110 -0
  129. package/src/cli/index.ts +1 -0
  130. package/src/cli/plugins.ts +13 -0
  131. package/src/config/index.ts +2 -0
  132. package/src/config/parsers.ts +40 -0
  133. package/src/config/projectConfig.ts +158 -0
  134. package/src/datasource/adapter.ts +23 -0
  135. package/src/datasource/datasource.ts +164 -0
  136. package/src/datasource/filesystemAdapter.ts +206 -0
  137. package/src/datasource/index.ts +3 -0
  138. package/src/dependencies.ts +13 -0
  139. package/src/index.spec.ts +5 -0
  140. package/src/index.ts +4 -0
  141. package/src/init/index.ts +65 -0
  142. package/src/linter/attributeSchema.ts +23 -0
  143. package/src/linter/conditionsSchema.ts +89 -0
  144. package/src/linter/destinationSchema.ts +25 -0
  145. package/src/linter/effectSchema.ts +49 -0
  146. package/src/linter/eventSchema.ts +40 -0
  147. package/src/linter/index.ts +1 -0
  148. package/src/linter/jsonSchema.spec.ts +934 -0
  149. package/src/linter/jsonSchema.ts +533 -0
  150. package/src/linter/lintProject.ts +182 -0
  151. package/src/linter/persistSchema.ts +21 -0
  152. package/src/linter/printError.ts +50 -0
  153. package/src/linter/sampleSchema.ts +45 -0
  154. package/src/linter/sourceSchema.ts +42 -0
  155. package/src/linter/tagsSchema.ts +12 -0
  156. package/src/linter/testSchema.ts +9 -0
  157. package/src/linter/transformsSchema.ts +35 -0
  158. package/src/tester/createTestInstance.ts +209 -0
  159. package/src/tester/executeTest.ts +436 -0
  160. package/src/tester/index.ts +1 -0
  161. package/src/tester/printTestResult.ts +60 -0
  162. package/src/tester/testProject.ts +129 -0
  163. package/src/utils/index.ts +1 -0
  164. package/src/utils/prettyDuration.ts +27 -0
  165. package/tsconfig.cjs.json +11 -0
@@ -0,0 +1,1257 @@
1
+ import * as z from "zod";
2
+ import { Dependencies } from "../dependencies";
3
+ export declare function getEffectSchema(deps: Dependencies): z.ZodObject<{
4
+ archived: z.ZodOptional<z.ZodBoolean>;
5
+ description: z.ZodString;
6
+ tags: z.ZodArray<z.ZodString>;
7
+ on: z.ZodUnion<readonly [z.ZodArray<z.ZodEnum<{
8
+ event_tracked: "event_tracked";
9
+ attribute_set: "attribute_set";
10
+ }>>, z.ZodObject<{
11
+ event_tracked: z.ZodOptional<z.ZodArray<z.ZodString>>;
12
+ attribute_set: z.ZodOptional<z.ZodArray<z.ZodString>>;
13
+ }, z.core.$strip>]>;
14
+ state: z.ZodOptional<z.ZodAny>;
15
+ conditions: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
16
+ operator: z.ZodEnum<{
17
+ includes: "includes";
18
+ endsWith: "endsWith";
19
+ startsWith: "startsWith";
20
+ matches: "matches";
21
+ contains: "contains";
22
+ after: "after";
23
+ before: "before";
24
+ equals: "equals";
25
+ notEquals: "notEquals";
26
+ exists: "exists";
27
+ notExists: "notExists";
28
+ greaterThan: "greaterThan";
29
+ greaterThanOrEquals: "greaterThanOrEquals";
30
+ lessThan: "lessThan";
31
+ lessThanOrEquals: "lessThanOrEquals";
32
+ notContains: "notContains";
33
+ semverEquals: "semverEquals";
34
+ semverNotEquals: "semverNotEquals";
35
+ semverGreaterThan: "semverGreaterThan";
36
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
37
+ semverLessThan: "semverLessThan";
38
+ semverLessThanOrEquals: "semverLessThanOrEquals";
39
+ notIncludes: "notIncludes";
40
+ notMatches: "notMatches";
41
+ in: "in";
42
+ notIn: "notIn";
43
+ }>;
44
+ value: z.ZodOptional<z.ZodAny>;
45
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
46
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
47
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
48
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
49
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
50
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
51
+ }, z.core.$strip>, z.ZodObject<{
52
+ and: z.ZodArray<z.ZodObject<{
53
+ operator: z.ZodEnum<{
54
+ includes: "includes";
55
+ endsWith: "endsWith";
56
+ startsWith: "startsWith";
57
+ matches: "matches";
58
+ contains: "contains";
59
+ after: "after";
60
+ before: "before";
61
+ equals: "equals";
62
+ notEquals: "notEquals";
63
+ exists: "exists";
64
+ notExists: "notExists";
65
+ greaterThan: "greaterThan";
66
+ greaterThanOrEquals: "greaterThanOrEquals";
67
+ lessThan: "lessThan";
68
+ lessThanOrEquals: "lessThanOrEquals";
69
+ notContains: "notContains";
70
+ semverEquals: "semverEquals";
71
+ semverNotEquals: "semverNotEquals";
72
+ semverGreaterThan: "semverGreaterThan";
73
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
74
+ semverLessThan: "semverLessThan";
75
+ semverLessThanOrEquals: "semverLessThanOrEquals";
76
+ notIncludes: "notIncludes";
77
+ notMatches: "notMatches";
78
+ in: "in";
79
+ notIn: "notIn";
80
+ }>;
81
+ value: z.ZodOptional<z.ZodAny>;
82
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
83
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
84
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
85
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
86
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
87
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
88
+ }, z.core.$strip>>;
89
+ }, z.core.$strip>, z.ZodObject<{
90
+ or: z.ZodArray<z.ZodObject<{
91
+ operator: z.ZodEnum<{
92
+ includes: "includes";
93
+ endsWith: "endsWith";
94
+ startsWith: "startsWith";
95
+ matches: "matches";
96
+ contains: "contains";
97
+ after: "after";
98
+ before: "before";
99
+ equals: "equals";
100
+ notEquals: "notEquals";
101
+ exists: "exists";
102
+ notExists: "notExists";
103
+ greaterThan: "greaterThan";
104
+ greaterThanOrEquals: "greaterThanOrEquals";
105
+ lessThan: "lessThan";
106
+ lessThanOrEquals: "lessThanOrEquals";
107
+ notContains: "notContains";
108
+ semverEquals: "semverEquals";
109
+ semverNotEquals: "semverNotEquals";
110
+ semverGreaterThan: "semverGreaterThan";
111
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
112
+ semverLessThan: "semverLessThan";
113
+ semverLessThanOrEquals: "semverLessThanOrEquals";
114
+ notIncludes: "notIncludes";
115
+ notMatches: "notMatches";
116
+ in: "in";
117
+ notIn: "notIn";
118
+ }>;
119
+ value: z.ZodOptional<z.ZodAny>;
120
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
121
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
122
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
123
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
124
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
125
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
126
+ }, z.core.$strip>>;
127
+ }, z.core.$strip>, z.ZodObject<{
128
+ not: z.ZodArray<z.ZodObject<{
129
+ operator: z.ZodEnum<{
130
+ includes: "includes";
131
+ endsWith: "endsWith";
132
+ startsWith: "startsWith";
133
+ matches: "matches";
134
+ contains: "contains";
135
+ after: "after";
136
+ before: "before";
137
+ equals: "equals";
138
+ notEquals: "notEquals";
139
+ exists: "exists";
140
+ notExists: "notExists";
141
+ greaterThan: "greaterThan";
142
+ greaterThanOrEquals: "greaterThanOrEquals";
143
+ lessThan: "lessThan";
144
+ lessThanOrEquals: "lessThanOrEquals";
145
+ notContains: "notContains";
146
+ semverEquals: "semverEquals";
147
+ semverNotEquals: "semverNotEquals";
148
+ semverGreaterThan: "semverGreaterThan";
149
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
150
+ semverLessThan: "semverLessThan";
151
+ semverLessThanOrEquals: "semverLessThanOrEquals";
152
+ notIncludes: "notIncludes";
153
+ notMatches: "notMatches";
154
+ in: "in";
155
+ notIn: "notIn";
156
+ }>;
157
+ value: z.ZodOptional<z.ZodAny>;
158
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
159
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
160
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
161
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
162
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
163
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
164
+ }, z.core.$strip>>;
165
+ }, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
166
+ operator: z.ZodEnum<{
167
+ includes: "includes";
168
+ endsWith: "endsWith";
169
+ startsWith: "startsWith";
170
+ matches: "matches";
171
+ contains: "contains";
172
+ after: "after";
173
+ before: "before";
174
+ equals: "equals";
175
+ notEquals: "notEquals";
176
+ exists: "exists";
177
+ notExists: "notExists";
178
+ greaterThan: "greaterThan";
179
+ greaterThanOrEquals: "greaterThanOrEquals";
180
+ lessThan: "lessThan";
181
+ lessThanOrEquals: "lessThanOrEquals";
182
+ notContains: "notContains";
183
+ semverEquals: "semverEquals";
184
+ semverNotEquals: "semverNotEquals";
185
+ semverGreaterThan: "semverGreaterThan";
186
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
187
+ semverLessThan: "semverLessThan";
188
+ semverLessThanOrEquals: "semverLessThanOrEquals";
189
+ notIncludes: "notIncludes";
190
+ notMatches: "notMatches";
191
+ in: "in";
192
+ notIn: "notIn";
193
+ }>;
194
+ value: z.ZodOptional<z.ZodAny>;
195
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
196
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
197
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
198
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
199
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
200
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
201
+ }, z.core.$strip>, z.ZodObject<{
202
+ and: z.ZodArray<z.ZodObject<{
203
+ operator: z.ZodEnum<{
204
+ includes: "includes";
205
+ endsWith: "endsWith";
206
+ startsWith: "startsWith";
207
+ matches: "matches";
208
+ contains: "contains";
209
+ after: "after";
210
+ before: "before";
211
+ equals: "equals";
212
+ notEquals: "notEquals";
213
+ exists: "exists";
214
+ notExists: "notExists";
215
+ greaterThan: "greaterThan";
216
+ greaterThanOrEquals: "greaterThanOrEquals";
217
+ lessThan: "lessThan";
218
+ lessThanOrEquals: "lessThanOrEquals";
219
+ notContains: "notContains";
220
+ semverEquals: "semverEquals";
221
+ semverNotEquals: "semverNotEquals";
222
+ semverGreaterThan: "semverGreaterThan";
223
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
224
+ semverLessThan: "semverLessThan";
225
+ semverLessThanOrEquals: "semverLessThanOrEquals";
226
+ notIncludes: "notIncludes";
227
+ notMatches: "notMatches";
228
+ in: "in";
229
+ notIn: "notIn";
230
+ }>;
231
+ value: z.ZodOptional<z.ZodAny>;
232
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
233
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
234
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
235
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
236
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
237
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
238
+ }, z.core.$strip>>;
239
+ }, z.core.$strip>, z.ZodObject<{
240
+ or: z.ZodArray<z.ZodObject<{
241
+ operator: z.ZodEnum<{
242
+ includes: "includes";
243
+ endsWith: "endsWith";
244
+ startsWith: "startsWith";
245
+ matches: "matches";
246
+ contains: "contains";
247
+ after: "after";
248
+ before: "before";
249
+ equals: "equals";
250
+ notEquals: "notEquals";
251
+ exists: "exists";
252
+ notExists: "notExists";
253
+ greaterThan: "greaterThan";
254
+ greaterThanOrEquals: "greaterThanOrEquals";
255
+ lessThan: "lessThan";
256
+ lessThanOrEquals: "lessThanOrEquals";
257
+ notContains: "notContains";
258
+ semverEquals: "semverEquals";
259
+ semverNotEquals: "semverNotEquals";
260
+ semverGreaterThan: "semverGreaterThan";
261
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
262
+ semverLessThan: "semverLessThan";
263
+ semverLessThanOrEquals: "semverLessThanOrEquals";
264
+ notIncludes: "notIncludes";
265
+ notMatches: "notMatches";
266
+ in: "in";
267
+ notIn: "notIn";
268
+ }>;
269
+ value: z.ZodOptional<z.ZodAny>;
270
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
271
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
272
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
273
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
274
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
275
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
276
+ }, z.core.$strip>>;
277
+ }, z.core.$strip>, z.ZodObject<{
278
+ not: z.ZodArray<z.ZodObject<{
279
+ operator: z.ZodEnum<{
280
+ includes: "includes";
281
+ endsWith: "endsWith";
282
+ startsWith: "startsWith";
283
+ matches: "matches";
284
+ contains: "contains";
285
+ after: "after";
286
+ before: "before";
287
+ equals: "equals";
288
+ notEquals: "notEquals";
289
+ exists: "exists";
290
+ notExists: "notExists";
291
+ greaterThan: "greaterThan";
292
+ greaterThanOrEquals: "greaterThanOrEquals";
293
+ lessThan: "lessThan";
294
+ lessThanOrEquals: "lessThanOrEquals";
295
+ notContains: "notContains";
296
+ semverEquals: "semverEquals";
297
+ semverNotEquals: "semverNotEquals";
298
+ semverGreaterThan: "semverGreaterThan";
299
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
300
+ semverLessThan: "semverLessThan";
301
+ semverLessThanOrEquals: "semverLessThanOrEquals";
302
+ notIncludes: "notIncludes";
303
+ notMatches: "notMatches";
304
+ in: "in";
305
+ notIn: "notIn";
306
+ }>;
307
+ value: z.ZodOptional<z.ZodAny>;
308
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
309
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
310
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
311
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
312
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
313
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
314
+ }, z.core.$strip>>;
315
+ }, z.core.$strip>]>>]>>;
316
+ steps: z.ZodArray<z.ZodObject<{
317
+ description: z.ZodOptional<z.ZodString>;
318
+ handler: z.ZodOptional<z.ZodString>;
319
+ conditions: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
320
+ operator: z.ZodEnum<{
321
+ includes: "includes";
322
+ endsWith: "endsWith";
323
+ startsWith: "startsWith";
324
+ matches: "matches";
325
+ contains: "contains";
326
+ after: "after";
327
+ before: "before";
328
+ equals: "equals";
329
+ notEquals: "notEquals";
330
+ exists: "exists";
331
+ notExists: "notExists";
332
+ greaterThan: "greaterThan";
333
+ greaterThanOrEquals: "greaterThanOrEquals";
334
+ lessThan: "lessThan";
335
+ lessThanOrEquals: "lessThanOrEquals";
336
+ notContains: "notContains";
337
+ semverEquals: "semverEquals";
338
+ semverNotEquals: "semverNotEquals";
339
+ semverGreaterThan: "semverGreaterThan";
340
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
341
+ semverLessThan: "semverLessThan";
342
+ semverLessThanOrEquals: "semverLessThanOrEquals";
343
+ notIncludes: "notIncludes";
344
+ notMatches: "notMatches";
345
+ in: "in";
346
+ notIn: "notIn";
347
+ }>;
348
+ value: z.ZodOptional<z.ZodAny>;
349
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
350
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
351
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
352
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
353
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
354
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
355
+ }, z.core.$strip>, z.ZodObject<{
356
+ and: z.ZodArray<z.ZodObject<{
357
+ operator: z.ZodEnum<{
358
+ includes: "includes";
359
+ endsWith: "endsWith";
360
+ startsWith: "startsWith";
361
+ matches: "matches";
362
+ contains: "contains";
363
+ after: "after";
364
+ before: "before";
365
+ equals: "equals";
366
+ notEquals: "notEquals";
367
+ exists: "exists";
368
+ notExists: "notExists";
369
+ greaterThan: "greaterThan";
370
+ greaterThanOrEquals: "greaterThanOrEquals";
371
+ lessThan: "lessThan";
372
+ lessThanOrEquals: "lessThanOrEquals";
373
+ notContains: "notContains";
374
+ semverEquals: "semverEquals";
375
+ semverNotEquals: "semverNotEquals";
376
+ semverGreaterThan: "semverGreaterThan";
377
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
378
+ semverLessThan: "semverLessThan";
379
+ semverLessThanOrEquals: "semverLessThanOrEquals";
380
+ notIncludes: "notIncludes";
381
+ notMatches: "notMatches";
382
+ in: "in";
383
+ notIn: "notIn";
384
+ }>;
385
+ value: z.ZodOptional<z.ZodAny>;
386
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
387
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
388
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
389
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
390
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
391
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
392
+ }, z.core.$strip>>;
393
+ }, z.core.$strip>, z.ZodObject<{
394
+ or: z.ZodArray<z.ZodObject<{
395
+ operator: z.ZodEnum<{
396
+ includes: "includes";
397
+ endsWith: "endsWith";
398
+ startsWith: "startsWith";
399
+ matches: "matches";
400
+ contains: "contains";
401
+ after: "after";
402
+ before: "before";
403
+ equals: "equals";
404
+ notEquals: "notEquals";
405
+ exists: "exists";
406
+ notExists: "notExists";
407
+ greaterThan: "greaterThan";
408
+ greaterThanOrEquals: "greaterThanOrEquals";
409
+ lessThan: "lessThan";
410
+ lessThanOrEquals: "lessThanOrEquals";
411
+ notContains: "notContains";
412
+ semverEquals: "semverEquals";
413
+ semverNotEquals: "semverNotEquals";
414
+ semverGreaterThan: "semverGreaterThan";
415
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
416
+ semverLessThan: "semverLessThan";
417
+ semverLessThanOrEquals: "semverLessThanOrEquals";
418
+ notIncludes: "notIncludes";
419
+ notMatches: "notMatches";
420
+ in: "in";
421
+ notIn: "notIn";
422
+ }>;
423
+ value: z.ZodOptional<z.ZodAny>;
424
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
425
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
426
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
427
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
428
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
429
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
430
+ }, z.core.$strip>>;
431
+ }, z.core.$strip>, z.ZodObject<{
432
+ not: z.ZodArray<z.ZodObject<{
433
+ operator: z.ZodEnum<{
434
+ includes: "includes";
435
+ endsWith: "endsWith";
436
+ startsWith: "startsWith";
437
+ matches: "matches";
438
+ contains: "contains";
439
+ after: "after";
440
+ before: "before";
441
+ equals: "equals";
442
+ notEquals: "notEquals";
443
+ exists: "exists";
444
+ notExists: "notExists";
445
+ greaterThan: "greaterThan";
446
+ greaterThanOrEquals: "greaterThanOrEquals";
447
+ lessThan: "lessThan";
448
+ lessThanOrEquals: "lessThanOrEquals";
449
+ notContains: "notContains";
450
+ semverEquals: "semverEquals";
451
+ semverNotEquals: "semverNotEquals";
452
+ semverGreaterThan: "semverGreaterThan";
453
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
454
+ semverLessThan: "semverLessThan";
455
+ semverLessThanOrEquals: "semverLessThanOrEquals";
456
+ notIncludes: "notIncludes";
457
+ notMatches: "notMatches";
458
+ in: "in";
459
+ notIn: "notIn";
460
+ }>;
461
+ value: z.ZodOptional<z.ZodAny>;
462
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
463
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
464
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
465
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
466
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
467
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
468
+ }, z.core.$strip>>;
469
+ }, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
470
+ operator: z.ZodEnum<{
471
+ includes: "includes";
472
+ endsWith: "endsWith";
473
+ startsWith: "startsWith";
474
+ matches: "matches";
475
+ contains: "contains";
476
+ after: "after";
477
+ before: "before";
478
+ equals: "equals";
479
+ notEquals: "notEquals";
480
+ exists: "exists";
481
+ notExists: "notExists";
482
+ greaterThan: "greaterThan";
483
+ greaterThanOrEquals: "greaterThanOrEquals";
484
+ lessThan: "lessThan";
485
+ lessThanOrEquals: "lessThanOrEquals";
486
+ notContains: "notContains";
487
+ semverEquals: "semverEquals";
488
+ semverNotEquals: "semverNotEquals";
489
+ semverGreaterThan: "semverGreaterThan";
490
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
491
+ semverLessThan: "semverLessThan";
492
+ semverLessThanOrEquals: "semverLessThanOrEquals";
493
+ notIncludes: "notIncludes";
494
+ notMatches: "notMatches";
495
+ in: "in";
496
+ notIn: "notIn";
497
+ }>;
498
+ value: z.ZodOptional<z.ZodAny>;
499
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
500
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
501
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
502
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
503
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
504
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
505
+ }, z.core.$strip>, z.ZodObject<{
506
+ and: z.ZodArray<z.ZodObject<{
507
+ operator: z.ZodEnum<{
508
+ includes: "includes";
509
+ endsWith: "endsWith";
510
+ startsWith: "startsWith";
511
+ matches: "matches";
512
+ contains: "contains";
513
+ after: "after";
514
+ before: "before";
515
+ equals: "equals";
516
+ notEquals: "notEquals";
517
+ exists: "exists";
518
+ notExists: "notExists";
519
+ greaterThan: "greaterThan";
520
+ greaterThanOrEquals: "greaterThanOrEquals";
521
+ lessThan: "lessThan";
522
+ lessThanOrEquals: "lessThanOrEquals";
523
+ notContains: "notContains";
524
+ semverEquals: "semverEquals";
525
+ semverNotEquals: "semverNotEquals";
526
+ semverGreaterThan: "semverGreaterThan";
527
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
528
+ semverLessThan: "semverLessThan";
529
+ semverLessThanOrEquals: "semverLessThanOrEquals";
530
+ notIncludes: "notIncludes";
531
+ notMatches: "notMatches";
532
+ in: "in";
533
+ notIn: "notIn";
534
+ }>;
535
+ value: z.ZodOptional<z.ZodAny>;
536
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
537
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
538
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
539
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
540
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
541
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
542
+ }, z.core.$strip>>;
543
+ }, z.core.$strip>, z.ZodObject<{
544
+ or: z.ZodArray<z.ZodObject<{
545
+ operator: z.ZodEnum<{
546
+ includes: "includes";
547
+ endsWith: "endsWith";
548
+ startsWith: "startsWith";
549
+ matches: "matches";
550
+ contains: "contains";
551
+ after: "after";
552
+ before: "before";
553
+ equals: "equals";
554
+ notEquals: "notEquals";
555
+ exists: "exists";
556
+ notExists: "notExists";
557
+ greaterThan: "greaterThan";
558
+ greaterThanOrEquals: "greaterThanOrEquals";
559
+ lessThan: "lessThan";
560
+ lessThanOrEquals: "lessThanOrEquals";
561
+ notContains: "notContains";
562
+ semverEquals: "semverEquals";
563
+ semverNotEquals: "semverNotEquals";
564
+ semverGreaterThan: "semverGreaterThan";
565
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
566
+ semverLessThan: "semverLessThan";
567
+ semverLessThanOrEquals: "semverLessThanOrEquals";
568
+ notIncludes: "notIncludes";
569
+ notMatches: "notMatches";
570
+ in: "in";
571
+ notIn: "notIn";
572
+ }>;
573
+ value: z.ZodOptional<z.ZodAny>;
574
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
575
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
576
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
577
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
578
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
579
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
580
+ }, z.core.$strip>>;
581
+ }, z.core.$strip>, z.ZodObject<{
582
+ not: z.ZodArray<z.ZodObject<{
583
+ operator: z.ZodEnum<{
584
+ includes: "includes";
585
+ endsWith: "endsWith";
586
+ startsWith: "startsWith";
587
+ matches: "matches";
588
+ contains: "contains";
589
+ after: "after";
590
+ before: "before";
591
+ equals: "equals";
592
+ notEquals: "notEquals";
593
+ exists: "exists";
594
+ notExists: "notExists";
595
+ greaterThan: "greaterThan";
596
+ greaterThanOrEquals: "greaterThanOrEquals";
597
+ lessThan: "lessThan";
598
+ lessThanOrEquals: "lessThanOrEquals";
599
+ notContains: "notContains";
600
+ semverEquals: "semverEquals";
601
+ semverNotEquals: "semverNotEquals";
602
+ semverGreaterThan: "semverGreaterThan";
603
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
604
+ semverLessThan: "semverLessThan";
605
+ semverLessThanOrEquals: "semverLessThanOrEquals";
606
+ notIncludes: "notIncludes";
607
+ notMatches: "notMatches";
608
+ in: "in";
609
+ notIn: "notIn";
610
+ }>;
611
+ value: z.ZodOptional<z.ZodAny>;
612
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
613
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
614
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
615
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
616
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
617
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
618
+ }, z.core.$strip>>;
619
+ }, z.core.$strip>]>>]>>;
620
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
621
+ transforms: z.ZodOptional<z.ZodArray<z.ZodObject<{
622
+ type: z.ZodEnum<{
623
+ toString: "toString";
624
+ concat: "concat";
625
+ trim: "trim";
626
+ set: "set";
627
+ remove: "remove";
628
+ append: "append";
629
+ increment: "increment";
630
+ decrement: "decrement";
631
+ rename: "rename";
632
+ toInteger: "toInteger";
633
+ toDouble: "toDouble";
634
+ toBoolean: "toBoolean";
635
+ spread: "spread";
636
+ }>;
637
+ target: z.ZodOptional<z.ZodString>;
638
+ targetMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
639
+ value: z.ZodOptional<z.ZodAny>;
640
+ separator: z.ZodOptional<z.ZodString>;
641
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
642
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
643
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
644
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
645
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
646
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
647
+ }, z.core.$strip>>>;
648
+ continueOnError: z.ZodOptional<z.ZodBoolean>;
649
+ }, z.core.$strip>>;
650
+ persist: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
651
+ storage: z.ZodString;
652
+ conditions: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
653
+ operator: z.ZodEnum<{
654
+ includes: "includes";
655
+ endsWith: "endsWith";
656
+ startsWith: "startsWith";
657
+ matches: "matches";
658
+ contains: "contains";
659
+ after: "after";
660
+ before: "before";
661
+ equals: "equals";
662
+ notEquals: "notEquals";
663
+ exists: "exists";
664
+ notExists: "notExists";
665
+ greaterThan: "greaterThan";
666
+ greaterThanOrEquals: "greaterThanOrEquals";
667
+ lessThan: "lessThan";
668
+ lessThanOrEquals: "lessThanOrEquals";
669
+ notContains: "notContains";
670
+ semverEquals: "semverEquals";
671
+ semverNotEquals: "semverNotEquals";
672
+ semverGreaterThan: "semverGreaterThan";
673
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
674
+ semverLessThan: "semverLessThan";
675
+ semverLessThanOrEquals: "semverLessThanOrEquals";
676
+ notIncludes: "notIncludes";
677
+ notMatches: "notMatches";
678
+ in: "in";
679
+ notIn: "notIn";
680
+ }>;
681
+ value: z.ZodOptional<z.ZodAny>;
682
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
683
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
684
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
685
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
686
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
687
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
688
+ }, z.core.$strip>, z.ZodObject<{
689
+ and: z.ZodArray<z.ZodObject<{
690
+ operator: z.ZodEnum<{
691
+ includes: "includes";
692
+ endsWith: "endsWith";
693
+ startsWith: "startsWith";
694
+ matches: "matches";
695
+ contains: "contains";
696
+ after: "after";
697
+ before: "before";
698
+ equals: "equals";
699
+ notEquals: "notEquals";
700
+ exists: "exists";
701
+ notExists: "notExists";
702
+ greaterThan: "greaterThan";
703
+ greaterThanOrEquals: "greaterThanOrEquals";
704
+ lessThan: "lessThan";
705
+ lessThanOrEquals: "lessThanOrEquals";
706
+ notContains: "notContains";
707
+ semverEquals: "semverEquals";
708
+ semverNotEquals: "semverNotEquals";
709
+ semverGreaterThan: "semverGreaterThan";
710
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
711
+ semverLessThan: "semverLessThan";
712
+ semverLessThanOrEquals: "semverLessThanOrEquals";
713
+ notIncludes: "notIncludes";
714
+ notMatches: "notMatches";
715
+ in: "in";
716
+ notIn: "notIn";
717
+ }>;
718
+ value: z.ZodOptional<z.ZodAny>;
719
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
720
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
721
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
722
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
723
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
724
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
725
+ }, z.core.$strip>>;
726
+ }, z.core.$strip>, z.ZodObject<{
727
+ or: z.ZodArray<z.ZodObject<{
728
+ operator: z.ZodEnum<{
729
+ includes: "includes";
730
+ endsWith: "endsWith";
731
+ startsWith: "startsWith";
732
+ matches: "matches";
733
+ contains: "contains";
734
+ after: "after";
735
+ before: "before";
736
+ equals: "equals";
737
+ notEquals: "notEquals";
738
+ exists: "exists";
739
+ notExists: "notExists";
740
+ greaterThan: "greaterThan";
741
+ greaterThanOrEquals: "greaterThanOrEquals";
742
+ lessThan: "lessThan";
743
+ lessThanOrEquals: "lessThanOrEquals";
744
+ notContains: "notContains";
745
+ semverEquals: "semverEquals";
746
+ semverNotEquals: "semverNotEquals";
747
+ semverGreaterThan: "semverGreaterThan";
748
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
749
+ semverLessThan: "semverLessThan";
750
+ semverLessThanOrEquals: "semverLessThanOrEquals";
751
+ notIncludes: "notIncludes";
752
+ notMatches: "notMatches";
753
+ in: "in";
754
+ notIn: "notIn";
755
+ }>;
756
+ value: z.ZodOptional<z.ZodAny>;
757
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
758
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
759
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
760
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
761
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
762
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
763
+ }, z.core.$strip>>;
764
+ }, z.core.$strip>, z.ZodObject<{
765
+ not: z.ZodArray<z.ZodObject<{
766
+ operator: z.ZodEnum<{
767
+ includes: "includes";
768
+ endsWith: "endsWith";
769
+ startsWith: "startsWith";
770
+ matches: "matches";
771
+ contains: "contains";
772
+ after: "after";
773
+ before: "before";
774
+ equals: "equals";
775
+ notEquals: "notEquals";
776
+ exists: "exists";
777
+ notExists: "notExists";
778
+ greaterThan: "greaterThan";
779
+ greaterThanOrEquals: "greaterThanOrEquals";
780
+ lessThan: "lessThan";
781
+ lessThanOrEquals: "lessThanOrEquals";
782
+ notContains: "notContains";
783
+ semverEquals: "semverEquals";
784
+ semverNotEquals: "semverNotEquals";
785
+ semverGreaterThan: "semverGreaterThan";
786
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
787
+ semverLessThan: "semverLessThan";
788
+ semverLessThanOrEquals: "semverLessThanOrEquals";
789
+ notIncludes: "notIncludes";
790
+ notMatches: "notMatches";
791
+ in: "in";
792
+ notIn: "notIn";
793
+ }>;
794
+ value: z.ZodOptional<z.ZodAny>;
795
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
796
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
797
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
798
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
799
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
800
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
801
+ }, z.core.$strip>>;
802
+ }, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
803
+ operator: z.ZodEnum<{
804
+ includes: "includes";
805
+ endsWith: "endsWith";
806
+ startsWith: "startsWith";
807
+ matches: "matches";
808
+ contains: "contains";
809
+ after: "after";
810
+ before: "before";
811
+ equals: "equals";
812
+ notEquals: "notEquals";
813
+ exists: "exists";
814
+ notExists: "notExists";
815
+ greaterThan: "greaterThan";
816
+ greaterThanOrEquals: "greaterThanOrEquals";
817
+ lessThan: "lessThan";
818
+ lessThanOrEquals: "lessThanOrEquals";
819
+ notContains: "notContains";
820
+ semverEquals: "semverEquals";
821
+ semverNotEquals: "semverNotEquals";
822
+ semverGreaterThan: "semverGreaterThan";
823
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
824
+ semverLessThan: "semverLessThan";
825
+ semverLessThanOrEquals: "semverLessThanOrEquals";
826
+ notIncludes: "notIncludes";
827
+ notMatches: "notMatches";
828
+ in: "in";
829
+ notIn: "notIn";
830
+ }>;
831
+ value: z.ZodOptional<z.ZodAny>;
832
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
833
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
834
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
835
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
836
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
837
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
838
+ }, z.core.$strip>, z.ZodObject<{
839
+ and: z.ZodArray<z.ZodObject<{
840
+ operator: z.ZodEnum<{
841
+ includes: "includes";
842
+ endsWith: "endsWith";
843
+ startsWith: "startsWith";
844
+ matches: "matches";
845
+ contains: "contains";
846
+ after: "after";
847
+ before: "before";
848
+ equals: "equals";
849
+ notEquals: "notEquals";
850
+ exists: "exists";
851
+ notExists: "notExists";
852
+ greaterThan: "greaterThan";
853
+ greaterThanOrEquals: "greaterThanOrEquals";
854
+ lessThan: "lessThan";
855
+ lessThanOrEquals: "lessThanOrEquals";
856
+ notContains: "notContains";
857
+ semverEquals: "semverEquals";
858
+ semverNotEquals: "semverNotEquals";
859
+ semverGreaterThan: "semverGreaterThan";
860
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
861
+ semverLessThan: "semverLessThan";
862
+ semverLessThanOrEquals: "semverLessThanOrEquals";
863
+ notIncludes: "notIncludes";
864
+ notMatches: "notMatches";
865
+ in: "in";
866
+ notIn: "notIn";
867
+ }>;
868
+ value: z.ZodOptional<z.ZodAny>;
869
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
870
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
871
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
872
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
873
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
874
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
875
+ }, z.core.$strip>>;
876
+ }, z.core.$strip>, z.ZodObject<{
877
+ or: z.ZodArray<z.ZodObject<{
878
+ operator: z.ZodEnum<{
879
+ includes: "includes";
880
+ endsWith: "endsWith";
881
+ startsWith: "startsWith";
882
+ matches: "matches";
883
+ contains: "contains";
884
+ after: "after";
885
+ before: "before";
886
+ equals: "equals";
887
+ notEquals: "notEquals";
888
+ exists: "exists";
889
+ notExists: "notExists";
890
+ greaterThan: "greaterThan";
891
+ greaterThanOrEquals: "greaterThanOrEquals";
892
+ lessThan: "lessThan";
893
+ lessThanOrEquals: "lessThanOrEquals";
894
+ notContains: "notContains";
895
+ semverEquals: "semverEquals";
896
+ semverNotEquals: "semverNotEquals";
897
+ semverGreaterThan: "semverGreaterThan";
898
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
899
+ semverLessThan: "semverLessThan";
900
+ semverLessThanOrEquals: "semverLessThanOrEquals";
901
+ notIncludes: "notIncludes";
902
+ notMatches: "notMatches";
903
+ in: "in";
904
+ notIn: "notIn";
905
+ }>;
906
+ value: z.ZodOptional<z.ZodAny>;
907
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
908
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
909
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
910
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
911
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
912
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
913
+ }, z.core.$strip>>;
914
+ }, z.core.$strip>, z.ZodObject<{
915
+ not: z.ZodArray<z.ZodObject<{
916
+ operator: z.ZodEnum<{
917
+ includes: "includes";
918
+ endsWith: "endsWith";
919
+ startsWith: "startsWith";
920
+ matches: "matches";
921
+ contains: "contains";
922
+ after: "after";
923
+ before: "before";
924
+ equals: "equals";
925
+ notEquals: "notEquals";
926
+ exists: "exists";
927
+ notExists: "notExists";
928
+ greaterThan: "greaterThan";
929
+ greaterThanOrEquals: "greaterThanOrEquals";
930
+ lessThan: "lessThan";
931
+ lessThanOrEquals: "lessThanOrEquals";
932
+ notContains: "notContains";
933
+ semverEquals: "semverEquals";
934
+ semverNotEquals: "semverNotEquals";
935
+ semverGreaterThan: "semverGreaterThan";
936
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
937
+ semverLessThan: "semverLessThan";
938
+ semverLessThanOrEquals: "semverLessThanOrEquals";
939
+ notIncludes: "notIncludes";
940
+ notMatches: "notMatches";
941
+ in: "in";
942
+ notIn: "notIn";
943
+ }>;
944
+ value: z.ZodOptional<z.ZodAny>;
945
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
946
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
947
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
948
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
949
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
950
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
951
+ }, z.core.$strip>>;
952
+ }, z.core.$strip>]>>]>>;
953
+ }, z.core.$strip>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
954
+ storage: z.ZodString;
955
+ conditions: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
956
+ operator: z.ZodEnum<{
957
+ includes: "includes";
958
+ endsWith: "endsWith";
959
+ startsWith: "startsWith";
960
+ matches: "matches";
961
+ contains: "contains";
962
+ after: "after";
963
+ before: "before";
964
+ equals: "equals";
965
+ notEquals: "notEquals";
966
+ exists: "exists";
967
+ notExists: "notExists";
968
+ greaterThan: "greaterThan";
969
+ greaterThanOrEquals: "greaterThanOrEquals";
970
+ lessThan: "lessThan";
971
+ lessThanOrEquals: "lessThanOrEquals";
972
+ notContains: "notContains";
973
+ semverEquals: "semverEquals";
974
+ semverNotEquals: "semverNotEquals";
975
+ semverGreaterThan: "semverGreaterThan";
976
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
977
+ semverLessThan: "semverLessThan";
978
+ semverLessThanOrEquals: "semverLessThanOrEquals";
979
+ notIncludes: "notIncludes";
980
+ notMatches: "notMatches";
981
+ in: "in";
982
+ notIn: "notIn";
983
+ }>;
984
+ value: z.ZodOptional<z.ZodAny>;
985
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
986
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
987
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
988
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
989
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
990
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
991
+ }, z.core.$strip>, z.ZodObject<{
992
+ and: z.ZodArray<z.ZodObject<{
993
+ operator: z.ZodEnum<{
994
+ includes: "includes";
995
+ endsWith: "endsWith";
996
+ startsWith: "startsWith";
997
+ matches: "matches";
998
+ contains: "contains";
999
+ after: "after";
1000
+ before: "before";
1001
+ equals: "equals";
1002
+ notEquals: "notEquals";
1003
+ exists: "exists";
1004
+ notExists: "notExists";
1005
+ greaterThan: "greaterThan";
1006
+ greaterThanOrEquals: "greaterThanOrEquals";
1007
+ lessThan: "lessThan";
1008
+ lessThanOrEquals: "lessThanOrEquals";
1009
+ notContains: "notContains";
1010
+ semverEquals: "semverEquals";
1011
+ semverNotEquals: "semverNotEquals";
1012
+ semverGreaterThan: "semverGreaterThan";
1013
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
1014
+ semverLessThan: "semverLessThan";
1015
+ semverLessThanOrEquals: "semverLessThanOrEquals";
1016
+ notIncludes: "notIncludes";
1017
+ notMatches: "notMatches";
1018
+ in: "in";
1019
+ notIn: "notIn";
1020
+ }>;
1021
+ value: z.ZodOptional<z.ZodAny>;
1022
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1023
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1024
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1025
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1026
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1027
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1028
+ }, z.core.$strip>>;
1029
+ }, z.core.$strip>, z.ZodObject<{
1030
+ or: z.ZodArray<z.ZodObject<{
1031
+ operator: z.ZodEnum<{
1032
+ includes: "includes";
1033
+ endsWith: "endsWith";
1034
+ startsWith: "startsWith";
1035
+ matches: "matches";
1036
+ contains: "contains";
1037
+ after: "after";
1038
+ before: "before";
1039
+ equals: "equals";
1040
+ notEquals: "notEquals";
1041
+ exists: "exists";
1042
+ notExists: "notExists";
1043
+ greaterThan: "greaterThan";
1044
+ greaterThanOrEquals: "greaterThanOrEquals";
1045
+ lessThan: "lessThan";
1046
+ lessThanOrEquals: "lessThanOrEquals";
1047
+ notContains: "notContains";
1048
+ semverEquals: "semverEquals";
1049
+ semverNotEquals: "semverNotEquals";
1050
+ semverGreaterThan: "semverGreaterThan";
1051
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
1052
+ semverLessThan: "semverLessThan";
1053
+ semverLessThanOrEquals: "semverLessThanOrEquals";
1054
+ notIncludes: "notIncludes";
1055
+ notMatches: "notMatches";
1056
+ in: "in";
1057
+ notIn: "notIn";
1058
+ }>;
1059
+ value: z.ZodOptional<z.ZodAny>;
1060
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1061
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1062
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1063
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1064
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1065
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1066
+ }, z.core.$strip>>;
1067
+ }, z.core.$strip>, z.ZodObject<{
1068
+ not: z.ZodArray<z.ZodObject<{
1069
+ operator: z.ZodEnum<{
1070
+ includes: "includes";
1071
+ endsWith: "endsWith";
1072
+ startsWith: "startsWith";
1073
+ matches: "matches";
1074
+ contains: "contains";
1075
+ after: "after";
1076
+ before: "before";
1077
+ equals: "equals";
1078
+ notEquals: "notEquals";
1079
+ exists: "exists";
1080
+ notExists: "notExists";
1081
+ greaterThan: "greaterThan";
1082
+ greaterThanOrEquals: "greaterThanOrEquals";
1083
+ lessThan: "lessThan";
1084
+ lessThanOrEquals: "lessThanOrEquals";
1085
+ notContains: "notContains";
1086
+ semverEquals: "semverEquals";
1087
+ semverNotEquals: "semverNotEquals";
1088
+ semverGreaterThan: "semverGreaterThan";
1089
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
1090
+ semverLessThan: "semverLessThan";
1091
+ semverLessThanOrEquals: "semverLessThanOrEquals";
1092
+ notIncludes: "notIncludes";
1093
+ notMatches: "notMatches";
1094
+ in: "in";
1095
+ notIn: "notIn";
1096
+ }>;
1097
+ value: z.ZodOptional<z.ZodAny>;
1098
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1099
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1100
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1101
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1102
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1103
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1104
+ }, z.core.$strip>>;
1105
+ }, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
1106
+ operator: z.ZodEnum<{
1107
+ includes: "includes";
1108
+ endsWith: "endsWith";
1109
+ startsWith: "startsWith";
1110
+ matches: "matches";
1111
+ contains: "contains";
1112
+ after: "after";
1113
+ before: "before";
1114
+ equals: "equals";
1115
+ notEquals: "notEquals";
1116
+ exists: "exists";
1117
+ notExists: "notExists";
1118
+ greaterThan: "greaterThan";
1119
+ greaterThanOrEquals: "greaterThanOrEquals";
1120
+ lessThan: "lessThan";
1121
+ lessThanOrEquals: "lessThanOrEquals";
1122
+ notContains: "notContains";
1123
+ semverEquals: "semverEquals";
1124
+ semverNotEquals: "semverNotEquals";
1125
+ semverGreaterThan: "semverGreaterThan";
1126
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
1127
+ semverLessThan: "semverLessThan";
1128
+ semverLessThanOrEquals: "semverLessThanOrEquals";
1129
+ notIncludes: "notIncludes";
1130
+ notMatches: "notMatches";
1131
+ in: "in";
1132
+ notIn: "notIn";
1133
+ }>;
1134
+ value: z.ZodOptional<z.ZodAny>;
1135
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1136
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1137
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1138
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1139
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1140
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1141
+ }, z.core.$strip>, z.ZodObject<{
1142
+ and: z.ZodArray<z.ZodObject<{
1143
+ operator: z.ZodEnum<{
1144
+ includes: "includes";
1145
+ endsWith: "endsWith";
1146
+ startsWith: "startsWith";
1147
+ matches: "matches";
1148
+ contains: "contains";
1149
+ after: "after";
1150
+ before: "before";
1151
+ equals: "equals";
1152
+ notEquals: "notEquals";
1153
+ exists: "exists";
1154
+ notExists: "notExists";
1155
+ greaterThan: "greaterThan";
1156
+ greaterThanOrEquals: "greaterThanOrEquals";
1157
+ lessThan: "lessThan";
1158
+ lessThanOrEquals: "lessThanOrEquals";
1159
+ notContains: "notContains";
1160
+ semverEquals: "semverEquals";
1161
+ semverNotEquals: "semverNotEquals";
1162
+ semverGreaterThan: "semverGreaterThan";
1163
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
1164
+ semverLessThan: "semverLessThan";
1165
+ semverLessThanOrEquals: "semverLessThanOrEquals";
1166
+ notIncludes: "notIncludes";
1167
+ notMatches: "notMatches";
1168
+ in: "in";
1169
+ notIn: "notIn";
1170
+ }>;
1171
+ value: z.ZodOptional<z.ZodAny>;
1172
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1173
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1174
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1175
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1176
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1177
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1178
+ }, z.core.$strip>>;
1179
+ }, z.core.$strip>, z.ZodObject<{
1180
+ or: z.ZodArray<z.ZodObject<{
1181
+ operator: z.ZodEnum<{
1182
+ includes: "includes";
1183
+ endsWith: "endsWith";
1184
+ startsWith: "startsWith";
1185
+ matches: "matches";
1186
+ contains: "contains";
1187
+ after: "after";
1188
+ before: "before";
1189
+ equals: "equals";
1190
+ notEquals: "notEquals";
1191
+ exists: "exists";
1192
+ notExists: "notExists";
1193
+ greaterThan: "greaterThan";
1194
+ greaterThanOrEquals: "greaterThanOrEquals";
1195
+ lessThan: "lessThan";
1196
+ lessThanOrEquals: "lessThanOrEquals";
1197
+ notContains: "notContains";
1198
+ semverEquals: "semverEquals";
1199
+ semverNotEquals: "semverNotEquals";
1200
+ semverGreaterThan: "semverGreaterThan";
1201
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
1202
+ semverLessThan: "semverLessThan";
1203
+ semverLessThanOrEquals: "semverLessThanOrEquals";
1204
+ notIncludes: "notIncludes";
1205
+ notMatches: "notMatches";
1206
+ in: "in";
1207
+ notIn: "notIn";
1208
+ }>;
1209
+ value: z.ZodOptional<z.ZodAny>;
1210
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1211
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1212
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1213
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1214
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1215
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1216
+ }, z.core.$strip>>;
1217
+ }, z.core.$strip>, z.ZodObject<{
1218
+ not: z.ZodArray<z.ZodObject<{
1219
+ operator: z.ZodEnum<{
1220
+ includes: "includes";
1221
+ endsWith: "endsWith";
1222
+ startsWith: "startsWith";
1223
+ matches: "matches";
1224
+ contains: "contains";
1225
+ after: "after";
1226
+ before: "before";
1227
+ equals: "equals";
1228
+ notEquals: "notEquals";
1229
+ exists: "exists";
1230
+ notExists: "notExists";
1231
+ greaterThan: "greaterThan";
1232
+ greaterThanOrEquals: "greaterThanOrEquals";
1233
+ lessThan: "lessThan";
1234
+ lessThanOrEquals: "lessThanOrEquals";
1235
+ notContains: "notContains";
1236
+ semverEquals: "semverEquals";
1237
+ semverNotEquals: "semverNotEquals";
1238
+ semverGreaterThan: "semverGreaterThan";
1239
+ semverGreaterThanOrEquals: "semverGreaterThanOrEquals";
1240
+ semverLessThan: "semverLessThan";
1241
+ semverLessThanOrEquals: "semverLessThanOrEquals";
1242
+ notIncludes: "notIncludes";
1243
+ notMatches: "notMatches";
1244
+ in: "in";
1245
+ notIn: "notIn";
1246
+ }>;
1247
+ value: z.ZodOptional<z.ZodAny>;
1248
+ source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1249
+ attribute: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1250
+ state: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1251
+ effect: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1252
+ payload: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1253
+ lookup: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1254
+ }, z.core.$strip>>;
1255
+ }, z.core.$strip>]>>]>>;
1256
+ }, z.core.$strip>]>>]>>;
1257
+ }, z.core.$strict>;