centy 0.2.1 → 0.2.2
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/install/all.d.ts +1 -0
- package/dist/commands/install/all.d.ts.map +1 -1
- package/dist/commands/install/all.js +6 -0
- package/dist/commands/install/all.js.map +1 -1
- package/dist/commands/install/daemon.d.ts +1 -0
- package/dist/commands/install/daemon.d.ts.map +1 -1
- package/dist/commands/install/daemon.js +6 -0
- package/dist/commands/install/daemon.js.map +1 -1
- package/dist/commands/install/tui.d.ts +1 -0
- package/dist/commands/install/tui.d.ts.map +1 -1
- package/dist/commands/install/tui.js +6 -0
- package/dist/commands/install/tui.js.map +1 -1
- package/dist/commands/start.d.ts.map +1 -1
- package/dist/commands/start.js +1 -1
- package/dist/commands/start.js.map +1 -1
- package/dist/commands/workspace/open.d.ts.map +1 -1
- package/dist/commands/workspace/open.js +9 -1
- package/dist/commands/workspace/open.js.map +1 -1
- package/dist/daemon/types.d.ts +2 -0
- package/dist/daemon/types.d.ts.map +1 -1
- package/dist/lib/install-binary/github-release.d.ts +3 -3
- package/dist/lib/install-binary/github-release.d.ts.map +1 -1
- package/dist/lib/install-binary/github-release.js +14 -5
- package/dist/lib/install-binary/github-release.js.map +1 -1
- package/dist/lib/install-binary/install-daemon.d.ts.map +1 -1
- package/dist/lib/install-binary/install-daemon.js +2 -1
- package/dist/lib/install-binary/install-daemon.js.map +1 -1
- package/dist/lib/install-binary/install-tui.d.ts.map +1 -1
- package/dist/lib/install-binary/install-tui.js +2 -1
- package/dist/lib/install-binary/install-tui.js.map +1 -1
- package/dist/lib/install-binary/types.d.ts +1 -0
- package/dist/lib/install-binary/types.d.ts.map +1 -1
- package/dist/lib/launch-tui/launch-tui.d.ts +1 -1
- package/dist/lib/launch-tui/launch-tui.d.ts.map +1 -1
- package/dist/lib/launch-tui/launch-tui.js +23 -36
- package/dist/lib/launch-tui/launch-tui.js.map +1 -1
- package/dist/lib/launch-tui-manager/launch-tui-manager.d.ts +1 -1
- package/dist/lib/launch-tui-manager/launch-tui-manager.d.ts.map +1 -1
- package/dist/lib/launch-tui-manager/launch-tui-manager.js +27 -36
- package/dist/lib/launch-tui-manager/launch-tui-manager.js.map +1 -1
- package/dist/utils/get-missing-binary-msg.d.ts +2 -0
- package/dist/utils/get-missing-binary-msg.d.ts.map +1 -0
- package/dist/utils/get-missing-binary-msg.js +7 -0
- package/dist/utils/get-missing-binary-msg.js.map +1 -0
- package/dist/utils/get-permission-denied-msg.d.ts +2 -0
- package/dist/utils/get-permission-denied-msg.d.ts.map +1 -0
- package/dist/utils/get-permission-denied-msg.js +12 -0
- package/dist/utils/get-permission-denied-msg.js.map +1 -0
- package/oclif.manifest.json +323 -302
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -1320,126 +1320,6 @@
|
|
|
1320
1320
|
"autostart.js"
|
|
1321
1321
|
]
|
|
1322
1322
|
},
|
|
1323
|
-
"duplicate:doc": {
|
|
1324
|
-
"aliases": [],
|
|
1325
|
-
"args": {
|
|
1326
|
-
"slug": {
|
|
1327
|
-
"description": "Doc slug",
|
|
1328
|
-
"name": "slug",
|
|
1329
|
-
"required": true
|
|
1330
|
-
}
|
|
1331
|
-
},
|
|
1332
|
-
"description": "Duplicate a doc (same project or different project)",
|
|
1333
|
-
"examples": [
|
|
1334
|
-
"<%= config.bin %> duplicate doc my-doc",
|
|
1335
|
-
"<%= config.bin %> duplicate doc readme --new-slug readme-v2",
|
|
1336
|
-
"<%= config.bin %> duplicate doc api-guide --to /path/to/other/project",
|
|
1337
|
-
"<%= config.bin %> duplicate doc spec --to ../other --new-slug spec-copy --title \"Spec Copy\""
|
|
1338
|
-
],
|
|
1339
|
-
"flags": {
|
|
1340
|
-
"to": {
|
|
1341
|
-
"char": "t",
|
|
1342
|
-
"description": "Target project path (defaults to same project if not specified)",
|
|
1343
|
-
"name": "to",
|
|
1344
|
-
"hasDynamicHelp": false,
|
|
1345
|
-
"multiple": false,
|
|
1346
|
-
"type": "option"
|
|
1347
|
-
},
|
|
1348
|
-
"new-slug": {
|
|
1349
|
-
"char": "s",
|
|
1350
|
-
"description": "Slug for the duplicate (defaults to \"{slug}-copy\")",
|
|
1351
|
-
"name": "new-slug",
|
|
1352
|
-
"hasDynamicHelp": false,
|
|
1353
|
-
"multiple": false,
|
|
1354
|
-
"type": "option"
|
|
1355
|
-
},
|
|
1356
|
-
"title": {
|
|
1357
|
-
"description": "Title for the duplicate (defaults to \"Copy of {original}\")",
|
|
1358
|
-
"name": "title",
|
|
1359
|
-
"hasDynamicHelp": false,
|
|
1360
|
-
"multiple": false,
|
|
1361
|
-
"type": "option"
|
|
1362
|
-
},
|
|
1363
|
-
"project": {
|
|
1364
|
-
"description": "Project name or path (defaults to current directory)",
|
|
1365
|
-
"name": "project",
|
|
1366
|
-
"hasDynamicHelp": false,
|
|
1367
|
-
"multiple": false,
|
|
1368
|
-
"type": "option"
|
|
1369
|
-
}
|
|
1370
|
-
},
|
|
1371
|
-
"hasDynamicHelp": false,
|
|
1372
|
-
"hiddenAliases": [],
|
|
1373
|
-
"id": "duplicate:doc",
|
|
1374
|
-
"pluginAlias": "centy",
|
|
1375
|
-
"pluginName": "centy",
|
|
1376
|
-
"pluginType": "core",
|
|
1377
|
-
"strict": true,
|
|
1378
|
-
"enableJsonFlag": false,
|
|
1379
|
-
"isESM": true,
|
|
1380
|
-
"relativePath": [
|
|
1381
|
-
"dist",
|
|
1382
|
-
"commands",
|
|
1383
|
-
"duplicate",
|
|
1384
|
-
"doc.js"
|
|
1385
|
-
]
|
|
1386
|
-
},
|
|
1387
|
-
"duplicate:issue": {
|
|
1388
|
-
"aliases": [],
|
|
1389
|
-
"args": {
|
|
1390
|
-
"id": {
|
|
1391
|
-
"description": "Issue ID (UUID) or display number",
|
|
1392
|
-
"name": "id",
|
|
1393
|
-
"required": true
|
|
1394
|
-
}
|
|
1395
|
-
},
|
|
1396
|
-
"description": "Duplicate an issue (same project or different project)",
|
|
1397
|
-
"examples": [
|
|
1398
|
-
"<%= config.bin %> duplicate issue 1",
|
|
1399
|
-
"<%= config.bin %> duplicate issue 1 --title \"New feature branch\"",
|
|
1400
|
-
"<%= config.bin %> duplicate issue abc123-uuid --to /path/to/other/project",
|
|
1401
|
-
"<%= config.bin %> duplicate issue 5 --to ../other --title \"Copy for testing\""
|
|
1402
|
-
],
|
|
1403
|
-
"flags": {
|
|
1404
|
-
"to": {
|
|
1405
|
-
"char": "t",
|
|
1406
|
-
"description": "Target project path (defaults to same project if not specified)",
|
|
1407
|
-
"name": "to",
|
|
1408
|
-
"hasDynamicHelp": false,
|
|
1409
|
-
"multiple": false,
|
|
1410
|
-
"type": "option"
|
|
1411
|
-
},
|
|
1412
|
-
"title": {
|
|
1413
|
-
"description": "Title for the duplicate (defaults to \"Copy of {original}\")",
|
|
1414
|
-
"name": "title",
|
|
1415
|
-
"hasDynamicHelp": false,
|
|
1416
|
-
"multiple": false,
|
|
1417
|
-
"type": "option"
|
|
1418
|
-
},
|
|
1419
|
-
"project": {
|
|
1420
|
-
"description": "Project name or path (defaults to current directory)",
|
|
1421
|
-
"name": "project",
|
|
1422
|
-
"hasDynamicHelp": false,
|
|
1423
|
-
"multiple": false,
|
|
1424
|
-
"type": "option"
|
|
1425
|
-
}
|
|
1426
|
-
},
|
|
1427
|
-
"hasDynamicHelp": false,
|
|
1428
|
-
"hiddenAliases": [],
|
|
1429
|
-
"id": "duplicate:issue",
|
|
1430
|
-
"pluginAlias": "centy",
|
|
1431
|
-
"pluginName": "centy",
|
|
1432
|
-
"pluginType": "core",
|
|
1433
|
-
"strict": true,
|
|
1434
|
-
"enableJsonFlag": false,
|
|
1435
|
-
"isESM": true,
|
|
1436
|
-
"relativePath": [
|
|
1437
|
-
"dist",
|
|
1438
|
-
"commands",
|
|
1439
|
-
"duplicate",
|
|
1440
|
-
"issue.js"
|
|
1441
|
-
]
|
|
1442
|
-
},
|
|
1443
1323
|
"delete:asset": {
|
|
1444
1324
|
"aliases": [],
|
|
1445
1325
|
"args": {
|
|
@@ -1837,6 +1717,126 @@
|
|
|
1837
1717
|
"user.js"
|
|
1838
1718
|
]
|
|
1839
1719
|
},
|
|
1720
|
+
"duplicate:doc": {
|
|
1721
|
+
"aliases": [],
|
|
1722
|
+
"args": {
|
|
1723
|
+
"slug": {
|
|
1724
|
+
"description": "Doc slug",
|
|
1725
|
+
"name": "slug",
|
|
1726
|
+
"required": true
|
|
1727
|
+
}
|
|
1728
|
+
},
|
|
1729
|
+
"description": "Duplicate a doc (same project or different project)",
|
|
1730
|
+
"examples": [
|
|
1731
|
+
"<%= config.bin %> duplicate doc my-doc",
|
|
1732
|
+
"<%= config.bin %> duplicate doc readme --new-slug readme-v2",
|
|
1733
|
+
"<%= config.bin %> duplicate doc api-guide --to /path/to/other/project",
|
|
1734
|
+
"<%= config.bin %> duplicate doc spec --to ../other --new-slug spec-copy --title \"Spec Copy\""
|
|
1735
|
+
],
|
|
1736
|
+
"flags": {
|
|
1737
|
+
"to": {
|
|
1738
|
+
"char": "t",
|
|
1739
|
+
"description": "Target project path (defaults to same project if not specified)",
|
|
1740
|
+
"name": "to",
|
|
1741
|
+
"hasDynamicHelp": false,
|
|
1742
|
+
"multiple": false,
|
|
1743
|
+
"type": "option"
|
|
1744
|
+
},
|
|
1745
|
+
"new-slug": {
|
|
1746
|
+
"char": "s",
|
|
1747
|
+
"description": "Slug for the duplicate (defaults to \"{slug}-copy\")",
|
|
1748
|
+
"name": "new-slug",
|
|
1749
|
+
"hasDynamicHelp": false,
|
|
1750
|
+
"multiple": false,
|
|
1751
|
+
"type": "option"
|
|
1752
|
+
},
|
|
1753
|
+
"title": {
|
|
1754
|
+
"description": "Title for the duplicate (defaults to \"Copy of {original}\")",
|
|
1755
|
+
"name": "title",
|
|
1756
|
+
"hasDynamicHelp": false,
|
|
1757
|
+
"multiple": false,
|
|
1758
|
+
"type": "option"
|
|
1759
|
+
},
|
|
1760
|
+
"project": {
|
|
1761
|
+
"description": "Project name or path (defaults to current directory)",
|
|
1762
|
+
"name": "project",
|
|
1763
|
+
"hasDynamicHelp": false,
|
|
1764
|
+
"multiple": false,
|
|
1765
|
+
"type": "option"
|
|
1766
|
+
}
|
|
1767
|
+
},
|
|
1768
|
+
"hasDynamicHelp": false,
|
|
1769
|
+
"hiddenAliases": [],
|
|
1770
|
+
"id": "duplicate:doc",
|
|
1771
|
+
"pluginAlias": "centy",
|
|
1772
|
+
"pluginName": "centy",
|
|
1773
|
+
"pluginType": "core",
|
|
1774
|
+
"strict": true,
|
|
1775
|
+
"enableJsonFlag": false,
|
|
1776
|
+
"isESM": true,
|
|
1777
|
+
"relativePath": [
|
|
1778
|
+
"dist",
|
|
1779
|
+
"commands",
|
|
1780
|
+
"duplicate",
|
|
1781
|
+
"doc.js"
|
|
1782
|
+
]
|
|
1783
|
+
},
|
|
1784
|
+
"duplicate:issue": {
|
|
1785
|
+
"aliases": [],
|
|
1786
|
+
"args": {
|
|
1787
|
+
"id": {
|
|
1788
|
+
"description": "Issue ID (UUID) or display number",
|
|
1789
|
+
"name": "id",
|
|
1790
|
+
"required": true
|
|
1791
|
+
}
|
|
1792
|
+
},
|
|
1793
|
+
"description": "Duplicate an issue (same project or different project)",
|
|
1794
|
+
"examples": [
|
|
1795
|
+
"<%= config.bin %> duplicate issue 1",
|
|
1796
|
+
"<%= config.bin %> duplicate issue 1 --title \"New feature branch\"",
|
|
1797
|
+
"<%= config.bin %> duplicate issue abc123-uuid --to /path/to/other/project",
|
|
1798
|
+
"<%= config.bin %> duplicate issue 5 --to ../other --title \"Copy for testing\""
|
|
1799
|
+
],
|
|
1800
|
+
"flags": {
|
|
1801
|
+
"to": {
|
|
1802
|
+
"char": "t",
|
|
1803
|
+
"description": "Target project path (defaults to same project if not specified)",
|
|
1804
|
+
"name": "to",
|
|
1805
|
+
"hasDynamicHelp": false,
|
|
1806
|
+
"multiple": false,
|
|
1807
|
+
"type": "option"
|
|
1808
|
+
},
|
|
1809
|
+
"title": {
|
|
1810
|
+
"description": "Title for the duplicate (defaults to \"Copy of {original}\")",
|
|
1811
|
+
"name": "title",
|
|
1812
|
+
"hasDynamicHelp": false,
|
|
1813
|
+
"multiple": false,
|
|
1814
|
+
"type": "option"
|
|
1815
|
+
},
|
|
1816
|
+
"project": {
|
|
1817
|
+
"description": "Project name or path (defaults to current directory)",
|
|
1818
|
+
"name": "project",
|
|
1819
|
+
"hasDynamicHelp": false,
|
|
1820
|
+
"multiple": false,
|
|
1821
|
+
"type": "option"
|
|
1822
|
+
}
|
|
1823
|
+
},
|
|
1824
|
+
"hasDynamicHelp": false,
|
|
1825
|
+
"hiddenAliases": [],
|
|
1826
|
+
"id": "duplicate:issue",
|
|
1827
|
+
"pluginAlias": "centy",
|
|
1828
|
+
"pluginName": "centy",
|
|
1829
|
+
"pluginType": "core",
|
|
1830
|
+
"strict": true,
|
|
1831
|
+
"enableJsonFlag": false,
|
|
1832
|
+
"isESM": true,
|
|
1833
|
+
"relativePath": [
|
|
1834
|
+
"dist",
|
|
1835
|
+
"commands",
|
|
1836
|
+
"duplicate",
|
|
1837
|
+
"issue.js"
|
|
1838
|
+
]
|
|
1839
|
+
},
|
|
1840
1840
|
"get:asset": {
|
|
1841
1841
|
"aliases": [
|
|
1842
1842
|
"show:asset"
|
|
@@ -2237,141 +2237,28 @@
|
|
|
2237
2237
|
],
|
|
2238
2238
|
"args": {
|
|
2239
2239
|
"path": {
|
|
2240
|
-
"description": "Path to the project (defaults to current directory)",
|
|
2241
|
-
"name": "path",
|
|
2242
|
-
"required": false
|
|
2243
|
-
}
|
|
2244
|
-
},
|
|
2245
|
-
"description": "Get info about a specific project",
|
|
2246
|
-
"examples": [
|
|
2247
|
-
"<%= config.bin %> get project",
|
|
2248
|
-
"<%= config.bin %> get project /path/to/project",
|
|
2249
|
-
"<%= config.bin %> get project --json"
|
|
2250
|
-
],
|
|
2251
|
-
"flags": {
|
|
2252
|
-
"json": {
|
|
2253
|
-
"description": "Output as JSON",
|
|
2254
|
-
"name": "json",
|
|
2255
|
-
"allowNo": false,
|
|
2256
|
-
"type": "boolean"
|
|
2257
|
-
}
|
|
2258
|
-
},
|
|
2259
|
-
"hasDynamicHelp": false,
|
|
2260
|
-
"hiddenAliases": [],
|
|
2261
|
-
"id": "get:project",
|
|
2262
|
-
"pluginAlias": "centy",
|
|
2263
|
-
"pluginName": "centy",
|
|
2264
|
-
"pluginType": "core",
|
|
2265
|
-
"strict": true,
|
|
2266
|
-
"enableJsonFlag": false,
|
|
2267
|
-
"isESM": true,
|
|
2268
|
-
"relativePath": [
|
|
2269
|
-
"dist",
|
|
2270
|
-
"commands",
|
|
2271
|
-
"get",
|
|
2272
|
-
"project.js"
|
|
2273
|
-
]
|
|
2274
|
-
},
|
|
2275
|
-
"get:user": {
|
|
2276
|
-
"aliases": [],
|
|
2277
|
-
"args": {
|
|
2278
|
-
"id": {
|
|
2279
|
-
"description": "User ID",
|
|
2280
|
-
"name": "id",
|
|
2281
|
-
"required": true
|
|
2282
|
-
}
|
|
2283
|
-
},
|
|
2284
|
-
"description": "Get a user by ID",
|
|
2285
|
-
"examples": [
|
|
2286
|
-
"<%= config.bin %> get user john-doe",
|
|
2287
|
-
"<%= config.bin %> get user john-doe --json",
|
|
2288
|
-
"<%= config.bin %> get user john-doe --project centy-daemon"
|
|
2289
|
-
],
|
|
2290
|
-
"flags": {
|
|
2291
|
-
"json": {
|
|
2292
|
-
"description": "Output as JSON",
|
|
2293
|
-
"name": "json",
|
|
2294
|
-
"allowNo": false,
|
|
2295
|
-
"type": "boolean"
|
|
2296
|
-
},
|
|
2297
|
-
"project": {
|
|
2298
|
-
"description": "Project name or path (defaults to current directory)",
|
|
2299
|
-
"name": "project",
|
|
2300
|
-
"hasDynamicHelp": false,
|
|
2301
|
-
"multiple": false,
|
|
2302
|
-
"type": "option"
|
|
2303
|
-
}
|
|
2304
|
-
},
|
|
2305
|
-
"hasDynamicHelp": false,
|
|
2306
|
-
"hiddenAliases": [],
|
|
2307
|
-
"id": "get:user",
|
|
2308
|
-
"pluginAlias": "centy",
|
|
2309
|
-
"pluginName": "centy",
|
|
2310
|
-
"pluginType": "core",
|
|
2311
|
-
"strict": true,
|
|
2312
|
-
"enableJsonFlag": false,
|
|
2313
|
-
"isESM": true,
|
|
2314
|
-
"relativePath": [
|
|
2315
|
-
"dist",
|
|
2316
|
-
"commands",
|
|
2317
|
-
"get",
|
|
2318
|
-
"user.js"
|
|
2319
|
-
]
|
|
2320
|
-
},
|
|
2321
|
-
"install:all": {
|
|
2322
|
-
"aliases": [],
|
|
2323
|
-
"args": {},
|
|
2324
|
-
"description": "Download and install all centy binaries (daemon and tui)",
|
|
2325
|
-
"examples": [
|
|
2326
|
-
"<%= config.bin %> install all"
|
|
2327
|
-
],
|
|
2328
|
-
"flags": {
|
|
2329
|
-
"version": {
|
|
2330
|
-
"char": "v",
|
|
2331
|
-
"description": "Specific version to install (default: latest)",
|
|
2332
|
-
"name": "version",
|
|
2333
|
-
"hasDynamicHelp": false,
|
|
2334
|
-
"multiple": false,
|
|
2335
|
-
"type": "option"
|
|
2336
|
-
}
|
|
2337
|
-
},
|
|
2338
|
-
"hasDynamicHelp": false,
|
|
2339
|
-
"hiddenAliases": [],
|
|
2340
|
-
"id": "install:all",
|
|
2341
|
-
"pluginAlias": "centy",
|
|
2342
|
-
"pluginName": "centy",
|
|
2343
|
-
"pluginType": "core",
|
|
2344
|
-
"strict": true,
|
|
2345
|
-
"enableJsonFlag": false,
|
|
2346
|
-
"isESM": true,
|
|
2347
|
-
"relativePath": [
|
|
2348
|
-
"dist",
|
|
2349
|
-
"commands",
|
|
2350
|
-
"install",
|
|
2351
|
-
"all.js"
|
|
2352
|
-
]
|
|
2353
|
-
},
|
|
2354
|
-
"install:daemon": {
|
|
2355
|
-
"aliases": [],
|
|
2356
|
-
"args": {},
|
|
2357
|
-
"description": "Download and install the centy daemon binary",
|
|
2240
|
+
"description": "Path to the project (defaults to current directory)",
|
|
2241
|
+
"name": "path",
|
|
2242
|
+
"required": false
|
|
2243
|
+
}
|
|
2244
|
+
},
|
|
2245
|
+
"description": "Get info about a specific project",
|
|
2358
2246
|
"examples": [
|
|
2359
|
-
"<%= config.bin %>
|
|
2360
|
-
"<%= config.bin %>
|
|
2247
|
+
"<%= config.bin %> get project",
|
|
2248
|
+
"<%= config.bin %> get project /path/to/project",
|
|
2249
|
+
"<%= config.bin %> get project --json"
|
|
2361
2250
|
],
|
|
2362
2251
|
"flags": {
|
|
2363
|
-
"
|
|
2364
|
-
"
|
|
2365
|
-
"
|
|
2366
|
-
"
|
|
2367
|
-
"
|
|
2368
|
-
"multiple": false,
|
|
2369
|
-
"type": "option"
|
|
2252
|
+
"json": {
|
|
2253
|
+
"description": "Output as JSON",
|
|
2254
|
+
"name": "json",
|
|
2255
|
+
"allowNo": false,
|
|
2256
|
+
"type": "boolean"
|
|
2370
2257
|
}
|
|
2371
2258
|
},
|
|
2372
2259
|
"hasDynamicHelp": false,
|
|
2373
2260
|
"hiddenAliases": [],
|
|
2374
|
-
"id": "
|
|
2261
|
+
"id": "get:project",
|
|
2375
2262
|
"pluginAlias": "centy",
|
|
2376
2263
|
"pluginName": "centy",
|
|
2377
2264
|
"pluginType": "core",
|
|
@@ -2381,23 +2268,35 @@
|
|
|
2381
2268
|
"relativePath": [
|
|
2382
2269
|
"dist",
|
|
2383
2270
|
"commands",
|
|
2384
|
-
"
|
|
2385
|
-
"
|
|
2271
|
+
"get",
|
|
2272
|
+
"project.js"
|
|
2386
2273
|
]
|
|
2387
2274
|
},
|
|
2388
|
-
"
|
|
2275
|
+
"get:user": {
|
|
2389
2276
|
"aliases": [],
|
|
2390
|
-
"args": {
|
|
2391
|
-
|
|
2277
|
+
"args": {
|
|
2278
|
+
"id": {
|
|
2279
|
+
"description": "User ID",
|
|
2280
|
+
"name": "id",
|
|
2281
|
+
"required": true
|
|
2282
|
+
}
|
|
2283
|
+
},
|
|
2284
|
+
"description": "Get a user by ID",
|
|
2392
2285
|
"examples": [
|
|
2393
|
-
"<%= config.bin %>
|
|
2394
|
-
"<%= config.bin %>
|
|
2286
|
+
"<%= config.bin %> get user john-doe",
|
|
2287
|
+
"<%= config.bin %> get user john-doe --json",
|
|
2288
|
+
"<%= config.bin %> get user john-doe --project centy-daemon"
|
|
2395
2289
|
],
|
|
2396
2290
|
"flags": {
|
|
2397
|
-
"
|
|
2398
|
-
"
|
|
2399
|
-
"
|
|
2400
|
-
"
|
|
2291
|
+
"json": {
|
|
2292
|
+
"description": "Output as JSON",
|
|
2293
|
+
"name": "json",
|
|
2294
|
+
"allowNo": false,
|
|
2295
|
+
"type": "boolean"
|
|
2296
|
+
},
|
|
2297
|
+
"project": {
|
|
2298
|
+
"description": "Project name or path (defaults to current directory)",
|
|
2299
|
+
"name": "project",
|
|
2401
2300
|
"hasDynamicHelp": false,
|
|
2402
2301
|
"multiple": false,
|
|
2403
2302
|
"type": "option"
|
|
@@ -2405,7 +2304,7 @@
|
|
|
2405
2304
|
},
|
|
2406
2305
|
"hasDynamicHelp": false,
|
|
2407
2306
|
"hiddenAliases": [],
|
|
2408
|
-
"id": "
|
|
2307
|
+
"id": "get:user",
|
|
2409
2308
|
"pluginAlias": "centy",
|
|
2410
2309
|
"pluginName": "centy",
|
|
2411
2310
|
"pluginType": "core",
|
|
@@ -2415,8 +2314,8 @@
|
|
|
2415
2314
|
"relativePath": [
|
|
2416
2315
|
"dist",
|
|
2417
2316
|
"commands",
|
|
2418
|
-
"
|
|
2419
|
-
"
|
|
2317
|
+
"get",
|
|
2318
|
+
"user.js"
|
|
2420
2319
|
]
|
|
2421
2320
|
},
|
|
2422
2321
|
"list:assets": {
|
|
@@ -2889,6 +2788,128 @@
|
|
|
2889
2788
|
"users.js"
|
|
2890
2789
|
]
|
|
2891
2790
|
},
|
|
2791
|
+
"install:all": {
|
|
2792
|
+
"aliases": [],
|
|
2793
|
+
"args": {},
|
|
2794
|
+
"description": "Download and install all centy binaries (daemon and tui)",
|
|
2795
|
+
"examples": [
|
|
2796
|
+
"<%= config.bin %> install all"
|
|
2797
|
+
],
|
|
2798
|
+
"flags": {
|
|
2799
|
+
"version": {
|
|
2800
|
+
"char": "v",
|
|
2801
|
+
"description": "Specific version to install (default: latest)",
|
|
2802
|
+
"name": "version",
|
|
2803
|
+
"hasDynamicHelp": false,
|
|
2804
|
+
"multiple": false,
|
|
2805
|
+
"type": "option"
|
|
2806
|
+
},
|
|
2807
|
+
"prerelease": {
|
|
2808
|
+
"char": "p",
|
|
2809
|
+
"description": "Include prerelease versions when fetching latest",
|
|
2810
|
+
"name": "prerelease",
|
|
2811
|
+
"allowNo": false,
|
|
2812
|
+
"type": "boolean"
|
|
2813
|
+
}
|
|
2814
|
+
},
|
|
2815
|
+
"hasDynamicHelp": false,
|
|
2816
|
+
"hiddenAliases": [],
|
|
2817
|
+
"id": "install:all",
|
|
2818
|
+
"pluginAlias": "centy",
|
|
2819
|
+
"pluginName": "centy",
|
|
2820
|
+
"pluginType": "core",
|
|
2821
|
+
"strict": true,
|
|
2822
|
+
"enableJsonFlag": false,
|
|
2823
|
+
"isESM": true,
|
|
2824
|
+
"relativePath": [
|
|
2825
|
+
"dist",
|
|
2826
|
+
"commands",
|
|
2827
|
+
"install",
|
|
2828
|
+
"all.js"
|
|
2829
|
+
]
|
|
2830
|
+
},
|
|
2831
|
+
"install:daemon": {
|
|
2832
|
+
"aliases": [],
|
|
2833
|
+
"args": {},
|
|
2834
|
+
"description": "Download and install the centy daemon binary",
|
|
2835
|
+
"examples": [
|
|
2836
|
+
"<%= config.bin %> install daemon",
|
|
2837
|
+
"<%= config.bin %> install daemon --version 0.1.0"
|
|
2838
|
+
],
|
|
2839
|
+
"flags": {
|
|
2840
|
+
"version": {
|
|
2841
|
+
"char": "v",
|
|
2842
|
+
"description": "Specific version to install (default: latest)",
|
|
2843
|
+
"name": "version",
|
|
2844
|
+
"hasDynamicHelp": false,
|
|
2845
|
+
"multiple": false,
|
|
2846
|
+
"type": "option"
|
|
2847
|
+
},
|
|
2848
|
+
"prerelease": {
|
|
2849
|
+
"char": "p",
|
|
2850
|
+
"description": "Include prerelease versions when fetching latest",
|
|
2851
|
+
"name": "prerelease",
|
|
2852
|
+
"allowNo": false,
|
|
2853
|
+
"type": "boolean"
|
|
2854
|
+
}
|
|
2855
|
+
},
|
|
2856
|
+
"hasDynamicHelp": false,
|
|
2857
|
+
"hiddenAliases": [],
|
|
2858
|
+
"id": "install:daemon",
|
|
2859
|
+
"pluginAlias": "centy",
|
|
2860
|
+
"pluginName": "centy",
|
|
2861
|
+
"pluginType": "core",
|
|
2862
|
+
"strict": true,
|
|
2863
|
+
"enableJsonFlag": false,
|
|
2864
|
+
"isESM": true,
|
|
2865
|
+
"relativePath": [
|
|
2866
|
+
"dist",
|
|
2867
|
+
"commands",
|
|
2868
|
+
"install",
|
|
2869
|
+
"daemon.js"
|
|
2870
|
+
]
|
|
2871
|
+
},
|
|
2872
|
+
"install:tui": {
|
|
2873
|
+
"aliases": [],
|
|
2874
|
+
"args": {},
|
|
2875
|
+
"description": "Download and install the centy TUI binary",
|
|
2876
|
+
"examples": [
|
|
2877
|
+
"<%= config.bin %> install tui",
|
|
2878
|
+
"<%= config.bin %> install tui --version 0.1.0"
|
|
2879
|
+
],
|
|
2880
|
+
"flags": {
|
|
2881
|
+
"version": {
|
|
2882
|
+
"char": "v",
|
|
2883
|
+
"description": "Specific version to install (default: latest)",
|
|
2884
|
+
"name": "version",
|
|
2885
|
+
"hasDynamicHelp": false,
|
|
2886
|
+
"multiple": false,
|
|
2887
|
+
"type": "option"
|
|
2888
|
+
},
|
|
2889
|
+
"prerelease": {
|
|
2890
|
+
"char": "p",
|
|
2891
|
+
"description": "Include prerelease versions when fetching latest",
|
|
2892
|
+
"name": "prerelease",
|
|
2893
|
+
"allowNo": false,
|
|
2894
|
+
"type": "boolean"
|
|
2895
|
+
}
|
|
2896
|
+
},
|
|
2897
|
+
"hasDynamicHelp": false,
|
|
2898
|
+
"hiddenAliases": [],
|
|
2899
|
+
"id": "install:tui",
|
|
2900
|
+
"pluginAlias": "centy",
|
|
2901
|
+
"pluginName": "centy",
|
|
2902
|
+
"pluginType": "core",
|
|
2903
|
+
"strict": true,
|
|
2904
|
+
"enableJsonFlag": false,
|
|
2905
|
+
"isESM": true,
|
|
2906
|
+
"relativePath": [
|
|
2907
|
+
"dist",
|
|
2908
|
+
"commands",
|
|
2909
|
+
"install",
|
|
2910
|
+
"tui.js"
|
|
2911
|
+
]
|
|
2912
|
+
},
|
|
2892
2913
|
"move:doc": {
|
|
2893
2914
|
"aliases": [],
|
|
2894
2915
|
"args": {
|
|
@@ -3233,27 +3254,24 @@
|
|
|
3233
3254
|
"project.js"
|
|
3234
3255
|
]
|
|
3235
3256
|
},
|
|
3236
|
-
"
|
|
3257
|
+
"sync:users": {
|
|
3237
3258
|
"aliases": [],
|
|
3238
|
-
"args": {
|
|
3239
|
-
|
|
3240
|
-
"description": "Issue ID (UUID) or display number",
|
|
3241
|
-
"name": "issueId",
|
|
3242
|
-
"required": true
|
|
3243
|
-
},
|
|
3244
|
-
"userIds": {
|
|
3245
|
-
"description": "User IDs to unassign (space-separated)",
|
|
3246
|
-
"name": "userIds",
|
|
3247
|
-
"required": true
|
|
3248
|
-
}
|
|
3249
|
-
},
|
|
3250
|
-
"description": "Unassign users from an issue",
|
|
3259
|
+
"args": {},
|
|
3260
|
+
"description": "Sync users from git history",
|
|
3251
3261
|
"examples": [
|
|
3252
|
-
"<%= config.bin %>
|
|
3253
|
-
"<%= config.bin %>
|
|
3254
|
-
"<%= config.bin %>
|
|
3262
|
+
"<%= config.bin %> sync users",
|
|
3263
|
+
"<%= config.bin %> sync users --dry-run",
|
|
3264
|
+
"<%= config.bin %> sync users --json",
|
|
3265
|
+
"<%= config.bin %> sync users --project centy-daemon"
|
|
3255
3266
|
],
|
|
3256
3267
|
"flags": {
|
|
3268
|
+
"dry-run": {
|
|
3269
|
+
"char": "d",
|
|
3270
|
+
"description": "Show what would be done without making changes",
|
|
3271
|
+
"name": "dry-run",
|
|
3272
|
+
"allowNo": false,
|
|
3273
|
+
"type": "boolean"
|
|
3274
|
+
},
|
|
3257
3275
|
"json": {
|
|
3258
3276
|
"description": "Output as JSON",
|
|
3259
3277
|
"name": "json",
|
|
@@ -3270,38 +3288,41 @@
|
|
|
3270
3288
|
},
|
|
3271
3289
|
"hasDynamicHelp": false,
|
|
3272
3290
|
"hiddenAliases": [],
|
|
3273
|
-
"id": "
|
|
3291
|
+
"id": "sync:users",
|
|
3274
3292
|
"pluginAlias": "centy",
|
|
3275
3293
|
"pluginName": "centy",
|
|
3276
3294
|
"pluginType": "core",
|
|
3277
|
-
"strict":
|
|
3295
|
+
"strict": true,
|
|
3278
3296
|
"enableJsonFlag": false,
|
|
3279
3297
|
"isESM": true,
|
|
3280
3298
|
"relativePath": [
|
|
3281
3299
|
"dist",
|
|
3282
3300
|
"commands",
|
|
3283
|
-
"
|
|
3284
|
-
"
|
|
3301
|
+
"sync",
|
|
3302
|
+
"users.js"
|
|
3285
3303
|
]
|
|
3286
3304
|
},
|
|
3287
|
-
"
|
|
3305
|
+
"unassign:issue": {
|
|
3288
3306
|
"aliases": [],
|
|
3289
|
-
"args": {
|
|
3290
|
-
|
|
3307
|
+
"args": {
|
|
3308
|
+
"issueId": {
|
|
3309
|
+
"description": "Issue ID (UUID) or display number",
|
|
3310
|
+
"name": "issueId",
|
|
3311
|
+
"required": true
|
|
3312
|
+
},
|
|
3313
|
+
"userIds": {
|
|
3314
|
+
"description": "User IDs to unassign (space-separated)",
|
|
3315
|
+
"name": "userIds",
|
|
3316
|
+
"required": true
|
|
3317
|
+
}
|
|
3318
|
+
},
|
|
3319
|
+
"description": "Unassign users from an issue",
|
|
3291
3320
|
"examples": [
|
|
3292
|
-
"<%= config.bin %>
|
|
3293
|
-
"<%= config.bin %>
|
|
3294
|
-
"<%= config.bin %>
|
|
3295
|
-
"<%= config.bin %> sync users --project centy-daemon"
|
|
3321
|
+
"<%= config.bin %> unassign issue 1 john-doe",
|
|
3322
|
+
"<%= config.bin %> unassign issue abc123-uuid alice bob",
|
|
3323
|
+
"<%= config.bin %> unassign issue 1 john-doe --project centy-daemon"
|
|
3296
3324
|
],
|
|
3297
3325
|
"flags": {
|
|
3298
|
-
"dry-run": {
|
|
3299
|
-
"char": "d",
|
|
3300
|
-
"description": "Show what would be done without making changes",
|
|
3301
|
-
"name": "dry-run",
|
|
3302
|
-
"allowNo": false,
|
|
3303
|
-
"type": "boolean"
|
|
3304
|
-
},
|
|
3305
3326
|
"json": {
|
|
3306
3327
|
"description": "Output as JSON",
|
|
3307
3328
|
"name": "json",
|
|
@@ -3318,18 +3339,18 @@
|
|
|
3318
3339
|
},
|
|
3319
3340
|
"hasDynamicHelp": false,
|
|
3320
3341
|
"hiddenAliases": [],
|
|
3321
|
-
"id": "
|
|
3342
|
+
"id": "unassign:issue",
|
|
3322
3343
|
"pluginAlias": "centy",
|
|
3323
3344
|
"pluginName": "centy",
|
|
3324
3345
|
"pluginType": "core",
|
|
3325
|
-
"strict":
|
|
3346
|
+
"strict": false,
|
|
3326
3347
|
"enableJsonFlag": false,
|
|
3327
3348
|
"isESM": true,
|
|
3328
3349
|
"relativePath": [
|
|
3329
3350
|
"dist",
|
|
3330
3351
|
"commands",
|
|
3331
|
-
"
|
|
3332
|
-
"
|
|
3352
|
+
"unassign",
|
|
3353
|
+
"issue.js"
|
|
3333
3354
|
]
|
|
3334
3355
|
},
|
|
3335
3356
|
"untrack:project": {
|
|
@@ -4041,5 +4062,5 @@
|
|
|
4041
4062
|
]
|
|
4042
4063
|
}
|
|
4043
4064
|
},
|
|
4044
|
-
"version": "0.2.
|
|
4065
|
+
"version": "0.2.2"
|
|
4045
4066
|
}
|