@flowcore/cli 4.13.1 → 4.13.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.
- package/CHANGELOG.md +7 -0
- package/README.md +9 -9
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,13 @@
|
|
|
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.2](https://github.com/flowcore-io/flowcore-cli/compare/v4.13.1...v4.13.2) (2025-04-29)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **package:** :arrow_up: update @flowcore/cli-plugin-data-core to version 3.3.0 and @flowcore/sdk to version 1.36.0 ([7a1c194](https://github.com/flowcore-io/flowcore-cli/commit/7a1c1945dc672b480b613e038c94ec7be1a1efec))
|
|
19
|
+
|
|
13
20
|
## [4.13.1](https://github.com/flowcore-io/flowcore-cli/compare/v4.13.0...v4.13.1) (2025-04-03)
|
|
14
21
|
|
|
15
22
|
|
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.13.
|
|
21
|
+
@flowcore/cli/4.13.2 linux-x64 node-v20.16.0
|
|
22
22
|
$ flowcore --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ flowcore COMMAND
|
|
@@ -108,7 +108,7 @@ EXAMPLES
|
|
|
108
108
|
$ flowcore apply -f ./path/to/manifest.yml
|
|
109
109
|
```
|
|
110
110
|
|
|
111
|
-
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.13.
|
|
111
|
+
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.13.2/src/commands/apply.ts)_
|
|
112
112
|
|
|
113
113
|
## `flowcore auth delete key API_KEY_NAME`
|
|
114
114
|
|
|
@@ -452,7 +452,7 @@ EXAMPLES
|
|
|
452
452
|
$ cat <<EOF | flowcore data-core apply -f -
|
|
453
453
|
```
|
|
454
454
|
|
|
455
|
-
_See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.
|
|
455
|
+
_See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.3.0/src/commands/data-core/apply.ts)_
|
|
456
456
|
|
|
457
457
|
## `flowcore data-core generate event-type FLOWTYPE`
|
|
458
458
|
|
|
@@ -479,7 +479,7 @@ EXAMPLES
|
|
|
479
479
|
$ flowcore data-core generate event-type flow-type-name -n event-type-name -d "description of the event type" -f example.yaml
|
|
480
480
|
```
|
|
481
481
|
|
|
482
|
-
_See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.
|
|
482
|
+
_See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.3.0/src/commands/data-core/generate/event-type.ts)_
|
|
483
483
|
|
|
484
484
|
## `flowcore data-core generate flow-type`
|
|
485
485
|
|
|
@@ -506,7 +506,7 @@ EXAMPLES
|
|
|
506
506
|
$ flowcore data-core generate flow-type -n flow-type-name -d "description of the flow type" -f example.yaml
|
|
507
507
|
```
|
|
508
508
|
|
|
509
|
-
_See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.
|
|
509
|
+
_See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.3.0/src/commands/data-core/generate/flow-type.ts)_
|
|
510
510
|
|
|
511
511
|
## `flowcore data-core init`
|
|
512
512
|
|
|
@@ -537,7 +537,7 @@ EXAMPLES
|
|
|
537
537
|
$ flowcore data-core init -t flowcore -n data-core-name -f example.yaml
|
|
538
538
|
```
|
|
539
539
|
|
|
540
|
-
_See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.
|
|
540
|
+
_See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.3.0/src/commands/data-core/init.ts)_
|
|
541
541
|
|
|
542
542
|
## `flowcore delete`
|
|
543
543
|
|
|
@@ -561,7 +561,7 @@ EXAMPLES
|
|
|
561
561
|
cat ./path/to/manifest.yml | flowcore delete -f -
|
|
562
562
|
```
|
|
563
563
|
|
|
564
|
-
_See code: [src/commands/delete.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.13.
|
|
564
|
+
_See code: [src/commands/delete.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.13.2/src/commands/delete.ts)_
|
|
565
565
|
|
|
566
566
|
## `flowcore delete policy NAME`
|
|
567
567
|
|
|
@@ -628,7 +628,7 @@ EXAMPLES
|
|
|
628
628
|
$ flowcore diff -f ./path/to/manifest.yml
|
|
629
629
|
```
|
|
630
630
|
|
|
631
|
-
_See code: [src/commands/diff.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.13.
|
|
631
|
+
_See code: [src/commands/diff.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.13.2/src/commands/diff.ts)_
|
|
632
632
|
|
|
633
633
|
## `flowcore edit policy NAME`
|
|
634
634
|
|
|
@@ -871,7 +871,7 @@ EXAMPLES
|
|
|
871
871
|
$ flowcore info
|
|
872
872
|
```
|
|
873
873
|
|
|
874
|
-
_See code: [src/commands/info.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.13.
|
|
874
|
+
_See code: [src/commands/info.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.13.2/src/commands/info.ts)_
|
|
875
875
|
|
|
876
876
|
## `flowcore login`
|
|
877
877
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"@flowcore/cli-plugin-auth-management": "^1.4.0",
|
|
10
10
|
"@flowcore/cli-plugin-config": "^2.5.0",
|
|
11
11
|
"@flowcore/cli-plugin-core": "^5.3.0",
|
|
12
|
-
"@flowcore/cli-plugin-data-core": "^3.
|
|
12
|
+
"@flowcore/cli-plugin-data-core": "^3.3.0",
|
|
13
13
|
"@flowcore/cli-plugin-generator": "^1.6.0",
|
|
14
14
|
"@flowcore/cli-plugin-iam": "^1.6.1",
|
|
15
15
|
"@flowcore/cli-plugin-scenario": "^4.1.5",
|
|
@@ -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.13.
|
|
117
|
+
"version": "4.13.2",
|
|
118
118
|
"bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
|
|
119
119
|
"keywords": [
|
|
120
120
|
"flowcore",
|