@flowcore/cli 2.11.0 → 2.13.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.
package/CHANGELOG.md CHANGED
@@ -10,6 +10,20 @@
10
10
 
11
11
  * added description to start that includes week ([58687a7](https://github.com/flowcore-io/flowcore-cli/commit/58687a7bbb66aaa5d6da26af88e555cbb1e72467))
12
12
 
13
+ ## [2.13.0](https://github.com/flowcore-io/flowcore-cli/compare/v2.12.0...v2.13.0) (2024-04-17)
14
+
15
+
16
+ ### Features
17
+
18
+ * Update plugin versions to 2.12.0 for flowcore/cli and 1.1.0 for cli-plugin-config, 2.2.1 for cli-plugin-data-core, and 2.7.0 for cli-plugin-scenario. ([73f00dd](https://github.com/flowcore-io/flowcore-cli/commit/73f00dd1eb7b1653033671e1b37668de36732988))
19
+
20
+ ## [2.12.0](https://github.com/flowcore-io/flowcore-cli/compare/v2.11.0...v2.12.0) (2024-03-28)
21
+
22
+
23
+ ### Features
24
+
25
+ * update versions and links for flowcore cli and plugins. added support for client credentials ([f87c389](https://github.com/flowcore-io/flowcore-cli/commit/f87c38957584e7d82bb793963d069c256c72646c))
26
+
13
27
  ## [2.11.0](https://github.com/flowcore-io/flowcore-cli/compare/v2.10.1...v2.11.0) (2024-03-08)
14
28
 
15
29
 
package/README.md CHANGED
@@ -18,7 +18,7 @@ $ npm install -g @flowcore/cli
18
18
  $ flowcore COMMAND
19
19
  running command...
20
20
  $ flowcore (--version)
21
- @flowcore/cli/2.11.0 linux-x64 node-v20.11.1
21
+ @flowcore/cli/2.13.0 linux-x64 node-v20.12.2
22
22
  $ flowcore --help [COMMAND]
23
23
  USAGE
24
24
  $ flowcore COMMAND
@@ -75,7 +75,7 @@ EXAMPLES
75
75
  $ flowcore apply -f ./path/to/manifest.yml
76
76
  ```
77
77
 
78
- _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.11.0/src/commands/apply.ts)_
78
+ _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v2.13.0/src/commands/apply.ts)_
79
79
 
80
80
  ## `flowcore autocomplete [SHELL]`
81
81
 
@@ -136,7 +136,7 @@ EXAMPLES
136
136
  $ flowcore config set -l https://auth.flowcore.io/realms/flowcore/.well-known/openid-configuration -c my-client-id -p
137
137
  ```
138
138
 
139
- _See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v1.0.5/src/commands/config/set.ts)_
139
+ _See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v1.1.0/src/commands/config/set.ts)_
140
140
 
141
141
  ## `flowcore config show`
142
142
 
@@ -156,7 +156,7 @@ EXAMPLES
156
156
  $ flowcore config show
157
157
  ```
158
158
 
159
- _See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v1.0.5/src/commands/config/show.ts)_
159
+ _See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v1.1.0/src/commands/config/show.ts)_
160
160
 
161
161
  ## `flowcore data-core apply`
162
162
 
@@ -185,7 +185,7 @@ EXAMPLES
185
185
  $ cat <<EOF | flowcore data-core apply -f -
186
186
  ```
187
187
 
188
- _See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v2.1.0/src/commands/data-core/apply.ts)_
188
+ _See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v2.2.1/src/commands/data-core/apply.ts)_
189
189
 
190
190
  ## `flowcore data-core generate event-type FLOWTYPE`
191
191
 
@@ -212,7 +212,7 @@ EXAMPLES
212
212
  $ flowcore data-core generate event-type flow-type-name -n event-type-name -d "description of the event type" -f example.yaml
213
213
  ```
214
214
 
215
- _See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v2.1.0/src/commands/data-core/generate/event-type.ts)_
215
+ _See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v2.2.1/src/commands/data-core/generate/event-type.ts)_
216
216
 
217
217
  ## `flowcore data-core generate flow-type`
218
218
 
@@ -239,7 +239,7 @@ EXAMPLES
239
239
  $ flowcore data-core generate flow-type -n flow-type-name -d "description of the flow type" -f example.yaml
240
240
  ```
241
241
 
242
- _See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v2.1.0/src/commands/data-core/generate/flow-type.ts)_
242
+ _See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v2.2.1/src/commands/data-core/generate/flow-type.ts)_
243
243
 
244
244
  ## `flowcore data-core generate manifest`
245
245
 
@@ -271,7 +271,7 @@ EXAMPLES
271
271
  $ flowcore data-core generate manifest -t flowcore -n data-core-name -f example.yaml
272
272
  ```
273
273
 
274
- _See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v2.1.0/src/commands/data-core/generate/manifest.ts)_
274
+ _See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v2.2.1/src/commands/data-core/generate/manifest.ts)_
275
275
 
276
276
  ## `flowcore help [COMMANDS]`
277
277
 
@@ -314,7 +314,7 @@ EXAMPLES
314
314
  $ flowcore login --port 8080
315
315
  ```
