@flowcore/cli 4.2.2 → 4.2.3
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 +4 -4
- package/oclif.manifest.json +1 -1
- package/package.json +120 -120
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.2.3](https://github.com/flowcore-io/flowcore-cli/compare/v4.2.2...v4.2.3) (2024-10-17)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* update cli-plugin-core ([78015db](https://github.com/flowcore-io/flowcore-cli/commit/78015db9c4584089d2f2e5a60dac8f997bd80447))
|
|
19
|
+
|
|
13
20
|
## [4.2.2](https://github.com/flowcore-io/flowcore-cli/compare/v4.2.1...v4.2.2) (2024-10-08)
|
|
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.2.
|
|
21
|
+
@flowcore/cli/4.2.3 linux-x64 node-v20.17.0
|
|
22
22
|
$ flowcore --help [COMMAND]
|
|
23
23
|
USAGE
|
|
24
24
|
$ flowcore COMMAND
|
|
@@ -95,7 +95,7 @@ EXAMPLES
|
|
|
95
95
|
$ flowcore apply -f ./path/to/manifest.yml
|
|
96
96
|
```
|
|
97
97
|
|
|
98
|
-
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.2.
|
|
98
|
+
_See code: [src/commands/apply.ts](https://github.com/flowcore-io/flowcore-cli/blob/v4.2.3/src/commands/apply.ts)_
|
|
99
99
|
|
|
100
100
|
## `flowcore auth delete key API_KEY_NAME`
|
|
101
101
|
|
|
@@ -1253,7 +1253,7 @@ EXAMPLES
|
|
|
1253
1253
|
$ flowcore stream "https://flowcore.io/<org>/<data core>/<flow type>/[<event type1>,<event type2>,<event type3>].stream" -s 3m
|
|
1254
1254
|
```
|
|
1255
1255
|
|
|
1256
|
-
_See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v4.0.
|
|
1256
|
+
_See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v4.0.4/src/commands/stream.ts)_
|
|
1257
1257
|
|
|
1258
1258
|
## `flowcore stream http STREAM`
|
|
1259
1259
|
|
|
@@ -1295,7 +1295,7 @@ EXAMPLES
|
|
|
1295
1295
|
$ 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
|
|
1296
1296
|
```
|
|
1297
1297
|
|
|
1298
|
-
_See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v4.0.
|
|
1298
|
+
_See code: [@flowcore/cli-plugin-core](https://github.com/flowcore/flowcore-cli-plugin-core/blob/v4.0.4/src/commands/stream/http.ts)_
|
|
1299
1299
|
|
|
1300
1300
|
## `flowcore version`
|
|
1301
1301
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,122 +1,122 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
2
|
+
"author": "Flowcore",
|
|
3
|
+
"bin": {
|
|
4
|
+
"flowcore": "./bin/run.js"
|
|
5
|
+
},
|
|
6
|
+
"dependencies": {
|
|
7
|
+
"@datastructures-js/queue": "^4.2.3",
|
|
8
|
+
"@flowcore/cli-plugin-ai": "^1.1.2",
|
|
9
|
+
"@flowcore/cli-plugin-auth-management": "^1.2.2",
|
|
10
|
+
"@flowcore/cli-plugin-config": "^2.4.1",
|
|
11
|
+
"@flowcore/cli-plugin-core": "^4.0.4",
|
|
12
|
+
"@flowcore/cli-plugin-data-core": "^3.1.1",
|
|
13
|
+
"@flowcore/cli-plugin-generator": "^1.6.0",
|
|
14
|
+
"@flowcore/cli-plugin-scenario": "^4.1.2",
|
|
15
|
+
"@flowcore/cli-plugin-tenant-management": "^1.1.1",
|
|
16
|
+
"@flowcore/time-bucket": "^1.1.0",
|
|
17
|
+
"@oclif/core": "^4.0.21",
|
|
18
|
+
"@oclif/plugin-autocomplete": "^3.2.3",
|
|
19
|
+
"@oclif/plugin-help": "^6.2.11",
|
|
20
|
+
"@oclif/plugin-not-found": "^3.2.20",
|
|
21
|
+
"@oclif/plugin-plugins": "^5.4.7",
|
|
22
|
+
"@oclif/plugin-version": "^2.2.12",
|
|
23
|
+
"axios": "^1.6.2",
|
|
24
|
+
"cassandra-uuid": "^0.1.0",
|
|
25
|
+
"cross-fetch": "^4.0.0",
|
|
26
|
+
"dayjs": "^1.11.10",
|
|
27
|
+
"enquirer": "^2.4.1",
|
|
28
|
+
"graphql": "^16.8.1",
|
|
29
|
+
"graphql-request": "^6.1.0",
|
|
30
|
+
"jwt-decode": "^4.0.0",
|
|
31
|
+
"lodash": "^4.17.21",
|
|
32
|
+
"merge": "^2.1.1",
|
|
33
|
+
"oclif-plugin-update-notifier": "^1.5.84",
|
|
34
|
+
"rxjs": "^7.8.1",
|
|
35
|
+
"session": "^0.1.0"
|
|
36
|
+
},
|
|
37
|
+
"description": "Flowcore CLI for interacting with the Flowcore platform",
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@oclif/prettier-config": "^0.2.1",
|
|
40
|
+
"@oclif/test": "^4.0.9",
|
|
41
|
+
"@types/chai": "^4",
|
|
42
|
+
"@types/express": "^4.17.21",
|
|
43
|
+
"@types/lodash": "^4.14.202",
|
|
44
|
+
"@types/mocha": "^10",
|
|
45
|
+
"@types/node": "^18",
|
|
46
|
+
"chai": "^4",
|
|
47
|
+
"eslint": "^8",
|
|
48
|
+
"eslint-config-oclif": "^5",
|
|
49
|
+
"eslint-config-oclif-typescript": "^3",
|
|
50
|
+
"eslint-config-prettier": "^9.0.0",
|
|
51
|
+
"mocha": "^10",
|
|
52
|
+
"oclif": "^4.0.4",
|
|
53
|
+
"shx": "^0.3.4",
|
|
54
|
+
"ts-node": "^10.9.1",
|
|
55
|
+
"typescript": "^5"
|
|
56
|
+
},
|
|
57
|
+
"engines": {
|
|
58
|
+
"node": ">=18.0.0"
|
|
59
|
+
},
|
|
60
|
+
"files": [
|
|
61
|
+
"/bin",
|
|
62
|
+
"/dist",
|
|
63
|
+
"/oclif.manifest.json"
|
|
64
|
+
],
|
|
65
|
+
"homepage": "https://github.com/flowcore-io/flowcore-cli",
|
|
66
|
+
"license": "MIT",
|
|
67
|
+
"main": "",
|
|
68
|
+
"name": "@flowcore/cli",
|
|
69
|
+
"oclif": {
|
|
70
|
+
"bin": "flowcore",
|
|
71
|
+
"dirname": "flowcore",
|
|
72
|
+
"commands": "./dist/commands",
|
|
73
|
+
"plugins": [
|
|
74
|
+
"@oclif/plugin-help",
|
|
75
|
+
"@oclif/plugin-warn-if-update-available",
|
|
76
|
+
"@oclif/plugin-version",
|
|
77
|
+
"@oclif/plugin-plugins",
|
|
78
|
+
"@oclif/plugin-autocomplete",
|
|
79
|
+
"@oclif/plugin-not-found",
|
|
80
|
+
"oclif-plugin-update-notifier",
|
|
81
|
+
"@flowcore/cli-plugin-config",
|
|
82
|
+
"@flowcore/cli-plugin-data-core",
|
|
83
|
+
"@flowcore/cli-plugin-scenario",
|
|
84
|
+
"@flowcore/cli-plugin-core",
|
|
85
|
+
"@flowcore/cli-plugin-generator",
|
|
86
|
+
"@flowcore/cli-plugin-auth-management",
|
|
87
|
+
"@flowcore/cli-plugin-tenant-management",
|
|
88
|
+
"@flowcore/cli-plugin-ai"
|
|
89
|
+
],
|
|
90
|
+
"warnIfUpdateAvailable": {
|
|
91
|
+
"timeoutInDays": 2
|
|
92
|
+
},
|
|
93
|
+
"topicSeparator": " "
|
|
94
|
+
},
|
|
95
|
+
"repository": "flowcore-io/flowcore-cli",
|
|
96
|
+
"scripts": {
|
|
97
|
+
"build": "shx rm -rf dist && tsc -b",
|
|
98
|
+
"lint": "eslint . --ext .ts",
|
|
99
|
+
"postpack": "shx rm -f oclif.manifest.json",
|
|
100
|
+
"posttest": "npm run lint",
|
|
101
|
+
"prepack": "npm run build && oclif manifest && oclif readme",
|
|
102
|
+
"prepare": "npm run build",
|
|
103
|
+
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
104
|
+
"version": "oclif readme && git add README.md",
|
|
105
|
+
"start": "./bin/run.js",
|
|
106
|
+
"prestart": "npm run build",
|
|
107
|
+
"update-schema": "rover graph introspect https://graph.api.staging.flowcore.io/graphql -o schema.gql"
|
|
108
|
+
},
|
|
109
|
+
"version": "4.2.3",
|
|
110
|
+
"bugs": "https://github.com/flowcore-io/flowcore-cli/issues",
|
|
111
|
+
"keywords": [
|
|
112
|
+
"flowcore",
|
|
113
|
+
"cli",
|
|
114
|
+
"flowcore-cli",
|
|
115
|
+
"streaming",
|
|
116
|
+
"events",
|
|
117
|
+
"data"
|
|
118
|
+
],
|
|
119
|
+
"types": "dist/index.d.ts",
|
|
120
|
+
"exports": "./lib/index.js",
|
|
121
|
+
"type": "module"
|
|
122
122
|
}
|