@flowcore/cli 4.12.6 → 4.13.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.
package/CHANGELOG.md CHANGED
@@ -10,6 +10,21 @@
10
10
 
11
11
  * added description to start that includes week ([58687a7](https://github.com/flowcore-io/flowcore-cli/commit/58687a7bbb66aaa5d6da26af88e555cbb1e72467))
12
12
 
13
+ ## [4.13.1](https://github.com/flowcore-io/flowcore-cli/compare/v4.13.0...v4.13.1) (2025-04-03)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * **package:** :arrow_up: update @flowcore/cli-plugin-iam to version 1.6.1 ([a464aa1](https://github.com/flowcore-io/flowcore-cli/commit/a464aa1c8ec84bc7665a2eb54f54e547e92d321a))
19
+ * update core plugin ([b2d0cdb](https://github.com/flowcore-io/flowcore-cli/commit/b2d0cdbdea380935f88c4a104f7a1abcd41e8ca8))
20
+
21
+ ## [4.13.0](https://github.com/flowcore-io/flowcore-cli/compare/v4.12.6...v4.13.0) (2025-03-17)
22
+
23
+
24
+ ### Features
25
+
26
+ * **package:** :arrow_up: update @flowcore/cli-plugin-auth-management to version 1.4.0 ([0b15372](https://github.com/flowcore-io/flowcore-cli/commit/0b1537249f9f6bcd4a1682eb834de8d2da329345))
27
+
13
28
  ## [4.12.6](https://github.com/flowcore-io/flowcore-cli/compare/v4.12.5...v4.12.6) (2025-03-06)
14
29
 
15
30
 
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/4.12.6 linux-x64 node-v20.16.0
21
+ @flowcore/cli/4.13.1 linux-x64 node-v20.16.0
22
22
  $ flowcore --help [COMMAND]
23
23
  USAGE
24
24
  $ flowcore COMMAND
@@ -29,10 +29,13 @@ USAGE
29
29
  <!-- commands -->
30
30
  * [`flowcore apply`](#flowcore-apply)
31
31
  * [`flowcore auth delete key API_KEY_NAME`](#flowcore-auth-delete-key-api_key_name)
32
+ * [`flowcore auth delete pat PAT`](#flowcore-auth-delete-pat-pat)
32
33
  * [`flowcore auth delete secret SECRET_KEY`](#flowcore-auth-delete-secret-secret_key)
33
34
  * [`flowcore auth list key`](#flowcore-auth-list-key)
35
+ * [`flowcore auth list pat`](#flowcore-auth-list-pat)
34
36
  * [`flowcore auth list secret`](#flowcore-auth-list-secret)
35
37
  * [`flowcore auth new key NAME`](#flowcore-auth-new-key-name)
38
+ * [`flowcore auth new pat NAME`](#flowcore-auth-new-pat-name)
36
39
  * [`flowcore auth new secret NAME`](#flowcore-auth-new-secret-name)
37
40
  * [`flowcore autocomplete [SHELL]`](#flowcore-autocomplete-shell)
38
41
  * [`flowcore config ai`](#flowcore-config-ai)
@@ -105,7 +108,7 @@ EXAMPLES
105
108
  $ flowcore apply -f ./path/to/manifest.yml
106
109
  ```
107
110
 
108
- _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.12.6/src/commands/apply.ts)_
111
+ _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.13.1/src/commands/apply.ts)_
109
112
 
110
113
  ## `flowcore auth delete key API_KEY_NAME`
111
114
 
@@ -129,7 +132,31 @@ EXAMPLES
129
132
  $ flowcore auth delete key --tenant=tenant-id <api-key-name>
130
133
  ```
131
134
 
132
- _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.2.2/src/commands/auth/delete/key.ts)_
135
+ _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.4.0/src/commands/auth/delete/key.ts)_
136
+
137
+ ## `flowcore auth delete pat PAT`
138
+
139
+ Delete a Personal Access Token (PAT)
140
+
141
+ ```
142
+ USAGE
143
+ $ flowcore auth delete pat PAT [--profile <value>] [-j]
144
+
145
+ ARGUMENTS
146
+ PAT PAT id to delete
147
+
148
+ FLAGS
149
+ -j, --json output the PAT in JSON format
150
+ --profile=<value> Specify the configuration profile to use
151
+
152
+ DESCRIPTION
153
+ Delete a Personal Access Token (PAT)
154
+
155
+ EXAMPLES
156
+ $ flowcore auth delete pat <pat-id>
157
+ ```
158
+
159
+ _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.4.0/src/commands/auth/delete/pat.ts)_
133
160
 
134
161
  ## `flowcore auth delete secret SECRET_KEY`
135
162
 
@@ -153,7 +180,7 @@ EXAMPLES
153
180
  $ flowcore auth delete secret --tenant=tenant-id <secret-key>
154
181
  ```
155
182
 
156
- _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.2.2/src/commands/auth/delete/secret.ts)_
183
+ _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.4.0/src/commands/auth/delete/secret.ts)_
157
184
 
158
185
  ## `flowcore auth list key`
159
186
 
@@ -175,7 +202,28 @@ EXAMPLES
175
202
  $ flowcore auth list key --tenant=tenant-id
176
203
  ```
177
204
 
178
- _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.2.2/src/commands/auth/list/key.ts)_
205
+ _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.4.0/src/commands/auth/list/key.ts)_
206
+
207
+ ## `flowcore auth list pat`
208
+
209
+ List all Personal Access Tokens (PATs)
210
+
211
+ ```
212
+ USAGE
213
+ $ flowcore auth list pat [--profile <value>] [-j]
214
+
215
+ FLAGS
216
+ -j, --json output the PATs in JSON format
217
+ --profile=<value> Specify the configuration profile to use
218
+
219
+ DESCRIPTION
220
+ List all Personal Access Tokens (PATs)
221
+
222
+ EXAMPLES
223
+ $ flowcore auth list pat
224
+ ```
225
+
226
+ _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.4.0/src/commands/auth/list/pat.ts)_
179
227
 
180
228
  ## `flowcore auth list secret`
181
229
 
@@ -197,7 +245,7 @@ EXAMPLES
197
245
  $ flowcore auth list secret --tenant=tenant-id
198
246
  ```
199
247
 
200
- _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.2.2/src/commands/auth/list/secret.ts)_
248
+ _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.4.0/src/commands/auth/list/secret.ts)_
201
249
 
202
250
  ## `flowcore auth new key NAME`
203
251
 
@@ -219,10 +267,34 @@ DESCRIPTION
219
267
  Create a new API key
220
268
 
221
269
  EXAMPLES
222
- $ flowcore auth new key --tenant=tenant-id --name=key-name
270
+ $ flowcore auth new key <NAME> --tenant=tenant-id
271
+ ```
272
+
273
+ _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.4.0/src/commands/auth/new/key.ts)_
274
+
275
+ ## `flowcore auth new pat NAME`
276
+
277
+ Create a new PAT (Personal Access Token)
278
+
279
+ ```
280
+ USAGE
281
+ $ flowcore auth new pat NAME [--profile <value>] [-j]
282
+
283
+ ARGUMENTS
284
+ NAME PAT name
285
+
286
+ FLAGS
287
+ -j, --json output the API key in JSON format
288
+ --profile=<value> Specify the configuration profile to use
289
+
290
+ DESCRIPTION
291
+ Create a new PAT (Personal Access Token)
292
+
293
+ EXAMPLES
294
+ $ flowcore auth new pat <pat-name>
223
295
  ```
224
296
 
225
- _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.2.2/src/commands/auth/new/key.ts)_
297
+ _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.4.0/src/commands/auth/new/pat.ts)_
226
298
 
227
299
  ## `flowcore auth new secret NAME`
228
300
 
@@ -245,10 +317,10 @@ DESCRIPTION
245
317
  Create a new secret for the tenant
246
318
 
247
319
  EXAMPLES
248
- $ flowcore auth new secret --tenant=tenant-id --from-literal=value
320
+ $ flowcore auth new secret <NAME> --tenant=tenant-id --from-literal=value
249
321
  ```
250
322
 
251
- _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.2.2/src/commands/auth/new/secret.ts)_
323
+ _See code: [@flowcore/cli-plugin-auth-management](https://github.com/flowcore-io/cli-plugin-auth-management/blob/v1.4.0/src/commands/auth/new/secret.ts)_
252
324
 
253
325
  ## `flowcore autocomplete [SHELL]`
254
326
 
@@ -489,7 +561,7 @@ EXAMPLES
489
561
  cat ./path/to/manifest.yml | flowcore delete -f -
490
562
  ```
491
563
 
492
- _See code: [src/commands/delete.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.12.6/src/commands/delete.ts)_
564
+ _See code: [src/commands/delete.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.13.1/src/commands/delete.ts)_
493
565
 
494
566
  ## `flowcore delete policy NAME`
495
567
 
@@ -512,7 +584,7 @@ DESCRIPTION
512
584
  Delete a policy
513
585
  ```
514
586
 
515
- _See code: [@flowcore/cli-plugin-iam](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.6.0/src/commands/delete/policy.ts)_
587
+ _See code: [@flowcore/cli-plugin-iam](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.6.1/src/commands/delete/policy.ts)_
516
588
 
517
589
  ## `flowcore delete role NAME`
518
590
 
@@ -535,7 +607,7 @@ DESCRIPTION
535
607
  Delete a role
536
608
  ```
537
609
 
538
- _See code: [@flowcore/cli-plugin-iam](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.6.0/src/commands/delete/role.ts)_
610
+ _See code: [@flowcore/cli-plugin-iam](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.6.1/src/commands/delete/role.ts)_
539
611
 
540
612
  ## `flowcore diff`
541
613
 
@@ -556,7 +628,7 @@ EXAMPLES
556
628
  $ flowcore diff -f ./path/to/manifest.yml
557
629
  ```
558
630
 
559
- _See code: [src/commands/diff.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.12.6/src/commands/diff.ts)_
631
+ _See code: [src/commands/diff.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.13.1/src/commands/diff.ts)_
560
632
 
561
633
  ## `flowcore edit policy NAME`
562
634
 
@@ -582,7 +654,7 @@ EXAMPLES
582
654
  $ FC_EDITOR=code flowcore iam edit policy my-policy -t my-tenant
583
655
  ```
584
656
 
585
- _See code: [@flowcore/cli-plugin-iam](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.6.0/src/commands/edit/policy.ts)_
657
+ _See code: [@flowcore/cli-plugin-iam](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.6.1/src/commands/edit/policy.ts)_
586
658
 
587
659
  ## `flowcore edit role NAME`
588
660
 
@@ -608,7 +680,7 @@ EXAMPLES
608
680
  $ FC_EDITOR=code flowcore iam edit role my-role -t my-tenant
609
681
  ```
610
682
 
611
- _See code: [@flowcore/cli-plugin-iam](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.6.0/src/commands/edit/role.ts)_
683
+ _See code: [@flowcore/cli-plugin-iam](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.6.1/src/commands/edit/role.ts)_
612
684
 
613
685
  ## `flowcore generate nextjs-entity NAME`
614
686
 
@@ -681,7 +753,7 @@ DESCRIPTION
681
753
  Get a policy
682
754
  ```
683
755
 
684
- _See code: [@flowcore/cli-plugin-iam](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.6.0/src/commands/get/policy.ts)_
756
+ _See code: [@flowcore/cli-plugin-iam](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.6.1/src/commands/get/policy.ts)_
685
757
 
686
758
  ## `flowcore get role [NAME]`
687
759
 
@@ -704,7 +776,7 @@ DESCRIPTION
704
776
  Get a role
705
777
  ```
706
778
 
707
- _See code: [@flowcore/cli-plugin-iam](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.6.0/src/commands/get/role.ts)_
779
+ _See code: [@flowcore/cli-plugin-iam](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.6.1/src/commands/get/role.ts)_
708
780
 
709
781
  ## `flowcore get scenario [SCENARIO]`
710
782
 
@@ -799,7 +871,7 @@ EXAMPLES
799
871
  $ flowcore info
800
872
  ```
801
873
 
802
- _See code: [src/commands/info.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.12.6/src/commands/info.ts)_
874
+ _See code: [src/commands/info.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.13.1/src/commands/info.ts)_
803
875
 
804
876
  ## `flowcore login`
805
877
 
@@ -1475,7 +1547,7 @@ EXAMPLES
1475
1547
  $ flowcore stream "https://flowcore.io/<org>/<data core>/<flow type>/[<event type1>,<event type2>,<event type3>].stream" -s 3m
1476
1548
  ```
1477
1549
 
1478
- _See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v5.1.6/src/commands/stream.ts)_
1550
+ _See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v5.3.0/src/commands/stream.ts)_
1479
1551
 
1480
1552
  ## `flowcore stream http STREAM`
1481
1553
 
@@ -1518,7 +1590,7 @@ EXAMPLES
1518
1590
  $ flowcore stream http "https://flowcore.io/<org>/<data core>/<flow type>/[<event type1>,<event type2>,<event type3>].stream" -s 3m -d http://localhost:3000/transform
1519
1591
  ```
1520
1592
 
1521
- _See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v5.1.6/src/commands/stream/http.ts)_
1593
+ _See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v5.3.0/src/commands/stream/http.ts)_
1522
1594
 
1523
1595
  ## `flowcore version`
1524
1596
 
@@ -173,5 +173,5 @@
173
173
  ]
174
174
  }
175
175
  },
176
- "version": "4.12.6"
176
+ "version": "4.13.1"
177
177
  }
package/package.json CHANGED
@@ -6,12 +6,12 @@
6
6
  "dependencies": {
7
7
  "@datastructures-js/queue": "^4.2.3",
8
8
  "@flowcore/cli-plugin-ai": "^1.1.2",
9
- "@flowcore/cli-plugin-auth-management": "^1.2.2",
9
+ "@flowcore/cli-plugin-auth-management": "^1.4.0",
10
10
  "@flowcore/cli-plugin-config": "^2.5.0",
11
- "@flowcore/cli-plugin-core": "^5.1.6",
11
+ "@flowcore/cli-plugin-core": "^5.3.0",
12
12
  "@flowcore/cli-plugin-data-core": "^3.2.2",
13
13
  "@flowcore/cli-plugin-generator": "^1.6.0",
14
- "@flowcore/cli-plugin-iam": "^1.6.0",
14
+ "@flowcore/cli-plugin-iam": "^1.6.1",
15
15
  "@flowcore/cli-plugin-scenario": "^4.1.5",
16
16
  "@flowcore/cli-plugin-tenant-management": "^1.1.1",
17
17
  "@flowcore/time-bucket": "^1.1.0",
@@ -114,7 +114,7 @@
114
114
  "prestart": "npm run build",
115
115
  "update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
116
116
  },
117
- "version": "4.12.6",
117
+ "version": "4.13.1",
118
118
  "bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
119
119
  "keywords": [
120
120
  "flowcore",
@@ -128,4 +128,4 @@
128
128
  "exports": "./lib/index.js",
129
129
  "type": "module",
130
130
  "packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
131
- }
131
+ }