@fibery/views 17.0.4 → 18.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 (236) hide show
  1. package/lib/index.js +17 -0
  2. package/lib/jest.config.d.ts +2 -0
  3. package/lib/jest.config.js +33 -0
  4. package/lib/src/field-utils/avatar.d.ts +20 -0
  5. package/lib/src/field-utils/avatar.js +42 -0
  6. package/lib/src/field-utils/back-references.d.ts +15 -0
  7. package/lib/src/field-utils/back-references.js +21 -0
  8. package/lib/src/field-utils/comments.d.ts +60 -0
  9. package/lib/src/field-utils/comments.js +46 -0
  10. package/lib/src/field-utils/date-time.d.ts +14 -0
  11. package/lib/src/field-utils/date-time.js +56 -0
  12. package/lib/src/field-utils/enum-value.d.ts +13 -0
  13. package/lib/src/field-utils/enum-value.js +29 -0
  14. package/lib/src/field-utils/file.d.ts +4 -0
  15. package/lib/src/field-utils/file.js +18 -0
  16. package/lib/src/field-utils/icon.d.ts +10 -0
  17. package/lib/src/field-utils/icon.js +26 -0
  18. package/lib/src/field-utils/number.d.ts +31 -0
  19. package/lib/src/field-utils/number.js +91 -0
  20. package/lib/src/field-utils/reference-collection.d.ts +18 -0
  21. package/lib/src/field-utils/reference-collection.js +45 -0
  22. package/lib/src/field-utils/reference.d.ts +7 -0
  23. package/lib/src/field-utils/reference.js +57 -0
  24. package/lib/src/field-utils/relation-view.d.ts +2 -0
  25. package/lib/src/field-utils/relation-view.js +12 -0
  26. package/lib/src/field-utils/rich-text.d.ts +12 -0
  27. package/lib/src/field-utils/rich-text.js +27 -0
  28. package/lib/src/field-utils/text.d.ts +35 -0
  29. package/lib/src/field-utils/text.js +40 -0
  30. package/lib/src/field-utils/user-active.d.ts +8 -0
  31. package/lib/src/field-utils/user-active.js +28 -0
  32. package/lib/src/field-utils/user-role.d.ts +6 -0
  33. package/lib/src/field-utils/user-role.js +25 -0
  34. package/lib/src/field-utils/workflow.d.ts +15 -0
  35. package/lib/src/field-utils/workflow.js +56 -0
  36. package/lib/src/index.d.ts +16 -0
  37. package/lib/src/index.js +258 -0
  38. package/lib/src/private/board.d.ts +11 -0
  39. package/lib/src/private/board.js +326 -0
  40. package/lib/src/private/calendar.d.ts +10 -0
  41. package/lib/src/private/calendar.js +122 -0
  42. package/lib/src/private/feed.d.ts +10 -0
  43. package/lib/src/private/feed.js +119 -0
  44. package/lib/src/private/form.d.ts +3 -0
  45. package/lib/src/private/form.js +61 -0
  46. package/lib/src/private/map.d.ts +10 -0
  47. package/lib/src/private/map.js +119 -0
  48. package/lib/src/private/smart-folder.d.ts +23 -0
  49. package/lib/src/private/smart-folder.js +274 -0
  50. package/lib/src/private/test-data/garbage-test.d.ts +649 -0
  51. package/lib/src/private/test-data/garbage-test.js +520 -0
  52. package/lib/src/private/test-data/kanban.d.ts +1123 -0
  53. package/lib/src/private/test-data/kanban.js +1203 -0
  54. package/lib/src/private/test-data/tasks.d.ts +3216 -0
  55. package/lib/src/private/test-data/tasks.js +2731 -0
  56. package/lib/src/private/timeline.d.ts +10 -0
  57. package/lib/src/private/timeline.js +323 -0
  58. package/lib/src/private/units.d.ts +6 -0
  59. package/lib/src/private/units.js +144 -0
  60. package/lib/src/private/utils.d.ts +17 -0
  61. package/lib/src/private/utils.js +267 -0
  62. package/lib/src/tsfixme.d.ts +1 -0
  63. package/lib/src/tsfixme.js +2 -0
  64. package/lib/src/unit-definitions/avatar-collection.d.ts +2 -0
  65. package/lib/src/unit-definitions/avatar-collection.js +53 -0
  66. package/lib/src/unit-definitions/avatar-input.d.ts +2 -0
  67. package/lib/src/unit-definitions/avatar-input.js +12 -0
  68. package/lib/src/unit-definitions/avatar.d.ts +2 -0
  69. package/lib/src/unit-definitions/avatar.js +80 -0
  70. package/lib/src/unit-definitions/back-references-list.d.ts +2 -0
  71. package/lib/src/unit-definitions/back-references-list.js +38 -0
  72. package/lib/src/unit-definitions/bool-checkbox.d.ts +2 -0
  73. package/lib/src/unit-definitions/bool-checkbox.js +25 -0
  74. package/lib/src/unit-definitions/bool.d.ts +2 -0
  75. package/lib/src/unit-definitions/bool.js +22 -0
  76. package/lib/src/unit-definitions/collection-count.d.ts +2 -0
  77. package/lib/src/unit-definitions/collection-count.js +32 -0
  78. package/lib/src/unit-definitions/color-input.d.ts +2 -0
  79. package/lib/src/unit-definitions/color-input.js +21 -0
  80. package/lib/src/unit-definitions/comments-list.d.ts +2 -0
  81. package/lib/src/unit-definitions/comments-list.js +25 -0
  82. package/lib/src/unit-definitions/date-range-combobox.d.ts +2 -0
  83. package/lib/src/unit-definitions/date-range-combobox.js +22 -0
  84. package/lib/src/unit-definitions/date-range.d.ts +2 -0
  85. package/lib/src/unit-definitions/date-range.js +22 -0
  86. package/lib/src/unit-definitions/date-time-combobox.d.ts +2 -0
  87. package/lib/src/unit-definitions/date-time-combobox.js +22 -0
  88. package/lib/src/unit-definitions/date.d.ts +2 -0
  89. package/lib/src/unit-definitions/date.js +22 -0
  90. package/lib/src/unit-definitions/email-input.d.ts +2 -0
  91. package/lib/src/unit-definitions/email-input.js +12 -0
  92. package/lib/src/unit-definitions/email.d.ts +2 -0
  93. package/lib/src/unit-definitions/email.js +17 -0
  94. package/lib/src/unit-definitions/emoji.d.ts +2 -0
  95. package/lib/src/unit-definitions/emoji.js +17 -0
  96. package/lib/src/unit-definitions/file-collection-count.d.ts +2 -0
  97. package/lib/src/unit-definitions/file-collection-count.js +30 -0
  98. package/lib/src/unit-definitions/file-compact-collection.d.ts +2 -0
  99. package/lib/src/unit-definitions/file-compact-collection.js +30 -0
  100. package/lib/src/unit-definitions/file-compact-reference.d.ts +2 -0
  101. package/lib/src/unit-definitions/file-compact-reference.js +36 -0
  102. package/lib/src/unit-definitions/file-reference.d.ts +2 -0
  103. package/lib/src/unit-definitions/file-reference.js +26 -0
  104. package/lib/src/unit-definitions/files-gallery.d.ts +2 -0
  105. package/lib/src/unit-definitions/files-gallery.js +30 -0
  106. package/lib/src/unit-definitions/files-l-list-item.d.ts +2 -0
  107. package/lib/src/unit-definitions/files-l-list-item.js +26 -0
  108. package/lib/src/unit-definitions/files-l-list.d.ts +2 -0
  109. package/lib/src/unit-definitions/files-l-list.js +30 -0
  110. package/lib/src/unit-definitions/files-list-item.d.ts +2 -0
  111. package/lib/src/unit-definitions/files-list-item.js +26 -0
  112. package/lib/src/unit-definitions/files-list.d.ts +2 -0
  113. package/lib/src/unit-definitions/files-list.js +30 -0
  114. package/lib/src/unit-definitions/geometry-preview.d.ts +2 -0
  115. package/lib/src/unit-definitions/geometry-preview.js +17 -0
  116. package/lib/src/unit-definitions/icon-button.d.ts +2 -0
  117. package/lib/src/unit-definitions/icon-button.js +29 -0
  118. package/lib/src/unit-definitions/icon-input.d.ts +2 -0
  119. package/lib/src/unit-definitions/icon-input.js +12 -0
  120. package/lib/src/unit-definitions/id.d.ts +2 -0
  121. package/lib/src/unit-definitions/id.js +29 -0
  122. package/lib/src/unit-definitions/index.d.ts +27 -0
  123. package/lib/src/unit-definitions/index.js +57 -0
  124. package/lib/src/unit-definitions/json-input.d.ts +2 -0
  125. package/lib/src/unit-definitions/json-input.js +21 -0
  126. package/lib/src/unit-definitions/location-input.d.ts +2 -0
  127. package/lib/src/unit-definitions/location-input.js +18 -0
  128. package/lib/src/unit-definitions/location.d.ts +2 -0
  129. package/lib/src/unit-definitions/location.js +17 -0
  130. package/lib/src/unit-definitions/not-found.d.ts +2 -0
  131. package/lib/src/unit-definitions/not-found.js +24 -0
  132. package/lib/src/unit-definitions/number-input.d.ts +2 -0
  133. package/lib/src/unit-definitions/number-input.js +22 -0
  134. package/lib/src/unit-definitions/number.d.ts +2 -0
  135. package/lib/src/unit-definitions/number.js +27 -0
  136. package/lib/src/unit-definitions/phone-input.d.ts +2 -0
  137. package/lib/src/unit-definitions/phone-input.js +12 -0
  138. package/lib/src/unit-definitions/phone.d.ts +2 -0
  139. package/lib/src/unit-definitions/phone.js +12 -0
  140. package/lib/src/unit-definitions/progress-bar.d.ts +2 -0
  141. package/lib/src/unit-definitions/progress-bar.js +32 -0
  142. package/lib/src/unit-definitions/reference-collection-combobox.d.ts +2 -0
  143. package/lib/src/unit-definitions/reference-collection-combobox.js +21 -0
  144. package/lib/src/unit-definitions/reference-collection-list.d.ts +2 -0
  145. package/lib/src/unit-definitions/reference-collection-list.js +22 -0
  146. package/lib/src/unit-definitions/reference-collection-view.d.ts +2 -0
  147. package/lib/src/unit-definitions/reference-collection-view.js +19 -0
  148. package/lib/src/unit-definitions/reference-collection.d.ts +2 -0
  149. package/lib/src/unit-definitions/reference-collection.js +27 -0
  150. package/lib/src/unit-definitions/reference-combobox.d.ts +2 -0
  151. package/lib/src/unit-definitions/reference-combobox.js +21 -0
  152. package/lib/src/unit-definitions/reference-icon.d.ts +2 -0
  153. package/lib/src/unit-definitions/reference-icon.js +12 -0
  154. package/lib/src/unit-definitions/reference.d.ts +2 -0
  155. package/lib/src/unit-definitions/reference.js +49 -0
  156. package/lib/src/unit-definitions/rich-text-document.d.ts +2 -0
  157. package/lib/src/unit-definitions/rich-text-document.js +22 -0
  158. package/lib/src/unit-definitions/rich-text-snippet.d.ts +2 -0
  159. package/lib/src/unit-definitions/rich-text-snippet.js +39 -0
  160. package/lib/src/unit-definitions/single-location-preview.d.ts +2 -0
  161. package/lib/src/unit-definitions/single-location-preview.js +17 -0
  162. package/lib/src/unit-definitions/text-input.d.ts +2 -0
  163. package/lib/src/unit-definitions/text-input.js +22 -0
  164. package/lib/src/unit-definitions/text.d.ts +2 -0
  165. package/lib/src/unit-definitions/text.js +22 -0
  166. package/lib/src/unit-definitions/title-input.d.ts +2 -0
  167. package/lib/src/unit-definitions/title-input.js +16 -0
  168. package/lib/src/unit-definitions/title.d.ts +2 -0
  169. package/lib/src/unit-definitions/title.js +34 -0
  170. package/lib/src/unit-definitions/type-badge-abbr.d.ts +2 -0
  171. package/lib/src/unit-definitions/type-badge-abbr.js +25 -0
  172. package/lib/src/unit-definitions/type-badge.d.ts +2 -0
  173. package/lib/src/unit-definitions/type-badge.js +25 -0
  174. package/lib/src/unit-definitions/type-icon.d.ts +2 -0
  175. package/lib/src/unit-definitions/type-icon.js +25 -0
  176. package/lib/src/unit-definitions/url-input.d.ts +2 -0
  177. package/lib/src/unit-definitions/url-input.js +12 -0
  178. package/lib/src/unit-definitions/url.d.ts +2 -0
  179. package/lib/src/unit-definitions/url.js +17 -0
  180. package/lib/src/unit-definitions/user-button.d.ts +2 -0
  181. package/lib/src/unit-definitions/user-button.js +23 -0
  182. package/lib/src/unit-definitions/user-role-input.d.ts +2 -0
  183. package/lib/src/unit-definitions/user-role-input.js +12 -0
  184. package/lib/src/unit-definitions/user-role.d.ts +2 -0
  185. package/lib/src/unit-definitions/user-role.js +29 -0
  186. package/lib/src/unit-utils/access.d.ts +9 -0
  187. package/lib/src/unit-utils/access.js +14 -0
  188. package/lib/src/unit-utils/can-edit-field.d.ts +6 -0
  189. package/lib/src/unit-utils/can-edit-field.js +8 -0
  190. package/lib/src/unit-utils/common.d.ts +14 -0
  191. package/lib/src/unit-utils/common.js +43 -0
  192. package/lib/src/unit-utils/decimal.d.ts +42 -0
  193. package/lib/src/unit-utils/decimal.js +414 -0
  194. package/lib/src/unit-utils/dynamic-keys.d.ts +7 -0
  195. package/lib/src/unit-utils/dynamic-keys.js +13 -0
  196. package/lib/src/unit-utils/enums.d.ts +27 -0
  197. package/lib/src/unit-utils/enums.js +69 -0
  198. package/lib/src/unit-utils/formatters.d.ts +50 -0
  199. package/lib/src/unit-utils/formatters.js +163 -0
  200. package/lib/src/unit-utils/get-export-value.d.ts +45 -0
  201. package/lib/src/unit-utils/get-export-value.js +83 -0
  202. package/lib/src/unit-utils/get-field-label.d.ts +6 -0
  203. package/lib/src/unit-utils/get-field-label.js +10 -0
  204. package/lib/src/unit-utils/get-unmatched-unit-label.d.ts +2 -0
  205. package/lib/src/unit-utils/get-unmatched-unit-label.js +9 -0
  206. package/lib/src/unit-utils/schema.d.ts +4 -0
  207. package/lib/src/unit-utils/schema.js +12 -0
  208. package/lib/src/units/board.d.ts +43 -0
  209. package/lib/src/units/board.js +51 -0
  210. package/lib/src/units/canvas/all-units-data-definitions.d.ts +18 -0
  211. package/lib/src/units/canvas/all-units-data-definitions.js +40 -0
  212. package/lib/src/units/canvas/index.d.ts +42 -0
  213. package/lib/src/units/canvas/index.js +48 -0
  214. package/lib/src/units/canvas/type-badge-abbr.d.ts +36 -0
  215. package/lib/src/units/canvas/type-badge-abbr.js +11 -0
  216. package/lib/src/units/canvas/type-badge.d.ts +36 -0
  217. package/lib/src/units/canvas/type-badge.js +11 -0
  218. package/lib/src/units/default.d.ts +43 -0
  219. package/lib/src/units/default.js +51 -0
  220. package/lib/src/units/gallery.d.ts +3 -0
  221. package/lib/src/units/gallery.js +18 -0
  222. package/lib/src/units/gantt.d.ts +44 -0
  223. package/lib/src/units/gantt.js +59 -0
  224. package/lib/src/units/get-unit-definitions-for-view-type.d.ts +2 -0
  225. package/lib/src/units/get-unit-definitions-for-view-type.js +64 -0
  226. package/lib/src/units/grid.d.ts +42 -0
  227. package/lib/src/units/grid.js +67 -0
  228. package/lib/src/units/list.d.ts +43 -0
  229. package/lib/src/units/list.js +49 -0
  230. package/lib/src/units/make-factory.d.ts +50 -0
  231. package/lib/src/units/make-factory.js +245 -0
  232. package/lib/src/units/types.d.ts +73 -0
  233. package/lib/src/units/types.js +2 -0
  234. package/package.json +42 -52
  235. package/lib/views.js +0 -1813
  236. /package/{index.js → lib/index.d.ts} +0 -0
