@orq-ai/node 3.6.0-rc.27 → 3.6.0-rc.29

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 (65) hide show
  1. package/bin/mcp-server.js +3013 -3880
  2. package/bin/mcp-server.js.map +37 -28
  3. package/jsr.json +1 -1
  4. package/lib/config.d.ts +3 -3
  5. package/lib/config.js +3 -3
  6. package/mcp-server/mcp-server.js +1 -1
  7. package/mcp-server/server.js +1 -1
  8. package/models/components/deployments.d.ts +618 -618
  9. package/models/components/deployments.d.ts.map +1 -1
  10. package/models/components/deployments.js +864 -1051
  11. package/models/components/deployments.js.map +1 -1
  12. package/models/operations/bulkcreatedatapoints.js +2 -2
  13. package/models/operations/createcontact.js +2 -2
  14. package/models/operations/createdataset.js +2 -2
  15. package/models/operations/createdatasetitem.js +2 -2
  16. package/models/operations/createdatasource.js +2 -2
  17. package/models/operations/deploymentgetconfig.d.ts +618 -618
  18. package/models/operations/deploymentgetconfig.d.ts.map +1 -1
  19. package/models/operations/deploymentgetconfig.js +855 -1052
  20. package/models/operations/deploymentgetconfig.js.map +1 -1
  21. package/models/operations/deploymentstream.d.ts +618 -618
  22. package/models/operations/deploymentstream.d.ts.map +1 -1
  23. package/models/operations/deploymentstream.js +823 -1052
  24. package/models/operations/deploymentstream.js.map +1 -1
  25. package/models/operations/fileget.js +2 -2
  26. package/models/operations/filelist.js +2 -2
  27. package/models/operations/fileupload.js +2 -2
  28. package/models/operations/listdatasetdatapoints.js +2 -2
  29. package/models/operations/listdatasets.js +2 -2
  30. package/models/operations/listdatasources.js +2 -2
  31. package/models/operations/retrievedatapoint.js +2 -2
  32. package/models/operations/retrievedataset.js +2 -2
  33. package/models/operations/retrievedatasource.js +2 -2
  34. package/models/operations/searchknowledge.d.ts +642 -642
  35. package/models/operations/searchknowledge.d.ts.map +1 -1
  36. package/models/operations/searchknowledge.js +946 -1177
  37. package/models/operations/searchknowledge.js.map +1 -1
  38. package/models/operations/updatedatapoint.js +2 -2
  39. package/models/operations/updatedataset.js +2 -2
  40. package/models/operations/updatedatasource.js +2 -2
  41. package/package.json +2 -2
  42. package/src/lib/config.ts +3 -3
  43. package/src/mcp-server/mcp-server.ts +1 -1
  44. package/src/mcp-server/server.ts +1 -1
  45. package/src/models/components/deployments.ts +1217 -1677
  46. package/src/models/operations/bulkcreatedatapoints.ts +2 -2
  47. package/src/models/operations/createcontact.ts +2 -2
  48. package/src/models/operations/createdataset.ts +2 -2
  49. package/src/models/operations/createdatasetitem.ts +2 -2
  50. package/src/models/operations/createdatasource.ts +2 -2
  51. package/src/models/operations/deploymentgetconfig.ts +1202 -1723
  52. package/src/models/operations/deploymentstream.ts +1314 -1761
  53. package/src/models/operations/fileget.ts +2 -2
  54. package/src/models/operations/filelist.ts +2 -2
  55. package/src/models/operations/fileupload.ts +2 -2
  56. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  57. package/src/models/operations/listdatasets.ts +2 -2
  58. package/src/models/operations/listdatasources.ts +2 -2
  59. package/src/models/operations/retrievedatapoint.ts +2 -2
  60. package/src/models/operations/retrievedataset.ts +2 -2
  61. package/src/models/operations/retrievedatasource.ts +2 -2
  62. package/src/models/operations/searchknowledge.ts +1334 -1750
  63. package/src/models/operations/updatedatapoint.ts +2 -2
  64. package/src/models/operations/updatedataset.ts +2 -2
  65. package/src/models/operations/updatedatasource.ts +2 -2
