@flowcore/cli 4.12.1 → 4.12.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.12.2](https://github.com/flowcore-io/flowcore-cli/compare/v4.12.1...v4.12.2) (2025-02-07)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* update data core plugin ([41e5d8e](https://github.com/flowcore-io/flowcore-cli/commit/41e5d8ea1b4a148745a3be0c76171e1eb0647b01))
|
|
19
|
+
|
|
13
20
|
## [4.12.1](https://github.com/flowcore-io/flowcore-cli/compare/v4.12.0...v4.12.1) (2025-02-07)
|
|
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.12.
|
|
21
|
+
@flowcore/cli/4.12.2 linux-x64 node-v22.13.1
|
|
22
22
|
$ flowcore --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ flowcore COMMAND
|
|
@@ -99,7 +99,7 @@ EXAMPLES
|
|
|
99
99
|
$ flowcore apply -f ./path/to/manifest.yml
|
|
100
100
|
```
|
|
101
101
|
|
|
102
|
-
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.12.
|
|
102
|
+
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.12.2/src/commands/apply.ts)_
|
|
103
103
|
|
|
104
104
|
## `flowcore auth delete key API_KEY_NAME`
|
|
105
105
|
|
|
@@ -374,7 +374,7 @@ EXAMPLES
|
|
|
374
374
|
$ cat <<EOF | flowcore data-core apply -f -
|
|
375
375
|
```
|
|
376
376
|
|
|
377
|
-
_See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.2.
|
|
377
|
+
_See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.2.2/src/commands/data-core/apply.ts)_
|
|
378
378
|
|
|
379
379
|
## `flowcore data-core generate event-type FLOWTYPE`
|
|
380
380
|
|
|
@@ -401,7 +401,7 @@ EXAMPLES
|
|
|
401
401
|
$ flowcore data-core generate event-type flow-type-name -n event-type-name -d "description of the event type" -f example.yaml
|
|
402
402
|
```
|
|
403
403
|
|
|
404
|
-
_See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.2.
|
|
404
|
+
_See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.2.2/src/commands/data-core/generate/event-type.ts)_
|
|
405
405
|
|
|
406
406
|
## `flowcore data-core generate flow-type`
|
|
407
407
|
|
|
@@ -428,7 +428,7 @@ EXAMPLES
|
|
|
428
428
|
$ flowcore data-core generate flow-type -n flow-type-name -d "description of the flow type" -f example.yaml
|
|
429
429
|
```
|
|
430
430
|
|
|
431
|
-
_See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.2.
|
|
431
|
+
_See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.2.2/src/commands/data-core/generate/flow-type.ts)_
|
|
432
432
|
|
|
433
433
|
## `flowcore data-core init`
|
|
434
434
|
|
|
@@ -459,7 +459,7 @@ EXAMPLES
|
|
|
459
459
|
$ flowcore data-core init -t flowcore -n data-core-name -f example.yaml
|
|
460
460
|
```
|
|
461
461
|
|
|
462
|
-
_See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.2.
|
|
462
|
+
_See code: [@flowcore/cli-plugin-data-core](https://github.com/flowcore/flowcore-cli-data-core/blob/v3.2.2/src/commands/data-core/init.ts)_
|
|
463
463
|
|
|
464
464
|
## `flowcore delete`
|
|
465
465
|
|
|
@@ -483,7 +483,7 @@ EXAMPLES
|
|
|
483
483
|
cat ./path/to/manifest.yml | flowcore delete -f -
|
|
484
484
|
```
|
|
485
485
|
|
|
486
|
-
_See code: [src/commands/delete.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.12.
|
|
486
|
+
_See code: [src/commands/delete.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.12.2/src/commands/delete.ts)_
|
|
487
487
|
|
|
488
488
|
## `flowcore diff`
|
|
489
489
|
|
|
@@ -504,7 +504,7 @@ EXAMPLES
|
|
|
504
504
|
$ flowcore diff -f ./path/to/manifest.yml
|
|
505
505
|
```
|
|
506
506
|
|
|
507
|
-
_See code: [src/commands/diff.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.12.
|
|
507
|
+
_See code: [src/commands/diff.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.12.2/src/commands/diff.ts)_
|
|
508
508
|
|
|
509
509
|
## `flowcore generate nextjs-entity NAME`
|
|
510
510
|
|
|
@@ -649,7 +649,7 @@ EXAMPLES
|
|
|
649
649
|
$ flowcore info
|
|
650
650
|
```
|
|
651
651
|
|
|
652
|
-
_See code: [src/commands/info.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.12.
|
|
652
|
+
_See code: [src/commands/info.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.12.2/src/commands/info.ts)_
|
|
653
653
|
|
|
654
654
|
## `flowcore login`
|
|
655
655
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"@flowcore/cli-plugin-auth-management": "^1.2.2",
|
|
10
10
|
"@flowcore/cli-plugin-config": "^2.5.0",
|
|
11
11
|
"@flowcore/cli-plugin-core": "^5.1.4",
|
|
12
|
-
"@flowcore/cli-plugin-data-core": "^3.2.
|
|
12
|
+
"@flowcore/cli-plugin-data-core": "^3.2.2",
|
|
13
13
|
"@flowcore/cli-plugin-generator": "^1.6.0",
|
|
14
14
|
"@flowcore/cli-plugin-scenario": "^4.1.2",
|
|
15
15
|
"@flowcore/cli-plugin-tenant-management": "^1.1.1",
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
"prestart": "npm run build",
|
|
114
114
|
"update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
|
|
115
115
|
},
|
|
116
|
-
"version": "4.12.
|
|
116
|
+
"version": "4.12.2",
|
|
117
117
|
"bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
|
|
118
118
|
"keywords": [
|
|
119
119
|
"flowcore",
|