evo360-types 1.3.368 → 1.3.369
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.
|
@@ -97,6 +97,7 @@ exports.zHubiaRuleOutcomeSchema = zod_1.z.enum(["stop", "to_llm", "to_llm_with_c
|
|
|
97
97
|
exports.zHubiaRuleAppliesToSchema = zod_1.z.enum(["real_message", "kickoff", "any"]);
|
|
98
98
|
exports.zHubiaConditionOpSchema = zod_1.z.enum([
|
|
99
99
|
"exists", "not_exists",
|
|
100
|
+
"is_empty", "is_not_empty",
|
|
100
101
|
"eq", "neq",
|
|
101
102
|
"in", "not_in",
|
|
102
103
|
"contains", "not_contains",
|
|
@@ -116,6 +116,7 @@ export const zHubiaRuleAppliesToSchema = z.enum(["real_message", "kickoff", "any
|
|
|
116
116
|
|
|
117
117
|
export const zHubiaConditionOpSchema = z.enum([
|
|
118
118
|
"exists", "not_exists",
|
|
119
|
+
"is_empty", "is_not_empty",
|
|
119
120
|
"eq", "neq",
|
|
120
121
|
"in", "not_in",
|
|
121
122
|
"contains", "not_contains",
|
|
@@ -15,7 +15,7 @@ export type IHubiaRuleOutcome = "stop" | "to_llm" | "to_llm_with_context";
|
|
|
15
15
|
* a mensagem de kickoff do sistema — proteção contra loop de transferência. */
|
|
16
16
|
export type IHubiaRuleAppliesTo = "real_message" | "kickoff" | "any";
|
|
17
17
|
/** Operadores suportados pelas condições. */
|
|
18
|
-
export type IHubiaConditionOp = "exists" | "not_exists" | "eq" | "neq" | "in" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
|
|
18
|
+
export type IHubiaConditionOp = "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "in" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
|
|
19
19
|
/** Master switch do binding. `dry_run` força TODAS as regras do binding a
|
|
20
20
|
* modo seco (kill switch). Default runtime quando ausente: `live`. */
|
|
21
21
|
export type IHubiaRulesMode = "live" | "dry_run";
|