@crypto512/jicon-mcp 1.2.0 → 2.0.0

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 (161) hide show
  1. package/README.md +73 -67
  2. package/TOOL_LIST.md +785 -133
  3. package/dist/config/constants.d.ts +18 -7
  4. package/dist/config/constants.d.ts.map +1 -1
  5. package/dist/config/constants.js +21 -8
  6. package/dist/config/constants.js.map +1 -1
  7. package/dist/config/loader.d.ts +11 -11
  8. package/dist/config/loader.d.ts.map +1 -1
  9. package/dist/config/loader.js +53 -93
  10. package/dist/config/loader.js.map +1 -1
  11. package/dist/config/types.d.ts +3 -6
  12. package/dist/config/types.d.ts.map +1 -1
  13. package/dist/config/types.js +2 -4
  14. package/dist/config/types.js.map +1 -1
  15. package/dist/confluence/formatters.js +1 -1
  16. package/dist/confluence/formatters.js.map +1 -1
  17. package/dist/confluence/tools.d.ts +8 -12
  18. package/dist/confluence/tools.d.ts.map +1 -1
  19. package/dist/confluence/tools.js +285 -233
  20. package/dist/confluence/tools.js.map +1 -1
  21. package/dist/index.js +17 -26
  22. package/dist/index.js.map +1 -1
  23. package/dist/jira/formatters.d.ts +1 -0
  24. package/dist/jira/formatters.d.ts.map +1 -1
  25. package/dist/jira/formatters.js +13 -12
  26. package/dist/jira/formatters.js.map +1 -1
  27. package/dist/jira/tools.d.ts +4 -0
  28. package/dist/jira/tools.d.ts.map +1 -1
  29. package/dist/jira/tools.js +234 -44
  30. package/dist/jira/tools.js.map +1 -1
  31. package/dist/permissions/tool-registry.d.ts +2 -2
  32. package/dist/permissions/tool-registry.d.ts.map +1 -1
  33. package/dist/permissions/tool-registry.js +4 -2
  34. package/dist/permissions/tool-registry.js.map +1 -1
  35. package/dist/permissions/write-home-validator.d.ts.map +1 -1
  36. package/dist/permissions/write-home-validator.js +13 -3
  37. package/dist/permissions/write-home-validator.js.map +1 -1
  38. package/dist/tempo/defaults.d.ts +17 -0
  39. package/dist/tempo/defaults.d.ts.map +1 -0
  40. package/dist/tempo/defaults.js +26 -0
  41. package/dist/tempo/defaults.js.map +1 -0
  42. package/dist/tempo/tools.d.ts +5 -0
  43. package/dist/tempo/tools.d.ts.map +1 -1
  44. package/dist/tempo/tools.js +161 -35
  45. package/dist/tempo/tools.js.map +1 -1
  46. package/dist/utils/buffer-pipeline/index.d.ts +30 -0
  47. package/dist/utils/buffer-pipeline/index.d.ts.map +1 -0
  48. package/dist/utils/buffer-pipeline/index.js +317 -0
  49. package/dist/utils/buffer-pipeline/index.js.map +1 -0
  50. package/dist/utils/buffer-pipeline/output/csv.d.ts +20 -0
  51. package/dist/utils/buffer-pipeline/output/csv.d.ts.map +1 -0
  52. package/dist/utils/buffer-pipeline/output/csv.js +117 -0
  53. package/dist/utils/buffer-pipeline/output/csv.js.map +1 -0
  54. package/dist/utils/buffer-pipeline/output/json.d.ts +16 -0
  55. package/dist/utils/buffer-pipeline/output/json.d.ts.map +1 -0
  56. package/dist/utils/buffer-pipeline/output/json.js +48 -0
  57. package/dist/utils/buffer-pipeline/output/json.js.map +1 -0
  58. package/dist/utils/buffer-pipeline/output/markdown.d.ts +15 -0
  59. package/dist/utils/buffer-pipeline/output/markdown.d.ts.map +1 -0
  60. package/dist/utils/buffer-pipeline/output/markdown.js +105 -0
  61. package/dist/utils/buffer-pipeline/output/markdown.js.map +1 -0
  62. package/dist/utils/buffer-pipeline/output/xhtml-list.d.ts +16 -0
  63. package/dist/utils/buffer-pipeline/output/xhtml-list.d.ts.map +1 -0
  64. package/dist/utils/buffer-pipeline/output/xhtml-list.js +81 -0
  65. package/dist/utils/buffer-pipeline/output/xhtml-list.js.map +1 -0
  66. package/dist/utils/buffer-pipeline/output/xhtml-table.d.ts +15 -0
  67. package/dist/utils/buffer-pipeline/output/xhtml-table.d.ts.map +1 -0
  68. package/dist/utils/buffer-pipeline/output/xhtml-table.js +176 -0
  69. package/dist/utils/buffer-pipeline/output/xhtml-table.js.map +1 -0
  70. package/dist/utils/buffer-pipeline/schema.d.ts +1878 -0
  71. package/dist/utils/buffer-pipeline/schema.d.ts.map +1 -0
  72. package/dist/utils/buffer-pipeline/schema.js +168 -0
  73. package/dist/utils/buffer-pipeline/schema.js.map +1 -0
  74. package/dist/utils/buffer-pipeline/stages/filter.d.ts +32 -0
  75. package/dist/utils/buffer-pipeline/stages/filter.d.ts.map +1 -0
  76. package/dist/utils/buffer-pipeline/stages/filter.js +208 -0
  77. package/dist/utils/buffer-pipeline/stages/filter.js.map +1 -0
  78. package/dist/utils/buffer-pipeline/stages/format.d.ts +45 -0
  79. package/dist/utils/buffer-pipeline/stages/format.d.ts.map +1 -0
  80. package/dist/utils/buffer-pipeline/stages/format.js +160 -0
  81. package/dist/utils/buffer-pipeline/stages/format.js.map +1 -0
  82. package/dist/utils/buffer-pipeline/stages/group-by.d.ts +25 -0
  83. package/dist/utils/buffer-pipeline/stages/group-by.d.ts.map +1 -0
  84. package/dist/utils/buffer-pipeline/stages/group-by.js +190 -0
  85. package/dist/utils/buffer-pipeline/stages/group-by.js.map +1 -0
  86. package/dist/utils/buffer-pipeline/stages/select.d.ts +54 -0
  87. package/dist/utils/buffer-pipeline/stages/select.d.ts.map +1 -0
  88. package/dist/utils/buffer-pipeline/stages/select.js +228 -0
  89. package/dist/utils/buffer-pipeline/stages/select.js.map +1 -0
  90. package/dist/utils/buffer-pipeline/stages/sort.d.ts +20 -0
  91. package/dist/utils/buffer-pipeline/stages/sort.d.ts.map +1 -0
  92. package/dist/utils/buffer-pipeline/stages/sort.js +96 -0
  93. package/dist/utils/buffer-pipeline/stages/sort.js.map +1 -0
  94. package/dist/utils/buffer-pipeline/types.d.ts +277 -0
  95. package/dist/utils/buffer-pipeline/types.d.ts.map +1 -0
  96. package/dist/utils/buffer-pipeline/types.js +8 -0
  97. package/dist/utils/buffer-pipeline/types.js.map +1 -0
  98. package/dist/utils/buffer-tools.d.ts +749 -19
  99. package/dist/utils/buffer-tools.d.ts.map +1 -1
  100. package/dist/utils/buffer-tools.js +738 -491
  101. package/dist/utils/buffer-tools.js.map +1 -1
  102. package/dist/utils/content-buffer.d.ts +55 -4
  103. package/dist/utils/content-buffer.d.ts.map +1 -1
  104. package/dist/utils/content-buffer.js +107 -9
  105. package/dist/utils/content-buffer.js.map +1 -1
  106. package/dist/utils/jicon-help.d.ts +1 -1
  107. package/dist/utils/jicon-help.d.ts.map +1 -1
  108. package/dist/utils/jicon-help.js +345 -99
  109. package/dist/utils/jicon-help.js.map +1 -1
  110. package/dist/utils/json-structure.d.ts +121 -0
  111. package/dist/utils/json-structure.d.ts.map +1 -0
  112. package/dist/utils/json-structure.js +637 -0
  113. package/dist/utils/json-structure.js.map +1 -0
  114. package/dist/utils/plantuml/include-expander.d.ts +31 -30
  115. package/dist/utils/plantuml/include-expander.d.ts.map +1 -1
  116. package/dist/utils/plantuml/include-expander.js +167 -133
  117. package/dist/utils/plantuml/include-expander.js.map +1 -1
  118. package/dist/utils/plantuml/index.d.ts +3 -3
  119. package/dist/utils/plantuml/index.d.ts.map +1 -1
  120. package/dist/utils/plantuml/index.js +4 -4
  121. package/dist/utils/plantuml/index.js.map +1 -1
  122. package/dist/utils/plantuml/service.d.ts +13 -24
  123. package/dist/utils/plantuml/service.d.ts.map +1 -1
  124. package/dist/utils/plantuml/service.js +49 -99
  125. package/dist/utils/plantuml/service.js.map +1 -1
  126. package/dist/utils/plantuml/tools.d.ts.map +1 -1
  127. package/dist/utils/plantuml/tools.js +33 -72
  128. package/dist/utils/plantuml/tools.js.map +1 -1
  129. package/dist/utils/plantuml/types.d.ts +1 -35
  130. package/dist/utils/plantuml/types.d.ts.map +1 -1
  131. package/dist/utils/plantuml/types.js +1 -11
  132. package/dist/utils/plantuml/types.js.map +1 -1
  133. package/dist/utils/plantuml/validation-helper.d.ts +1 -1
  134. package/dist/utils/plantuml/validation-helper.js +12 -12
  135. package/dist/utils/plantuml/validation-helper.js.map +1 -1
  136. package/dist/utils/response-formatter.d.ts +68 -0
  137. package/dist/utils/response-formatter.d.ts.map +1 -1
  138. package/dist/utils/response-formatter.js +186 -78
  139. package/dist/utils/response-formatter.js.map +1 -1
  140. package/dist/utils/url-tools.d.ts.map +1 -1
  141. package/dist/utils/url-tools.js +22 -0
  142. package/dist/utils/url-tools.js.map +1 -1
  143. package/dist/utils/xhtml/error-locator.js +2 -2
  144. package/dist/utils/xhtml/error-locator.js.map +1 -1
  145. package/dist/utils/xhtml/index.d.ts +1 -1
  146. package/dist/utils/xhtml/index.d.ts.map +1 -1
  147. package/dist/utils/xhtml/index.js +1 -1
  148. package/dist/utils/xhtml/index.js.map +1 -1
  149. package/dist/utils/xhtml/parser.d.ts +34 -5
  150. package/dist/utils/xhtml/parser.d.ts.map +1 -1
  151. package/dist/utils/xhtml/parser.js +66 -11
  152. package/dist/utils/xhtml/parser.js.map +1 -1
  153. package/dist/utils/xhtml/plantuml.d.ts.map +1 -1
  154. package/dist/utils/xhtml/plantuml.js +5 -3
  155. package/dist/utils/xhtml/plantuml.js.map +1 -1
  156. package/dist/utils/xhtml/serializer.d.ts.map +1 -1
  157. package/dist/utils/xhtml/serializer.js +12 -15
  158. package/dist/utils/xhtml/serializer.js.map +1 -1
  159. package/dist/utils/xhtml/types.d.ts +1 -0
  160. package/dist/utils/xhtml/types.d.ts.map +1 -1
  161. package/package.json +12 -4
