@trayio/cdk-cli 0.0.1 → 0.0.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/README.md CHANGED
@@ -24,7 +24,7 @@ $ npm install -g @trayio/cdk-cli
24
24
  $ cdk COMMAND
25
25
  running command...
26
26
  $ cdk (--version|-v)
27
- @trayio/cdk-cli/0.0.1 darwin-x64 node-v14.21.3
27
+ @trayio/cdk-cli/0.0.3 darwin-x64 node-v18.16.0
28
28
  $ cdk --help [COMMAND]
29
29
  USAGE
30
30
  $ cdk COMMAND
@@ -35,11 +35,20 @@ USAGE
35
35
  # Commands
36
36
 
37
37
  <!-- commands -->
38
+ * [`cdk`](#cdk)
38
39
  * [`cdk autocomplete [SHELL]`](#cdk-autocomplete-shell)
39
- * [`cdk hello`](#cdk-hello)
40
+ * [`cdk connector:init`](#cdk-connectorinit)
41
+ * [`cdk connector:operation:add`](#cdk-connectoroperationadd)
40
42
  * [`cdk help [COMMANDS]`](#cdk-help-commands)
41
43
  * [`cdk version`](#cdk-version)
42
44
 
45
+ ## `cdk`
46
+
47
+ ```
48
+ USAGE
49
+ $ cdk
50
+ ```
51
+
43
52
  ## `cdk autocomplete [SHELL]`
44
53
 
45
54
  display autocomplete installation instructions
@@ -69,16 +78,28 @@ EXAMPLES
69
78
 
70
79
  _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v2.1.9/src/commands/autocomplete/index.ts)_
71
80
 
72
- ## `cdk hello`
81
+ ## `cdk connector:init`
82
+
83
+ Initialize a connector project
84
+
85
+ ```
86
+ USAGE
87
+ $ cdk connector:init
88
+
89
+ DESCRIPTION
90
+ Initialize a connector project
91
+ ```
92
+
93
+ ## `cdk connector:operation:add`
73
94
 
74
- Hello world
95
+ Add an operation to connector project
75
96
 
76
97
  ```
77
98
  USAGE
78
- $ cdk hello
99
+ $ cdk connector:operation:add
79
100
 
80
101
  DESCRIPTION
81
- Hello world
102
+ Add an operation to connector project
82
103
  ```
83
104
 
84
105
  ## `cdk help [COMMANDS]`
@@ -1,9 +1,29 @@
1
1
  {
2
- "version": "0.0.1",
2
+ "version": "0.0.3",
3
3
  "commands": {
4
- "hello": {
5
- "id": "hello",
6
- "description": "Hello world",
4
+ ".": {
5
+ "id": ".",
6
+ "pluginName": "@trayio/cdk-cli",
7
+ "pluginAlias": "@trayio/cdk-cli",
8
+ "pluginType": "core",
9
+ "aliases": [],
10
+ "flags": {},
11
+ "args": {}
12
+ },
13
+ "connector:init": {
14
+ "id": "connector:init",
15
+ "description": "Initialize a connector project",
16
+ "strict": true,
17
+ "pluginName": "@trayio/cdk-cli",
18
+ "pluginAlias": "@trayio/cdk-cli",
19
+ "pluginType": "core",
20
+ "aliases": [],
21
+ "flags": {},
22
+ "args": {}
23
+ },
24
+ "connector:operation:add": {
25
+ "id": "connector:operation:add",
26
+ "description": "Add an operation to connector project",
7
27
  "strict": true,
8
28
  "pluginName": "@trayio/cdk-cli",
9
29
  "pluginAlias": "@trayio/cdk-cli",
package/package.json CHANGED
@@ -1,66 +1,54 @@
1
1
  {
2
- "name": "@trayio/cdk-cli",
3
- "version": "0.0.1",
4
- "description": "A collection of CLI commands for connector development.",
5
- "main": "index.js",
6
- "types": "index.d.ts",
7
- "exports": {
8
- "require": "./dist/index.js",
9
- "import": "./dist/index.js",
10
- "types": "./dist/index.d.ts"
11
- },
12
- "license": "MIT",
13
- "dependencies": {
14
- "@oclif/core": "*",
15
- "@oclif/plugin-autocomplete": "*",
16
- "@oclif/plugin-help": "*",
17
- "@oclif/plugin-version": "*",
18
- "@oclif/test": "*"
19
- },
20
- "typesVersions": {
21
- "*": {
22
- "*": [
23
- "*",
24
- "dist/*"
25
- ]
26
- }
27
- },
28
- "files": [
29
- "/bin",
30
- "/dist",
31
- "/npm-shrinkwrap.json",
32
- "/oclif.manifest.json"
33
- ],
34
- "bin": "./bin/run",
35
- "oclif": {
36
- "commands": "./dist/commands",
37
- "bin": "cdk",
38
- "topics": {
39
- "connector": {
40
- "description": "Connector related commands"
41
- },
42
- "multi": {
43
- "description": "Connector related commands targeting multiple environments/regions. (Default: US, EU1 and AP1. Staging flag: Staging and Frontend-staging)"
44
- },
45
- "generate": {
46
- "description": "Run generators for things like connectors, operations, tests, etc."
47
- }
48
- },
49
- "plugins": [
50
- "@oclif/plugin-help",
51
- "@oclif/plugin-autocomplete",
52
- "@oclif/plugin-version"
53
- ],
54
- "additionalHelpFlags": [
55
- "-h"
56
- ],
57
- "additionalVersionFlags": [
58
- "-v"
59
- ]
60
- },
61
- "scripts": {
62
- "oclif:clean": "rm -f oclif.manifest.json",
63
- "postcompile": "oclif manifest && oclif readme"
64
- },
65
- "gitHead": "f5c9d4eaec4f9d523356b4ed96698644acfce32d"
2
+ "name": "@trayio/cdk-cli",
3
+ "version": "0.0.3",
4
+ "description": "A collection of CLI commands for connector development.",
5
+ "main": "./dist/index.js",
6
+ "types": "./dist/index.d.ts",
7
+ "exports": {
8
+ "./*": "./dist/*.js"
9
+ },
10
+ "license": "Proprietary",
11
+ "dependencies": {
12
+ "@oclif/core": "*",
13
+ "@oclif/plugin-autocomplete": "*",
14
+ "@oclif/plugin-help": "*",
15
+ "@oclif/plugin-version": "*",
16
+ "@oclif/test": "*"
17
+ },
18
+ "typesVersions": {
19
+ "*": {
20
+ "*": [
21
+ "*",
22
+ "dist/*"
23
+ ]
24
+ }
25
+ },
26
+ "files": [
27
+ "/bin",
28
+ "/dist",
29
+ "/oclif.manifest.json"
30
+ ],
31
+ "bin": {
32
+ "cdk": "./bin/run"
33
+ },
34
+ "oclif": {
35
+ "commands": "./dist",
36
+ "bin": "cdk",
37
+ "plugins": [
38
+ "@oclif/plugin-help",
39
+ "@oclif/plugin-autocomplete",
40
+ "@oclif/plugin-version"
41
+ ],
42
+ "additionalHelpFlags": [
43
+ "-h"
44
+ ],
45
+ "additionalVersionFlags": [
46
+ "-v"
47
+ ]
48
+ },
49
+ "scripts": {
50
+ "oclif:clean": "rm -f oclif.manifest.json",
51
+ "postcompile": "oclif manifest && oclif readme"
52
+ },
53
+ "gitHead": "4376b62135c61c9a8942fb449c2fac08d41ad5b3"
66
54
  }