@bussolabs/closeyourit-cli 0.0.3 → 0.0.5
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 +1 -0
- package/dist/commands/alerts/create.d.ts +18 -0
- package/dist/commands/alerts/create.js +48 -0
- package/dist/commands/alerts/delete.d.ts +12 -0
- package/dist/commands/alerts/delete.js +25 -0
- package/dist/commands/alerts/list.d.ts +9 -0
- package/dist/commands/alerts/list.js +24 -0
- package/dist/commands/alerts/show.d.ts +9 -0
- package/dist/commands/alerts/show.js +21 -0
- package/dist/commands/alerts/update.d.ts +19 -0
- package/dist/commands/alerts/update.js +53 -0
- package/dist/commands/environments/create.d.ts +15 -0
- package/dist/commands/environments/create.js +37 -0
- package/dist/commands/environments/delete.d.ts +12 -0
- package/dist/commands/environments/delete.js +26 -0
- package/dist/commands/environments/list.d.ts +9 -0
- package/dist/commands/environments/list.js +25 -0
- package/dist/commands/environments/update.d.ts +16 -0
- package/dist/commands/environments/update.js +45 -0
- package/dist/commands/errors/promote.d.ts +12 -0
- package/dist/commands/errors/promote.js +24 -0
- package/dist/commands/groups/delete.d.ts +12 -0
- package/dist/commands/groups/delete.js +26 -0
- package/dist/commands/groups/update.d.ts +13 -0
- package/dist/commands/groups/update.js +35 -0
- package/dist/commands/invitations/resend.d.ts +9 -0
- package/dist/commands/invitations/resend.js +25 -0
- package/dist/commands/logs/list.d.ts +13 -0
- package/dist/commands/logs/list.js +51 -0
- package/dist/commands/members/set-access.d.ts +13 -0
- package/dist/commands/members/set-access.js +44 -0
- package/dist/commands/members/set-role.d.ts +12 -0
- package/dist/commands/members/set-role.js +32 -0
- package/dist/commands/metrics/promote.d.ts +12 -0
- package/dist/commands/metrics/promote.js +24 -0
- package/dist/commands/milestones/create.d.ts +14 -0
- package/dist/commands/milestones/create.js +38 -0
- package/dist/commands/milestones/delete.d.ts +13 -0
- package/dist/commands/milestones/delete.js +27 -0
- package/dist/commands/milestones/list.d.ts +10 -0
- package/dist/commands/milestones/list.js +29 -0
- package/dist/commands/milestones/show.d.ts +12 -0
- package/dist/commands/milestones/show.js +23 -0
- package/dist/commands/milestones/update.d.ts +17 -0
- package/dist/commands/milestones/update.js +45 -0
- package/dist/commands/monitors/create.d.ts +15 -0
- package/dist/commands/monitors/create.js +43 -0
- package/dist/commands/monitors/delete.d.ts +13 -0
- package/dist/commands/monitors/delete.js +27 -0
- package/dist/commands/monitors/list.d.ts +10 -0
- package/dist/commands/monitors/list.js +29 -0
- package/dist/commands/monitors/pause.d.ts +12 -0
- package/dist/commands/monitors/pause.js +21 -0
- package/dist/commands/monitors/resume.d.ts +12 -0
- package/dist/commands/monitors/resume.js +21 -0
- package/dist/commands/monitors/show.d.ts +12 -0
- package/dist/commands/monitors/show.js +23 -0
- package/dist/commands/monitors/update.d.ts +17 -0
- package/dist/commands/monitors/update.js +45 -0
- package/dist/commands/org/show.d.ts +6 -0
- package/dist/commands/org/show.js +16 -0
- package/dist/commands/org/update.d.ts +11 -0
- package/dist/commands/org/update.js +35 -0
- package/dist/commands/platforms/create.d.ts +15 -0
- package/dist/commands/platforms/create.js +36 -0
- package/dist/commands/platforms/delete.d.ts +12 -0
- package/dist/commands/platforms/delete.js +26 -0
- package/dist/commands/platforms/list.d.ts +9 -0
- package/dist/commands/platforms/list.js +25 -0
- package/dist/commands/platforms/update.d.ts +16 -0
- package/dist/commands/platforms/update.js +45 -0
- package/dist/commands/projects/create.d.ts +1 -1
- package/dist/commands/projects/create.js +3 -4
- package/dist/commands/projects/delete.d.ts +10 -0
- package/dist/commands/projects/delete.js +24 -0
- package/dist/commands/projects/update.d.ts +14 -0
- package/dist/commands/projects/update.js +37 -0
- package/dist/commands/tickets/assign.d.ts +14 -0
- package/dist/commands/tickets/assign.js +38 -0
- package/dist/commands/tickets/attach.d.ts +13 -0
- package/dist/commands/tickets/attach.js +48 -0
- package/dist/commands/tickets/comment-delete.d.ts +14 -0
- package/dist/commands/tickets/comment-delete.js +30 -0
- package/dist/commands/tickets/comment.d.ts +13 -0
- package/dist/commands/tickets/comment.js +29 -0
- package/dist/commands/tickets/delete.d.ts +13 -0
- package/dist/commands/tickets/delete.js +27 -0
- package/dist/commands/tickets/detach.d.ts +14 -0
- package/dist/commands/tickets/detach.js +30 -0
- package/dist/commands/tickets/milestone.d.ts +14 -0
- package/dist/commands/tickets/milestone.js +38 -0
- package/dist/commands/tickets/status.d.ts +13 -0
- package/dist/commands/tickets/status.js +27 -0
- package/dist/commands/tickets/unvote.d.ts +12 -0
- package/dist/commands/tickets/unvote.js +24 -0
- package/dist/commands/tickets/update.d.ts +25 -0
- package/dist/commands/tickets/update.js +71 -0
- package/dist/commands/tickets/vote.d.ts +12 -0
- package/dist/commands/tickets/vote.js +24 -0
- package/dist/lib/api.d.ts +17 -0
- package/dist/lib/api.js +40 -12
- package/oclif.manifest.json +3388 -559
- package/package.json +52 -14
package/package.json
CHANGED
|
@@ -1,27 +1,65 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bussolabs/closeyourit-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "CLI for CloseYourIt — manage org, errors, tokens and tickets with your user token",
|
|
5
|
-
"publishConfig": {
|
|
6
|
-
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/bussolabs/closeyourit-cli.git"
|
|
11
|
+
},
|
|
7
12
|
"license": "MIT",
|
|
8
|
-
"bin": {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
"
|
|
13
|
+
"bin": {
|
|
14
|
+
"closeyourit": "./bin/run.js",
|
|
15
|
+
"cyi": "./bin/run.js"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"/bin",
|
|
19
|
+
"/dist",
|
|
20
|
+
"/oclif.manifest.json",
|
|
21
|
+
"/opencli.json"
|
|
22
|
+
],
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=20"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@oclif/core": "^4",
|
|
28
|
+
"@oclif/plugin-help": "^6"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@types/node": "^22",
|
|
32
|
+
"oclif": "^4",
|
|
33
|
+
"typescript": "^5",
|
|
34
|
+
"vitest": "^2"
|
|
35
|
+
},
|
|
13
36
|
"oclif": {
|
|
14
37
|
"bin": "closeyourit",
|
|
15
38
|
"dirname": "closeyourit",
|
|
16
39
|
"commands": "./dist/commands",
|
|
17
40
|
"topicSeparator": " ",
|
|
18
|
-
"plugins": [
|
|
41
|
+
"plugins": [
|
|
42
|
+
"@oclif/plugin-help"
|
|
43
|
+
],
|
|
19
44
|
"topics": {
|
|
20
|
-
"projects": {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"
|
|
24
|
-
|
|
45
|
+
"projects": {
|
|
46
|
+
"description": "Browse visible projects"
|
|
47
|
+
},
|
|
48
|
+
"errors": {
|
|
49
|
+
"description": "Error monitoring: list, show, triage"
|
|
50
|
+
},
|
|
51
|
+
"tokens": {
|
|
52
|
+
"description": "Project ingest tokens (CI/SDK credentials)"
|
|
53
|
+
},
|
|
54
|
+
"tickets": {
|
|
55
|
+
"description": "Tickets: list, show, create"
|
|
56
|
+
},
|
|
57
|
+
"metrics": {
|
|
58
|
+
"description": "Performance metrics (slow queries/methods)"
|
|
59
|
+
},
|
|
60
|
+
"logs": {
|
|
61
|
+
"description": "Structured logs stream (cross-app)"
|
|
62
|
+
}
|
|
25
63
|
}
|
|
26
64
|
},
|
|
27
65
|
"scripts": {
|