@flowcore/cli 1.0.1

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 (40) hide show
  1. package/CHANGELOG.md +308 -0
  2. package/README.md +510 -0
  3. package/bin/dev.cmd +3 -0
  4. package/bin/dev.js +9 -0
  5. package/bin/run.cmd +3 -0
  6. package/bin/run.js +8 -0
  7. package/dist/base-command.d.ts +17 -0
  8. package/dist/base-command.js +32 -0
  9. package/dist/commands/config/set.d.ts +13 -0
  10. package/dist/commands/config/set.js +45 -0
  11. package/dist/commands/config/show.d.ts +6 -0
  12. package/dist/commands/config/show.js +11 -0
  13. package/dist/commands/login.d.ts +19 -0
  14. package/dist/commands/login.js +146 -0
  15. package/dist/commands/stream.d.ts +18 -0
  16. package/dist/commands/stream.js +220 -0
  17. package/dist/commands/whoami.d.ts +5 -0
  18. package/dist/commands/whoami.js +25 -0
  19. package/dist/index.d.ts +1 -0
  20. package/dist/index.js +1 -0
  21. package/dist/interfaces/source-event.interface.d.ts +18 -0
  22. package/dist/interfaces/source-event.interface.js +1 -0
  23. package/dist/utils/config.util.d.ts +31 -0
  24. package/dist/utils/config.util.js +108 -0
  25. package/dist/utils/graphql.util.d.ts +8 -0
  26. package/dist/utils/graphql.util.js +25 -0
  27. package/dist/utils/object-path.util.d.ts +1 -0
  28. package/dist/utils/object-path.util.js +17 -0
  29. package/dist/utils/queries/fetch-data-core.gql.d.ts +12 -0
  30. package/dist/utils/queries/fetch-data-core.gql.js +10 -0
  31. package/dist/utils/queries/fetch-event-type-range.gql.d.ts +21 -0
  32. package/dist/utils/queries/fetch-event-type-range.gql.js +19 -0
  33. package/dist/utils/queries/fetch-events.gql.d.ts +28 -0
  34. package/dist/utils/queries/fetch-events.gql.js +28 -0
  35. package/dist/utils/timebucket.util.d.ts +5 -0
  36. package/dist/utils/timebucket.util.js +11 -0
  37. package/dist/utils/validate-login.util.d.ts +24 -0
  38. package/dist/utils/validate-login.util.js +111 -0
  39. package/oclif.manifest.json +253 -0
  40. package/package.json +102 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,308 @@
