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.
@@ -474,21 +474,21 @@ export declare const zHubiaRulePhaseSchema: z.ZodEnum<["pre_llm", "post_llm"]>;
474
474
  export declare const zHubiaRuleTriggerSchema: z.ZodEnum<["inbound_message", "llm_completed"]>;
475
475
  export declare const zHubiaRuleOutcomeSchema: z.ZodEnum<["stop", "to_llm", "to_llm_with_context"]>;
476
476
  export declare const zHubiaRuleAppliesToSchema: z.ZodEnum<["real_message", "kickoff", "any"]>;
477
- export declare const zHubiaConditionOpSchema: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
477
+ export declare const zHubiaConditionOpSchema: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
478
478
  /** Uma condição: avalia `op(fact, value)` contra o facts provider do runtime.
479
479
  * `value` é ausente para `exists`/`not_exists`. */
480
480
  export declare const zHubiaConditionSchema: z.ZodObject<{
481
481
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
482
482
  fact: z.ZodString;
483
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
483
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
484
484
  value: z.ZodOptional<z.ZodUnknown>;
485
485
  }, "strip", z.ZodTypeAny, {
486
486
  fact: string;
487
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
487
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
488
488
  value?: unknown;
489
489
  }, {
490
490
  fact: string;
491
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
491
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
492
492
  value?: unknown;
493
493
  }>;
