@flowcore/cli 3.1.1 → 3.2.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 +7 -0
- package/README.md +32 -2
- package/oclif.manifest.json +1 -1
- package/package.json +4 -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
|
+
## [3.2.0](https://github.com/flowcore-io/flowcore-cli/compare/v3.1.1...v3.2.0) (2024-08-30)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* added get tenant resources ([c800ba7](https://github.com/flowcore-io/flowcore-cli/commit/c800ba740153098b229361a86d1449d71ebdf8e9))
|
|
19
|
+
|
|
13
20
|
## [3.1.1](https://github.com/flowcore-io/flowcore-cli/compare/v3.1.0...v3.1.1) (2024-08-30)
|
|
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/3.
|
|
21
|
+
@flowcore/cli/3.2.0 linux-x64 node-v20.17.0
|
|
22
22
|
$ flowcore --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ flowcore COMMAND
|
|
@@ -41,6 +41,7 @@ USAGE
|
|
|
41
41
|
* [`flowcore generate nextjs-entity NAME`](#flowcore-generate-nextjs-entity-name)
|
|
42
42
|
* [`flowcore get adapter [ADAPTER]`](#flowcore-get-adapter-adapter)
|
|
43
43
|
* [`flowcore get scenario [SCENARIO]`](#flowcore-get-scenario-scenario)
|
|
44
|
+
* [`flowcore get tenant [NAME]`](#flowcore-get-tenant-name)
|
|
44
45
|
* [`flowcore help [COMMANDS]`](#flowcore-help-commands)
|
|
45
46
|
* [`flowcore login`](#flowcore-login)
|
|
46
47
|
* [`flowcore logs adapter ADAPTER`](#flowcore-logs-adapter-adapter)
|
|
@@ -89,7 +90,7 @@ EXAMPLES
|
|
|
89
90
|
$ flowcore apply -f ./path/to/manifest.yml
|
|
90
91
|
```
|
|
91
92
|
|
|
92
|
-
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v3.
|
|
93
|
+
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v3.2.0/src/commands/apply.ts)_
|
|
93
94
|
|
|
94
95
|
## `flowcore auth delete key API_KEY_NAME`
|
|
95
96
|
|
|
@@ -434,6 +435,35 @@ EXAMPLES
|
|
|
434
435
|
|
|
435
436
|
_See code: [@flowcore/cli-plugin-scenario](https://github.com/flowcore/flowcore-cli-plugin-scenario/blob/v3.0.1/src/commands/get/scenario.ts)_
|
|
436
437
|
|
|
438
|
+
## `flowcore get tenant [NAME]`
|
|
439
|
+
|
|
440
|
+
Get tenant
|
|
441
|
+
|
|
442
|
+
```
|
|
443
|
+
USAGE
|
|
444
|
+
$ flowcore get tenant [NAME] [--profile <value>] [-j] [-t <value>]
|
|
445
|
+
|
|
446
|
+
ARGUMENTS
|
|
447
|
+
NAME name
|
|
448
|
+
|
|
449
|
+
FLAGS
|
|
450
|
+
-j, --json output in json
|
|
451
|
+
-t, --tenant=<value> tenant
|
|
452
|
+
--profile=<value> Specify the configuration profile to use
|
|
453
|
+
|
|
454
|
+
DESCRIPTION
|
|
455
|
+
Get tenant
|
|
456
|
+
|
|
457
|
+
EXAMPLES
|
|
458
|
+
$ flowcore get tenant
|
|
459
|
+
|
|
460
|
+
$ flowcore get tenant --tenant=tenant-name
|
|
461
|
+
|
|
462
|
+
$ flowcore get tenant --tenant=tenant-name --json
|
|
463
|
+
```
|
|
464
|
+
|
|
465
|
+
_See code: [@flowcore/cli-plugin-tenant-management](https://github.com/flowcore-io/tenant-management/blob/v1.0.0/src/commands/get/tenant.ts)_
|
|
466
|
+
|
|
437
467
|
## `flowcore help [COMMANDS]`
|
|
438
468
|
|
|
439
469
|
Display help for flowcore.
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"@flowcore/cli-plugin-data-core": "^2.2.2",
|
|
12
12
|
"@flowcore/cli-plugin-generator": "^1.3.0",
|
|
13
13
|
"@flowcore/cli-plugin-scenario": "^3.0.1",
|
|
14
|
+
"@flowcore/cli-plugin-tenant-management": "^1.0.0",
|
|
14
15
|
"@flowcore/time-bucket": "^1.1.0",
|
|
15
16
|
"@oclif/core": "^3",
|
|
16
17
|
"@oclif/plugin-autocomplete": "^3.0.2",
|
|
@@ -81,7 +82,8 @@
|
|
|
81
82
|
"@flowcore/cli-plugin-scenario",
|
|
82
83
|
"@flowcore/cli-plugin-core",
|
|
83
84
|
"@flowcore/cli-plugin-generator",
|
|
84
|
-
"@flowcore/cli-plugin-auth-management"
|
|
85
|
+
"@flowcore/cli-plugin-auth-management",
|
|
86
|
+
"@flowcore/cli-plugin-tenant-management"
|
|
85
87
|
],
|
|
86
88
|
"warnIfUpdateAvailable": {
|
|
87
89
|
"timeoutInDays": 2
|
|
@@ -102,7 +104,7 @@
|
|
|
102
104
|
"prestart": "npm run build",
|
|
103
105
|
"update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
|
|
104
106
|
},
|
|
105
|
-
"version": "3.
|
|
107
|
+
"version": "3.2.0",
|
|
106
108
|
"bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
|
|
107
109
|
"keywords": [
|
|
108
110
|
"flowcore",
|