@bussolabs/closeyourit-cli 0.23.1 → 0.24.1
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/dist/commands/coverage/show.d.ts +10 -0
- package/dist/commands/coverage/show.js +39 -0
- package/dist/commands/tickets/clarifications.d.ts +21 -0
- package/dist/commands/tickets/clarifications.js +36 -0
- package/dist/commands/usage/list.d.ts +12 -0
- package/dist/commands/usage/list.js +43 -0
- package/dist/commands/usage/reporters.d.ts +10 -0
- package/dist/commands/usage/reporters.js +37 -0
- package/dist/lib/ticket-clarifications.d.ts +13 -0
- package/dist/lib/ticket-clarifications.js +31 -0
- package/oclif.manifest.json +3566 -3354
- package/opencli.json +166 -1
- package/package.json +1 -1
package/opencli.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"opencli": "0.1",
|
|
4
4
|
"info": {
|
|
5
5
|
"title": "closeyourit",
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "0.24.1",
|
|
7
7
|
"description": "CLI for CloseYourIt — manage org, errors, tokens and tickets with your user token",
|
|
8
8
|
"license": {
|
|
9
9
|
"name": "MIT",
|
|
@@ -1143,6 +1143,46 @@
|
|
|
1143
1143
|
}
|
|
1144
1144
|
]
|
|
1145
1145
|
},
|
|
1146
|
+
{
|
|
1147
|
+
"name": "coverage",
|
|
1148
|
+
"commands": [
|
|
1149
|
+
{
|
|
1150
|
+
"name": "show",
|
|
1151
|
+
"description": "Show the coverage extract the CI published for a project (last snapshot per branch, never the history)",
|
|
1152
|
+
"options": [
|
|
1153
|
+
{
|
|
1154
|
+
"name": "--project",
|
|
1155
|
+
"aliases": [
|
|
1156
|
+
"-p"
|
|
1157
|
+
],
|
|
1158
|
+
"description": "Project id (UUID) or key",
|
|
1159
|
+
"required": true,
|
|
1160
|
+
"arguments": [
|
|
1161
|
+
{
|
|
1162
|
+
"name": "PROJECT",
|
|
1163
|
+
"required": true
|
|
1164
|
+
}
|
|
1165
|
+
]
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
"name": "--branch",
|
|
1169
|
+
"description": "Only the extract of this branch",
|
|
1170
|
+
"arguments": [
|
|
1171
|
+
{
|
|
1172
|
+
"name": "BRANCH",
|
|
1173
|
+
"required": true
|
|
1174
|
+
}
|
|
1175
|
+
]
|
|
1176
|
+
}
|
|
1177
|
+
],
|
|
1178
|
+
"examples": [
|
|
1179
|
+
"closeyourit coverage show --project closeyourit-rails",
|
|
1180
|
+
"closeyourit coverage show -p CYRA --branch main",
|
|
1181
|
+
"closeyourit coverage show -p CYRA --json"
|
|
1182
|
+
]
|
|
1183
|
+
}
|
|
1184
|
+
]
|
|
1185
|
+
},
|
|
1146
1186
|
{
|
|
1147
1187
|
"name": "cron-monitors",
|
|
1148
1188
|
"description": "Cron/heartbeat monitors (read-only)",
|
|
@@ -9552,6 +9592,37 @@
|
|
|
9552
9592
|
"closeyourit tickets branch DRFL-3 -p driverone-flutter --json"
|
|
9553
9593
|
]
|
|
9554
9594
|
},
|
|
9595
|
+
{
|
|
9596
|
+
"name": "clarifications",
|
|
9597
|
+
"description": "Show the clarification cycle state of a ticket (rounds, reply, escalation)",
|
|
9598
|
+
"options": [
|
|
9599
|
+
{
|
|
9600
|
+
"name": "--project",
|
|
9601
|
+
"aliases": [
|
|
9602
|
+
"-p"
|
|
9603
|
+
],
|
|
9604
|
+
"description": "Project id (UUID) or key",
|
|
9605
|
+
"required": true,
|
|
9606
|
+
"arguments": [
|
|
9607
|
+
{
|
|
9608
|
+
"name": "PROJECT",
|
|
9609
|
+
"required": true
|
|
9610
|
+
}
|
|
9611
|
+
]
|
|
9612
|
+
}
|
|
9613
|
+
],
|
|
9614
|
+
"arguments": [
|
|
9615
|
+
{
|
|
9616
|
+
"name": "ID",
|
|
9617
|
+
"required": true,
|
|
9618
|
+
"description": "Ticket id or code (e.g. DRFL-3)"
|
|
9619
|
+
}
|
|
9620
|
+
],
|
|
9621
|
+
"examples": [
|
|
9622
|
+
"closeyourit tickets clarifications <ticket-id> --project acme-api",
|
|
9623
|
+
"closeyourit tickets clarifications DRFL-3 -p acme-api --json"
|
|
9624
|
+
]
|
|
9625
|
+
},
|
|
9555
9626
|
{
|
|
9556
9627
|
"name": "comment",
|
|
9557
9628
|
"description": "Add a comment to a ticket",
|
|
@@ -12120,6 +12191,100 @@
|
|
|
12120
12191
|
}
|
|
12121
12192
|
]
|
|
12122
12193
|
},
|
|
12194
|
+
{
|
|
12195
|
+
"name": "usage",
|
|
12196
|
+
"commands": [
|
|
12197
|
+
{
|
|
12198
|
+
"name": "list",
|
|
12199
|
+
"description": "List the usage symbols the product reported as actually executed (routes as Controller#action, jobs, custom keys)",
|
|
12200
|
+
"options": [
|
|
12201
|
+
{
|
|
12202
|
+
"name": "--project",
|
|
12203
|
+
"aliases": [
|
|
12204
|
+
"-p"
|
|
12205
|
+
],
|
|
12206
|
+
"description": "Project id (UUID) or key",
|
|
12207
|
+
"required": true,
|
|
12208
|
+
"arguments": [
|
|
12209
|
+
{
|
|
12210
|
+
"name": "PROJECT",
|
|
12211
|
+
"required": true
|
|
12212
|
+
}
|
|
12213
|
+
]
|
|
12214
|
+
},
|
|
12215
|
+
{
|
|
12216
|
+
"name": "--kind",
|
|
12217
|
+
"description": "Only this kind (route, job, custom)",
|
|
12218
|
+
"arguments": [
|
|
12219
|
+
{
|
|
12220
|
+
"name": "KIND",
|
|
12221
|
+
"required": true
|
|
12222
|
+
}
|
|
12223
|
+
]
|
|
12224
|
+
},
|
|
12225
|
+
{
|
|
12226
|
+
"name": "--environment",
|
|
12227
|
+
"description": "Only this environment",
|
|
12228
|
+
"arguments": [
|
|
12229
|
+
{
|
|
12230
|
+
"name": "ENVIRONMENT",
|
|
12231
|
+
"required": true
|
|
12232
|
+
}
|
|
12233
|
+
]
|
|
12234
|
+
},
|
|
12235
|
+
{
|
|
12236
|
+
"name": "--page",
|
|
12237
|
+
"description": "Page number",
|
|
12238
|
+
"arguments": [
|
|
12239
|
+
{
|
|
12240
|
+
"name": "PAGE",
|
|
12241
|
+
"required": true
|
|
12242
|
+
}
|
|
12243
|
+
]
|
|
12244
|
+
}
|
|
12245
|
+
],
|
|
12246
|
+
"examples": [
|
|
12247
|
+
"closeyourit usage list --project CYRA",
|
|
12248
|
+
"closeyourit usage list -p CYRA --kind route --environment production",
|
|
12249
|
+
"closeyourit usage list -p CYRA --json"
|
|
12250
|
+
]
|
|
12251
|
+
},
|
|
12252
|
+
{
|
|
12253
|
+
"name": "reporters",
|
|
12254
|
+
"description": "List the usage reporters: which SDK is sending usage of each kind, and since when",
|
|
12255
|
+
"options": [
|
|
12256
|
+
{
|
|
12257
|
+
"name": "--project",
|
|
12258
|
+
"aliases": [
|
|
12259
|
+
"-p"
|
|
12260
|
+
],
|
|
12261
|
+
"description": "Project id (UUID) or key",
|
|
12262
|
+
"required": true,
|
|
12263
|
+
"arguments": [
|
|
12264
|
+
{
|
|
12265
|
+
"name": "PROJECT",
|
|
12266
|
+
"required": true
|
|
12267
|
+
}
|
|
12268
|
+
]
|
|
12269
|
+
},
|
|
12270
|
+
{
|
|
12271
|
+
"name": "--kind",
|
|
12272
|
+
"description": "Only this kind (route, job, custom)",
|
|
12273
|
+
"arguments": [
|
|
12274
|
+
{
|
|
12275
|
+
"name": "KIND",
|
|
12276
|
+
"required": true
|
|
12277
|
+
}
|
|
12278
|
+
]
|
|
12279
|
+
}
|
|
12280
|
+
],
|
|
12281
|
+
"examples": [
|
|
12282
|
+
"closeyourit usage reporters --project CYRA",
|
|
12283
|
+
"closeyourit usage reporters -p CYRA --kind route"
|
|
12284
|
+
]
|
|
12285
|
+
}
|
|
12286
|
+
]
|
|
12287
|
+
},
|
|
12123
12288
|
{
|
|
12124
12289
|
"name": "vault",
|
|
12125
12290
|
"description": "Vault review: the secret changes waiting for a second approval",
|