1
+ ## [0.4.9](https://github.com/oclif/hello-world/compare/0.4.8...0.4.9) (2023-11-26)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** bump @oclif/plugin-plugins from 4.1.5 to 4.1.8 ([eb58fcf](https://github.com/oclif/hello-world/commit/eb58fcf7f6535189dc1acbec3628ed37702df7e5))
7
+
8
+
9
+
10
+ ## [1.0.1](https://github.com/flowcore-io/flowcore-cli/compare/v1.0.0...v1.0.1) (2024-01-09)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * removed yarn test for now ([0f29f07](https://github.com/flowcore-io/flowcore-cli/commit/0f29f077b4c155491d992c8dc3426105d70f5ee3))
16
+
17
+ ## 1.0.0 (2024-01-09)
18
+
19
+
20
+ ### Features
21
+
22
+ * added build and release pipeline ([dcaa239](https://github.com/flowcore-io/flowcore-cli/commit/dcaa239fc3fb2be4eae9bc3ff7461a20b777f647))
23
+ * initial version with working streaming ([23bef26](https://github.com/flowcore-io/flowcore-cli/commit/23bef267cd8959f10dabc10999e4fcfb8668d4b6))
24
+ * initial version, no workflows ([2fc343f](https://github.com/flowcore-io/flowcore-cli/commit/2fc343f7787e7da8293f515922d9ea08362b3892))
25
+
26
+
27
+ ### Bug Fixes
28
+
29
+ * added yarn lock file ([4944ad3](https://github.com/flowcore-io/flowcore-cli/commit/4944ad3b53477c05f9bbbcfe73f46583aa6df712))
30
+
31
+ ## [0.4.8](https://github.com/oclif/hello-world/compare/0.4.7...0.4.8) (2023-11-25)
32
+
33
+
34
+ ### Bug Fixes
35
+
36
+ * **deps:** bump @oclif/core from 3.11.0 to 3.12.0 ([80e5f57](https://github.com/oclif/hello-world/commit/80e5f5755ede98541b951125887c349cf1df3373))
37
+
38
+
39
+
40
+ ## [0.4.7](https://github.com/oclif/hello-world/compare/0.4.6...0.4.7) (2023-11-18)
41
+
42
+
43
+ ### Bug Fixes
44
+
45
+ * **deps:** bump @oclif/core from 3.10.8 to 3.11.0 ([781bf61](https://github.com/oclif/hello-world/commit/781bf6149ceceeb54839971f93481db180542cba))
46
+
47
+
48
+
49
+ ## [0.4.6](https://github.com/oclif/hello-world/compare/0.4.5...0.4.6) (2023-11-11)
50
+
51
+
52
+ ### Bug Fixes
53
+
54
+ * **deps:** bump @oclif/plugin-plugins from 4.0.2 to 4.1.5 ([90e69e5](https://github.com/oclif/hello-world/commit/90e69e58caab0d401869a7523dbcd1387803234d))
55
+
56
+
57
+
58
+ ## [0.4.5](https://github.com/oclif/hello-world/compare/0.4.4...0.4.5) (2023-11-05)
59
+
60
+
61
+ ### Bug Fixes
62
+
63
+ * **deps:** bump @oclif/plugin-help from 5.2.19 to 5.2.20 ([d710325](https://github.com/oclif/hello-world/commit/d710325af125cd0acc4cb7ee732569efa29d9e6c))
64
+
65
+
66
+
67
+ ## [0.4.4](https://github.com/oclif/hello-world/compare/0.4.3...0.4.4) (2023-10-28)
68
+
69
+
70
+ ### Bug Fixes
71
+
72
+ * **deps:** bump @oclif/plugin-plugins from 3.7.0 to 3.9.4 ([8369b56](https://github.com/oclif/hello-world/commit/8369b566d0ce50909e54b477ae5bb6c11b082f3d))
73
+
74
+
75
+
76
+ ## [0.4.3](https://github.com/oclif/hello-world/compare/0.4.2...0.4.3) (2023-10-10)
77
+
78
+
79
+ ### Bug Fixes
80
+
81
+ * update dev.cmd too ([2ce7bdc](https://github.com/oclif/hello-world/commit/2ce7bdc2c2b262f8f16bcab62fe7c9c5dd8d3f48))
82
+ * use node with ts-node loader ([5f406d6](https://github.com/oclif/hello-world/commit/5f406d6dd2ce06bcfe50a9c003bcfe25c63d93b4))
83
+
84
+
85
+
86
+ ## [0.4.2](https://github.com/oclif/hello-world/compare/0.4.1...0.4.2) (2023-10-09)
87
+
88
+
89
+ ### Bug Fixes
90
+
91
+ * use latest eslint-config-oclif-typescript ([a010663](https://github.com/oclif/hello-world/commit/a010663092a2c269c56cecc96bfd4ff3bcb4a2f1))
92
+
93
+
94
+
95
+ ## [0.4.1](https://github.com/oclif/hello-world/compare/0.4.0...0.4.1) (2023-10-04)
96
+
97
+
98
+ ### Bug Fixes
99
+
100
+ * deps ([ede92f9](https://github.com/oclif/hello-world/commit/ede92f95be182a8cd08f970781988959e02550b0))
101
+ * satisfy linter ([896fd96](https://github.com/oclif/hello-world/commit/896fd96ab5821774751811567ab7d97d01e8bb2b))
102
+
103
+
104
+
105
+ # [0.4.0](https://github.com/oclif/hello-world/compare/0.3.0...0.4.0) (2023-10-04)
106
+
107
+
108
+ ### Features
109
+
110
+ * bump core, add prettier ([5be0350](https://github.com/oclif/hello-world/commit/5be0350ed4446ec1fc2eba55b73b459875f8b90b))
111
+
112
+
113
+
114
+ # [0.3.0](https://github.com/oclif/hello-world/compare/0.2.3...0.3.0) (2023-09-18)
115
+
116
+
117
+ ### Features
118
+
119
+ * update eslint configs ([85c1530](https://github.com/oclif/hello-world/commit/85c15307f8faefb2646050276a58c310f48cff2b))
120
+
121
+
122
+
123
+ ## [0.2.3](https://github.com/oclif/hello-world/compare/0.2.2...0.2.3) (2023-09-17)
124
+
125
+
126
+ ### Bug Fixes
127
+
128
+ * **deps:** bump @oclif/plugin-plugins from 3.4.0 to 3.7.0 ([04939c2](https://github.com/oclif/hello-world/commit/04939c21e6db4018ab8655c1f37ae3c10d85f0d1))
129
+
130
+
131
+
132
+ ## [0.2.2](https://github.com/oclif/hello-world/compare/0.2.1...0.2.2) (2023-09-16)
133
+
134
+
135
+ ### Bug Fixes
136
+
137
+ * **deps:** bump @oclif/core from 3.0.0-beta.12 to 3.0.0-beta.13 ([f054f82](https://github.com/oclif/hello-world/commit/f054f823c30b6080ae005a8f9fe5dd30290ad061))
138
+
139
+
140
+
141
+ ## [0.2.1](https://github.com/oclif/hello-world/compare/0.2.0...0.2.1) (2023-09-09)
142
+
143
+
144
+ ### Bug Fixes
145
+
146
+ * **deps:** bump @oclif/plugin-help from 5.2.17 to 5.2.19 ([60d2b33](https://github.com/oclif/hello-world/commit/60d2b338401d4d9a5790416c99b7cbe6c019346f))
147
+
148
+
149
+
150
+ # [0.2.0](https://github.com/oclif/hello-world/compare/0.1.6...0.2.0) (2023-09-07)
151
+
152
+
153
+ ### Features
154
+
155
+ * use ts-node in bin/dev.js ([6ab5e0f](https://github.com/oclif/hello-world/commit/6ab5e0f31cb7c09c196d30bd3ecdf2f9e7462ea8))
156
+
157
+
158
+
159
+ ## [0.1.6](https://github.com/oclif/hello-world/compare/0.1.5...0.1.6) (2023-09-05)
160
+
161
+
162
+ ### Bug Fixes
163
+
164
+ * remove ts-node loader ([370eba5](https://github.com/oclif/hello-world/commit/370eba5db778c240bf95fca27f5afac71aa48466))
165
+
166
+
167
+
168
+ ## [0.1.5](https://github.com/oclif/hello-world/compare/0.1.4...0.1.5) (2023-09-05)
169
+
170
+
171
+ ### Bug Fixes
172
+
173
+ * update bin scripts ([9d14905](https://github.com/oclif/hello-world/commit/9d1490590a11ff79f817dd8ec8e9a548b70d9aa6))
174
+
175
+
176
+
177
+ ## [0.1.4](https://github.com/oclif/hello-world/compare/0.1.3...0.1.4) (2023-09-03)
178
+
179
+
180
+ ### Bug Fixes
181
+
182
+ * **deps:** bump @oclif/core from 3.0.0-beta.6 to 3.0.0-beta.12 ([4a67b9f](https://github.com/oclif/hello-world/commit/4a67b9f67e287de7fca92376899b00cab25a2ada))
183
+
184
+
185
+
186
+ ## [0.1.3](https://github.com/oclif/hello-world/compare/0.1.2...0.1.3) (2023-09-02)
187
+
188
+
189
+ ### Bug Fixes
190
+
191
+ * **deps:** bump @oclif/plugin-plugins from 3.3.2 to 3.4.0 ([d077b38](https://github.com/oclif/hello-world/commit/d077b38d54d06aefd3ffc3d78235f4a682da423b))
192
+
193
+
194
+
195
+ ## [0.1.2](https://github.com/oclif/hello-world/compare/0.1.1...0.1.2) (2023-08-31)
196
+
197
+
198
+ ### Bug Fixes
199
+
200
+ * use core v3 ([0896ec1](https://github.com/oclif/hello-world/commit/0896ec15081020dd38f8cf9a26fd61f899182d29))
201
+
202
+
203
+
204
+ ## [0.1.1](https://github.com/oclif/hello-world/compare/0.1.0...0.1.1) (2023-08-23)
205
+
206
+
207
+ ### Bug Fixes
208
+
209
+ * add void to bin scripts ([a3e257e](https://github.com/oclif/hello-world/commit/a3e257efa4984834d221ec356dc5269dc8c39ee9))
210
+
211
+
212
+
213
+ # [0.1.0](https://github.com/oclif/hello-world/compare/0.0.10...0.1.0) (2023-08-21)
214
+
215
+
216
+ ### Features
217
+
218
+ * remove ts-node/esm shebang ([c2c3aab](https://github.com/oclif/hello-world/commit/c2c3aabcea5edf646ef87874cd4c7b87ad05c5f5))
219
+
220
+
221
+
222
+ ## [0.0.10](https://github.com/oclif/hello-world/compare/0.0.9...0.0.10) (2023-08-13)
223
+
224
+
225
+ ### Bug Fixes
226
+
227
+ * **deps:** bump @oclif/plugin-help from 5.2.15 to 5.2.17 ([08b2587](https://github.com/oclif/hello-world/commit/08b25875b07788a2969393efcbb7b1d7a1bdc1dd))
228
+
229
+
230
+
231
+ ## [0.0.9](https://github.com/oclif/hello-world/compare/0.0.8...0.0.9) (2023-08-12)
232
+
233
+
234
+ ### Bug Fixes
235
+
236
+ * **deps:** bump @oclif/plugin-plugins from 3.1.8 to 3.2.6 ([11e89e0](https://github.com/oclif/hello-world/commit/11e89e06d3eb1e12104bd562ff79ca2eaf0e3425))
237
+
238
+
239
+
240
+ ## [0.0.8](https://github.com/oclif/hello-world/compare/0.0.7...0.0.8) (2023-08-12)
241
+
242
+
243
+ ### Bug Fixes
244
+
245
+ * **deps:** bump @oclif/core from 2.11.7 to 2.11.8 ([ff1da5a](https://github.com/oclif/hello-world/commit/ff1da5aa66ede6dc657f2ceb0c57b3a3d71fa8ba))
246
+
247
+
248
+
249
+ ## [0.0.7](https://github.com/oclif/hello-world/compare/0.0.6...0.0.7) (2023-08-10)
250
+
251
+
252
+ ### Bug Fixes
253
+
254
+ * update tsconfig ([0cd7321](https://github.com/oclif/hello-world/commit/0cd73218c2a0c3fc44de072331a1b77217d06cc9))
255
+
256
+
257
+
258
+ ## [0.0.6](https://github.com/oclif/hello-world/compare/0.0.5...0.0.6) (2023-08-10)
259
+
260
+
261
+ ### Bug Fixes
262
+
263
+ * bin/dev shebang ([e1633f2](https://github.com/oclif/hello-world/commit/e1633f21c04eec833747080a3da9e10b51653840))
264
+
265
+
266
+
267
+ ## [0.0.5](https://github.com/oclif/hello-world/compare/0.0.4...0.0.5) (2023-08-09)
268
+
269
+
270
+ ### Bug Fixes
271
+
272
+ * bin/run shebang ([abbf92a](https://github.com/oclif/hello-world/commit/abbf92ab774077ef2e3634c6c8b679932d5f6158))
273
+
274
+
275
+
276
+ ## [0.0.4](https://github.com/oclif/hello-world/compare/0.0.3...0.0.4) (2023-08-06)
277
+
278
+
279
+ ### Bug Fixes
280
+
281
+ * **deps:** bump @oclif/plugin-help from 5.2.14 to 5.2.15 ([5a25888](https://github.com/oclif/hello-world/commit/5a258889436705c8a430188343294660b0aec8af))
282
+
283
+
284
+
285
+ ## [0.0.3](https://github.com/oclif/hello-world/compare/0.0.2...0.0.3) (2023-08-03)
286
+
287
+
288
+ ### Bug Fixes
289
+
290
+ * add experimentalSpecifierResolution ([a57c7e0](https://github.com/oclif/hello-world/commit/a57c7e07f2cfcc6a67d598773fe3a6ab7903c4ae))
291
+
292
+
293
+
294
+ ## [0.0.2](https://github.com/oclif/hello-world/compare/0.0.1...0.0.2) (2023-07-29)
295
+
296
+
297
+ ### Bug Fixes
298
+
299
+ * **deps:** bump @oclif/core from 2.10.0 to 2.11.1 ([2a28629](https://github.com/oclif/hello-world/commit/2a286297f0e021df4ab2c3f33686b142351c70ea))
300
+
301
+
302
+
303
+ ## [0.0.1](https://github.com/oclif/hello-world/compare/27cc5bb44cc4aee53f74bfaef39c1fe03e637d72...0.0.1) (2023-07-27)
304
+
305
+
306
+ ### Bug Fixes
307
+
308
+ * **deps:** bump @oclif/core from 2.9.4 to 2.10.0 ([27cc5bb](https://github.com/oclif/hello-world/commit/27cc5bb44cc4aee53f74bfaef39c1fe03e637d72))