316
316
 
317
- _See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v1.0.5/src/commands/login.ts)_
317
+ _See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v1.1.0/src/commands/login.ts)_
318
318
 
319
319
  ## `flowcore plugins`
320
320
 
@@ -623,7 +623,7 @@ EXAMPLES
623
623
  $ cat <<EOF | flowcore scenario apply -f -
624
624
  ```
625
625
 
626
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.6.1/src/commands/scenario/apply.ts)_
626
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.7.0/src/commands/scenario/apply.ts)_
627
627
 
628
628
  ## `flowcore scenario generate manifest`
629
629
 
@@ -655,7 +655,7 @@ EXAMPLES
655
655
  $ flowcore scenario generate manifest -t flowcore -n scenario-name -f example.yaml
656
656
  ```
657
657
 
658
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.6.1/src/commands/scenario/generate/manifest.ts)_
658
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.7.0/src/commands/scenario/generate/manifest.ts)_
659
659
 
660
660
  ## `flowcore scenario generate transformer`
661
661
 
@@ -682,7 +682,7 @@ EXAMPLES
682
682
  $ flowcore scenario generate transformer -n flow-type-name -d "description of the transformer" -f example.yaml
683
683
  ```
684
684
 
685
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.6.1/src/commands/scenario/generate/transformer.ts)_
685
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.7.0/src/commands/scenario/generate/transformer.ts)_
686
686
 
687
687
  ## `flowcore scenario local`
688
688
 
@@ -700,7 +700,7 @@ FLAGS
700
700
  -f, --file=<value>... (required) file to apply
701
701
  -m, --mode=<option> [default: http] stream mode
702
702
  <options: http>
703
- -s, --start=<value> Start time bucket to stream from, example: (1y, 1m, 1w, 1d, 1h)
703
+ -s, --start=<value> Start time bucket to stream from, example: (1y, 1m, 1w, 1d, 1h, now)
704
704
  -t, --timeout=<value> [default: 5000] Timeout in milliseconds to wait for a response from the destination
705
705
  -y, --yes skip confirmation
706
706
  --profile=<value> Specify the configuration profile to use
@@ -714,7 +714,7 @@ EXAMPLES
714
714
  $ cat <<EOF | flowcore scenario local -f -
715
715
  ```
716
716
 
717
- _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.6.1/src/commands/scenario/local.ts)_
717
+ _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v2.7.0/src/commands/scenario/local.ts)_
718
718
 
719
719
  ## `flowcore stream STREAM`
720
720
 
@@ -755,7 +755,7 @@ EXAMPLES
755
755
  $ flowcore stream https://flowcore.io/<org>/<data core>/<flow type>/[<event type1>,<event type2>,<event type3>].stream -o log -s 3m
756
756
  ```
757
757
 
758
- _See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v1.1.1/src/commands/stream.ts)_
758
+ _See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v1.1.2/src/commands/stream.ts)_
759
759
 
760
760
  ## `flowcore version`
761
761
 
@@ -792,5 +792,5 @@ DESCRIPTION
792
792
  Check what user you are logged in as
793
793
  ```
794
794
 
795
- _See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v1.0.5/src/commands/whoami.ts)_
795
+ _See code: [@flowcore/cli-plugin-config](https://github.com/flowcore/flowcore-cli-plugin-config/blob/v1.1.0/src/commands/whoami.ts)_
796
796
  <!-- commandsstop -->
@@ -48,5 +48,5 @@
48
48
  ]
49
49
  }
50
50
  },
51
- "version": "2.11.0"
51
+ "version": "2.13.0"
52
52
  }
package/package.json CHANGED
@@ -5,10 +5,10 @@
5
5
  },
6
6
  "dependencies": {
7
7
  "@datastructures-js/queue": "^4.2.3",
8
- "@flowcore/cli-plugin-config": "^1.0.5",
9
- "@flowcore/cli-plugin-core": "^1.1.1",
10
- "@flowcore/cli-plugin-data-core": "^2.1.0",
11
- "@flowcore/cli-plugin-scenario": "^2.6.1",
8
+ "@flowcore/cli-plugin-config": "^1.1.0",
9
+ "@flowcore/cli-plugin-core": "^1.1.2",
10
+ "@flowcore/cli-plugin-data-core": "^2.2.1",
11
+ "@flowcore/cli-plugin-scenario": "^2.7.0",
12
12
  "@flowcore/time-bucket": "^1.1.0",
13
13
  "@oclif/core": "^3",
14
14
  "@oclif/plugin-autocomplete": "^3.0.2",
@@ -92,7 +92,7 @@
92
92
  "prestart": "npm run build",
93
93
  "update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
94
94
  },
95
- "version": "2.11.0",
95
+ "version": "2.13.0",
96
96
  "bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
97
97
  "keywords": [
98
98
  "flowcore",