@unbrained/pm-cli 2026.6.12 → 2026.6.16
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/CHANGELOG.md +103 -0
- package/README.md +2 -2
- package/dist/cli/bootstrap-args.d.ts +29 -0
- package/dist/cli/bootstrap-args.js +11 -4
- package/dist/cli/bootstrap-args.js.map +1 -1
- package/dist/cli/commander-usage.d.ts +12 -0
- package/dist/cli/commander-usage.js +18 -7
- package/dist/cli/commander-usage.js.map +1 -1
- package/dist/cli/commands/activity.d.ts +19 -0
- package/dist/cli/commands/activity.js +12 -2
- package/dist/cli/commands/activity.js.map +1 -1
- package/dist/cli/commands/aggregate.d.ts +58 -0
- package/dist/cli/commands/aggregate.js +48 -15
- package/dist/cli/commands/aggregate.js.map +1 -1
- package/dist/cli/commands/annotation-command.d.ts +6 -1
- package/dist/cli/commands/annotation-command.js +72 -2
- package/dist/cli/commands/annotation-command.js.map +1 -1
- package/dist/cli/commands/append.js +4 -3
- package/dist/cli/commands/append.js.map +1 -1
- package/dist/cli/commands/close-many.d.ts +20 -0
- package/dist/cli/commands/close-many.js +14 -23
- package/dist/cli/commands/close-many.js.map +1 -1
- package/dist/cli/commands/close.js +37 -4
- package/dist/cli/commands/close.js.map +1 -1
- package/dist/cli/commands/comments-audit.js +3 -2
- package/dist/cli/commands/comments-audit.js.map +1 -1
- package/dist/cli/commands/comments.d.ts +2 -0
- package/dist/cli/commands/comments.js +49 -23
- package/dist/cli/commands/comments.js.map +1 -1
- package/dist/cli/commands/completion.js +269 -8
- package/dist/cli/commands/completion.js.map +1 -1
- package/dist/cli/commands/config.d.ts +51 -1
- package/dist/cli/commands/config.js +50 -12
- package/dist/cli/commands/config.js.map +1 -1
- package/dist/cli/commands/context.d.ts +79 -1
- package/dist/cli/commands/context.js +151 -25
- package/dist/cli/commands/context.js.map +1 -1
- package/dist/cli/commands/contracts.d.ts +80 -1
- package/dist/cli/commands/contracts.js +54 -4
- package/dist/cli/commands/contracts.js.map +1 -1
- package/dist/cli/commands/create.d.ts +49 -0
- package/dist/cli/commands/create.js +112 -7
- package/dist/cli/commands/create.js.map +1 -1
- package/dist/cli/commands/dedupe-audit.d.ts +33 -0
- package/dist/cli/commands/dedupe-audit.js +18 -14
- package/dist/cli/commands/dedupe-audit.js.map +1 -1
- package/dist/cli/commands/deps.js +7 -4
- package/dist/cli/commands/deps.js.map +1 -1
- package/dist/cli/commands/event-validation-messages.js +3 -3
- package/dist/cli/commands/event-validation-messages.js.map +1 -1
- package/dist/cli/commands/extension/bundled-catalog.d.ts +7 -0
- package/dist/cli/commands/extension/bundled-catalog.js +19 -15
- package/dist/cli/commands/extension/bundled-catalog.js.map +1 -1
- package/dist/cli/commands/extension/install-sources.d.ts +41 -1
- package/dist/cli/commands/extension/install-sources.js +26 -8
- package/dist/cli/commands/extension/install-sources.js.map +1 -1
- package/dist/cli/commands/extension/shared.d.ts +5 -0
- package/dist/cli/commands/extension/shared.js +9 -3
- package/dist/cli/commands/extension/shared.js.map +1 -1
- package/dist/cli/commands/extension.d.ts +133 -1
- package/dist/cli/commands/extension.js +127 -9
- package/dist/cli/commands/extension.js.map +1 -1
- package/dist/cli/commands/files.d.ts +30 -1
- package/dist/cli/commands/files.js +21 -2
- package/dist/cli/commands/files.js.map +1 -1
- package/dist/cli/commands/focus.d.ts +11 -0
- package/dist/cli/commands/focus.js +86 -0
- package/dist/cli/commands/focus.js.map +1 -0
- package/dist/cli/commands/get.d.ts +9 -2
- package/dist/cli/commands/get.js +34 -6
- package/dist/cli/commands/get.js.map +1 -1
- package/dist/cli/commands/guide.d.ts +5 -0
- package/dist/cli/commands/guide.js +6 -3
- package/dist/cli/commands/guide.js.map +1 -1
- package/dist/cli/commands/health.d.ts +109 -0
- package/dist/cli/commands/health.js +87 -35
- package/dist/cli/commands/health.js.map +1 -1
- package/dist/cli/commands/history-compact.js +27 -36
- package/dist/cli/commands/history-compact.js.map +1 -1
- package/dist/cli/commands/history-redact.d.ts +46 -0
- package/dist/cli/commands/history-redact.js +99 -67
- package/dist/cli/commands/history-redact.js.map +1 -1
- package/dist/cli/commands/history-repair.js +34 -37
- package/dist/cli/commands/history-repair.js.map +1 -1
- package/dist/cli/commands/history.js +6 -2
- package/dist/cli/commands/history.js.map +1 -1
- package/dist/cli/commands/index.d.ts +1 -0
- package/dist/cli/commands/index.js +3 -2
- package/dist/cli/commands/index.js.map +1 -1
- package/dist/cli/commands/init-agent-guidance.d.ts +54 -0
- package/dist/cli/commands/init-agent-guidance.js +31 -4
- package/dist/cli/commands/init-agent-guidance.js.map +1 -1
- package/dist/cli/commands/init.d.ts +36 -1
- package/dist/cli/commands/init.js +38 -5
- package/dist/cli/commands/init.js.map +1 -1
- package/dist/cli/commands/learnings.js +4 -3
- package/dist/cli/commands/learnings.js.map +1 -1
- package/dist/cli/commands/linked-test-parsers.d.ts +5 -0
- package/dist/cli/commands/linked-test-parsers.js +5 -2
- package/dist/cli/commands/linked-test-parsers.js.map +1 -1
- package/dist/cli/commands/list-filter-shared.d.ts +8 -0
- package/dist/cli/commands/list-filter-shared.js +70 -0
- package/dist/cli/commands/list-filter-shared.js.map +1 -0
- package/dist/cli/commands/list.d.ts +116 -0
- package/dist/cli/commands/list.js +194 -6
- package/dist/cli/commands/list.js.map +1 -1
- package/dist/cli/commands/normalize.js +16 -2
- package/dist/cli/commands/normalize.js.map +1 -1
- package/dist/cli/commands/notes.js +4 -3
- package/dist/cli/commands/notes.js.map +1 -1
- package/dist/cli/commands/plan.js +3 -2
- package/dist/cli/commands/plan.js.map +1 -1
- package/dist/cli/commands/reindex.d.ts +83 -0
- package/dist/cli/commands/reindex.js +45 -10
- package/dist/cli/commands/reindex.js.map +1 -1
- package/dist/cli/commands/restore.d.ts +40 -1
- package/dist/cli/commands/restore.js +27 -2
- package/dist/cli/commands/restore.js.map +1 -1
- package/dist/cli/commands/schema.d.ts +18 -0
- package/dist/cli/commands/schema.js +30 -3
- package/dist/cli/commands/schema.js.map +1 -1
- package/dist/cli/commands/search.d.ts +289 -1
- package/dist/cli/commands/search.js +367 -60
- package/dist/cli/commands/search.js.map +1 -1
- package/dist/cli/commands/stats.d.ts +38 -0
- package/dist/cli/commands/stats.js +38 -10
- package/dist/cli/commands/stats.js.map +1 -1
- package/dist/cli/commands/telemetry.js +5 -3
- package/dist/cli/commands/telemetry.js.map +1 -1
- package/dist/cli/commands/templates.d.ts +18 -0
- package/dist/cli/commands/templates.js +9 -2
- package/dist/cli/commands/templates.js.map +1 -1
- package/dist/cli/commands/test-all.d.ts +5 -0
- package/dist/cli/commands/test-all.js +9 -3
- package/dist/cli/commands/test-all.js.map +1 -1
- package/dist/cli/commands/test.d.ts +70 -1
- package/dist/cli/commands/test.js +84 -3
- package/dist/cli/commands/test.js.map +1 -1
- package/dist/cli/commands/update-many.d.ts +34 -1
- package/dist/cli/commands/update-many.js +60 -31
- package/dist/cli/commands/update-many.js.map +1 -1
- package/dist/cli/commands/update.d.ts +71 -0
- package/dist/cli/commands/update.js +74 -8
- package/dist/cli/commands/update.js.map +1 -1
- package/dist/cli/commands/upgrade.d.ts +28 -1
- package/dist/cli/commands/upgrade.js +17 -4
- package/dist/cli/commands/upgrade.js.map +1 -1
- package/dist/cli/commands/validate.d.ts +114 -0
- package/dist/cli/commands/validate.js +154 -9
- package/dist/cli/commands/validate.js.map +1 -1
- package/dist/cli/error-guidance.d.ts +30 -0
- package/dist/cli/error-guidance.js +68 -6
- package/dist/cli/error-guidance.js.map +1 -1
- package/dist/cli/extension-command-options.js +9 -7
- package/dist/cli/extension-command-options.js.map +1 -1
- package/dist/cli/help-content.d.ts +8 -0
- package/dist/cli/help-content.js +30 -6
- package/dist/cli/help-content.js.map +1 -1
- package/dist/cli/help-json-payload.d.ts +19 -1
- package/dist/cli/help-json-payload.js +16 -7
- package/dist/cli/help-json-payload.js.map +1 -1
- package/dist/cli/main.d.ts +223 -0
- package/dist/cli/main.js +214 -46
- package/dist/cli/main.js.map +1 -1
- package/dist/cli/register-list-query.js +62 -5
- package/dist/cli/register-list-query.js.map +1 -1
- package/dist/cli/register-mutation.d.ts +16 -0
- package/dist/cli/register-mutation.js +210 -40
- package/dist/cli/register-mutation.js.map +1 -1
- package/dist/cli/register-operations.d.ts +8 -0
- package/dist/cli/register-operations.js +33 -11
- package/dist/cli/register-operations.js.map +1 -1
- package/dist/cli/register-setup.js +9 -6
- package/dist/cli/register-setup.js.map +1 -1
- package/dist/cli/registration-helpers.d.ts +4 -0
- package/dist/cli/registration-helpers.js +124 -38
- package/dist/cli/registration-helpers.js.map +1 -1
- package/dist/cli-bundle/chunks/activity-5P2KQCTH.js +18 -0
- package/dist/cli-bundle/chunks/{activity-XADJOG6G.js → activity-MJGTX4LO.js} +13 -11
- package/dist/cli-bundle/chunks/{aggregate-OD36DJU5.js → aggregate-MH3GROKB.js} +54 -25
- package/dist/cli-bundle/chunks/aggregate-MH3GROKB.js.map +7 -0
- package/dist/cli-bundle/chunks/{aggregate-6OTS3AOO.js → aggregate-OUGCDFNC.js} +55 -26
- package/dist/cli-bundle/chunks/aggregate-OUGCDFNC.js.map +1 -0
- package/dist/cli-bundle/chunks/{append-JYWO4P7W.js → append-2Q4BPUBW.js} +10 -10
- package/dist/cli-bundle/chunks/{append-JYWO4P7W.js.map → append-2Q4BPUBW.js.map} +2 -2
- package/dist/cli-bundle/chunks/{append-KG55G7S3.js → append-VCRUG2W6.js} +11 -11
- package/dist/cli-bundle/chunks/append-VCRUG2W6.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-IGVJRZ6H.js → chunk-2IUJBMKS.js} +10 -9
- package/dist/cli-bundle/chunks/{chunk-IGVJRZ6H.js.map → chunk-2IUJBMKS.js.map} +2 -2
- package/dist/cli-bundle/chunks/{chunk-ATEES5SX.js → chunk-2JEGCDYT.js} +2 -2
- package/dist/cli-bundle/chunks/{chunk-XUC4C4PT.js → chunk-3WAULYOY.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-UIG4TW2H.js → chunk-3XOXWOGA.js} +359 -19
- package/dist/cli-bundle/chunks/chunk-3XOXWOGA.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-3KLPFWZ4.js → chunk-4KBK4BA3.js} +16 -34
- package/dist/cli-bundle/chunks/chunk-4KBK4BA3.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-OLKBSY4N.js → chunk-4VLB4JH2.js} +51 -8
- package/dist/cli-bundle/chunks/chunk-4VLB4JH2.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-ZMW77VWV.js → chunk-656HPQPO.js} +27 -12
- package/dist/cli-bundle/chunks/chunk-656HPQPO.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-CW6E4NAT.js → chunk-667XI4UJ.js} +309 -20
- package/dist/cli-bundle/chunks/chunk-667XI4UJ.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-5SCT2JCT.js → chunk-6BV7ENQL.js} +9 -8
- package/dist/cli-bundle/chunks/chunk-6BV7ENQL.js.map +7 -0
- package/dist/cli-bundle/chunks/chunk-6EFCFPNE.js +35 -0
- package/dist/cli-bundle/chunks/chunk-6EFCFPNE.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-VFUZV5EB.js → chunk-6NQXMGYU.js} +19 -8
- package/dist/cli-bundle/chunks/chunk-6NQXMGYU.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-GKIZW7SM.js → chunk-764O7EUA.js} +223 -50
- package/dist/cli-bundle/chunks/chunk-764O7EUA.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-QJMGRZO2.js → chunk-7AGIXLNK.js} +3 -3
- package/dist/cli-bundle/chunks/chunk-7EILPFMA.js +404 -0
- package/dist/cli-bundle/chunks/chunk-7EILPFMA.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-HI7STVF2.js → chunk-7K2MXFMX.js} +14 -32
- package/dist/cli-bundle/chunks/chunk-7K2MXFMX.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-TNAP7EJX.js → chunk-7L5VOUYP.js} +6 -17
- package/dist/cli-bundle/chunks/chunk-7L5VOUYP.js.map +7 -0
- package/dist/cli-bundle/chunks/chunk-7ZGKNHUL.js +61 -0
- package/dist/cli-bundle/chunks/chunk-7ZGKNHUL.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-7IYFN5R7.js → chunk-A576QZDL.js} +223 -50
- package/dist/cli-bundle/chunks/chunk-A576QZDL.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-KBPQHXWG.js → chunk-AERT7KT3.js} +5 -5
- package/dist/cli-bundle/chunks/chunk-ASM4DVRW.js +58 -0
- package/dist/cli-bundle/chunks/chunk-ASM4DVRW.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-KWAXVAXX.js → chunk-B5Q7XC4K.js} +117 -37
- package/dist/cli-bundle/chunks/chunk-B5Q7XC4K.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-EWFY7SLA.js → chunk-BJWTFOZM.js} +74 -14
- package/dist/cli-bundle/chunks/chunk-BJWTFOZM.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-XJDGS74Y.js → chunk-CBMETQ2U.js} +105 -31
- package/dist/cli-bundle/chunks/chunk-CBMETQ2U.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-ESANVZF4.js → chunk-E6J2PEK6.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-VSRZRLG3.js → chunk-F2GC6L3N.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-I7NYDZDV.js → chunk-F7WSO5UX.js} +7 -18
- package/dist/cli-bundle/chunks/chunk-F7WSO5UX.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-VAOUX6TK.js → chunk-FTAZLAR7.js} +8 -5
- package/dist/cli-bundle/chunks/{chunk-VAOUX6TK.js.map → chunk-FTAZLAR7.js.map} +1 -1
- package/dist/cli-bundle/chunks/{chunk-OASDW5UI.js → chunk-FXNT5LPX.js} +77 -9
- package/dist/cli-bundle/chunks/chunk-FXNT5LPX.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-WUNFKP7M.js → chunk-G2YVUY7I.js} +14 -9
- package/dist/cli-bundle/chunks/chunk-G2YVUY7I.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-L5EPZQIC.js → chunk-G3CEIXTV.js} +68 -19
- package/dist/cli-bundle/chunks/chunk-G3CEIXTV.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-UUWGCWBU.js → chunk-GAVE4MYM.js} +37 -63
- package/dist/cli-bundle/chunks/chunk-GAVE4MYM.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-SXKNJPQ7.js → chunk-GQ4JKNMV.js} +4 -4
- package/dist/cli-bundle/chunks/{chunk-SXKNJPQ7.js.map → chunk-GQ4JKNMV.js.map} +1 -1
- package/dist/cli-bundle/chunks/{chunk-73ZPG2I3.js → chunk-GYMG7AG6.js} +36 -62
- package/dist/cli-bundle/chunks/chunk-GYMG7AG6.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-35P4GT6E.js → chunk-H6EH6ENJ.js} +362 -22
- package/dist/cli-bundle/chunks/chunk-H6EH6ENJ.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-F75JSIOZ.js → chunk-HDIDUME4.js} +45 -13
- package/dist/cli-bundle/chunks/chunk-HDIDUME4.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-XWMF3POR.js → chunk-HPELHUTG.js} +122 -45
- package/dist/cli-bundle/chunks/chunk-HPELHUTG.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-QKW5D45B.js → chunk-II7OGE3V.js} +20 -9
- package/dist/cli-bundle/chunks/chunk-II7OGE3V.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-4HFU4UO2.js → chunk-ILHLIA47.js} +5 -5
- package/dist/cli-bundle/chunks/{chunk-4HFU4UO2.js.map → chunk-ILHLIA47.js.map} +1 -1
- package/dist/cli-bundle/chunks/{chunk-P5BJOMBB.js → chunk-IMQG4VR3.js} +118 -74
- package/dist/cli-bundle/chunks/chunk-IMQG4VR3.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-AX4GEVQC.js → chunk-IQVB3YDD.js} +88 -22
- package/dist/cli-bundle/chunks/chunk-IQVB3YDD.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-I53JBTJW.js → chunk-KQ3LAMDO.js} +45 -13
- package/dist/cli-bundle/chunks/chunk-KQ3LAMDO.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-A6LXQFO7.js → chunk-KTVETP66.js} +334 -253
- package/dist/cli-bundle/chunks/chunk-KTVETP66.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-DY6C42S6.js → chunk-KZYVTOG5.js} +26 -11
- package/dist/cli-bundle/chunks/chunk-KZYVTOG5.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-HGLC63AU.js → chunk-L6FJPOT4.js} +11 -10
- package/dist/cli-bundle/chunks/{chunk-HGLC63AU.js.map → chunk-L6FJPOT4.js.map} +1 -1
- package/dist/cli-bundle/chunks/{chunk-FY4SPXSC.js → chunk-LV5FFQ7M.js} +354 -266
- package/dist/cli-bundle/chunks/chunk-LV5FFQ7M.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-PNYAAB4S.js → chunk-LWGMDLQ6.js} +8 -3
- package/dist/cli-bundle/chunks/chunk-LWGMDLQ6.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-XTKJSVWH.js → chunk-M23HXJL3.js} +2 -2
- package/dist/cli-bundle/chunks/{chunk-S26FESD4.js → chunk-MJZUZ2QE.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-I2IJY2NL.js → chunk-NCIBNERT.js} +4 -4
- package/dist/cli-bundle/chunks/{chunk-I2IJY2NL.js.map → chunk-NCIBNERT.js.map} +1 -1
- package/dist/cli-bundle/chunks/{chunk-TK5VZFHY.js → chunk-NIQHNDBZ.js} +76 -8
- package/dist/cli-bundle/chunks/chunk-NIQHNDBZ.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-C6SAP27O.js → chunk-O46LTCXQ.js} +4 -4
- package/dist/cli-bundle/chunks/{chunk-YW6Q3RYZ.js → chunk-OCTQJP42.js} +19 -8
- package/dist/cli-bundle/chunks/{chunk-YW6Q3RYZ.js.map → chunk-OCTQJP42.js.map} +2 -2
- package/dist/cli-bundle/chunks/{chunk-WPDMBIX6.js → chunk-OLTYNVJR.js} +5 -5
- package/dist/cli-bundle/chunks/{chunk-IUKD4W6Z.js → chunk-OY3P2I6B.js} +13 -8
- package/dist/cli-bundle/chunks/chunk-OY3P2I6B.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-SO55HRA5.js → chunk-PZD7WPUC.js} +69 -20
- package/dist/cli-bundle/chunks/chunk-PZD7WPUC.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-HHHJ2GI3.js → chunk-Q5RLUCP3.js} +74 -14
- package/dist/cli-bundle/chunks/chunk-Q5RLUCP3.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-S2ZLDYGS.js → chunk-RKKIH2ZQ.js} +116 -36
- package/dist/cli-bundle/chunks/chunk-RKKIH2ZQ.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-GWZSYR6X.js → chunk-SPYPC5CB.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-GWZSYR6X.js.map → chunk-SPYPC5CB.js.map} +1 -1
- package/dist/cli-bundle/chunks/{chunk-7AMK6DOW.js → chunk-SY4GKIWT.js} +88 -22
- package/dist/cli-bundle/chunks/chunk-SY4GKIWT.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-ZLMIWZUG.js → chunk-SY4PZWIZ.js} +7 -4
- package/dist/cli-bundle/chunks/{chunk-ZLMIWZUG.js.map → chunk-SY4PZWIZ.js.map} +2 -2
- package/dist/cli-bundle/chunks/{chunk-R2OUQVBK.js → chunk-T5VU7ROQ.js} +4 -4
- package/dist/cli-bundle/chunks/{chunk-37CYVF73.js → chunk-TIRZIQRP.js} +121 -44
- package/dist/cli-bundle/chunks/chunk-TIRZIQRP.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-7UGSRQCL.js → chunk-TUB3DZAZ.js} +107 -33
- package/dist/cli-bundle/chunks/chunk-TUB3DZAZ.js.map +7 -0
- package/dist/cli-bundle/chunks/chunk-UAR2VNCK.js +394 -0
- package/dist/cli-bundle/chunks/chunk-UAR2VNCK.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-P5U5EOMA.js → chunk-UBMCSJXX.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-ZYNJNPYD.js → chunk-UUKORJSN.js} +4 -4
- package/dist/cli-bundle/chunks/{chunk-R4VWYWRN.js → chunk-W3HFLORZ.js} +7 -2
- package/dist/cli-bundle/chunks/chunk-W3HFLORZ.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-VPEAS7PS.js → chunk-WZCQVABQ.js} +2 -2
- package/dist/cli-bundle/chunks/chunk-X3W5ESZQ.js +32 -0
- package/dist/cli-bundle/chunks/chunk-X3W5ESZQ.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-4YFAGDRH.js → chunk-XLNNCKTN.js} +322 -19
- package/dist/cli-bundle/chunks/chunk-XLNNCKTN.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-RXAP6JL5.js → chunk-XNOY7TCB.js} +118 -74
- package/dist/cli-bundle/chunks/chunk-XNOY7TCB.js.map +7 -0
- package/dist/cli-bundle/chunks/{chunk-Y3YKK7CY.js → chunk-YGRPBFMA.js} +2 -2
- package/dist/cli-bundle/chunks/{chunk-QNJSITCX.js → chunk-YXTLI4XP.js} +20 -9
- package/dist/cli-bundle/chunks/chunk-YXTLI4XP.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-FDH2X65L.js → chunk-Z3MUNQRV.js} +52 -9
- package/dist/cli-bundle/chunks/chunk-Z3MUNQRV.js.map +1 -0
- package/dist/cli-bundle/chunks/{chunk-XMBI6TNW.js → chunk-ZJRDVYZI.js} +4 -4
- package/dist/cli-bundle/chunks/{chunk-CCX4RSYZ.js → chunk-ZONXMSVB.js} +10 -9
- package/dist/cli-bundle/chunks/chunk-ZONXMSVB.js.map +1 -0
- package/dist/cli-bundle/chunks/{claim-2RDYMCTP.js → claim-4APLUXJW.js} +10 -10
- package/dist/cli-bundle/chunks/{claim-MJ7DZFC3.js → claim-NEO7AGWH.js} +10 -10
- package/dist/cli-bundle/chunks/{close-XLEKIQSW.js → close-3QABBNGU.js} +8 -8
- package/dist/cli-bundle/chunks/close-ILMZR3D7.js +13 -0
- package/dist/cli-bundle/chunks/{close-many-AOD4HSAZ.js → close-many-MIZLTYGL.js} +32 -20
- package/dist/cli-bundle/chunks/close-many-MIZLTYGL.js.map +1 -0
- package/dist/cli-bundle/chunks/{close-many-XKAQY5CQ.js → close-many-Q7Y5AHQI.js} +31 -19
- package/dist/cli-bundle/chunks/close-many-Q7Y5AHQI.js.map +7 -0
- package/dist/cli-bundle/chunks/{comments-RN5TG4ZN.js → comments-DAIQPOMU.js} +55 -31
- package/dist/cli-bundle/chunks/comments-DAIQPOMU.js.map +1 -0
- package/dist/cli-bundle/chunks/{comments-B4RWWDJT.js → comments-IWFSVM4P.js} +54 -30
- package/dist/cli-bundle/chunks/comments-IWFSVM4P.js.map +7 -0
- package/dist/cli-bundle/chunks/{config-3JXJ3XZ7.js → config-IOJELD6O.js} +45 -19
- package/dist/cli-bundle/chunks/config-IOJELD6O.js.map +1 -0
- package/dist/cli-bundle/chunks/{config-FZ4UDC4B.js → config-PXTMAYV3.js} +44 -18
- package/dist/cli-bundle/chunks/config-PXTMAYV3.js.map +7 -0
- package/dist/cli-bundle/chunks/{context-QBPO3BFM.js → context-QHJSCJW4.js} +128 -39
- package/dist/cli-bundle/chunks/context-QHJSCJW4.js.map +1 -0
- package/dist/cli-bundle/chunks/{context-L36PIN35.js → context-XZS2VFKU.js} +127 -38
- package/dist/cli-bundle/chunks/context-XZS2VFKU.js.map +7 -0
- package/dist/cli-bundle/chunks/{contracts-2G66IGIA.js → contracts-B7U4OJTV.js} +54 -10
- package/dist/cli-bundle/chunks/contracts-B7U4OJTV.js.map +1 -0
- package/dist/cli-bundle/chunks/{contracts-PJCHYSO5.js → contracts-NSBVLXQ3.js} +54 -10
- package/dist/cli-bundle/chunks/contracts-NSBVLXQ3.js.map +7 -0
- package/dist/cli-bundle/chunks/{copy-FWIVTLBO.js → copy-Q64T5FD4.js} +7 -7
- package/dist/cli-bundle/chunks/{copy-ALU5WMHA.js → copy-SG34LCMU.js} +7 -7
- package/dist/cli-bundle/chunks/create-F5HZX2S4.js +30 -0
- package/dist/cli-bundle/chunks/{create-5433DP3G.js → create-IPAX2SNL.js} +16 -13
- package/dist/cli-bundle/chunks/{delete-Y2SGJBGY.js → delete-TLXR7LJ2.js} +7 -7
- package/dist/cli-bundle/chunks/{delete-IYTIYAJS.js → delete-VH3L7DZ6.js} +7 -7
- package/dist/cli-bundle/chunks/{deps-CZ4PTVXU.js → deps-J3HBBLDB.js} +9 -10
- package/dist/cli-bundle/chunks/{deps-CZ4PTVXU.js.map → deps-J3HBBLDB.js.map} +2 -2
- package/dist/cli-bundle/chunks/{deps-6TSPOSGU.js → deps-XV6JJ6IN.js} +10 -11
- package/dist/cli-bundle/chunks/deps-XV6JJ6IN.js.map +1 -0
- package/dist/cli-bundle/chunks/{docs-MXLGZUIT.js → docs-GWDEB7JH.js} +9 -9
- package/dist/cli-bundle/chunks/{docs-I3BAF5WH.js → docs-RCLNSKID.js} +9 -9
- package/dist/cli-bundle/chunks/{extension-Q34OEWO5.js → extension-5RN65LHT.js} +7 -5
- package/dist/cli-bundle/chunks/{extension-WH2FOIOZ.js → extension-7KO2NX2A.js} +7 -5
- package/dist/cli-bundle/chunks/{files-GUXUM2MB.js → files-3TCQHUHA.js} +25 -11
- package/dist/cli-bundle/chunks/files-3TCQHUHA.js.map +1 -0
- package/dist/cli-bundle/chunks/{files-FYP3MDPX.js → files-5FDUPSEA.js} +24 -10
- package/dist/cli-bundle/chunks/files-5FDUPSEA.js.map +7 -0
- package/dist/cli-bundle/chunks/focus-7AQMNRSU.js +109 -0
- package/dist/cli-bundle/chunks/focus-7AQMNRSU.js.map +7 -0
- package/dist/cli-bundle/chunks/focus-HQXBYPKM.js +106 -0
- package/dist/cli-bundle/chunks/focus-HQXBYPKM.js.map +1 -0
- package/dist/cli-bundle/chunks/{gc-KGQG66SA.js → gc-2FGKYRJ4.js} +3 -3
- package/dist/cli-bundle/chunks/{gc-FENB2ESG.js → gc-5B6ABL3Z.js} +3 -3
- package/dist/cli-bundle/chunks/{get-PCHS7RA6.js → get-FUMVOJQD.js} +43 -16
- package/dist/cli-bundle/chunks/get-FUMVOJQD.js.map +1 -0
- package/dist/cli-bundle/chunks/{get-QARTE6BL.js → get-H5BZTW4A.js} +42 -15
- package/dist/cli-bundle/chunks/get-H5BZTW4A.js.map +7 -0
- package/dist/cli-bundle/chunks/{health-E4D7KGHD.js → health-JSVOR6B4.js} +75 -49
- package/dist/cli-bundle/chunks/health-JSVOR6B4.js.map +1 -0
- package/dist/cli-bundle/chunks/{health-7MTXAVR2.js → health-LE2ZQGSM.js} +74 -48
- package/dist/cli-bundle/chunks/health-LE2ZQGSM.js.map +7 -0
- package/dist/cli-bundle/chunks/{history-7WUAEWHW.js → history-QO4JVJJP.js} +10 -10
- package/dist/cli-bundle/chunks/history-SSXGGTVZ.js +20 -0
- package/dist/cli-bundle/chunks/{history-compact-LW27IPFK.js → history-compact-ID74DOUI.js} +37 -46
- package/dist/cli-bundle/chunks/history-compact-ID74DOUI.js.map +7 -0
- package/dist/cli-bundle/chunks/{history-compact-3EJ3L2O7.js → history-compact-SDFRPZ4V.js} +38 -47
- package/dist/cli-bundle/chunks/history-compact-SDFRPZ4V.js.map +1 -0
- package/dist/cli-bundle/chunks/history-redact-VBH44Y7F.js +21 -0
- package/dist/cli-bundle/chunks/{history-redact-G72A4EJ4.js → history-redact-Z4P5MM3G.js} +13 -11
- package/dist/cli-bundle/chunks/{history-repair-OSQOKJ3E.js → history-repair-ANHEYWKF.js} +43 -48
- package/dist/cli-bundle/chunks/history-repair-ANHEYWKF.js.map +7 -0
- package/dist/cli-bundle/chunks/{history-repair-SBK7P34V.js → history-repair-CKE7GLZR.js} +44 -49
- package/dist/cli-bundle/chunks/history-repair-CKE7GLZR.js.map +1 -0
- package/dist/cli-bundle/chunks/init-7FBQO77A.js +19 -0
- package/dist/cli-bundle/chunks/{init-S5WEGUJY.js → init-K6MSMB37.js} +11 -9
- package/dist/cli-bundle/chunks/{learnings-XK3P4ZDR.js → learnings-VIS3NOQV.js} +13 -12
- package/dist/cli-bundle/chunks/learnings-VIS3NOQV.js.map +7 -0
- package/dist/cli-bundle/chunks/{learnings-HQXSSKZ5.js → learnings-YYNB64GN.js} +14 -13
- package/dist/cli-bundle/chunks/learnings-YYNB64GN.js.map +1 -0
- package/dist/cli-bundle/chunks/list-7UE44A2R.js +29 -0
- package/dist/cli-bundle/chunks/list-UHMA3N2K.js +33 -0
- package/dist/cli-bundle/chunks/{notes-5T6P7C5V.js → notes-2HRMV67I.js} +14 -13
- package/dist/cli-bundle/chunks/notes-2HRMV67I.js.map +1 -0
- package/dist/cli-bundle/chunks/{notes-U5FZCSBT.js → notes-IN3UMA7W.js} +13 -12
- package/dist/cli-bundle/chunks/notes-IN3UMA7W.js.map +7 -0
- package/dist/cli-bundle/chunks/{plan-2YTQYWGM.js → plan-I3SVH7FV.js} +16 -15
- package/dist/cli-bundle/chunks/plan-I3SVH7FV.js.map +1 -0
- package/dist/cli-bundle/chunks/{plan-7IVSICR6.js → plan-PAWCCAPW.js} +15 -14
- package/dist/cli-bundle/chunks/plan-PAWCCAPW.js.map +7 -0
- package/dist/cli-bundle/chunks/{register-list-query-4UPMHONX.js → register-list-query-N7Z7RTDM.js} +31 -22
- package/dist/cli-bundle/chunks/register-list-query-N7Z7RTDM.js.map +7 -0
- package/dist/cli-bundle/chunks/{register-list-query-7VOW2C3W.js → register-list-query-OTIK4DVA.js} +32 -23
- package/dist/cli-bundle/chunks/register-list-query-OTIK4DVA.js.map +1 -0
- package/dist/cli-bundle/chunks/{register-mutation-FARSGYRD.js → register-mutation-UFZK6Q57.js} +216 -66
- package/dist/cli-bundle/chunks/register-mutation-UFZK6Q57.js.map +7 -0
- package/dist/cli-bundle/chunks/{register-mutation-LJDNVREU.js → register-mutation-XFORLS6D.js} +210 -67
- package/dist/cli-bundle/chunks/register-mutation-XFORLS6D.js.map +1 -0
- package/dist/cli-bundle/chunks/{register-operations-HCJKDUA6.js → register-operations-6ZCLKRBG.js} +53 -39
- package/dist/cli-bundle/chunks/register-operations-6ZCLKRBG.js.map +7 -0
- package/dist/cli-bundle/chunks/{register-operations-FFTYAL42.js → register-operations-ITE7JTH3.js} +54 -40
- package/dist/cli-bundle/chunks/register-operations-ITE7JTH3.js.map +1 -0
- package/dist/cli-bundle/chunks/{register-setup-6AVIUOCC.js → register-setup-7RKGE4BQ.js} +18 -21
- package/dist/cli-bundle/chunks/register-setup-7RKGE4BQ.js.map +1 -0
- package/dist/cli-bundle/chunks/{register-setup-KVNLO5OJ.js → register-setup-7UKEFKT6.js} +17 -20
- package/dist/cli-bundle/chunks/register-setup-7UKEFKT6.js.map +7 -0
- package/dist/cli-bundle/chunks/{restore-M6AFHMV4.js → restore-NNVPBBVJ.js} +13 -11
- package/dist/cli-bundle/chunks/restore-XXXLQ2XC.js +19 -0
- package/dist/cli-bundle/chunks/{schema-AINZ2IMM.js → schema-3HCLXCFX.js} +27 -9
- package/dist/cli-bundle/chunks/schema-3HCLXCFX.js.map +7 -0
- package/dist/cli-bundle/chunks/{schema-76HDZJCC.js → schema-3YKCQ3VO.js} +28 -10
- package/dist/cli-bundle/chunks/schema-3YKCQ3VO.js.map +1 -0
- package/dist/cli-bundle/chunks/{search-JMLFQEPJ.js → search-NQ42NC6A.js} +328 -71
- package/dist/cli-bundle/chunks/search-NQ42NC6A.js.map +7 -0
- package/dist/cli-bundle/chunks/{search-NL3TSCYB.js → search-V7PZ2ICH.js} +328 -71
- package/dist/cli-bundle/chunks/search-V7PZ2ICH.js.map +1 -0
- package/dist/cli-bundle/chunks/{stats-BKXCBIGT.js → stats-7KD4PJC5.js} +41 -16
- package/dist/cli-bundle/chunks/stats-7KD4PJC5.js.map +7 -0
- package/dist/cli-bundle/chunks/{stats-UBD56TGK.js → stats-GRHO6RFB.js} +42 -17
- package/dist/cli-bundle/chunks/stats-GRHO6RFB.js.map +1 -0
- package/dist/cli-bundle/chunks/{telemetry-ZJXK3H7X.js → telemetry-H5GLXNG5.js} +6 -6
- package/dist/cli-bundle/chunks/telemetry-H5GLXNG5.js.map +7 -0
- package/dist/cli-bundle/chunks/{telemetry-N454RHG5.js → telemetry-TRRYZXWT.js} +7 -7
- package/dist/cli-bundle/chunks/telemetry-TRRYZXWT.js.map +1 -0
- package/dist/cli-bundle/chunks/test-6CZNIIGA.js +34 -0
- package/dist/cli-bundle/chunks/{test-BQAKIXAT.js → test-7GVQ3VMN.js} +16 -14
- package/dist/cli-bundle/chunks/{test-all-7LV3I6S5.js → test-all-3LF2OZD2.js} +23 -16
- package/dist/cli-bundle/chunks/test-all-3LF2OZD2.js.map +7 -0
- package/dist/cli-bundle/chunks/{test-all-TDYCCBA4.js → test-all-ODVADHV6.js} +24 -17
- package/dist/cli-bundle/chunks/test-all-ODVADHV6.js.map +1 -0
- package/dist/cli-bundle/chunks/{test-runs-E64M6XS3.js → test-runs-LYT6ZTNQ.js} +62 -65
- package/dist/cli-bundle/chunks/test-runs-LYT6ZTNQ.js.map +1 -0
- package/dist/cli-bundle/chunks/{test-runs-LXZLULCI.js → test-runs-RVP6VWN7.js} +61 -64
- package/dist/cli-bundle/chunks/test-runs-RVP6VWN7.js.map +7 -0
- package/dist/cli-bundle/chunks/update-MPGM6SBE.js +28 -0
- package/dist/cli-bundle/chunks/update-UN75XW3C.js +24 -0
- package/dist/cli-bundle/chunks/{update-many-F4IKDWZB.js → update-many-FCU6RKTO.js} +80 -34
- package/dist/cli-bundle/chunks/update-many-FCU6RKTO.js.map +1 -0
- package/dist/cli-bundle/chunks/{update-many-NTWZ5YT3.js → update-many-XSEQJ24X.js} +79 -33
- package/dist/cli-bundle/chunks/update-many-XSEQJ24X.js.map +7 -0
- package/dist/cli-bundle/chunks/{upgrade-37F7JKES.js → upgrade-A6TL3INC.js} +22 -8
- package/dist/cli-bundle/chunks/upgrade-A6TL3INC.js.map +7 -0
- package/dist/cli-bundle/chunks/{upgrade-L32JA4TZ.js → upgrade-FOB5LHO5.js} +23 -9
- package/dist/cli-bundle/chunks/upgrade-FOB5LHO5.js.map +1 -0
- package/dist/cli-bundle/chunks/{validate-46KCRHL7.js → validate-7BLDG3AT.js} +222 -31
- package/dist/cli-bundle/chunks/validate-7BLDG3AT.js.map +1 -0
- package/dist/cli-bundle/chunks/{validate-CRFMPTYD.js → validate-EHL3MI2V.js} +236 -31
- package/dist/cli-bundle/chunks/validate-EHL3MI2V.js.map +7 -0
- package/dist/cli-bundle/main.js +305 -140
- package/dist/cli-bundle/main.js.map +3 -3
- package/dist/cli.d.ts +10 -0
- package/dist/cli.js +21 -8
- package/dist/cli.js.map +1 -1
- package/dist/core/diagnostics/remediation.js +7 -2
- package/dist/core/diagnostics/remediation.js.map +1 -1
- package/dist/core/extensions/extension-capability-aliases.js +7 -33
- package/dist/core/extensions/extension-capability-aliases.js.map +1 -1
- package/dist/core/extensions/extension-policy.js +14 -15
- package/dist/core/extensions/extension-policy.js.map +1 -1
- package/dist/core/extensions/item-fields.js +4 -5
- package/dist/core/extensions/item-fields.js.map +1 -1
- package/dist/core/extensions/loader.d.ts +75 -1
- package/dist/core/extensions/loader.js +56 -32
- package/dist/core/extensions/loader.js.map +1 -1
- package/dist/core/governance/content-fields.d.ts +84 -0
- package/dist/core/governance/content-fields.js +182 -0
- package/dist/core/governance/content-fields.js.map +1 -0
- package/dist/core/governance/issue-codes.d.ts +51 -0
- package/dist/core/governance/issue-codes.js +95 -0
- package/dist/core/governance/issue-codes.js.map +1 -0
- package/dist/core/governance/metadata-coverage.d.ts +168 -0
- package/dist/core/governance/metadata-coverage.js +362 -0
- package/dist/core/governance/metadata-coverage.js.map +1 -0
- package/dist/core/history/history-rewrite.d.ts +22 -0
- package/dist/core/history/history-rewrite.js +38 -2
- package/dist/core/history/history-rewrite.js.map +1 -1
- package/dist/core/history/history.d.ts +7 -0
- package/dist/core/history/history.js +6 -2
- package/dist/core/history/history.js.map +1 -1
- package/dist/core/io/body-file.d.ts +14 -0
- package/dist/core/io/body-file.js +47 -0
- package/dist/core/io/body-file.js.map +1 -0
- package/dist/core/item/item-format.d.ts +46 -1
- package/dist/core/item/item-format.js +51 -60
- package/dist/core/item/item-format.js.map +1 -1
- package/dist/core/item/parse.d.ts +9 -0
- package/dist/core/item/parse.js +10 -16
- package/dist/core/item/parse.js.map +1 -1
- package/dist/core/item/type-registry.d.ts +1 -0
- package/dist/core/item/type-registry.js +8 -10
- package/dist/core/item/type-registry.js.map +1 -1
- package/dist/core/lock/lock.d.ts +26 -0
- package/dist/core/lock/lock.js +10 -2
- package/dist/core/lock/lock.js.map +1 -1
- package/dist/core/output/output.d.ts +7 -0
- package/dist/core/output/output.js +6 -2
- package/dist/core/output/output.js.map +1 -1
- package/dist/core/schema/item-types-file.d.ts +25 -2
- package/dist/core/schema/item-types-file.js +78 -6
- package/dist/core/schema/item-types-file.js.map +1 -1
- package/dist/core/schema/runtime-schema.d.ts +7 -0
- package/dist/core/schema/runtime-schema.js +23 -16
- package/dist/core/schema/runtime-schema.js.map +1 -1
- package/dist/core/search/background-refresh.js +3 -3
- package/dist/core/search/background-refresh.js.map +1 -1
- package/dist/core/search/cache.d.ts +19 -1
- package/dist/core/search/cache.js +11 -3
- package/dist/core/search/cache.js.map +1 -1
- package/dist/core/search/corpus.d.ts +36 -2
- package/dist/core/search/corpus.js +120 -24
- package/dist/core/search/corpus.js.map +1 -1
- package/dist/core/search/providers.d.ts +19 -0
- package/dist/core/search/providers.js +19 -2
- package/dist/core/search/providers.js.map +1 -1
- package/dist/core/sentry/instrument.d.ts +1 -0
- package/dist/core/sentry/instrument.js +6 -2
- package/dist/core/sentry/instrument.js.map +1 -1
- package/dist/core/session/session-state.d.ts +16 -0
- package/dist/core/session/session-state.js +48 -0
- package/dist/core/session/session-state.js.map +1 -0
- package/dist/core/shared/constants.d.ts +8 -0
- package/dist/core/shared/constants.js +11 -2
- package/dist/core/shared/constants.js.map +1 -1
- package/dist/core/shared/errors.d.ts +3 -0
- package/dist/core/shared/errors.js +2 -2
- package/dist/core/shared/errors.js.map +1 -1
- package/dist/core/shared/text-normalization.js +4 -3
- package/dist/core/shared/text-normalization.js.map +1 -1
- package/dist/core/shared/time.d.ts +13 -0
- package/dist/core/shared/time.js +19 -7
- package/dist/core/shared/time.js.map +1 -1
- package/dist/core/store/item-store.d.ts +11 -0
- package/dist/core/store/item-store.js +16 -23
- package/dist/core/store/item-store.js.map +1 -1
- package/dist/core/store/settings-validator.d.ts +2 -0
- package/dist/core/store/settings-validator.js +25 -2
- package/dist/core/store/settings-validator.js.map +1 -1
- package/dist/core/store/settings.d.ts +60 -1
- package/dist/core/store/settings.js +100 -46
- package/dist/core/store/settings.js.map +1 -1
- package/dist/core/telemetry/observability.js +10 -8
- package/dist/core/telemetry/observability.js.map +1 -1
- package/dist/core/telemetry/runtime.d.ts +272 -1
- package/dist/core/telemetry/runtime.js +358 -37
- package/dist/core/telemetry/runtime.js.map +1 -1
- package/dist/core/test/background-runs.d.ts +35 -0
- package/dist/core/test/background-runs.js +72 -61
- package/dist/core/test/background-runs.js.map +1 -1
- package/dist/core/test/run-selectors.js +5 -4
- package/dist/core/test/run-selectors.js.map +1 -1
- package/dist/core/validate/estimate-defaults.d.ts +39 -0
- package/dist/core/validate/estimate-defaults.js +117 -0
- package/dist/core/validate/estimate-defaults.js.map +1 -0
- package/dist/core/validate/fix-planning.d.ts +21 -3
- package/dist/core/validate/fix-planning.js +31 -4
- package/dist/core/validate/fix-planning.js.map +1 -1
- package/dist/core/validate/missing-link-owners.d.ts +64 -0
- package/dist/core/validate/missing-link-owners.js +98 -0
- package/dist/core/validate/missing-link-owners.js.map +1 -0
- package/dist/mcp/server.d.ts +62 -0
- package/dist/mcp/server.js +71 -8
- package/dist/mcp/server.js.map +1 -1
- package/dist/mcp/tool-definitions.js +17 -4
- package/dist/mcp/tool-definitions.js.map +1 -1
- package/dist/sdk/cli-contracts/commander-types.js +13 -2
- package/dist/sdk/cli-contracts/commander-types.js.map +1 -1
- package/dist/sdk/cli-contracts/enum-contracts.d.ts +2 -2
- package/dist/sdk/cli-contracts/enum-contracts.js +4 -2
- package/dist/sdk/cli-contracts/enum-contracts.js.map +1 -1
- package/dist/sdk/cli-contracts/tool-option-contracts.js +110 -2
- package/dist/sdk/cli-contracts/tool-option-contracts.js.map +1 -1
- package/dist/sdk/cli-contracts/tool-parameter-tables.js +83 -8
- package/dist/sdk/cli-contracts/tool-parameter-tables.js.map +1 -1
- package/dist/sdk/cli-contracts.d.ts +28 -0
- package/dist/sdk/cli-contracts.js +164 -11
- package/dist/sdk/cli-contracts.js.map +1 -1
- package/dist/types.d.ts +17 -1
- package/dist/types.js +3 -3
- package/dist/types.js.map +1 -1
- package/docs/AGENT_GUIDE.md +15 -3
- package/docs/CLAUDE_CODE_PLUGIN.md +2 -2
- package/docs/COMMANDS.md +136 -7
- package/docs/CONFIGURATION.md +52 -0
- package/docs/TESTING.md +6 -4
- package/package.json +6 -4
- package/packages/pm-calendar/extensions/calendar/runtime.js +6 -0
- package/packages/pm-calendar/extensions/calendar/runtime.ts +12 -0
- package/packages/pm-todos/extensions/todos/runtime.ts +5 -0
- package/plugins/pm-claude/.claude-plugin/plugin.json +1 -1
- package/plugins/pm-claude/README.md +6 -14
- package/plugins/pm-claude/commands/pm-init.md +1 -1
- package/plugins/pm-codex/README.md +1 -1
- package/scripts/bundle-cli.mjs +46 -37
- package/scripts/finalize-build.mjs +20 -9
- package/scripts/prepare-build-cache.mjs +27 -16
- package/dist/cli-bundle/chunks/activity-XZIUPGZH.js +0 -16
- package/dist/cli-bundle/chunks/aggregate-6OTS3AOO.js.map +0 -1
- package/dist/cli-bundle/chunks/aggregate-OD36DJU5.js.map +0 -7
- package/dist/cli-bundle/chunks/append-KG55G7S3.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-35P4GT6E.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-37CYVF73.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-3KLPFWZ4.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-4JCSYR6F.js +0 -138
- package/dist/cli-bundle/chunks/chunk-4JCSYR6F.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-4YFAGDRH.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-5SCT2JCT.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-73ZPG2I3.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-7AMK6DOW.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-7IYFN5R7.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-7UGSRQCL.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-A6LXQFO7.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-AVGHVVF7.js +0 -128
- package/dist/cli-bundle/chunks/chunk-AVGHVVF7.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-AX4GEVQC.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-CCX4RSYZ.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-CW6E4NAT.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-DY6C42S6.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-EWFY7SLA.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-F75JSIOZ.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-FDH2X65L.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-FY4SPXSC.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-GKIZW7SM.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-HHHJ2GI3.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-HI7STVF2.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-I53JBTJW.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-I7NYDZDV.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-IUKD4W6Z.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-KWAXVAXX.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-L5EPZQIC.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-OASDW5UI.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-OLKBSY4N.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-P5BJOMBB.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-PNYAAB4S.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-QKW5D45B.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-QNJSITCX.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-R4VWYWRN.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-RXAP6JL5.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-S2ZLDYGS.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-SO55HRA5.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-TK5VZFHY.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-TNAP7EJX.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-UIG4TW2H.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-UUWGCWBU.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-VFUZV5EB.js.map +0 -7
- package/dist/cli-bundle/chunks/chunk-WUNFKP7M.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-XJDGS74Y.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-XWMF3POR.js.map +0 -1
- package/dist/cli-bundle/chunks/chunk-ZMW77VWV.js.map +0 -1
- package/dist/cli-bundle/chunks/close-4FMAPEMY.js +0 -13
- package/dist/cli-bundle/chunks/close-many-AOD4HSAZ.js.map +0 -1
- package/dist/cli-bundle/chunks/close-many-XKAQY5CQ.js.map +0 -7
- package/dist/cli-bundle/chunks/comments-B4RWWDJT.js.map +0 -7
- package/dist/cli-bundle/chunks/comments-RN5TG4ZN.js.map +0 -1
- package/dist/cli-bundle/chunks/config-3JXJ3XZ7.js.map +0 -1
- package/dist/cli-bundle/chunks/config-FZ4UDC4B.js.map +0 -7
- package/dist/cli-bundle/chunks/context-L36PIN35.js.map +0 -7
- package/dist/cli-bundle/chunks/context-QBPO3BFM.js.map +0 -1
- package/dist/cli-bundle/chunks/contracts-2G66IGIA.js.map +0 -1
- package/dist/cli-bundle/chunks/contracts-PJCHYSO5.js.map +0 -7
- package/dist/cli-bundle/chunks/create-VWLWS34Z.js +0 -27
- package/dist/cli-bundle/chunks/deps-6TSPOSGU.js.map +0 -1
- package/dist/cli-bundle/chunks/files-FYP3MDPX.js.map +0 -7
- package/dist/cli-bundle/chunks/files-GUXUM2MB.js.map +0 -1
- package/dist/cli-bundle/chunks/get-PCHS7RA6.js.map +0 -1
- package/dist/cli-bundle/chunks/get-QARTE6BL.js.map +0 -7
- package/dist/cli-bundle/chunks/health-7MTXAVR2.js.map +0 -7
- package/dist/cli-bundle/chunks/health-E4D7KGHD.js.map +0 -1
- package/dist/cli-bundle/chunks/history-L2FQFRTU.js +0 -20
- package/dist/cli-bundle/chunks/history-compact-3EJ3L2O7.js.map +0 -1
- package/dist/cli-bundle/chunks/history-compact-LW27IPFK.js.map +0 -7
- package/dist/cli-bundle/chunks/history-redact-QWQCX5DZ.js +0 -19
- package/dist/cli-bundle/chunks/history-repair-OSQOKJ3E.js.map +0 -7
- package/dist/cli-bundle/chunks/history-repair-SBK7P34V.js.map +0 -1
- package/dist/cli-bundle/chunks/init-4BKRHGWW.js +0 -17
- package/dist/cli-bundle/chunks/learnings-HQXSSKZ5.js.map +0 -1
- package/dist/cli-bundle/chunks/learnings-XK3P4ZDR.js.map +0 -7
- package/dist/cli-bundle/chunks/list-6CL3XFT6.js +0 -23
- package/dist/cli-bundle/chunks/list-BYNN4ZEO.js +0 -19
- package/dist/cli-bundle/chunks/notes-5T6P7C5V.js.map +0 -1
- package/dist/cli-bundle/chunks/notes-U5FZCSBT.js.map +0 -7
- package/dist/cli-bundle/chunks/plan-2YTQYWGM.js.map +0 -1
- package/dist/cli-bundle/chunks/plan-7IVSICR6.js.map +0 -7
- package/dist/cli-bundle/chunks/register-list-query-4UPMHONX.js.map +0 -7
- package/dist/cli-bundle/chunks/register-list-query-7VOW2C3W.js.map +0 -1
- package/dist/cli-bundle/chunks/register-mutation-FARSGYRD.js.map +0 -7
- package/dist/cli-bundle/chunks/register-mutation-LJDNVREU.js.map +0 -1
- package/dist/cli-bundle/chunks/register-operations-FFTYAL42.js.map +0 -1
- package/dist/cli-bundle/chunks/register-operations-HCJKDUA6.js.map +0 -7
- package/dist/cli-bundle/chunks/register-setup-6AVIUOCC.js.map +0 -1
- package/dist/cli-bundle/chunks/register-setup-KVNLO5OJ.js.map +0 -7
- package/dist/cli-bundle/chunks/restore-CHIOQAQL.js +0 -17
- package/dist/cli-bundle/chunks/schema-76HDZJCC.js.map +0 -1
- package/dist/cli-bundle/chunks/schema-AINZ2IMM.js.map +0 -7
- package/dist/cli-bundle/chunks/search-JMLFQEPJ.js.map +0 -7
- package/dist/cli-bundle/chunks/search-NL3TSCYB.js.map +0 -1
- package/dist/cli-bundle/chunks/stats-BKXCBIGT.js.map +0 -7
- package/dist/cli-bundle/chunks/stats-UBD56TGK.js.map +0 -1
- package/dist/cli-bundle/chunks/telemetry-N454RHG5.js.map +0 -1
- package/dist/cli-bundle/chunks/telemetry-ZJXK3H7X.js.map +0 -7
- package/dist/cli-bundle/chunks/test-O74JFUH5.js +0 -32
- package/dist/cli-bundle/chunks/test-all-7LV3I6S5.js.map +0 -7
- package/dist/cli-bundle/chunks/test-all-TDYCCBA4.js.map +0 -1
- package/dist/cli-bundle/chunks/test-runs-E64M6XS3.js.map +0 -1
- package/dist/cli-bundle/chunks/test-runs-LXZLULCI.js.map +0 -7
- package/dist/cli-bundle/chunks/update-36JM7YZT.js +0 -21
- package/dist/cli-bundle/chunks/update-I246PCLO.js +0 -25
- package/dist/cli-bundle/chunks/update-many-F4IKDWZB.js.map +0 -1
- package/dist/cli-bundle/chunks/update-many-NTWZ5YT3.js.map +0 -7
- package/dist/cli-bundle/chunks/upgrade-37F7JKES.js.map +0 -7
- package/dist/cli-bundle/chunks/upgrade-L32JA4TZ.js.map +0 -1
- package/dist/cli-bundle/chunks/validate-46KCRHL7.js.map +0 -1
- package/dist/cli-bundle/chunks/validate-CRFMPTYD.js.map +0 -7
- /package/dist/cli-bundle/chunks/{activity-XZIUPGZH.js.map → activity-5P2KQCTH.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{activity-XADJOG6G.js.map → activity-MJGTX4LO.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-ATEES5SX.js.map → chunk-2JEGCDYT.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-XUC4C4PT.js.map → chunk-3WAULYOY.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-QJMGRZO2.js.map → chunk-7AGIXLNK.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-KBPQHXWG.js.map → chunk-AERT7KT3.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-ESANVZF4.js.map → chunk-E6J2PEK6.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-VSRZRLG3.js.map → chunk-F2GC6L3N.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-XTKJSVWH.js.map → chunk-M23HXJL3.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-S26FESD4.js.map → chunk-MJZUZ2QE.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-C6SAP27O.js.map → chunk-O46LTCXQ.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-WPDMBIX6.js.map → chunk-OLTYNVJR.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-R2OUQVBK.js.map → chunk-T5VU7ROQ.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-P5U5EOMA.js.map → chunk-UBMCSJXX.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-ZYNJNPYD.js.map → chunk-UUKORJSN.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-VPEAS7PS.js.map → chunk-WZCQVABQ.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-Y3YKK7CY.js.map → chunk-YGRPBFMA.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{chunk-XMBI6TNW.js.map → chunk-ZJRDVYZI.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{claim-2RDYMCTP.js.map → claim-4APLUXJW.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{claim-MJ7DZFC3.js.map → claim-NEO7AGWH.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{close-XLEKIQSW.js.map → close-3QABBNGU.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{close-4FMAPEMY.js.map → close-ILMZR3D7.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{copy-FWIVTLBO.js.map → copy-Q64T5FD4.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{copy-ALU5WMHA.js.map → copy-SG34LCMU.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{create-VWLWS34Z.js.map → create-F5HZX2S4.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{create-5433DP3G.js.map → create-IPAX2SNL.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{delete-Y2SGJBGY.js.map → delete-TLXR7LJ2.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{delete-IYTIYAJS.js.map → delete-VH3L7DZ6.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{docs-MXLGZUIT.js.map → docs-GWDEB7JH.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{docs-I3BAF5WH.js.map → docs-RCLNSKID.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{extension-Q34OEWO5.js.map → extension-5RN65LHT.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{extension-WH2FOIOZ.js.map → extension-7KO2NX2A.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{gc-KGQG66SA.js.map → gc-2FGKYRJ4.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{gc-FENB2ESG.js.map → gc-5B6ABL3Z.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{history-7WUAEWHW.js.map → history-QO4JVJJP.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{history-L2FQFRTU.js.map → history-SSXGGTVZ.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{history-redact-QWQCX5DZ.js.map → history-redact-VBH44Y7F.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{history-redact-G72A4EJ4.js.map → history-redact-Z4P5MM3G.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{init-4BKRHGWW.js.map → init-7FBQO77A.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{init-S5WEGUJY.js.map → init-K6MSMB37.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{list-BYNN4ZEO.js.map → list-7UE44A2R.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{list-6CL3XFT6.js.map → list-UHMA3N2K.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{restore-M6AFHMV4.js.map → restore-NNVPBBVJ.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{restore-CHIOQAQL.js.map → restore-XXXLQ2XC.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{test-O74JFUH5.js.map → test-6CZNIIGA.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{test-BQAKIXAT.js.map → test-7GVQ3VMN.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{update-I246PCLO.js.map → update-MPGM6SBE.js.map} +0 -0
- /package/dist/cli-bundle/chunks/{update-36JM7YZT.js.map → update-UN75XW3C.js.map} +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="1b0f36a6-c2cc-52b4-a53d-77cf523789fc")}catch(e){}}();
|
|
3
3
|
import {
|
|
4
4
|
KNOWN_EXTENSION_CAPABILITIES,
|
|
5
5
|
KNOWN_EXTENSION_POLICY_MODES,
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
PLAN_MODE_VALUES,
|
|
12
12
|
PLAN_STEP_LINK_KIND_VALUES,
|
|
13
13
|
PLAN_STEP_STATUS_VALUES
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-KTVETP66.js";
|
|
15
15
|
|
|
16
16
|
// dist/sdk/cli-contracts/commander-types.js
|
|
17
17
|
var LIST_COMMANDER_STRING_OPTION_CONTRACTS = [
|
|
@@ -40,6 +40,8 @@ var LIST_COMMANDER_STRING_OPTION_CONTRACTS = [
|
|
|
40
40
|
];
|
|
41
41
|
var SEARCH_COMMANDER_STRING_OPTION_CONTRACTS = [
|
|
42
42
|
{ target: "mode", keys: ["mode"] },
|
|
43
|
+
{ target: "matchMode", keys: ["matchMode", "match_mode"] },
|
|
44
|
+
{ target: "minScore", keys: ["minScore", "min_score"] },
|
|
43
45
|
{ target: "semanticWeight", keys: ["semanticWeight", "semantic_weight"] },
|
|
44
46
|
{ target: "status", keys: ["status"] },
|
|
45
47
|
{ target: "type", keys: ["type"] },
|
|
@@ -47,6 +49,14 @@ var SEARCH_COMMANDER_STRING_OPTION_CONTRACTS = [
|
|
|
47
49
|
{ target: "priority", keys: ["priority"] },
|
|
48
50
|
{ target: "deadlineBefore", keys: ["deadlineBefore"] },
|
|
49
51
|
{ target: "deadlineAfter", keys: ["deadlineAfter"] },
|
|
52
|
+
{ target: "updatedAfter", keys: ["updatedAfter"] },
|
|
53
|
+
{ target: "updatedBefore", keys: ["updatedBefore"] },
|
|
54
|
+
{ target: "createdAfter", keys: ["createdAfter"] },
|
|
55
|
+
{ target: "createdBefore", keys: ["createdBefore"] },
|
|
56
|
+
{ target: "assignee", keys: ["assignee"] },
|
|
57
|
+
{ target: "sprint", keys: ["sprint"] },
|
|
58
|
+
{ target: "release", keys: ["release"] },
|
|
59
|
+
{ target: "parent", keys: ["parent"] },
|
|
50
60
|
{ target: "fields", keys: ["fields"] },
|
|
51
61
|
{ target: "limit", keys: ["limit"] }
|
|
52
62
|
];
|
|
@@ -81,6 +91,7 @@ var CONTEXT_COMMANDER_STRING_OPTION_CONTRACTS = [
|
|
|
81
91
|
{ target: "assigneeFilter", keys: ["assigneeFilter", "assignee_filter"] },
|
|
82
92
|
{ target: "sprint", keys: ["sprint"] },
|
|
83
93
|
{ target: "release", keys: ["release"] },
|
|
94
|
+
{ target: "parent", keys: ["parent"] },
|
|
84
95
|
{ target: "limit", keys: ["limit"] },
|
|
85
96
|
{ target: "format", keys: ["format"] },
|
|
86
97
|
{ target: "depth", keys: ["depth"] },
|
|
@@ -664,6 +675,7 @@ var PM_CORE_COMMAND_NAMES = [
|
|
|
664
675
|
"upgrade",
|
|
665
676
|
"create",
|
|
666
677
|
"copy",
|
|
678
|
+
"focus",
|
|
667
679
|
"list",
|
|
668
680
|
"list-all",
|
|
669
681
|
"list-draft",
|
|
@@ -745,6 +757,7 @@ var PM_TOOL_ACTIONS = [
|
|
|
745
757
|
"upgrade",
|
|
746
758
|
"create",
|
|
747
759
|
"copy",
|
|
760
|
+
"focus",
|
|
748
761
|
"list",
|
|
749
762
|
"list-all",
|
|
750
763
|
"list-draft",
|
|
@@ -811,6 +824,33 @@ var TOOL_LIST_FILTER_OPTION_CONTRACTS = [
|
|
|
811
824
|
{ param: "parent", flag: "--parent" },
|
|
812
825
|
{ param: "sprint", flag: "--sprint" },
|
|
813
826
|
{ param: "release", flag: "--release" },
|
|
827
|
+
{ param: "filterAcMissing", flag: "--filter-ac-missing" },
|
|
828
|
+
{ param: "filterEstimatesMissing", flag: "--filter-estimates-missing" },
|
|
829
|
+
{ param: "filterResolutionMissing", flag: "--filter-resolution-missing" },
|
|
830
|
+
{ param: "filterMetadataMissing", flag: "--filter-metadata-missing" },
|
|
831
|
+
{ param: "filterReviewerMissing", flag: "--filter-reviewer-missing" },
|
|
832
|
+
{ param: "filterRiskMissing", flag: "--filter-risk-missing" },
|
|
833
|
+
{ param: "filterConfidenceMissing", flag: "--filter-confidence-missing" },
|
|
834
|
+
{ param: "filterSprintMissing", flag: "--filter-sprint-missing" },
|
|
835
|
+
{ param: "filterReleaseMissing", flag: "--filter-release-missing" },
|
|
836
|
+
{ param: "hasNotes", flag: "--has-notes" },
|
|
837
|
+
{ param: "noNotes", flag: "--no-notes" },
|
|
838
|
+
{ param: "hasLearnings", flag: "--has-learnings" },
|
|
839
|
+
{ param: "noLearnings", flag: "--no-learnings" },
|
|
840
|
+
{ param: "hasFiles", flag: "--has-files" },
|
|
841
|
+
{ param: "noFiles", flag: "--no-files" },
|
|
842
|
+
{ param: "hasDocs", flag: "--has-docs" },
|
|
843
|
+
{ param: "noDocs", flag: "--no-docs" },
|
|
844
|
+
{ param: "hasTests", flag: "--has-tests" },
|
|
845
|
+
{ param: "noTests", flag: "--no-tests" },
|
|
846
|
+
{ param: "hasComments", flag: "--has-comments" },
|
|
847
|
+
{ param: "noComments", flag: "--no-comments" },
|
|
848
|
+
{ param: "hasDeps", flag: "--has-deps" },
|
|
849
|
+
{ param: "noDeps", flag: "--no-deps" },
|
|
850
|
+
{ param: "hasBody", flag: "--has-body" },
|
|
851
|
+
{ param: "emptyBody", flag: "--empty-body" },
|
|
852
|
+
{ param: "hasLinkedCommand", flag: "--has-linked-command" },
|
|
853
|
+
{ param: "noLinkedCommand", flag: "--no-linked-command" },
|
|
814
854
|
{ param: "limit", flag: "--limit" },
|
|
815
855
|
{ param: "offset", flag: "--offset" },
|
|
816
856
|
{ param: "fields", flag: "--fields" },
|
|
@@ -852,6 +892,9 @@ var TOOL_DEDUPE_AUDIT_OPTION_CONTRACTS = [
|
|
|
852
892
|
{ param: "release", flag: "--release" }
|
|
853
893
|
];
|
|
854
894
|
var TOOL_SEARCH_FILTER_OPTION_CONTRACTS = [
|
|
895
|
+
{ param: "matchMode", flag: "--match-mode" },
|
|
896
|
+
{ param: "minScore", flag: "--min-score" },
|
|
897
|
+
{ param: "count", flag: "--count", booleanish: true },
|
|
855
898
|
{ param: "semanticWeight", flag: "--semantic-weight" },
|
|
856
899
|
{ param: "status", flag: "--status" },
|
|
857
900
|
{ param: "type", flag: "--type" },
|
|
@@ -859,6 +902,37 @@ var TOOL_SEARCH_FILTER_OPTION_CONTRACTS = [
|
|
|
859
902
|
{ param: "priority", flag: "--priority" },
|
|
860
903
|
{ param: "deadlineBefore", flag: "--deadline-before" },
|
|
861
904
|
{ param: "deadlineAfter", flag: "--deadline-after" },
|
|
905
|
+
{ param: "updatedAfter", flag: "--updated-after" },
|
|
906
|
+
{ param: "updatedBefore", flag: "--updated-before" },
|
|
907
|
+
{ param: "createdAfter", flag: "--created-after" },
|
|
908
|
+
{ param: "createdBefore", flag: "--created-before" },
|
|
909
|
+
{ param: "assignee", flag: "--assignee" },
|
|
910
|
+
{ param: "sprint", flag: "--sprint" },
|
|
911
|
+
{ param: "release", flag: "--release" },
|
|
912
|
+
{ param: "parent", flag: "--parent" },
|
|
913
|
+
{ param: "filterReviewerMissing", flag: "--filter-reviewer-missing" },
|
|
914
|
+
{ param: "filterRiskMissing", flag: "--filter-risk-missing" },
|
|
915
|
+
{ param: "filterConfidenceMissing", flag: "--filter-confidence-missing" },
|
|
916
|
+
{ param: "filterSprintMissing", flag: "--filter-sprint-missing" },
|
|
917
|
+
{ param: "filterReleaseMissing", flag: "--filter-release-missing" },
|
|
918
|
+
{ param: "hasNotes", flag: "--has-notes" },
|
|
919
|
+
{ param: "noNotes", flag: "--no-notes" },
|
|
920
|
+
{ param: "hasLearnings", flag: "--has-learnings" },
|
|
921
|
+
{ param: "noLearnings", flag: "--no-learnings" },
|
|
922
|
+
{ param: "hasFiles", flag: "--has-files" },
|
|
923
|
+
{ param: "noFiles", flag: "--no-files" },
|
|
924
|
+
{ param: "hasDocs", flag: "--has-docs" },
|
|
925
|
+
{ param: "noDocs", flag: "--no-docs" },
|
|
926
|
+
{ param: "hasTests", flag: "--has-tests" },
|
|
927
|
+
{ param: "noTests", flag: "--no-tests" },
|
|
928
|
+
{ param: "hasComments", flag: "--has-comments" },
|
|
929
|
+
{ param: "noComments", flag: "--no-comments" },
|
|
930
|
+
{ param: "hasDeps", flag: "--has-deps" },
|
|
931
|
+
{ param: "noDeps", flag: "--no-deps" },
|
|
932
|
+
{ param: "hasBody", flag: "--has-body" },
|
|
933
|
+
{ param: "emptyBody", flag: "--empty-body" },
|
|
934
|
+
{ param: "hasLinkedCommand", flag: "--has-linked-command" },
|
|
935
|
+
{ param: "noLinkedCommand", flag: "--no-linked-command" },
|
|
862
936
|
{ param: "fields", flag: "--fields" },
|
|
863
937
|
{ param: "limit", flag: "--limit" }
|
|
864
938
|
];
|
|
@@ -996,6 +1070,29 @@ var TOOL_UPDATE_MANY_FILTER_OPTION_CONTRACTS = [
|
|
|
996
1070
|
{ param: "filterParent", flag: "--filter-parent" },
|
|
997
1071
|
{ param: "filterSprint", flag: "--filter-sprint" },
|
|
998
1072
|
{ param: "filterRelease", flag: "--filter-release" },
|
|
1073
|
+
{ param: "filterReviewerMissing", flag: "--filter-reviewer-missing" },
|
|
1074
|
+
{ param: "filterRiskMissing", flag: "--filter-risk-missing" },
|
|
1075
|
+
{ param: "filterConfidenceMissing", flag: "--filter-confidence-missing" },
|
|
1076
|
+
{ param: "filterSprintMissing", flag: "--filter-sprint-missing" },
|
|
1077
|
+
{ param: "filterReleaseMissing", flag: "--filter-release-missing" },
|
|
1078
|
+
{ param: "filterHasNotes", flag: "--filter-has-notes" },
|
|
1079
|
+
{ param: "filterNoNotes", flag: "--filter-no-notes" },
|
|
1080
|
+
{ param: "filterHasLearnings", flag: "--filter-has-learnings" },
|
|
1081
|
+
{ param: "filterNoLearnings", flag: "--filter-no-learnings" },
|
|
1082
|
+
{ param: "filterHasFiles", flag: "--filter-has-files" },
|
|
1083
|
+
{ param: "filterNoFiles", flag: "--filter-no-files" },
|
|
1084
|
+
{ param: "filterHasDocs", flag: "--filter-has-docs" },
|
|
1085
|
+
{ param: "filterNoDocs", flag: "--filter-no-docs" },
|
|
1086
|
+
{ param: "filterHasTests", flag: "--filter-has-tests" },
|
|
1087
|
+
{ param: "filterNoTests", flag: "--filter-no-tests" },
|
|
1088
|
+
{ param: "filterHasComments", flag: "--filter-has-comments" },
|
|
1089
|
+
{ param: "filterNoComments", flag: "--filter-no-comments" },
|
|
1090
|
+
{ param: "filterHasDeps", flag: "--filter-has-deps" },
|
|
1091
|
+
{ param: "filterNoDeps", flag: "--filter-no-deps" },
|
|
1092
|
+
{ param: "filterHasBody", flag: "--filter-has-body" },
|
|
1093
|
+
{ param: "filterEmptyBody", flag: "--filter-empty-body" },
|
|
1094
|
+
{ param: "filterHasLinkedCommand", flag: "--filter-has-linked-command" },
|
|
1095
|
+
{ param: "filterNoLinkedCommand", flag: "--filter-no-linked-command" },
|
|
999
1096
|
{ param: "ids", flag: "--ids" },
|
|
1000
1097
|
{ param: "limit", flag: "--limit" },
|
|
1001
1098
|
{ param: "offset", flag: "--offset" }
|
|
@@ -1031,6 +1128,29 @@ var TOOL_CLOSE_MANY_FILTER_OPTION_CONTRACTS = [
|
|
|
1031
1128
|
{ param: "filterParent", flag: "--filter-parent" },
|
|
1032
1129
|
{ param: "filterSprint", flag: "--filter-sprint" },
|
|
1033
1130
|
{ param: "filterRelease", flag: "--filter-release" },
|
|
1131
|
+
{ param: "filterReviewerMissing", flag: "--filter-reviewer-missing" },
|
|
1132
|
+
{ param: "filterRiskMissing", flag: "--filter-risk-missing" },
|
|
1133
|
+
{ param: "filterConfidenceMissing", flag: "--filter-confidence-missing" },
|
|
1134
|
+
{ param: "filterSprintMissing", flag: "--filter-sprint-missing" },
|
|
1135
|
+
{ param: "filterReleaseMissing", flag: "--filter-release-missing" },
|
|
1136
|
+
{ param: "filterHasNotes", flag: "--filter-has-notes" },
|
|
1137
|
+
{ param: "filterNoNotes", flag: "--filter-no-notes" },
|
|
1138
|
+
{ param: "filterHasLearnings", flag: "--filter-has-learnings" },
|
|
1139
|
+
{ param: "filterNoLearnings", flag: "--filter-no-learnings" },
|
|
1140
|
+
{ param: "filterHasFiles", flag: "--filter-has-files" },
|
|
1141
|
+
{ param: "filterNoFiles", flag: "--filter-no-files" },
|
|
1142
|
+
{ param: "filterHasDocs", flag: "--filter-has-docs" },
|
|
1143
|
+
{ param: "filterNoDocs", flag: "--filter-no-docs" },
|
|
1144
|
+
{ param: "filterHasTests", flag: "--filter-has-tests" },
|
|
1145
|
+
{ param: "filterNoTests", flag: "--filter-no-tests" },
|
|
1146
|
+
{ param: "filterHasComments", flag: "--filter-has-comments" },
|
|
1147
|
+
{ param: "filterNoComments", flag: "--filter-no-comments" },
|
|
1148
|
+
{ param: "filterHasDeps", flag: "--filter-has-deps" },
|
|
1149
|
+
{ param: "filterNoDeps", flag: "--filter-no-deps" },
|
|
1150
|
+
{ param: "filterHasBody", flag: "--filter-has-body" },
|
|
1151
|
+
{ param: "filterEmptyBody", flag: "--filter-empty-body" },
|
|
1152
|
+
{ param: "filterHasLinkedCommand", flag: "--filter-has-linked-command" },
|
|
1153
|
+
{ param: "filterNoLinkedCommand", flag: "--filter-no-linked-command" },
|
|
1034
1154
|
{ param: "ids", flag: "--ids" },
|
|
1035
1155
|
{ param: "limit", flag: "--limit" },
|
|
1036
1156
|
{ param: "offset", flag: "--offset" }
|
|
@@ -1056,6 +1176,7 @@ var TOOL_CONTEXT_OPTION_CONTRACTS = [
|
|
|
1056
1176
|
{ param: "assigneeFilter", flag: "--assignee-filter" },
|
|
1057
1177
|
{ param: "sprint", flag: "--sprint" },
|
|
1058
1178
|
{ param: "release", flag: "--release" },
|
|
1179
|
+
{ param: "parent", flag: "--parent" },
|
|
1059
1180
|
{ param: "limit", flag: "--limit" },
|
|
1060
1181
|
{ param: "format", flag: "--format" },
|
|
1061
1182
|
{ param: "depth", flag: "--depth" },
|
|
@@ -1195,6 +1316,7 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
|
|
|
1195
1316
|
titleExact: { type: "boolean" },
|
|
1196
1317
|
phraseExact: { type: "boolean" },
|
|
1197
1318
|
includeBody: { type: "boolean" },
|
|
1319
|
+
noTruncate: { type: "boolean" },
|
|
1198
1320
|
tag: { type: "string" },
|
|
1199
1321
|
deadlineBefore: { type: "string" },
|
|
1200
1322
|
deadlineAfter: { type: "string" },
|
|
@@ -1202,6 +1324,55 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
|
|
|
1202
1324
|
updatedBefore: { type: "string" },
|
|
1203
1325
|
createdAfter: { type: "string" },
|
|
1204
1326
|
createdBefore: { type: "string" },
|
|
1327
|
+
filterAcMissing: { type: "boolean" },
|
|
1328
|
+
filterEstimatesMissing: { type: "boolean" },
|
|
1329
|
+
filterResolutionMissing: { type: "boolean" },
|
|
1330
|
+
filterMetadataMissing: { type: "boolean" },
|
|
1331
|
+
filterReviewerMissing: { type: "boolean" },
|
|
1332
|
+
filterRiskMissing: { type: "boolean" },
|
|
1333
|
+
filterConfidenceMissing: { type: "boolean" },
|
|
1334
|
+
filterSprintMissing: { type: "boolean" },
|
|
1335
|
+
filterReleaseMissing: { type: "boolean" },
|
|
1336
|
+
// Content-field presence/absence filters (list/search). The --no-* variants
|
|
1337
|
+
// select items where the field is empty/absent.
|
|
1338
|
+
hasNotes: { type: "boolean" },
|
|
1339
|
+
noNotes: { type: "boolean" },
|
|
1340
|
+
hasLearnings: { type: "boolean" },
|
|
1341
|
+
noLearnings: { type: "boolean" },
|
|
1342
|
+
hasFiles: { type: "boolean" },
|
|
1343
|
+
noFiles: { type: "boolean" },
|
|
1344
|
+
hasDocs: { type: "boolean" },
|
|
1345
|
+
noDocs: { type: "boolean" },
|
|
1346
|
+
hasTests: { type: "boolean" },
|
|
1347
|
+
noTests: { type: "boolean" },
|
|
1348
|
+
hasComments: { type: "boolean" },
|
|
1349
|
+
noComments: { type: "boolean" },
|
|
1350
|
+
hasDeps: { type: "boolean" },
|
|
1351
|
+
noDeps: { type: "boolean" },
|
|
1352
|
+
hasBody: { type: "boolean" },
|
|
1353
|
+
emptyBody: { type: "boolean" },
|
|
1354
|
+
hasLinkedCommand: { type: "boolean" },
|
|
1355
|
+
noLinkedCommand: { type: "boolean" },
|
|
1356
|
+
// Bulk-selection (update-many/close-many) content + governance filters mirror
|
|
1357
|
+
// the list/search presence filters under the --filter- prefix.
|
|
1358
|
+
filterHasNotes: { type: "boolean" },
|
|
1359
|
+
filterNoNotes: { type: "boolean" },
|
|
1360
|
+
filterHasLearnings: { type: "boolean" },
|
|
1361
|
+
filterNoLearnings: { type: "boolean" },
|
|
1362
|
+
filterHasFiles: { type: "boolean" },
|
|
1363
|
+
filterNoFiles: { type: "boolean" },
|
|
1364
|
+
filterHasDocs: { type: "boolean" },
|
|
1365
|
+
filterNoDocs: { type: "boolean" },
|
|
1366
|
+
filterHasTests: { type: "boolean" },
|
|
1367
|
+
filterNoTests: { type: "boolean" },
|
|
1368
|
+
filterHasComments: { type: "boolean" },
|
|
1369
|
+
filterNoComments: { type: "boolean" },
|
|
1370
|
+
filterHasDeps: { type: "boolean" },
|
|
1371
|
+
filterNoDeps: { type: "boolean" },
|
|
1372
|
+
filterHasBody: { type: "boolean" },
|
|
1373
|
+
filterEmptyBody: { type: "boolean" },
|
|
1374
|
+
filterHasLinkedCommand: { type: "boolean" },
|
|
1375
|
+
filterNoLinkedCommand: { type: "boolean" },
|
|
1205
1376
|
ids: { type: "string" },
|
|
1206
1377
|
limit: { anyOf: [{ type: "string" }, { type: "number" }] },
|
|
1207
1378
|
limitItems: { anyOf: [{ type: "string" }, { type: "number" }] },
|
|
@@ -1238,6 +1409,12 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
|
|
|
1238
1409
|
autoPmContext: { type: "boolean" },
|
|
1239
1410
|
diff: { type: "boolean" },
|
|
1240
1411
|
storage: { type: "boolean" },
|
|
1412
|
+
metadataCoverage: { type: "boolean" },
|
|
1413
|
+
fieldUtilization: { type: "boolean" },
|
|
1414
|
+
byAssignee: { type: "boolean" },
|
|
1415
|
+
byTag: { type: "boolean" },
|
|
1416
|
+
byPriority: { type: "boolean" },
|
|
1417
|
+
tagPrefix: { type: "string" },
|
|
1241
1418
|
verify: { type: "boolean" },
|
|
1242
1419
|
literal: { type: "array", items: { type: "string" } },
|
|
1243
1420
|
regex: { type: "array", items: { type: "string" } },
|
|
@@ -1261,6 +1438,7 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
|
|
|
1261
1438
|
skipIntegrity: { type: "boolean" },
|
|
1262
1439
|
skipDrift: { type: "boolean" },
|
|
1263
1440
|
verboseDiagnostics: { type: "boolean" },
|
|
1441
|
+
allAffectedIds: { type: "boolean" },
|
|
1264
1442
|
scanMode: { type: "string", enum: ["default", "tracked-all", "tracked-all-strict"] },
|
|
1265
1443
|
includePmInternals: { type: "boolean" },
|
|
1266
1444
|
verboseFileLists: { type: "boolean" },
|
|
@@ -1268,18 +1446,21 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
|
|
|
1268
1446
|
failOnWarn: { type: "boolean" },
|
|
1269
1447
|
fixHints: { type: "boolean" },
|
|
1270
1448
|
autoFix: { type: "boolean" },
|
|
1271
|
-
fixScope: { type: "array", items: { type: "string", enum: ["metadata", "resolution", "lifecycle"] } },
|
|
1449
|
+
fixScope: { type: "array", items: { type: "string", enum: ["metadata", "resolution", "estimates", "lifecycle"] } },
|
|
1272
1450
|
pruneMissing: { type: "boolean" },
|
|
1273
1451
|
checkHistoryDrift: { type: "boolean" },
|
|
1274
1452
|
checkCommandReferences: { type: "boolean" },
|
|
1275
1453
|
allowAuditNote: { type: "boolean" },
|
|
1276
1454
|
allowAuditLearning: { type: "boolean" },
|
|
1277
1455
|
allowAuditComment: { type: "boolean" },
|
|
1456
|
+
edit: { type: "integer", minimum: 1 },
|
|
1457
|
+
delete: { type: "integer", minimum: 1 },
|
|
1278
1458
|
allowAuditUpdate: { type: "boolean" },
|
|
1279
1459
|
allowAuditDepUpdate: { type: "boolean" },
|
|
1280
1460
|
allowAuditRelease: { type: "boolean" },
|
|
1281
1461
|
dryRun: { type: "boolean" },
|
|
1282
1462
|
all: { type: "boolean" },
|
|
1463
|
+
clear: { type: "boolean" },
|
|
1283
1464
|
cliOnly: { type: "boolean" },
|
|
1284
1465
|
packagesOnly: { type: "boolean" },
|
|
1285
1466
|
repair: { type: "boolean" },
|
|
@@ -1357,7 +1538,7 @@ var PM_TOOL_PARAMETER_PROPERTIES = {
|
|
|
1357
1538
|
completion: { type: "boolean" },
|
|
1358
1539
|
threshold: { anyOf: [{ type: "string" }, { type: "number" }] },
|
|
1359
1540
|
format: { type: "string" },
|
|
1360
|
-
depth: { type: "string", enum: ["brief", "standard", "deep"] },
|
|
1541
|
+
depth: { type: "string", enum: ["brief", "standard", "deep", "full"] },
|
|
1361
1542
|
section: { type: "array", items: { type: "string", enum: ["hierarchy", "activity", "progress", "blockers", "files", "workload", "staleness", "tests"] } },
|
|
1362
1543
|
activityLimit: { anyOf: [{ type: "string" }, { type: "number" }] },
|
|
1363
1544
|
staleThreshold: { type: "string" },
|
|
@@ -1789,6 +1970,9 @@ var PM_TOOL_PARAMETER_METADATA = {
|
|
|
1789
1970
|
all: {
|
|
1790
1971
|
description: "For history-repair action: scan every stream for drift and repair each drifted stream in one audited pass (mutually exclusive with id)."
|
|
1791
1972
|
},
|
|
1973
|
+
clear: {
|
|
1974
|
+
description: "For focus action: clear the session focused item instead of setting it (mutually exclusive with id)."
|
|
1975
|
+
},
|
|
1792
1976
|
gcScope: {
|
|
1793
1977
|
description: "Repeatable gc scope selector values (index, embeddings, runtime, locks).",
|
|
1794
1978
|
examples: [["index", "embeddings"], ["runtime"], ["locks"]]
|
|
@@ -1796,6 +1980,9 @@ var PM_TOOL_PARAMETER_METADATA = {
|
|
|
1796
1980
|
storage: {
|
|
1797
1981
|
description: "For stats action: include aggregate history-stream storage metrics (total streams/lines/bytes, largest + deepest streams, oldest/newest entries) for compaction and storage planning."
|
|
1798
1982
|
},
|
|
1983
|
+
fieldUtilization: {
|
|
1984
|
+
description: "For stats action: include a field_utilization block reporting present/total/percent for content fields (notes, learnings, files, docs, tests, comments, deps, body, linked_command) across all items so under-documented dimensions are visible at a glance."
|
|
1985
|
+
},
|
|
1799
1986
|
offset: {
|
|
1800
1987
|
description: "Number of matching rows to skip before limit is applied.",
|
|
1801
1988
|
examples: [0, 50, "100"]
|
|
@@ -1907,8 +2094,8 @@ var PM_TOOL_PARAMETER_METADATA = {
|
|
|
1907
2094
|
description: "For validate action, apply the safe, deterministic subset of fix-hint remediations (field backfills) automatically; combine with dryRun to preview and fixScope to grant gated scopes."
|
|
1908
2095
|
},
|
|
1909
2096
|
fixScope: {
|
|
1910
|
-
description: "For validate action, grant --auto-fix scopes (metadata, resolution, lifecycle). Defaults to the safe scopes metadata and resolution; lifecycle must be named explicitly.",
|
|
1911
|
-
examples: [["lifecycle"], ["metadata", "resolution"]]
|
|
2097
|
+
description: "For validate action, grant --auto-fix scopes (metadata, resolution, estimates, lifecycle). Defaults to the safe scopes metadata and resolution; estimates (per-type default estimated_minutes backfill) and lifecycle must be named explicitly.",
|
|
2098
|
+
examples: [["estimates"], ["lifecycle"], ["metadata", "resolution"]]
|
|
1912
2099
|
},
|
|
1913
2100
|
pruneMissing: {
|
|
1914
2101
|
description: "For validate action, remove stale linked-file/doc LINKS whose paths classified as deleted (link removal only \u2014 never touches real files); honors dryRun."
|
|
@@ -1928,6 +2115,12 @@ var PM_TOOL_PARAMETER_METADATA = {
|
|
|
1928
2115
|
allowAuditComment: {
|
|
1929
2116
|
description: "For comments action, allow non-owner append-only comment audits without requiring --force."
|
|
1930
2117
|
},
|
|
2118
|
+
edit: {
|
|
2119
|
+
description: "For comments action, replace the comment at this 1-based index with the supplied replacement text (add/stdin/file)."
|
|
2120
|
+
},
|
|
2121
|
+
delete: {
|
|
2122
|
+
description: "For comments action, delete the comment at this 1-based index."
|
|
2123
|
+
},
|
|
1931
2124
|
stdin: {
|
|
1932
2125
|
description: "When true for comments action, read comment text from piped stdin (supports multiline markdown)."
|
|
1933
2126
|
},
|
|
@@ -1995,6 +2188,9 @@ var PM_TOOL_PARAMETER_METADATA = {
|
|
|
1995
2188
|
includeBody: {
|
|
1996
2189
|
description: "When true for list-family actions, include item body text in projected rows."
|
|
1997
2190
|
},
|
|
2191
|
+
noTruncate: {
|
|
2192
|
+
description: "When true for list-family actions, return every matched row, overriding any limit (surfaces total when rows were dropped)."
|
|
2193
|
+
},
|
|
1998
2194
|
compact: {
|
|
1999
2195
|
description: "Render compact projection output for search and list-family actions."
|
|
2000
2196
|
},
|
|
@@ -2079,8 +2275,8 @@ var PM_TOOL_PARAMETER_METADATA = {
|
|
|
2079
2275
|
description: "Alias for runtimeOnly in contracts action payloads."
|
|
2080
2276
|
},
|
|
2081
2277
|
depth: {
|
|
2082
|
-
description: "Context depth level controlling how many sections are included (brief=focus+agenda, standard=+hierarchy/activity/progress/workload, deep=all sections).",
|
|
2083
|
-
examples: ["brief", "standard", "deep"]
|
|
2278
|
+
description: "Context depth level controlling how many sections are included (brief=focus+agenda, standard=+hierarchy/activity/progress/workload, deep=all sections, full=every section with no per-section row cap).",
|
|
2279
|
+
examples: ["brief", "standard", "deep", "full"]
|
|
2084
2280
|
},
|
|
2085
2281
|
section: {
|
|
2086
2282
|
description: "Repeatable section selector for context; overrides --depth when provided.",
|
|
@@ -2126,7 +2322,10 @@ function withFlagAliasMetadata(flagContracts) {
|
|
|
2126
2322
|
if (contract.flag !== canonical) {
|
|
2127
2323
|
return contract;
|
|
2128
2324
|
}
|
|
2129
|
-
const aliases = normalizeUniqueStringList([
|
|
2325
|
+
const aliases = normalizeUniqueStringList([
|
|
2326
|
+
...contract.aliases ?? [],
|
|
2327
|
+
...aliasesByCanonical.get(canonical)
|
|
2328
|
+
]).filter((alias) => alias !== canonical);
|
|
2130
2329
|
if (aliases.length === 0) {
|
|
2131
2330
|
return contract;
|
|
2132
2331
|
}
|
|
@@ -2177,8 +2376,36 @@ var LIST_FILTER_FLAG_CONTRACTS = [
|
|
|
2177
2376
|
{ flag: "--parent" },
|
|
2178
2377
|
{ flag: "--sprint" },
|
|
2179
2378
|
{ flag: "--release" },
|
|
2379
|
+
{ flag: "--filter-ac-missing" },
|
|
2380
|
+
{ flag: "--filter-estimates-missing", aliases: ["--filter-estimate-missing"] },
|
|
2381
|
+
{ flag: "--filter-resolution-missing" },
|
|
2382
|
+
{ flag: "--filter-metadata-missing" },
|
|
2383
|
+
{ flag: "--filter-reviewer-missing" },
|
|
2384
|
+
{ flag: "--filter-risk-missing" },
|
|
2385
|
+
{ flag: "--filter-confidence-missing" },
|
|
2386
|
+
{ flag: "--filter-sprint-missing" },
|
|
2387
|
+
{ flag: "--filter-release-missing" },
|
|
2388
|
+
{ flag: "--has-notes" },
|
|
2389
|
+
{ flag: "--no-notes" },
|
|
2390
|
+
{ flag: "--has-learnings" },
|
|
2391
|
+
{ flag: "--no-learnings" },
|
|
2392
|
+
{ flag: "--has-files" },
|
|
2393
|
+
{ flag: "--no-files" },
|
|
2394
|
+
{ flag: "--has-docs" },
|
|
2395
|
+
{ flag: "--no-docs" },
|
|
2396
|
+
{ flag: "--has-tests" },
|
|
2397
|
+
{ flag: "--no-tests" },
|
|
2398
|
+
{ flag: "--has-comments" },
|
|
2399
|
+
{ flag: "--no-comments" },
|
|
2400
|
+
{ flag: "--has-deps" },
|
|
2401
|
+
{ flag: "--no-deps" },
|
|
2402
|
+
{ flag: "--has-body" },
|
|
2403
|
+
{ flag: "--empty-body" },
|
|
2404
|
+
{ flag: "--has-linked-command" },
|
|
2405
|
+
{ flag: "--no-linked-command" },
|
|
2180
2406
|
{ flag: "--limit" },
|
|
2181
2407
|
{ flag: "--offset" },
|
|
2408
|
+
{ flag: "--no-truncate", aliases: ["--all"] },
|
|
2182
2409
|
{ flag: "--compact" },
|
|
2183
2410
|
{ flag: "--brief" },
|
|
2184
2411
|
{ flag: "--full" },
|
|
@@ -2249,6 +2476,8 @@ var COMMENTS_FLAG_CONTRACTS = [
|
|
|
2249
2476
|
{ flag: "--add", aliases: ["--comment"] },
|
|
2250
2477
|
{ flag: "--stdin" },
|
|
2251
2478
|
{ flag: "--file" },
|
|
2479
|
+
{ flag: "--edit" },
|
|
2480
|
+
{ flag: "--delete" },
|
|
2252
2481
|
{ flag: "--limit" },
|
|
2253
2482
|
{ flag: "--author" },
|
|
2254
2483
|
{ flag: "--message" },
|
|
@@ -2558,6 +2787,29 @@ var CLOSE_MANY_FLAG_CONTRACTS = [
|
|
|
2558
2787
|
{ flag: "--filter-parent" },
|
|
2559
2788
|
{ flag: "--filter-sprint" },
|
|
2560
2789
|
{ flag: "--filter-release" },
|
|
2790
|
+
{ flag: "--filter-reviewer-missing" },
|
|
2791
|
+
{ flag: "--filter-risk-missing" },
|
|
2792
|
+
{ flag: "--filter-confidence-missing" },
|
|
2793
|
+
{ flag: "--filter-sprint-missing" },
|
|
2794
|
+
{ flag: "--filter-release-missing" },
|
|
2795
|
+
{ flag: "--filter-has-notes" },
|
|
2796
|
+
{ flag: "--filter-no-notes" },
|
|
2797
|
+
{ flag: "--filter-has-learnings" },
|
|
2798
|
+
{ flag: "--filter-no-learnings" },
|
|
2799
|
+
{ flag: "--filter-has-files" },
|
|
2800
|
+
{ flag: "--filter-no-files" },
|
|
2801
|
+
{ flag: "--filter-has-docs" },
|
|
2802
|
+
{ flag: "--filter-no-docs" },
|
|
2803
|
+
{ flag: "--filter-has-tests" },
|
|
2804
|
+
{ flag: "--filter-no-tests" },
|
|
2805
|
+
{ flag: "--filter-has-comments" },
|
|
2806
|
+
{ flag: "--filter-no-comments" },
|
|
2807
|
+
{ flag: "--filter-has-deps" },
|
|
2808
|
+
{ flag: "--filter-no-deps" },
|
|
2809
|
+
{ flag: "--filter-has-body" },
|
|
2810
|
+
{ flag: "--filter-empty-body" },
|
|
2811
|
+
{ flag: "--filter-has-linked-command" },
|
|
2812
|
+
{ flag: "--filter-no-linked-command" },
|
|
2561
2813
|
{ flag: "--ids", list: true },
|
|
2562
2814
|
{ flag: "--limit" },
|
|
2563
2815
|
{ flag: "--offset" },
|
|
@@ -2678,7 +2930,13 @@ var GC_FLAG_CONTRACTS = [
|
|
|
2678
2930
|
{ flag: "--scope" }
|
|
2679
2931
|
];
|
|
2680
2932
|
var STATS_FLAG_CONTRACTS = [
|
|
2681
|
-
{ flag: "--storage" }
|
|
2933
|
+
{ flag: "--storage" },
|
|
2934
|
+
{ flag: "--metadata-coverage" },
|
|
2935
|
+
{ flag: "--field-utilization" },
|
|
2936
|
+
{ flag: "--by-assignee" },
|
|
2937
|
+
{ flag: "--by-tag" },
|
|
2938
|
+
{ flag: "--by-priority" },
|
|
2939
|
+
{ flag: "--tag-prefix" }
|
|
2682
2940
|
];
|
|
2683
2941
|
var HEALTH_FLAG_CONTRACTS = [
|
|
2684
2942
|
{ flag: "--strict-directories" },
|
|
@@ -2708,6 +2966,7 @@ var VALIDATE_FLAG_CONTRACTS = [
|
|
|
2708
2966
|
{ flag: "--include-pm-internals" },
|
|
2709
2967
|
{ flag: "--verbose-file-lists" },
|
|
2710
2968
|
{ flag: "--verbose-diagnostics" },
|
|
2969
|
+
{ flag: "--all-affected-ids" },
|
|
2711
2970
|
{ flag: "--strict-exit" },
|
|
2712
2971
|
{ flag: "--fail-on-warn" },
|
|
2713
2972
|
{ flag: "--fix-hints" },
|
|
@@ -2739,6 +2998,7 @@ var CREATE_FLAG_CONTRACTS = [
|
|
|
2739
2998
|
// corrupting the JSON-array value form before parseTags sees it.
|
|
2740
2999
|
{ flag: "--add-tags", aliases: ["--add_tags"] },
|
|
2741
3000
|
{ short: "-b", flag: "--body" },
|
|
3001
|
+
{ flag: "--body-file" },
|
|
2742
3002
|
{ flag: "--deadline" },
|
|
2743
3003
|
{ flag: "--estimate" },
|
|
2744
3004
|
{ flag: "--estimated-minutes" },
|
|
@@ -2822,10 +3082,14 @@ var COPY_FLAG_CONTRACTS = [
|
|
|
2822
3082
|
{ flag: "--author" },
|
|
2823
3083
|
{ flag: "--message" }
|
|
2824
3084
|
];
|
|
3085
|
+
var FOCUS_FLAG_CONTRACTS = [
|
|
3086
|
+
{ flag: "--clear" }
|
|
3087
|
+
];
|
|
2825
3088
|
var UPDATE_FLAG_CONTRACTS = [
|
|
2826
3089
|
{ short: "-t", flag: "--title" },
|
|
2827
3090
|
{ short: "-d", flag: "--description" },
|
|
2828
3091
|
{ short: "-b", flag: "--body" },
|
|
3092
|
+
{ flag: "--body-file" },
|
|
2829
3093
|
{ short: "-s", flag: "--status" },
|
|
2830
3094
|
{ flag: "--close-reason" },
|
|
2831
3095
|
{ flag: "--close_reason" },
|
|
@@ -2940,6 +3204,33 @@ var UPDATE_MANY_FLAG_CONTRACTS = [
|
|
|
2940
3204
|
{ flag: "--filter-parent" },
|
|
2941
3205
|
{ flag: "--filter-sprint" },
|
|
2942
3206
|
{ flag: "--filter-release" },
|
|
3207
|
+
{ flag: "--filter-ac-missing" },
|
|
3208
|
+
{ flag: "--filter-estimates-missing", aliases: ["--filter-estimate-missing"] },
|
|
3209
|
+
{ flag: "--filter-resolution-missing" },
|
|
3210
|
+
{ flag: "--filter-metadata-missing" },
|
|
3211
|
+
{ flag: "--filter-reviewer-missing" },
|
|
3212
|
+
{ flag: "--filter-risk-missing" },
|
|
3213
|
+
{ flag: "--filter-confidence-missing" },
|
|
3214
|
+
{ flag: "--filter-sprint-missing" },
|
|
3215
|
+
{ flag: "--filter-release-missing" },
|
|
3216
|
+
{ flag: "--filter-has-notes" },
|
|
3217
|
+
{ flag: "--filter-no-notes" },
|
|
3218
|
+
{ flag: "--filter-has-learnings" },
|
|
3219
|
+
{ flag: "--filter-no-learnings" },
|
|
3220
|
+
{ flag: "--filter-has-files" },
|
|
3221
|
+
{ flag: "--filter-no-files" },
|
|
3222
|
+
{ flag: "--filter-has-docs" },
|
|
3223
|
+
{ flag: "--filter-no-docs" },
|
|
3224
|
+
{ flag: "--filter-has-tests" },
|
|
3225
|
+
{ flag: "--filter-no-tests" },
|
|
3226
|
+
{ flag: "--filter-has-comments" },
|
|
3227
|
+
{ flag: "--filter-no-comments" },
|
|
3228
|
+
{ flag: "--filter-has-deps" },
|
|
3229
|
+
{ flag: "--filter-no-deps" },
|
|
3230
|
+
{ flag: "--filter-has-body" },
|
|
3231
|
+
{ flag: "--filter-empty-body" },
|
|
3232
|
+
{ flag: "--filter-has-linked-command" },
|
|
3233
|
+
{ flag: "--filter-no-linked-command" },
|
|
2943
3234
|
{ flag: "--ids", list: true },
|
|
2944
3235
|
{ flag: "--limit" },
|
|
2945
3236
|
{ flag: "--offset" },
|
|
@@ -3105,6 +3396,7 @@ var CONTEXT_FLAG_CONTRACTS = [
|
|
|
3105
3396
|
{ flag: "--assignee_filter" },
|
|
3106
3397
|
{ flag: "--sprint" },
|
|
3107
3398
|
{ flag: "--release" },
|
|
3399
|
+
{ flag: "--parent" },
|
|
3108
3400
|
{ flag: "--limit" },
|
|
3109
3401
|
{ flag: "--format" },
|
|
3110
3402
|
{ flag: "--depth" },
|
|
@@ -3135,6 +3427,9 @@ var SEARCH_FLAG_CONTRACTS = [
|
|
|
3135
3427
|
{ flag: "--mode" },
|
|
3136
3428
|
{ flag: "--semantic" },
|
|
3137
3429
|
{ flag: "--hybrid" },
|
|
3430
|
+
{ flag: "--match-mode" },
|
|
3431
|
+
{ flag: "--min-score" },
|
|
3432
|
+
{ flag: "--count" },
|
|
3138
3433
|
{ flag: "--semantic-weight" },
|
|
3139
3434
|
{ flag: "--include-linked" },
|
|
3140
3435
|
{ flag: "--title-exact" },
|
|
@@ -3148,7 +3443,38 @@ var SEARCH_FLAG_CONTRACTS = [
|
|
|
3148
3443
|
{ flag: "--tag", aliases: ["--tags"] },
|
|
3149
3444
|
{ flag: "--priority" },
|
|
3150
3445
|
{ flag: "--deadline-before" },
|
|
3151
|
-
{ flag: "--deadline-after" }
|
|
3446
|
+
{ flag: "--deadline-after" },
|
|
3447
|
+
{ flag: "--updated-after" },
|
|
3448
|
+
{ flag: "--updated-before" },
|
|
3449
|
+
{ flag: "--created-after" },
|
|
3450
|
+
{ flag: "--created-before" },
|
|
3451
|
+
{ flag: "--assignee" },
|
|
3452
|
+
{ flag: "--sprint" },
|
|
3453
|
+
{ flag: "--release" },
|
|
3454
|
+
{ flag: "--parent" },
|
|
3455
|
+
{ flag: "--filter-reviewer-missing" },
|
|
3456
|
+
{ flag: "--filter-risk-missing" },
|
|
3457
|
+
{ flag: "--filter-confidence-missing" },
|
|
3458
|
+
{ flag: "--filter-sprint-missing" },
|
|
3459
|
+
{ flag: "--filter-release-missing" },
|
|
3460
|
+
{ flag: "--has-notes" },
|
|
3461
|
+
{ flag: "--no-notes" },
|
|
3462
|
+
{ flag: "--has-learnings" },
|
|
3463
|
+
{ flag: "--no-learnings" },
|
|
3464
|
+
{ flag: "--has-files" },
|
|
3465
|
+
{ flag: "--no-files" },
|
|
3466
|
+
{ flag: "--has-docs" },
|
|
3467
|
+
{ flag: "--no-docs" },
|
|
3468
|
+
{ flag: "--has-tests" },
|
|
3469
|
+
{ flag: "--no-tests" },
|
|
3470
|
+
{ flag: "--has-comments" },
|
|
3471
|
+
{ flag: "--no-comments" },
|
|
3472
|
+
{ flag: "--has-deps" },
|
|
3473
|
+
{ flag: "--no-deps" },
|
|
3474
|
+
{ flag: "--has-body" },
|
|
3475
|
+
{ flag: "--empty-body" },
|
|
3476
|
+
{ flag: "--has-linked-command" },
|
|
3477
|
+
{ flag: "--no-linked-command" }
|
|
3152
3478
|
];
|
|
3153
3479
|
var CONTRACTS_FLAG_CONTRACTS = [
|
|
3154
3480
|
{ flag: "--action" },
|
|
@@ -3271,6 +3597,8 @@ function resolveSubcommandFlagContractsForCommand(commandName) {
|
|
|
3271
3597
|
return withSubcommandGlobalFlags(CREATE_FLAG_CONTRACTS);
|
|
3272
3598
|
case "copy":
|
|
3273
3599
|
return withSubcommandGlobalFlags(COPY_FLAG_CONTRACTS);
|
|
3600
|
+
case "focus":
|
|
3601
|
+
return withSubcommandGlobalFlags(FOCUS_FLAG_CONTRACTS);
|
|
3274
3602
|
case "aggregate":
|
|
3275
3603
|
return withSubcommandGlobalFlags(AGGREGATE_FLAG_CONTRACTS);
|
|
3276
3604
|
case "calendar":
|
|
@@ -3425,6 +3753,7 @@ var ACTIVITY_CONTRACT_PARAMETER_KEYS = toSchemaKeyList([
|
|
|
3425
3753
|
var LIST_CONTRACT_PARAMETER_KEYS = toSchemaKeyList([
|
|
3426
3754
|
...TOOL_LIST_FILTER_OPTION_CONTRACTS.map((entry) => entry.param),
|
|
3427
3755
|
"includeBody",
|
|
3756
|
+
"noTruncate",
|
|
3428
3757
|
"compact",
|
|
3429
3758
|
"brief",
|
|
3430
3759
|
"full"
|
|
@@ -3552,6 +3881,7 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
|
|
|
3552
3881
|
optional: CREATE_CONTRACT_PARAMETER_KEYS
|
|
3553
3882
|
},
|
|
3554
3883
|
copy: { required: ["id"], optional: ["title", "author", "message"] },
|
|
3884
|
+
focus: { optional: ["id", "clear"], mutuallyExclusive: [["id", "clear"]] },
|
|
3555
3885
|
list: { optional: LIST_CONTRACT_PARAMETER_KEYS },
|
|
3556
3886
|
"list-all": { optional: LIST_CONTRACT_PARAMETER_KEYS },
|
|
3557
3887
|
"list-draft": { optional: LIST_CONTRACT_PARAMETER_KEYS },
|
|
@@ -3668,7 +3998,7 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
|
|
|
3668
3998
|
append: { required: ["id", "body"], optional: AUTHOR_MESSAGE_FORCE_PARAMETER_KEYS },
|
|
3669
3999
|
comments: {
|
|
3670
4000
|
required: ["id"],
|
|
3671
|
-
optional: ["text", "add", "stdin", "file", "limit", "allowAuditComment", ...AUTHOR_MESSAGE_FORCE_PARAMETER_KEYS]
|
|
4001
|
+
optional: ["text", "add", "stdin", "file", "edit", "delete", "limit", "allowAuditComment", ...AUTHOR_MESSAGE_FORCE_PARAMETER_KEYS]
|
|
3672
4002
|
},
|
|
3673
4003
|
"comments-audit": {
|
|
3674
4004
|
optional: [
|
|
@@ -3801,7 +4131,7 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
|
|
|
3801
4131
|
required: ["runId"],
|
|
3802
4132
|
optional: ["author"]
|
|
3803
4133
|
},
|
|
3804
|
-
stats: { optional: ["storage"] },
|
|
4134
|
+
stats: { optional: ["storage", "metadataCoverage", "fieldUtilization", "byAssignee", "byTag", "byPriority", "tagPrefix"] },
|
|
3805
4135
|
health: {
|
|
3806
4136
|
optional: [
|
|
3807
4137
|
"strictDirectories",
|
|
@@ -3832,6 +4162,7 @@ var PM_TOOL_ACTION_SCHEMA_CONTRACTS = {
|
|
|
3832
4162
|
"includePmInternals",
|
|
3833
4163
|
"verboseFileLists",
|
|
3834
4164
|
"verboseDiagnostics",
|
|
4165
|
+
"allAffectedIds",
|
|
3835
4166
|
"strictExit",
|
|
3836
4167
|
"failOnWarn",
|
|
3837
4168
|
"fixHints",
|
|
@@ -3891,7 +4222,7 @@ function buildActionScopedToolSchema(action) {
|
|
|
3891
4222
|
const required = toSchemaKeyList(contract.required ?? []);
|
|
3892
4223
|
const optional = toSchemaKeyList(contract.optional ?? []);
|
|
3893
4224
|
const mutationParameterKeys = PM_TOOL_ACTION_MUTATION_PARAMETER_KEYS[action] ?? [];
|
|
3894
|
-
const allowedKeys = toSchemaKeyList([...PM_TOOL_GLOBAL_PARAMETER_KEYS, ...mutationParameterKeys, ...required, ...optional]);
|
|
4225
|
+
const allowedKeys = toSchemaKeyList(["action", ...PM_TOOL_GLOBAL_PARAMETER_KEYS, ...mutationParameterKeys, ...required, ...optional]);
|
|
3895
4226
|
const properties = {
|
|
3896
4227
|
action: {
|
|
3897
4228
|
const: action,
|
|
@@ -3919,9 +4250,11 @@ function buildActionScopedToolSchema(action) {
|
|
|
3919
4250
|
required: [...requiredFields]
|
|
3920
4251
|
}));
|
|
3921
4252
|
}
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
|
|
4253
|
+
const oneOfRequiredGroups = contract.oneOfRequired;
|
|
4254
|
+
if (oneOfRequiredGroups && oneOfRequiredGroups.length > 0) {
|
|
4255
|
+
const allOneOfFields = oneOfRequiredGroups.flat();
|
|
4256
|
+
schema.oneOf = oneOfRequiredGroups.map((requiredFields) => {
|
|
4257
|
+
const otherFields = allOneOfFields.filter((field) => !requiredFields.includes(field));
|
|
3925
4258
|
return {
|
|
3926
4259
|
required: [...requiredFields],
|
|
3927
4260
|
...otherFields.length > 0 ? { not: { anyOf: otherFields.map((field) => ({ required: [field] })) } } : {},
|
|
@@ -3956,6 +4289,13 @@ function buildActionScopedToolSchema(action) {
|
|
|
3956
4289
|
}
|
|
3957
4290
|
schema.allOf = allOf;
|
|
3958
4291
|
}
|
|
4292
|
+
if (contract.mutuallyExclusive && contract.mutuallyExclusive.length > 0) {
|
|
4293
|
+
const allOf = Array.isArray(schema.allOf) ? [...schema.allOf] : [];
|
|
4294
|
+
for (const group of contract.mutuallyExclusive) {
|
|
4295
|
+
allOf.push({ not: { required: toSchemaKeyList(group) } });
|
|
4296
|
+
}
|
|
4297
|
+
schema.allOf = allOf;
|
|
4298
|
+
}
|
|
3959
4299
|
return schema;
|
|
3960
4300
|
}
|
|
3961
4301
|
function createLazyContractSchema(build) {
|
|
@@ -4123,6 +4463,6 @@ export {
|
|
|
4123
4463
|
resolveSubcommandFlagContractsForCommand,
|
|
4124
4464
|
PM_TOOL_PARAMETERS_SCHEMA
|
|
4125
4465
|
};
|
|
4126
|
-
//# sourceMappingURL=chunk-
|
|
4466
|
+
//# sourceMappingURL=chunk-3XOXWOGA.js.map
|
|
4127
4467
|
|
|
4128
|
-
//# debugId=
|
|
4468
|
+
//# debugId=1b0f36a6-c2cc-52b4-a53d-77cf523789fc
|