@biffo/cli 0.282.0 → 0.283.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 +7 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -7744,6 +7744,10 @@ var UserIngressSchema = z7.object({
7744
7744
  required_group: z7.string().min(1, NON_EMPTY_GROUP),
7745
7745
  app: z7.string().regex(APP_REF, "must be an ASGI app reference '<module>:<attr>', e.g. 'ideation.app:app'")
7746
7746
  }).strict();
7747
+ var AdminIngressSchema = z7.object({
7748
+ required_group: z7.string().min(1, NON_EMPTY_GROUP),
7749
+ app: z7.string().regex(APP_REF, "must be an ASGI app reference '<module>:<attr>', e.g. 'ideation.admin:app'")
7750
+ }).strict();
7747
7751
  var UserFrontendSchema = z7.object({
7748
7752
  dir: z7.string().regex(
7749
7753
  REL_DIR,
@@ -7788,9 +7792,10 @@ var PluginManifestSchema = z7.object({
7788
7792
  // schema is the registry's, and this consumer only needs to count them.
7789
7793
  event_subscriptions: z7.array(z7.object({ source: z7.string(), detail_type: z7.string() }).passthrough()).default([]),
7790
7794
  required_core_version: z7.string().default(">=0.0.0"),
7791
- // ADR-0018 user-facing surfaces. Optional: a plugin without them is an
7792
- // ordinary (data/event/CRUD) plugin.
7795
+ // ADR-0018/0021 user-facing and admin-facing surfaces. Optional: a plugin
7796
+ // without them is an ordinary (data/event/CRUD) plugin.
7793
7797
  user_ingress: UserIngressSchema.optional(),
7798
+ admin_ingress: AdminIngressSchema.optional(),
7794
7799
  user_frontend: UserFrontendSchema.optional(),
7795
7800
  // Tools the plugin's runtime exposes to an agentic worker (ADR-0014 §7,
7796
7801
  // #569). Default empty — an ordinary plugin declares none. Parsing this
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@biffo/cli",
3
- "version": "0.282.0",
3
+ "version": "0.283.0",
4
4
  "description": "Biffo project scaffolding CLI",
5
5
  "license": "MIT",
6
6
  "type": "module",