@autohq/cli 0.1.268 → 0.1.269

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.
@@ -23353,7 +23353,7 @@ Object.assign(lookup, {
23353
23353
  // package.json
23354
23354
  var package_default = {
23355
23355
  name: "@autohq/cli",
23356
- version: "0.1.268",
23356
+ version: "0.1.269",
23357
23357
  license: "SEE LICENSE IN README.md",
23358
23358
  publishConfig: {
23359
23359
  access: "public"
@@ -26265,6 +26265,13 @@ function triggerSharedFields(guard) {
26265
26265
  return {
26266
26266
  message: templateField(guard),
26267
26267
  checks: TriggerChecksField,
26268
+ // Catch-all flag: a `fallback` trigger fires only when no normal (non-
26269
+ // fallback) trigger on the same endpoint + eventKey matched its `where`.
26270
+ // It is the one cross-trigger negation the per-payload matcher cannot
26271
+ // express, so it must be an explicit flag rather than overloaded empty
26272
+ // `where` (which already means match-all). See the trigger-router partition
26273
+ // in packages/db/src/trigger-router/triggers.ts.
26274
+ fallback: external_exports.boolean().default(false),
26268
26275
  routing: TriggerRoutingSchema
26269
26276
  };
26270
26277
  }
package/dist/index.js CHANGED
@@ -17801,6 +17801,13 @@ function triggerSharedFields(guard) {
17801
17801
  return {
17802
17802
  message: templateField(guard),
17803
17803
  checks: TriggerChecksField,
17804
+ // Catch-all flag: a `fallback` trigger fires only when no normal (non-
17805
+ // fallback) trigger on the same endpoint + eventKey matched its `where`.
17806
+ // It is the one cross-trigger negation the per-payload matcher cannot
17807
+ // express, so it must be an explicit flag rather than overloaded empty
17808
+ // `where` (which already means match-all). See the trigger-router partition
17809
+ // in packages/db/src/trigger-router/triggers.ts.
17810
+ fallback: external_exports.boolean().default(false),
17804
17811
  routing: TriggerRoutingSchema
17805
17812
  };
17806
17813
  }
@@ -22919,7 +22926,7 @@ var init_package = __esm({
22919
22926
  "package.json"() {
22920
22927
  package_default = {
22921
22928
  name: "@autohq/cli",
22922
- version: "0.1.268",
22929
+ version: "0.1.269",
22923
22930
  license: "SEE LICENSE IN README.md",
22924
22931
  publishConfig: {
22925
22932
  access: "public"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autohq/cli",
3
- "version": "0.1.268",
3
+ "version": "0.1.269",
4
4
  "license": "SEE LICENSE IN README.md",
5
5
  "publishConfig": {
6
6
  "access": "public"