serverless-plugin-module-registry 1.0.12-alpha.1 → 1.0.12-alpha.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.
package/dist/index.d.ts CHANGED
@@ -458,6 +458,18 @@ declare class ServerlessModuleRegistryPlugin {
458
458
  * Runs BEFORE main deployment to ensure table exists
459
459
  */
460
460
  private deployInternalInfrastructure;
461
+ /**
462
+ * Standalone command handler: deploy module registry infrastructure
463
+ * Bypasses the `enabled: false` check — deploys the DynamoDB table, EventBridge bus, SQS, and Lambda processors.
464
+ * Usage: `npx serverless@4 registryDeployInfra --stage dev --region sa-east-1`
465
+ */
466
+ private registryDeployInfraHandler;
467
+ /**
468
+ * Standalone command handler: validate/package module registry infrastructure
469
+ * Validates configuration and checks that internal-infrastructure directory exists.
470
+ * Usage: `npx serverless@4 registryPackageInfra --stage dev --region sa-east-1`
471
+ */
472
+ private registryPackageInfraHandler;
461
473
  /**
462
474
  * Handler for the registryGenerate command
463
475
  */