494
494
  /** Grupo de condições. Nível 2: um nível de AND/OR, sem aninhamento profundo
@@ -497,73 +497,73 @@ export declare const zHubiaConditionGroupSchema: z.ZodEffects<z.ZodObject<{
497
497
  all: z.ZodOptional<z.ZodArray<z.ZodObject<{
498
498
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
499
499
  fact: z.ZodString;
500
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
500
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
501
501
  value: z.ZodOptional<z.ZodUnknown>;
502
502
  }, "strip", z.ZodTypeAny, {
503
503
  fact: string;
504
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
504
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
505
505
  value?: unknown;
506
506
  }, {
507
507
  fact: string;
508
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
508
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
509
509
  value?: unknown;
510
510
  }>, "many">>;
511
511
  any: z.ZodOptional<z.ZodArray<z.ZodObject<{
512
512
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
513
513
  fact: z.ZodString;
514
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
514
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
515
515
  value: z.ZodOptional<z.ZodUnknown>;
516
516
  }, "strip", z.ZodTypeAny, {
517
517
  fact: string;
518
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
518
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
519
519
  value?: unknown;
520
520
  }, {
521
521
  fact: string;
522
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
522
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
523
523
  value?: unknown;
524
524
  }>, "many">>;
525
525
  }, "strip", z.ZodTypeAny, {
526
526
  all?: {
527
527
  fact: string;
528
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
528
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
529
529
  value?: unknown;
530
530
  }[] | undefined;
531
531
  any?: {
532
532
  fact: string;
533
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
533
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
534
534
  value?: unknown;
535
535
  }[] | undefined;
536
536
  }, {
537
537
  all?: {
538
538
  fact: string;
539
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
539
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
540
540
  value?: unknown;
541
541
  }[] | undefined;
542
542
  any?: {
543
543
  fact: string;
544
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
544
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
545
545
  value?: unknown;
546
546
  }[] | undefined;
547
547
  }>, {
548
548
  all?: {
549
549
  fact: string;
550
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
550
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
551
551
  value?: unknown;
552
552
  }[] | undefined;
553
553
  any?: {
554
554
  fact: string;
555
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
555
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
556
556
  value?: unknown;
557
557
  }[] | undefined;
558
558
  }, {
559
559
  all?: {
560
560
  fact: string;
561
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
561
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
562
562
  value?: unknown;
563
563
  }[] | undefined;
564
564
  any?: {
565
565
  fact: string;
566
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
566
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
567
567
  value?: unknown;
568
568
  }[] | undefined;
569
569
  }>;
@@ -623,73 +623,73 @@ export declare const zHubiaRuleSchema: z.ZodObject<{
623
623
  all: z.ZodOptional<z.ZodArray<z.ZodObject<{
624
624
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
625
625
  fact: z.ZodString;
626
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
626
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
627
627
  value: z.ZodOptional<z.ZodUnknown>;
628
628
  }, "strip", z.ZodTypeAny, {
629
629
  fact: string;
630
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
630
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
631
631
  value?: unknown;
632
632
  }, {
633
633
  fact: string;
634
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
634
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
635
635
  value?: unknown;
636
636
  }>, "many">>;
637
637
  any: z.ZodOptional<z.ZodArray<z.ZodObject<{
638
638
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
639
639
  fact: z.ZodString;
640
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
640
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
641
641
  value: z.ZodOptional<z.ZodUnknown>;
642
642
  }, "strip", z.ZodTypeAny, {
643
643
  fact: string;
644
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
644
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
645
645
  value?: unknown;
646
646
  }, {
647
647
  fact: string;
648
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
648
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
649
649
  value?: unknown;
650
650
  }>, "many">>;
651
651
  }, "strip", z.ZodTypeAny, {
652
652
  all?: {
653
653
  fact: string;
654
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
654
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
655
655
  value?: unknown;
656
656
  }[] | undefined;
657
657
  any?: {
658
658
  fact: string;
659
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
659
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
660
660
  value?: unknown;
661
661
  }[] | undefined;
662
662
  }, {
663
663
  all?: {
664
664
  fact: string;
665
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
665
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
666
666
  value?: unknown;
667
667
  }[] | undefined;
668
668
  any?: {
669
669
  fact: string;
670
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
670
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
671
671
  value?: unknown;
672
672
  }[] | undefined;
673
673
  }>, {
674
674
  all?: {
675
675
  fact: string;
676
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
676
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
677
677
  value?: unknown;
678
678
  }[] | undefined;
679
679
  any?: {
680
680
  fact: string;
681
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
681
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
682
682
  value?: unknown;
683
683
  }[] | undefined;
684
684
  }, {
685
685
  all?: {
686
686
  fact: string;
687
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
687
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
688
688
  value?: unknown;
689
689
  }[] | undefined;
690
690
  any?: {
691
691
  fact: string;
692
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
692
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
693
693
  value?: unknown;
694
694
  }[] | undefined;
695
695
  }>;
@@ -737,73 +737,73 @@ export declare const zHubiaRuleSchema: z.ZodObject<{
737
737
  all: z.ZodOptional<z.ZodArray<z.ZodObject<{
738
738
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
739
739
  fact: z.ZodString;
740
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
740
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
741
741
  value: z.ZodOptional<z.ZodUnknown>;
742
742
  }, "strip", z.ZodTypeAny, {
743
743
  fact: string;
744
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
744
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
745
745
  value?: unknown;
746
746
  }, {
747
747
  fact: string;
748
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
748
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
749
749
  value?: unknown;
750
750
  }>, "many">>;
751
751
  any: z.ZodOptional<z.ZodArray<z.ZodObject<{
752
752
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
753
753
  fact: z.ZodString;
754
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
754
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
755
755
  value: z.ZodOptional<z.ZodUnknown>;
756
756
  }, "strip", z.ZodTypeAny, {
757
757
  fact: string;
758
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
758
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
759
759
  value?: unknown;
760
760
  }, {
761
761
  fact: string;
762
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
762
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
763
763
  value?: unknown;
764
764
  }>, "many">>;
765
765
  }, "strip", z.ZodTypeAny, {
766
766
  all?: {
767
767
  fact: string;
768
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
768
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
769
769
  value?: unknown;
770
770
  }[] | undefined;
771
771
  any?: {
772
772
  fact: string;
773
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
773
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
774
774
  value?: unknown;
775
775
  }[] | undefined;
776
776
  }, {
777
777
  all?: {
778
778
  fact: string;
779
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
779
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
780
780
  value?: unknown;
781
781
  }[] | undefined;
782
782
  any?: {
783
783
  fact: string;
784
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
784
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
785
785
  value?: unknown;
786
786
  }[] | undefined;
787
787
  }>, {
788
788
  all?: {
789
789
  fact: string;
790
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
790
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
791
791
  value?: unknown;
792
792
  }[] | undefined;
793
793
  any?: {
794
794
  fact: string;
795
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
795
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
796
796
  value?: unknown;
797
797
  }[] | undefined;
798
798
  }, {
799
799
  all?: {
800
800
  fact: string;
801
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
801
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
802
802
  value?: unknown;
803
803
  }[] | undefined;
804
804
  any?: {
805
805
  fact: string;
806
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
806
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
807
807
  value?: unknown;
808
808
  }[] | undefined;
809
809
  }>;
@@ -851,73 +851,73 @@ export declare const zHubiaRuleSchema: z.ZodObject<{
851
851
  all: z.ZodOptional<z.ZodArray<z.ZodObject<{
852
852
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
853
853
  fact: z.ZodString;
854
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
854
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
855
855
  value: z.ZodOptional<z.ZodUnknown>;
856
856
  }, "strip", z.ZodTypeAny, {
857
857
  fact: string;
858
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
858
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
859
859
  value?: unknown;
860
860
  }, {
861
861
  fact: string;
862
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
862
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
863
863
  value?: unknown;
864
864
  }>, "many">>;
865
865
  any: z.ZodOptional<z.ZodArray<z.ZodObject<{
866
866
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
867
867
  fact: z.ZodString;
868
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
868
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
869
869
  value: z.ZodOptional<z.ZodUnknown>;
870
870
  }, "strip", z.ZodTypeAny, {
871
871
  fact: string;
872
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
872
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
873
873
  value?: unknown;
874
874
  }, {
875
875
  fact: string;
876
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
876
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
877
877
  value?: unknown;
878
878
  }>, "many">>;
879
879
  }, "strip", z.ZodTypeAny, {
880
880
  all?: {
881
881
  fact: string;
882
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
882
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
883
883
  value?: unknown;
884
884
  }[] | undefined;
885
885
  any?: {
886
886
  fact: string;
887
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
887
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
888
888
  value?: unknown;
889
889
  }[] | undefined;
890
890
  }, {
891
891
  all?: {
892
892
  fact: string;
893
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
893
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
894
894
  value?: unknown;
895
895
  }[] | undefined;
896
896
  any?: {
897
897
  fact: string;
898
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
898
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
899
899
  value?: unknown;
900
900
  }[] | undefined;
901
901
  }>, {
902
902
  all?: {
903
903
  fact: string;
904
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
904
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
905
905
  value?: unknown;
906
906
  }[] | undefined;
907
907
  any?: {
908
908
  fact: string;
909
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
909
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
910
910
  value?: unknown;
911
911
  }[] | undefined;
912
912
  }, {
913
913
  all?: {
914
914
  fact: string;
915
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
915
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
916
916
  value?: unknown;
917
917
  }[] | undefined;
918
918
  any?: {
919
919
  fact: string;
920
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
920
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
921
921
  value?: unknown;
922
922
  }[] | undefined;
923
923
  }>;
@@ -1024,73 +1024,73 @@ export declare const zAiBindingSchema: z.ZodObject<{
1024
1024
  all: z.ZodOptional<z.ZodArray<z.ZodObject<{
1025
1025
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
1026
1026
  fact: z.ZodString;
1027
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1027
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1028
1028
  value: z.ZodOptional<z.ZodUnknown>;
1029
1029
  }, "strip", z.ZodTypeAny, {
1030
1030
  fact: string;
1031
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1031
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1032
1032
  value?: unknown;
1033
1033
  }, {
1034
1034
  fact: string;
1035
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1035
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1036
1036
  value?: unknown;
1037
1037
  }>, "many">>;
1038
1038
  any: z.ZodOptional<z.ZodArray<z.ZodObject<{
1039
1039
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
1040
1040
  fact: z.ZodString;
1041
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1041
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1042
1042
  value: z.ZodOptional<z.ZodUnknown>;
1043
1043
  }, "strip", z.ZodTypeAny, {
1044
1044
  fact: string;
1045
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1045
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1046
1046
  value?: unknown;
1047
1047
  }, {
1048
1048
  fact: string;
1049
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1049
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1050
1050
  value?: unknown;
1051
1051
  }>, "many">>;
1052
1052
  }, "strip", z.ZodTypeAny, {
1053
1053
  all?: {
1054
1054
  fact: string;
1055
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1055
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1056
1056
  value?: unknown;
1057
1057
  }[] | undefined;
1058
1058
  any?: {
1059
1059
  fact: string;
1060
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1060
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1061
1061
  value?: unknown;
1062
1062
  }[] | undefined;
1063
1063
  }, {
1064
1064
  all?: {
1065
1065
  fact: string;
1066
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1066
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1067
1067
  value?: unknown;
1068
1068
  }[] | undefined;
1069
1069
  any?: {
1070
1070
  fact: string;
1071
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1071
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1072
1072
  value?: unknown;
1073
1073
  }[] | undefined;
1074
1074
  }>, {
1075
1075
  all?: {
1076
1076
  fact: string;
1077
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1077
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1078
1078
  value?: unknown;
1079
1079
  }[] | undefined;
1080
1080
  any?: {
1081
1081
  fact: string;
1082
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1082
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1083
1083
  value?: unknown;
1084
1084
  }[] | undefined;
1085
1085
  }, {
1086
1086
  all?: {
1087
1087
  fact: string;
1088
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1088
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1089
1089
  value?: unknown;
1090
1090
  }[] | undefined;
1091
1091
  any?: {
1092
1092
  fact: string;
1093
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1093
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1094
1094
  value?: unknown;
1095
1095
  }[] | undefined;
1096
1096
  }>;
@@ -1138,73 +1138,73 @@ export declare const zAiBindingSchema: z.ZodObject<{
1138
1138
  all: z.ZodOptional<z.ZodArray<z.ZodObject<{
1139
1139
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
1140
1140
  fact: z.ZodString;
1141
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1141
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1142
1142
  value: z.ZodOptional<z.ZodUnknown>;
1143
1143
  }, "strip", z.ZodTypeAny, {
1144
1144
  fact: string;
1145
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1145
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1146
1146
  value?: unknown;
1147
1147
  }, {
1148
1148
  fact: string;
1149
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1149
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1150
1150
  value?: unknown;
1151
1151
  }>, "many">>;
1152
1152
  any: z.ZodOptional<z.ZodArray<z.ZodObject<{
1153
1153
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
1154
1154
  fact: z.ZodString;
1155
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1155
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1156
1156
  value: z.ZodOptional<z.ZodUnknown>;
1157
1157
  }, "strip", z.ZodTypeAny, {
1158
1158
  fact: string;
1159
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1159
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1160
1160
  value?: unknown;
1161
1161
  }, {
1162
1162
  fact: string;
1163
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1163
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1164
1164
  value?: unknown;
1165
1165
  }>, "many">>;
1166
1166
  }, "strip", z.ZodTypeAny, {
1167
1167
  all?: {
1168
1168
  fact: string;
1169
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1169
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1170
1170
  value?: unknown;
1171
1171
  }[] | undefined;
1172
1172
  any?: {
1173
1173
  fact: string;
1174
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1174
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1175
1175
  value?: unknown;
1176
1176
  }[] | undefined;
1177
1177
  }, {
1178
1178
  all?: {
1179
1179
  fact: string;
1180
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1180
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1181
1181
  value?: unknown;
1182
1182
  }[] | undefined;
1183
1183
  any?: {
1184
1184
  fact: string;
1185
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1185
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1186
1186
  value?: unknown;
1187
1187
  }[] | undefined;
1188
1188
  }>, {
1189
1189
  all?: {
1190
1190
  fact: string;
1191
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1191
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1192
1192
  value?: unknown;
1193
1193
  }[] | undefined;
1194
1194
  any?: {
1195
1195
  fact: string;
1196
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1196
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1197
1197
  value?: unknown;
1198
1198
  }[] | undefined;
1199
1199
  }, {
1200
1200
  all?: {
1201
1201
  fact: string;
1202
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1202
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1203
1203
  value?: unknown;
1204
1204
  }[] | undefined;
1205
1205
  any?: {
1206
1206
  fact: string;
1207
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1207
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1208
1208
  value?: unknown;
1209
1209
  }[] | undefined;
1210
1210
  }>;
@@ -1252,73 +1252,73 @@ export declare const zAiBindingSchema: z.ZodObject<{
1252
1252
  all: z.ZodOptional<z.ZodArray<z.ZodObject<{
1253
1253
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
1254
1254
  fact: z.ZodString;
1255
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1255
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1256
1256
  value: z.ZodOptional<z.ZodUnknown>;
1257
1257
  }, "strip", z.ZodTypeAny, {
1258
1258
  fact: string;
1259
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1259
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1260
1260
  value?: unknown;
1261
1261
  }, {
1262
1262
  fact: string;
1263
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1263
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1264
1264
  value?: unknown;
1265
1265
  }>, "many">>;
1266
1266
  any: z.ZodOptional<z.ZodArray<z.ZodObject<{
1267
1267
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
1268
1268
  fact: z.ZodString;
1269
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1269
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1270
1270
  value: z.ZodOptional<z.ZodUnknown>;
1271
1271
  }, "strip", z.ZodTypeAny, {
1272
1272
  fact: string;
1273
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1273
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1274
1274
  value?: unknown;
1275
1275
  }, {
1276
1276
  fact: string;
1277
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1277
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1278
1278
  value?: unknown;
1279
1279
  }>, "many">>;
1280
1280
  }, "strip", z.ZodTypeAny, {
1281
1281
  all?: {
1282
1282
  fact: string;
1283
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1283
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1284
1284
  value?: unknown;
1285
1285
  }[] | undefined;
1286
1286
  any?: {
1287
1287
  fact: string;
1288
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1288
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1289
1289
  value?: unknown;
1290
1290
  }[] | undefined;
1291
1291
  }, {
1292
1292
  all?: {
1293
1293
  fact: string;
1294
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1294
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1295
1295
  value?: unknown;
1296
1296
  }[] | undefined;
1297
1297
  any?: {
1298
1298
  fact: string;
1299
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1299
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1300
1300
  value?: unknown;
1301
1301
  }[] | undefined;
1302
1302
  }>, {
1303
1303
  all?: {
1304
1304
  fact: string;
1305
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1305
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1306
1306
  value?: unknown;
1307
1307
  }[] | undefined;
1308
1308
  any?: {
1309
1309
  fact: string;
1310
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1310
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1311
1311
  value?: unknown;
1312
1312
  }[] | undefined;
1313
1313
  }, {
1314
1314
  all?: {
1315
1315
  fact: string;
1316
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1316
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1317
1317
  value?: unknown;
1318
1318
  }[] | undefined;
1319
1319
  any?: {
1320
1320
  fact: string;
1321
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1321
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1322
1322
  value?: unknown;
1323
1323
  }[] | undefined;
1324
1324
  }>;
@@ -1429,73 +1429,73 @@ export declare const zAiBindingSchema: z.ZodObject<{
1429
1429
  all: z.ZodOptional<z.ZodArray<z.ZodObject<{
1430
1430
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
1431
1431
  fact: z.ZodString;
1432
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1432
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1433
1433
  value: z.ZodOptional<z.ZodUnknown>;
1434
1434
  }, "strip", z.ZodTypeAny, {
1435
1435
  fact: string;
1436
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1436
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1437
1437
  value?: unknown;
1438
1438
  }, {
1439
1439
  fact: string;
1440
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1440
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1441
1441
  value?: unknown;
1442
1442
  }>, "many">>;
1443
1443
  any: z.ZodOptional<z.ZodArray<z.ZodObject<{
1444
1444
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
1445
1445
  fact: z.ZodString;
1446
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1446
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1447
1447
  value: z.ZodOptional<z.ZodUnknown>;
1448
1448
  }, "strip", z.ZodTypeAny, {
1449
1449
  fact: string;
1450
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1450
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1451
1451
  value?: unknown;
1452
1452
  }, {
1453
1453
  fact: string;
1454
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1454
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1455
1455
  value?: unknown;
1456
1456
  }>, "many">>;
1457
1457
  }, "strip", z.ZodTypeAny, {
1458
1458
  all?: {
1459
1459
  fact: string;
1460
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1460
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1461
1461
  value?: unknown;
1462
1462
  }[] | undefined;
1463
1463
  any?: {
1464
1464
  fact: string;
1465
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1465
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1466
1466
  value?: unknown;
1467
1467
  }[] | undefined;
1468
1468
  }, {
1469
1469
  all?: {
1470
1470
  fact: string;
1471
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1471
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1472
1472
  value?: unknown;
1473
1473
  }[] | undefined;
1474
1474
  any?: {
1475
1475
  fact: string;
1476
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1476
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1477
1477
  value?: unknown;
1478
1478
  }[] | undefined;
1479
1479
  }>, {
1480
1480
  all?: {
1481
1481
  fact: string;
1482
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1482
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1483
1483
  value?: unknown;
1484
1484
  }[] | undefined;
1485
1485
  any?: {
1486
1486
  fact: string;
1487
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1487
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1488
1488
  value?: unknown;
1489
1489
  }[] | undefined;
1490
1490
  }, {
1491
1491
  all?: {
1492
1492
  fact: string;
1493
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1493
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1494
1494
  value?: unknown;
1495
1495
  }[] | undefined;
1496
1496
  any?: {
1497
1497
  fact: string;
1498
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1498
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1499
1499
  value?: unknown;
1500
1500
  }[] | undefined;
1501
1501
  }>;
@@ -1543,73 +1543,73 @@ export declare const zAiBindingSchema: z.ZodObject<{
1543
1543
  all: z.ZodOptional<z.ZodArray<z.ZodObject<{
1544
1544
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
1545
1545
  fact: z.ZodString;
1546
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1546
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1547
1547
  value: z.ZodOptional<z.ZodUnknown>;
1548
1548
  }, "strip", z.ZodTypeAny, {
1549
1549
  fact: string;
1550
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1550
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1551
1551
  value?: unknown;
1552
1552
  }, {
1553
1553
  fact: string;
1554
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1554
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1555
1555
  value?: unknown;
1556
1556
  }>, "many">>;
1557
1557
  any: z.ZodOptional<z.ZodArray<z.ZodObject<{
1558
1558
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
1559
1559
  fact: z.ZodString;
1560
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1560
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1561
1561
  value: z.ZodOptional<z.ZodUnknown>;
1562
1562
  }, "strip", z.ZodTypeAny, {
1563
1563
  fact: string;
1564
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1564
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1565
1565
  value?: unknown;
1566
1566
  }, {
1567
1567
  fact: string;
1568
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1568
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1569
1569
  value?: unknown;
1570
1570
  }>, "many">>;
1571
1571
  }, "strip", z.ZodTypeAny, {
1572
1572
  all?: {
1573
1573
  fact: string;
1574
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1574
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1575
1575
  value?: unknown;
1576
1576
  }[] | undefined;
1577
1577
  any?: {
1578
1578
  fact: string;
1579
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1579
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1580
1580
  value?: unknown;
1581
1581
  }[] | undefined;
1582
1582
  }, {
1583
1583
  all?: {
1584
1584
  fact: string;
1585
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1585
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1586
1586
  value?: unknown;
1587
1587
  }[] | undefined;
1588
1588
  any?: {
1589
1589
  fact: string;
1590
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1590
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1591
1591
  value?: unknown;
1592
1592
  }[] | undefined;
1593
1593
  }>, {
1594
1594
  all?: {
1595
1595
  fact: string;
1596
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1596
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1597
1597
  value?: unknown;
1598
1598
  }[] | undefined;
1599
1599
  any?: {
1600
1600
  fact: string;
1601
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1601
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1602
1602
  value?: unknown;
1603
1603
  }[] | undefined;
1604
1604
  }, {
1605
1605
  all?: {
1606
1606
  fact: string;
1607
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1607
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1608
1608
  value?: unknown;
1609
1609
  }[] | undefined;
1610
1610
  any?: {
1611
1611
  fact: string;
1612
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1612
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1613
1613
  value?: unknown;
1614
1614
  }[] | undefined;
1615
1615
  }>;
@@ -1657,73 +1657,73 @@ export declare const zAiBindingSchema: z.ZodObject<{
1657
1657
  all: z.ZodOptional<z.ZodArray<z.ZodObject<{
1658
1658
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
1659
1659
  fact: z.ZodString;
1660
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1660
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1661
1661
  value: z.ZodOptional<z.ZodUnknown>;
1662
1662
  }, "strip", z.ZodTypeAny, {
1663
1663
  fact: string;
1664
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1664
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1665
1665
  value?: unknown;
1666
1666
  }, {
1667
1667
  fact: string;
1668
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1668
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1669
1669
  value?: unknown;
1670
1670
  }>, "many">>;
1671
1671
  any: z.ZodOptional<z.ZodArray<z.ZodObject<{
1672
1672
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
1673
1673
  fact: z.ZodString;
1674
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1674
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1675
1675
  value: z.ZodOptional<z.ZodUnknown>;
1676
1676
  }, "strip", z.ZodTypeAny, {
1677
1677
  fact: string;
1678
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1678
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1679
1679
  value?: unknown;
1680
1680
  }, {
1681
1681
  fact: string;
1682
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1682
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1683
1683
  value?: unknown;
1684
1684
  }>, "many">>;
1685
1685
  }, "strip", z.ZodTypeAny, {
1686
1686
  all?: {
1687
1687
  fact: string;
1688
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1688
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1689
1689
  value?: unknown;
1690
1690
  }[] | undefined;
1691
1691
  any?: {
1692
1692
  fact: string;
1693
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1693
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1694
1694
  value?: unknown;
1695
1695
  }[] | undefined;
1696
1696
  }, {
1697
1697
  all?: {
1698
1698
  fact: string;
1699
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1699
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1700
1700
  value?: unknown;
1701
1701
  }[] | undefined;
1702
1702
  any?: {
1703
1703
  fact: string;
1704
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1704
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1705
1705
  value?: unknown;
1706
1706
  }[] | undefined;
1707
1707
  }>, {
1708
1708
  all?: {
1709
1709
  fact: string;
1710
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1710
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1711
1711
  value?: unknown;
1712
1712
  }[] | undefined;
1713
1713
  any?: {
1714
1714
  fact: string;
1715
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1715
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1716
1716
  value?: unknown;
1717
1717
  }[] | undefined;
1718
1718
  }, {
1719
1719
  all?: {
1720
1720
  fact: string;
1721
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1721
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1722
1722
  value?: unknown;
1723
1723
  }[] | undefined;
1724
1724
  any?: {
1725
1725
  fact: string;
1726
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1726
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1727
1727
  value?: unknown;
1728
1728
  }[] | undefined;
1729
1729
  }>;
@@ -1834,73 +1834,73 @@ export declare const zAiBindingSchema: z.ZodObject<{
1834
1834
  all: z.ZodOptional<z.ZodArray<z.ZodObject<{
1835
1835
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
1836
1836
  fact: z.ZodString;
1837
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1837
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1838
1838
  value: z.ZodOptional<z.ZodUnknown>;
1839
1839
  }, "strip", z.ZodTypeAny, {
1840
1840
  fact: string;
1841
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1841
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1842
1842
  value?: unknown;
1843
1843
  }, {
1844
1844
  fact: string;
1845
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1845
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1846
1846
  value?: unknown;
1847
1847
  }>, "many">>;
1848
1848
  any: z.ZodOptional<z.ZodArray<z.ZodObject<{
1849
1849
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
1850
1850
  fact: z.ZodString;
1851
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1851
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1852
1852
  value: z.ZodOptional<z.ZodUnknown>;
1853
1853
  }, "strip", z.ZodTypeAny, {
1854
1854
  fact: string;
1855
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1855
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1856
1856
  value?: unknown;
1857
1857
  }, {
1858
1858
  fact: string;
1859
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1859
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1860
1860
  value?: unknown;
1861
1861
  }>, "many">>;
1862
1862
  }, "strip", z.ZodTypeAny, {
1863
1863
  all?: {
1864
1864
  fact: string;
1865
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1865
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1866
1866
  value?: unknown;
1867
1867
  }[] | undefined;
1868
1868
  any?: {
1869
1869
  fact: string;
1870
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1870
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1871
1871
  value?: unknown;
1872
1872
  }[] | undefined;
1873
1873
  }, {
1874
1874
  all?: {
1875
1875
  fact: string;
1876
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1876
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1877
1877
  value?: unknown;
1878
1878
  }[] | undefined;
1879
1879
  any?: {
1880
1880
  fact: string;
1881
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1881
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1882
1882
  value?: unknown;
1883
1883
  }[] | undefined;
1884
1884
  }>, {
1885
1885
  all?: {
1886
1886
  fact: string;
1887
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1887
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1888
1888
  value?: unknown;
1889
1889
  }[] | undefined;
1890
1890
  any?: {
1891
1891
  fact: string;
1892
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1892
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1893
1893
  value?: unknown;
1894
1894
  }[] | undefined;
1895
1895
  }, {
1896
1896
  all?: {
1897
1897
  fact: string;
1898
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1898
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1899
1899
  value?: unknown;
1900
1900
  }[] | undefined;
1901
1901
  any?: {
1902
1902
  fact: string;
1903
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1903
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1904
1904
  value?: unknown;
1905
1905
  }[] | undefined;
1906
1906
  }>;
@@ -1948,73 +1948,73 @@ export declare const zAiBindingSchema: z.ZodObject<{
1948
1948
  all: z.ZodOptional<z.ZodArray<z.ZodObject<{
1949
1949
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
1950
1950
  fact: z.ZodString;
1951
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1951
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1952
1952
  value: z.ZodOptional<z.ZodUnknown>;
1953
1953
  }, "strip", z.ZodTypeAny, {
1954
1954
  fact: string;
1955
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1955
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1956
1956
  value?: unknown;
1957
1957
  }, {
1958
1958
  fact: string;
1959
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1959
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1960
1960
  value?: unknown;
1961
1961
  }>, "many">>;
1962
1962
  any: z.ZodOptional<z.ZodArray<z.ZodObject<{
1963
1963
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
1964
1964
  fact: z.ZodString;
1965
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1965
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
1966
1966
  value: z.ZodOptional<z.ZodUnknown>;
1967
1967
  }, "strip", z.ZodTypeAny, {
1968
1968
  fact: string;
1969
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1969
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1970
1970
  value?: unknown;
1971
1971
  }, {
1972
1972
  fact: string;
1973
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1973
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1974
1974
  value?: unknown;
1975
1975
  }>, "many">>;
1976
1976
  }, "strip", z.ZodTypeAny, {
1977
1977
  all?: {
1978
1978
  fact: string;
1979
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1979
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1980
1980
  value?: unknown;
1981
1981
  }[] | undefined;
1982
1982
  any?: {
1983
1983
  fact: string;
1984
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1984
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1985
1985
  value?: unknown;
1986
1986
  }[] | undefined;
1987
1987
  }, {
1988
1988
  all?: {
1989
1989
  fact: string;
1990
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1990
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1991
1991
  value?: unknown;
1992
1992
  }[] | undefined;
1993
1993
  any?: {
1994
1994
  fact: string;
1995
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1995
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
1996
1996
  value?: unknown;
1997
1997
  }[] | undefined;
1998
1998
  }>, {
1999
1999
  all?: {
2000
2000
  fact: string;
2001
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2001
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2002
2002
  value?: unknown;
2003
2003
  }[] | undefined;
2004
2004
  any?: {
2005
2005
  fact: string;
2006
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2006
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2007
2007
  value?: unknown;
2008
2008
  }[] | undefined;
2009
2009
  }, {
2010
2010
  all?: {
2011
2011
  fact: string;
2012
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2012
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2013
2013
  value?: unknown;
2014
2014
  }[] | undefined;
2015
2015
  any?: {
2016
2016
  fact: string;
2017
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2017
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2018
2018
  value?: unknown;
2019
2019
  }[] | undefined;
2020
2020
  }>;
@@ -2062,73 +2062,73 @@ export declare const zAiBindingSchema: z.ZodObject<{
2062
2062
  all: z.ZodOptional<z.ZodArray<z.ZodObject<{
2063
2063
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
2064
2064
  fact: z.ZodString;
2065
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
2065
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
2066
2066
  value: z.ZodOptional<z.ZodUnknown>;
2067
2067
  }, "strip", z.ZodTypeAny, {
2068
2068
  fact: string;
2069
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2069
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2070
2070
  value?: unknown;
2071
2071
  }, {
2072
2072
  fact: string;
2073
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2073
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2074
2074
  value?: unknown;
2075
2075
  }>, "many">>;
2076
2076
  any: z.ZodOptional<z.ZodArray<z.ZodObject<{
2077
2077
  /** Dot-path no namespace de facts (ex: "lead.tag_names", "contact.has_lead"). */