@@ -0,0 +1,1878 @@
1
+ /**
2
+ * Buffer Pipeline Zod Schemas
3
+ *
4
+ * Validation schemas for pipeline definitions.
5
+ * Used by the buffer_pipeline tool for input validation.
6
+ */
7
+ import { z } from "zod";
8
+ export declare const FieldMappingSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
9
+ from: z.ZodOptional<z.ZodString>;
10
+ field: z.ZodOptional<z.ZodString>;
11
+ as: z.ZodOptional<z.ZodString>;
12
+ transform: z.ZodOptional<z.ZodEnum<["uppercase", "lowercase", "date", "number", "boolean", "string"]>>;
13
+ }, "strip", z.ZodTypeAny, {
14
+ field?: string | undefined;
15
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
16
+ from?: string | undefined;
17
+ as?: string | undefined;
18
+ }, {
19
+ field?: string | undefined;
20
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
21
+ from?: string | undefined;
22
+ as?: string | undefined;
23
+ }>, {
24
+ field?: string | undefined;
25
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
26
+ from?: string | undefined;
27
+ as?: string | undefined;
28
+ }, {
29
+ field?: string | undefined;
30
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
31
+ from?: string | undefined;
32
+ as?: string | undefined;
33
+ }>, {
34
+ from: string;
35
+ as: string | undefined;
36
+ transform: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
37
+ }, {
38
+ field?: string | undefined;
39
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
40
+ from?: string | undefined;
41
+ as?: string | undefined;
42
+ }>;
43
+ export declare const FilterOperatorSchema: z.ZodEnum<["eq", "ne", "gt", "lt", "gte", "lte", "contains", "startsWith", "endsWith", "in", "notIn", "exists", "notExists", "regex", "empty", "notEmpty"]>;
44
+ export declare const FilterConditionSchema: z.ZodType<{
45
+ field: string;
46
+ operator: z.infer<typeof FilterOperatorSchema>;
47
+ value?: unknown;
48
+ or?: Array<{
49
+ field: string;
50
+ operator: z.infer<typeof FilterOperatorSchema>;
51
+ value?: unknown;
52
+ or?: unknown[];
53
+ }>;
54
+ }>;
55
+ export declare const AggregationFunctionSchema: z.ZodEnum<["count", "sum", "avg", "min", "max", "first", "last", "list", "unique"]>;
56
+ export declare const AggregationSchema: z.ZodObject<{
57
+ function: z.ZodEnum<["count", "sum", "avg", "min", "max", "first", "last", "list", "unique"]>;
58
+ field: z.ZodOptional<z.ZodString>;
59
+ as: z.ZodString;
60
+ }, "strip", z.ZodTypeAny, {
61
+ function: "count" | "sum" | "avg" | "min" | "max" | "first" | "last" | "list" | "unique";
62
+ as: string;
63
+ field?: string | undefined;
64
+ }, {
65
+ function: "count" | "sum" | "avg" | "min" | "max" | "first" | "last" | "list" | "unique";
66
+ as: string;
67
+ field?: string | undefined;
68
+ }>;
69
+ export declare const GroupBySchema: z.ZodObject<{
70
+ field: z.ZodString;
71
+ aggregations: z.ZodArray<z.ZodObject<{
72
+ function: z.ZodEnum<["count", "sum", "avg", "min", "max", "first", "last", "list", "unique"]>;
73
+ field: z.ZodOptional<z.ZodString>;
74
+ as: z.ZodString;
75
+ }, "strip", z.ZodTypeAny, {
76
+ function: "count" | "sum" | "avg" | "min" | "max" | "first" | "last" | "list" | "unique";
77
+ as: string;
78
+ field?: string | undefined;
79
+ }, {
80
+ function: "count" | "sum" | "avg" | "min" | "max" | "first" | "last" | "list" | "unique";
81
+ as: string;
82
+ field?: string | undefined;
83
+ }>, "many">;
84
+ }, "strip", z.ZodTypeAny, {
85
+ field: string;
86
+ aggregations: {
87
+ function: "count" | "sum" | "avg" | "min" | "max" | "first" | "last" | "list" | "unique";
88
+ as: string;
89
+ field?: string | undefined;
90
+ }[];
91
+ }, {
92
+ field: string;
93
+ aggregations: {
94
+ function: "count" | "sum" | "avg" | "min" | "max" | "first" | "last" | "list" | "unique";
95
+ as: string;
96
+ field?: string | undefined;
97
+ }[];
98
+ }>;
99
+ export declare const SortSchema: z.ZodObject<{
100
+ field: z.ZodString;
101
+ direction: z.ZodDefault<z.ZodEnum<["asc", "desc"]>>;
102
+ }, "strip", z.ZodTypeAny, {
103
+ field: string;
104
+ direction: "desc" | "asc";
105
+ }, {
106
+ field: string;
107
+ direction?: "desc" | "asc" | undefined;
108
+ }>;
109
+ export declare const StyleSchema: z.ZodObject<{
110
+ cssClass: z.ZodOptional<z.ZodString>;
111
+ prefix: z.ZodOptional<z.ZodString>;
112
+ suffix: z.ZodOptional<z.ZodString>;
113
+ color: z.ZodOptional<z.ZodString>;
114
+ backgroundColor: z.ZodOptional<z.ZodString>;
115
+ bold: z.ZodOptional<z.ZodBoolean>;
116
+ italic: z.ZodOptional<z.ZodBoolean>;
117
+ icon: z.ZodOptional<z.ZodString>;
118
+ }, "strip", z.ZodTypeAny, {
119
+ cssClass?: string | undefined;
120
+ prefix?: string | undefined;
121
+ suffix?: string | undefined;
122
+ color?: string | undefined;
123
+ backgroundColor?: string | undefined;
124
+ bold?: boolean | undefined;
125
+ italic?: boolean | undefined;
126
+ icon?: string | undefined;
127
+ }, {
128
+ cssClass?: string | undefined;
129
+ prefix?: string | undefined;
130
+ suffix?: string | undefined;
131
+ color?: string | undefined;
132
+ backgroundColor?: string | undefined;
133
+ bold?: boolean | undefined;
134
+ italic?: boolean | undefined;
135
+ icon?: string | undefined;
136
+ }>;
137
+ export declare const ConditionalFormatSchema: z.ZodObject<{
138
+ condition: z.ZodType<{
139
+ field: string;
140
+ operator: z.infer<typeof FilterOperatorSchema>;
141
+ value?: unknown;
142
+ or?: Array<{
143
+ field: string;
144
+ operator: z.infer<typeof FilterOperatorSchema>;
145
+ value?: unknown;
146
+ or?: unknown[];
147
+ }>;
148
+ }, z.ZodTypeDef, {
149
+ field: string;
150
+ operator: z.infer<typeof FilterOperatorSchema>;
151
+ value?: unknown;
152
+ or?: Array<{
153
+ field: string;
154
+ operator: z.infer<typeof FilterOperatorSchema>;
155
+ value?: unknown;
156
+ or?: unknown[];
157
+ }>;
158
+ }>;
159
+ style: z.ZodObject<{
160
+ cssClass: z.ZodOptional<z.ZodString>;
161
+ prefix: z.ZodOptional<z.ZodString>;
162
+ suffix: z.ZodOptional<z.ZodString>;
163
+ color: z.ZodOptional<z.ZodString>;
164
+ backgroundColor: z.ZodOptional<z.ZodString>;
165
+ bold: z.ZodOptional<z.ZodBoolean>;
166
+ italic: z.ZodOptional<z.ZodBoolean>;
167
+ icon: z.ZodOptional<z.ZodString>;
168
+ }, "strip", z.ZodTypeAny, {
169
+ cssClass?: string | undefined;
170
+ prefix?: string | undefined;
171
+ suffix?: string | undefined;
172
+ color?: string | undefined;
173
+ backgroundColor?: string | undefined;
174
+ bold?: boolean | undefined;
175
+ italic?: boolean | undefined;
176
+ icon?: string | undefined;
177
+ }, {
178
+ cssClass?: string | undefined;
179
+ prefix?: string | undefined;
180
+ suffix?: string | undefined;
181
+ color?: string | undefined;
182
+ backgroundColor?: string | undefined;
183
+ bold?: boolean | undefined;
184
+ italic?: boolean | undefined;
185
+ icon?: string | undefined;
186
+ }>;
187
+ fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
188
+ }, "strip", z.ZodTypeAny, {
189
+ condition: {
190
+ field: string;
191
+ operator: z.infer<typeof FilterOperatorSchema>;
192
+ value?: unknown;
193
+ or?: Array<{
194
+ field: string;
195
+ operator: z.infer<typeof FilterOperatorSchema>;
196
+ value?: unknown;
197
+ or?: unknown[];
198
+ }>;
199
+ };
200
+ style: {
201
+ cssClass?: string | undefined;
202
+ prefix?: string | undefined;
203
+ suffix?: string | undefined;
204
+ color?: string | undefined;
205
+ backgroundColor?: string | undefined;
206
+ bold?: boolean | undefined;
207
+ italic?: boolean | undefined;
208
+ icon?: string | undefined;
209
+ };
210
+ fields?: string[] | undefined;
211
+ }, {
212
+ condition: {
213
+ field: string;
214
+ operator: z.infer<typeof FilterOperatorSchema>;
215
+ value?: unknown;
216
+ or?: Array<{
217
+ field: string;
218
+ operator: z.infer<typeof FilterOperatorSchema>;
219
+ value?: unknown;
220
+ or?: unknown[];
221
+ }>;
222
+ };
223
+ style: {
224
+ cssClass?: string | undefined;
225
+ prefix?: string | undefined;
226
+ suffix?: string | undefined;
227
+ color?: string | undefined;
228
+ backgroundColor?: string | undefined;
229
+ bold?: boolean | undefined;
230
+ italic?: boolean | undefined;
231
+ icon?: string | undefined;
232
+ };
233
+ fields?: string[] | undefined;
234
+ }>;
235
+ export declare const LinkSchema: z.ZodObject<{
236
+ type: z.ZodEnum<["jira", "confluence", "tempo", "custom"]>;
237
+ template: z.ZodOptional<z.ZodString>;
238
+ }, "strip", z.ZodTypeAny, {
239
+ type: "jira" | "confluence" | "tempo" | "custom";
240
+ template?: string | undefined;
241
+ }, {
242
+ type: "jira" | "confluence" | "tempo" | "custom";
243
+ template?: string | undefined;
244
+ }>;
245
+ export declare const TableColumnSchema: z.ZodObject<{
246
+ field: z.ZodString;
247
+ header: z.ZodString;
248
+ link: z.ZodOptional<z.ZodObject<{
249
+ type: z.ZodEnum<["jira", "confluence", "tempo", "custom"]>;
250
+ template: z.ZodOptional<z.ZodString>;
251
+ }, "strip", z.ZodTypeAny, {
252
+ type: "jira" | "confluence" | "tempo" | "custom";
253
+ template?: string | undefined;
254
+ }, {
255
+ type: "jira" | "confluence" | "tempo" | "custom";
256
+ template?: string | undefined;
257
+ }>>;
258
+ width: z.ZodOptional<z.ZodString>;
259
+ align: z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>;
260
+ }, "strip", z.ZodTypeAny, {
261
+ field: string;
262
+ header: string;
263
+ link?: {
264
+ type: "jira" | "confluence" | "tempo" | "custom";
265
+ template?: string | undefined;
266
+ } | undefined;
267
+ width?: string | undefined;
268
+ align?: "left" | "center" | "right" | undefined;
269
+ }, {
270
+ field: string;
271
+ header: string;
272
+ link?: {
273
+ type: "jira" | "confluence" | "tempo" | "custom";
274
+ template?: string | undefined;
275
+ } | undefined;
276
+ width?: string | undefined;
277
+ align?: "left" | "center" | "right" | undefined;
278
+ }>;
279
+ export declare const TableOutputSchema: z.ZodObject<{
280
+ title: z.ZodOptional<z.ZodString>;
281
+ columns: z.ZodArray<z.ZodObject<{
282
+ field: z.ZodString;
283
+ header: z.ZodString;
284
+ link: z.ZodOptional<z.ZodObject<{
285
+ type: z.ZodEnum<["jira", "confluence", "tempo", "custom"]>;
286
+ template: z.ZodOptional<z.ZodString>;
287
+ }, "strip", z.ZodTypeAny, {
288
+ type: "jira" | "confluence" | "tempo" | "custom";
289
+ template?: string | undefined;
290
+ }, {
291
+ type: "jira" | "confluence" | "tempo" | "custom";
292
+ template?: string | undefined;
293
+ }>>;
294
+ width: z.ZodOptional<z.ZodString>;
295
+ align: z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>;
296
+ }, "strip", z.ZodTypeAny, {
297
+ field: string;
298
+ header: string;
299
+ link?: {
300
+ type: "jira" | "confluence" | "tempo" | "custom";
301
+ template?: string | undefined;
302
+ } | undefined;
303
+ width?: string | undefined;
304
+ align?: "left" | "center" | "right" | undefined;
305
+ }, {
306
+ field: string;
307
+ header: string;
308
+ link?: {
309
+ type: "jira" | "confluence" | "tempo" | "custom";
310
+ template?: string | undefined;
311
+ } | undefined;
312
+ width?: string | undefined;
313
+ align?: "left" | "center" | "right" | undefined;
314
+ }>, "many">;
315
+ showRowNumbers: z.ZodOptional<z.ZodBoolean>;
316
+ tableClass: z.ZodOptional<z.ZodString>;
317
+ }, "strip", z.ZodTypeAny, {
318
+ columns: {
319
+ field: string;
320
+ header: string;
321
+ link?: {
322
+ type: "jira" | "confluence" | "tempo" | "custom";
323
+ template?: string | undefined;
324
+ } | undefined;
325
+ width?: string | undefined;
326
+ align?: "left" | "center" | "right" | undefined;
327
+ }[];
328
+ title?: string | undefined;
329
+ showRowNumbers?: boolean | undefined;
330
+ tableClass?: string | undefined;
331
+ }, {
332
+ columns: {
333
+ field: string;
334
+ header: string;
335
+ link?: {
336
+ type: "jira" | "confluence" | "tempo" | "custom";
337
+ template?: string | undefined;
338
+ } | undefined;
339
+ width?: string | undefined;
340
+ align?: "left" | "center" | "right" | undefined;
341
+ }[];
342
+ title?: string | undefined;
343
+ showRowNumbers?: boolean | undefined;
344
+ tableClass?: string | undefined;
345
+ }>;
346
+ export declare const ListOutputSchema: z.ZodObject<{
347
+ title: z.ZodOptional<z.ZodString>;
348
+ template: z.ZodString;
349
+ style: z.ZodOptional<z.ZodEnum<["bullet", "numbered", "none"]>>;
350
+ }, "strip", z.ZodTypeAny, {
351
+ template: string;
352
+ title?: string | undefined;
353
+ style?: "bullet" | "numbered" | "none" | undefined;
354
+ }, {
355
+ template: string;
356
+ title?: string | undefined;
357
+ style?: "bullet" | "numbered" | "none" | undefined;
358
+ }>;
359
+ export declare const OutputTypeSchema: z.ZodEnum<["xhtml_table", "xhtml_list", "json", "csv", "markdown"]>;
360
+ export declare const OutputSchema: z.ZodEffects<z.ZodObject<{
361
+ type: z.ZodEnum<["xhtml_table", "xhtml_list", "json", "csv", "markdown"]>;
362
+ table: z.ZodOptional<z.ZodObject<{
363
+ title: z.ZodOptional<z.ZodString>;
364
+ columns: z.ZodArray<z.ZodObject<{
365
+ field: z.ZodString;
366
+ header: z.ZodString;
367
+ link: z.ZodOptional<z.ZodObject<{
368
+ type: z.ZodEnum<["jira", "confluence", "tempo", "custom"]>;
369
+ template: z.ZodOptional<z.ZodString>;
370
+ }, "strip", z.ZodTypeAny, {
371
+ type: "jira" | "confluence" | "tempo" | "custom";
372
+ template?: string | undefined;
373
+ }, {
374
+ type: "jira" | "confluence" | "tempo" | "custom";
375
+ template?: string | undefined;
376
+ }>>;
377
+ width: z.ZodOptional<z.ZodString>;
378
+ align: z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>;
379
+ }, "strip", z.ZodTypeAny, {
380
+ field: string;
381
+ header: string;
382
+ link?: {
383
+ type: "jira" | "confluence" | "tempo" | "custom";
384
+ template?: string | undefined;
385
+ } | undefined;
386
+ width?: string | undefined;
387
+ align?: "left" | "center" | "right" | undefined;
388
+ }, {
389
+ field: string;
390
+ header: string;
391
+ link?: {
392
+ type: "jira" | "confluence" | "tempo" | "custom";
393
+ template?: string | undefined;
394
+ } | undefined;
395
+ width?: string | undefined;
396
+ align?: "left" | "center" | "right" | undefined;
397
+ }>, "many">;
398
+ showRowNumbers: z.ZodOptional<z.ZodBoolean>;
399
+ tableClass: z.ZodOptional<z.ZodString>;
400
+ }, "strip", z.ZodTypeAny, {
401
+ columns: {
402
+ field: string;
403
+ header: string;
404
+ link?: {
405
+ type: "jira" | "confluence" | "tempo" | "custom";
406
+ template?: string | undefined;
407
+ } | undefined;
408
+ width?: string | undefined;
409
+ align?: "left" | "center" | "right" | undefined;
410
+ }[];
411
+ title?: string | undefined;
412
+ showRowNumbers?: boolean | undefined;
413
+ tableClass?: string | undefined;
414
+ }, {
415
+ columns: {
416
+ field: string;
417
+ header: string;
418
+ link?: {
419
+ type: "jira" | "confluence" | "tempo" | "custom";
420
+ template?: string | undefined;
421
+ } | undefined;
422
+ width?: string | undefined;
423
+ align?: "left" | "center" | "right" | undefined;
424
+ }[];
425
+ title?: string | undefined;
426
+ showRowNumbers?: boolean | undefined;
427
+ tableClass?: string | undefined;
428
+ }>>;
429
+ list: z.ZodOptional<z.ZodObject<{
430
+ title: z.ZodOptional<z.ZodString>;
431
+ template: z.ZodString;
432
+ style: z.ZodOptional<z.ZodEnum<["bullet", "numbered", "none"]>>;
433
+ }, "strip", z.ZodTypeAny, {
434
+ template: string;
435
+ title?: string | undefined;
436
+ style?: "bullet" | "numbered" | "none" | undefined;
437
+ }, {
438
+ template: string;
439
+ title?: string | undefined;
440
+ style?: "bullet" | "numbered" | "none" | undefined;
441
+ }>>;
442
+ includeMetadata: z.ZodOptional<z.ZodBoolean>;
443
+ }, "strip", z.ZodTypeAny, {
444
+ type: "json" | "xhtml_table" | "xhtml_list" | "csv" | "markdown";
445
+ table?: {
446
+ columns: {
447
+ field: string;
448
+ header: string;
449
+ link?: {
450
+ type: "jira" | "confluence" | "tempo" | "custom";
451
+ template?: string | undefined;
452
+ } | undefined;
453
+ width?: string | undefined;
454
+ align?: "left" | "center" | "right" | undefined;
455
+ }[];
456
+ title?: string | undefined;
457
+ showRowNumbers?: boolean | undefined;
458
+ tableClass?: string | undefined;
459
+ } | undefined;
460
+ list?: {
461
+ template: string;
462
+ title?: string | undefined;
463
+ style?: "bullet" | "numbered" | "none" | undefined;
464
+ } | undefined;
465
+ includeMetadata?: boolean | undefined;
466
+ }, {
467
+ type: "json" | "xhtml_table" | "xhtml_list" | "csv" | "markdown";
468
+ table?: {
469
+ columns: {
470
+ field: string;
471
+ header: string;
472
+ link?: {
473
+ type: "jira" | "confluence" | "tempo" | "custom";
474
+ template?: string | undefined;
475
+ } | undefined;
476
+ width?: string | undefined;
477
+ align?: "left" | "center" | "right" | undefined;
478
+ }[];
479
+ title?: string | undefined;
480
+ showRowNumbers?: boolean | undefined;
481
+ tableClass?: string | undefined;
482
+ } | undefined;
483
+ list?: {
484
+ template: string;
485
+ title?: string | undefined;
486
+ style?: "bullet" | "numbered" | "none" | undefined;
487
+ } | undefined;
488
+ includeMetadata?: boolean | undefined;
489
+ }>, {
490
+ type: "json" | "xhtml_table" | "xhtml_list" | "csv" | "markdown";
491
+ table?: {
492
+ columns: {
493
+ field: string;
494
+ header: string;
495
+ link?: {
496
+ type: "jira" | "confluence" | "tempo" | "custom";
497
+ template?: string | undefined;
498
+ } | undefined;
499
+ width?: string | undefined;
500
+ align?: "left" | "center" | "right" | undefined;
501
+ }[];
502
+ title?: string | undefined;
503
+ showRowNumbers?: boolean | undefined;
504
+ tableClass?: string | undefined;
505
+ } | undefined;
506
+ list?: {
507
+ template: string;
508
+ title?: string | undefined;
509
+ style?: "bullet" | "numbered" | "none" | undefined;
510
+ } | undefined;
511
+ includeMetadata?: boolean | undefined;
512
+ }, {
513
+ type: "json" | "xhtml_table" | "xhtml_list" | "csv" | "markdown";
514
+ table?: {
515
+ columns: {
516
+ field: string;
517
+ header: string;
518
+ link?: {
519
+ type: "jira" | "confluence" | "tempo" | "custom";
520
+ template?: string | undefined;
521
+ } | undefined;
522
+ width?: string | undefined;
523
+ align?: "left" | "center" | "right" | undefined;
524
+ }[];
525
+ title?: string | undefined;
526
+ showRowNumbers?: boolean | undefined;
527
+ tableClass?: string | undefined;
528
+ } | undefined;
529
+ list?: {
530
+ template: string;
531
+ title?: string | undefined;
532
+ style?: "bullet" | "numbered" | "none" | undefined;
533
+ } | undefined;
534
+ includeMetadata?: boolean | undefined;
535
+ }>;
536
+ export declare const SelectSchema: z.ZodObject<{
537
+ fields: z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodObject<{
538
+ from: z.ZodOptional<z.ZodString>;
539
+ field: z.ZodOptional<z.ZodString>;
540
+ as: z.ZodOptional<z.ZodString>;
541
+ transform: z.ZodOptional<z.ZodEnum<["uppercase", "lowercase", "date", "number", "boolean", "string"]>>;
542
+ }, "strip", z.ZodTypeAny, {
543
+ field?: string | undefined;
544
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
545
+ from?: string | undefined;
546
+ as?: string | undefined;
547
+ }, {
548
+ field?: string | undefined;
549
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
550
+ from?: string | undefined;
551
+ as?: string | undefined;
552
+ }>, {
553
+ field?: string | undefined;
554
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
555
+ from?: string | undefined;
556
+ as?: string | undefined;
557
+ }, {
558
+ field?: string | undefined;
559
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
560
+ from?: string | undefined;
561
+ as?: string | undefined;
562
+ }>, {
563
+ from: string;
564
+ as: string | undefined;
565
+ transform: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
566
+ }, {
567
+ field?: string | undefined;
568
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
569
+ from?: string | undefined;
570
+ as?: string | undefined;
571
+ }>, "many">;
572
+ }, "strip", z.ZodTypeAny, {
573
+ fields: {
574
+ from: string;
575
+ as: string | undefined;
576
+ transform: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
577
+ }[];
578
+ }, {
579
+ fields: {
580
+ field?: string | undefined;
581
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
582
+ from?: string | undefined;
583
+ as?: string | undefined;
584
+ }[];
585
+ }>;
586
+ export declare const PipelineSchema: z.ZodObject<{
587
+ select: z.ZodOptional<z.ZodObject<{
588
+ fields: z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodObject<{
589
+ from: z.ZodOptional<z.ZodString>;
590
+ field: z.ZodOptional<z.ZodString>;
591
+ as: z.ZodOptional<z.ZodString>;
592
+ transform: z.ZodOptional<z.ZodEnum<["uppercase", "lowercase", "date", "number", "boolean", "string"]>>;
593
+ }, "strip", z.ZodTypeAny, {
594
+ field?: string | undefined;
595
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
596
+ from?: string | undefined;
597
+ as?: string | undefined;
598
+ }, {
599
+ field?: string | undefined;
600
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
601
+ from?: string | undefined;
602
+ as?: string | undefined;
603
+ }>, {
604
+ field?: string | undefined;
605
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
606
+ from?: string | undefined;
607
+ as?: string | undefined;
608
+ }, {
609
+ field?: string | undefined;
610
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
611
+ from?: string | undefined;
612
+ as?: string | undefined;
613
+ }>, {
614
+ from: string;
615
+ as: string | undefined;
616
+ transform: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
617
+ }, {
618
+ field?: string | undefined;
619
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
620
+ from?: string | undefined;
621
+ as?: string | undefined;
622
+ }>, "many">;
623
+ }, "strip", z.ZodTypeAny, {
624
+ fields: {
625
+ from: string;
626
+ as: string | undefined;
627
+ transform: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
628
+ }[];
629
+ }, {
630
+ fields: {
631
+ field?: string | undefined;
632
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
633
+ from?: string | undefined;
634
+ as?: string | undefined;
635
+ }[];
636
+ }>>;
637
+ filter: z.ZodOptional<z.ZodArray<z.ZodType<{
638
+ field: string;
639
+ operator: z.infer<typeof FilterOperatorSchema>;
640
+ value?: unknown;
641
+ or?: Array<{
642
+ field: string;
643
+ operator: z.infer<typeof FilterOperatorSchema>;
644
+ value?: unknown;
645
+ or?: unknown[];
646
+ }>;
647
+ }, z.ZodTypeDef, {
648
+ field: string;
649
+ operator: z.infer<typeof FilterOperatorSchema>;
650
+ value?: unknown;
651
+ or?: Array<{
652
+ field: string;
653
+ operator: z.infer<typeof FilterOperatorSchema>;
654
+ value?: unknown;
655
+ or?: unknown[];
656
+ }>;
657
+ }>, "many">>;
658
+ groupBy: z.ZodOptional<z.ZodObject<{
659
+ field: z.ZodString;
660
+ aggregations: z.ZodArray<z.ZodObject<{
661
+ function: z.ZodEnum<["count", "sum", "avg", "min", "max", "first", "last", "list", "unique"]>;
662
+ field: z.ZodOptional<z.ZodString>;
663
+ as: z.ZodString;
664
+ }, "strip", z.ZodTypeAny, {
665
+ function: "count" | "sum" | "avg" | "min" | "max" | "first" | "last" | "list" | "unique";
666
+ as: string;
667
+ field?: string | undefined;
668
+ }, {
669
+ function: "count" | "sum" | "avg" | "min" | "max" | "first" | "last" | "list" | "unique";
670
+ as: string;
671
+ field?: string | undefined;
672
+ }>, "many">;
673
+ }, "strip", z.ZodTypeAny, {
674
+ field: string;
675
+ aggregations: {
676
+ function: "count" | "sum" | "avg" | "min" | "max" | "first" | "last" | "list" | "unique";
677
+ as: string;
678
+ field?: string | undefined;
679
+ }[];
680
+ }, {
681
+ field: string;
682
+ aggregations: {
683
+ function: "count" | "sum" | "avg" | "min" | "max" | "first" | "last" | "list" | "unique";
684
+ as: string;
685
+ field?: string | undefined;
686
+ }[];
687
+ }>>;
688
+ sort: z.ZodOptional<z.ZodArray<z.ZodObject<{
689
+ field: z.ZodString;
690
+ direction: z.ZodDefault<z.ZodEnum<["asc", "desc"]>>;
691
+ }, "strip", z.ZodTypeAny, {
692
+ field: string;
693
+ direction: "desc" | "asc";
694
+ }, {
695
+ field: string;
696
+ direction?: "desc" | "asc" | undefined;
697
+ }>, "many">>;
698
+ limit: z.ZodOptional<z.ZodNumber>;
699
+ format: z.ZodOptional<z.ZodArray<z.ZodObject<{
700
+ condition: z.ZodType<{
701
+ field: string;
702
+ operator: z.infer<typeof FilterOperatorSchema>;
703
+ value?: unknown;
704
+ or?: Array<{
705
+ field: string;
706
+ operator: z.infer<typeof FilterOperatorSchema>;
707
+ value?: unknown;
708
+ or?: unknown[];
709
+ }>;
710
+ }, z.ZodTypeDef, {
711
+ field: string;
712
+ operator: z.infer<typeof FilterOperatorSchema>;
713
+ value?: unknown;
714
+ or?: Array<{
715
+ field: string;
716
+ operator: z.infer<typeof FilterOperatorSchema>;
717
+ value?: unknown;
718
+ or?: unknown[];
719
+ }>;
720
+ }>;
721
+ style: z.ZodObject<{
722
+ cssClass: z.ZodOptional<z.ZodString>;
723
+ prefix: z.ZodOptional<z.ZodString>;
724
+ suffix: z.ZodOptional<z.ZodString>;
725
+ color: z.ZodOptional<z.ZodString>;
726
+ backgroundColor: z.ZodOptional<z.ZodString>;
727
+ bold: z.ZodOptional<z.ZodBoolean>;
728
+ italic: z.ZodOptional<z.ZodBoolean>;
729
+ icon: z.ZodOptional<z.ZodString>;
730
+ }, "strip", z.ZodTypeAny, {
731
+ cssClass?: string | undefined;
732
+ prefix?: string | undefined;
733
+ suffix?: string | undefined;
734
+ color?: string | undefined;
735
+ backgroundColor?: string | undefined;
736
+ bold?: boolean | undefined;
737
+ italic?: boolean | undefined;
738
+ icon?: string | undefined;
739
+ }, {
740
+ cssClass?: string | undefined;
741
+ prefix?: string | undefined;
742
+ suffix?: string | undefined;
743
+ color?: string | undefined;
744
+ backgroundColor?: string | undefined;
745
+ bold?: boolean | undefined;
746
+ italic?: boolean | undefined;
747
+ icon?: string | undefined;
748
+ }>;
749
+ fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
750
+ }, "strip", z.ZodTypeAny, {
751
+ condition: {
752
+ field: string;
753
+ operator: z.infer<typeof FilterOperatorSchema>;
754
+ value?: unknown;
755
+ or?: Array<{
756
+ field: string;
757
+ operator: z.infer<typeof FilterOperatorSchema>;
758
+ value?: unknown;
759
+ or?: unknown[];
760
+ }>;
761
+ };
762
+ style: {
763
+ cssClass?: string | undefined;
764
+ prefix?: string | undefined;
765
+ suffix?: string | undefined;
766
+ color?: string | undefined;
767
+ backgroundColor?: string | undefined;
768
+ bold?: boolean | undefined;
769
+ italic?: boolean | undefined;
770
+ icon?: string | undefined;
771
+ };
772
+ fields?: string[] | undefined;
773
+ }, {
774
+ condition: {
775
+ field: string;
776
+ operator: z.infer<typeof FilterOperatorSchema>;
777
+ value?: unknown;
778
+ or?: Array<{
779
+ field: string;
780
+ operator: z.infer<typeof FilterOperatorSchema>;
781
+ value?: unknown;
782
+ or?: unknown[];
783
+ }>;
784
+ };
785
+ style: {
786
+ cssClass?: string | undefined;
787
+ prefix?: string | undefined;
788
+ suffix?: string | undefined;
789
+ color?: string | undefined;
790
+ backgroundColor?: string | undefined;
791
+ bold?: boolean | undefined;
792
+ italic?: boolean | undefined;
793
+ icon?: string | undefined;
794
+ };
795
+ fields?: string[] | undefined;
796
+ }>, "many">>;
797
+ output: z.ZodEffects<z.ZodObject<{
798
+ type: z.ZodEnum<["xhtml_table", "xhtml_list", "json", "csv", "markdown"]>;
799
+ table: z.ZodOptional<z.ZodObject<{
800
+ title: z.ZodOptional<z.ZodString>;
801
+ columns: z.ZodArray<z.ZodObject<{
802
+ field: z.ZodString;
803
+ header: z.ZodString;
804
+ link: z.ZodOptional<z.ZodObject<{
805
+ type: z.ZodEnum<["jira", "confluence", "tempo", "custom"]>;
806
+ template: z.ZodOptional<z.ZodString>;
807
+ }, "strip", z.ZodTypeAny, {
808
+ type: "jira" | "confluence" | "tempo" | "custom";
809
+ template?: string | undefined;
810
+ }, {
811
+ type: "jira" | "confluence" | "tempo" | "custom";
812
+ template?: string | undefined;
813
+ }>>;
814
+ width: z.ZodOptional<z.ZodString>;
815
+ align: z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>;
816
+ }, "strip", z.ZodTypeAny, {
817
+ field: string;
818
+ header: string;
819
+ link?: {
820
+ type: "jira" | "confluence" | "tempo" | "custom";
821
+ template?: string | undefined;
822
+ } | undefined;
823
+ width?: string | undefined;
824
+ align?: "left" | "center" | "right" | undefined;
825
+ }, {
826
+ field: string;
827
+ header: string;
828
+ link?: {
829
+ type: "jira" | "confluence" | "tempo" | "custom";
830
+ template?: string | undefined;
831
+ } | undefined;
832
+ width?: string | undefined;
833
+ align?: "left" | "center" | "right" | undefined;
834
+ }>, "many">;
835
+ showRowNumbers: z.ZodOptional<z.ZodBoolean>;
836
+ tableClass: z.ZodOptional<z.ZodString>;
837
+ }, "strip", z.ZodTypeAny, {
838
+ columns: {
839
+ field: string;
840
+ header: string;
841
+ link?: {
842
+ type: "jira" | "confluence" | "tempo" | "custom";
843
+ template?: string | undefined;
844
+ } | undefined;
845
+ width?: string | undefined;
846
+ align?: "left" | "center" | "right" | undefined;
847
+ }[];
848
+ title?: string | undefined;
849
+ showRowNumbers?: boolean | undefined;
850
+ tableClass?: string | undefined;
851
+ }, {
852
+ columns: {
853
+ field: string;
854
+ header: string;
855
+ link?: {
856
+ type: "jira" | "confluence" | "tempo" | "custom";
857
+ template?: string | undefined;
858
+ } | undefined;
859
+ width?: string | undefined;
860
+ align?: "left" | "center" | "right" | undefined;
861
+ }[];
862
+ title?: string | undefined;
863
+ showRowNumbers?: boolean | undefined;
864
+ tableClass?: string | undefined;
865
+ }>>;
866
+ list: z.ZodOptional<z.ZodObject<{
867
+ title: z.ZodOptional<z.ZodString>;
868
+ template: z.ZodString;
869
+ style: z.ZodOptional<z.ZodEnum<["bullet", "numbered", "none"]>>;
870
+ }, "strip", z.ZodTypeAny, {
871
+ template: string;
872
+ title?: string | undefined;
873
+ style?: "bullet" | "numbered" | "none" | undefined;
874
+ }, {
875
+ template: string;
876
+ title?: string | undefined;
877
+ style?: "bullet" | "numbered" | "none" | undefined;
878
+ }>>;
879
+ includeMetadata: z.ZodOptional<z.ZodBoolean>;
880
+ }, "strip", z.ZodTypeAny, {
881
+ type: "json" | "xhtml_table" | "xhtml_list" | "csv" | "markdown";
882
+ table?: {
883
+ columns: {
884
+ field: string;
885
+ header: string;
886
+ link?: {
887
+ type: "jira" | "confluence" | "tempo" | "custom";
888
+ template?: string | undefined;
889
+ } | undefined;
890
+ width?: string | undefined;
891
+ align?: "left" | "center" | "right" | undefined;
892
+ }[];
893
+ title?: string | undefined;
894
+ showRowNumbers?: boolean | undefined;
895
+ tableClass?: string | undefined;
896
+ } | undefined;
897
+ list?: {
898
+ template: string;
899
+ title?: string | undefined;
900
+ style?: "bullet" | "numbered" | "none" | undefined;
901
+ } | undefined;
902
+ includeMetadata?: boolean | undefined;
903
+ }, {
904
+ type: "json" | "xhtml_table" | "xhtml_list" | "csv" | "markdown";
905
+ table?: {
906
+ columns: {
907
+ field: string;
908
+ header: string;
909
+ link?: {
910
+ type: "jira" | "confluence" | "tempo" | "custom";
911
+ template?: string | undefined;
912
+ } | undefined;
913
+ width?: string | undefined;
914
+ align?: "left" | "center" | "right" | undefined;
915
+ }[];
916
+ title?: string | undefined;
917
+ showRowNumbers?: boolean | undefined;
918
+ tableClass?: string | undefined;
919
+ } | undefined;
920
+ list?: {
921
+ template: string;
922
+ title?: string | undefined;
923
+ style?: "bullet" | "numbered" | "none" | undefined;
924
+ } | undefined;
925
+ includeMetadata?: boolean | undefined;
926
+ }>, {
927
+ type: "json" | "xhtml_table" | "xhtml_list" | "csv" | "markdown";
928
+ table?: {
929
+ columns: {
930
+ field: string;
931
+ header: string;
932
+ link?: {
933
+ type: "jira" | "confluence" | "tempo" | "custom";
934
+ template?: string | undefined;
935
+ } | undefined;
936
+ width?: string | undefined;
937
+ align?: "left" | "center" | "right" | undefined;
938
+ }[];
939
+ title?: string | undefined;
940
+ showRowNumbers?: boolean | undefined;
941
+ tableClass?: string | undefined;
942
+ } | undefined;
943
+ list?: {
944
+ template: string;
945
+ title?: string | undefined;
946
+ style?: "bullet" | "numbered" | "none" | undefined;
947
+ } | undefined;
948
+ includeMetadata?: boolean | undefined;
949
+ }, {
950
+ type: "json" | "xhtml_table" | "xhtml_list" | "csv" | "markdown";
951
+ table?: {
952
+ columns: {
953
+ field: string;
954
+ header: string;
955
+ link?: {
956
+ type: "jira" | "confluence" | "tempo" | "custom";
957
+ template?: string | undefined;
958
+ } | undefined;
959
+ width?: string | undefined;
960
+ align?: "left" | "center" | "right" | undefined;
961
+ }[];
962
+ title?: string | undefined;
963
+ showRowNumbers?: boolean | undefined;
964
+ tableClass?: string | undefined;
965
+ } | undefined;
966
+ list?: {
967
+ template: string;
968
+ title?: string | undefined;
969
+ style?: "bullet" | "numbered" | "none" | undefined;
970
+ } | undefined;
971
+ includeMetadata?: boolean | undefined;
972
+ }>;
973
+ }, "strict", z.ZodTypeAny, {
974
+ output: {
975
+ type: "json" | "xhtml_table" | "xhtml_list" | "csv" | "markdown";
976
+ table?: {
977
+ columns: {
978
+ field: string;
979
+ header: string;
980
+ link?: {
981
+ type: "jira" | "confluence" | "tempo" | "custom";
982
+ template?: string | undefined;
983
+ } | undefined;
984
+ width?: string | undefined;
985
+ align?: "left" | "center" | "right" | undefined;
986
+ }[];
987
+ title?: string | undefined;
988
+ showRowNumbers?: boolean | undefined;
989
+ tableClass?: string | undefined;
990
+ } | undefined;
991
+ list?: {
992
+ template: string;
993
+ title?: string | undefined;
994
+ style?: "bullet" | "numbered" | "none" | undefined;
995
+ } | undefined;
996
+ includeMetadata?: boolean | undefined;
997
+ };
998
+ sort?: {
999
+ field: string;
1000
+ direction: "desc" | "asc";
1001
+ }[] | undefined;
1002
+ filter?: {
1003
+ field: string;
1004
+ operator: z.infer<typeof FilterOperatorSchema>;
1005
+ value?: unknown;
1006
+ or?: Array<{
1007
+ field: string;
1008
+ operator: z.infer<typeof FilterOperatorSchema>;
1009
+ value?: unknown;
1010
+ or?: unknown[];
1011
+ }>;
1012
+ }[] | undefined;
1013
+ format?: {
1014
+ condition: {
1015
+ field: string;
1016
+ operator: z.infer<typeof FilterOperatorSchema>;
1017
+ value?: unknown;
1018
+ or?: Array<{
1019
+ field: string;
1020
+ operator: z.infer<typeof FilterOperatorSchema>;
1021
+ value?: unknown;
1022
+ or?: unknown[];
1023
+ }>;
1024
+ };
1025
+ style: {
1026
+ cssClass?: string | undefined;
1027
+ prefix?: string | undefined;
1028
+ suffix?: string | undefined;
1029
+ color?: string | undefined;
1030
+ backgroundColor?: string | undefined;
1031
+ bold?: boolean | undefined;
1032
+ italic?: boolean | undefined;
1033
+ icon?: string | undefined;
1034
+ };
1035
+ fields?: string[] | undefined;
1036
+ }[] | undefined;
1037
+ limit?: number | undefined;
1038
+ select?: {
1039
+ fields: {
1040
+ from: string;
1041
+ as: string | undefined;
1042
+ transform: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
1043
+ }[];
1044
+ } | undefined;
1045
+ groupBy?: {
1046
+ field: string;
1047
+ aggregations: {
1048
+ function: "count" | "sum" | "avg" | "min" | "max" | "first" | "last" | "list" | "unique";
1049
+ as: string;
1050
+ field?: string | undefined;
1051
+ }[];
1052
+ } | undefined;
1053
+ }, {
1054
+ output: {
1055
+ type: "json" | "xhtml_table" | "xhtml_list" | "csv" | "markdown";
1056
+ table?: {
1057
+ columns: {
1058
+ field: string;
1059
+ header: string;
1060
+ link?: {
1061
+ type: "jira" | "confluence" | "tempo" | "custom";
1062
+ template?: string | undefined;
1063
+ } | undefined;
1064
+ width?: string | undefined;
1065
+ align?: "left" | "center" | "right" | undefined;
1066
+ }[];
1067
+ title?: string | undefined;
1068
+ showRowNumbers?: boolean | undefined;
1069
+ tableClass?: string | undefined;
1070
+ } | undefined;
1071
+ list?: {
1072
+ template: string;
1073
+ title?: string | undefined;
1074
+ style?: "bullet" | "numbered" | "none" | undefined;
1075
+ } | undefined;
1076
+ includeMetadata?: boolean | undefined;
1077
+ };
1078
+ sort?: {
1079
+ field: string;
1080
+ direction?: "desc" | "asc" | undefined;
1081
+ }[] | undefined;
1082
+ filter?: {
1083
+ field: string;
1084
+ operator: z.infer<typeof FilterOperatorSchema>;
1085
+ value?: unknown;
1086
+ or?: Array<{
1087
+ field: string;
1088
+ operator: z.infer<typeof FilterOperatorSchema>;
1089
+ value?: unknown;
1090
+ or?: unknown[];
1091
+ }>;
1092
+ }[] | undefined;
1093
+ format?: {
1094
+ condition: {
1095
+ field: string;
1096
+ operator: z.infer<typeof FilterOperatorSchema>;
1097
+ value?: unknown;
1098
+ or?: Array<{
1099
+ field: string;
1100
+ operator: z.infer<typeof FilterOperatorSchema>;
1101
+ value?: unknown;
1102
+ or?: unknown[];
1103
+ }>;
1104
+ };
1105
+ style: {
1106
+ cssClass?: string | undefined;
1107
+ prefix?: string | undefined;
1108
+ suffix?: string | undefined;
1109
+ color?: string | undefined;
1110
+ backgroundColor?: string | undefined;
1111
+ bold?: boolean | undefined;
1112
+ italic?: boolean | undefined;
1113
+ icon?: string | undefined;
1114
+ };
1115
+ fields?: string[] | undefined;
1116
+ }[] | undefined;
1117
+ limit?: number | undefined;
1118
+ select?: {
1119
+ fields: {
1120
+ field?: string | undefined;
1121
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
1122
+ from?: string | undefined;
1123
+ as?: string | undefined;
1124
+ }[];
1125
+ } | undefined;
1126
+ groupBy?: {
1127
+ field: string;
1128
+ aggregations: {
1129
+ function: "count" | "sum" | "avg" | "min" | "max" | "first" | "last" | "list" | "unique";
1130
+ as: string;
1131
+ field?: string | undefined;
1132
+ }[];
1133
+ } | undefined;
1134
+ }>;
1135
+ export declare const BufferPipelineInputSchema: z.ZodObject<{
1136
+ sourceBufferId: z.ZodString;
1137
+ pipeline: z.ZodObject<{
1138
+ select: z.ZodOptional<z.ZodObject<{
1139
+ fields: z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodObject<{
1140
+ from: z.ZodOptional<z.ZodString>;
1141
+ field: z.ZodOptional<z.ZodString>;
1142
+ as: z.ZodOptional<z.ZodString>;
1143
+ transform: z.ZodOptional<z.ZodEnum<["uppercase", "lowercase", "date", "number", "boolean", "string"]>>;
1144
+ }, "strip", z.ZodTypeAny, {
1145
+ field?: string | undefined;
1146
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
1147
+ from?: string | undefined;
1148
+ as?: string | undefined;
1149
+ }, {
1150
+ field?: string | undefined;
1151
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
1152
+ from?: string | undefined;
1153
+ as?: string | undefined;
1154
+ }>, {
1155
+ field?: string | undefined;
1156
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
1157
+ from?: string | undefined;
1158
+ as?: string | undefined;
1159
+ }, {
1160
+ field?: string | undefined;
1161
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
1162
+ from?: string | undefined;
1163
+ as?: string | undefined;
1164
+ }>, {
1165
+ from: string;
1166
+ as: string | undefined;
1167
+ transform: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
1168
+ }, {
1169
+ field?: string | undefined;
1170
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
1171
+ from?: string | undefined;
1172
+ as?: string | undefined;
1173
+ }>, "many">;
1174
+ }, "strip", z.ZodTypeAny, {
1175
+ fields: {
1176
+ from: string;
1177
+ as: string | undefined;
1178
+ transform: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
1179
+ }[];
1180
+ }, {
1181
+ fields: {
1182
+ field?: string | undefined;
1183
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
1184
+ from?: string | undefined;
1185
+ as?: string | undefined;
1186
+ }[];
1187
+ }>>;
1188
+ filter: z.ZodOptional<z.ZodArray<z.ZodType<{
1189
+ field: string;
1190
+ operator: z.infer<typeof FilterOperatorSchema>;
1191
+ value?: unknown;
1192
+ or?: Array<{
1193
+ field: string;
1194
+ operator: z.infer<typeof FilterOperatorSchema>;
1195
+ value?: unknown;
1196
+ or?: unknown[];
1197
+ }>;
1198
+ }, z.ZodTypeDef, {
1199
+ field: string;
1200
+ operator: z.infer<typeof FilterOperatorSchema>;
1201
+ value?: unknown;
1202
+ or?: Array<{
1203
+ field: string;
1204
+ operator: z.infer<typeof FilterOperatorSchema>;
1205
+ value?: unknown;
1206
+ or?: unknown[];
1207
+ }>;
1208
+ }>, "many">>;
1209
+ groupBy: z.ZodOptional<z.ZodObject<{
1210
+ field: z.ZodString;
1211
+ aggregations: z.ZodArray<z.ZodObject<{
1212
+ function: z.ZodEnum<["count", "sum", "avg", "min", "max", "first", "last", "list", "unique"]>;
1213
+ field: z.ZodOptional<z.ZodString>;
1214
+ as: z.ZodString;
1215
+ }, "strip", z.ZodTypeAny, {
1216
+ function: "count" | "sum" | "avg" | "min" | "max" | "first" | "last" | "list" | "unique";
1217
+ as: string;
1218
+ field?: string | undefined;
1219
+ }, {
1220
+ function: "count" | "sum" | "avg" | "min" | "max" | "first" | "last" | "list" | "unique";
1221
+ as: string;
1222
+ field?: string | undefined;
1223
+ }>, "many">;
1224
+ }, "strip", z.ZodTypeAny, {
1225
+ field: string;
1226
+ aggregations: {
1227
+ function: "count" | "sum" | "avg" | "min" | "max" | "first" | "last" | "list" | "unique";
1228
+ as: string;
1229
+ field?: string | undefined;
1230
+ }[];
1231
+ }, {
1232
+ field: string;
1233
+ aggregations: {
1234
+ function: "count" | "sum" | "avg" | "min" | "max" | "first" | "last" | "list" | "unique";
1235
+ as: string;
1236
+ field?: string | undefined;
1237
+ }[];
1238
+ }>>;
1239
+ sort: z.ZodOptional<z.ZodArray<z.ZodObject<{
1240
+ field: z.ZodString;
1241
+ direction: z.ZodDefault<z.ZodEnum<["asc", "desc"]>>;
1242
+ }, "strip", z.ZodTypeAny, {
1243
+ field: string;
1244
+ direction: "desc" | "asc";
1245
+ }, {
1246
+ field: string;
1247
+ direction?: "desc" | "asc" | undefined;
1248
+ }>, "many">>;
1249
+ limit: z.ZodOptional<z.ZodNumber>;
1250
+ format: z.ZodOptional<z.ZodArray<z.ZodObject<{
1251
+ condition: z.ZodType<{
1252
+ field: string;
1253
+ operator: z.infer<typeof FilterOperatorSchema>;
1254
+ value?: unknown;
1255
+ or?: Array<{
1256
+ field: string;
1257
+ operator: z.infer<typeof FilterOperatorSchema>;
1258
+ value?: unknown;
1259
+ or?: unknown[];
1260
+ }>;
1261
+ }, z.ZodTypeDef, {
1262
+ field: string;
1263
+ operator: z.infer<typeof FilterOperatorSchema>;
1264
+ value?: unknown;
1265
+ or?: Array<{
1266
+ field: string;
1267
+ operator: z.infer<typeof FilterOperatorSchema>;
1268
+ value?: unknown;
1269
+ or?: unknown[];
1270
+ }>;
1271
+ }>;
1272
+ style: z.ZodObject<{
1273
+ cssClass: z.ZodOptional<z.ZodString>;
1274
+ prefix: z.ZodOptional<z.ZodString>;
1275
+ suffix: z.ZodOptional<z.ZodString>;
1276
+ color: z.ZodOptional<z.ZodString>;
1277
+ backgroundColor: z.ZodOptional<z.ZodString>;
1278
+ bold: z.ZodOptional<z.ZodBoolean>;
1279
+ italic: z.ZodOptional<z.ZodBoolean>;
1280
+ icon: z.ZodOptional<z.ZodString>;
1281
+ }, "strip", z.ZodTypeAny, {
1282
+ cssClass?: string | undefined;
1283
+ prefix?: string | undefined;
1284
+ suffix?: string | undefined;
1285
+ color?: string | undefined;
1286
+ backgroundColor?: string | undefined;
1287
+ bold?: boolean | undefined;
1288
+ italic?: boolean | undefined;
1289
+ icon?: string | undefined;
1290
+ }, {
1291
+ cssClass?: string | undefined;
1292
+ prefix?: string | undefined;
1293
+ suffix?: string | undefined;
1294
+ color?: string | undefined;
1295
+ backgroundColor?: string | undefined;
1296
+ bold?: boolean | undefined;
1297
+ italic?: boolean | undefined;
1298
+ icon?: string | undefined;
1299
+ }>;
1300
+ fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1301
+ }, "strip", z.ZodTypeAny, {
1302
+ condition: {
1303
+ field: string;
1304
+ operator: z.infer<typeof FilterOperatorSchema>;
1305
+ value?: unknown;
1306
+ or?: Array<{
1307
+ field: string;
1308
+ operator: z.infer<typeof FilterOperatorSchema>;
1309
+ value?: unknown;
1310
+ or?: unknown[];
1311
+ }>;
1312
+ };
1313
+ style: {
1314
+ cssClass?: string | undefined;
1315
+ prefix?: string | undefined;
1316
+ suffix?: string | undefined;
1317
+ color?: string | undefined;
1318
+ backgroundColor?: string | undefined;
1319
+ bold?: boolean | undefined;
1320
+ italic?: boolean | undefined;
1321
+ icon?: string | undefined;
1322
+ };
1323
+ fields?: string[] | undefined;
1324
+ }, {
1325
+ condition: {
1326
+ field: string;
1327
+ operator: z.infer<typeof FilterOperatorSchema>;
1328
+ value?: unknown;
1329
+ or?: Array<{
1330
+ field: string;
1331
+ operator: z.infer<typeof FilterOperatorSchema>;
1332
+ value?: unknown;
1333
+ or?: unknown[];
1334
+ }>;
1335
+ };
1336
+ style: {
1337
+ cssClass?: string | undefined;
1338
+ prefix?: string | undefined;
1339
+ suffix?: string | undefined;
1340
+ color?: string | undefined;
1341
+ backgroundColor?: string | undefined;
1342
+ bold?: boolean | undefined;
1343
+ italic?: boolean | undefined;
1344
+ icon?: string | undefined;
1345
+ };
1346
+ fields?: string[] | undefined;
1347
+ }>, "many">>;
1348
+ output: z.ZodEffects<z.ZodObject<{
1349
+ type: z.ZodEnum<["xhtml_table", "xhtml_list", "json", "csv", "markdown"]>;
1350
+ table: z.ZodOptional<z.ZodObject<{
1351
+ title: z.ZodOptional<z.ZodString>;
1352
+ columns: z.ZodArray<z.ZodObject<{
1353
+ field: z.ZodString;
1354
+ header: z.ZodString;
1355
+ link: z.ZodOptional<z.ZodObject<{
1356
+ type: z.ZodEnum<["jira", "confluence", "tempo", "custom"]>;
1357
+ template: z.ZodOptional<z.ZodString>;
1358
+ }, "strip", z.ZodTypeAny, {
1359
+ type: "jira" | "confluence" | "tempo" | "custom";
1360
+ template?: string | undefined;
1361
+ }, {
1362
+ type: "jira" | "confluence" | "tempo" | "custom";
1363
+ template?: string | undefined;
1364
+ }>>;
1365
+ width: z.ZodOptional<z.ZodString>;
1366
+ align: z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>;
1367
+ }, "strip", z.ZodTypeAny, {
1368
+ field: string;
1369
+ header: string;
1370
+ link?: {
1371
+ type: "jira" | "confluence" | "tempo" | "custom";
1372
+ template?: string | undefined;
1373
+ } | undefined;
1374
+ width?: string | undefined;
1375
+ align?: "left" | "center" | "right" | undefined;
1376
+ }, {
1377
+ field: string;
1378
+ header: string;
1379
+ link?: {
1380
+ type: "jira" | "confluence" | "tempo" | "custom";
1381
+ template?: string | undefined;
1382
+ } | undefined;
1383
+ width?: string | undefined;
1384
+ align?: "left" | "center" | "right" | undefined;
1385
+ }>, "many">;
1386
+ showRowNumbers: z.ZodOptional<z.ZodBoolean>;
1387
+ tableClass: z.ZodOptional<z.ZodString>;
1388
+ }, "strip", z.ZodTypeAny, {
1389
+ columns: {
1390
+ field: string;
1391
+ header: string;
1392
+ link?: {
1393
+ type: "jira" | "confluence" | "tempo" | "custom";
1394
+ template?: string | undefined;
1395
+ } | undefined;
1396
+ width?: string | undefined;
1397
+ align?: "left" | "center" | "right" | undefined;
1398
+ }[];
1399
+ title?: string | undefined;
1400
+ showRowNumbers?: boolean | undefined;
1401
+ tableClass?: string | undefined;
1402
+ }, {
1403
+ columns: {
1404
+ field: string;
1405
+ header: string;
1406
+ link?: {
1407
+ type: "jira" | "confluence" | "tempo" | "custom";
1408
+ template?: string | undefined;
1409
+ } | undefined;
1410
+ width?: string | undefined;
1411
+ align?: "left" | "center" | "right" | undefined;
1412
+ }[];
1413
+ title?: string | undefined;
1414
+ showRowNumbers?: boolean | undefined;
1415
+ tableClass?: string | undefined;
1416
+ }>>;
1417
+ list: z.ZodOptional<z.ZodObject<{
1418
+ title: z.ZodOptional<z.ZodString>;
1419
+ template: z.ZodString;
1420
+ style: z.ZodOptional<z.ZodEnum<["bullet", "numbered", "none"]>>;
1421
+ }, "strip", z.ZodTypeAny, {
1422
+ template: string;
1423
+ title?: string | undefined;
1424
+ style?: "bullet" | "numbered" | "none" | undefined;
1425
+ }, {
1426
+ template: string;
1427
+ title?: string | undefined;
1428
+ style?: "bullet" | "numbered" | "none" | undefined;
1429
+ }>>;
1430
+ includeMetadata: z.ZodOptional<z.ZodBoolean>;
1431
+ }, "strip", z.ZodTypeAny, {
1432
+ type: "json" | "xhtml_table" | "xhtml_list" | "csv" | "markdown";
1433
+ table?: {
1434
+ columns: {
1435
+ field: string;
1436
+ header: string;
1437
+ link?: {
1438
+ type: "jira" | "confluence" | "tempo" | "custom";
1439
+ template?: string | undefined;
1440
+ } | undefined;
1441
+ width?: string | undefined;
1442
+ align?: "left" | "center" | "right" | undefined;
1443
+ }[];
1444
+ title?: string | undefined;
1445
+ showRowNumbers?: boolean | undefined;
1446
+ tableClass?: string | undefined;
1447
+ } | undefined;
1448
+ list?: {
1449
+ template: string;
1450
+ title?: string | undefined;
1451
+ style?: "bullet" | "numbered" | "none" | undefined;
1452
+ } | undefined;
1453
+ includeMetadata?: boolean | undefined;
1454
+ }, {
1455
+ type: "json" | "xhtml_table" | "xhtml_list" | "csv" | "markdown";
1456
+ table?: {
1457
+ columns: {
1458
+ field: string;
1459
+ header: string;
1460
+ link?: {
1461
+ type: "jira" | "confluence" | "tempo" | "custom";
1462
+ template?: string | undefined;
1463
+ } | undefined;
1464
+ width?: string | undefined;
1465
+ align?: "left" | "center" | "right" | undefined;
1466
+ }[];
1467
+ title?: string | undefined;
1468
+ showRowNumbers?: boolean | undefined;
1469
+ tableClass?: string | undefined;
1470
+ } | undefined;
1471
+ list?: {
1472
+ template: string;
1473
+ title?: string | undefined;
1474
+ style?: "bullet" | "numbered" | "none" | undefined;
1475
+ } | undefined;
1476
+ includeMetadata?: boolean | undefined;
1477
+ }>, {
1478
+ type: "json" | "xhtml_table" | "xhtml_list" | "csv" | "markdown";
1479
+ table?: {
1480
+ columns: {
1481
+ field: string;
1482
+ header: string;
1483
+ link?: {
1484
+ type: "jira" | "confluence" | "tempo" | "custom";
1485
+ template?: string | undefined;
1486
+ } | undefined;
1487
+ width?: string | undefined;
1488
+ align?: "left" | "center" | "right" | undefined;
1489
+ }[];
1490
+ title?: string | undefined;
1491
+ showRowNumbers?: boolean | undefined;
1492
+ tableClass?: string | undefined;
1493
+ } | undefined;
1494
+ list?: {
1495
+ template: string;
1496
+ title?: string | undefined;
1497
+ style?: "bullet" | "numbered" | "none" | undefined;
1498
+ } | undefined;
1499
+ includeMetadata?: boolean | undefined;
1500
+ }, {
1501
+ type: "json" | "xhtml_table" | "xhtml_list" | "csv" | "markdown";
1502
+ table?: {
1503
+ columns: {
1504
+ field: string;
1505
+ header: string;
1506
+ link?: {
1507
+ type: "jira" | "confluence" | "tempo" | "custom";
1508
+ template?: string | undefined;
1509
+ } | undefined;
1510
+ width?: string | undefined;
1511
+ align?: "left" | "center" | "right" | undefined;
1512
+ }[];
1513
+ title?: string | undefined;
1514
+ showRowNumbers?: boolean | undefined;
1515
+ tableClass?: string | undefined;
1516
+ } | undefined;
1517
+ list?: {
1518
+ template: string;
1519
+ title?: string | undefined;
1520
+ style?: "bullet" | "numbered" | "none" | undefined;
1521
+ } | undefined;
1522
+ includeMetadata?: boolean | undefined;
1523
+ }>;
1524
+ }, "strict", z.ZodTypeAny, {
1525
+ output: {
1526
+ type: "json" | "xhtml_table" | "xhtml_list" | "csv" | "markdown";
1527
+ table?: {
1528
+ columns: {
1529
+ field: string;
1530
+ header: string;
1531
+ link?: {
1532
+ type: "jira" | "confluence" | "tempo" | "custom";
1533
+ template?: string | undefined;
1534
+ } | undefined;
1535
+ width?: string | undefined;
1536
+ align?: "left" | "center" | "right" | undefined;
1537
+ }[];
1538
+ title?: string | undefined;
1539
+ showRowNumbers?: boolean | undefined;
1540
+ tableClass?: string | undefined;
1541
+ } | undefined;
1542
+ list?: {
1543
+ template: string;
1544
+ title?: string | undefined;
1545
+ style?: "bullet" | "numbered" | "none" | undefined;
1546
+ } | undefined;
1547
+ includeMetadata?: boolean | undefined;
1548
+ };
1549
+ sort?: {
1550
+ field: string;
1551
+ direction: "desc" | "asc";
1552
+ }[] | undefined;
1553
+ filter?: {
1554
+ field: string;
1555
+ operator: z.infer<typeof FilterOperatorSchema>;
1556
+ value?: unknown;
1557
+ or?: Array<{
1558
+ field: string;
1559
+ operator: z.infer<typeof FilterOperatorSchema>;
1560
+ value?: unknown;
1561
+ or?: unknown[];
1562
+ }>;
1563
+ }[] | undefined;
1564
+ format?: {
1565
+ condition: {
1566
+ field: string;
1567
+ operator: z.infer<typeof FilterOperatorSchema>;
1568
+ value?: unknown;
1569
+ or?: Array<{
1570
+ field: string;
1571
+ operator: z.infer<typeof FilterOperatorSchema>;
1572
+ value?: unknown;
1573
+ or?: unknown[];
1574
+ }>;
1575
+ };
1576
+ style: {
1577
+ cssClass?: string | undefined;
1578
+ prefix?: string | undefined;
1579
+ suffix?: string | undefined;
1580
+ color?: string | undefined;
1581
+ backgroundColor?: string | undefined;
1582
+ bold?: boolean | undefined;
1583
+ italic?: boolean | undefined;
1584
+ icon?: string | undefined;
1585
+ };
1586
+ fields?: string[] | undefined;
1587
+ }[] | undefined;
1588
+ limit?: number | undefined;
1589
+ select?: {
1590
+ fields: {
1591
+ from: string;
1592
+ as: string | undefined;
1593
+ transform: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
1594
+ }[];
1595
+ } | undefined;
1596
+ groupBy?: {
1597
+ field: string;
1598
+ aggregations: {
1599
+ function: "count" | "sum" | "avg" | "min" | "max" | "first" | "last" | "list" | "unique";
1600
+ as: string;
1601
+ field?: string | undefined;
1602
+ }[];
1603
+ } | undefined;
1604
+ }, {
1605
+ output: {
1606
+ type: "json" | "xhtml_table" | "xhtml_list" | "csv" | "markdown";
1607
+ table?: {
1608
+ columns: {
1609
+ field: string;
1610
+ header: string;
1611
+ link?: {
1612
+ type: "jira" | "confluence" | "tempo" | "custom";
1613
+ template?: string | undefined;
1614
+ } | undefined;
1615
+ width?: string | undefined;
1616
+ align?: "left" | "center" | "right" | undefined;
1617
+ }[];
1618
+ title?: string | undefined;
1619
+ showRowNumbers?: boolean | undefined;
1620
+ tableClass?: string | undefined;
1621
+ } | undefined;
1622
+ list?: {
1623
+ template: string;
1624
+ title?: string | undefined;
1625
+ style?: "bullet" | "numbered" | "none" | undefined;
1626
+ } | undefined;
1627
+ includeMetadata?: boolean | undefined;
1628
+ };
1629
+ sort?: {
1630
+ field: string;
1631
+ direction?: "desc" | "asc" | undefined;
1632
+ }[] | undefined;
1633
+ filter?: {
1634
+ field: string;
1635
+ operator: z.infer<typeof FilterOperatorSchema>;
1636
+ value?: unknown;
1637
+ or?: Array<{
1638
+ field: string;
1639
+ operator: z.infer<typeof FilterOperatorSchema>;
1640
+ value?: unknown;
1641
+ or?: unknown[];
1642
+ }>;
1643
+ }[] | undefined;
1644
+ format?: {
1645
+ condition: {
1646
+ field: string;
1647
+ operator: z.infer<typeof FilterOperatorSchema>;
1648
+ value?: unknown;
1649
+ or?: Array<{
1650
+ field: string;
1651
+ operator: z.infer<typeof FilterOperatorSchema>;
1652
+ value?: unknown;
1653
+ or?: unknown[];
1654
+ }>;
1655
+ };
1656
+ style: {
1657
+ cssClass?: string | undefined;
1658
+ prefix?: string | undefined;
1659
+ suffix?: string | undefined;
1660
+ color?: string | undefined;
1661
+ backgroundColor?: string | undefined;
1662
+ bold?: boolean | undefined;
1663
+ italic?: boolean | undefined;
1664
+ icon?: string | undefined;
1665
+ };
1666
+ fields?: string[] | undefined;
1667
+ }[] | undefined;
1668
+ limit?: number | undefined;
1669
+ select?: {
1670
+ fields: {
1671
+ field?: string | undefined;
1672
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
1673
+ from?: string | undefined;
1674
+ as?: string | undefined;
1675
+ }[];
1676
+ } | undefined;
1677
+ groupBy?: {
1678
+ field: string;
1679
+ aggregations: {
1680
+ function: "count" | "sum" | "avg" | "min" | "max" | "first" | "last" | "list" | "unique";
1681
+ as: string;
1682
+ field?: string | undefined;
1683
+ }[];
1684
+ } | undefined;
1685
+ }>;
1686
+ dryRun: z.ZodOptional<z.ZodBoolean>;
1687
+ }, "strip", z.ZodTypeAny, {
1688
+ sourceBufferId: string;
1689
+ pipeline: {
1690
+ output: {
1691
+ type: "json" | "xhtml_table" | "xhtml_list" | "csv" | "markdown";
1692
+ table?: {
1693
+ columns: {
1694
+ field: string;
1695
+ header: string;
1696
+ link?: {
1697
+ type: "jira" | "confluence" | "tempo" | "custom";
1698
+ template?: string | undefined;
1699
+ } | undefined;
1700
+ width?: string | undefined;
1701
+ align?: "left" | "center" | "right" | undefined;
1702
+ }[];
1703
+ title?: string | undefined;
1704
+ showRowNumbers?: boolean | undefined;
1705
+ tableClass?: string | undefined;
1706
+ } | undefined;
1707
+ list?: {
1708
+ template: string;
1709
+ title?: string | undefined;
1710
+ style?: "bullet" | "numbered" | "none" | undefined;
1711
+ } | undefined;
1712
+ includeMetadata?: boolean | undefined;
1713
+ };
1714
+ sort?: {
1715
+ field: string;
1716
+ direction: "desc" | "asc";
1717
+ }[] | undefined;
1718
+ filter?: {
1719
+ field: string;
1720
+ operator: z.infer<typeof FilterOperatorSchema>;
1721
+ value?: unknown;
1722
+ or?: Array<{
1723
+ field: string;
1724
+ operator: z.infer<typeof FilterOperatorSchema>;
1725
+ value?: unknown;
1726
+ or?: unknown[];
1727
+ }>;
1728
+ }[] | undefined;
1729
+ format?: {
1730
+ condition: {
1731
+ field: string;
1732
+ operator: z.infer<typeof FilterOperatorSchema>;
1733
+ value?: unknown;
1734
+ or?: Array<{
1735
+ field: string;
1736
+ operator: z.infer<typeof FilterOperatorSchema>;
1737
+ value?: unknown;
1738
+ or?: unknown[];
1739
+ }>;
1740
+ };
1741
+ style: {
1742
+ cssClass?: string | undefined;
1743
+ prefix?: string | undefined;
1744
+ suffix?: string | undefined;
1745
+ color?: string | undefined;
1746
+ backgroundColor?: string | undefined;
1747
+ bold?: boolean | undefined;
1748
+ italic?: boolean | undefined;
1749
+ icon?: string | undefined;
1750
+ };
1751
+ fields?: string[] | undefined;
1752
+ }[] | undefined;
1753
+ limit?: number | undefined;
1754
+ select?: {
1755
+ fields: {
1756
+ from: string;
1757
+ as: string | undefined;
1758
+ transform: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
1759
+ }[];
1760
+ } | undefined;
1761
+ groupBy?: {
1762
+ field: string;
1763
+ aggregations: {
1764
+ function: "count" | "sum" | "avg" | "min" | "max" | "first" | "last" | "list" | "unique";
1765
+ as: string;
1766
+ field?: string | undefined;
1767
+ }[];
1768
+ } | undefined;
1769
+ };
1770
+ dryRun?: boolean | undefined;
1771
+ }, {
1772
+ sourceBufferId: string;
1773
+ pipeline: {
1774
+ output: {
1775
+ type: "json" | "xhtml_table" | "xhtml_list" | "csv" | "markdown";
1776
+ table?: {
1777
+ columns: {
1778
+ field: string;
1779
+ header: string;
1780
+ link?: {
1781
+ type: "jira" | "confluence" | "tempo" | "custom";
1782
+ template?: string | undefined;
1783
+ } | undefined;
1784
+ width?: string | undefined;
1785
+ align?: "left" | "center" | "right" | undefined;
1786
+ }[];
1787
+ title?: string | undefined;
1788
+ showRowNumbers?: boolean | undefined;
1789
+ tableClass?: string | undefined;
1790
+ } | undefined;
1791
+ list?: {
1792
+ template: string;
1793
+ title?: string | undefined;
1794
+ style?: "bullet" | "numbered" | "none" | undefined;
1795
+ } | undefined;
1796
+ includeMetadata?: boolean | undefined;
1797
+ };
1798
+ sort?: {
1799
+ field: string;
1800
+ direction?: "desc" | "asc" | undefined;
1801
+ }[] | undefined;
1802
+ filter?: {
1803
+ field: string;
1804
+ operator: z.infer<typeof FilterOperatorSchema>;
1805
+ value?: unknown;
1806
+ or?: Array<{
1807
+ field: string;
1808
+ operator: z.infer<typeof FilterOperatorSchema>;
1809
+ value?: unknown;
1810
+ or?: unknown[];
1811
+ }>;
1812
+ }[] | undefined;
1813
+ format?: {
1814
+ condition: {
1815
+ field: string;
1816
+ operator: z.infer<typeof FilterOperatorSchema>;
1817
+ value?: unknown;
1818
+ or?: Array<{
1819
+ field: string;
1820
+ operator: z.infer<typeof FilterOperatorSchema>;
1821
+ value?: unknown;
1822
+ or?: unknown[];
1823
+ }>;
1824
+ };
1825
+ style: {
1826
+ cssClass?: string | undefined;
1827
+ prefix?: string | undefined;
1828
+ suffix?: string | undefined;
1829
+ color?: string | undefined;
1830
+ backgroundColor?: string | undefined;
1831
+ bold?: boolean | undefined;
1832
+ italic?: boolean | undefined;
1833
+ icon?: string | undefined;
1834
+ };
1835
+ fields?: string[] | undefined;
1836
+ }[] | undefined;
1837
+ limit?: number | undefined;
1838
+ select?: {
1839
+ fields: {
1840
+ field?: string | undefined;
1841
+ transform?: "string" | "number" | "boolean" | "date" | "uppercase" | "lowercase" | undefined;
1842
+ from?: string | undefined;
1843
+ as?: string | undefined;
1844
+ }[];
1845
+ } | undefined;
1846
+ groupBy?: {
1847
+ field: string;
1848
+ aggregations: {
1849
+ function: "count" | "sum" | "avg" | "min" | "max" | "first" | "last" | "list" | "unique";
1850
+ as: string;
1851
+ field?: string | undefined;
1852
+ }[];
1853
+ } | undefined;
1854
+ };
1855
+ dryRun?: boolean | undefined;
1856
+ }>;
1857
+ /**
1858
+ * Zod-inferred type aliases for runtime validation.
1859
+ * These are intentionally separate from the interfaces in types.ts:
1860
+ * - types.ts: Used by stage implementations (richer interfaces with JSDoc)
1861
+ * - schema.ts: Used by Zod validation at the API boundary
1862
+ * Both should stay in sync when the pipeline DSL changes.
1863
+ */
1864
+ export type FieldMapping = z.infer<typeof FieldMappingSchema>;
1865
+ export type FilterCondition = z.infer<typeof FilterConditionSchema>;
1866
+ export type Aggregation = z.infer<typeof AggregationSchema>;
1867
+ export type GroupBy = z.infer<typeof GroupBySchema>;
1868
+ export type Sort = z.infer<typeof SortSchema>;
1869
+ export type Style = z.infer<typeof StyleSchema>;
1870
+ export type ConditionalFormat = z.infer<typeof ConditionalFormatSchema>;
1871
+ export type Link = z.infer<typeof LinkSchema>;
1872
+ export type TableColumn = z.infer<typeof TableColumnSchema>;
1873
+ export type TableOutput = z.infer<typeof TableOutputSchema>;
1874
+ export type ListOutput = z.infer<typeof ListOutputSchema>;
1875
+ export type Output = z.infer<typeof OutputSchema>;
1876
+ export type Pipeline = z.infer<typeof PipelineSchema>;
1877
+ export type BufferPipelineInput = z.infer<typeof BufferPipelineInputSchema>;
1878
+ //# sourceMappingURL=schema.d.ts.map