@suluk/cockpit 0.1.6 → 0.1.7
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/package.json +1 -1
- package/src/index.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@suluk/cockpit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
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
|
@@ -22,6 +22,7 @@ export {
|
|
|
22
22
|
ECOMMERCE, CRM, BILLING, FIRST_PARTY_REGISTRY,
|
|
23
23
|
PROVIDER_CATALOG, providerFacets, readProviders, swapProvider,
|
|
24
24
|
parseRegistry, validateModule,
|
|
25
|
+
signRegistry, verifyRegistrySignature, generateSigningKeypair, isSignedEnvelope,
|
|
25
26
|
type SulukModule, type InstallResult, type ModuleEntry, type ModuleRegistry, type ModuleGrade, type InstallPreview,
|
|
26
|
-
type ProviderImpl, type ProviderBinding, type RegistrySource, type ParsedRegistry,
|
|
27
|
+
type ProviderImpl, type ProviderBinding, type RegistrySource, type ParsedRegistry, type SignedEnvelope,
|
|
27
28
|
} from "@suluk/builder";
|