@flowcore/cli 4.12.4 → 4.12.5

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,15 @@
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.12.5](https://github.com/flowcore-io/flowcore-cli/compare/v4.12.4...v4.12.5) (2025-02-16)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * update GitHub workflow runners to blacksmith instance ([d830b63](https://github.com/flowcore-io/flowcore-cli/commit/d830b63b5349eecf1357df5c097927cab40b1ef0))
19
+ * updated IAM CLI plugin ([782b8a0](https://github.com/flowcore-io/flowcore-cli/commit/782b8a033105ee89cfcbaafab8a78cc7fb6fe682))
20
+ * upgrade @flowcore/cli-plugin-iam to version 1.6.0 ([bc7520b](https://github.com/flowcore-io/flowcore-cli/commit/bc7520bca9797036f5f51ec47326eaeb708b6a1d))
21
+
13
22
  ## [4.12.4](https://github.com/flowcore-io/flowcore-cli/compare/v4.12.3...v4.12.4) (2025-02-13)
14
23
 
15
24
 
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.4 linux-x64 node-v22.13.1
21
+ @flowcore/cli/4.12.5 linux-x64 node-v20.16.0
22
22
  $ flowcore --help [COMMAND]
23
23
  USAGE
24
24
  $ flowcore COMMAND
@@ -43,9 +43,15 @@ USAGE
43
43
  * [`flowcore data-core generate flow-type`](#flowcore-data-core-generate-flow-type)
44
44
  * [`flowcore data-core init`](#flowcore-data-core-init)
45
45
  * [`flowcore delete`](#flowcore-delete)
46
+ * [`flowcore delete policy NAME`](#flowcore-delete-policy-name)
47
+ * [`flowcore delete role NAME`](#flowcore-delete-role-name)
46
48
  * [`flowcore diff`](#flowcore-diff)
49
+ * [`flowcore edit policy NAME`](#flowcore-edit-policy-name)
50
+ * [`flowcore edit role NAME`](#flowcore-edit-role-name)
47
51
  * [`flowcore generate nextjs-entity NAME`](#flowcore-generate-nextjs-entity-name)
48
52
  * [`flowcore get adapter [ADAPTER]`](#flowcore-get-adapter-adapter)
53
+ * [`flowcore get policy [NAME]`](#flowcore-get-policy-name)
54
+ * [`flowcore get role [NAME]`](#flowcore-get-role-name)
49
55
  * [`flowcore get scenario [SCENARIO]`](#flowcore-get-scenario-scenario)
50
56
  * [`flowcore get tenant [NAME]`](#flowcore-get-tenant-name)
51
57
  * [`flowcore help [COMMAND]`](#flowcore-help-command)
@@ -99,7 +105,7 @@ EXAMPLES
99
105
  $ flowcore apply -f ./path/to/manifest.yml
100
106
  ```
101
107
 
102
- _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.12.4/src/commands/apply.ts)_
108
+ _See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.12.5/src/commands/apply.ts)_
103
109
 
104
110
  ## `flowcore auth delete key API_KEY_NAME`
105
111
 
@@ -483,7 +489,53 @@ EXAMPLES
483
489
  cat ./path/to/manifest.yml | flowcore delete -f -
484
490
  ```
485
491
 
486
- _See code: [src/commands/delete.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.12.4/src/commands/delete.ts)_
492
+ _See code: [src/commands/delete.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.12.5/src/commands/delete.ts)_
493
+
494
+ ## `flowcore delete policy NAME`
495
+
496
+ Delete a policy
497
+
498
+ ```
499
+ USAGE
500
+ $ flowcore delete policy NAME -t <value> [--profile <value>] [-j] [-y]
501
+
502
+ ARGUMENTS
503
+ NAME name
504
+
505
+ FLAGS
506
+ -j, --json json output
507
+ -t, --tenant=<value> (required) tenant
508
+ -y, --yes yes to all
509
+ --profile=<value> Specify the configuration profile to use
510
+
511
+ DESCRIPTION
512
+ Delete a policy
513
+ ```
514
+
515
+ _See code: [@flowcore/cli-plugin-iam](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.6.0/src/commands/delete/policy.ts)_
516
+
517
+ ## `flowcore delete role NAME`
518
+
519
+ Delete a role
520
+
521
+ ```
522
+ USAGE
523
+ $ flowcore delete role NAME -t <value> [--profile <value>] [-j] [-y]
524
+
525
+ ARGUMENTS
526
+ NAME name
527
+
528
+ FLAGS
529
+ -j, --json json output
530
+ -t, --tenant=<value> (required) tenant
531
+ -y, --yes yes to all
532
+ --profile=<value> Specify the configuration profile to use
533
+
534
+ DESCRIPTION
535
+ Delete a role
536
+ ```
537
+
538
+ _See code: [@flowcore/cli-plugin-iam](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.6.0/src/commands/delete/role.ts)_
487
539
 
488
540
  ## `flowcore diff`
489
541
 
@@ -504,7 +556,59 @@ EXAMPLES
504
556
  $ flowcore diff -f ./path/to/manifest.yml
505
557
  ```
506
558
 
507
- _See code: [src/commands/diff.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.12.4/src/commands/diff.ts)_
559
+ _See code: [src/commands/diff.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.12.5/src/commands/diff.ts)_
560
+
561
+ ## `flowcore edit policy NAME`
562
+
563
+ Edit a policy in your preferred editor
564
+
565
+ ```
566
+ USAGE
567
+ $ flowcore edit policy NAME -t <value> [--profile <value>]
568
+
569
+ ARGUMENTS
570
+ NAME name
571
+
572
+ FLAGS
573
+ -t, --tenant=<value> (required) tenant
574
+ --profile=<value> Specify the configuration profile to use
575
+
576
+ DESCRIPTION
577
+ Edit a policy in your preferred editor
578
+
579
+ EXAMPLES
580
+ $ flowcore iam edit policy my-policy -t my-tenant
581
+
582
+ $ FC_EDITOR=code flowcore iam edit policy my-policy -t my-tenant
583
+ ```
584
+
585
+ _See code: [@flowcore/cli-plugin-iam](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.6.0/src/commands/edit/policy.ts)_
586
+
587
+ ## `flowcore edit role NAME`
588
+
589
+ Edit a role in your preferred editor
590
+
591
+ ```
592
+ USAGE
593
+ $ flowcore edit role NAME -t <value> [--profile <value>]
594
+
595
+ ARGUMENTS
596
+ NAME name
597
+
598
+ FLAGS
599
+ -t, --tenant=<value> (required) tenant
600
+ --profile=<value> Specify the configuration profile to use
601
+
602
+ DESCRIPTION
603
+ Edit a role in your preferred editor
604
+
605
+ EXAMPLES
606
+ $ flowcore iam edit role my-role -t my-tenant
607
+
608
+ $ FC_EDITOR=code flowcore iam edit role my-role -t my-tenant
609
+ ```
610
+
611
+ _See code: [@flowcore/cli-plugin-iam](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.6.0/src/commands/edit/role.ts)_
508
612
 
509
613
  ## `flowcore generate nextjs-entity NAME`
510
614
 
@@ -556,6 +660,52 @@ EXAMPLES
556
660
 
557
661
  _See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v4.1.2/src/commands/get/adapter.ts)_
558
662
 
663
+ ## `flowcore get policy [NAME]`
664
+
665
+ Get a policy
666
+
667
+ ```
668
+ USAGE
669
+ $ flowcore get policy [NAME] [--profile <value>] [-j] [-t <value>] [-w]
670
+
671
+ ARGUMENTS
672
+ NAME name
673
+
674
+ FLAGS
675
+ -j, --json json output
676
+ -t, --tenant=<value> tenant
677
+ -w, --wide wide output
678
+ --profile=<value> Specify the configuration profile to use
679
+
680
+ DESCRIPTION
681
+ Get a policy
682
+ ```
683
+
684
+ _See code: [@flowcore/cli-plugin-iam](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.6.0/src/commands/get/policy.ts)_
685
+
686
+ ## `flowcore get role [NAME]`
687
+
688
+ Get a role
689
+
690
+ ```
691
+ USAGE
692
+ $ flowcore get role [NAME] [--profile <value>] [-j] [-t <value>] [-w]
693
+
694
+ ARGUMENTS
695
+ NAME name
696
+
697
+ FLAGS
698
+ -j, --json json output
699
+ -t, --tenant=<value> tenant
700
+ -w, --wide wide output
701
+ --profile=<value> Specify the configuration profile to use
702
+
703
+ DESCRIPTION
704
+ Get a role
705
+ ```
706
+
707
+ _See code: [@flowcore/cli-plugin-iam](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.6.0/src/commands/get/role.ts)_
708
+
559
709
  ## `flowcore get scenario [SCENARIO]`
560
710
 
561
711
  Get scenario
@@ -649,7 +799,7 @@ EXAMPLES
649
799
  $ flowcore info
650
800
  ```
651
801
 
652
- _See code: [src/commands/info.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.12.4/src/commands/info.ts)_
802
+ _See code: [src/commands/info.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.12.5/src/commands/info.ts)_
653
803
 
654
804
  ## `flowcore login`
655
805
 
@@ -173,5 +173,5 @@
173
173
  ]
174
174
  }
175
175
  },
176
- "version": "4.12.4"
176
+ "version": "4.12.5"
177
177
  }
package/package.json CHANGED
@@ -11,6 +11,7 @@
11
11
  "@flowcore/cli-plugin-core": "^5.1.6",
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
15
  "@flowcore/cli-plugin-scenario": "^4.1.2",
15
16
  "@flowcore/cli-plugin-tenant-management": "^1.1.1",
16
17
  "@flowcore/time-bucket": "^1.1.0",
@@ -113,7 +114,7 @@
113
114
  "prestart": "npm run build",
114
115
  "update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
115
116
  },
116
- "version": "4.12.4",
117
+ "version": "4.12.5",
117
118
  "bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
118
119
  "keywords": [
119
120
  "flowcore",