@biffo/cli 0.96.0 → 0.98.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.
Files changed (2) hide show
  1. package/dist/index.js +9 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1998,6 +1998,15 @@ function standardArguments(pluginName, handler) {
1998
1998
  ["event_bus_name", "module.events.event_bus_name"],
1999
1999
  ["core_api_url", "module.api_gateway.api_endpoint"],
2000
2000
  ["core_api_execution_arn", "module.api_gateway.execution_arn"],
2001
+ // User-facing plugin inputs (ADR-0018 §1): the shared-Cognito coordinates its
2002
+ // Lambda verifies the founder's JWT against, and the CloudFront distribution
2003
+ // ARN its frontend bucket policy grants read to. Emitted ONLY for a plugin whose
2004
+ // module declares them (declaredVariables gate), so an event-only plugin is
2005
+ // unaffected — same graceful-degradation contract as core_api_execution_arn.
2006
+ ["cognito_user_pool_id", "module.auth.user_pool_id"],
2007
+ ["cognito_client_id", "module.auth.client_id"],
2008
+ ["cognito_region", "var.aws_region"],
2009
+ ["cdn_distribution_arn", "module.cdn.distribution_arn"],
2001
2010
  ["tags", "local.tags"]
2002
2011
  ];
2003
2012
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@biffo/cli",
3
- "version": "0.96.0",
3
+ "version": "0.98.0",
4
4
  "description": "Biffo project scaffolding CLI",
5
5
  "license": "MIT",
6
6
  "type": "module",