@@ -719,192 +719,192 @@ export type Thread = {
719
719
  /**
720
720
  * Exists
721
721
  */
722
- export type DollarOrDollarExists = {
723
- dollarExists: boolean;
722
+ export type OrExists = {
723
+ exists: boolean;
724
724
  };
725
- export type DollarOrDollarNin = string | number | boolean;
725
+ export type OrNin = string | number | boolean;
726
726
  /**
727
727
  * Not in
728
728
  */
729
- export type DeploymentsDollarOrDollarNin = {
730
- dollarNin: Array<string | number | boolean>;
729
+ export type DeploymentsOrNin = {
730
+ nin: Array<string | number | boolean>;
731
731
  };
732
- export type DollarOrDollarIn = string | number | boolean;
732
+ export type OrIn = string | number | boolean;
733
733
  /**
734
734
  * In
735
735
  */
736
- export type DeploymentsDollarOrDollarIn = {
737
- dollarIn: Array<string | number | boolean>;
736
+ export type DeploymentsOrIn = {
737
+ in: Array<string | number | boolean>;
738
738
  };
739
739
  /**
740
740
  * Less than or equal to
741
741
  */
742
- export type DollarOrDollarLte = {
743
- dollarLte: number;
742
+ export type OrLte = {
743
+ lte: number;
744
744
  };
745
745
  /**
746
746
  * Less than
747
747
  */
748
- export type DollarOrDollarLt = {
749
- dollarLt: number;
748
+ export type OrLt = {
749
+ lt: number;
750
750
  };
751
751
  /**
752
752
  * Greater than or equal to
753
753
  */
754
- export type DollarOrDollarGte = {
755
- dollarGte: number;
754
+ export type OrGte = {
755
+ gte: number;
756
756
  };
757
- export type DollarOr3 = {
758
- dollarGt: number;
757
+ export type Or3 = {
758
+ gt: number;
759
759
  };
760
- export type DollarOrDollarNe = string | number | boolean;
760
+ export type OrNe = string | number | boolean;
761
761
  /**
762
762
  * Not equal to
763
763
  */
764
- export type DeploymentsDollarOrDollarNe = {
765
- dollarNe: string | number | boolean;
764
+ export type DeploymentsOrNe = {
765
+ ne: string | number | boolean;
766
766
  };
767
- export type DollarOrDollarEq = string | number | boolean;
767
+ export type OrEq = string | number | boolean;
768
768
  /**
769
769
  * Equal to
770
770
  */
771
- export type DeploymentsDollarOrDollarEq = {
772
- dollarEq: string | number | boolean;
771
+ export type DeploymentsOrEq = {
772
+ eq: string | number | boolean;
773
773
  };
774
- export type DollarOr = DeploymentsDollarOrDollarEq | DeploymentsDollarOrDollarNe | DollarOr3 | DollarOrDollarGte | DollarOrDollarLt | DollarOrDollarLte | DeploymentsDollarOrDollarIn | DeploymentsDollarOrDollarNin | DollarOrDollarExists;
774
+ export type Or = DeploymentsOrEq | DeploymentsOrNe | Or3 | OrGte | OrLt | OrLte | DeploymentsOrIn | DeploymentsOrNin | OrExists;
775
775
  /**
776
776
  * Or
777
777
  */
778
- export type KnowledgeFilterDollarOr = {
779
- dollarOr: Array<{
780
- [k: string]: DeploymentsDollarOrDollarEq | DeploymentsDollarOrDollarNe | DollarOr3 | DollarOrDollarGte | DollarOrDollarLt | DollarOrDollarLte | DeploymentsDollarOrDollarIn | DeploymentsDollarOrDollarNin | DollarOrDollarExists;
778
+ export type KnowledgeFilterOr = {
779
+ or: Array<{
780
+ [k: string]: DeploymentsOrEq | DeploymentsOrNe | Or3 | OrGte | OrLt | OrLte | DeploymentsOrIn | DeploymentsOrNin | OrExists;
781
781
  }>;
782
782
  };
783
783
  /**
784
784
  * Exists
785
785
  */
786
- export type DollarAndDollarExists = {
787
- dollarExists: boolean;
786
+ export type AndExists = {
787
+ exists: boolean;
788
788
  };
789
- export type DollarAndDollarNin = string | number | boolean;
789
+ export type AndNin = string | number | boolean;
790
790
  /**
791
791
  * Not in
792
792
  */
793
- export type DeploymentsDollarAndDollarNin = {
794
- dollarNin: Array<string | number | boolean>;
793
+ export type DeploymentsAndNin = {
794
+ nin: Array<string | number | boolean>;
795
795
  };
796
- export type DollarAndDollarIn = string | number | boolean;
796
+ export type AndIn = string | number | boolean;
797
797
  /**
798
798
  * In
799
799
  */
800
- export type DeploymentsDollarAndDollarIn = {
801
- dollarIn: Array<string | number | boolean>;
800
+ export type DeploymentsAndIn = {
801
+ in: Array<string | number | boolean>;
802
802
  };
803
803
  /**
804
804
  * Less than or equal to
805
805
  */
806
- export type DollarAndDollarLte = {
807
- dollarLte: number;
806
+ export type AndLte = {
807
+ lte: number;
808
808
  };
809
809
  /**
810
810
  * Less than
811
811
  */
812
- export type DollarAndDollarLt = {
813
- dollarLt: number;
812
+ export type AndLt = {
813
+ lt: number;
814
814
  };
815
815
  /**
816
816
  * Greater than or equal to
817
817
  */
818
- export type DollarAndDollarGte = {
819
- dollarGte: number;
818
+ export type AndGte = {
819
+ gte: number;
820
820
  };
821
- export type DollarAnd3 = {
822
- dollarGt: number;
821
+ export type And3 = {
822
+ gt: number;
823
823
  };
824
- export type DollarAndDollarNe = string | number | boolean;
824
+ export type AndNe = string | number | boolean;
825
825
  /**
826
826
  * Not equal to
827
827
  */
828
- export type DeploymentsDollarAndDollarNe = {
829
- dollarNe: string | number | boolean;
828
+ export type DeploymentsAndNe = {
829
+ ne: string | number | boolean;
830
830
  };
831
- export type DollarAndDollarEq = string | number | boolean;
831
+ export type AndEq = string | number | boolean;
832
832
  /**
833
833
  * Equal to
834
834
  */
835
- export type DeploymentsDollarAndDollarEq = {
836
- dollarEq: string | number | boolean;
835
+ export type DeploymentsAndEq = {
836
+ eq: string | number | boolean;
837
837
  };
838
- export type DollarAnd = DeploymentsDollarAndDollarEq | DeploymentsDollarAndDollarNe | DollarAnd3 | DollarAndDollarGte | DollarAndDollarLt | DollarAndDollarLte | DeploymentsDollarAndDollarIn | DeploymentsDollarAndDollarNin | DollarAndDollarExists;
838
+ export type And = DeploymentsAndEq | DeploymentsAndNe | And3 | AndGte | AndLt | AndLte | DeploymentsAndIn | DeploymentsAndNin | AndExists;
839
839
  /**
840
840
  * And
841
841
  */
842
- export type KnowledgeFilterDollarAnd = {
843
- dollarAnd: Array<{
844
- [k: string]: DeploymentsDollarAndDollarEq | DeploymentsDollarAndDollarNe | DollarAnd3 | DollarAndDollarGte | DollarAndDollarLt | DollarAndDollarLte | DeploymentsDollarAndDollarIn | DeploymentsDollarAndDollarNin | DollarAndDollarExists;
842
+ export type KnowledgeFilterAnd = {
843
+ and: Array<{
844
+ [k: string]: DeploymentsAndEq | DeploymentsAndNe | And3 | AndGte | AndLt | AndLte | DeploymentsAndIn | DeploymentsAndNin | AndExists;
845
845
  }>;
846
846
  };
847
847
  /**
848
848
  * Exists
849
849
  */
850
- export type DollarExists = {
851
- dollarExists: boolean;
850
+ export type Exists = {
851
+ exists: boolean;
852
852
  };
853
- export type DollarNin = string | number | boolean;
853
+ export type Nin = string | number | boolean;
854
854
  /**
855
855
  * Not in
856
856
  */
857
- export type OneDollarNin = {
858
- dollarNin: Array<string | number | boolean>;
857
+ export type OneNin = {
858
+ nin: Array<string | number | boolean>;
859
859
  };
860
- export type DollarIn = string | number | boolean;
860
+ export type In = string | number | boolean;
861
861
  /**
862
862
  * In
863
863
  */
864
- export type OneDollarIn = {
865
- dollarIn: Array<string | number | boolean>;
864
+ export type OneIn = {
865
+ in: Array<string | number | boolean>;
866
866
  };
867
867
  /**
868
868
  * Less than or equal to
869
869
  */
870
- export type DollarLte = {
871
- dollarLte: number;
870
+ export type Lte = {
871
+ lte: number;
872
872
  };
873
873
  /**
874
874
  * Less than
875
875
  */
876
- export type DollarLt = {
877
- dollarLt: number;
876
+ export type Lt = {
877
+ lt: number;
878
878
  };
879
879
  /**
880
880
  * Greater than or equal to
881
881
  */
882
- export type DollarGte = {
883
- dollarGte: number;
882
+ export type Gte = {
883
+ gte: number;
884
884
  };
885
885
  export type Three = {
886
- dollarGt: number;
886
+ gt: number;
887
887
  };
888
- export type DollarNe = string | number | boolean;
888
+ export type Ne = string | number | boolean;
889
889
  /**
890
890
  * Not equal to
891
891
  */
892
- export type OneDollarNe = {
893
- dollarNe: string | number | boolean;
892
+ export type OneNe = {
893
+ ne: string | number | boolean;
894
894
  };
895
- export type DollarEq = string | number | boolean;
895
+ export type Eq = string | number | boolean;
896
896
  /**
897
897
  * Equal to
898
898
  */
899
- export type OneDollarEq = {
900
- dollarEq: string | number | boolean;
899
+ export type OneEq = {
900
+ eq: string | number | boolean;
901
901
  };
902
- export type One = OneDollarEq | OneDollarNe | Three | DollarGte | DollarLt | DollarLte | OneDollarIn | OneDollarNin | DollarExists;
902
+ export type One = OneEq | OneNe | Three | Gte | Lt | Lte | OneIn | OneNin | Exists;
903
903
  /**
904
904
  * A filter to apply to the knowledge base chunk metadata when using knowledge bases in the deployment.
905
905
  */
906
- export type KnowledgeFilter = KnowledgeFilterDollarAnd | KnowledgeFilterDollarOr | {
907
- [k: string]: OneDollarEq | OneDollarNe | Three | DollarGte | DollarLt | DollarLte | OneDollarIn | OneDollarNin | DollarExists;
906
+ export type KnowledgeFilter = KnowledgeFilterAnd | KnowledgeFilterOr | {
907
+ [k: string]: OneEq | OneNe | Three | Gte | Lt | Lte | OneIn | OneNin | Exists;
908
908
  };
909
909
  /**
910
910
  * The deployment request payload
@@ -959,8 +959,8 @@ export type Deployments = {
959
959
  /**
960
960
  * A filter to apply to the knowledge base chunk metadata when using knowledge bases in the deployment.
961
961
  */
962
- knowledgeFilter?: KnowledgeFilterDollarAnd | KnowledgeFilterDollarOr | {
963
- [k: string]: OneDollarEq | OneDollarNe | Three | DollarGte | DollarLt | DollarLte | OneDollarIn | OneDollarNin | DollarExists;
962
+ knowledgeFilter?: KnowledgeFilterAnd | KnowledgeFilterOr | {
963
+ [k: string]: OneEq | OneNe | Three | Gte | Lt | Lte | OneIn | OneNin | Exists;
964
964
  } | undefined;
965
965
  };
966
966
  /** @internal */
@@ -2637,826 +2637,826 @@ export declare namespace Thread$ {
2637
2637
  export declare function threadToJSON(thread: Thread): string;
2638
2638
  export declare function threadFromJSON(jsonString: string): SafeParseResult<Thread, SDKValidationError>;
2639
2639
  /** @internal */
2640
- export declare const DollarOrDollarExists$inboundSchema: z.ZodType<DollarOrDollarExists, z.ZodTypeDef, unknown>;
2640
+ export declare const OrExists$inboundSchema: z.ZodType<OrExists, z.ZodTypeDef, unknown>;
2641
2641
  /** @internal */
2642
- export type DollarOrDollarExists$Outbound = {
2643
- $exists: boolean;
2642
+ export type OrExists$Outbound = {
2643
+ exists: boolean;
2644
2644
  };
2645
2645
  /** @internal */
2646
- export declare const DollarOrDollarExists$outboundSchema: z.ZodType<DollarOrDollarExists$Outbound, z.ZodTypeDef, DollarOrDollarExists>;
2646
+ export declare const OrExists$outboundSchema: z.ZodType<OrExists$Outbound, z.ZodTypeDef, OrExists>;
2647
2647
  /**
2648
2648
  * @internal
2649
2649
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2650
2650
  */
2651
- export declare namespace DollarOrDollarExists$ {
2652
- /** @deprecated use `DollarOrDollarExists$inboundSchema` instead. */
2653
- const inboundSchema: z.ZodType<DollarOrDollarExists, z.ZodTypeDef, unknown>;
2654
- /** @deprecated use `DollarOrDollarExists$outboundSchema` instead. */
2655
- const outboundSchema: z.ZodType<DollarOrDollarExists$Outbound, z.ZodTypeDef, DollarOrDollarExists>;
2656
- /** @deprecated use `DollarOrDollarExists$Outbound` instead. */
2657
- type Outbound = DollarOrDollarExists$Outbound;
2651
+ export declare namespace OrExists$ {
2652
+ /** @deprecated use `OrExists$inboundSchema` instead. */
2653
+ const inboundSchema: z.ZodType<OrExists, z.ZodTypeDef, unknown>;
2654
+ /** @deprecated use `OrExists$outboundSchema` instead. */
2655
+ const outboundSchema: z.ZodType<OrExists$Outbound, z.ZodTypeDef, OrExists>;
2656
+ /** @deprecated use `OrExists$Outbound` instead. */
2657
+ type Outbound = OrExists$Outbound;
2658
2658
  }
2659
- export declare function dollarOrDollarExistsToJSON(dollarOrDollarExists: DollarOrDollarExists): string;
2660
- export declare function dollarOrDollarExistsFromJSON(jsonString: string): SafeParseResult<DollarOrDollarExists, SDKValidationError>;
2659
+ export declare function orExistsToJSON(orExists: OrExists): string;
2660
+ export declare function orExistsFromJSON(jsonString: string): SafeParseResult<OrExists, SDKValidationError>;
2661
2661
  /** @internal */
2662
- export declare const DollarOrDollarNin$inboundSchema: z.ZodType<DollarOrDollarNin, z.ZodTypeDef, unknown>;
2662
+ export declare const OrNin$inboundSchema: z.ZodType<OrNin, z.ZodTypeDef, unknown>;
2663
2663
  /** @internal */
2664
- export type DollarOrDollarNin$Outbound = string | number | boolean;
2664
+ export type OrNin$Outbound = string | number | boolean;
2665
2665
  /** @internal */
2666
- export declare const DollarOrDollarNin$outboundSchema: z.ZodType<DollarOrDollarNin$Outbound, z.ZodTypeDef, DollarOrDollarNin>;
2666
+ export declare const OrNin$outboundSchema: z.ZodType<OrNin$Outbound, z.ZodTypeDef, OrNin>;
2667
2667
  /**
2668
2668
  * @internal
2669
2669
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2670
2670
  */
2671
- export declare namespace DollarOrDollarNin$ {
2672
- /** @deprecated use `DollarOrDollarNin$inboundSchema` instead. */
2673
- const inboundSchema: z.ZodType<DollarOrDollarNin, z.ZodTypeDef, unknown>;
2674
- /** @deprecated use `DollarOrDollarNin$outboundSchema` instead. */
2675
- const outboundSchema: z.ZodType<DollarOrDollarNin$Outbound, z.ZodTypeDef, DollarOrDollarNin>;
2676
- /** @deprecated use `DollarOrDollarNin$Outbound` instead. */
2677
- type Outbound = DollarOrDollarNin$Outbound;
2671
+ export declare namespace OrNin$ {
2672
+ /** @deprecated use `OrNin$inboundSchema` instead. */
2673
+ const inboundSchema: z.ZodType<OrNin, z.ZodTypeDef, unknown>;
2674
+ /** @deprecated use `OrNin$outboundSchema` instead. */
2675
+ const outboundSchema: z.ZodType<OrNin$Outbound, z.ZodTypeDef, OrNin>;
2676
+ /** @deprecated use `OrNin$Outbound` instead. */
2677
+ type Outbound = OrNin$Outbound;
2678
2678
  }
2679
- export declare function dollarOrDollarNinToJSON(dollarOrDollarNin: DollarOrDollarNin): string;
2680
- export declare function dollarOrDollarNinFromJSON(jsonString: string): SafeParseResult<DollarOrDollarNin, SDKValidationError>;
2679
+ export declare function orNinToJSON(orNin: OrNin): string;
2680
+ export declare function orNinFromJSON(jsonString: string): SafeParseResult<OrNin, SDKValidationError>;
2681
2681
  /** @internal */
2682
- export declare const DeploymentsDollarOrDollarNin$inboundSchema: z.ZodType<DeploymentsDollarOrDollarNin, z.ZodTypeDef, unknown>;
2682
+ export declare const DeploymentsOrNin$inboundSchema: z.ZodType<DeploymentsOrNin, z.ZodTypeDef, unknown>;
2683
2683
  /** @internal */
2684
- export type DeploymentsDollarOrDollarNin$Outbound = {
2685
- $nin: Array<string | number | boolean>;
2684
+ export type DeploymentsOrNin$Outbound = {
2685
+ nin: Array<string | number | boolean>;
2686
2686
  };
2687
2687
  /** @internal */
2688
- export declare const DeploymentsDollarOrDollarNin$outboundSchema: z.ZodType<DeploymentsDollarOrDollarNin$Outbound, z.ZodTypeDef, DeploymentsDollarOrDollarNin>;
2688
+ export declare const DeploymentsOrNin$outboundSchema: z.ZodType<DeploymentsOrNin$Outbound, z.ZodTypeDef, DeploymentsOrNin>;
2689
2689
  /**
2690
2690
  * @internal
2691
2691
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2692
2692
  */
2693
- export declare namespace DeploymentsDollarOrDollarNin$ {
2694
- /** @deprecated use `DeploymentsDollarOrDollarNin$inboundSchema` instead. */
2695
- const inboundSchema: z.ZodType<DeploymentsDollarOrDollarNin, z.ZodTypeDef, unknown>;
2696
- /** @deprecated use `DeploymentsDollarOrDollarNin$outboundSchema` instead. */
2697
- const outboundSchema: z.ZodType<DeploymentsDollarOrDollarNin$Outbound, z.ZodTypeDef, DeploymentsDollarOrDollarNin>;
2698
- /** @deprecated use `DeploymentsDollarOrDollarNin$Outbound` instead. */
2699
- type Outbound = DeploymentsDollarOrDollarNin$Outbound;
2693
+ export declare namespace DeploymentsOrNin$ {
2694
+ /** @deprecated use `DeploymentsOrNin$inboundSchema` instead. */
2695
+ const inboundSchema: z.ZodType<DeploymentsOrNin, z.ZodTypeDef, unknown>;
2696
+ /** @deprecated use `DeploymentsOrNin$outboundSchema` instead. */
2697
+ const outboundSchema: z.ZodType<DeploymentsOrNin$Outbound, z.ZodTypeDef, DeploymentsOrNin>;
2698
+ /** @deprecated use `DeploymentsOrNin$Outbound` instead. */
2699
+ type Outbound = DeploymentsOrNin$Outbound;
2700
2700
  }
2701
- export declare function deploymentsDollarOrDollarNinToJSON(deploymentsDollarOrDollarNin: DeploymentsDollarOrDollarNin): string;
2702
- export declare function deploymentsDollarOrDollarNinFromJSON(jsonString: string): SafeParseResult<DeploymentsDollarOrDollarNin, SDKValidationError>;
2701
+ export declare function deploymentsOrNinToJSON(deploymentsOrNin: DeploymentsOrNin): string;
2702
+ export declare function deploymentsOrNinFromJSON(jsonString: string): SafeParseResult<DeploymentsOrNin, SDKValidationError>;
2703
2703
  /** @internal */
2704
- export declare const DollarOrDollarIn$inboundSchema: z.ZodType<DollarOrDollarIn, z.ZodTypeDef, unknown>;
2704
+ export declare const OrIn$inboundSchema: z.ZodType<OrIn, z.ZodTypeDef, unknown>;
2705
2705
  /** @internal */
2706
- export type DollarOrDollarIn$Outbound = string | number | boolean;
2706
+ export type OrIn$Outbound = string | number | boolean;
2707
2707
  /** @internal */
2708
- export declare const DollarOrDollarIn$outboundSchema: z.ZodType<DollarOrDollarIn$Outbound, z.ZodTypeDef, DollarOrDollarIn>;
2708
+ export declare const OrIn$outboundSchema: z.ZodType<OrIn$Outbound, z.ZodTypeDef, OrIn>;
2709
2709
  /**
2710
2710
  * @internal
2711
2711
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2712
2712
  */
2713
- export declare namespace DollarOrDollarIn$ {
2714
- /** @deprecated use `DollarOrDollarIn$inboundSchema` instead. */
2715
- const inboundSchema: z.ZodType<DollarOrDollarIn, z.ZodTypeDef, unknown>;
2716
- /** @deprecated use `DollarOrDollarIn$outboundSchema` instead. */
2717
- const outboundSchema: z.ZodType<DollarOrDollarIn$Outbound, z.ZodTypeDef, DollarOrDollarIn>;
2718
- /** @deprecated use `DollarOrDollarIn$Outbound` instead. */
2719
- type Outbound = DollarOrDollarIn$Outbound;
2713
+ export declare namespace OrIn$ {
2714
+ /** @deprecated use `OrIn$inboundSchema` instead. */
2715
+ const inboundSchema: z.ZodType<OrIn, z.ZodTypeDef, unknown>;
2716
+ /** @deprecated use `OrIn$outboundSchema` instead. */
2717
+ const outboundSchema: z.ZodType<OrIn$Outbound, z.ZodTypeDef, OrIn>;
2718
+ /** @deprecated use `OrIn$Outbound` instead. */
2719
+ type Outbound = OrIn$Outbound;
2720
2720
  }
2721
- export declare function dollarOrDollarInToJSON(dollarOrDollarIn: DollarOrDollarIn): string;
2722
- export declare function dollarOrDollarInFromJSON(jsonString: string): SafeParseResult<DollarOrDollarIn, SDKValidationError>;
2721
+ export declare function orInToJSON(orIn: OrIn): string;
2722
+ export declare function orInFromJSON(jsonString: string): SafeParseResult<OrIn, SDKValidationError>;
2723
2723
  /** @internal */
2724
- export declare const DeploymentsDollarOrDollarIn$inboundSchema: z.ZodType<DeploymentsDollarOrDollarIn, z.ZodTypeDef, unknown>;
2724
+ export declare const DeploymentsOrIn$inboundSchema: z.ZodType<DeploymentsOrIn, z.ZodTypeDef, unknown>;
2725
2725
  /** @internal */
2726
- export type DeploymentsDollarOrDollarIn$Outbound = {
2727
- $in: Array<string | number | boolean>;
2726
+ export type DeploymentsOrIn$Outbound = {
2727
+ in: Array<string | number | boolean>;
2728
2728
  };
2729
2729
  /** @internal */
2730
- export declare const DeploymentsDollarOrDollarIn$outboundSchema: z.ZodType<DeploymentsDollarOrDollarIn$Outbound, z.ZodTypeDef, DeploymentsDollarOrDollarIn>;
2730
+ export declare const DeploymentsOrIn$outboundSchema: z.ZodType<DeploymentsOrIn$Outbound, z.ZodTypeDef, DeploymentsOrIn>;
2731
2731
  /**
2732
2732
  * @internal
2733
2733
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2734
2734
  */
2735
- export declare namespace DeploymentsDollarOrDollarIn$ {
2736
- /** @deprecated use `DeploymentsDollarOrDollarIn$inboundSchema` instead. */
2737
- const inboundSchema: z.ZodType<DeploymentsDollarOrDollarIn, z.ZodTypeDef, unknown>;
2738
- /** @deprecated use `DeploymentsDollarOrDollarIn$outboundSchema` instead. */
2739
- const outboundSchema: z.ZodType<DeploymentsDollarOrDollarIn$Outbound, z.ZodTypeDef, DeploymentsDollarOrDollarIn>;
2740
- /** @deprecated use `DeploymentsDollarOrDollarIn$Outbound` instead. */
2741
- type Outbound = DeploymentsDollarOrDollarIn$Outbound;
2735
+ export declare namespace DeploymentsOrIn$ {
2736
+ /** @deprecated use `DeploymentsOrIn$inboundSchema` instead. */
2737
+ const inboundSchema: z.ZodType<DeploymentsOrIn, z.ZodTypeDef, unknown>;
2738
+ /** @deprecated use `DeploymentsOrIn$outboundSchema` instead. */
2739
+ const outboundSchema: z.ZodType<DeploymentsOrIn$Outbound, z.ZodTypeDef, DeploymentsOrIn>;
2740
+ /** @deprecated use `DeploymentsOrIn$Outbound` instead. */
2741
+ type Outbound = DeploymentsOrIn$Outbound;
2742
2742
  }
2743
- export declare function deploymentsDollarOrDollarInToJSON(deploymentsDollarOrDollarIn: DeploymentsDollarOrDollarIn): string;
2744
- export declare function deploymentsDollarOrDollarInFromJSON(jsonString: string): SafeParseResult<DeploymentsDollarOrDollarIn, SDKValidationError>;
2743
+ export declare function deploymentsOrInToJSON(deploymentsOrIn: DeploymentsOrIn): string;
2744
+ export declare function deploymentsOrInFromJSON(jsonString: string): SafeParseResult<DeploymentsOrIn, SDKValidationError>;
2745
2745
  /** @internal */
2746
- export declare const DollarOrDollarLte$inboundSchema: z.ZodType<DollarOrDollarLte, z.ZodTypeDef, unknown>;
2746
+ export declare const OrLte$inboundSchema: z.ZodType<OrLte, z.ZodTypeDef, unknown>;
2747
2747
  /** @internal */
2748
- export type DollarOrDollarLte$Outbound = {
2749
- $lte: number;
2748
+ export type OrLte$Outbound = {
2749
+ lte: number;
2750
2750
  };
2751
2751
  /** @internal */
2752
- export declare const DollarOrDollarLte$outboundSchema: z.ZodType<DollarOrDollarLte$Outbound, z.ZodTypeDef, DollarOrDollarLte>;
2752
+ export declare const OrLte$outboundSchema: z.ZodType<OrLte$Outbound, z.ZodTypeDef, OrLte>;
2753
2753
  /**
2754
2754
  * @internal
2755
2755
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2756
2756
  */
2757
- export declare namespace DollarOrDollarLte$ {
2758
- /** @deprecated use `DollarOrDollarLte$inboundSchema` instead. */
2759
- const inboundSchema: z.ZodType<DollarOrDollarLte, z.ZodTypeDef, unknown>;
2760
- /** @deprecated use `DollarOrDollarLte$outboundSchema` instead. */
2761
- const outboundSchema: z.ZodType<DollarOrDollarLte$Outbound, z.ZodTypeDef, DollarOrDollarLte>;
2762
- /** @deprecated use `DollarOrDollarLte$Outbound` instead. */
2763
- type Outbound = DollarOrDollarLte$Outbound;
2757
+ export declare namespace OrLte$ {
2758
+ /** @deprecated use `OrLte$inboundSchema` instead. */
2759
+ const inboundSchema: z.ZodType<OrLte, z.ZodTypeDef, unknown>;
2760
+ /** @deprecated use `OrLte$outboundSchema` instead. */
2761
+ const outboundSchema: z.ZodType<OrLte$Outbound, z.ZodTypeDef, OrLte>;
2762
+ /** @deprecated use `OrLte$Outbound` instead. */
2763
+ type Outbound = OrLte$Outbound;
2764
2764
  }
2765
- export declare function dollarOrDollarLteToJSON(dollarOrDollarLte: DollarOrDollarLte): string;
2766
- export declare function dollarOrDollarLteFromJSON(jsonString: string): SafeParseResult<DollarOrDollarLte, SDKValidationError>;
2765
+ export declare function orLteToJSON(orLte: OrLte): string;
2766
+ export declare function orLteFromJSON(jsonString: string): SafeParseResult<OrLte, SDKValidationError>;
2767
2767
  /** @internal */
2768
- export declare const DollarOrDollarLt$inboundSchema: z.ZodType<DollarOrDollarLt, z.ZodTypeDef, unknown>;
2768
+ export declare const OrLt$inboundSchema: z.ZodType<OrLt, z.ZodTypeDef, unknown>;
2769
2769
  /** @internal */
2770
- export type DollarOrDollarLt$Outbound = {
2771
- $lt: number;
2770
+ export type OrLt$Outbound = {
2771
+ lt: number;
2772
2772
  };
2773
2773
  /** @internal */
2774
- export declare const DollarOrDollarLt$outboundSchema: z.ZodType<DollarOrDollarLt$Outbound, z.ZodTypeDef, DollarOrDollarLt>;
2774
+ export declare const OrLt$outboundSchema: z.ZodType<OrLt$Outbound, z.ZodTypeDef, OrLt>;
2775
2775
  /**
2776
2776
  * @internal
2777
2777
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2778
2778
  */
2779
- export declare namespace DollarOrDollarLt$ {
2780
- /** @deprecated use `DollarOrDollarLt$inboundSchema` instead. */
2781
- const inboundSchema: z.ZodType<DollarOrDollarLt, z.ZodTypeDef, unknown>;
2782
- /** @deprecated use `DollarOrDollarLt$outboundSchema` instead. */
2783
- const outboundSchema: z.ZodType<DollarOrDollarLt$Outbound, z.ZodTypeDef, DollarOrDollarLt>;
2784
- /** @deprecated use `DollarOrDollarLt$Outbound` instead. */
2785
- type Outbound = DollarOrDollarLt$Outbound;
2779
+ export declare namespace OrLt$ {
2780
+ /** @deprecated use `OrLt$inboundSchema` instead. */
2781
+ const inboundSchema: z.ZodType<OrLt, z.ZodTypeDef, unknown>;
2782
+ /** @deprecated use `OrLt$outboundSchema` instead. */
2783
+ const outboundSchema: z.ZodType<OrLt$Outbound, z.ZodTypeDef, OrLt>;
2784
+ /** @deprecated use `OrLt$Outbound` instead. */
2785
+ type Outbound = OrLt$Outbound;
2786
2786
  }
2787
- export declare function dollarOrDollarLtToJSON(dollarOrDollarLt: DollarOrDollarLt): string;
2788
- export declare function dollarOrDollarLtFromJSON(jsonString: string): SafeParseResult<DollarOrDollarLt, SDKValidationError>;
2787
+ export declare function orLtToJSON(orLt: OrLt): string;
2788
+ export declare function orLtFromJSON(jsonString: string): SafeParseResult<OrLt, SDKValidationError>;
2789
2789
  /** @internal */
2790
- export declare const DollarOrDollarGte$inboundSchema: z.ZodType<DollarOrDollarGte, z.ZodTypeDef, unknown>;
2790
+ export declare const OrGte$inboundSchema: z.ZodType<OrGte, z.ZodTypeDef, unknown>;
2791
2791
  /** @internal */
2792
- export type DollarOrDollarGte$Outbound = {
2793
- $gte: number;
2792
+ export type OrGte$Outbound = {
2793
+ gte: number;
2794
2794
  };
2795
2795
  /** @internal */
2796
- export declare const DollarOrDollarGte$outboundSchema: z.ZodType<DollarOrDollarGte$Outbound, z.ZodTypeDef, DollarOrDollarGte>;
2796
+ export declare const OrGte$outboundSchema: z.ZodType<OrGte$Outbound, z.ZodTypeDef, OrGte>;
2797
2797
  /**
2798
2798
  * @internal
2799
2799
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2800
2800
  */
2801
- export declare namespace DollarOrDollarGte$ {
2802
- /** @deprecated use `DollarOrDollarGte$inboundSchema` instead. */
2803
- const inboundSchema: z.ZodType<DollarOrDollarGte, z.ZodTypeDef, unknown>;
2804
- /** @deprecated use `DollarOrDollarGte$outboundSchema` instead. */
2805
- const outboundSchema: z.ZodType<DollarOrDollarGte$Outbound, z.ZodTypeDef, DollarOrDollarGte>;
2806
- /** @deprecated use `DollarOrDollarGte$Outbound` instead. */
2807
- type Outbound = DollarOrDollarGte$Outbound;
2801
+ export declare namespace OrGte$ {
2802
+ /** @deprecated use `OrGte$inboundSchema` instead. */
2803
+ const inboundSchema: z.ZodType<OrGte, z.ZodTypeDef, unknown>;
2804
+ /** @deprecated use `OrGte$outboundSchema` instead. */
2805
+ const outboundSchema: z.ZodType<OrGte$Outbound, z.ZodTypeDef, OrGte>;
2806
+ /** @deprecated use `OrGte$Outbound` instead. */
2807
+ type Outbound = OrGte$Outbound;
2808
2808
  }
2809
- export declare function dollarOrDollarGteToJSON(dollarOrDollarGte: DollarOrDollarGte): string;
2810
- export declare function dollarOrDollarGteFromJSON(jsonString: string): SafeParseResult<DollarOrDollarGte, SDKValidationError>;
2809
+ export declare function orGteToJSON(orGte: OrGte): string;
2810
+ export declare function orGteFromJSON(jsonString: string): SafeParseResult<OrGte, SDKValidationError>;
2811
2811
  /** @internal */
2812
- export declare const DollarOr3$inboundSchema: z.ZodType<DollarOr3, z.ZodTypeDef, unknown>;
2812
+ export declare const Or3$inboundSchema: z.ZodType<Or3, z.ZodTypeDef, unknown>;
2813
2813
  /** @internal */
2814
- export type DollarOr3$Outbound = {
2815
- $gt: number;
2814
+ export type Or3$Outbound = {
2815
+ gt: number;
2816
2816
  };
2817
2817
  /** @internal */
2818
- export declare const DollarOr3$outboundSchema: z.ZodType<DollarOr3$Outbound, z.ZodTypeDef, DollarOr3>;
2818
+ export declare const Or3$outboundSchema: z.ZodType<Or3$Outbound, z.ZodTypeDef, Or3>;
2819
2819
  /**
2820
2820
  * @internal
2821
2821
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2822
2822
  */
2823
- export declare namespace DollarOr3$ {
2824
- /** @deprecated use `DollarOr3$inboundSchema` instead. */
2825
- const inboundSchema: z.ZodType<DollarOr3, z.ZodTypeDef, unknown>;
2826
- /** @deprecated use `DollarOr3$outboundSchema` instead. */
2827
- const outboundSchema: z.ZodType<DollarOr3$Outbound, z.ZodTypeDef, DollarOr3>;
2828
- /** @deprecated use `DollarOr3$Outbound` instead. */
2829
- type Outbound = DollarOr3$Outbound;
2823
+ export declare namespace Or3$ {
2824
+ /** @deprecated use `Or3$inboundSchema` instead. */
2825
+ const inboundSchema: z.ZodType<Or3, z.ZodTypeDef, unknown>;
2826
+ /** @deprecated use `Or3$outboundSchema` instead. */
2827
+ const outboundSchema: z.ZodType<Or3$Outbound, z.ZodTypeDef, Or3>;
2828
+ /** @deprecated use `Or3$Outbound` instead. */
2829
+ type Outbound = Or3$Outbound;
2830
2830
  }
2831
- export declare function dollarOr3ToJSON(dollarOr3: DollarOr3): string;
2832
- export declare function dollarOr3FromJSON(jsonString: string): SafeParseResult<DollarOr3, SDKValidationError>;
2831
+ export declare function or3ToJSON(or3: Or3): string;
2832
+ export declare function or3FromJSON(jsonString: string): SafeParseResult<Or3, SDKValidationError>;
2833
2833
  /** @internal */
2834
- export declare const DollarOrDollarNe$inboundSchema: z.ZodType<DollarOrDollarNe, z.ZodTypeDef, unknown>;
2834
+ export declare const OrNe$inboundSchema: z.ZodType<OrNe, z.ZodTypeDef, unknown>;
2835
2835
  /** @internal */
2836
- export type DollarOrDollarNe$Outbound = string | number | boolean;
2836
+ export type OrNe$Outbound = string | number | boolean;
2837
2837
  /** @internal */
2838
- export declare const DollarOrDollarNe$outboundSchema: z.ZodType<DollarOrDollarNe$Outbound, z.ZodTypeDef, DollarOrDollarNe>;
2838
+ export declare const OrNe$outboundSchema: z.ZodType<OrNe$Outbound, z.ZodTypeDef, OrNe>;
2839
2839
  /**
2840
2840
  * @internal
2841
2841
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2842
2842
  */
2843
- export declare namespace DollarOrDollarNe$ {
2844
- /** @deprecated use `DollarOrDollarNe$inboundSchema` instead. */
2845
- const inboundSchema: z.ZodType<DollarOrDollarNe, z.ZodTypeDef, unknown>;
2846
- /** @deprecated use `DollarOrDollarNe$outboundSchema` instead. */
2847
- const outboundSchema: z.ZodType<DollarOrDollarNe$Outbound, z.ZodTypeDef, DollarOrDollarNe>;
2848
- /** @deprecated use `DollarOrDollarNe$Outbound` instead. */
2849
- type Outbound = DollarOrDollarNe$Outbound;
2843
+ export declare namespace OrNe$ {
2844
+ /** @deprecated use `OrNe$inboundSchema` instead. */
2845
+ const inboundSchema: z.ZodType<OrNe, z.ZodTypeDef, unknown>;
2846
+ /** @deprecated use `OrNe$outboundSchema` instead. */
2847
+ const outboundSchema: z.ZodType<OrNe$Outbound, z.ZodTypeDef, OrNe>;
2848
+ /** @deprecated use `OrNe$Outbound` instead. */
2849
+ type Outbound = OrNe$Outbound;
2850
2850
  }
2851
- export declare function dollarOrDollarNeToJSON(dollarOrDollarNe: DollarOrDollarNe): string;
2852
- export declare function dollarOrDollarNeFromJSON(jsonString: string): SafeParseResult<DollarOrDollarNe, SDKValidationError>;
2851
+ export declare function orNeToJSON(orNe: OrNe): string;
2852
+ export declare function orNeFromJSON(jsonString: string): SafeParseResult<OrNe, SDKValidationError>;
2853
2853
  /** @internal */
2854
- export declare const DeploymentsDollarOrDollarNe$inboundSchema: z.ZodType<DeploymentsDollarOrDollarNe, z.ZodTypeDef, unknown>;
2854
+ export declare const DeploymentsOrNe$inboundSchema: z.ZodType<DeploymentsOrNe, z.ZodTypeDef, unknown>;
2855
2855
  /** @internal */
2856
- export type DeploymentsDollarOrDollarNe$Outbound = {
2857
- $ne: string | number | boolean;
2856
+ export type DeploymentsOrNe$Outbound = {
2857
+ ne: string | number | boolean;
2858
2858
  };
2859
2859
  /** @internal */
2860
- export declare const DeploymentsDollarOrDollarNe$outboundSchema: z.ZodType<DeploymentsDollarOrDollarNe$Outbound, z.ZodTypeDef, DeploymentsDollarOrDollarNe>;
2860
+ export declare const DeploymentsOrNe$outboundSchema: z.ZodType<DeploymentsOrNe$Outbound, z.ZodTypeDef, DeploymentsOrNe>;
2861
2861
  /**
2862
2862
  * @internal
2863
2863
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2864
2864
  */
2865
- export declare namespace DeploymentsDollarOrDollarNe$ {
2866
- /** @deprecated use `DeploymentsDollarOrDollarNe$inboundSchema` instead. */
2867
- const inboundSchema: z.ZodType<DeploymentsDollarOrDollarNe, z.ZodTypeDef, unknown>;
2868
- /** @deprecated use `DeploymentsDollarOrDollarNe$outboundSchema` instead. */
2869
- const outboundSchema: z.ZodType<DeploymentsDollarOrDollarNe$Outbound, z.ZodTypeDef, DeploymentsDollarOrDollarNe>;
2870
- /** @deprecated use `DeploymentsDollarOrDollarNe$Outbound` instead. */
2871
- type Outbound = DeploymentsDollarOrDollarNe$Outbound;
2865
+ export declare namespace DeploymentsOrNe$ {
2866
+ /** @deprecated use `DeploymentsOrNe$inboundSchema` instead. */
2867
+ const inboundSchema: z.ZodType<DeploymentsOrNe, z.ZodTypeDef, unknown>;
2868
+ /** @deprecated use `DeploymentsOrNe$outboundSchema` instead. */
2869
+ const outboundSchema: z.ZodType<DeploymentsOrNe$Outbound, z.ZodTypeDef, DeploymentsOrNe>;
2870
+ /** @deprecated use `DeploymentsOrNe$Outbound` instead. */
2871
+ type Outbound = DeploymentsOrNe$Outbound;
2872
2872
  }
2873
- export declare function deploymentsDollarOrDollarNeToJSON(deploymentsDollarOrDollarNe: DeploymentsDollarOrDollarNe): string;
2874
- export declare function deploymentsDollarOrDollarNeFromJSON(jsonString: string): SafeParseResult<DeploymentsDollarOrDollarNe, SDKValidationError>;
2873
+ export declare function deploymentsOrNeToJSON(deploymentsOrNe: DeploymentsOrNe): string;
2874
+ export declare function deploymentsOrNeFromJSON(jsonString: string): SafeParseResult<DeploymentsOrNe, SDKValidationError>;
2875
2875
  /** @internal */
2876
- export declare const DollarOrDollarEq$inboundSchema: z.ZodType<DollarOrDollarEq, z.ZodTypeDef, unknown>;
2876
+ export declare const OrEq$inboundSchema: z.ZodType<OrEq, z.ZodTypeDef, unknown>;
2877
2877
  /** @internal */
2878
- export type DollarOrDollarEq$Outbound = string | number | boolean;
2878
+ export type OrEq$Outbound = string | number | boolean;
2879
2879
  /** @internal */
2880
- export declare const DollarOrDollarEq$outboundSchema: z.ZodType<DollarOrDollarEq$Outbound, z.ZodTypeDef, DollarOrDollarEq>;
2880
+ export declare const OrEq$outboundSchema: z.ZodType<OrEq$Outbound, z.ZodTypeDef, OrEq>;
2881
2881
  /**
2882
2882
  * @internal
2883
2883
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2884
2884
  */
2885
- export declare namespace DollarOrDollarEq$ {
2886
- /** @deprecated use `DollarOrDollarEq$inboundSchema` instead. */
2887
- const inboundSchema: z.ZodType<DollarOrDollarEq, z.ZodTypeDef, unknown>;
2888
- /** @deprecated use `DollarOrDollarEq$outboundSchema` instead. */
2889
- const outboundSchema: z.ZodType<DollarOrDollarEq$Outbound, z.ZodTypeDef, DollarOrDollarEq>;
2890
- /** @deprecated use `DollarOrDollarEq$Outbound` instead. */
2891
- type Outbound = DollarOrDollarEq$Outbound;
2885
+ export declare namespace OrEq$ {
2886
+ /** @deprecated use `OrEq$inboundSchema` instead. */
2887
+ const inboundSchema: z.ZodType<OrEq, z.ZodTypeDef, unknown>;
2888
+ /** @deprecated use `OrEq$outboundSchema` instead. */
2889
+ const outboundSchema: z.ZodType<OrEq$Outbound, z.ZodTypeDef, OrEq>;
2890
+ /** @deprecated use `OrEq$Outbound` instead. */
2891
+ type Outbound = OrEq$Outbound;
2892
2892
  }
2893
- export declare function dollarOrDollarEqToJSON(dollarOrDollarEq: DollarOrDollarEq): string;
2894
- export declare function dollarOrDollarEqFromJSON(jsonString: string): SafeParseResult<DollarOrDollarEq, SDKValidationError>;
2893
+ export declare function orEqToJSON(orEq: OrEq): string;
2894
+ export declare function orEqFromJSON(jsonString: string): SafeParseResult<OrEq, SDKValidationError>;
2895
2895
  /** @internal */
2896
- export declare const DeploymentsDollarOrDollarEq$inboundSchema: z.ZodType<DeploymentsDollarOrDollarEq, z.ZodTypeDef, unknown>;
2896
+ export declare const DeploymentsOrEq$inboundSchema: z.ZodType<DeploymentsOrEq, z.ZodTypeDef, unknown>;
2897
2897
  /** @internal */
2898
- export type DeploymentsDollarOrDollarEq$Outbound = {
2899
- $eq: string | number | boolean;
2898
+ export type DeploymentsOrEq$Outbound = {
2899
+ eq: string | number | boolean;
2900
2900
  };
2901
2901
  /** @internal */
2902
- export declare const DeploymentsDollarOrDollarEq$outboundSchema: z.ZodType<DeploymentsDollarOrDollarEq$Outbound, z.ZodTypeDef, DeploymentsDollarOrDollarEq>;
2902
+ export declare const DeploymentsOrEq$outboundSchema: z.ZodType<DeploymentsOrEq$Outbound, z.ZodTypeDef, DeploymentsOrEq>;
2903
2903
  /**
2904
2904
  * @internal
2905
2905
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2906
2906
  */
2907
- export declare namespace DeploymentsDollarOrDollarEq$ {
2908
- /** @deprecated use `DeploymentsDollarOrDollarEq$inboundSchema` instead. */
2909
- const inboundSchema: z.ZodType<DeploymentsDollarOrDollarEq, z.ZodTypeDef, unknown>;
2910
- /** @deprecated use `DeploymentsDollarOrDollarEq$outboundSchema` instead. */
2911
- const outboundSchema: z.ZodType<DeploymentsDollarOrDollarEq$Outbound, z.ZodTypeDef, DeploymentsDollarOrDollarEq>;
2912
- /** @deprecated use `DeploymentsDollarOrDollarEq$Outbound` instead. */
2913
- type Outbound = DeploymentsDollarOrDollarEq$Outbound;
2907
+ export declare namespace DeploymentsOrEq$ {
2908
+ /** @deprecated use `DeploymentsOrEq$inboundSchema` instead. */
2909
+ const inboundSchema: z.ZodType<DeploymentsOrEq, z.ZodTypeDef, unknown>;
2910
+ /** @deprecated use `DeploymentsOrEq$outboundSchema` instead. */
2911
+ const outboundSchema: z.ZodType<DeploymentsOrEq$Outbound, z.ZodTypeDef, DeploymentsOrEq>;
2912
+ /** @deprecated use `DeploymentsOrEq$Outbound` instead. */
2913
+ type Outbound = DeploymentsOrEq$Outbound;
2914
2914
  }
2915
- export declare function deploymentsDollarOrDollarEqToJSON(deploymentsDollarOrDollarEq: DeploymentsDollarOrDollarEq): string;
2916
- export declare function deploymentsDollarOrDollarEqFromJSON(jsonString: string): SafeParseResult<DeploymentsDollarOrDollarEq, SDKValidationError>;
2915
+ export declare function deploymentsOrEqToJSON(deploymentsOrEq: DeploymentsOrEq): string;
2916
+ export declare function deploymentsOrEqFromJSON(jsonString: string): SafeParseResult<DeploymentsOrEq, SDKValidationError>;
2917
2917
  /** @internal */
2918
- export declare const DollarOr$inboundSchema: z.ZodType<DollarOr, z.ZodTypeDef, unknown>;
2918
+ export declare const Or$inboundSchema: z.ZodType<Or, z.ZodTypeDef, unknown>;
2919
2919
  /** @internal */
2920
- export type DollarOr$Outbound = DeploymentsDollarOrDollarEq$Outbound | DeploymentsDollarOrDollarNe$Outbound | DollarOr3$Outbound | DollarOrDollarGte$Outbound | DollarOrDollarLt$Outbound | DollarOrDollarLte$Outbound | DeploymentsDollarOrDollarIn$Outbound | DeploymentsDollarOrDollarNin$Outbound | DollarOrDollarExists$Outbound;
2920
+ export type Or$Outbound = DeploymentsOrEq$Outbound | DeploymentsOrNe$Outbound | Or3$Outbound | OrGte$Outbound | OrLt$Outbound | OrLte$Outbound | DeploymentsOrIn$Outbound | DeploymentsOrNin$Outbound | OrExists$Outbound;
2921
2921
  /** @internal */
2922
- export declare const DollarOr$outboundSchema: z.ZodType<DollarOr$Outbound, z.ZodTypeDef, DollarOr>;
2922
+ export declare const Or$outboundSchema: z.ZodType<Or$Outbound, z.ZodTypeDef, Or>;
2923
2923
  /**
2924
2924
  * @internal
2925
2925
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2926
2926
  */
2927
- export declare namespace DollarOr$ {
2928
- /** @deprecated use `DollarOr$inboundSchema` instead. */
2929
- const inboundSchema: z.ZodType<DollarOr, z.ZodTypeDef, unknown>;
2930
- /** @deprecated use `DollarOr$outboundSchema` instead. */
2931
- const outboundSchema: z.ZodType<DollarOr$Outbound, z.ZodTypeDef, DollarOr>;
2932
- /** @deprecated use `DollarOr$Outbound` instead. */
2933
- type Outbound = DollarOr$Outbound;
2927
+ export declare namespace Or$ {
2928
+ /** @deprecated use `Or$inboundSchema` instead. */
2929
+ const inboundSchema: z.ZodType<Or, z.ZodTypeDef, unknown>;
2930
+ /** @deprecated use `Or$outboundSchema` instead. */
2931
+ const outboundSchema: z.ZodType<Or$Outbound, z.ZodTypeDef, Or>;
2932
+ /** @deprecated use `Or$Outbound` instead. */
2933
+ type Outbound = Or$Outbound;
2934
2934
  }
2935
- export declare function dollarOrToJSON(dollarOr: DollarOr): string;
2936
- export declare function dollarOrFromJSON(jsonString: string): SafeParseResult<DollarOr, SDKValidationError>;
2935
+ export declare function orToJSON(or: Or): string;
2936
+ export declare function orFromJSON(jsonString: string): SafeParseResult<Or, SDKValidationError>;
2937
2937
  /** @internal */
2938
- export declare const KnowledgeFilterDollarOr$inboundSchema: z.ZodType<KnowledgeFilterDollarOr, z.ZodTypeDef, unknown>;
2938
+ export declare const KnowledgeFilterOr$inboundSchema: z.ZodType<KnowledgeFilterOr, z.ZodTypeDef, unknown>;
2939
2939
  /** @internal */
2940
- export type KnowledgeFilterDollarOr$Outbound = {
2941
- $or: Array<{
2942
- [k: string]: DeploymentsDollarOrDollarEq$Outbound | DeploymentsDollarOrDollarNe$Outbound | DollarOr3$Outbound | DollarOrDollarGte$Outbound | DollarOrDollarLt$Outbound | DollarOrDollarLte$Outbound | DeploymentsDollarOrDollarIn$Outbound | DeploymentsDollarOrDollarNin$Outbound | DollarOrDollarExists$Outbound;
2940
+ export type KnowledgeFilterOr$Outbound = {
2941
+ or: Array<{
2942
+ [k: string]: DeploymentsOrEq$Outbound | DeploymentsOrNe$Outbound | Or3$Outbound | OrGte$Outbound | OrLt$Outbound | OrLte$Outbound | DeploymentsOrIn$Outbound | DeploymentsOrNin$Outbound | OrExists$Outbound;
2943
2943
  }>;
2944
2944
  };
2945
2945
  /** @internal */
2946
- export declare const KnowledgeFilterDollarOr$outboundSchema: z.ZodType<KnowledgeFilterDollarOr$Outbound, z.ZodTypeDef, KnowledgeFilterDollarOr>;
2946
+ export declare const KnowledgeFilterOr$outboundSchema: z.ZodType<KnowledgeFilterOr$Outbound, z.ZodTypeDef, KnowledgeFilterOr>;
2947
2947
  /**
2948
2948
  * @internal
2949
2949
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2950
2950
  */
2951
- export declare namespace KnowledgeFilterDollarOr$ {
2952
- /** @deprecated use `KnowledgeFilterDollarOr$inboundSchema` instead. */
2953
- const inboundSchema: z.ZodType<KnowledgeFilterDollarOr, z.ZodTypeDef, unknown>;
2954
- /** @deprecated use `KnowledgeFilterDollarOr$outboundSchema` instead. */
2955
- const outboundSchema: z.ZodType<KnowledgeFilterDollarOr$Outbound, z.ZodTypeDef, KnowledgeFilterDollarOr>;
2956
- /** @deprecated use `KnowledgeFilterDollarOr$Outbound` instead. */
2957
- type Outbound = KnowledgeFilterDollarOr$Outbound;
2951
+ export declare namespace KnowledgeFilterOr$ {
2952
+ /** @deprecated use `KnowledgeFilterOr$inboundSchema` instead. */
2953
+ const inboundSchema: z.ZodType<KnowledgeFilterOr, z.ZodTypeDef, unknown>;
2954
+ /** @deprecated use `KnowledgeFilterOr$outboundSchema` instead. */
2955
+ const outboundSchema: z.ZodType<KnowledgeFilterOr$Outbound, z.ZodTypeDef, KnowledgeFilterOr>;
2956
+ /** @deprecated use `KnowledgeFilterOr$Outbound` instead. */
2957
+ type Outbound = KnowledgeFilterOr$Outbound;
2958
2958
  }
2959
- export declare function knowledgeFilterDollarOrToJSON(knowledgeFilterDollarOr: KnowledgeFilterDollarOr): string;
2960
- export declare function knowledgeFilterDollarOrFromJSON(jsonString: string): SafeParseResult<KnowledgeFilterDollarOr, SDKValidationError>;
2959
+ export declare function knowledgeFilterOrToJSON(knowledgeFilterOr: KnowledgeFilterOr): string;
2960
+ export declare function knowledgeFilterOrFromJSON(jsonString: string): SafeParseResult<KnowledgeFilterOr, SDKValidationError>;
2961
2961
  /** @internal */
2962
- export declare const DollarAndDollarExists$inboundSchema: z.ZodType<DollarAndDollarExists, z.ZodTypeDef, unknown>;
2962
+ export declare const AndExists$inboundSchema: z.ZodType<AndExists, z.ZodTypeDef, unknown>;
2963
2963
  /** @internal */
2964
- export type DollarAndDollarExists$Outbound = {
2965
- $exists: boolean;
2964
+ export type AndExists$Outbound = {
2965
+ exists: boolean;
2966
2966
  };
2967
2967
  /** @internal */
2968
- export declare const DollarAndDollarExists$outboundSchema: z.ZodType<DollarAndDollarExists$Outbound, z.ZodTypeDef, DollarAndDollarExists>;
2968
+ export declare const AndExists$outboundSchema: z.ZodType<AndExists$Outbound, z.ZodTypeDef, AndExists>;
2969
2969
  /**
2970
2970
  * @internal
2971
2971
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2972
2972
  */
2973
- export declare namespace DollarAndDollarExists$ {
2974
- /** @deprecated use `DollarAndDollarExists$inboundSchema` instead. */
2975
- const inboundSchema: z.ZodType<DollarAndDollarExists, z.ZodTypeDef, unknown>;
2976
- /** @deprecated use `DollarAndDollarExists$outboundSchema` instead. */
2977
- const outboundSchema: z.ZodType<DollarAndDollarExists$Outbound, z.ZodTypeDef, DollarAndDollarExists>;
2978
- /** @deprecated use `DollarAndDollarExists$Outbound` instead. */
2979
- type Outbound = DollarAndDollarExists$Outbound;
2973
+ export declare namespace AndExists$ {
2974
+ /** @deprecated use `AndExists$inboundSchema` instead. */
2975
+ const inboundSchema: z.ZodType<AndExists, z.ZodTypeDef, unknown>;
2976
+ /** @deprecated use `AndExists$outboundSchema` instead. */
2977
+ const outboundSchema: z.ZodType<AndExists$Outbound, z.ZodTypeDef, AndExists>;
2978
+ /** @deprecated use `AndExists$Outbound` instead. */
2979
+ type Outbound = AndExists$Outbound;
2980
2980
  }
2981
- export declare function dollarAndDollarExistsToJSON(dollarAndDollarExists: DollarAndDollarExists): string;
2982
- export declare function dollarAndDollarExistsFromJSON(jsonString: string): SafeParseResult<DollarAndDollarExists, SDKValidationError>;
2981
+ export declare function andExistsToJSON(andExists: AndExists): string;
2982
+ export declare function andExistsFromJSON(jsonString: string): SafeParseResult<AndExists, SDKValidationError>;
2983
2983
  /** @internal */
2984
- export declare const DollarAndDollarNin$inboundSchema: z.ZodType<DollarAndDollarNin, z.ZodTypeDef, unknown>;
2984
+ export declare const AndNin$inboundSchema: z.ZodType<AndNin, z.ZodTypeDef, unknown>;
2985
2985
  /** @internal */
2986
- export type DollarAndDollarNin$Outbound = string | number | boolean;
2986
+ export type AndNin$Outbound = string | number | boolean;
2987
2987
  /** @internal */
2988
- export declare const DollarAndDollarNin$outboundSchema: z.ZodType<DollarAndDollarNin$Outbound, z.ZodTypeDef, DollarAndDollarNin>;
2988
+ export declare const AndNin$outboundSchema: z.ZodType<AndNin$Outbound, z.ZodTypeDef, AndNin>;
2989
2989
  /**
2990
2990
  * @internal
2991
2991
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2992
2992
  */
2993
- export declare namespace DollarAndDollarNin$ {
2994
- /** @deprecated use `DollarAndDollarNin$inboundSchema` instead. */
2995
- const inboundSchema: z.ZodType<DollarAndDollarNin, z.ZodTypeDef, unknown>;
2996
- /** @deprecated use `DollarAndDollarNin$outboundSchema` instead. */
2997
- const outboundSchema: z.ZodType<DollarAndDollarNin$Outbound, z.ZodTypeDef, DollarAndDollarNin>;
2998
- /** @deprecated use `DollarAndDollarNin$Outbound` instead. */
2999
- type Outbound = DollarAndDollarNin$Outbound;
2993
+ export declare namespace AndNin$ {
2994
+ /** @deprecated use `AndNin$inboundSchema` instead. */
2995
+ const inboundSchema: z.ZodType<AndNin, z.ZodTypeDef, unknown>;
2996
+ /** @deprecated use `AndNin$outboundSchema` instead. */
2997
+ const outboundSchema: z.ZodType<AndNin$Outbound, z.ZodTypeDef, AndNin>;
2998
+ /** @deprecated use `AndNin$Outbound` instead. */
2999
+ type Outbound = AndNin$Outbound;
3000
3000
  }
3001
- export declare function dollarAndDollarNinToJSON(dollarAndDollarNin: DollarAndDollarNin): string;
3002
- export declare function dollarAndDollarNinFromJSON(jsonString: string): SafeParseResult<DollarAndDollarNin, SDKValidationError>;
3001
+ export declare function andNinToJSON(andNin: AndNin): string;
3002
+ export declare function andNinFromJSON(jsonString: string): SafeParseResult<AndNin, SDKValidationError>;
3003
3003
  /** @internal */
3004
- export declare const DeploymentsDollarAndDollarNin$inboundSchema: z.ZodType<DeploymentsDollarAndDollarNin, z.ZodTypeDef, unknown>;
3004
+ export declare const DeploymentsAndNin$inboundSchema: z.ZodType<DeploymentsAndNin, z.ZodTypeDef, unknown>;
3005
3005
  /** @internal */
3006
- export type DeploymentsDollarAndDollarNin$Outbound = {
3007
- $nin: Array<string | number | boolean>;
3006
+ export type DeploymentsAndNin$Outbound = {
3007
+ nin: Array<string | number | boolean>;
3008
3008
  };
3009
3009
  /** @internal */
3010
- export declare const DeploymentsDollarAndDollarNin$outboundSchema: z.ZodType<DeploymentsDollarAndDollarNin$Outbound, z.ZodTypeDef, DeploymentsDollarAndDollarNin>;
3010
+ export declare const DeploymentsAndNin$outboundSchema: z.ZodType<DeploymentsAndNin$Outbound, z.ZodTypeDef, DeploymentsAndNin>;
3011
3011
  /**
3012
3012
  * @internal
3013
3013
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3014
3014
  */
3015
- export declare namespace DeploymentsDollarAndDollarNin$ {
3016
- /** @deprecated use `DeploymentsDollarAndDollarNin$inboundSchema` instead. */
3017
- const inboundSchema: z.ZodType<DeploymentsDollarAndDollarNin, z.ZodTypeDef, unknown>;
3018
- /** @deprecated use `DeploymentsDollarAndDollarNin$outboundSchema` instead. */
3019
- const outboundSchema: z.ZodType<DeploymentsDollarAndDollarNin$Outbound, z.ZodTypeDef, DeploymentsDollarAndDollarNin>;
3020
- /** @deprecated use `DeploymentsDollarAndDollarNin$Outbound` instead. */
3021
- type Outbound = DeploymentsDollarAndDollarNin$Outbound;
3015
+ export declare namespace DeploymentsAndNin$ {
3016
+ /** @deprecated use `DeploymentsAndNin$inboundSchema` instead. */
3017
+ const inboundSchema: z.ZodType<DeploymentsAndNin, z.ZodTypeDef, unknown>;
3018
+ /** @deprecated use `DeploymentsAndNin$outboundSchema` instead. */
3019
+ const outboundSchema: z.ZodType<DeploymentsAndNin$Outbound, z.ZodTypeDef, DeploymentsAndNin>;
3020
+ /** @deprecated use `DeploymentsAndNin$Outbound` instead. */
3021
+ type Outbound = DeploymentsAndNin$Outbound;
3022
3022
  }
3023
- export declare function deploymentsDollarAndDollarNinToJSON(deploymentsDollarAndDollarNin: DeploymentsDollarAndDollarNin): string;
3024
- export declare function deploymentsDollarAndDollarNinFromJSON(jsonString: string): SafeParseResult<DeploymentsDollarAndDollarNin, SDKValidationError>;
3023
+ export declare function deploymentsAndNinToJSON(deploymentsAndNin: DeploymentsAndNin): string;
3024
+ export declare function deploymentsAndNinFromJSON(jsonString: string): SafeParseResult<DeploymentsAndNin, SDKValidationError>;
3025
3025
  /** @internal */
3026
- export declare const DollarAndDollarIn$inboundSchema: z.ZodType<DollarAndDollarIn, z.ZodTypeDef, unknown>;
3026
+ export declare const AndIn$inboundSchema: z.ZodType<AndIn, z.ZodTypeDef, unknown>;
3027
3027
  /** @internal */
3028
- export type DollarAndDollarIn$Outbound = string | number | boolean;
3028
+ export type AndIn$Outbound = string | number | boolean;
3029
3029
  /** @internal */
3030
- export declare const DollarAndDollarIn$outboundSchema: z.ZodType<DollarAndDollarIn$Outbound, z.ZodTypeDef, DollarAndDollarIn>;
3030
+ export declare const AndIn$outboundSchema: z.ZodType<AndIn$Outbound, z.ZodTypeDef, AndIn>;
3031
3031
  /**
3032
3032
  * @internal
3033
3033
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3034
3034
  */
3035
- export declare namespace DollarAndDollarIn$ {
3036
- /** @deprecated use `DollarAndDollarIn$inboundSchema` instead. */
3037
- const inboundSchema: z.ZodType<DollarAndDollarIn, z.ZodTypeDef, unknown>;
3038
- /** @deprecated use `DollarAndDollarIn$outboundSchema` instead. */
3039
- const outboundSchema: z.ZodType<DollarAndDollarIn$Outbound, z.ZodTypeDef, DollarAndDollarIn>;
3040
- /** @deprecated use `DollarAndDollarIn$Outbound` instead. */
3041
- type Outbound = DollarAndDollarIn$Outbound;
3035
+ export declare namespace AndIn$ {
3036
+ /** @deprecated use `AndIn$inboundSchema` instead. */
3037
+ const inboundSchema: z.ZodType<AndIn, z.ZodTypeDef, unknown>;
3038
+ /** @deprecated use `AndIn$outboundSchema` instead. */
3039
+ const outboundSchema: z.ZodType<AndIn$Outbound, z.ZodTypeDef, AndIn>;
3040
+ /** @deprecated use `AndIn$Outbound` instead. */
3041
+ type Outbound = AndIn$Outbound;
3042
3042
  }
3043
- export declare function dollarAndDollarInToJSON(dollarAndDollarIn: DollarAndDollarIn): string;
3044
- export declare function dollarAndDollarInFromJSON(jsonString: string): SafeParseResult<DollarAndDollarIn, SDKValidationError>;
3043
+ export declare function andInToJSON(andIn: AndIn): string;
3044
+ export declare function andInFromJSON(jsonString: string): SafeParseResult<AndIn, SDKValidationError>;
3045
3045
  /** @internal */
3046
- export declare const DeploymentsDollarAndDollarIn$inboundSchema: z.ZodType<DeploymentsDollarAndDollarIn, z.ZodTypeDef, unknown>;
3046
+ export declare const DeploymentsAndIn$inboundSchema: z.ZodType<DeploymentsAndIn, z.ZodTypeDef, unknown>;
3047
3047
  /** @internal */
3048
- export type DeploymentsDollarAndDollarIn$Outbound = {
3049
- $in: Array<string | number | boolean>;
3048
+ export type DeploymentsAndIn$Outbound = {
3049
+ in: Array<string | number | boolean>;
3050
3050
  };
3051
3051
  /** @internal */
3052
- export declare const DeploymentsDollarAndDollarIn$outboundSchema: z.ZodType<DeploymentsDollarAndDollarIn$Outbound, z.ZodTypeDef, DeploymentsDollarAndDollarIn>;
3052
+ export declare const DeploymentsAndIn$outboundSchema: z.ZodType<DeploymentsAndIn$Outbound, z.ZodTypeDef, DeploymentsAndIn>;
3053
3053
  /**
3054
3054
  * @internal
3055
3055
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3056
3056
  */
3057
- export declare namespace DeploymentsDollarAndDollarIn$ {
3058
- /** @deprecated use `DeploymentsDollarAndDollarIn$inboundSchema` instead. */
3059
- const inboundSchema: z.ZodType<DeploymentsDollarAndDollarIn, z.ZodTypeDef, unknown>;
3060
- /** @deprecated use `DeploymentsDollarAndDollarIn$outboundSchema` instead. */
3061
- const outboundSchema: z.ZodType<DeploymentsDollarAndDollarIn$Outbound, z.ZodTypeDef, DeploymentsDollarAndDollarIn>;
3062
- /** @deprecated use `DeploymentsDollarAndDollarIn$Outbound` instead. */
3063
- type Outbound = DeploymentsDollarAndDollarIn$Outbound;
3057
+ export declare namespace DeploymentsAndIn$ {
3058
+ /** @deprecated use `DeploymentsAndIn$inboundSchema` instead. */
3059
+ const inboundSchema: z.ZodType<DeploymentsAndIn, z.ZodTypeDef, unknown>;
3060
+ /** @deprecated use `DeploymentsAndIn$outboundSchema` instead. */
3061
+ const outboundSchema: z.ZodType<DeploymentsAndIn$Outbound, z.ZodTypeDef, DeploymentsAndIn>;
3062
+ /** @deprecated use `DeploymentsAndIn$Outbound` instead. */
3063
+ type Outbound = DeploymentsAndIn$Outbound;
3064
3064
  }
3065
- export declare function deploymentsDollarAndDollarInToJSON(deploymentsDollarAndDollarIn: DeploymentsDollarAndDollarIn): string;
3066
- export declare function deploymentsDollarAndDollarInFromJSON(jsonString: string): SafeParseResult<DeploymentsDollarAndDollarIn, SDKValidationError>;
3065
+ export declare function deploymentsAndInToJSON(deploymentsAndIn: DeploymentsAndIn): string;
3066
+ export declare function deploymentsAndInFromJSON(jsonString: string): SafeParseResult<DeploymentsAndIn, SDKValidationError>;
3067
3067
  /** @internal */
3068
- export declare const DollarAndDollarLte$inboundSchema: z.ZodType<DollarAndDollarLte, z.ZodTypeDef, unknown>;
3068
+ export declare const AndLte$inboundSchema: z.ZodType<AndLte, z.ZodTypeDef, unknown>;
3069
3069
  /** @internal */
3070
- export type DollarAndDollarLte$Outbound = {
3071
- $lte: number;
3070
+ export type AndLte$Outbound = {
3071
+ lte: number;
3072
3072
  };
3073
3073
  /** @internal */
3074
- export declare const DollarAndDollarLte$outboundSchema: z.ZodType<DollarAndDollarLte$Outbound, z.ZodTypeDef, DollarAndDollarLte>;
3074
+ export declare const AndLte$outboundSchema: z.ZodType<AndLte$Outbound, z.ZodTypeDef, AndLte>;
3075
3075
  /**
3076
3076
  * @internal
3077
3077
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3078
3078
  */
3079
- export declare namespace DollarAndDollarLte$ {
3080
- /** @deprecated use `DollarAndDollarLte$inboundSchema` instead. */
3081
- const inboundSchema: z.ZodType<DollarAndDollarLte, z.ZodTypeDef, unknown>;
3082
- /** @deprecated use `DollarAndDollarLte$outboundSchema` instead. */
3083
- const outboundSchema: z.ZodType<DollarAndDollarLte$Outbound, z.ZodTypeDef, DollarAndDollarLte>;
3084
- /** @deprecated use `DollarAndDollarLte$Outbound` instead. */
3085
- type Outbound = DollarAndDollarLte$Outbound;
3079
+ export declare namespace AndLte$ {
3080
+ /** @deprecated use `AndLte$inboundSchema` instead. */
3081
+ const inboundSchema: z.ZodType<AndLte, z.ZodTypeDef, unknown>;
3082
+ /** @deprecated use `AndLte$outboundSchema` instead. */
3083
+ const outboundSchema: z.ZodType<AndLte$Outbound, z.ZodTypeDef, AndLte>;
3084
+ /** @deprecated use `AndLte$Outbound` instead. */
3085
+ type Outbound = AndLte$Outbound;
3086
3086
  }
3087
- export declare function dollarAndDollarLteToJSON(dollarAndDollarLte: DollarAndDollarLte): string;
3088
- export declare function dollarAndDollarLteFromJSON(jsonString: string): SafeParseResult<DollarAndDollarLte, SDKValidationError>;
3087
+ export declare function andLteToJSON(andLte: AndLte): string;
3088
+ export declare function andLteFromJSON(jsonString: string): SafeParseResult<AndLte, SDKValidationError>;
3089
3089
  /** @internal */
3090
- export declare const DollarAndDollarLt$inboundSchema: z.ZodType<DollarAndDollarLt, z.ZodTypeDef, unknown>;
3090
+ export declare const AndLt$inboundSchema: z.ZodType<AndLt, z.ZodTypeDef, unknown>;
3091
3091
  /** @internal */
3092
- export type DollarAndDollarLt$Outbound = {
3093
- $lt: number;
3092
+ export type AndLt$Outbound = {
3093
+ lt: number;
3094
3094
  };
3095
3095
  /** @internal */
3096
- export declare const DollarAndDollarLt$outboundSchema: z.ZodType<DollarAndDollarLt$Outbound, z.ZodTypeDef, DollarAndDollarLt>;
3096
+ export declare const AndLt$outboundSchema: z.ZodType<AndLt$Outbound, z.ZodTypeDef, AndLt>;
3097
3097
  /**
3098
3098
  * @internal
3099
3099
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3100
3100
  */
3101
- export declare namespace DollarAndDollarLt$ {
3102
- /** @deprecated use `DollarAndDollarLt$inboundSchema` instead. */
3103
- const inboundSchema: z.ZodType<DollarAndDollarLt, z.ZodTypeDef, unknown>;
3104
- /** @deprecated use `DollarAndDollarLt$outboundSchema` instead. */
3105
- const outboundSchema: z.ZodType<DollarAndDollarLt$Outbound, z.ZodTypeDef, DollarAndDollarLt>;
3106
- /** @deprecated use `DollarAndDollarLt$Outbound` instead. */
3107
- type Outbound = DollarAndDollarLt$Outbound;
3101
+ export declare namespace AndLt$ {
3102
+ /** @deprecated use `AndLt$inboundSchema` instead. */
3103
+ const inboundSchema: z.ZodType<AndLt, z.ZodTypeDef, unknown>;
3104
+ /** @deprecated use `AndLt$outboundSchema` instead. */
3105
+ const outboundSchema: z.ZodType<AndLt$Outbound, z.ZodTypeDef, AndLt>;
3106
+ /** @deprecated use `AndLt$Outbound` instead. */
3107
+ type Outbound = AndLt$Outbound;
3108
3108
  }
3109
- export declare function dollarAndDollarLtToJSON(dollarAndDollarLt: DollarAndDollarLt): string;
3110
- export declare function dollarAndDollarLtFromJSON(jsonString: string): SafeParseResult<DollarAndDollarLt, SDKValidationError>;
3109
+ export declare function andLtToJSON(andLt: AndLt): string;
3110
+ export declare function andLtFromJSON(jsonString: string): SafeParseResult<AndLt, SDKValidationError>;
3111
3111
  /** @internal */
3112
- export declare const DollarAndDollarGte$inboundSchema: z.ZodType<DollarAndDollarGte, z.ZodTypeDef, unknown>;
3112
+ export declare const AndGte$inboundSchema: z.ZodType<AndGte, z.ZodTypeDef, unknown>;
3113
3113
  /** @internal */
3114
- export type DollarAndDollarGte$Outbound = {
3115
- $gte: number;
3114
+ export type AndGte$Outbound = {
3115
+ gte: number;
3116
3116
  };
3117
3117
  /** @internal */
3118
- export declare const DollarAndDollarGte$outboundSchema: z.ZodType<DollarAndDollarGte$Outbound, z.ZodTypeDef, DollarAndDollarGte>;
3118
+ export declare const AndGte$outboundSchema: z.ZodType<AndGte$Outbound, z.ZodTypeDef, AndGte>;
3119
3119
  /**
3120
3120
  * @internal
3121
3121
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3122
3122
  */
3123
- export declare namespace DollarAndDollarGte$ {
3124
- /** @deprecated use `DollarAndDollarGte$inboundSchema` instead. */
3125
- const inboundSchema: z.ZodType<DollarAndDollarGte, z.ZodTypeDef, unknown>;
3126
- /** @deprecated use `DollarAndDollarGte$outboundSchema` instead. */
3127
- const outboundSchema: z.ZodType<DollarAndDollarGte$Outbound, z.ZodTypeDef, DollarAndDollarGte>;
3128
- /** @deprecated use `DollarAndDollarGte$Outbound` instead. */
3129
- type Outbound = DollarAndDollarGte$Outbound;
3123
+ export declare namespace AndGte$ {
3124
+ /** @deprecated use `AndGte$inboundSchema` instead. */
3125
+ const inboundSchema: z.ZodType<AndGte, z.ZodTypeDef, unknown>;
3126
+ /** @deprecated use `AndGte$outboundSchema` instead. */
3127
+ const outboundSchema: z.ZodType<AndGte$Outbound, z.ZodTypeDef, AndGte>;
3128
+ /** @deprecated use `AndGte$Outbound` instead. */
3129
+ type Outbound = AndGte$Outbound;
3130
3130
  }
3131
- export declare function dollarAndDollarGteToJSON(dollarAndDollarGte: DollarAndDollarGte): string;
3132
- export declare function dollarAndDollarGteFromJSON(jsonString: string): SafeParseResult<DollarAndDollarGte, SDKValidationError>;
3131
+ export declare function andGteToJSON(andGte: AndGte): string;
3132
+ export declare function andGteFromJSON(jsonString: string): SafeParseResult<AndGte, SDKValidationError>;
3133
3133
  /** @internal */
3134
- export declare const DollarAnd3$inboundSchema: z.ZodType<DollarAnd3, z.ZodTypeDef, unknown>;
3134
+ export declare const And3$inboundSchema: z.ZodType<And3, z.ZodTypeDef, unknown>;
3135
3135
  /** @internal */
3136
- export type DollarAnd3$Outbound = {
3137
- $gt: number;
3136
+ export type And3$Outbound = {
3137
+ gt: number;
3138
3138
  };
3139
3139
  /** @internal */
3140
- export declare const DollarAnd3$outboundSchema: z.ZodType<DollarAnd3$Outbound, z.ZodTypeDef, DollarAnd3>;
3140
+ export declare const And3$outboundSchema: z.ZodType<And3$Outbound, z.ZodTypeDef, And3>;
3141
3141
  /**
3142
3142
  * @internal
3143
3143
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3144
3144
  */
3145
- export declare namespace DollarAnd3$ {
3146
- /** @deprecated use `DollarAnd3$inboundSchema` instead. */
3147
- const inboundSchema: z.ZodType<DollarAnd3, z.ZodTypeDef, unknown>;
3148
- /** @deprecated use `DollarAnd3$outboundSchema` instead. */
3149
- const outboundSchema: z.ZodType<DollarAnd3$Outbound, z.ZodTypeDef, DollarAnd3>;
3150
- /** @deprecated use `DollarAnd3$Outbound` instead. */
3151
- type Outbound = DollarAnd3$Outbound;
3145
+ export declare namespace And3$ {
3146
+ /** @deprecated use `And3$inboundSchema` instead. */
3147
+ const inboundSchema: z.ZodType<And3, z.ZodTypeDef, unknown>;
3148
+ /** @deprecated use `And3$outboundSchema` instead. */
3149
+ const outboundSchema: z.ZodType<And3$Outbound, z.ZodTypeDef, And3>;
3150
+ /** @deprecated use `And3$Outbound` instead. */
3151
+ type Outbound = And3$Outbound;
3152
3152
  }
3153
- export declare function dollarAnd3ToJSON(dollarAnd3: DollarAnd3): string;
3154
- export declare function dollarAnd3FromJSON(jsonString: string): SafeParseResult<DollarAnd3, SDKValidationError>;
3153
+ export declare function and3ToJSON(and3: And3): string;
3154
+ export declare function and3FromJSON(jsonString: string): SafeParseResult<And3, SDKValidationError>;
3155
3155
  /** @internal */
3156
- export declare const DollarAndDollarNe$inboundSchema: z.ZodType<DollarAndDollarNe, z.ZodTypeDef, unknown>;
3156
+ export declare const AndNe$inboundSchema: z.ZodType<AndNe, z.ZodTypeDef, unknown>;
3157
3157
  /** @internal */
3158
- export type DollarAndDollarNe$Outbound = string | number | boolean;
3158
+ export type AndNe$Outbound = string | number | boolean;
3159
3159
  /** @internal */
3160
- export declare const DollarAndDollarNe$outboundSchema: z.ZodType<DollarAndDollarNe$Outbound, z.ZodTypeDef, DollarAndDollarNe>;
3160
+ export declare const AndNe$outboundSchema: z.ZodType<AndNe$Outbound, z.ZodTypeDef, AndNe>;
3161
3161
  /**
3162
3162
  * @internal
3163
3163
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3164
3164
  */
3165
- export declare namespace DollarAndDollarNe$ {
3166
- /** @deprecated use `DollarAndDollarNe$inboundSchema` instead. */
3167
- const inboundSchema: z.ZodType<DollarAndDollarNe, z.ZodTypeDef, unknown>;
3168
- /** @deprecated use `DollarAndDollarNe$outboundSchema` instead. */
3169
- const outboundSchema: z.ZodType<DollarAndDollarNe$Outbound, z.ZodTypeDef, DollarAndDollarNe>;
3170
- /** @deprecated use `DollarAndDollarNe$Outbound` instead. */
3171
- type Outbound = DollarAndDollarNe$Outbound;
3165
+ export declare namespace AndNe$ {
3166
+ /** @deprecated use `AndNe$inboundSchema` instead. */
3167
+ const inboundSchema: z.ZodType<AndNe, z.ZodTypeDef, unknown>;
3168
+ /** @deprecated use `AndNe$outboundSchema` instead. */
3169
+ const outboundSchema: z.ZodType<AndNe$Outbound, z.ZodTypeDef, AndNe>;
3170
+ /** @deprecated use `AndNe$Outbound` instead. */
3171
+ type Outbound = AndNe$Outbound;
3172
3172
  }
3173
- export declare function dollarAndDollarNeToJSON(dollarAndDollarNe: DollarAndDollarNe): string;
3174
- export declare function dollarAndDollarNeFromJSON(jsonString: string): SafeParseResult<DollarAndDollarNe, SDKValidationError>;
3173
+ export declare function andNeToJSON(andNe: AndNe): string;
3174
+ export declare function andNeFromJSON(jsonString: string): SafeParseResult<AndNe, SDKValidationError>;
3175
3175
  /** @internal */
3176
- export declare const DeploymentsDollarAndDollarNe$inboundSchema: z.ZodType<DeploymentsDollarAndDollarNe, z.ZodTypeDef, unknown>;
3176
+ export declare const DeploymentsAndNe$inboundSchema: z.ZodType<DeploymentsAndNe, z.ZodTypeDef, unknown>;
3177
3177
  /** @internal */
3178
- export type DeploymentsDollarAndDollarNe$Outbound = {
3179
- $ne: string | number | boolean;
3178
+ export type DeploymentsAndNe$Outbound = {
3179
+ ne: string | number | boolean;
3180
3180
  };
3181
3181
  /** @internal */
3182
- export declare const DeploymentsDollarAndDollarNe$outboundSchema: z.ZodType<DeploymentsDollarAndDollarNe$Outbound, z.ZodTypeDef, DeploymentsDollarAndDollarNe>;
3182
+ export declare const DeploymentsAndNe$outboundSchema: z.ZodType<DeploymentsAndNe$Outbound, z.ZodTypeDef, DeploymentsAndNe>;
3183
3183
  /**
3184
3184
  * @internal
3185
3185
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3186
3186
  */
3187
- export declare namespace DeploymentsDollarAndDollarNe$ {
3188
- /** @deprecated use `DeploymentsDollarAndDollarNe$inboundSchema` instead. */
3189
- const inboundSchema: z.ZodType<DeploymentsDollarAndDollarNe, z.ZodTypeDef, unknown>;
3190
- /** @deprecated use `DeploymentsDollarAndDollarNe$outboundSchema` instead. */
3191
- const outboundSchema: z.ZodType<DeploymentsDollarAndDollarNe$Outbound, z.ZodTypeDef, DeploymentsDollarAndDollarNe>;
3192
- /** @deprecated use `DeploymentsDollarAndDollarNe$Outbound` instead. */
3193
- type Outbound = DeploymentsDollarAndDollarNe$Outbound;
3187
+ export declare namespace DeploymentsAndNe$ {
3188
+ /** @deprecated use `DeploymentsAndNe$inboundSchema` instead. */
3189
+ const inboundSchema: z.ZodType<DeploymentsAndNe, z.ZodTypeDef, unknown>;
3190
+ /** @deprecated use `DeploymentsAndNe$outboundSchema` instead. */
3191
+ const outboundSchema: z.ZodType<DeploymentsAndNe$Outbound, z.ZodTypeDef, DeploymentsAndNe>;
3192
+ /** @deprecated use `DeploymentsAndNe$Outbound` instead. */
3193
+ type Outbound = DeploymentsAndNe$Outbound;
3194
3194
  }
3195
- export declare function deploymentsDollarAndDollarNeToJSON(deploymentsDollarAndDollarNe: DeploymentsDollarAndDollarNe): string;
3196
- export declare function deploymentsDollarAndDollarNeFromJSON(jsonString: string): SafeParseResult<DeploymentsDollarAndDollarNe, SDKValidationError>;
3195
+ export declare function deploymentsAndNeToJSON(deploymentsAndNe: DeploymentsAndNe): string;
3196
+ export declare function deploymentsAndNeFromJSON(jsonString: string): SafeParseResult<DeploymentsAndNe, SDKValidationError>;
3197
3197
  /** @internal */
3198
- export declare const DollarAndDollarEq$inboundSchema: z.ZodType<DollarAndDollarEq, z.ZodTypeDef, unknown>;
3198
+ export declare const AndEq$inboundSchema: z.ZodType<AndEq, z.ZodTypeDef, unknown>;
3199
3199
  /** @internal */
3200
- export type DollarAndDollarEq$Outbound = string | number | boolean;
3200
+ export type AndEq$Outbound = string | number | boolean;
3201
3201
  /** @internal */
3202
- export declare const DollarAndDollarEq$outboundSchema: z.ZodType<DollarAndDollarEq$Outbound, z.ZodTypeDef, DollarAndDollarEq>;
3202
+ export declare const AndEq$outboundSchema: z.ZodType<AndEq$Outbound, z.ZodTypeDef, AndEq>;
3203
3203
  /**
3204
3204
  * @internal
3205
3205
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3206
3206
  */
3207
- export declare namespace DollarAndDollarEq$ {
3208
- /** @deprecated use `DollarAndDollarEq$inboundSchema` instead. */
3209
- const inboundSchema: z.ZodType<DollarAndDollarEq, z.ZodTypeDef, unknown>;
3210
- /** @deprecated use `DollarAndDollarEq$outboundSchema` instead. */
3211
- const outboundSchema: z.ZodType<DollarAndDollarEq$Outbound, z.ZodTypeDef, DollarAndDollarEq>;
3212
- /** @deprecated use `DollarAndDollarEq$Outbound` instead. */
3213
- type Outbound = DollarAndDollarEq$Outbound;
3207
+ export declare namespace AndEq$ {
3208
+ /** @deprecated use `AndEq$inboundSchema` instead. */
3209
+ const inboundSchema: z.ZodType<AndEq, z.ZodTypeDef, unknown>;
3210
+ /** @deprecated use `AndEq$outboundSchema` instead. */
3211
+ const outboundSchema: z.ZodType<AndEq$Outbound, z.ZodTypeDef, AndEq>;
3212
+ /** @deprecated use `AndEq$Outbound` instead. */
3213
+ type Outbound = AndEq$Outbound;
3214
3214
  }
3215
- export declare function dollarAndDollarEqToJSON(dollarAndDollarEq: DollarAndDollarEq): string;
3216
- export declare function dollarAndDollarEqFromJSON(jsonString: string): SafeParseResult<DollarAndDollarEq, SDKValidationError>;
3215
+ export declare function andEqToJSON(andEq: AndEq): string;
3216
+ export declare function andEqFromJSON(jsonString: string): SafeParseResult<AndEq, SDKValidationError>;
3217
3217
  /** @internal */
3218
- export declare const DeploymentsDollarAndDollarEq$inboundSchema: z.ZodType<DeploymentsDollarAndDollarEq, z.ZodTypeDef, unknown>;
3218
+ export declare const DeploymentsAndEq$inboundSchema: z.ZodType<DeploymentsAndEq, z.ZodTypeDef, unknown>;
3219
3219
  /** @internal */
3220
- export type DeploymentsDollarAndDollarEq$Outbound = {
3221
- $eq: string | number | boolean;
3220
+ export type DeploymentsAndEq$Outbound = {
3221
+ eq: string | number | boolean;
3222
3222
  };
3223
3223
  /** @internal */
3224
- export declare const DeploymentsDollarAndDollarEq$outboundSchema: z.ZodType<DeploymentsDollarAndDollarEq$Outbound, z.ZodTypeDef, DeploymentsDollarAndDollarEq>;
3224
+ export declare const DeploymentsAndEq$outboundSchema: z.ZodType<DeploymentsAndEq$Outbound, z.ZodTypeDef, DeploymentsAndEq>;
3225
3225
  /**
3226
3226
  * @internal
3227
3227
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3228
3228
  */
3229
- export declare namespace DeploymentsDollarAndDollarEq$ {
3230
- /** @deprecated use `DeploymentsDollarAndDollarEq$inboundSchema` instead. */
3231
- const inboundSchema: z.ZodType<DeploymentsDollarAndDollarEq, z.ZodTypeDef, unknown>;
3232
- /** @deprecated use `DeploymentsDollarAndDollarEq$outboundSchema` instead. */
3233
- const outboundSchema: z.ZodType<DeploymentsDollarAndDollarEq$Outbound, z.ZodTypeDef, DeploymentsDollarAndDollarEq>;
3234
- /** @deprecated use `DeploymentsDollarAndDollarEq$Outbound` instead. */
3235
- type Outbound = DeploymentsDollarAndDollarEq$Outbound;
3229
+ export declare namespace DeploymentsAndEq$ {
3230
+ /** @deprecated use `DeploymentsAndEq$inboundSchema` instead. */
3231
+ const inboundSchema: z.ZodType<DeploymentsAndEq, z.ZodTypeDef, unknown>;
3232
+ /** @deprecated use `DeploymentsAndEq$outboundSchema` instead. */
3233
+ const outboundSchema: z.ZodType<DeploymentsAndEq$Outbound, z.ZodTypeDef, DeploymentsAndEq>;
3234
+ /** @deprecated use `DeploymentsAndEq$Outbound` instead. */
3235
+ type Outbound = DeploymentsAndEq$Outbound;
3236
3236
  }
3237
- export declare function deploymentsDollarAndDollarEqToJSON(deploymentsDollarAndDollarEq: DeploymentsDollarAndDollarEq): string;
3238
- export declare function deploymentsDollarAndDollarEqFromJSON(jsonString: string): SafeParseResult<DeploymentsDollarAndDollarEq, SDKValidationError>;
3237
+ export declare function deploymentsAndEqToJSON(deploymentsAndEq: DeploymentsAndEq): string;
3238
+ export declare function deploymentsAndEqFromJSON(jsonString: string): SafeParseResult<DeploymentsAndEq, SDKValidationError>;
3239
3239
  /** @internal */
3240
- export declare const DollarAnd$inboundSchema: z.ZodType<DollarAnd, z.ZodTypeDef, unknown>;
3240
+ export declare const And$inboundSchema: z.ZodType<And, z.ZodTypeDef, unknown>;
3241
3241
  /** @internal */
3242
- export type DollarAnd$Outbound = DeploymentsDollarAndDollarEq$Outbound | DeploymentsDollarAndDollarNe$Outbound | DollarAnd3$Outbound | DollarAndDollarGte$Outbound | DollarAndDollarLt$Outbound | DollarAndDollarLte$Outbound | DeploymentsDollarAndDollarIn$Outbound | DeploymentsDollarAndDollarNin$Outbound | DollarAndDollarExists$Outbound;
3242
+ export type And$Outbound = DeploymentsAndEq$Outbound | DeploymentsAndNe$Outbound | And3$Outbound | AndGte$Outbound | AndLt$Outbound | AndLte$Outbound | DeploymentsAndIn$Outbound | DeploymentsAndNin$Outbound | AndExists$Outbound;
3243
3243
  /** @internal */
3244
- export declare const DollarAnd$outboundSchema: z.ZodType<DollarAnd$Outbound, z.ZodTypeDef, DollarAnd>;
3244
+ export declare const And$outboundSchema: z.ZodType<And$Outbound, z.ZodTypeDef, And>;
3245
3245
  /**
3246
3246
  * @internal
3247
3247
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3248
3248
  */
3249
- export declare namespace DollarAnd$ {
3250
- /** @deprecated use `DollarAnd$inboundSchema` instead. */
3251
- const inboundSchema: z.ZodType<DollarAnd, z.ZodTypeDef, unknown>;
3252
- /** @deprecated use `DollarAnd$outboundSchema` instead. */
3253
- const outboundSchema: z.ZodType<DollarAnd$Outbound, z.ZodTypeDef, DollarAnd>;
3254
- /** @deprecated use `DollarAnd$Outbound` instead. */
3255
- type Outbound = DollarAnd$Outbound;
3249
+ export declare namespace And$ {
3250
+ /** @deprecated use `And$inboundSchema` instead. */
3251
+ const inboundSchema: z.ZodType<And, z.ZodTypeDef, unknown>;
3252
+ /** @deprecated use `And$outboundSchema` instead. */
3253
+ const outboundSchema: z.ZodType<And$Outbound, z.ZodTypeDef, And>;
3254
+ /** @deprecated use `And$Outbound` instead. */
3255
+ type Outbound = And$Outbound;
3256
3256
  }
3257
- export declare function dollarAndToJSON(dollarAnd: DollarAnd): string;
3258
- export declare function dollarAndFromJSON(jsonString: string): SafeParseResult<DollarAnd, SDKValidationError>;
3257
+ export declare function andToJSON(and: And): string;
3258
+ export declare function andFromJSON(jsonString: string): SafeParseResult<And, SDKValidationError>;
3259
3259
  /** @internal */
3260
- export declare const KnowledgeFilterDollarAnd$inboundSchema: z.ZodType<KnowledgeFilterDollarAnd, z.ZodTypeDef, unknown>;
3260
+ export declare const KnowledgeFilterAnd$inboundSchema: z.ZodType<KnowledgeFilterAnd, z.ZodTypeDef, unknown>;
3261
3261
  /** @internal */
3262
- export type KnowledgeFilterDollarAnd$Outbound = {
3263
- $and: Array<{
3264
- [k: string]: DeploymentsDollarAndDollarEq$Outbound | DeploymentsDollarAndDollarNe$Outbound | DollarAnd3$Outbound | DollarAndDollarGte$Outbound | DollarAndDollarLt$Outbound | DollarAndDollarLte$Outbound | DeploymentsDollarAndDollarIn$Outbound | DeploymentsDollarAndDollarNin$Outbound | DollarAndDollarExists$Outbound;
3262
+ export type KnowledgeFilterAnd$Outbound = {
3263
+ and: Array<{
3264
+ [k: string]: DeploymentsAndEq$Outbound | DeploymentsAndNe$Outbound | And3$Outbound | AndGte$Outbound | AndLt$Outbound | AndLte$Outbound | DeploymentsAndIn$Outbound | DeploymentsAndNin$Outbound | AndExists$Outbound;
3265
3265
  }>;
3266
3266
  };
3267
3267
  /** @internal */
3268
- export declare const KnowledgeFilterDollarAnd$outboundSchema: z.ZodType<KnowledgeFilterDollarAnd$Outbound, z.ZodTypeDef, KnowledgeFilterDollarAnd>;
3268
+ export declare const KnowledgeFilterAnd$outboundSchema: z.ZodType<KnowledgeFilterAnd$Outbound, z.ZodTypeDef, KnowledgeFilterAnd>;
3269
3269
  /**
3270
3270
  * @internal
3271
3271
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3272
3272
  */
3273
- export declare namespace KnowledgeFilterDollarAnd$ {
3274
- /** @deprecated use `KnowledgeFilterDollarAnd$inboundSchema` instead. */
3275
- const inboundSchema: z.ZodType<KnowledgeFilterDollarAnd, z.ZodTypeDef, unknown>;
3276
- /** @deprecated use `KnowledgeFilterDollarAnd$outboundSchema` instead. */
3277
- const outboundSchema: z.ZodType<KnowledgeFilterDollarAnd$Outbound, z.ZodTypeDef, KnowledgeFilterDollarAnd>;
3278
- /** @deprecated use `KnowledgeFilterDollarAnd$Outbound` instead. */
3279
- type Outbound = KnowledgeFilterDollarAnd$Outbound;
3273
+ export declare namespace KnowledgeFilterAnd$ {
3274
+ /** @deprecated use `KnowledgeFilterAnd$inboundSchema` instead. */
3275
+ const inboundSchema: z.ZodType<KnowledgeFilterAnd, z.ZodTypeDef, unknown>;
3276
+ /** @deprecated use `KnowledgeFilterAnd$outboundSchema` instead. */
3277
+ const outboundSchema: z.ZodType<KnowledgeFilterAnd$Outbound, z.ZodTypeDef, KnowledgeFilterAnd>;
3278
+ /** @deprecated use `KnowledgeFilterAnd$Outbound` instead. */
3279
+ type Outbound = KnowledgeFilterAnd$Outbound;
3280
3280
  }
3281
- export declare function knowledgeFilterDollarAndToJSON(knowledgeFilterDollarAnd: KnowledgeFilterDollarAnd): string;
3282
- export declare function knowledgeFilterDollarAndFromJSON(jsonString: string): SafeParseResult<KnowledgeFilterDollarAnd, SDKValidationError>;
3281
+ export declare function knowledgeFilterAndToJSON(knowledgeFilterAnd: KnowledgeFilterAnd): string;
3282
+ export declare function knowledgeFilterAndFromJSON(jsonString: string): SafeParseResult<KnowledgeFilterAnd, SDKValidationError>;
3283
3283
  /** @internal */
3284
- export declare const DollarExists$inboundSchema: z.ZodType<DollarExists, z.ZodTypeDef, unknown>;
3284
+ export declare const Exists$inboundSchema: z.ZodType<Exists, z.ZodTypeDef, unknown>;
3285
3285
  /** @internal */
3286
- export type DollarExists$Outbound = {
3287
- $exists: boolean;
3286
+ export type Exists$Outbound = {
3287
+ exists: boolean;
3288
3288
  };
3289
3289
  /** @internal */
3290
- export declare const DollarExists$outboundSchema: z.ZodType<DollarExists$Outbound, z.ZodTypeDef, DollarExists>;
3290
+ export declare const Exists$outboundSchema: z.ZodType<Exists$Outbound, z.ZodTypeDef, Exists>;
3291
3291
  /**
3292
3292
  * @internal
3293
3293
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3294
3294
  */
3295
- export declare namespace DollarExists$ {
3296
- /** @deprecated use `DollarExists$inboundSchema` instead. */
3297
- const inboundSchema: z.ZodType<DollarExists, z.ZodTypeDef, unknown>;
3298
- /** @deprecated use `DollarExists$outboundSchema` instead. */
3299
- const outboundSchema: z.ZodType<DollarExists$Outbound, z.ZodTypeDef, DollarExists>;
3300
- /** @deprecated use `DollarExists$Outbound` instead. */
3301
- type Outbound = DollarExists$Outbound;
3295
+ export declare namespace Exists$ {
3296
+ /** @deprecated use `Exists$inboundSchema` instead. */
3297
+ const inboundSchema: z.ZodType<Exists, z.ZodTypeDef, unknown>;
3298
+ /** @deprecated use `Exists$outboundSchema` instead. */
3299
+ const outboundSchema: z.ZodType<Exists$Outbound, z.ZodTypeDef, Exists>;
3300
+ /** @deprecated use `Exists$Outbound` instead. */
3301
+ type Outbound = Exists$Outbound;
3302
3302
  }
3303
- export declare function dollarExistsToJSON(dollarExists: DollarExists): string;
3304
- export declare function dollarExistsFromJSON(jsonString: string): SafeParseResult<DollarExists, SDKValidationError>;
3303
+ export declare function existsToJSON(exists: Exists): string;
3304
+ export declare function existsFromJSON(jsonString: string): SafeParseResult<Exists, SDKValidationError>;
3305
3305
  /** @internal */
3306
- export declare const DollarNin$inboundSchema: z.ZodType<DollarNin, z.ZodTypeDef, unknown>;
3306
+ export declare const Nin$inboundSchema: z.ZodType<Nin, z.ZodTypeDef, unknown>;
3307
3307
  /** @internal */
3308
- export type DollarNin$Outbound = string | number | boolean;
3308
+ export type Nin$Outbound = string | number | boolean;
3309
3309
  /** @internal */
3310
- export declare const DollarNin$outboundSchema: z.ZodType<DollarNin$Outbound, z.ZodTypeDef, DollarNin>;
3310
+ export declare const Nin$outboundSchema: z.ZodType<Nin$Outbound, z.ZodTypeDef, Nin>;
3311
3311
  /**
3312
3312
  * @internal
3313
3313
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3314
3314
  */
3315
- export declare namespace DollarNin$ {
3316
- /** @deprecated use `DollarNin$inboundSchema` instead. */
3317
- const inboundSchema: z.ZodType<DollarNin, z.ZodTypeDef, unknown>;
3318
- /** @deprecated use `DollarNin$outboundSchema` instead. */
3319
- const outboundSchema: z.ZodType<DollarNin$Outbound, z.ZodTypeDef, DollarNin>;
3320
- /** @deprecated use `DollarNin$Outbound` instead. */
3321
- type Outbound = DollarNin$Outbound;
3315
+ export declare namespace Nin$ {
3316
+ /** @deprecated use `Nin$inboundSchema` instead. */
3317
+ const inboundSchema: z.ZodType<Nin, z.ZodTypeDef, unknown>;
3318
+ /** @deprecated use `Nin$outboundSchema` instead. */
3319
+ const outboundSchema: z.ZodType<Nin$Outbound, z.ZodTypeDef, Nin>;
3320
+ /** @deprecated use `Nin$Outbound` instead. */
3321
+ type Outbound = Nin$Outbound;
3322
3322
  }
3323
- export declare function dollarNinToJSON(dollarNin: DollarNin): string;
3324
- export declare function dollarNinFromJSON(jsonString: string): SafeParseResult<DollarNin, SDKValidationError>;
3323
+ export declare function ninToJSON(nin: Nin): string;
3324
+ export declare function ninFromJSON(jsonString: string): SafeParseResult<Nin, SDKValidationError>;
3325
3325
  /** @internal */
3326
- export declare const OneDollarNin$inboundSchema: z.ZodType<OneDollarNin, z.ZodTypeDef, unknown>;
3326
+ export declare const OneNin$inboundSchema: z.ZodType<OneNin, z.ZodTypeDef, unknown>;
3327
3327
  /** @internal */
3328
- export type OneDollarNin$Outbound = {
3329
- $nin: Array<string | number | boolean>;
3328
+ export type OneNin$Outbound = {
3329
+ nin: Array<string | number | boolean>;
3330
3330
  };
3331
3331
  /** @internal */
3332
- export declare const OneDollarNin$outboundSchema: z.ZodType<OneDollarNin$Outbound, z.ZodTypeDef, OneDollarNin>;
3332
+ export declare const OneNin$outboundSchema: z.ZodType<OneNin$Outbound, z.ZodTypeDef, OneNin>;
3333
3333
  /**
3334
3334
  * @internal
3335
3335
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3336
3336
  */
3337
- export declare namespace OneDollarNin$ {
3338
- /** @deprecated use `OneDollarNin$inboundSchema` instead. */
3339
- const inboundSchema: z.ZodType<OneDollarNin, z.ZodTypeDef, unknown>;
3340
- /** @deprecated use `OneDollarNin$outboundSchema` instead. */
3341
- const outboundSchema: z.ZodType<OneDollarNin$Outbound, z.ZodTypeDef, OneDollarNin>;
3342
- /** @deprecated use `OneDollarNin$Outbound` instead. */
3343
- type Outbound = OneDollarNin$Outbound;
3337
+ export declare namespace OneNin$ {
3338
+ /** @deprecated use `OneNin$inboundSchema` instead. */
3339
+ const inboundSchema: z.ZodType<OneNin, z.ZodTypeDef, unknown>;
3340
+ /** @deprecated use `OneNin$outboundSchema` instead. */
3341
+ const outboundSchema: z.ZodType<OneNin$Outbound, z.ZodTypeDef, OneNin>;
3342
+ /** @deprecated use `OneNin$Outbound` instead. */
3343
+ type Outbound = OneNin$Outbound;
3344
3344
  }
3345
- export declare function oneDollarNinToJSON(oneDollarNin: OneDollarNin): string;
3346
- export declare function oneDollarNinFromJSON(jsonString: string): SafeParseResult<OneDollarNin, SDKValidationError>;
3345
+ export declare function oneNinToJSON(oneNin: OneNin): string;
3346
+ export declare function oneNinFromJSON(jsonString: string): SafeParseResult<OneNin, SDKValidationError>;
3347
3347
  /** @internal */
3348
- export declare const DollarIn$inboundSchema: z.ZodType<DollarIn, z.ZodTypeDef, unknown>;
3348
+ export declare const In$inboundSchema: z.ZodType<In, z.ZodTypeDef, unknown>;
3349
3349
  /** @internal */
3350
- export type DollarIn$Outbound = string | number | boolean;
3350
+ export type In$Outbound = string | number | boolean;
3351
3351
  /** @internal */
3352
- export declare const DollarIn$outboundSchema: z.ZodType<DollarIn$Outbound, z.ZodTypeDef, DollarIn>;
3352
+ export declare const In$outboundSchema: z.ZodType<In$Outbound, z.ZodTypeDef, In>;
3353
3353
  /**
3354
3354
  * @internal
3355
3355
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3356
3356
  */
3357
- export declare namespace DollarIn$ {
3358
- /** @deprecated use `DollarIn$inboundSchema` instead. */
3359
- const inboundSchema: z.ZodType<DollarIn, z.ZodTypeDef, unknown>;
3360
- /** @deprecated use `DollarIn$outboundSchema` instead. */
3361
- const outboundSchema: z.ZodType<DollarIn$Outbound, z.ZodTypeDef, DollarIn>;
3362
- /** @deprecated use `DollarIn$Outbound` instead. */
3363
- type Outbound = DollarIn$Outbound;
3357
+ export declare namespace In$ {
3358
+ /** @deprecated use `In$inboundSchema` instead. */
3359
+ const inboundSchema: z.ZodType<In, z.ZodTypeDef, unknown>;
3360
+ /** @deprecated use `In$outboundSchema` instead. */
3361
+ const outboundSchema: z.ZodType<In$Outbound, z.ZodTypeDef, In>;
3362
+ /** @deprecated use `In$Outbound` instead. */
3363
+ type Outbound = In$Outbound;
3364
3364
  }
3365
- export declare function dollarInToJSON(dollarIn: DollarIn): string;
3366
- export declare function dollarInFromJSON(jsonString: string): SafeParseResult<DollarIn, SDKValidationError>;
3365
+ export declare function inToJSON(value: In): string;
3366
+ export declare function inFromJSON(jsonString: string): SafeParseResult<In, SDKValidationError>;
3367
3367
  /** @internal */
3368
- export declare const OneDollarIn$inboundSchema: z.ZodType<OneDollarIn, z.ZodTypeDef, unknown>;
3368
+ export declare const OneIn$inboundSchema: z.ZodType<OneIn, z.ZodTypeDef, unknown>;
3369
3369
  /** @internal */
3370
- export type OneDollarIn$Outbound = {
3371
- $in: Array<string | number | boolean>;
3370
+ export type OneIn$Outbound = {
3371
+ in: Array<string | number | boolean>;
3372
3372
  };
3373
3373
  /** @internal */
3374
- export declare const OneDollarIn$outboundSchema: z.ZodType<OneDollarIn$Outbound, z.ZodTypeDef, OneDollarIn>;
3374
+ export declare const OneIn$outboundSchema: z.ZodType<OneIn$Outbound, z.ZodTypeDef, OneIn>;
3375
3375
  /**
3376
3376
  * @internal
3377
3377
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3378
3378
  */
3379
- export declare namespace OneDollarIn$ {
3380
- /** @deprecated use `OneDollarIn$inboundSchema` instead. */
3381
- const inboundSchema: z.ZodType<OneDollarIn, z.ZodTypeDef, unknown>;
3382
- /** @deprecated use `OneDollarIn$outboundSchema` instead. */
3383
- const outboundSchema: z.ZodType<OneDollarIn$Outbound, z.ZodTypeDef, OneDollarIn>;
3384
- /** @deprecated use `OneDollarIn$Outbound` instead. */
3385
- type Outbound = OneDollarIn$Outbound;
3379
+ export declare namespace OneIn$ {
3380
+ /** @deprecated use `OneIn$inboundSchema` instead. */
3381
+ const inboundSchema: z.ZodType<OneIn, z.ZodTypeDef, unknown>;
3382
+ /** @deprecated use `OneIn$outboundSchema` instead. */
3383
+ const outboundSchema: z.ZodType<OneIn$Outbound, z.ZodTypeDef, OneIn>;
3384
+ /** @deprecated use `OneIn$Outbound` instead. */
3385
+ type Outbound = OneIn$Outbound;
3386
3386
  }
3387
- export declare function oneDollarInToJSON(oneDollarIn: OneDollarIn): string;
3388
- export declare function oneDollarInFromJSON(jsonString: string): SafeParseResult<OneDollarIn, SDKValidationError>;
3387
+ export declare function oneInToJSON(oneIn: OneIn): string;
3388
+ export declare function oneInFromJSON(jsonString: string): SafeParseResult<OneIn, SDKValidationError>;
3389
3389
  /** @internal */
3390
- export declare const DollarLte$inboundSchema: z.ZodType<DollarLte, z.ZodTypeDef, unknown>;
3390
+ export declare const Lte$inboundSchema: z.ZodType<Lte, z.ZodTypeDef, unknown>;
3391
3391
  /** @internal */
3392
- export type DollarLte$Outbound = {
3393
- $lte: number;
3392
+ export type Lte$Outbound = {
3393
+ lte: number;
3394
3394
  };
3395
3395
  /** @internal */
3396
- export declare const DollarLte$outboundSchema: z.ZodType<DollarLte$Outbound, z.ZodTypeDef, DollarLte>;
3396
+ export declare const Lte$outboundSchema: z.ZodType<Lte$Outbound, z.ZodTypeDef, Lte>;
3397
3397
  /**
3398
3398
  * @internal
3399
3399
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3400
3400
  */
3401
- export declare namespace DollarLte$ {
3402
- /** @deprecated use `DollarLte$inboundSchema` instead. */
3403
- const inboundSchema: z.ZodType<DollarLte, z.ZodTypeDef, unknown>;
3404
- /** @deprecated use `DollarLte$outboundSchema` instead. */
3405
- const outboundSchema: z.ZodType<DollarLte$Outbound, z.ZodTypeDef, DollarLte>;
3406
- /** @deprecated use `DollarLte$Outbound` instead. */
3407
- type Outbound = DollarLte$Outbound;
3401
+ export declare namespace Lte$ {
3402
+ /** @deprecated use `Lte$inboundSchema` instead. */
3403
+ const inboundSchema: z.ZodType<Lte, z.ZodTypeDef, unknown>;
3404
+ /** @deprecated use `Lte$outboundSchema` instead. */
3405
+ const outboundSchema: z.ZodType<Lte$Outbound, z.ZodTypeDef, Lte>;
3406
+ /** @deprecated use `Lte$Outbound` instead. */
3407
+ type Outbound = Lte$Outbound;
3408
3408
  }
3409
- export declare function dollarLteToJSON(dollarLte: DollarLte): string;
3410
- export declare function dollarLteFromJSON(jsonString: string): SafeParseResult<DollarLte, SDKValidationError>;
3409
+ export declare function lteToJSON(lte: Lte): string;
3410
+ export declare function lteFromJSON(jsonString: string): SafeParseResult<Lte, SDKValidationError>;
3411
3411
  /** @internal */
3412
- export declare const DollarLt$inboundSchema: z.ZodType<DollarLt, z.ZodTypeDef, unknown>;
3412
+ export declare const Lt$inboundSchema: z.ZodType<Lt, z.ZodTypeDef, unknown>;
3413
3413
  /** @internal */
3414
- export type DollarLt$Outbound = {
3415
- $lt: number;
3414
+ export type Lt$Outbound = {
3415
+ lt: number;
3416
3416
  };
3417
3417
  /** @internal */
3418
- export declare const DollarLt$outboundSchema: z.ZodType<DollarLt$Outbound, z.ZodTypeDef, DollarLt>;
3418
+ export declare const Lt$outboundSchema: z.ZodType<Lt$Outbound, z.ZodTypeDef, Lt>;
3419
3419
  /**
3420
3420
  * @internal
3421
3421
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3422
3422
  */
3423
- export declare namespace DollarLt$ {
3424
- /** @deprecated use `DollarLt$inboundSchema` instead. */
3425
- const inboundSchema: z.ZodType<DollarLt, z.ZodTypeDef, unknown>;
3426
- /** @deprecated use `DollarLt$outboundSchema` instead. */
3427
- const outboundSchema: z.ZodType<DollarLt$Outbound, z.ZodTypeDef, DollarLt>;
3428
- /** @deprecated use `DollarLt$Outbound` instead. */
3429
- type Outbound = DollarLt$Outbound;
3423
+ export declare namespace Lt$ {
3424
+ /** @deprecated use `Lt$inboundSchema` instead. */
3425
+ const inboundSchema: z.ZodType<Lt, z.ZodTypeDef, unknown>;
3426
+ /** @deprecated use `Lt$outboundSchema` instead. */
3427
+ const outboundSchema: z.ZodType<Lt$Outbound, z.ZodTypeDef, Lt>;
3428
+ /** @deprecated use `Lt$Outbound` instead. */
3429
+ type Outbound = Lt$Outbound;
3430
3430
  }
3431
- export declare function dollarLtToJSON(dollarLt: DollarLt): string;
3432
- export declare function dollarLtFromJSON(jsonString: string): SafeParseResult<DollarLt, SDKValidationError>;
3431
+ export declare function ltToJSON(lt: Lt): string;
3432
+ export declare function ltFromJSON(jsonString: string): SafeParseResult<Lt, SDKValidationError>;
3433
3433
  /** @internal */
3434
- export declare const DollarGte$inboundSchema: z.ZodType<DollarGte, z.ZodTypeDef, unknown>;
3434
+ export declare const Gte$inboundSchema: z.ZodType<Gte, z.ZodTypeDef, unknown>;
3435
3435
  /** @internal */
3436
- export type DollarGte$Outbound = {
3437
- $gte: number;
3436
+ export type Gte$Outbound = {
3437
+ gte: number;
3438
3438
  };
3439
3439
  /** @internal */
3440
- export declare const DollarGte$outboundSchema: z.ZodType<DollarGte$Outbound, z.ZodTypeDef, DollarGte>;
3440
+ export declare const Gte$outboundSchema: z.ZodType<Gte$Outbound, z.ZodTypeDef, Gte>;
3441
3441
  /**
3442
3442
  * @internal
3443
3443
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3444
3444
  */
3445
- export declare namespace DollarGte$ {
3446
- /** @deprecated use `DollarGte$inboundSchema` instead. */
3447
- const inboundSchema: z.ZodType<DollarGte, z.ZodTypeDef, unknown>;
3448
- /** @deprecated use `DollarGte$outboundSchema` instead. */
3449
- const outboundSchema: z.ZodType<DollarGte$Outbound, z.ZodTypeDef, DollarGte>;
3450
- /** @deprecated use `DollarGte$Outbound` instead. */
3451
- type Outbound = DollarGte$Outbound;
3445
+ export declare namespace Gte$ {
3446
+ /** @deprecated use `Gte$inboundSchema` instead. */
3447
+ const inboundSchema: z.ZodType<Gte, z.ZodTypeDef, unknown>;
3448
+ /** @deprecated use `Gte$outboundSchema` instead. */
3449
+ const outboundSchema: z.ZodType<Gte$Outbound, z.ZodTypeDef, Gte>;
3450
+ /** @deprecated use `Gte$Outbound` instead. */
3451
+ type Outbound = Gte$Outbound;
3452
3452
  }
3453
- export declare function dollarGteToJSON(dollarGte: DollarGte): string;
3454
- export declare function dollarGteFromJSON(jsonString: string): SafeParseResult<DollarGte, SDKValidationError>;
3453
+ export declare function gteToJSON(gte: Gte): string;
3454
+ export declare function gteFromJSON(jsonString: string): SafeParseResult<Gte, SDKValidationError>;
3455
3455
  /** @internal */
3456
3456
  export declare const Three$inboundSchema: z.ZodType<Three, z.ZodTypeDef, unknown>;
3457
3457
  /** @internal */
3458
3458
  export type Three$Outbound = {
3459
- $gt: number;
3459
+ gt: number;
3460
3460
  };
3461
3461
  /** @internal */
3462
3462
  export declare const Three$outboundSchema: z.ZodType<Three$Outbound, z.ZodTypeDef, Three>;
@@ -3475,93 +3475,93 @@ export declare namespace Three$ {
3475
3475
  export declare function threeToJSON(three: Three): string;
3476
3476
  export declare function threeFromJSON(jsonString: string): SafeParseResult<Three, SDKValidationError>;
3477
3477
  /** @internal */
3478
- export declare const DollarNe$inboundSchema: z.ZodType<DollarNe, z.ZodTypeDef, unknown>;
3478
+ export declare const Ne$inboundSchema: z.ZodType<Ne, z.ZodTypeDef, unknown>;
3479
3479
  /** @internal */
3480
- export type DollarNe$Outbound = string | number | boolean;
3480
+ export type Ne$Outbound = string | number | boolean;
3481
3481
  /** @internal */
3482
- export declare const DollarNe$outboundSchema: z.ZodType<DollarNe$Outbound, z.ZodTypeDef, DollarNe>;
3482
+ export declare const Ne$outboundSchema: z.ZodType<Ne$Outbound, z.ZodTypeDef, Ne>;
3483
3483
  /**
3484
3484
  * @internal
3485
3485
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3486
3486
  */
3487
- export declare namespace DollarNe$ {
3488
- /** @deprecated use `DollarNe$inboundSchema` instead. */
3489
- const inboundSchema: z.ZodType<DollarNe, z.ZodTypeDef, unknown>;
3490
- /** @deprecated use `DollarNe$outboundSchema` instead. */
3491
- const outboundSchema: z.ZodType<DollarNe$Outbound, z.ZodTypeDef, DollarNe>;
3492
- /** @deprecated use `DollarNe$Outbound` instead. */
3493
- type Outbound = DollarNe$Outbound;
3487
+ export declare namespace Ne$ {
3488
+ /** @deprecated use `Ne$inboundSchema` instead. */
3489
+ const inboundSchema: z.ZodType<Ne, z.ZodTypeDef, unknown>;
3490
+ /** @deprecated use `Ne$outboundSchema` instead. */
3491
+ const outboundSchema: z.ZodType<Ne$Outbound, z.ZodTypeDef, Ne>;
3492
+ /** @deprecated use `Ne$Outbound` instead. */
3493
+ type Outbound = Ne$Outbound;
3494
3494
  }
3495
- export declare function dollarNeToJSON(dollarNe: DollarNe): string;
3496
- export declare function dollarNeFromJSON(jsonString: string): SafeParseResult<DollarNe, SDKValidationError>;
3495
+ export declare function neToJSON(ne: Ne): string;
3496
+ export declare function neFromJSON(jsonString: string): SafeParseResult<Ne, SDKValidationError>;
3497
3497
  /** @internal */
3498
- export declare const OneDollarNe$inboundSchema: z.ZodType<OneDollarNe, z.ZodTypeDef, unknown>;
3498
+ export declare const OneNe$inboundSchema: z.ZodType<OneNe, z.ZodTypeDef, unknown>;
3499
3499
  /** @internal */
3500
- export type OneDollarNe$Outbound = {
3501
- $ne: string | number | boolean;
3500
+ export type OneNe$Outbound = {
3501
+ ne: string | number | boolean;
3502
3502
  };
3503
3503
  /** @internal */
3504
- export declare const OneDollarNe$outboundSchema: z.ZodType<OneDollarNe$Outbound, z.ZodTypeDef, OneDollarNe>;
3504
+ export declare const OneNe$outboundSchema: z.ZodType<OneNe$Outbound, z.ZodTypeDef, OneNe>;
3505
3505
  /**
3506
3506
  * @internal
3507
3507
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3508
3508
  */
3509
- export declare namespace OneDollarNe$ {
3510
- /** @deprecated use `OneDollarNe$inboundSchema` instead. */
3511
- const inboundSchema: z.ZodType<OneDollarNe, z.ZodTypeDef, unknown>;
3512
- /** @deprecated use `OneDollarNe$outboundSchema` instead. */
3513
- const outboundSchema: z.ZodType<OneDollarNe$Outbound, z.ZodTypeDef, OneDollarNe>;
3514
- /** @deprecated use `OneDollarNe$Outbound` instead. */
3515
- type Outbound = OneDollarNe$Outbound;
3509
+ export declare namespace OneNe$ {
3510
+ /** @deprecated use `OneNe$inboundSchema` instead. */
3511
+ const inboundSchema: z.ZodType<OneNe, z.ZodTypeDef, unknown>;
3512
+ /** @deprecated use `OneNe$outboundSchema` instead. */
3513
+ const outboundSchema: z.ZodType<OneNe$Outbound, z.ZodTypeDef, OneNe>;
3514
+ /** @deprecated use `OneNe$Outbound` instead. */
3515
+ type Outbound = OneNe$Outbound;
3516
3516
  }
3517
- export declare function oneDollarNeToJSON(oneDollarNe: OneDollarNe): string;
3518
- export declare function oneDollarNeFromJSON(jsonString: string): SafeParseResult<OneDollarNe, SDKValidationError>;
3517
+ export declare function oneNeToJSON(oneNe: OneNe): string;
3518
+ export declare function oneNeFromJSON(jsonString: string): SafeParseResult<OneNe, SDKValidationError>;
3519
3519
  /** @internal */
3520
- export declare const DollarEq$inboundSchema: z.ZodType<DollarEq, z.ZodTypeDef, unknown>;
3520
+ export declare const Eq$inboundSchema: z.ZodType<Eq, z.ZodTypeDef, unknown>;
3521
3521
  /** @internal */
3522
- export type DollarEq$Outbound = string | number | boolean;
3522
+ export type Eq$Outbound = string | number | boolean;
3523
3523
  /** @internal */
3524
- export declare const DollarEq$outboundSchema: z.ZodType<DollarEq$Outbound, z.ZodTypeDef, DollarEq>;
3524
+ export declare const Eq$outboundSchema: z.ZodType<Eq$Outbound, z.ZodTypeDef, Eq>;
3525
3525
  /**
3526
3526
  * @internal
3527
3527
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3528
3528
  */
3529
- export declare namespace DollarEq$ {
3530
- /** @deprecated use `DollarEq$inboundSchema` instead. */
3531
- const inboundSchema: z.ZodType<DollarEq, z.ZodTypeDef, unknown>;
3532
- /** @deprecated use `DollarEq$outboundSchema` instead. */
3533
- const outboundSchema: z.ZodType<DollarEq$Outbound, z.ZodTypeDef, DollarEq>;
3534
- /** @deprecated use `DollarEq$Outbound` instead. */
3535
- type Outbound = DollarEq$Outbound;
3529
+ export declare namespace Eq$ {
3530
+ /** @deprecated use `Eq$inboundSchema` instead. */
3531
+ const inboundSchema: z.ZodType<Eq, z.ZodTypeDef, unknown>;
3532
+ /** @deprecated use `Eq$outboundSchema` instead. */
3533
+ const outboundSchema: z.ZodType<Eq$Outbound, z.ZodTypeDef, Eq>;
3534
+ /** @deprecated use `Eq$Outbound` instead. */
3535
+ type Outbound = Eq$Outbound;
3536
3536
  }
3537
- export declare function dollarEqToJSON(dollarEq: DollarEq): string;
3538
- export declare function dollarEqFromJSON(jsonString: string): SafeParseResult<DollarEq, SDKValidationError>;
3537
+ export declare function eqToJSON(eq: Eq): string;
3538
+ export declare function eqFromJSON(jsonString: string): SafeParseResult<Eq, SDKValidationError>;
3539
3539
  /** @internal */
3540
- export declare const OneDollarEq$inboundSchema: z.ZodType<OneDollarEq, z.ZodTypeDef, unknown>;
3540
+ export declare const OneEq$inboundSchema: z.ZodType<OneEq, z.ZodTypeDef, unknown>;
3541
3541
  /** @internal */
3542
- export type OneDollarEq$Outbound = {
3543
- $eq: string | number | boolean;
3542
+ export type OneEq$Outbound = {
3543
+ eq: string | number | boolean;
3544
3544
  };
3545
3545
  /** @internal */
3546
- export declare const OneDollarEq$outboundSchema: z.ZodType<OneDollarEq$Outbound, z.ZodTypeDef, OneDollarEq>;
3546
+ export declare const OneEq$outboundSchema: z.ZodType<OneEq$Outbound, z.ZodTypeDef, OneEq>;
3547
3547
  /**
3548
3548
  * @internal
3549
3549
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3550
3550
  */
3551
- export declare namespace OneDollarEq$ {
3552
- /** @deprecated use `OneDollarEq$inboundSchema` instead. */
3553
- const inboundSchema: z.ZodType<OneDollarEq, z.ZodTypeDef, unknown>;
3554
- /** @deprecated use `OneDollarEq$outboundSchema` instead. */
3555
- const outboundSchema: z.ZodType<OneDollarEq$Outbound, z.ZodTypeDef, OneDollarEq>;
3556
- /** @deprecated use `OneDollarEq$Outbound` instead. */
3557
- type Outbound = OneDollarEq$Outbound;
3551
+ export declare namespace OneEq$ {
3552
+ /** @deprecated use `OneEq$inboundSchema` instead. */
3553
+ const inboundSchema: z.ZodType<OneEq, z.ZodTypeDef, unknown>;
3554
+ /** @deprecated use `OneEq$outboundSchema` instead. */
3555
+ const outboundSchema: z.ZodType<OneEq$Outbound, z.ZodTypeDef, OneEq>;
3556
+ /** @deprecated use `OneEq$Outbound` instead. */
3557
+ type Outbound = OneEq$Outbound;
3558
3558
  }
3559
- export declare function oneDollarEqToJSON(oneDollarEq: OneDollarEq): string;
3560
- export declare function oneDollarEqFromJSON(jsonString: string): SafeParseResult<OneDollarEq, SDKValidationError>;
3559
+ export declare function oneEqToJSON(oneEq: OneEq): string;
3560
+ export declare function oneEqFromJSON(jsonString: string): SafeParseResult<OneEq, SDKValidationError>;
3561
3561
  /** @internal */
3562
3562
  export declare const One$inboundSchema: z.ZodType<One, z.ZodTypeDef, unknown>;
3563
3563
  /** @internal */
3564
- export type One$Outbound = OneDollarEq$Outbound | OneDollarNe$Outbound | Three$Outbound | DollarGte$Outbound | DollarLt$Outbound | DollarLte$Outbound | OneDollarIn$Outbound | OneDollarNin$Outbound | DollarExists$Outbound;
3564
+ export type One$Outbound = OneEq$Outbound | OneNe$Outbound | Three$Outbound | Gte$Outbound | Lt$Outbound | Lte$Outbound | OneIn$Outbound | OneNin$Outbound | Exists$Outbound;
3565
3565
  /** @internal */
3566
3566
  export declare const One$outboundSchema: z.ZodType<One$Outbound, z.ZodTypeDef, One>;
3567
3567
  /**
@@ -3581,8 +3581,8 @@ export declare function oneFromJSON(jsonString: string): SafeParseResult<One, SD
3581
3581
  /** @internal */
3582
3582
  export declare const KnowledgeFilter$inboundSchema: z.ZodType<KnowledgeFilter, z.ZodTypeDef, unknown>;
3583
3583
  /** @internal */
3584
- export type KnowledgeFilter$Outbound = KnowledgeFilterDollarAnd$Outbound | KnowledgeFilterDollarOr$Outbound | {
3585
- [k: string]: OneDollarEq$Outbound | OneDollarNe$Outbound | Three$Outbound | DollarGte$Outbound | DollarLt$Outbound | DollarLte$Outbound | OneDollarIn$Outbound | OneDollarNin$Outbound | DollarExists$Outbound;
3584
+ export type KnowledgeFilter$Outbound = KnowledgeFilterAnd$Outbound | KnowledgeFilterOr$Outbound | {
3585
+ [k: string]: OneEq$Outbound | OneNe$Outbound | Three$Outbound | Gte$Outbound | Lt$Outbound | Lte$Outbound | OneIn$Outbound | OneNin$Outbound | Exists$Outbound;
3586
3586
  };
3587
3587
  /** @internal */
3588
3588
  export declare const KnowledgeFilter$outboundSchema: z.ZodType<KnowledgeFilter$Outbound, z.ZodTypeDef, KnowledgeFilter>;
@@ -3623,8 +3623,8 @@ export type Deployments$Outbound = {
3623
3623
  documents?: Array<Documents$Outbound> | undefined;
3624
3624
  invoke_options?: InvokeOptions$Outbound | undefined;
3625
3625
  thread?: Thread$Outbound | undefined;
3626
- knowledge_filter?: KnowledgeFilterDollarAnd$Outbound | KnowledgeFilterDollarOr$Outbound | {
3627
- [k: string]: OneDollarEq$Outbound | OneDollarNe$Outbound | Three$Outbound | DollarGte$Outbound | DollarLt$Outbound | DollarLte$Outbound | OneDollarIn$Outbound | OneDollarNin$Outbound | DollarExists$Outbound;
3626
+ knowledge_filter?: KnowledgeFilterAnd$Outbound | KnowledgeFilterOr$Outbound | {
3627
+ [k: string]: OneEq$Outbound | OneNe$Outbound | Three$Outbound | Gte$Outbound | Lt$Outbound | Lte$Outbound | OneIn$Outbound | OneNin$Outbound | Exists$Outbound;
3628
3628
  } | undefined;
3629
3629
  };
3630
3630
  /** @internal */