@trayio/cdk-cli 0.0.3 → 0.0.4-beta
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/INTRODUCTION.md +54 -0
- package/LICENSE.txt +22 -0
- package/README.md +150 -46
- package/bin/dev +0 -0
- package/dist/commands/add-operation.d.ts +11 -0
- package/dist/commands/add-operation.d.ts.map +1 -0
- package/dist/commands/add-operation.js +102 -0
- package/dist/commands/add-operation.unit.test.d.ts +2 -0
- package/dist/commands/add-operation.unit.test.d.ts.map +1 -0
- package/dist/commands/add-operation.unit.test.js +119 -0
- package/dist/commands/build.d.ts +8 -0
- package/dist/commands/build.d.ts.map +1 -0
- package/dist/commands/build.js +34 -0
- package/dist/commands/deploy.d.ts +8 -0
- package/dist/commands/deploy.d.ts.map +1 -0
- package/dist/commands/deploy.js +90 -0
- package/dist/commands/deployment-status.d.ts +12 -0
- package/dist/commands/deployment-status.d.ts.map +1 -0
- package/dist/commands/deployment-status.js +78 -0
- package/dist/commands/deployment-status.unit.test.d.ts +2 -0
- package/dist/commands/deployment-status.unit.test.d.ts.map +1 -0
- package/dist/commands/deployment-status.unit.test.js +82 -0
- package/dist/commands/import-openapi-spec-tst.d.ts +10 -0
- package/dist/commands/import-openapi-spec-tst.d.ts.map +1 -0
- package/dist/commands/import-openapi-spec-tst.js +101 -0
- package/dist/commands/import-openapi-spec.d.ts +10 -0
- package/dist/commands/import-openapi-spec.d.ts.map +1 -0
- package/dist/commands/import-openapi-spec.js +101 -0
- package/dist/commands/index.d.ts +2 -0
- package/dist/commands/index.d.ts.map +1 -0
- package/dist/commands/index.js +5 -0
- package/dist/commands/init.d.ts +13 -0
- package/dist/commands/init.d.ts.map +1 -0
- package/dist/commands/init.js +85 -0
- package/dist/commands/init.unit.test.d.ts +2 -0
- package/dist/commands/init.unit.test.d.ts.map +1 -0
- package/dist/commands/init.unit.test.js +127 -0
- package/dist/commands/test.d.ts +12 -0
- package/dist/commands/test.d.ts.map +1 -0
- package/dist/commands/test.js +55 -0
- package/dist/templates/composite-operation-template.zip +0 -0
- package/dist/templates/connector-template.zip +0 -0
- package/dist/templates/http-operation-template.zip +0 -0
- package/dist/utils/check-env.d.ts +2 -0
- package/dist/utils/check-env.d.ts.map +1 -0
- package/dist/utils/check-env.js +35 -0
- package/dist/utils/check-env.unit.test.d.ts +2 -0
- package/dist/utils/check-env.unit.test.d.ts.map +1 -0
- package/dist/utils/check-env.unit.test.js +46 -0
- package/dist/utils/colorizeString.d.ts +5 -0
- package/dist/utils/colorizeString.d.ts.map +1 -0
- package/dist/utils/colorizeString.js +15 -0
- package/oclif.manifest.json +243 -16
- package/package.json +68 -53
package/package.json
CHANGED
|
@@ -1,54 +1,69 @@
|
|
|
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
|
-
|
|
2
|
+
"name": "@trayio/cdk-cli",
|
|
3
|
+
"version": "0.0.4-beta",
|
|
4
|
+
"description": "A CLI for connector development",
|
|
5
|
+
"exports": {
|
|
6
|
+
"./*": "./dist/*.js"
|
|
7
|
+
},
|
|
8
|
+
"author": "Tray.io",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">=18.x"
|
|
12
|
+
},
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public"
|
|
15
|
+
},
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"@oclif/core": "3.18.1",
|
|
18
|
+
"@oclif/plugin-autocomplete": "3.0.5",
|
|
19
|
+
"@oclif/plugin-help": "6.0.12",
|
|
20
|
+
"@oclif/plugin-version": "2.0.11",
|
|
21
|
+
"@oclif/test": "3.1.12",
|
|
22
|
+
"@trayio/axios": "0.0.4-beta",
|
|
23
|
+
"@trayio/cdk-build": "0.0.4-beta",
|
|
24
|
+
"@trayio/commons": "0.0.4-beta",
|
|
25
|
+
"@trayio/generator": "0.0.4-beta",
|
|
26
|
+
"@trayio/tray-client": "0.0.4-beta",
|
|
27
|
+
"@trayio/tray-openapi": "0.0.4-beta",
|
|
28
|
+
"@types/inquirer": "8.2.6",
|
|
29
|
+
"chalk": "4.1.2",
|
|
30
|
+
"inquirer": "8.2.5"
|
|
31
|
+
},
|
|
32
|
+
"typesVersions": {
|
|
33
|
+
"*": {
|
|
34
|
+
"*": [
|
|
35
|
+
"*",
|
|
36
|
+
"dist/*"
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"files": [
|
|
41
|
+
"/bin",
|
|
42
|
+
"/dist",
|
|
43
|
+
"/oclif.manifest.json",
|
|
44
|
+
"/INTRODUCTION.md"
|
|
45
|
+
],
|
|
46
|
+
"bin": {
|
|
47
|
+
"tray-cdk": "./bin/run"
|
|
48
|
+
},
|
|
49
|
+
"oclif": {
|
|
50
|
+
"commands": "./dist/commands",
|
|
51
|
+
"bin": "tray-cdk",
|
|
52
|
+
"topicSeparator": " ",
|
|
53
|
+
"plugins": [
|
|
54
|
+
"@oclif/plugin-help",
|
|
55
|
+
"@oclif/plugin-autocomplete",
|
|
56
|
+
"@oclif/plugin-version"
|
|
57
|
+
],
|
|
58
|
+
"additionalHelpFlags": [
|
|
59
|
+
"-h"
|
|
60
|
+
],
|
|
61
|
+
"additionalVersionFlags": [
|
|
62
|
+
"-v"
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
"scripts": {
|
|
66
|
+
"oclif:clean": "rm -f oclif.manifest.json",
|
|
67
|
+
"postcompile": "oclif manifest && oclif readme"
|
|
68
|
+
}
|
|
69
|
+
}
|