@suluk/cockpit 0.1.2 → 0.1.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +5 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@suluk/cockpit",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "The pure cockpit core (cycle model · builder model · codegen · deploy planning · validate/audit/preview) shared by the vscode extension and the /superadmin web admin panel. CANDIDATE tooling.",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
package/src/index.ts CHANGED
@@ -15,4 +15,8 @@ export { diffContracts, canonical, type ContractDiff, type ChangedOp, type OpRef
15
15
  // cost formatting, re-exported so the extension shell can render a live /cost ledger without a direct @suluk/cost dep.
16
16
  export { formatMicroUsd, summarize, type CostSummary } from "@suluk/cost";
17
17
  // modules (C021): install a contract fragment into the hub doc — the cockpit then re-projects it for free.
18
- export { installModule, namespaceModule, ECOMMERCE, type SulukModule, type InstallResult } from "@suluk/builder";
18
+ export {
19
+ installModule, namespaceModule, previewInstall, gradeModule,
20
+ ECOMMERCE, CRM, BILLING, FIRST_PARTY_REGISTRY,
21
+ type SulukModule, type InstallResult, type ModuleEntry, type ModuleRegistry, type ModuleGrade, type InstallPreview,
22
+ } from "@suluk/builder";