@@ -0,0 +1,649 @@
1
+ declare const _default: ({
2
+ input: {
3
+ "fibery/id": string;
4
+ "fibery/public-id": string;
5
+ "fibery/name": string;
6
+ "fibery/type": string;
7
+ "fibery/meta": {
8
+ items: {
9
+ query: {
10
+ "q/from": string;
11
+ };
12
+ units: ({
13
+ checked: boolean;
14
+ type: string;
15
+ expression?: undefined;
16
+ } | {
17
+ checked: boolean;
18
+ expression: string[];
19
+ type: string;
20
+ })[];
21
+ xExpression: string[];
22
+ yExpression: string[];
23
+ }[];
24
+ x: {
25
+ query: {
26
+ "q/from": string;
27
+ };
28
+ type: string;
29
+ units: ({
30
+ checked: boolean;
31
+ type: string;
32
+ expression?: undefined;
33
+ } | {
34
+ checked: boolean;
35
+ expression: string[];
36
+ type: string;
37
+ })[];
38
+ };
39
+ y: {
40
+ query: {
41
+ "q/from": string;
42
+ };
43
+ type: string;
44
+ units: {
45
+ checked: boolean;
46
+ expression: string[];
47
+ type: string;
48
+ }[];
49
+ groupByExpression?: undefined;
50
+ };
51
+ };
52
+ "fibery/kek": string;
53
+ "fibery/creation-date"?: undefined;
54
+ "fibery/container-entity-id"?: undefined;
55
+ };
56
+ output: {
57
+ "fibery/id": string;
58
+ "fibery/public-id": string;
59
+ "fibery/name": string;
60
+ "fibery/type": string;
61
+ "fibery/meta": {
62
+ items: {
63
+ colorCoding: undefined;
64
+ filter: null;
65
+ contextExpression: undefined;
66
+ query: {
67
+ "q/from": string;
68
+ };
69
+ units: {
70
+ checked: boolean;
71
+ type: string;
72
+ }[];
73
+ xExpression: string[];
74
+ yExpression: string[];
75
+ }[];
76
+ x: {
77
+ contextExpression: undefined;
78
+ query: {
79
+ "q/from": string;
80
+ };
81
+ type: string;
82
+ units: never[];
83
+ };
84
+ y: {
85
+ contextExpression: undefined;
86
+ query: {
87
+ "q/from": string;
88
+ };
89
+ type: string;
90
+ units: never[];
91
+ filter?: undefined;
92
+ groupByExpression?: undefined;
93
+ };
94
+ milestones?: undefined;
95
+ };
96
+ "fibery/kek": string;
97
+ "fibery/creation-date"?: undefined;
98
+ "fibery/container-entity-id"?: undefined;
99
+ };
100
+ } | {
101
+ input: {
102
+ "fibery/id": string;
103
+ "fibery/public-id": string;
104
+ "fibery/name": string;
105
+ "fibery/type": string;
106
+ "fibery/meta": {
107
+ items: {
108
+ endExpression: (string | string[])[];
109
+ filter: null;
110
+ query: {
111
+ "q/from": string;
112
+ };
113
+ startExpression: (string | string[])[];
114
+ units: ({
115
+ checked: boolean;
116
+ type: string;
117
+ expression?: undefined;
118
+ } | {
119
+ checked: boolean;
120
+ expression: string[];
121
+ type: string;
122
+ })[];
123
+ }[];
124
+ x?: undefined;
125
+ y?: undefined;
126
+ };
127
+ "fibery/creation-date": string;
128
+ "fibery/container-entity-id": string;
129
+ "fibery/kek"?: undefined;
130
+ };
131
+ output: {
132
+ "fibery/id": string;
133
+ "fibery/public-id": string;
134
+ "fibery/name": string;
135
+ "fibery/type": string;
136
+ "fibery/meta": {
137
+ items: {
138
+ filter: null;
139
+ colorCoding: undefined;
140
+ contextExpression: undefined;
141
+ endExpression: (string | string[])[];
142
+ query: {
143
+ "q/from": string;
144
+ };
145
+ startExpression: (string | string[])[];
146
+ units: {
147
+ checked: boolean;
148
+ type: string;
149
+ }[];
150
+ }[];
151
+ x?: undefined;
152
+ y?: undefined;
153
+ milestones?: undefined;
154
+ };
155
+ "fibery/creation-date": string;
156
+ "fibery/container-entity-id": string;
157
+ "fibery/kek"?: undefined;
158
+ };
159
+ } | {
160
+ input: {
161
+ "fibery/id": string;
162
+ "fibery/public-id": string;
163
+ "fibery/name": string;
164
+ "fibery/type": string;
165
+ "fibery/meta": {
166
+ items: {
167
+ postExpression: string[];
168
+ query: {
169
+ "q/from": string;
170
+ };
171
+ units: ({
172
+ checked: boolean;
173
+ type: string;
174
+ expression?: undefined;
175
+ } | {
176
+ checked: boolean;
177
+ expression: string[];
178
+ type: string;
179
+ })[];
180
+ }[];
181
+ x?: undefined;
182
+ y?: undefined;
183
+ };
184
+ "fibery/creation-date": string;
185
+ "fibery/container-entity-id": string;
186
+ "fibery/kek"?: undefined;
187
+ };
188
+ output: {
189
+ "fibery/id": string;
190
+ "fibery/public-id": string;
191
+ "fibery/name": string;
192
+ "fibery/type": string;
193
+ "fibery/meta": {
194
+ items: {
195
+ filter: null;
196
+ colorCoding: undefined;
197
+ contextExpression: undefined;
198
+ postExpression: string[];
199
+ query: {
200
+ "q/from": string;
201
+ };
202
+ units: ({
203
+ checked: boolean;
204
+ type: string;
205
+ expression?: undefined;
206
+ } | {
207
+ checked: boolean;
208
+ expression: string[];
209
+ type: string;
210
+ })[];
211
+ }[];
212
+ x?: undefined;
213
+ y?: undefined;
214
+ milestones?: undefined;
215
+ };
216
+ "fibery/creation-date": string;
217
+ "fibery/container-entity-id": string;
218
+ "fibery/kek"?: undefined;
219
+ };
220
+ } | {
221
+ input: {
222
+ "fibery/id": string;
223
+ "fibery/public-id": string;
224
+ "fibery/name": string;
225
+ "fibery/type": string;
226
+ "fibery/meta": {
227
+ items: {
228
+ query: {
229
+ "q/from": string;
230
+ };
231
+ units: ({
232
+ checked: boolean;
233
+ type: string;
234
+ expression?: undefined;
235
+ } | {
236
+ checked: boolean;
237
+ expression: string[];
238
+ type: string;
239
+ })[];
240
+ }[];
241
+ x?: undefined;
242
+ y?: undefined;
243
+ };
244
+ "fibery/creation-date": string;
245
+ "fibery/container-entity-id": string;
246
+ "fibery/kek"?: undefined;
247
+ };
248
+ output: {
249
+ "fibery/id": string;
250
+ "fibery/public-id": string;
251
+ "fibery/name": string;
252
+ "fibery/type": string;
253
+ "fibery/meta": {
254
+ items: {
255
+ filter: null;
256
+ colorCoding: undefined;
257
+ contextExpression: undefined;
258
+ query: {
259
+ "q/from": string;
260
+ };
261
+ units: {
262
+ checked: boolean;
263
+ type: string;
264
+ }[];
265
+ }[];
266
+ x?: undefined;
267
+ y?: undefined;
268
+ milestones?: undefined;
269
+ };
270
+ "fibery/creation-date": string;
271
+ "fibery/container-entity-id": string;
272
+ "fibery/kek"?: undefined;
273
+ };
274
+ } | {
275
+ input: {
276
+ "fibery/id": string;
277
+ "fibery/public-id": string;
278
+ "fibery/name": string;
279
+ "fibery/type": string;
280
+ "fibery/meta": {
281
+ items: ({
282
+ contextExpression: string[];
283
+ endExpression: (string | string[])[];
284
+ params: {
285
+ $where1: string;
286
+ $where2: string;
287
+ $where3?: undefined;
288
+ };
289
+ query: {
290
+ "q/from": string;
291
+ "q/where": (string | (string | string[])[])[];
292
+ };
293
+ startExpression: (string | string[])[];
294
+ units: ({
295
+ checked: boolean;
296
+ type: string;
297
+ expression?: undefined;
298
+ } | {
299
+ checked: boolean;
300
+ expression: string[];
301
+ type: string;
302
+ })[];
303
+ yExpression: string[];
304
+ } | {
305
+ contextExpression: string[];
306
+ endExpression: (string | string[])[];
307
+ params: {
308
+ $where1: string;
309
+ $where2: string;
310
+ $where3: string;
311
+ };
312
+ query: {
313
+ "q/from": string;
314
+ "q/where": (string | (string | string[])[])[];
315
+ };
316
+ startExpression: (string | string[])[];
317
+ units: ({
318
+ checked: boolean;
319
+ type: string;
320
+ expression?: undefined;
321
+ } | {
322
+ checked: boolean;
323
+ expression: string[];
324
+ type: string;
325
+ })[];
326
+ yExpression: string[];
327
+ })[];
328
+ y: {
329
+ groupByExpression: null;
330
+ query: {
331
+ "q/from": string;
332
+ };
333
+ type: string;
334
+ units: {
335
+ checked: boolean;
336
+ expression: string[];
337
+ type: string;
338
+ }[];
339
+ };
340
+ x?: undefined;
341
+ };
342
+ "fibery/creation-date": string;
343
+ "fibery/container-entity-id": string;
344
+ "fibery/kek"?: undefined;
345
+ };
346
+ output: {
347
+ "fibery/id": string;
348
+ "fibery/public-id": string;
349
+ "fibery/name": string;
350
+ "fibery/type": string;
351
+ "fibery/meta": {
352
+ items: ({
353
+ filter: null;
354
+ colorCoding: undefined;
355
+ contextExpression: string[];
356
+ endExpression: (string | string[])[];
357
+ params: {
358
+ $where1: string;
359
+ $where2: string;
360
+ $where3?: undefined;
361
+ };
362
+ query: {
363
+ "q/from": string;
364
+ "q/where": (string | (string | string[])[])[];
365
+ };
366
+ startExpression: (string | string[])[];
367
+ units: {
368
+ checked: boolean;
369
+ type: string;
370
+ }[];
371
+ yExpression: string[];
372
+ } | {
373
+ colorCoding: undefined;
374
+ contextExpression: string[];
375
+ endExpression: (string | string[])[];
376
+ params: {
377
+ $where1: string;
378
+ $where2: string;
379
+ $where3: string;
380
+ };
381
+ filter: null;
382
+ query: {
383
+ "q/from": string;
384
+ "q/where": (string | (string | string[])[])[];
385
+ };
386
+ startExpression: (string | string[])[];
387
+ units: {
388
+ checked: boolean;
389
+ type: string;
390
+ }[];
391
+ yExpression: string[];
392
+ })[];
393
+ y: {
394
+ filter: null;
395
+ contextExpression: undefined;
396
+ groupByExpression: null;
397
+ query: {
398
+ "q/from": string;
399
+ };
400
+ type: string;
401
+ units: never[];
402
+ };
403
+ milestones: undefined;
404
+ x?: undefined;
405
+ };
406
+ "fibery/creation-date": string;
407
+ "fibery/container-entity-id": string;
408
+ "fibery/kek"?: undefined;
409
+ };
410
+ } | {
411
+ input: {
412
+ "fibery/id": string;
413
+ "fibery/public-id": string;
414
+ "fibery/name": string;
415
+ "fibery/type": string;
416
+ "fibery/meta": {
417
+ items: ({
418
+ groupBy: null;
419
+ params: {
420
+ $where1?: undefined;
421
+ };
422
+ query: {
423
+ "q/from": string;
424
+ "q/where"?: undefined;
425
+ };
426
+ units: ({
427
+ checked: boolean;
428
+ type: string;
429
+ expression?: undefined;
430
+ } | {
431
+ checked: boolean;
432
+ expression: string[];
433
+ type: string;
434
+ })[];
435
+ groupingExpression?: undefined;
436
+ } | {
437
+ groupBy: {
438
+ 0: {
439
+ expression: string[];
440
+ };
441
+ 1?: undefined;
442
+ 2?: undefined;
443
+ };
444
+ groupingExpression: null;
445
+ params: {
446
+ $where1: string;
447
+ };
448
+ query: {
449
+ "q/from": string;
450
+ "q/where": (string | string[])[];
451
+ };
452
+ units: ({
453
+ checked: boolean;
454
+ type: string;
455
+ expression?: undefined;
456
+ } | {
457
+ checked: boolean;
458
+ expression: string[];
459
+ type: string;
460
+ })[];
461
+ } | {
462
+ groupBy: {
463
+ 1: {
464
+ expression: string[];
465
+ };
466
+ 0?: undefined;
467
+ 2?: undefined;
468
+ };
469
+ groupingExpression: null;
470
+ params: {
471
+ $where1: string;
472
+ };
473
+ query: {
474
+ "q/from": string;
475
+ "q/where": (string | string[])[];
476
+ };
477
+ units: ({
478
+ checked: boolean;
479
+ type: string;
480
+ expression?: undefined;
481
+ } | {
482
+ checked: boolean;
483
+ expression: string[];
484
+ type: string;
485
+ })[];
486
+ } | {
487
+ groupBy: {
488
+ 2: {
489
+ expression: string[];
490
+ };
491
+ 0?: undefined;
492
+ 1?: undefined;
493
+ };
494
+ groupingExpression: null;
495
+ params: {
496
+ $where1: string;
497
+ };
498
+ query: {
499
+ "q/from": string;
500
+ "q/where": (string | string[])[];
501
+ };
502
+ units: {
503
+ checked: boolean;
504
+ type: string;
505
+ }[];
506
+ } | {
507
+ groupBy: {
508
+ 0: {
509
+ expression: string[];
510
+ };
511
+ 1?: undefined;
512
+ 2?: undefined;
513
+ };
514
+ groupingExpression: null;
515
+ params: {
516
+ $where1: string[];
517
+ };
518
+ query: {
519
+ "q/from": string;
520
+ "q/where": (string | string[])[];
521
+ };
522
+ units: {
523
+ checked: boolean;
524
+ type: string;
525
+ }[];
526
+ })[];
527
+ x?: undefined;
528
+ y?: undefined;
529
+ };
530
+ "fibery/creation-date": string;
531
+ "fibery/container-entity-id": string;
532
+ "fibery/kek"?: undefined;
533
+ };
534
+ output: {
535
+ "fibery/id": string;
536
+ "fibery/public-id": string;
537
+ "fibery/name": string;
538
+ "fibery/type": string;
539
+ "fibery/meta": {
540
+ items: ({
541
+ filter: null;
542
+ groupBy: null;
543
+ groupingExpression: null;
544
+ params: {
545
+ $where1?: undefined;
546
+ };
547
+ query: {
548
+ "q/from": string;
549
+ "q/where"?: undefined;
550
+ };
551
+ units: {
552
+ checked: boolean;
553
+ type: string;
554
+ }[];
555
+ } | {
556
+ filter: null;
557
+ groupBy: {
558
+ 0: {
559
+ expression: string[];
560
+ };
561
+ 1?: undefined;
562
+ 2?: undefined;
563
+ };
564
+ groupingExpression: null;
565
+ params: {
566
+ $where1: string;
567
+ };
568
+ query: {
569
+ "q/from": string;
570
+ "q/where": (string | string[])[];
571
+ };
572
+ units: {
573
+ checked: boolean;
574
+ type: string;
575
+ }[];
576
+ } | {
577
+ filter: null;
578
+ groupBy: {
579
+ 1: {
580
+ expression: string[];
581
+ };
582
+ 0?: undefined;
583
+ 2?: undefined;
584
+ };
585
+ groupingExpression: null;
586
+ params: {
587
+ $where1: string;
588
+ };
589
+ query: {
590
+ "q/from": string;
591
+ "q/where": (string | string[])[];
592
+ };
593
+ units: {
594
+ checked: boolean;
595
+ type: string;
596
+ }[];
597
+ } | {
598
+ filter: null;
599
+ groupBy: {
600
+ 2: {
601
+ expression: string[];
602
+ };
603
+ 0?: undefined;
604
+ 1?: undefined;
605
+ };
606
+ groupingExpression: null;
607
+ params: {
608
+ $where1: string;
609
+ };
610
+ query: {
611
+ "q/from": string;
612
+ "q/where": (string | string[])[];
613
+ };
614
+ units: {
615
+ checked: boolean;
616
+ type: string;
617
+ }[];
618
+ } | {
619
+ filter: null;
620
+ groupBy: {
621
+ 0: {
622
+ expression: string[];
623
+ };
624
+ 1?: undefined;
625
+ 2?: undefined;
626
+ };
627
+ groupingExpression: null;
628
+ params: {
629
+ $where1: string[];
630
+ };
631
+ query: {
632
+ "q/from": string;
633
+ "q/where": (string | string[])[];
634
+ };
635
+ units: {
636
+ checked: boolean;
637
+ type: string;
638
+ }[];
639
+ })[];
640
+ x?: undefined;
641
+ y?: undefined;
642
+ milestones?: undefined;
643
+ };
644
+ "fibery/creation-date": string;
645
+ "fibery/container-entity-id": string;
646
+ "fibery/kek"?: undefined;
647
+ };
648
+ })[];
649
+ export default _default;