@trayio/cdk-cli 0.0.2 → 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 +27 -6
- package/oclif.manifest.json +24 -4
- package/package.json +7 -22
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.
|
|
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
|
|
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
|
|
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
|
-
|
|
95
|
+
Add an operation to connector project
|
|
75
96
|
|
|
76
97
|
```
|
|
77
98
|
USAGE
|
|
78
|
-
$ cdk
|
|
99
|
+
$ cdk connector:operation:add
|
|
79
100
|
|
|
80
101
|
DESCRIPTION
|
|
81
|
-
|
|
102
|
+
Add an operation to connector project
|
|
82
103
|
```
|
|
83
104
|
|
|
84
105
|
## `cdk help [COMMANDS]`
|
package/oclif.manifest.json
CHANGED
|
@@ -1,9 +1,29 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.0.
|
|
2
|
+
"version": "0.0.3",
|
|
3
3
|
"commands": {
|
|
4
|
-
"
|
|
5
|
-
"id": "
|
|
6
|
-
"
|
|
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,15 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trayio/cdk-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "A collection of CLI commands for connector development.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
|
-
"types": "index.d.ts",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
|
-
"
|
|
9
|
-
"import": "./dist/index.js",
|
|
10
|
-
"types": "./dist/index.d.ts"
|
|
8
|
+
"./*": "./dist/*.js"
|
|
11
9
|
},
|
|
12
|
-
"license": "
|
|
10
|
+
"license": "Proprietary",
|
|
13
11
|
"dependencies": {
|
|
14
12
|
"@oclif/core": "*",
|
|
15
13
|
"@oclif/plugin-autocomplete": "*",
|
|
@@ -28,27 +26,14 @@
|
|
|
28
26
|
"files": [
|
|
29
27
|
"/bin",
|
|
30
28
|
"/dist",
|
|
31
|
-
"/npm-shrinkwrap.json",
|
|
32
29
|
"/oclif.manifest.json"
|
|
33
30
|
],
|
|
34
31
|
"bin": {
|
|
35
|
-
"cdk": "./bin/run"
|
|
36
|
-
"cdk-cli": "./bin/run"
|
|
32
|
+
"cdk": "./bin/run"
|
|
37
33
|
},
|
|
38
34
|
"oclif": {
|
|
39
|
-
"commands": "./dist
|
|
35
|
+
"commands": "./dist",
|
|
40
36
|
"bin": "cdk",
|
|
41
|
-
"topics": {
|
|
42
|
-
"connector": {
|
|
43
|
-
"description": "Connector related commands"
|
|
44
|
-
},
|
|
45
|
-
"multi": {
|
|
46
|
-
"description": "Connector related commands targeting multiple environments/regions. (Default: US, EU1 and AP1. Staging flag: Staging and Frontend-staging)"
|
|
47
|
-
},
|
|
48
|
-
"generate": {
|
|
49
|
-
"description": "Run generators for things like connectors, operations, tests, etc."
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
37
|
"plugins": [
|
|
53
38
|
"@oclif/plugin-help",
|
|
54
39
|
"@oclif/plugin-autocomplete",
|
|
@@ -65,5 +50,5 @@
|
|
|
65
50
|
"oclif:clean": "rm -f oclif.manifest.json",
|
|
66
51
|
"postcompile": "oclif manifest && oclif readme"
|
|
67
52
|
},
|
|
68
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "4376b62135c61c9a8942fb449c2fac08d41ad5b3"
|
|
69
54
|
}
|