dsh-tender-workbench 0.2.2-beta.1 → 0.3.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/lib/client.js +15257 -15039
- package/lib/client.js.map +1 -1
- package/lib/index.js +4120 -1303
- package/lib/types/client/index.d.ts +1 -1
- package/lib/types/client/index.d.ts.map +1 -1
- package/lib/types/client/intents/query-intent.d.ts +4 -6
- package/lib/types/client/intents/query-intent.d.ts.map +1 -1
- package/lib/types/client/intents/screening-intent.d.ts +2282 -165
- package/lib/types/client/intents/screening-intent.d.ts.map +1 -1
- package/lib/types/client/intents/send-session-intent.d.ts +3 -5
- package/lib/types/client/intents/send-session-intent.d.ts.map +1 -1
- package/lib/types/client/locales.d.ts +1 -1
- package/lib/types/client/qcc-request.d.ts +3 -3
- package/lib/types/client/qcc-request.d.ts.map +1 -1
- package/lib/types/client/skill-catalog.d.ts +38 -0
- package/lib/types/client/skill-catalog.d.ts.map +1 -0
- package/lib/types/client/tender-projection-port.d.ts +2 -2
- package/lib/types/client/workbench/TenderAnalysisReviewViews.d.ts +7 -7
- package/lib/types/client/workbench/TenderAnalysisReviewViews.d.ts.map +1 -1
- package/lib/types/client/workbench/TenderDataViews.d.ts +2 -2
- package/lib/types/client/workbench/TenderQueryWorkspace.d.ts +3 -3
- package/lib/types/client/workbench/TenderQueryWorkspace.d.ts.map +1 -1
- package/lib/types/client/workbench/TenderReportView.d.ts +2 -2
- package/lib/types/client/workbench/TenderScreeningViews.d.ts +3 -3
- package/lib/types/client/workbench/TenderWorkbench.d.ts +5 -5
- package/lib/types/client/workbench/TenderWorkbench.d.ts.map +1 -1
- package/lib/types/client/workbench/navigation-controller.d.ts +2 -2
- package/lib/types/client/workbench/session-write-flight.d.ts +9 -13
- package/lib/types/client/workbench/session-write-flight.d.ts.map +1 -1
- package/lib/types/client/workbench/workbench-status.d.ts +3 -3
- package/lib/types/client/workbench/workbench-status.d.ts.map +1 -1
- package/lib/types/contracts/analysis-review.d.ts +26 -189
- package/lib/types/contracts/analysis-review.d.ts.map +1 -1
- package/lib/types/contracts/intents.d.ts +348 -0
- package/lib/types/contracts/intents.d.ts.map +1 -0
- package/lib/types/contracts/orchestration.d.ts +186 -0
- package/lib/types/contracts/orchestration.d.ts.map +1 -0
- package/lib/types/contracts/query-schema.d.ts +3 -45
- package/lib/types/contracts/query-schema.d.ts.map +1 -1
- package/lib/types/contracts/reporting.d.ts +3 -168
- package/lib/types/contracts/reporting.d.ts.map +1 -1
- package/lib/types/contracts/screening.d.ts +3 -73
- package/lib/types/contracts/screening.d.ts.map +1 -1
- package/lib/types/contracts/tool-inputs.d.ts +713 -0
- package/lib/types/contracts/tool-inputs.d.ts.map +1 -0
- package/lib/types/contracts/tool-results.d.ts +107 -0
- package/lib/types/contracts/tool-results.d.ts.map +1 -0
- package/lib/types/contracts/workflow.d.ts +354 -55
- package/lib/types/contracts/workflow.d.ts.map +1 -1
- package/lib/types/host/artifacts/artifact-route.d.ts.map +1 -1
- package/lib/types/host/artifacts/intent-receipts.d.ts +54 -0
- package/lib/types/host/artifacts/intent-receipts.d.ts.map +1 -0
- package/lib/types/host/artifacts/store.d.ts +12 -12
- package/lib/types/host/artifacts/store.d.ts.map +1 -1
- package/lib/types/host/intent-fingerprint.d.ts +7 -0
- package/lib/types/host/intent-fingerprint.d.ts.map +1 -0
- package/lib/types/host/pipeline/screening-context.d.ts +2 -2
- package/lib/types/host/pipeline/screening-context.d.ts.map +1 -1
- package/lib/types/host/projection.d.ts +3 -3
- package/lib/types/host/projection.d.ts.map +1 -1
- package/lib/types/host/reporting/report-dataset.d.ts.map +1 -1
- package/lib/types/host/skills/action-skills.d.ts +8 -0
- package/lib/types/host/skills/action-skills.d.ts.map +1 -0
- package/lib/types/host/skills/global-invariants.d.ts +3 -0
- package/lib/types/host/skills/global-invariants.d.ts.map +1 -0
- package/lib/types/host/skills/index.d.ts +4 -0
- package/lib/types/host/skills/index.d.ts.map +1 -0
- package/lib/types/host/skills/workflow-skill.d.ts +3 -0
- package/lib/types/host/skills/workflow-skill.d.ts.map +1 -0
- package/lib/types/host/tool-contract.d.ts +90 -0
- package/lib/types/host/tool-contract.d.ts.map +1 -0
- package/lib/types/host/tools/analysis-review-tools.d.ts +988 -37
- package/lib/types/host/tools/analysis-review-tools.d.ts.map +1 -1
- package/lib/types/host/tools/query-tool.d.ts +113 -18
- package/lib/types/host/tools/query-tool.d.ts.map +1 -1
- package/lib/types/host/tools/report-tools.d.ts +848 -23
- package/lib/types/host/tools/report-tools.d.ts.map +1 -1
- package/lib/types/host/tools/rule-tools.d.ts +805 -17
- package/lib/types/host/tools/rule-tools.d.ts.map +1 -1
- package/lib/types/host/tools/screening-context-tool.d.ts +14 -4
- package/lib/types/host/tools/screening-context-tool.d.ts.map +1 -1
- package/lib/types/host/tools/workflow-state-tool.d.ts +155 -0
- package/lib/types/host/tools/workflow-state-tool.d.ts.map +1 -0
- package/lib/types/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/lib/types/contracts/screening-intents.d.ts +0 -303
- package/lib/types/contracts/screening-intents.d.ts.map +0 -1
- package/lib/types/host/artifacts/command-receipts.d.ts +0 -47
- package/lib/types/host/artifacts/command-receipts.d.ts.map +0 -1
- package/lib/types/host/skill.d.ts +0 -6
- package/lib/types/host/skill.d.ts.map +0 -1
package/README.md
CHANGED
|
@@ -68,7 +68,7 @@ To install the current exact preview version:
|
|
|
68
68
|
```sh
|
|
69
69
|
dsh plugin --profile web add 'dsh-mcp-connector@>=0.2.31'
|
|
70
70
|
dsh plugin --profile web add 'dsh-better-sidebar@>=0.17.1'
|
|
71
|
-
dsh plugin --profile web add dsh-tender-workbench@0.2.2-beta.
|
|
71
|
+
dsh plugin --profile web add dsh-tender-workbench@0.2.2-beta.1
|
|
72
72
|
```
|
|
73
73
|
|
|
74
74
|
To install from an independent checkout, install the required Provider plugins first, then run from this repository:
|
|
@@ -87,7 +87,7 @@ To install a packed build:
|
|
|
87
87
|
```sh
|
|
88
88
|
dsh plugin --profile web add 'dsh-mcp-connector@>=0.2.31'
|
|
89
89
|
dsh plugin --profile web add 'dsh-better-sidebar@>=0.17.1'
|
|
90
|
-
dsh plugin --profile web add ./dsh-tender-workbench-0.2.2-beta.
|
|
90
|
+
dsh plugin --profile web add ./dsh-tender-workbench-0.2.2-beta.1.tgz
|
|
91
91
|
dsh web --no-open
|
|
92
92
|
```
|
|
93
93
|
|