2078
2078
  fact: z.ZodString;
2079
- op: z.ZodEnum<["exists", "not_exists", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
2079
+ op: z.ZodEnum<["exists", "not_exists", "is_empty", "is_not_empty", "eq", "neq", "in", "not_in", "contains", "not_contains", "matches", "gt", "gte", "lt", "lte"]>;
2080
2080
  value: z.ZodOptional<z.ZodUnknown>;
2081
2081
  }, "strip", z.ZodTypeAny, {
2082
2082
  fact: string;
2083
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2083
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2084
2084
  value?: unknown;
2085
2085
  }, {
2086
2086
  fact: string;
2087
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2087
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2088
2088
  value?: unknown;
2089
2089
  }>, "many">>;
2090
2090
  }, "strip", z.ZodTypeAny, {
2091
2091
  all?: {
2092
2092
  fact: string;
2093
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2093
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2094
2094
  value?: unknown;
2095
2095
  }[] | undefined;
2096
2096
  any?: {
2097
2097
  fact: string;
2098
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2098
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2099
2099
  value?: unknown;
2100
2100
  }[] | undefined;
2101
2101
  }, {
2102
2102
  all?: {
2103
2103
  fact: string;
2104
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2104
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2105
2105
  value?: unknown;
2106
2106
  }[] | undefined;
2107
2107
  any?: {
2108
2108
  fact: string;
2109
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2109
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2110
2110
  value?: unknown;
2111
2111
  }[] | undefined;
2112
2112
  }>, {
2113
2113
  all?: {
2114
2114
  fact: string;
2115
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2115
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2116
2116
  value?: unknown;
2117
2117
  }[] | undefined;
2118
2118
  any?: {
2119
2119
  fact: string;
2120
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2120
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2121
2121
  value?: unknown;
2122
2122
  }[] | undefined;
2123
2123
  }, {
2124
2124
  all?: {
2125
2125
  fact: string;
2126
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2126
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2127
2127
  value?: unknown;
2128
2128
  }[] | undefined;
2129
2129
  any?: {
2130
2130
  fact: string;
2131
- op: "in" | "exists" | "not_exists" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2131
+ op: "in" | "exists" | "not_exists" | "is_empty" | "is_not_empty" | "eq" | "neq" | "not_in" | "contains" | "not_contains" | "matches" | "gt" | "gte" | "lt" | "lte";
2132
2132
  value?: unknown;
2133
2133
  }[] | undefined;
2134
2134
  }>;