@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 DeploymentGetConfigDollarOrDollarNin = string | number | boolean;
725
+ export type DeploymentGetConfigOrNin = string | number | boolean;
726
726
  /**
727
727
  * Not in
728
728
  */
729
- export type DollarOrDollarNin = {
730
- dollarNin: Array<string | number | boolean>;
729
+ export type OrNin = {
730
+ nin: Array<string | number | boolean>;
731
731
  };
732
- export type DeploymentGetConfigDollarOrDollarIn = string | number | boolean;
732
+ export type DeploymentGetConfigOrIn = string | number | boolean;
733
733
  /**
734
734
  * In
735
735
  */
736
- export type DollarOrDollarIn = {
737
- dollarIn: Array<string | number | boolean>;
736
+ export type OrIn = {
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 DeploymentGetConfigDollarOrDollarNe = string | number | boolean;
760
+ export type DeploymentGetConfigOrNe = string | number | boolean;
761
761
  /**
762
762
  * Not equal to
763
763
  */
764
- export type DollarOrDollarNe = {
765
- dollarNe: string | number | boolean;
764
+ export type OrNe = {
765
+ ne: string | number | boolean;
766
766
  };
767
- export type DeploymentGetConfigDollarOrDollarEq = string | number | boolean;
767
+ export type DeploymentGetConfigOrEq = string | number | boolean;
768
768
  /**
769
769
  * Equal to
770
770
  */
771
- export type DollarOrDollarEq = {
772
- dollarEq: string | number | boolean;
771
+ export type OrEq = {
772
+ eq: string | number | boolean;
773
773
  };
774
- export type KnowledgeFilterDollarOr = DollarOrDollarEq | DollarOrDollarNe | DollarOr3 | DollarOrDollarGte | DollarOrDollarLt | DollarOrDollarLte | DollarOrDollarIn | DollarOrDollarNin | DollarOrDollarExists;
774
+ export type KnowledgeFilterOr = OrEq | OrNe | Or3 | OrGte | OrLt | OrLte | OrIn | OrNin | OrExists;
775
775
  /**
776
776
  * Or
777
777
  */
778
- export type DollarOr = {
779
- dollarOr: Array<{
780
- [k: string]: DollarOrDollarEq | DollarOrDollarNe | DollarOr3 | DollarOrDollarGte | DollarOrDollarLt | DollarOrDollarLte | DollarOrDollarIn | DollarOrDollarNin | DollarOrDollarExists;
778
+ export type Or = {
779
+ or: Array<{
780
+ [k: string]: OrEq | OrNe | Or3 | OrGte | OrLt | OrLte | OrIn | OrNin | 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 DeploymentGetConfigDollarAndDollarNin = string | number | boolean;
789
+ export type DeploymentGetConfigAndNin = string | number | boolean;
790
790
  /**
791
791
  * Not in
792
792
  */
793
- export type DollarAndDollarNin = {
794
- dollarNin: Array<string | number | boolean>;
793
+ export type AndNin = {
794
+ nin: Array<string | number | boolean>;
795
795
  };
796
- export type DeploymentGetConfigDollarAndDollarIn = string | number | boolean;
796
+ export type DeploymentGetConfigAndIn = string | number | boolean;
797
797
  /**
798
798
  * In
799
799
  */
800
- export type DollarAndDollarIn = {
801
- dollarIn: Array<string | number | boolean>;
800
+ export type AndIn = {
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 DeploymentGetConfigDollarAndDollarNe = string | number | boolean;
824
+ export type DeploymentGetConfigAndNe = string | number | boolean;
825
825
  /**
826
826
  * Not equal to
827
827
  */
828
- export type DollarAndDollarNe = {
829
- dollarNe: string | number | boolean;
828
+ export type AndNe = {
829
+ ne: string | number | boolean;
830
830
  };
831
- export type DeploymentGetConfigDollarAndDollarEq = string | number | boolean;
831
+ export type DeploymentGetConfigAndEq = string | number | boolean;
832
832
  /**
833
833
  * Equal to
834
834
  */
835
- export type DollarAndDollarEq = {
836
- dollarEq: string | number | boolean;
835
+ export type AndEq = {
836
+ eq: string | number | boolean;
837
837
  };
838
- export type KnowledgeFilterDollarAnd = DollarAndDollarEq | DollarAndDollarNe | DollarAnd3 | DollarAndDollarGte | DollarAndDollarLt | DollarAndDollarLte | DollarAndDollarIn | DollarAndDollarNin | DollarAndDollarExists;
838
+ export type KnowledgeFilterAnd = AndEq | AndNe | And3 | AndGte | AndLt | AndLte | AndIn | AndNin | AndExists;
839
839
  /**
840
840
  * And
841
841
  */
842
- export type DollarAnd = {
843
- dollarAnd: Array<{
844
- [k: string]: DollarAndDollarEq | DollarAndDollarNe | DollarAnd3 | DollarAndDollarGte | DollarAndDollarLt | DollarAndDollarLte | DollarAndDollarIn | DollarAndDollarNin | DollarAndDollarExists;
842
+ export type And = {
843
+ and: Array<{
844
+ [k: string]: AndEq | AndNe | And3 | AndGte | AndLt | AndLte | AndIn | AndNin | 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 OneDollarNin = string | number | boolean;
853
+ export type OneNin = string | number | boolean;
854
854
  /**
855
855
  * Not in
856
856
  */
857
- export type DollarNin = {
858
- dollarNin: Array<string | number | boolean>;
857
+ export type Nin = {
858
+ nin: Array<string | number | boolean>;
859
859
  };
860
- export type OneDollarIn = string | number | boolean;
860
+ export type OneIn = string | number | boolean;
861
861
  /**
862
862
  * In
863
863
  */
864
- export type DollarIn = {
865
- dollarIn: Array<string | number | boolean>;
864
+ export type In = {
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 One3 = {
886
- dollarGt: number;
886
+ gt: number;
887
887
  };
888
- export type OneDollarNe = string | number | boolean;
888
+ export type OneNe = string | number | boolean;
889
889
  /**
890
890
  * Not equal to
891
891
  */
892
- export type DollarNe = {
893
- dollarNe: string | number | boolean;
892
+ export type Ne = {
893
+ ne: string | number | boolean;
894
894
  };
895
- export type OneDollarEq = string | number | boolean;
895
+ export type OneEq = string | number | boolean;
896
896
  /**
897
897
  * Equal to
898
898
  */
899
- export type DollarEq = {
900
- dollarEq: string | number | boolean;
899
+ export type Eq = {
900
+ eq: string | number | boolean;
901
901
  };
902
- export type KnowledgeFilter1 = DollarEq | DollarNe | One3 | DollarGte | DollarLt | DollarLte | DollarIn | DollarNin | DollarExists;
902
+ export type KnowledgeFilter1 = Eq | Ne | One3 | Gte | Lt | Lte | In | Nin | 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 = DollarAnd | DollarOr | {
907
- [k: string]: DollarEq | DollarNe | One3 | DollarGte | DollarLt | DollarLte | DollarIn | DollarNin | DollarExists;
906
+ export type KnowledgeFilter = And | Or | {
907
+ [k: string]: Eq | Ne | One3 | Gte | Lt | Lte | In | Nin | Exists;
908
908
  };
909
909
  export type DeploymentGetConfigRequestBody = {
910
910
  /**
@@ -956,8 +956,8 @@ export type DeploymentGetConfigRequestBody = {
956
956
  /**
957
957
  * A filter to apply to the knowledge base chunk metadata when using knowledge bases in the deployment.
958
958
  */
959
- knowledgeFilter?: DollarAnd | DollarOr | {
960
- [k: string]: DollarEq | DollarNe | One3 | DollarGte | DollarLt | DollarLte | DollarIn | DollarNin | DollarExists;
959
+ knowledgeFilter?: And | Or | {
960
+ [k: string]: Eq | Ne | One3 | Gte | Lt | Lte | In | Nin | Exists;
961
961
  } | undefined;
962
962
  };
963
963
  /**
@@ -2972,826 +2972,826 @@ export declare namespace Thread$ {
2972
2972
  export declare function threadToJSON(thread: Thread): string;
2973
2973
  export declare function threadFromJSON(jsonString: string): SafeParseResult<Thread, SDKValidationError>;
2974
2974
  /** @internal */
2975
- export declare const DollarOrDollarExists$inboundSchema: z.ZodType<DollarOrDollarExists, z.ZodTypeDef, unknown>;
2975
+ export declare const OrExists$inboundSchema: z.ZodType<OrExists, z.ZodTypeDef, unknown>;
2976
2976
  /** @internal */
2977
- export type DollarOrDollarExists$Outbound = {
2978
- $exists: boolean;
2977
+ export type OrExists$Outbound = {
2978
+ exists: boolean;
2979
2979
  };
2980
2980
  /** @internal */
2981
- export declare const DollarOrDollarExists$outboundSchema: z.ZodType<DollarOrDollarExists$Outbound, z.ZodTypeDef, DollarOrDollarExists>;
2981
+ export declare const OrExists$outboundSchema: z.ZodType<OrExists$Outbound, z.ZodTypeDef, OrExists>;
2982
2982
  /**
2983
2983
  * @internal
2984
2984
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2985
2985
  */
2986
- export declare namespace DollarOrDollarExists$ {
2987
- /** @deprecated use `DollarOrDollarExists$inboundSchema` instead. */
2988
- const inboundSchema: z.ZodType<DollarOrDollarExists, z.ZodTypeDef, unknown>;
2989
- /** @deprecated use `DollarOrDollarExists$outboundSchema` instead. */
2990
- const outboundSchema: z.ZodType<DollarOrDollarExists$Outbound, z.ZodTypeDef, DollarOrDollarExists>;
2991
- /** @deprecated use `DollarOrDollarExists$Outbound` instead. */
2992
- type Outbound = DollarOrDollarExists$Outbound;
2986
+ export declare namespace OrExists$ {
2987
+ /** @deprecated use `OrExists$inboundSchema` instead. */
2988
+ const inboundSchema: z.ZodType<OrExists, z.ZodTypeDef, unknown>;
2989
+ /** @deprecated use `OrExists$outboundSchema` instead. */
2990
+ const outboundSchema: z.ZodType<OrExists$Outbound, z.ZodTypeDef, OrExists>;
2991
+ /** @deprecated use `OrExists$Outbound` instead. */
2992
+ type Outbound = OrExists$Outbound;
2993
2993
  }
2994
- export declare function dollarOrDollarExistsToJSON(dollarOrDollarExists: DollarOrDollarExists): string;
2995
- export declare function dollarOrDollarExistsFromJSON(jsonString: string): SafeParseResult<DollarOrDollarExists, SDKValidationError>;
2994
+ export declare function orExistsToJSON(orExists: OrExists): string;
2995
+ export declare function orExistsFromJSON(jsonString: string): SafeParseResult<OrExists, SDKValidationError>;
2996
2996
  /** @internal */
2997
- export declare const DeploymentGetConfigDollarOrDollarNin$inboundSchema: z.ZodType<DeploymentGetConfigDollarOrDollarNin, z.ZodTypeDef, unknown>;
2997
+ export declare const DeploymentGetConfigOrNin$inboundSchema: z.ZodType<DeploymentGetConfigOrNin, z.ZodTypeDef, unknown>;
2998
2998
  /** @internal */
2999
- export type DeploymentGetConfigDollarOrDollarNin$Outbound = string | number | boolean;
2999
+ export type DeploymentGetConfigOrNin$Outbound = string | number | boolean;
3000
3000
  /** @internal */
3001
- export declare const DeploymentGetConfigDollarOrDollarNin$outboundSchema: z.ZodType<DeploymentGetConfigDollarOrDollarNin$Outbound, z.ZodTypeDef, DeploymentGetConfigDollarOrDollarNin>;
3001
+ export declare const DeploymentGetConfigOrNin$outboundSchema: z.ZodType<DeploymentGetConfigOrNin$Outbound, z.ZodTypeDef, DeploymentGetConfigOrNin>;
3002
3002
  /**
3003
3003
  * @internal
3004
3004
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3005
3005
  */
3006
- export declare namespace DeploymentGetConfigDollarOrDollarNin$ {
3007
- /** @deprecated use `DeploymentGetConfigDollarOrDollarNin$inboundSchema` instead. */
3008
- const inboundSchema: z.ZodType<DeploymentGetConfigDollarOrDollarNin, z.ZodTypeDef, unknown>;
3009
- /** @deprecated use `DeploymentGetConfigDollarOrDollarNin$outboundSchema` instead. */
3010
- const outboundSchema: z.ZodType<DeploymentGetConfigDollarOrDollarNin$Outbound, z.ZodTypeDef, DeploymentGetConfigDollarOrDollarNin>;
3011
- /** @deprecated use `DeploymentGetConfigDollarOrDollarNin$Outbound` instead. */
3012
- type Outbound = DeploymentGetConfigDollarOrDollarNin$Outbound;
3006
+ export declare namespace DeploymentGetConfigOrNin$ {
3007
+ /** @deprecated use `DeploymentGetConfigOrNin$inboundSchema` instead. */
3008
+ const inboundSchema: z.ZodType<DeploymentGetConfigOrNin, z.ZodTypeDef, unknown>;
3009
+ /** @deprecated use `DeploymentGetConfigOrNin$outboundSchema` instead. */
3010
+ const outboundSchema: z.ZodType<DeploymentGetConfigOrNin$Outbound, z.ZodTypeDef, DeploymentGetConfigOrNin>;
3011
+ /** @deprecated use `DeploymentGetConfigOrNin$Outbound` instead. */
3012
+ type Outbound = DeploymentGetConfigOrNin$Outbound;
3013
3013
  }
3014
- export declare function deploymentGetConfigDollarOrDollarNinToJSON(deploymentGetConfigDollarOrDollarNin: DeploymentGetConfigDollarOrDollarNin): string;
3015
- export declare function deploymentGetConfigDollarOrDollarNinFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigDollarOrDollarNin, SDKValidationError>;
3014
+ export declare function deploymentGetConfigOrNinToJSON(deploymentGetConfigOrNin: DeploymentGetConfigOrNin): string;
3015
+ export declare function deploymentGetConfigOrNinFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigOrNin, SDKValidationError>;
3016
3016
  /** @internal */
3017
- export declare const DollarOrDollarNin$inboundSchema: z.ZodType<DollarOrDollarNin, z.ZodTypeDef, unknown>;
3017
+ export declare const OrNin$inboundSchema: z.ZodType<OrNin, z.ZodTypeDef, unknown>;
3018
3018
  /** @internal */
3019
- export type DollarOrDollarNin$Outbound = {
3020
- $nin: Array<string | number | boolean>;
3019
+ export type OrNin$Outbound = {
3020
+ nin: Array<string | number | boolean>;
3021
3021
  };
3022
3022
  /** @internal */
3023
- export declare const DollarOrDollarNin$outboundSchema: z.ZodType<DollarOrDollarNin$Outbound, z.ZodTypeDef, DollarOrDollarNin>;
3023
+ export declare const OrNin$outboundSchema: z.ZodType<OrNin$Outbound, z.ZodTypeDef, OrNin>;
3024
3024
  /**
3025
3025
  * @internal
3026
3026
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3027
3027
  */
3028
- export declare namespace DollarOrDollarNin$ {
3029
- /** @deprecated use `DollarOrDollarNin$inboundSchema` instead. */
3030
- const inboundSchema: z.ZodType<DollarOrDollarNin, z.ZodTypeDef, unknown>;
3031
- /** @deprecated use `DollarOrDollarNin$outboundSchema` instead. */
3032
- const outboundSchema: z.ZodType<DollarOrDollarNin$Outbound, z.ZodTypeDef, DollarOrDollarNin>;
3033
- /** @deprecated use `DollarOrDollarNin$Outbound` instead. */
3034
- type Outbound = DollarOrDollarNin$Outbound;
3028
+ export declare namespace OrNin$ {
3029
+ /** @deprecated use `OrNin$inboundSchema` instead. */
3030
+ const inboundSchema: z.ZodType<OrNin, z.ZodTypeDef, unknown>;
3031
+ /** @deprecated use `OrNin$outboundSchema` instead. */
3032
+ const outboundSchema: z.ZodType<OrNin$Outbound, z.ZodTypeDef, OrNin>;
3033
+ /** @deprecated use `OrNin$Outbound` instead. */
3034
+ type Outbound = OrNin$Outbound;
3035
3035
  }
3036
- export declare function dollarOrDollarNinToJSON(dollarOrDollarNin: DollarOrDollarNin): string;
3037
- export declare function dollarOrDollarNinFromJSON(jsonString: string): SafeParseResult<DollarOrDollarNin, SDKValidationError>;
3036
+ export declare function orNinToJSON(orNin: OrNin): string;
3037
+ export declare function orNinFromJSON(jsonString: string): SafeParseResult<OrNin, SDKValidationError>;
3038
3038
  /** @internal */
3039
- export declare const DeploymentGetConfigDollarOrDollarIn$inboundSchema: z.ZodType<DeploymentGetConfigDollarOrDollarIn, z.ZodTypeDef, unknown>;
3039
+ export declare const DeploymentGetConfigOrIn$inboundSchema: z.ZodType<DeploymentGetConfigOrIn, z.ZodTypeDef, unknown>;
3040
3040
  /** @internal */
3041
- export type DeploymentGetConfigDollarOrDollarIn$Outbound = string | number | boolean;
3041
+ export type DeploymentGetConfigOrIn$Outbound = string | number | boolean;
3042
3042
  /** @internal */
3043
- export declare const DeploymentGetConfigDollarOrDollarIn$outboundSchema: z.ZodType<DeploymentGetConfigDollarOrDollarIn$Outbound, z.ZodTypeDef, DeploymentGetConfigDollarOrDollarIn>;
3043
+ export declare const DeploymentGetConfigOrIn$outboundSchema: z.ZodType<DeploymentGetConfigOrIn$Outbound, z.ZodTypeDef, DeploymentGetConfigOrIn>;
3044
3044
  /**
3045
3045
  * @internal
3046
3046
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3047
3047
  */
3048
- export declare namespace DeploymentGetConfigDollarOrDollarIn$ {
3049
- /** @deprecated use `DeploymentGetConfigDollarOrDollarIn$inboundSchema` instead. */
3050
- const inboundSchema: z.ZodType<DeploymentGetConfigDollarOrDollarIn, z.ZodTypeDef, unknown>;
3051
- /** @deprecated use `DeploymentGetConfigDollarOrDollarIn$outboundSchema` instead. */
3052
- const outboundSchema: z.ZodType<DeploymentGetConfigDollarOrDollarIn$Outbound, z.ZodTypeDef, DeploymentGetConfigDollarOrDollarIn>;
3053
- /** @deprecated use `DeploymentGetConfigDollarOrDollarIn$Outbound` instead. */
3054
- type Outbound = DeploymentGetConfigDollarOrDollarIn$Outbound;
3048
+ export declare namespace DeploymentGetConfigOrIn$ {
3049
+ /** @deprecated use `DeploymentGetConfigOrIn$inboundSchema` instead. */
3050
+ const inboundSchema: z.ZodType<DeploymentGetConfigOrIn, z.ZodTypeDef, unknown>;
3051
+ /** @deprecated use `DeploymentGetConfigOrIn$outboundSchema` instead. */
3052
+ const outboundSchema: z.ZodType<DeploymentGetConfigOrIn$Outbound, z.ZodTypeDef, DeploymentGetConfigOrIn>;
3053
+ /** @deprecated use `DeploymentGetConfigOrIn$Outbound` instead. */
3054
+ type Outbound = DeploymentGetConfigOrIn$Outbound;
3055
3055
  }
3056
- export declare function deploymentGetConfigDollarOrDollarInToJSON(deploymentGetConfigDollarOrDollarIn: DeploymentGetConfigDollarOrDollarIn): string;
3057
- export declare function deploymentGetConfigDollarOrDollarInFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigDollarOrDollarIn, SDKValidationError>;
3056
+ export declare function deploymentGetConfigOrInToJSON(deploymentGetConfigOrIn: DeploymentGetConfigOrIn): string;
3057
+ export declare function deploymentGetConfigOrInFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigOrIn, SDKValidationError>;
3058
3058
  /** @internal */
3059
- export declare const DollarOrDollarIn$inboundSchema: z.ZodType<DollarOrDollarIn, z.ZodTypeDef, unknown>;
3059
+ export declare const OrIn$inboundSchema: z.ZodType<OrIn, z.ZodTypeDef, unknown>;
3060
3060
  /** @internal */
3061
- export type DollarOrDollarIn$Outbound = {
3062
- $in: Array<string | number | boolean>;
3061
+ export type OrIn$Outbound = {
3062
+ in: Array<string | number | boolean>;
3063
3063
  };
3064
3064
  /** @internal */
3065
- export declare const DollarOrDollarIn$outboundSchema: z.ZodType<DollarOrDollarIn$Outbound, z.ZodTypeDef, DollarOrDollarIn>;
3065
+ export declare const OrIn$outboundSchema: z.ZodType<OrIn$Outbound, z.ZodTypeDef, OrIn>;
3066
3066
  /**
3067
3067
  * @internal
3068
3068
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3069
3069
  */
3070
- export declare namespace DollarOrDollarIn$ {
3071
- /** @deprecated use `DollarOrDollarIn$inboundSchema` instead. */
3072
- const inboundSchema: z.ZodType<DollarOrDollarIn, z.ZodTypeDef, unknown>;
3073
- /** @deprecated use `DollarOrDollarIn$outboundSchema` instead. */
3074
- const outboundSchema: z.ZodType<DollarOrDollarIn$Outbound, z.ZodTypeDef, DollarOrDollarIn>;
3075
- /** @deprecated use `DollarOrDollarIn$Outbound` instead. */
3076
- type Outbound = DollarOrDollarIn$Outbound;
3070
+ export declare namespace OrIn$ {
3071
+ /** @deprecated use `OrIn$inboundSchema` instead. */
3072
+ const inboundSchema: z.ZodType<OrIn, z.ZodTypeDef, unknown>;
3073
+ /** @deprecated use `OrIn$outboundSchema` instead. */
3074
+ const outboundSchema: z.ZodType<OrIn$Outbound, z.ZodTypeDef, OrIn>;
3075
+ /** @deprecated use `OrIn$Outbound` instead. */
3076
+ type Outbound = OrIn$Outbound;
3077
3077
  }
3078
- export declare function dollarOrDollarInToJSON(dollarOrDollarIn: DollarOrDollarIn): string;
3079
- export declare function dollarOrDollarInFromJSON(jsonString: string): SafeParseResult<DollarOrDollarIn, SDKValidationError>;
3078
+ export declare function orInToJSON(orIn: OrIn): string;
3079
+ export declare function orInFromJSON(jsonString: string): SafeParseResult<OrIn, SDKValidationError>;
3080
3080
  /** @internal */
3081
- export declare const DollarOrDollarLte$inboundSchema: z.ZodType<DollarOrDollarLte, z.ZodTypeDef, unknown>;
3081
+ export declare const OrLte$inboundSchema: z.ZodType<OrLte, z.ZodTypeDef, unknown>;
3082
3082
  /** @internal */
3083
- export type DollarOrDollarLte$Outbound = {
3084
- $lte: number;
3083
+ export type OrLte$Outbound = {
3084
+ lte: number;
3085
3085
  };
3086
3086
  /** @internal */
3087
- export declare const DollarOrDollarLte$outboundSchema: z.ZodType<DollarOrDollarLte$Outbound, z.ZodTypeDef, DollarOrDollarLte>;
3087
+ export declare const OrLte$outboundSchema: z.ZodType<OrLte$Outbound, z.ZodTypeDef, OrLte>;
3088
3088
  /**
3089
3089
  * @internal
3090
3090
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3091
3091
  */
3092
- export declare namespace DollarOrDollarLte$ {
3093
- /** @deprecated use `DollarOrDollarLte$inboundSchema` instead. */
3094
- const inboundSchema: z.ZodType<DollarOrDollarLte, z.ZodTypeDef, unknown>;
3095
- /** @deprecated use `DollarOrDollarLte$outboundSchema` instead. */
3096
- const outboundSchema: z.ZodType<DollarOrDollarLte$Outbound, z.ZodTypeDef, DollarOrDollarLte>;
3097
- /** @deprecated use `DollarOrDollarLte$Outbound` instead. */
3098
- type Outbound = DollarOrDollarLte$Outbound;
3092
+ export declare namespace OrLte$ {
3093
+ /** @deprecated use `OrLte$inboundSchema` instead. */
3094
+ const inboundSchema: z.ZodType<OrLte, z.ZodTypeDef, unknown>;
3095
+ /** @deprecated use `OrLte$outboundSchema` instead. */
3096
+ const outboundSchema: z.ZodType<OrLte$Outbound, z.ZodTypeDef, OrLte>;
3097
+ /** @deprecated use `OrLte$Outbound` instead. */
3098
+ type Outbound = OrLte$Outbound;
3099
3099
  }
3100
- export declare function dollarOrDollarLteToJSON(dollarOrDollarLte: DollarOrDollarLte): string;
3101
- export declare function dollarOrDollarLteFromJSON(jsonString: string): SafeParseResult<DollarOrDollarLte, SDKValidationError>;
3100
+ export declare function orLteToJSON(orLte: OrLte): string;
3101
+ export declare function orLteFromJSON(jsonString: string): SafeParseResult<OrLte, SDKValidationError>;
3102
3102
  /** @internal */
3103
- export declare const DollarOrDollarLt$inboundSchema: z.ZodType<DollarOrDollarLt, z.ZodTypeDef, unknown>;
3103
+ export declare const OrLt$inboundSchema: z.ZodType<OrLt, z.ZodTypeDef, unknown>;
3104
3104
  /** @internal */
3105
- export type DollarOrDollarLt$Outbound = {
3106
- $lt: number;
3105
+ export type OrLt$Outbound = {
3106
+ lt: number;
3107
3107
  };
3108
3108
  /** @internal */
3109
- export declare const DollarOrDollarLt$outboundSchema: z.ZodType<DollarOrDollarLt$Outbound, z.ZodTypeDef, DollarOrDollarLt>;
3109
+ export declare const OrLt$outboundSchema: z.ZodType<OrLt$Outbound, z.ZodTypeDef, OrLt>;
3110
3110
  /**
3111
3111
  * @internal
3112
3112
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3113
3113
  */
3114
- export declare namespace DollarOrDollarLt$ {
3115
- /** @deprecated use `DollarOrDollarLt$inboundSchema` instead. */
3116
- const inboundSchema: z.ZodType<DollarOrDollarLt, z.ZodTypeDef, unknown>;
3117
- /** @deprecated use `DollarOrDollarLt$outboundSchema` instead. */
3118
- const outboundSchema: z.ZodType<DollarOrDollarLt$Outbound, z.ZodTypeDef, DollarOrDollarLt>;
3119
- /** @deprecated use `DollarOrDollarLt$Outbound` instead. */
3120
- type Outbound = DollarOrDollarLt$Outbound;
3114
+ export declare namespace OrLt$ {
3115
+ /** @deprecated use `OrLt$inboundSchema` instead. */
3116
+ const inboundSchema: z.ZodType<OrLt, z.ZodTypeDef, unknown>;
3117
+ /** @deprecated use `OrLt$outboundSchema` instead. */
3118
+ const outboundSchema: z.ZodType<OrLt$Outbound, z.ZodTypeDef, OrLt>;
3119
+ /** @deprecated use `OrLt$Outbound` instead. */
3120
+ type Outbound = OrLt$Outbound;
3121
3121
  }
3122
- export declare function dollarOrDollarLtToJSON(dollarOrDollarLt: DollarOrDollarLt): string;
3123
- export declare function dollarOrDollarLtFromJSON(jsonString: string): SafeParseResult<DollarOrDollarLt, SDKValidationError>;
3122
+ export declare function orLtToJSON(orLt: OrLt): string;
3123
+ export declare function orLtFromJSON(jsonString: string): SafeParseResult<OrLt, SDKValidationError>;
3124
3124
  /** @internal */
3125
- export declare const DollarOrDollarGte$inboundSchema: z.ZodType<DollarOrDollarGte, z.ZodTypeDef, unknown>;
3125
+ export declare const OrGte$inboundSchema: z.ZodType<OrGte, z.ZodTypeDef, unknown>;
3126
3126
  /** @internal */
3127
- export type DollarOrDollarGte$Outbound = {
3128
- $gte: number;
3127
+ export type OrGte$Outbound = {
3128
+ gte: number;
3129
3129
  };
3130
3130
  /** @internal */
3131
- export declare const DollarOrDollarGte$outboundSchema: z.ZodType<DollarOrDollarGte$Outbound, z.ZodTypeDef, DollarOrDollarGte>;
3131
+ export declare const OrGte$outboundSchema: z.ZodType<OrGte$Outbound, z.ZodTypeDef, OrGte>;
3132
3132
  /**
3133
3133
  * @internal
3134
3134
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3135
3135
  */
3136
- export declare namespace DollarOrDollarGte$ {
3137
- /** @deprecated use `DollarOrDollarGte$inboundSchema` instead. */
3138
- const inboundSchema: z.ZodType<DollarOrDollarGte, z.ZodTypeDef, unknown>;
3139
- /** @deprecated use `DollarOrDollarGte$outboundSchema` instead. */
3140
- const outboundSchema: z.ZodType<DollarOrDollarGte$Outbound, z.ZodTypeDef, DollarOrDollarGte>;
3141
- /** @deprecated use `DollarOrDollarGte$Outbound` instead. */
3142
- type Outbound = DollarOrDollarGte$Outbound;
3136
+ export declare namespace OrGte$ {
3137
+ /** @deprecated use `OrGte$inboundSchema` instead. */
3138
+ const inboundSchema: z.ZodType<OrGte, z.ZodTypeDef, unknown>;
3139
+ /** @deprecated use `OrGte$outboundSchema` instead. */
3140
+ const outboundSchema: z.ZodType<OrGte$Outbound, z.ZodTypeDef, OrGte>;
3141
+ /** @deprecated use `OrGte$Outbound` instead. */
3142
+ type Outbound = OrGte$Outbound;
3143
3143
  }
3144
- export declare function dollarOrDollarGteToJSON(dollarOrDollarGte: DollarOrDollarGte): string;
3145
- export declare function dollarOrDollarGteFromJSON(jsonString: string): SafeParseResult<DollarOrDollarGte, SDKValidationError>;
3144
+ export declare function orGteToJSON(orGte: OrGte): string;
3145
+ export declare function orGteFromJSON(jsonString: string): SafeParseResult<OrGte, SDKValidationError>;
3146
3146
  /** @internal */
3147
- export declare const DollarOr3$inboundSchema: z.ZodType<DollarOr3, z.ZodTypeDef, unknown>;
3147
+ export declare const Or3$inboundSchema: z.ZodType<Or3, z.ZodTypeDef, unknown>;
3148
3148
  /** @internal */
3149
- export type DollarOr3$Outbound = {
3150
- $gt: number;
3149
+ export type Or3$Outbound = {
3150
+ gt: number;
3151
3151
  };
3152
3152
  /** @internal */
3153
- export declare const DollarOr3$outboundSchema: z.ZodType<DollarOr3$Outbound, z.ZodTypeDef, DollarOr3>;
3153
+ export declare const Or3$outboundSchema: z.ZodType<Or3$Outbound, z.ZodTypeDef, Or3>;
3154
3154
  /**
3155
3155
  * @internal
3156
3156
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3157
3157
  */
3158
- export declare namespace DollarOr3$ {
3159
- /** @deprecated use `DollarOr3$inboundSchema` instead. */
3160
- const inboundSchema: z.ZodType<DollarOr3, z.ZodTypeDef, unknown>;
3161
- /** @deprecated use `DollarOr3$outboundSchema` instead. */
3162
- const outboundSchema: z.ZodType<DollarOr3$Outbound, z.ZodTypeDef, DollarOr3>;
3163
- /** @deprecated use `DollarOr3$Outbound` instead. */
3164
- type Outbound = DollarOr3$Outbound;
3158
+ export declare namespace Or3$ {
3159
+ /** @deprecated use `Or3$inboundSchema` instead. */
3160
+ const inboundSchema: z.ZodType<Or3, z.ZodTypeDef, unknown>;
3161
+ /** @deprecated use `Or3$outboundSchema` instead. */
3162
+ const outboundSchema: z.ZodType<Or3$Outbound, z.ZodTypeDef, Or3>;
3163
+ /** @deprecated use `Or3$Outbound` instead. */
3164
+ type Outbound = Or3$Outbound;
3165
3165
  }
3166
- export declare function dollarOr3ToJSON(dollarOr3: DollarOr3): string;
3167
- export declare function dollarOr3FromJSON(jsonString: string): SafeParseResult<DollarOr3, SDKValidationError>;
3166
+ export declare function or3ToJSON(or3: Or3): string;
3167
+ export declare function or3FromJSON(jsonString: string): SafeParseResult<Or3, SDKValidationError>;
3168
3168
  /** @internal */
3169
- export declare const DeploymentGetConfigDollarOrDollarNe$inboundSchema: z.ZodType<DeploymentGetConfigDollarOrDollarNe, z.ZodTypeDef, unknown>;
3169
+ export declare const DeploymentGetConfigOrNe$inboundSchema: z.ZodType<DeploymentGetConfigOrNe, z.ZodTypeDef, unknown>;
3170
3170
  /** @internal */
3171
- export type DeploymentGetConfigDollarOrDollarNe$Outbound = string | number | boolean;
3171
+ export type DeploymentGetConfigOrNe$Outbound = string | number | boolean;
3172
3172
  /** @internal */
3173
- export declare const DeploymentGetConfigDollarOrDollarNe$outboundSchema: z.ZodType<DeploymentGetConfigDollarOrDollarNe$Outbound, z.ZodTypeDef, DeploymentGetConfigDollarOrDollarNe>;
3173
+ export declare const DeploymentGetConfigOrNe$outboundSchema: z.ZodType<DeploymentGetConfigOrNe$Outbound, z.ZodTypeDef, DeploymentGetConfigOrNe>;
3174
3174
  /**
3175
3175
  * @internal
3176
3176
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3177
3177
  */
3178
- export declare namespace DeploymentGetConfigDollarOrDollarNe$ {
3179
- /** @deprecated use `DeploymentGetConfigDollarOrDollarNe$inboundSchema` instead. */
3180
- const inboundSchema: z.ZodType<DeploymentGetConfigDollarOrDollarNe, z.ZodTypeDef, unknown>;
3181
- /** @deprecated use `DeploymentGetConfigDollarOrDollarNe$outboundSchema` instead. */
3182
- const outboundSchema: z.ZodType<DeploymentGetConfigDollarOrDollarNe$Outbound, z.ZodTypeDef, DeploymentGetConfigDollarOrDollarNe>;
3183
- /** @deprecated use `DeploymentGetConfigDollarOrDollarNe$Outbound` instead. */
3184
- type Outbound = DeploymentGetConfigDollarOrDollarNe$Outbound;
3178
+ export declare namespace DeploymentGetConfigOrNe$ {
3179
+ /** @deprecated use `DeploymentGetConfigOrNe$inboundSchema` instead. */
3180
+ const inboundSchema: z.ZodType<DeploymentGetConfigOrNe, z.ZodTypeDef, unknown>;
3181
+ /** @deprecated use `DeploymentGetConfigOrNe$outboundSchema` instead. */
3182
+ const outboundSchema: z.ZodType<DeploymentGetConfigOrNe$Outbound, z.ZodTypeDef, DeploymentGetConfigOrNe>;
3183
+ /** @deprecated use `DeploymentGetConfigOrNe$Outbound` instead. */
3184
+ type Outbound = DeploymentGetConfigOrNe$Outbound;
3185
3185
  }
3186
- export declare function deploymentGetConfigDollarOrDollarNeToJSON(deploymentGetConfigDollarOrDollarNe: DeploymentGetConfigDollarOrDollarNe): string;
3187
- export declare function deploymentGetConfigDollarOrDollarNeFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigDollarOrDollarNe, SDKValidationError>;
3186
+ export declare function deploymentGetConfigOrNeToJSON(deploymentGetConfigOrNe: DeploymentGetConfigOrNe): string;
3187
+ export declare function deploymentGetConfigOrNeFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigOrNe, SDKValidationError>;
3188
3188
  /** @internal */
3189
- export declare const DollarOrDollarNe$inboundSchema: z.ZodType<DollarOrDollarNe, z.ZodTypeDef, unknown>;
3189
+ export declare const OrNe$inboundSchema: z.ZodType<OrNe, z.ZodTypeDef, unknown>;
3190
3190
  /** @internal */
3191
- export type DollarOrDollarNe$Outbound = {
3192
- $ne: string | number | boolean;
3191
+ export type OrNe$Outbound = {
3192
+ ne: string | number | boolean;
3193
3193
  };
3194
3194
  /** @internal */
3195
- export declare const DollarOrDollarNe$outboundSchema: z.ZodType<DollarOrDollarNe$Outbound, z.ZodTypeDef, DollarOrDollarNe>;
3195
+ export declare const OrNe$outboundSchema: z.ZodType<OrNe$Outbound, z.ZodTypeDef, OrNe>;
3196
3196
  /**
3197
3197
  * @internal
3198
3198
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3199
3199
  */
3200
- export declare namespace DollarOrDollarNe$ {
3201
- /** @deprecated use `DollarOrDollarNe$inboundSchema` instead. */
3202
- const inboundSchema: z.ZodType<DollarOrDollarNe, z.ZodTypeDef, unknown>;
3203
- /** @deprecated use `DollarOrDollarNe$outboundSchema` instead. */
3204
- const outboundSchema: z.ZodType<DollarOrDollarNe$Outbound, z.ZodTypeDef, DollarOrDollarNe>;
3205
- /** @deprecated use `DollarOrDollarNe$Outbound` instead. */
3206
- type Outbound = DollarOrDollarNe$Outbound;
3200
+ export declare namespace OrNe$ {
3201
+ /** @deprecated use `OrNe$inboundSchema` instead. */
3202
+ const inboundSchema: z.ZodType<OrNe, z.ZodTypeDef, unknown>;
3203
+ /** @deprecated use `OrNe$outboundSchema` instead. */
3204
+ const outboundSchema: z.ZodType<OrNe$Outbound, z.ZodTypeDef, OrNe>;
3205
+ /** @deprecated use `OrNe$Outbound` instead. */
3206
+ type Outbound = OrNe$Outbound;
3207
3207
  }
3208
- export declare function dollarOrDollarNeToJSON(dollarOrDollarNe: DollarOrDollarNe): string;
3209
- export declare function dollarOrDollarNeFromJSON(jsonString: string): SafeParseResult<DollarOrDollarNe, SDKValidationError>;
3208
+ export declare function orNeToJSON(orNe: OrNe): string;
3209
+ export declare function orNeFromJSON(jsonString: string): SafeParseResult<OrNe, SDKValidationError>;
3210
3210
  /** @internal */
3211
- export declare const DeploymentGetConfigDollarOrDollarEq$inboundSchema: z.ZodType<DeploymentGetConfigDollarOrDollarEq, z.ZodTypeDef, unknown>;
3211
+ export declare const DeploymentGetConfigOrEq$inboundSchema: z.ZodType<DeploymentGetConfigOrEq, z.ZodTypeDef, unknown>;
3212
3212
  /** @internal */
3213
- export type DeploymentGetConfigDollarOrDollarEq$Outbound = string | number | boolean;
3213
+ export type DeploymentGetConfigOrEq$Outbound = string | number | boolean;
3214
3214
  /** @internal */
3215
- export declare const DeploymentGetConfigDollarOrDollarEq$outboundSchema: z.ZodType<DeploymentGetConfigDollarOrDollarEq$Outbound, z.ZodTypeDef, DeploymentGetConfigDollarOrDollarEq>;
3215
+ export declare const DeploymentGetConfigOrEq$outboundSchema: z.ZodType<DeploymentGetConfigOrEq$Outbound, z.ZodTypeDef, DeploymentGetConfigOrEq>;
3216
3216
  /**
3217
3217
  * @internal
3218
3218
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3219
3219
  */
3220
- export declare namespace DeploymentGetConfigDollarOrDollarEq$ {
3221
- /** @deprecated use `DeploymentGetConfigDollarOrDollarEq$inboundSchema` instead. */
3222
- const inboundSchema: z.ZodType<DeploymentGetConfigDollarOrDollarEq, z.ZodTypeDef, unknown>;
3223
- /** @deprecated use `DeploymentGetConfigDollarOrDollarEq$outboundSchema` instead. */
3224
- const outboundSchema: z.ZodType<DeploymentGetConfigDollarOrDollarEq$Outbound, z.ZodTypeDef, DeploymentGetConfigDollarOrDollarEq>;
3225
- /** @deprecated use `DeploymentGetConfigDollarOrDollarEq$Outbound` instead. */
3226
- type Outbound = DeploymentGetConfigDollarOrDollarEq$Outbound;
3220
+ export declare namespace DeploymentGetConfigOrEq$ {
3221
+ /** @deprecated use `DeploymentGetConfigOrEq$inboundSchema` instead. */
3222
+ const inboundSchema: z.ZodType<DeploymentGetConfigOrEq, z.ZodTypeDef, unknown>;
3223
+ /** @deprecated use `DeploymentGetConfigOrEq$outboundSchema` instead. */
3224
+ const outboundSchema: z.ZodType<DeploymentGetConfigOrEq$Outbound, z.ZodTypeDef, DeploymentGetConfigOrEq>;
3225
+ /** @deprecated use `DeploymentGetConfigOrEq$Outbound` instead. */
3226
+ type Outbound = DeploymentGetConfigOrEq$Outbound;
3227
3227
  }
3228
- export declare function deploymentGetConfigDollarOrDollarEqToJSON(deploymentGetConfigDollarOrDollarEq: DeploymentGetConfigDollarOrDollarEq): string;
3229
- export declare function deploymentGetConfigDollarOrDollarEqFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigDollarOrDollarEq, SDKValidationError>;
3228
+ export declare function deploymentGetConfigOrEqToJSON(deploymentGetConfigOrEq: DeploymentGetConfigOrEq): string;
3229
+ export declare function deploymentGetConfigOrEqFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigOrEq, SDKValidationError>;
3230
3230
  /** @internal */
3231
- export declare const DollarOrDollarEq$inboundSchema: z.ZodType<DollarOrDollarEq, z.ZodTypeDef, unknown>;
3231
+ export declare const OrEq$inboundSchema: z.ZodType<OrEq, z.ZodTypeDef, unknown>;
3232
3232
  /** @internal */
3233
- export type DollarOrDollarEq$Outbound = {
3234
- $eq: string | number | boolean;
3233
+ export type OrEq$Outbound = {
3234
+ eq: string | number | boolean;
3235
3235
  };
3236
3236
  /** @internal */
3237
- export declare const DollarOrDollarEq$outboundSchema: z.ZodType<DollarOrDollarEq$Outbound, z.ZodTypeDef, DollarOrDollarEq>;
3237
+ export declare const OrEq$outboundSchema: z.ZodType<OrEq$Outbound, z.ZodTypeDef, OrEq>;
3238
3238
  /**
3239
3239
  * @internal
3240
3240
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3241
3241
  */
3242
- export declare namespace DollarOrDollarEq$ {
3243
- /** @deprecated use `DollarOrDollarEq$inboundSchema` instead. */
3244
- const inboundSchema: z.ZodType<DollarOrDollarEq, z.ZodTypeDef, unknown>;
3245
- /** @deprecated use `DollarOrDollarEq$outboundSchema` instead. */
3246
- const outboundSchema: z.ZodType<DollarOrDollarEq$Outbound, z.ZodTypeDef, DollarOrDollarEq>;
3247
- /** @deprecated use `DollarOrDollarEq$Outbound` instead. */
3248
- type Outbound = DollarOrDollarEq$Outbound;
3242
+ export declare namespace OrEq$ {
3243
+ /** @deprecated use `OrEq$inboundSchema` instead. */
3244
+ const inboundSchema: z.ZodType<OrEq, z.ZodTypeDef, unknown>;
3245
+ /** @deprecated use `OrEq$outboundSchema` instead. */
3246
+ const outboundSchema: z.ZodType<OrEq$Outbound, z.ZodTypeDef, OrEq>;
3247
+ /** @deprecated use `OrEq$Outbound` instead. */
3248
+ type Outbound = OrEq$Outbound;
3249
3249
  }
3250
- export declare function dollarOrDollarEqToJSON(dollarOrDollarEq: DollarOrDollarEq): string;
3251
- export declare function dollarOrDollarEqFromJSON(jsonString: string): SafeParseResult<DollarOrDollarEq, SDKValidationError>;
3250
+ export declare function orEqToJSON(orEq: OrEq): string;
3251
+ export declare function orEqFromJSON(jsonString: string): SafeParseResult<OrEq, SDKValidationError>;
3252
3252
  /** @internal */
3253
- export declare const KnowledgeFilterDollarOr$inboundSchema: z.ZodType<KnowledgeFilterDollarOr, z.ZodTypeDef, unknown>;
3253
+ export declare const KnowledgeFilterOr$inboundSchema: z.ZodType<KnowledgeFilterOr, z.ZodTypeDef, unknown>;
3254
3254
  /** @internal */
3255
- export type KnowledgeFilterDollarOr$Outbound = DollarOrDollarEq$Outbound | DollarOrDollarNe$Outbound | DollarOr3$Outbound | DollarOrDollarGte$Outbound | DollarOrDollarLt$Outbound | DollarOrDollarLte$Outbound | DollarOrDollarIn$Outbound | DollarOrDollarNin$Outbound | DollarOrDollarExists$Outbound;
3255
+ export type KnowledgeFilterOr$Outbound = OrEq$Outbound | OrNe$Outbound | Or3$Outbound | OrGte$Outbound | OrLt$Outbound | OrLte$Outbound | OrIn$Outbound | OrNin$Outbound | OrExists$Outbound;
3256
3256
  /** @internal */
3257
- export declare const KnowledgeFilterDollarOr$outboundSchema: z.ZodType<KnowledgeFilterDollarOr$Outbound, z.ZodTypeDef, KnowledgeFilterDollarOr>;
3257
+ export declare const KnowledgeFilterOr$outboundSchema: z.ZodType<KnowledgeFilterOr$Outbound, z.ZodTypeDef, KnowledgeFilterOr>;
3258
3258
  /**
3259
3259
  * @internal
3260
3260
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3261
3261
  */
3262
- export declare namespace KnowledgeFilterDollarOr$ {
3263
- /** @deprecated use `KnowledgeFilterDollarOr$inboundSchema` instead. */
3264
- const inboundSchema: z.ZodType<KnowledgeFilterDollarOr, z.ZodTypeDef, unknown>;
3265
- /** @deprecated use `KnowledgeFilterDollarOr$outboundSchema` instead. */
3266
- const outboundSchema: z.ZodType<KnowledgeFilterDollarOr$Outbound, z.ZodTypeDef, KnowledgeFilterDollarOr>;
3267
- /** @deprecated use `KnowledgeFilterDollarOr$Outbound` instead. */
3268
- type Outbound = KnowledgeFilterDollarOr$Outbound;
3262
+ export declare namespace KnowledgeFilterOr$ {
3263
+ /** @deprecated use `KnowledgeFilterOr$inboundSchema` instead. */
3264
+ const inboundSchema: z.ZodType<KnowledgeFilterOr, z.ZodTypeDef, unknown>;
3265
+ /** @deprecated use `KnowledgeFilterOr$outboundSchema` instead. */
3266
+ const outboundSchema: z.ZodType<KnowledgeFilterOr$Outbound, z.ZodTypeDef, KnowledgeFilterOr>;
3267
+ /** @deprecated use `KnowledgeFilterOr$Outbound` instead. */
3268
+ type Outbound = KnowledgeFilterOr$Outbound;
3269
3269
  }
3270
- export declare function knowledgeFilterDollarOrToJSON(knowledgeFilterDollarOr: KnowledgeFilterDollarOr): string;
3271
- export declare function knowledgeFilterDollarOrFromJSON(jsonString: string): SafeParseResult<KnowledgeFilterDollarOr, SDKValidationError>;
3270
+ export declare function knowledgeFilterOrToJSON(knowledgeFilterOr: KnowledgeFilterOr): string;
3271
+ export declare function knowledgeFilterOrFromJSON(jsonString: string): SafeParseResult<KnowledgeFilterOr, SDKValidationError>;
3272
3272
  /** @internal */
3273
- export declare const DollarOr$inboundSchema: z.ZodType<DollarOr, z.ZodTypeDef, unknown>;
3273
+ export declare const Or$inboundSchema: z.ZodType<Or, z.ZodTypeDef, unknown>;
3274
3274
  /** @internal */
3275
- export type DollarOr$Outbound = {
3276
- $or: Array<{
3277
- [k: string]: DollarOrDollarEq$Outbound | DollarOrDollarNe$Outbound | DollarOr3$Outbound | DollarOrDollarGte$Outbound | DollarOrDollarLt$Outbound | DollarOrDollarLte$Outbound | DollarOrDollarIn$Outbound | DollarOrDollarNin$Outbound | DollarOrDollarExists$Outbound;
3275
+ export type Or$Outbound = {
3276
+ or: Array<{
3277
+ [k: string]: OrEq$Outbound | OrNe$Outbound | Or3$Outbound | OrGte$Outbound | OrLt$Outbound | OrLte$Outbound | OrIn$Outbound | OrNin$Outbound | OrExists$Outbound;
3278
3278
  }>;
3279
3279
  };
3280
3280
  /** @internal */
3281
- export declare const DollarOr$outboundSchema: z.ZodType<DollarOr$Outbound, z.ZodTypeDef, DollarOr>;
3281
+ export declare const Or$outboundSchema: z.ZodType<Or$Outbound, z.ZodTypeDef, Or>;
3282
3282
  /**
3283
3283
  * @internal
3284
3284
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3285
3285
  */
3286
- export declare namespace DollarOr$ {
3287
- /** @deprecated use `DollarOr$inboundSchema` instead. */
3288
- const inboundSchema: z.ZodType<DollarOr, z.ZodTypeDef, unknown>;
3289
- /** @deprecated use `DollarOr$outboundSchema` instead. */
3290
- const outboundSchema: z.ZodType<DollarOr$Outbound, z.ZodTypeDef, DollarOr>;
3291
- /** @deprecated use `DollarOr$Outbound` instead. */
3292
- type Outbound = DollarOr$Outbound;
3286
+ export declare namespace Or$ {
3287
+ /** @deprecated use `Or$inboundSchema` instead. */
3288
+ const inboundSchema: z.ZodType<Or, z.ZodTypeDef, unknown>;
3289
+ /** @deprecated use `Or$outboundSchema` instead. */
3290
+ const outboundSchema: z.ZodType<Or$Outbound, z.ZodTypeDef, Or>;
3291
+ /** @deprecated use `Or$Outbound` instead. */
3292
+ type Outbound = Or$Outbound;
3293
3293
  }
3294
- export declare function dollarOrToJSON(dollarOr: DollarOr): string;
3295
- export declare function dollarOrFromJSON(jsonString: string): SafeParseResult<DollarOr, SDKValidationError>;
3294
+ export declare function orToJSON(or: Or): string;
3295
+ export declare function orFromJSON(jsonString: string): SafeParseResult<Or, SDKValidationError>;
3296
3296
  /** @internal */
3297
- export declare const DollarAndDollarExists$inboundSchema: z.ZodType<DollarAndDollarExists, z.ZodTypeDef, unknown>;
3297
+ export declare const AndExists$inboundSchema: z.ZodType<AndExists, z.ZodTypeDef, unknown>;
3298
3298
  /** @internal */
3299
- export type DollarAndDollarExists$Outbound = {
3300
- $exists: boolean;
3299
+ export type AndExists$Outbound = {
3300
+ exists: boolean;
3301
3301
  };
3302
3302
  /** @internal */
3303
- export declare const DollarAndDollarExists$outboundSchema: z.ZodType<DollarAndDollarExists$Outbound, z.ZodTypeDef, DollarAndDollarExists>;
3303
+ export declare const AndExists$outboundSchema: z.ZodType<AndExists$Outbound, z.ZodTypeDef, AndExists>;
3304
3304
  /**
3305
3305
  * @internal
3306
3306
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3307
3307
  */
3308
- export declare namespace DollarAndDollarExists$ {
3309
- /** @deprecated use `DollarAndDollarExists$inboundSchema` instead. */
3310
- const inboundSchema: z.ZodType<DollarAndDollarExists, z.ZodTypeDef, unknown>;
3311
- /** @deprecated use `DollarAndDollarExists$outboundSchema` instead. */
3312
- const outboundSchema: z.ZodType<DollarAndDollarExists$Outbound, z.ZodTypeDef, DollarAndDollarExists>;
3313
- /** @deprecated use `DollarAndDollarExists$Outbound` instead. */
3314
- type Outbound = DollarAndDollarExists$Outbound;
3308
+ export declare namespace AndExists$ {
3309
+ /** @deprecated use `AndExists$inboundSchema` instead. */
3310
+ const inboundSchema: z.ZodType<AndExists, z.ZodTypeDef, unknown>;
3311
+ /** @deprecated use `AndExists$outboundSchema` instead. */
3312
+ const outboundSchema: z.ZodType<AndExists$Outbound, z.ZodTypeDef, AndExists>;
3313
+ /** @deprecated use `AndExists$Outbound` instead. */
3314
+ type Outbound = AndExists$Outbound;
3315
3315
  }
3316
- export declare function dollarAndDollarExistsToJSON(dollarAndDollarExists: DollarAndDollarExists): string;
3317
- export declare function dollarAndDollarExistsFromJSON(jsonString: string): SafeParseResult<DollarAndDollarExists, SDKValidationError>;
3316
+ export declare function andExistsToJSON(andExists: AndExists): string;
3317
+ export declare function andExistsFromJSON(jsonString: string): SafeParseResult<AndExists, SDKValidationError>;
3318
3318
  /** @internal */
3319
- export declare const DeploymentGetConfigDollarAndDollarNin$inboundSchema: z.ZodType<DeploymentGetConfigDollarAndDollarNin, z.ZodTypeDef, unknown>;
3319
+ export declare const DeploymentGetConfigAndNin$inboundSchema: z.ZodType<DeploymentGetConfigAndNin, z.ZodTypeDef, unknown>;
3320
3320
  /** @internal */
3321
- export type DeploymentGetConfigDollarAndDollarNin$Outbound = string | number | boolean;
3321
+ export type DeploymentGetConfigAndNin$Outbound = string | number | boolean;
3322
3322
  /** @internal */
3323
- export declare const DeploymentGetConfigDollarAndDollarNin$outboundSchema: z.ZodType<DeploymentGetConfigDollarAndDollarNin$Outbound, z.ZodTypeDef, DeploymentGetConfigDollarAndDollarNin>;
3323
+ export declare const DeploymentGetConfigAndNin$outboundSchema: z.ZodType<DeploymentGetConfigAndNin$Outbound, z.ZodTypeDef, DeploymentGetConfigAndNin>;
3324
3324
  /**
3325
3325
  * @internal
3326
3326
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3327
3327
  */
3328
- export declare namespace DeploymentGetConfigDollarAndDollarNin$ {
3329
- /** @deprecated use `DeploymentGetConfigDollarAndDollarNin$inboundSchema` instead. */
3330
- const inboundSchema: z.ZodType<DeploymentGetConfigDollarAndDollarNin, z.ZodTypeDef, unknown>;
3331
- /** @deprecated use `DeploymentGetConfigDollarAndDollarNin$outboundSchema` instead. */
3332
- const outboundSchema: z.ZodType<DeploymentGetConfigDollarAndDollarNin$Outbound, z.ZodTypeDef, DeploymentGetConfigDollarAndDollarNin>;
3333
- /** @deprecated use `DeploymentGetConfigDollarAndDollarNin$Outbound` instead. */
3334
- type Outbound = DeploymentGetConfigDollarAndDollarNin$Outbound;
3328
+ export declare namespace DeploymentGetConfigAndNin$ {
3329
+ /** @deprecated use `DeploymentGetConfigAndNin$inboundSchema` instead. */
3330
+ const inboundSchema: z.ZodType<DeploymentGetConfigAndNin, z.ZodTypeDef, unknown>;
3331
+ /** @deprecated use `DeploymentGetConfigAndNin$outboundSchema` instead. */
3332
+ const outboundSchema: z.ZodType<DeploymentGetConfigAndNin$Outbound, z.ZodTypeDef, DeploymentGetConfigAndNin>;
3333
+ /** @deprecated use `DeploymentGetConfigAndNin$Outbound` instead. */
3334
+ type Outbound = DeploymentGetConfigAndNin$Outbound;
3335
3335
  }
3336
- export declare function deploymentGetConfigDollarAndDollarNinToJSON(deploymentGetConfigDollarAndDollarNin: DeploymentGetConfigDollarAndDollarNin): string;
3337
- export declare function deploymentGetConfigDollarAndDollarNinFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigDollarAndDollarNin, SDKValidationError>;
3336
+ export declare function deploymentGetConfigAndNinToJSON(deploymentGetConfigAndNin: DeploymentGetConfigAndNin): string;
3337
+ export declare function deploymentGetConfigAndNinFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigAndNin, SDKValidationError>;
3338
3338
  /** @internal */
3339
- export declare const DollarAndDollarNin$inboundSchema: z.ZodType<DollarAndDollarNin, z.ZodTypeDef, unknown>;
3339
+ export declare const AndNin$inboundSchema: z.ZodType<AndNin, z.ZodTypeDef, unknown>;
3340
3340
  /** @internal */
3341
- export type DollarAndDollarNin$Outbound = {
3342
- $nin: Array<string | number | boolean>;
3341
+ export type AndNin$Outbound = {
3342
+ nin: Array<string | number | boolean>;
3343
3343
  };
3344
3344
  /** @internal */
3345
- export declare const DollarAndDollarNin$outboundSchema: z.ZodType<DollarAndDollarNin$Outbound, z.ZodTypeDef, DollarAndDollarNin>;
3345
+ export declare const AndNin$outboundSchema: z.ZodType<AndNin$Outbound, z.ZodTypeDef, AndNin>;
3346
3346
  /**
3347
3347
  * @internal
3348
3348
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3349
3349
  */
3350
- export declare namespace DollarAndDollarNin$ {
3351
- /** @deprecated use `DollarAndDollarNin$inboundSchema` instead. */
3352
- const inboundSchema: z.ZodType<DollarAndDollarNin, z.ZodTypeDef, unknown>;
3353
- /** @deprecated use `DollarAndDollarNin$outboundSchema` instead. */
3354
- const outboundSchema: z.ZodType<DollarAndDollarNin$Outbound, z.ZodTypeDef, DollarAndDollarNin>;
3355
- /** @deprecated use `DollarAndDollarNin$Outbound` instead. */
3356
- type Outbound = DollarAndDollarNin$Outbound;
3350
+ export declare namespace AndNin$ {
3351
+ /** @deprecated use `AndNin$inboundSchema` instead. */
3352
+ const inboundSchema: z.ZodType<AndNin, z.ZodTypeDef, unknown>;
3353
+ /** @deprecated use `AndNin$outboundSchema` instead. */
3354
+ const outboundSchema: z.ZodType<AndNin$Outbound, z.ZodTypeDef, AndNin>;
3355
+ /** @deprecated use `AndNin$Outbound` instead. */
3356
+ type Outbound = AndNin$Outbound;
3357
3357
  }
3358
- export declare function dollarAndDollarNinToJSON(dollarAndDollarNin: DollarAndDollarNin): string;
3359
- export declare function dollarAndDollarNinFromJSON(jsonString: string): SafeParseResult<DollarAndDollarNin, SDKValidationError>;
3358
+ export declare function andNinToJSON(andNin: AndNin): string;
3359
+ export declare function andNinFromJSON(jsonString: string): SafeParseResult<AndNin, SDKValidationError>;
3360
3360
  /** @internal */
3361
- export declare const DeploymentGetConfigDollarAndDollarIn$inboundSchema: z.ZodType<DeploymentGetConfigDollarAndDollarIn, z.ZodTypeDef, unknown>;
3361
+ export declare const DeploymentGetConfigAndIn$inboundSchema: z.ZodType<DeploymentGetConfigAndIn, z.ZodTypeDef, unknown>;
3362
3362
  /** @internal */
3363
- export type DeploymentGetConfigDollarAndDollarIn$Outbound = string | number | boolean;
3363
+ export type DeploymentGetConfigAndIn$Outbound = string | number | boolean;
3364
3364
  /** @internal */
3365
- export declare const DeploymentGetConfigDollarAndDollarIn$outboundSchema: z.ZodType<DeploymentGetConfigDollarAndDollarIn$Outbound, z.ZodTypeDef, DeploymentGetConfigDollarAndDollarIn>;
3365
+ export declare const DeploymentGetConfigAndIn$outboundSchema: z.ZodType<DeploymentGetConfigAndIn$Outbound, z.ZodTypeDef, DeploymentGetConfigAndIn>;
3366
3366
  /**
3367
3367
  * @internal
3368
3368
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3369
3369
  */
3370
- export declare namespace DeploymentGetConfigDollarAndDollarIn$ {
3371
- /** @deprecated use `DeploymentGetConfigDollarAndDollarIn$inboundSchema` instead. */
3372
- const inboundSchema: z.ZodType<DeploymentGetConfigDollarAndDollarIn, z.ZodTypeDef, unknown>;
3373
- /** @deprecated use `DeploymentGetConfigDollarAndDollarIn$outboundSchema` instead. */
3374
- const outboundSchema: z.ZodType<DeploymentGetConfigDollarAndDollarIn$Outbound, z.ZodTypeDef, DeploymentGetConfigDollarAndDollarIn>;
3375
- /** @deprecated use `DeploymentGetConfigDollarAndDollarIn$Outbound` instead. */
3376
- type Outbound = DeploymentGetConfigDollarAndDollarIn$Outbound;
3370
+ export declare namespace DeploymentGetConfigAndIn$ {
3371
+ /** @deprecated use `DeploymentGetConfigAndIn$inboundSchema` instead. */
3372
+ const inboundSchema: z.ZodType<DeploymentGetConfigAndIn, z.ZodTypeDef, unknown>;
3373
+ /** @deprecated use `DeploymentGetConfigAndIn$outboundSchema` instead. */
3374
+ const outboundSchema: z.ZodType<DeploymentGetConfigAndIn$Outbound, z.ZodTypeDef, DeploymentGetConfigAndIn>;
3375
+ /** @deprecated use `DeploymentGetConfigAndIn$Outbound` instead. */
3376
+ type Outbound = DeploymentGetConfigAndIn$Outbound;
3377
3377
  }
3378
- export declare function deploymentGetConfigDollarAndDollarInToJSON(deploymentGetConfigDollarAndDollarIn: DeploymentGetConfigDollarAndDollarIn): string;
3379
- export declare function deploymentGetConfigDollarAndDollarInFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigDollarAndDollarIn, SDKValidationError>;
3378
+ export declare function deploymentGetConfigAndInToJSON(deploymentGetConfigAndIn: DeploymentGetConfigAndIn): string;
3379
+ export declare function deploymentGetConfigAndInFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigAndIn, SDKValidationError>;
3380
3380
  /** @internal */
3381
- export declare const DollarAndDollarIn$inboundSchema: z.ZodType<DollarAndDollarIn, z.ZodTypeDef, unknown>;
3381
+ export declare const AndIn$inboundSchema: z.ZodType<AndIn, z.ZodTypeDef, unknown>;
3382
3382
  /** @internal */
3383
- export type DollarAndDollarIn$Outbound = {
3384
- $in: Array<string | number | boolean>;
3383
+ export type AndIn$Outbound = {
3384
+ in: Array<string | number | boolean>;
3385
3385
  };
3386
3386
  /** @internal */
3387
- export declare const DollarAndDollarIn$outboundSchema: z.ZodType<DollarAndDollarIn$Outbound, z.ZodTypeDef, DollarAndDollarIn>;
3387
+ export declare const AndIn$outboundSchema: z.ZodType<AndIn$Outbound, z.ZodTypeDef, AndIn>;
3388
3388
  /**
3389
3389
  * @internal
3390
3390
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3391
3391
  */
3392
- export declare namespace DollarAndDollarIn$ {
3393
- /** @deprecated use `DollarAndDollarIn$inboundSchema` instead. */
3394
- const inboundSchema: z.ZodType<DollarAndDollarIn, z.ZodTypeDef, unknown>;
3395
- /** @deprecated use `DollarAndDollarIn$outboundSchema` instead. */
3396
- const outboundSchema: z.ZodType<DollarAndDollarIn$Outbound, z.ZodTypeDef, DollarAndDollarIn>;
3397
- /** @deprecated use `DollarAndDollarIn$Outbound` instead. */
3398
- type Outbound = DollarAndDollarIn$Outbound;
3392
+ export declare namespace AndIn$ {
3393
+ /** @deprecated use `AndIn$inboundSchema` instead. */
3394
+ const inboundSchema: z.ZodType<AndIn, z.ZodTypeDef, unknown>;
3395
+ /** @deprecated use `AndIn$outboundSchema` instead. */
3396
+ const outboundSchema: z.ZodType<AndIn$Outbound, z.ZodTypeDef, AndIn>;
3397
+ /** @deprecated use `AndIn$Outbound` instead. */
3398
+ type Outbound = AndIn$Outbound;
3399
3399
  }
3400
- export declare function dollarAndDollarInToJSON(dollarAndDollarIn: DollarAndDollarIn): string;
3401
- export declare function dollarAndDollarInFromJSON(jsonString: string): SafeParseResult<DollarAndDollarIn, SDKValidationError>;
3400
+ export declare function andInToJSON(andIn: AndIn): string;
3401
+ export declare function andInFromJSON(jsonString: string): SafeParseResult<AndIn, SDKValidationError>;
3402
3402
  /** @internal */
3403
- export declare const DollarAndDollarLte$inboundSchema: z.ZodType<DollarAndDollarLte, z.ZodTypeDef, unknown>;
3403
+ export declare const AndLte$inboundSchema: z.ZodType<AndLte, z.ZodTypeDef, unknown>;
3404
3404
  /** @internal */
3405
- export type DollarAndDollarLte$Outbound = {
3406
- $lte: number;
3405
+ export type AndLte$Outbound = {
3406
+ lte: number;
3407
3407
  };
3408
3408
  /** @internal */
3409
- export declare const DollarAndDollarLte$outboundSchema: z.ZodType<DollarAndDollarLte$Outbound, z.ZodTypeDef, DollarAndDollarLte>;
3409
+ export declare const AndLte$outboundSchema: z.ZodType<AndLte$Outbound, z.ZodTypeDef, AndLte>;
3410
3410
  /**
3411
3411
  * @internal
3412
3412
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3413
3413
  */
3414
- export declare namespace DollarAndDollarLte$ {
3415
- /** @deprecated use `DollarAndDollarLte$inboundSchema` instead. */
3416
- const inboundSchema: z.ZodType<DollarAndDollarLte, z.ZodTypeDef, unknown>;
3417
- /** @deprecated use `DollarAndDollarLte$outboundSchema` instead. */
3418
- const outboundSchema: z.ZodType<DollarAndDollarLte$Outbound, z.ZodTypeDef, DollarAndDollarLte>;
3419
- /** @deprecated use `DollarAndDollarLte$Outbound` instead. */
3420
- type Outbound = DollarAndDollarLte$Outbound;
3414
+ export declare namespace AndLte$ {
3415
+ /** @deprecated use `AndLte$inboundSchema` instead. */
3416
+ const inboundSchema: z.ZodType<AndLte, z.ZodTypeDef, unknown>;
3417
+ /** @deprecated use `AndLte$outboundSchema` instead. */
3418
+ const outboundSchema: z.ZodType<AndLte$Outbound, z.ZodTypeDef, AndLte>;
3419
+ /** @deprecated use `AndLte$Outbound` instead. */
3420
+ type Outbound = AndLte$Outbound;
3421
3421
  }
3422
- export declare function dollarAndDollarLteToJSON(dollarAndDollarLte: DollarAndDollarLte): string;
3423
- export declare function dollarAndDollarLteFromJSON(jsonString: string): SafeParseResult<DollarAndDollarLte, SDKValidationError>;
3422
+ export declare function andLteToJSON(andLte: AndLte): string;
3423
+ export declare function andLteFromJSON(jsonString: string): SafeParseResult<AndLte, SDKValidationError>;
3424
3424
  /** @internal */
3425
- export declare const DollarAndDollarLt$inboundSchema: z.ZodType<DollarAndDollarLt, z.ZodTypeDef, unknown>;
3425
+ export declare const AndLt$inboundSchema: z.ZodType<AndLt, z.ZodTypeDef, unknown>;
3426
3426
  /** @internal */
3427
- export type DollarAndDollarLt$Outbound = {
3428
- $lt: number;
3427
+ export type AndLt$Outbound = {
3428
+ lt: number;
3429
3429
  };
3430
3430
  /** @internal */
3431
- export declare const DollarAndDollarLt$outboundSchema: z.ZodType<DollarAndDollarLt$Outbound, z.ZodTypeDef, DollarAndDollarLt>;
3431
+ export declare const AndLt$outboundSchema: z.ZodType<AndLt$Outbound, z.ZodTypeDef, AndLt>;
3432
3432
  /**
3433
3433
  * @internal
3434
3434
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3435
3435
  */
3436
- export declare namespace DollarAndDollarLt$ {
3437
- /** @deprecated use `DollarAndDollarLt$inboundSchema` instead. */
3438
- const inboundSchema: z.ZodType<DollarAndDollarLt, z.ZodTypeDef, unknown>;
3439
- /** @deprecated use `DollarAndDollarLt$outboundSchema` instead. */
3440
- const outboundSchema: z.ZodType<DollarAndDollarLt$Outbound, z.ZodTypeDef, DollarAndDollarLt>;
3441
- /** @deprecated use `DollarAndDollarLt$Outbound` instead. */
3442
- type Outbound = DollarAndDollarLt$Outbound;
3436
+ export declare namespace AndLt$ {
3437
+ /** @deprecated use `AndLt$inboundSchema` instead. */
3438
+ const inboundSchema: z.ZodType<AndLt, z.ZodTypeDef, unknown>;
3439
+ /** @deprecated use `AndLt$outboundSchema` instead. */
3440
+ const outboundSchema: z.ZodType<AndLt$Outbound, z.ZodTypeDef, AndLt>;
3441
+ /** @deprecated use `AndLt$Outbound` instead. */
3442
+ type Outbound = AndLt$Outbound;
3443
3443
  }
3444
- export declare function dollarAndDollarLtToJSON(dollarAndDollarLt: DollarAndDollarLt): string;
3445
- export declare function dollarAndDollarLtFromJSON(jsonString: string): SafeParseResult<DollarAndDollarLt, SDKValidationError>;
3444
+ export declare function andLtToJSON(andLt: AndLt): string;
3445
+ export declare function andLtFromJSON(jsonString: string): SafeParseResult<AndLt, SDKValidationError>;
3446
3446
  /** @internal */
3447
- export declare const DollarAndDollarGte$inboundSchema: z.ZodType<DollarAndDollarGte, z.ZodTypeDef, unknown>;
3447
+ export declare const AndGte$inboundSchema: z.ZodType<AndGte, z.ZodTypeDef, unknown>;
3448
3448
  /** @internal */
3449
- export type DollarAndDollarGte$Outbound = {
3450
- $gte: number;
3449
+ export type AndGte$Outbound = {
3450
+ gte: number;
3451
3451
  };
3452
3452
  /** @internal */
3453
- export declare const DollarAndDollarGte$outboundSchema: z.ZodType<DollarAndDollarGte$Outbound, z.ZodTypeDef, DollarAndDollarGte>;
3453
+ export declare const AndGte$outboundSchema: z.ZodType<AndGte$Outbound, z.ZodTypeDef, AndGte>;
3454
3454
  /**
3455
3455
  * @internal
3456
3456
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3457
3457
  */
3458
- export declare namespace DollarAndDollarGte$ {
3459
- /** @deprecated use `DollarAndDollarGte$inboundSchema` instead. */
3460
- const inboundSchema: z.ZodType<DollarAndDollarGte, z.ZodTypeDef, unknown>;
3461
- /** @deprecated use `DollarAndDollarGte$outboundSchema` instead. */
3462
- const outboundSchema: z.ZodType<DollarAndDollarGte$Outbound, z.ZodTypeDef, DollarAndDollarGte>;
3463
- /** @deprecated use `DollarAndDollarGte$Outbound` instead. */
3464
- type Outbound = DollarAndDollarGte$Outbound;
3458
+ export declare namespace AndGte$ {
3459
+ /** @deprecated use `AndGte$inboundSchema` instead. */
3460
+ const inboundSchema: z.ZodType<AndGte, z.ZodTypeDef, unknown>;
3461
+ /** @deprecated use `AndGte$outboundSchema` instead. */
3462
+ const outboundSchema: z.ZodType<AndGte$Outbound, z.ZodTypeDef, AndGte>;
3463
+ /** @deprecated use `AndGte$Outbound` instead. */
3464
+ type Outbound = AndGte$Outbound;
3465
3465
  }
3466
- export declare function dollarAndDollarGteToJSON(dollarAndDollarGte: DollarAndDollarGte): string;
3467
- export declare function dollarAndDollarGteFromJSON(jsonString: string): SafeParseResult<DollarAndDollarGte, SDKValidationError>;
3466
+ export declare function andGteToJSON(andGte: AndGte): string;
3467
+ export declare function andGteFromJSON(jsonString: string): SafeParseResult<AndGte, SDKValidationError>;
3468
3468
  /** @internal */
3469
- export declare const DollarAnd3$inboundSchema: z.ZodType<DollarAnd3, z.ZodTypeDef, unknown>;
3469
+ export declare const And3$inboundSchema: z.ZodType<And3, z.ZodTypeDef, unknown>;
3470
3470
  /** @internal */
3471
- export type DollarAnd3$Outbound = {
3472
- $gt: number;
3471
+ export type And3$Outbound = {
3472
+ gt: number;
3473
3473
  };
3474
3474
  /** @internal */
3475
- export declare const DollarAnd3$outboundSchema: z.ZodType<DollarAnd3$Outbound, z.ZodTypeDef, DollarAnd3>;
3475
+ export declare const And3$outboundSchema: z.ZodType<And3$Outbound, z.ZodTypeDef, And3>;
3476
3476
  /**
3477
3477
  * @internal
3478
3478
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3479
3479
  */
3480
- export declare namespace DollarAnd3$ {
3481
- /** @deprecated use `DollarAnd3$inboundSchema` instead. */
3482
- const inboundSchema: z.ZodType<DollarAnd3, z.ZodTypeDef, unknown>;
3483
- /** @deprecated use `DollarAnd3$outboundSchema` instead. */
3484
- const outboundSchema: z.ZodType<DollarAnd3$Outbound, z.ZodTypeDef, DollarAnd3>;
3485
- /** @deprecated use `DollarAnd3$Outbound` instead. */
3486
- type Outbound = DollarAnd3$Outbound;
3480
+ export declare namespace And3$ {
3481
+ /** @deprecated use `And3$inboundSchema` instead. */
3482
+ const inboundSchema: z.ZodType<And3, z.ZodTypeDef, unknown>;
3483
+ /** @deprecated use `And3$outboundSchema` instead. */
3484
+ const outboundSchema: z.ZodType<And3$Outbound, z.ZodTypeDef, And3>;
3485
+ /** @deprecated use `And3$Outbound` instead. */
3486
+ type Outbound = And3$Outbound;
3487
3487
  }
3488
- export declare function dollarAnd3ToJSON(dollarAnd3: DollarAnd3): string;
3489
- export declare function dollarAnd3FromJSON(jsonString: string): SafeParseResult<DollarAnd3, SDKValidationError>;
3488
+ export declare function and3ToJSON(and3: And3): string;
3489
+ export declare function and3FromJSON(jsonString: string): SafeParseResult<And3, SDKValidationError>;
3490
3490
  /** @internal */
3491
- export declare const DeploymentGetConfigDollarAndDollarNe$inboundSchema: z.ZodType<DeploymentGetConfigDollarAndDollarNe, z.ZodTypeDef, unknown>;
3491
+ export declare const DeploymentGetConfigAndNe$inboundSchema: z.ZodType<DeploymentGetConfigAndNe, z.ZodTypeDef, unknown>;
3492
3492
  /** @internal */
3493
- export type DeploymentGetConfigDollarAndDollarNe$Outbound = string | number | boolean;
3493
+ export type DeploymentGetConfigAndNe$Outbound = string | number | boolean;
3494
3494
  /** @internal */
3495
- export declare const DeploymentGetConfigDollarAndDollarNe$outboundSchema: z.ZodType<DeploymentGetConfigDollarAndDollarNe$Outbound, z.ZodTypeDef, DeploymentGetConfigDollarAndDollarNe>;
3495
+ export declare const DeploymentGetConfigAndNe$outboundSchema: z.ZodType<DeploymentGetConfigAndNe$Outbound, z.ZodTypeDef, DeploymentGetConfigAndNe>;
3496
3496
  /**
3497
3497
  * @internal
3498
3498
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3499
3499
  */
3500
- export declare namespace DeploymentGetConfigDollarAndDollarNe$ {
3501
- /** @deprecated use `DeploymentGetConfigDollarAndDollarNe$inboundSchema` instead. */
3502
- const inboundSchema: z.ZodType<DeploymentGetConfigDollarAndDollarNe, z.ZodTypeDef, unknown>;
3503
- /** @deprecated use `DeploymentGetConfigDollarAndDollarNe$outboundSchema` instead. */
3504
- const outboundSchema: z.ZodType<DeploymentGetConfigDollarAndDollarNe$Outbound, z.ZodTypeDef, DeploymentGetConfigDollarAndDollarNe>;
3505
- /** @deprecated use `DeploymentGetConfigDollarAndDollarNe$Outbound` instead. */
3506
- type Outbound = DeploymentGetConfigDollarAndDollarNe$Outbound;
3500
+ export declare namespace DeploymentGetConfigAndNe$ {
3501
+ /** @deprecated use `DeploymentGetConfigAndNe$inboundSchema` instead. */
3502
+ const inboundSchema: z.ZodType<DeploymentGetConfigAndNe, z.ZodTypeDef, unknown>;
3503
+ /** @deprecated use `DeploymentGetConfigAndNe$outboundSchema` instead. */
3504
+ const outboundSchema: z.ZodType<DeploymentGetConfigAndNe$Outbound, z.ZodTypeDef, DeploymentGetConfigAndNe>;
3505
+ /** @deprecated use `DeploymentGetConfigAndNe$Outbound` instead. */
3506
+ type Outbound = DeploymentGetConfigAndNe$Outbound;
3507
3507
  }
3508
- export declare function deploymentGetConfigDollarAndDollarNeToJSON(deploymentGetConfigDollarAndDollarNe: DeploymentGetConfigDollarAndDollarNe): string;
3509
- export declare function deploymentGetConfigDollarAndDollarNeFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigDollarAndDollarNe, SDKValidationError>;
3508
+ export declare function deploymentGetConfigAndNeToJSON(deploymentGetConfigAndNe: DeploymentGetConfigAndNe): string;
3509
+ export declare function deploymentGetConfigAndNeFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigAndNe, SDKValidationError>;
3510
3510
  /** @internal */
3511
- export declare const DollarAndDollarNe$inboundSchema: z.ZodType<DollarAndDollarNe, z.ZodTypeDef, unknown>;
3511
+ export declare const AndNe$inboundSchema: z.ZodType<AndNe, z.ZodTypeDef, unknown>;
3512
3512
  /** @internal */
3513
- export type DollarAndDollarNe$Outbound = {
3514
- $ne: string | number | boolean;
3513
+ export type AndNe$Outbound = {
3514
+ ne: string | number | boolean;
3515
3515
  };
3516
3516
  /** @internal */
3517
- export declare const DollarAndDollarNe$outboundSchema: z.ZodType<DollarAndDollarNe$Outbound, z.ZodTypeDef, DollarAndDollarNe>;
3517
+ export declare const AndNe$outboundSchema: z.ZodType<AndNe$Outbound, z.ZodTypeDef, AndNe>;
3518
3518
  /**
3519
3519
  * @internal
3520
3520
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3521
3521
  */
3522
- export declare namespace DollarAndDollarNe$ {
3523
- /** @deprecated use `DollarAndDollarNe$inboundSchema` instead. */
3524
- const inboundSchema: z.ZodType<DollarAndDollarNe, z.ZodTypeDef, unknown>;
3525
- /** @deprecated use `DollarAndDollarNe$outboundSchema` instead. */
3526
- const outboundSchema: z.ZodType<DollarAndDollarNe$Outbound, z.ZodTypeDef, DollarAndDollarNe>;
3527
- /** @deprecated use `DollarAndDollarNe$Outbound` instead. */
3528
- type Outbound = DollarAndDollarNe$Outbound;
3522
+ export declare namespace AndNe$ {
3523
+ /** @deprecated use `AndNe$inboundSchema` instead. */
3524
+ const inboundSchema: z.ZodType<AndNe, z.ZodTypeDef, unknown>;
3525
+ /** @deprecated use `AndNe$outboundSchema` instead. */
3526
+ const outboundSchema: z.ZodType<AndNe$Outbound, z.ZodTypeDef, AndNe>;
3527
+ /** @deprecated use `AndNe$Outbound` instead. */
3528
+ type Outbound = AndNe$Outbound;
3529
3529
  }
3530
- export declare function dollarAndDollarNeToJSON(dollarAndDollarNe: DollarAndDollarNe): string;
3531
- export declare function dollarAndDollarNeFromJSON(jsonString: string): SafeParseResult<DollarAndDollarNe, SDKValidationError>;
3530
+ export declare function andNeToJSON(andNe: AndNe): string;
3531
+ export declare function andNeFromJSON(jsonString: string): SafeParseResult<AndNe, SDKValidationError>;
3532
3532
  /** @internal */
3533
- export declare const DeploymentGetConfigDollarAndDollarEq$inboundSchema: z.ZodType<DeploymentGetConfigDollarAndDollarEq, z.ZodTypeDef, unknown>;
3533
+ export declare const DeploymentGetConfigAndEq$inboundSchema: z.ZodType<DeploymentGetConfigAndEq, z.ZodTypeDef, unknown>;
3534
3534
  /** @internal */
3535
- export type DeploymentGetConfigDollarAndDollarEq$Outbound = string | number | boolean;
3535
+ export type DeploymentGetConfigAndEq$Outbound = string | number | boolean;
3536
3536
  /** @internal */
3537
- export declare const DeploymentGetConfigDollarAndDollarEq$outboundSchema: z.ZodType<DeploymentGetConfigDollarAndDollarEq$Outbound, z.ZodTypeDef, DeploymentGetConfigDollarAndDollarEq>;
3537
+ export declare const DeploymentGetConfigAndEq$outboundSchema: z.ZodType<DeploymentGetConfigAndEq$Outbound, z.ZodTypeDef, DeploymentGetConfigAndEq>;
3538
3538
  /**
3539
3539
  * @internal
3540
3540
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3541
3541
  */
3542
- export declare namespace DeploymentGetConfigDollarAndDollarEq$ {
3543
- /** @deprecated use `DeploymentGetConfigDollarAndDollarEq$inboundSchema` instead. */
3544
- const inboundSchema: z.ZodType<DeploymentGetConfigDollarAndDollarEq, z.ZodTypeDef, unknown>;
3545
- /** @deprecated use `DeploymentGetConfigDollarAndDollarEq$outboundSchema` instead. */
3546
- const outboundSchema: z.ZodType<DeploymentGetConfigDollarAndDollarEq$Outbound, z.ZodTypeDef, DeploymentGetConfigDollarAndDollarEq>;
3547
- /** @deprecated use `DeploymentGetConfigDollarAndDollarEq$Outbound` instead. */
3548
- type Outbound = DeploymentGetConfigDollarAndDollarEq$Outbound;
3542
+ export declare namespace DeploymentGetConfigAndEq$ {
3543
+ /** @deprecated use `DeploymentGetConfigAndEq$inboundSchema` instead. */
3544
+ const inboundSchema: z.ZodType<DeploymentGetConfigAndEq, z.ZodTypeDef, unknown>;
3545
+ /** @deprecated use `DeploymentGetConfigAndEq$outboundSchema` instead. */
3546
+ const outboundSchema: z.ZodType<DeploymentGetConfigAndEq$Outbound, z.ZodTypeDef, DeploymentGetConfigAndEq>;
3547
+ /** @deprecated use `DeploymentGetConfigAndEq$Outbound` instead. */
3548
+ type Outbound = DeploymentGetConfigAndEq$Outbound;
3549
3549
  }
3550
- export declare function deploymentGetConfigDollarAndDollarEqToJSON(deploymentGetConfigDollarAndDollarEq: DeploymentGetConfigDollarAndDollarEq): string;
3551
- export declare function deploymentGetConfigDollarAndDollarEqFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigDollarAndDollarEq, SDKValidationError>;
3550
+ export declare function deploymentGetConfigAndEqToJSON(deploymentGetConfigAndEq: DeploymentGetConfigAndEq): string;
3551
+ export declare function deploymentGetConfigAndEqFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigAndEq, SDKValidationError>;
3552
3552
  /** @internal */
3553
- export declare const DollarAndDollarEq$inboundSchema: z.ZodType<DollarAndDollarEq, z.ZodTypeDef, unknown>;
3553
+ export declare const AndEq$inboundSchema: z.ZodType<AndEq, z.ZodTypeDef, unknown>;
3554
3554
  /** @internal */
3555
- export type DollarAndDollarEq$Outbound = {
3556
- $eq: string | number | boolean;
3555
+ export type AndEq$Outbound = {
3556
+ eq: string | number | boolean;
3557
3557
  };
3558
3558
  /** @internal */
3559
- export declare const DollarAndDollarEq$outboundSchema: z.ZodType<DollarAndDollarEq$Outbound, z.ZodTypeDef, DollarAndDollarEq>;
3559
+ export declare const AndEq$outboundSchema: z.ZodType<AndEq$Outbound, z.ZodTypeDef, AndEq>;
3560
3560
  /**
3561
3561
  * @internal
3562
3562
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3563
3563
  */
3564
- export declare namespace DollarAndDollarEq$ {
3565
- /** @deprecated use `DollarAndDollarEq$inboundSchema` instead. */
3566
- const inboundSchema: z.ZodType<DollarAndDollarEq, z.ZodTypeDef, unknown>;
3567
- /** @deprecated use `DollarAndDollarEq$outboundSchema` instead. */
3568
- const outboundSchema: z.ZodType<DollarAndDollarEq$Outbound, z.ZodTypeDef, DollarAndDollarEq>;
3569
- /** @deprecated use `DollarAndDollarEq$Outbound` instead. */
3570
- type Outbound = DollarAndDollarEq$Outbound;
3564
+ export declare namespace AndEq$ {
3565
+ /** @deprecated use `AndEq$inboundSchema` instead. */
3566
+ const inboundSchema: z.ZodType<AndEq, z.ZodTypeDef, unknown>;
3567
+ /** @deprecated use `AndEq$outboundSchema` instead. */
3568
+ const outboundSchema: z.ZodType<AndEq$Outbound, z.ZodTypeDef, AndEq>;
3569
+ /** @deprecated use `AndEq$Outbound` instead. */
3570
+ type Outbound = AndEq$Outbound;
3571
3571
  }
3572
- export declare function dollarAndDollarEqToJSON(dollarAndDollarEq: DollarAndDollarEq): string;
3573
- export declare function dollarAndDollarEqFromJSON(jsonString: string): SafeParseResult<DollarAndDollarEq, SDKValidationError>;
3572
+ export declare function andEqToJSON(andEq: AndEq): string;
3573
+ export declare function andEqFromJSON(jsonString: string): SafeParseResult<AndEq, SDKValidationError>;
3574
3574
  /** @internal */
3575
- export declare const KnowledgeFilterDollarAnd$inboundSchema: z.ZodType<KnowledgeFilterDollarAnd, z.ZodTypeDef, unknown>;
3575
+ export declare const KnowledgeFilterAnd$inboundSchema: z.ZodType<KnowledgeFilterAnd, z.ZodTypeDef, unknown>;
3576
3576
  /** @internal */
3577
- export type KnowledgeFilterDollarAnd$Outbound = DollarAndDollarEq$Outbound | DollarAndDollarNe$Outbound | DollarAnd3$Outbound | DollarAndDollarGte$Outbound | DollarAndDollarLt$Outbound | DollarAndDollarLte$Outbound | DollarAndDollarIn$Outbound | DollarAndDollarNin$Outbound | DollarAndDollarExists$Outbound;
3577
+ export type KnowledgeFilterAnd$Outbound = AndEq$Outbound | AndNe$Outbound | And3$Outbound | AndGte$Outbound | AndLt$Outbound | AndLte$Outbound | AndIn$Outbound | AndNin$Outbound | AndExists$Outbound;
3578
3578
  /** @internal */
3579
- export declare const KnowledgeFilterDollarAnd$outboundSchema: z.ZodType<KnowledgeFilterDollarAnd$Outbound, z.ZodTypeDef, KnowledgeFilterDollarAnd>;
3579
+ export declare const KnowledgeFilterAnd$outboundSchema: z.ZodType<KnowledgeFilterAnd$Outbound, z.ZodTypeDef, KnowledgeFilterAnd>;
3580
3580
  /**
3581
3581
  * @internal
3582
3582
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3583
3583
  */
3584
- export declare namespace KnowledgeFilterDollarAnd$ {
3585
- /** @deprecated use `KnowledgeFilterDollarAnd$inboundSchema` instead. */
3586
- const inboundSchema: z.ZodType<KnowledgeFilterDollarAnd, z.ZodTypeDef, unknown>;
3587
- /** @deprecated use `KnowledgeFilterDollarAnd$outboundSchema` instead. */
3588
- const outboundSchema: z.ZodType<KnowledgeFilterDollarAnd$Outbound, z.ZodTypeDef, KnowledgeFilterDollarAnd>;
3589
- /** @deprecated use `KnowledgeFilterDollarAnd$Outbound` instead. */
3590
- type Outbound = KnowledgeFilterDollarAnd$Outbound;
3584
+ export declare namespace KnowledgeFilterAnd$ {
3585
+ /** @deprecated use `KnowledgeFilterAnd$inboundSchema` instead. */
3586
+ const inboundSchema: z.ZodType<KnowledgeFilterAnd, z.ZodTypeDef, unknown>;
3587
+ /** @deprecated use `KnowledgeFilterAnd$outboundSchema` instead. */
3588
+ const outboundSchema: z.ZodType<KnowledgeFilterAnd$Outbound, z.ZodTypeDef, KnowledgeFilterAnd>;
3589
+ /** @deprecated use `KnowledgeFilterAnd$Outbound` instead. */
3590
+ type Outbound = KnowledgeFilterAnd$Outbound;
3591
3591
  }
3592
- export declare function knowledgeFilterDollarAndToJSON(knowledgeFilterDollarAnd: KnowledgeFilterDollarAnd): string;
3593
- export declare function knowledgeFilterDollarAndFromJSON(jsonString: string): SafeParseResult<KnowledgeFilterDollarAnd, SDKValidationError>;
3592
+ export declare function knowledgeFilterAndToJSON(knowledgeFilterAnd: KnowledgeFilterAnd): string;
3593
+ export declare function knowledgeFilterAndFromJSON(jsonString: string): SafeParseResult<KnowledgeFilterAnd, SDKValidationError>;
3594
3594
  /** @internal */
3595
- export declare const DollarAnd$inboundSchema: z.ZodType<DollarAnd, z.ZodTypeDef, unknown>;
3595
+ export declare const And$inboundSchema: z.ZodType<And, z.ZodTypeDef, unknown>;
3596
3596
  /** @internal */
3597
- export type DollarAnd$Outbound = {
3598
- $and: Array<{
3599
- [k: string]: DollarAndDollarEq$Outbound | DollarAndDollarNe$Outbound | DollarAnd3$Outbound | DollarAndDollarGte$Outbound | DollarAndDollarLt$Outbound | DollarAndDollarLte$Outbound | DollarAndDollarIn$Outbound | DollarAndDollarNin$Outbound | DollarAndDollarExists$Outbound;
3597
+ export type And$Outbound = {
3598
+ and: Array<{
3599
+ [k: string]: AndEq$Outbound | AndNe$Outbound | And3$Outbound | AndGte$Outbound | AndLt$Outbound | AndLte$Outbound | AndIn$Outbound | AndNin$Outbound | AndExists$Outbound;
3600
3600
  }>;
3601
3601
  };
3602
3602
  /** @internal */
3603
- export declare const DollarAnd$outboundSchema: z.ZodType<DollarAnd$Outbound, z.ZodTypeDef, DollarAnd>;
3603
+ export declare const And$outboundSchema: z.ZodType<And$Outbound, z.ZodTypeDef, And>;
3604
3604
  /**
3605
3605
  * @internal
3606
3606
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3607
3607
  */
3608
- export declare namespace DollarAnd$ {
3609
- /** @deprecated use `DollarAnd$inboundSchema` instead. */
3610
- const inboundSchema: z.ZodType<DollarAnd, z.ZodTypeDef, unknown>;
3611
- /** @deprecated use `DollarAnd$outboundSchema` instead. */
3612
- const outboundSchema: z.ZodType<DollarAnd$Outbound, z.ZodTypeDef, DollarAnd>;
3613
- /** @deprecated use `DollarAnd$Outbound` instead. */
3614
- type Outbound = DollarAnd$Outbound;
3608
+ export declare namespace And$ {
3609
+ /** @deprecated use `And$inboundSchema` instead. */
3610
+ const inboundSchema: z.ZodType<And, z.ZodTypeDef, unknown>;
3611
+ /** @deprecated use `And$outboundSchema` instead. */
3612
+ const outboundSchema: z.ZodType<And$Outbound, z.ZodTypeDef, And>;
3613
+ /** @deprecated use `And$Outbound` instead. */
3614
+ type Outbound = And$Outbound;
3615
3615
  }
3616
- export declare function dollarAndToJSON(dollarAnd: DollarAnd): string;
3617
- export declare function dollarAndFromJSON(jsonString: string): SafeParseResult<DollarAnd, SDKValidationError>;
3616
+ export declare function andToJSON(and: And): string;
3617
+ export declare function andFromJSON(jsonString: string): SafeParseResult<And, SDKValidationError>;
3618
3618
  /** @internal */
3619
- export declare const DollarExists$inboundSchema: z.ZodType<DollarExists, z.ZodTypeDef, unknown>;
3619
+ export declare const Exists$inboundSchema: z.ZodType<Exists, z.ZodTypeDef, unknown>;
3620
3620
  /** @internal */
3621
- export type DollarExists$Outbound = {
3622
- $exists: boolean;
3621
+ export type Exists$Outbound = {
3622
+ exists: boolean;
3623
3623
  };
3624
3624
  /** @internal */
3625
- export declare const DollarExists$outboundSchema: z.ZodType<DollarExists$Outbound, z.ZodTypeDef, DollarExists>;
3625
+ export declare const Exists$outboundSchema: z.ZodType<Exists$Outbound, z.ZodTypeDef, Exists>;
3626
3626
  /**
3627
3627
  * @internal
3628
3628
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3629
3629
  */
3630
- export declare namespace DollarExists$ {
3631
- /** @deprecated use `DollarExists$inboundSchema` instead. */
3632
- const inboundSchema: z.ZodType<DollarExists, z.ZodTypeDef, unknown>;
3633
- /** @deprecated use `DollarExists$outboundSchema` instead. */
3634
- const outboundSchema: z.ZodType<DollarExists$Outbound, z.ZodTypeDef, DollarExists>;
3635
- /** @deprecated use `DollarExists$Outbound` instead. */
3636
- type Outbound = DollarExists$Outbound;
3630
+ export declare namespace Exists$ {
3631
+ /** @deprecated use `Exists$inboundSchema` instead. */
3632
+ const inboundSchema: z.ZodType<Exists, z.ZodTypeDef, unknown>;
3633
+ /** @deprecated use `Exists$outboundSchema` instead. */
3634
+ const outboundSchema: z.ZodType<Exists$Outbound, z.ZodTypeDef, Exists>;
3635
+ /** @deprecated use `Exists$Outbound` instead. */
3636
+ type Outbound = Exists$Outbound;
3637
3637
  }
3638
- export declare function dollarExistsToJSON(dollarExists: DollarExists): string;
3639
- export declare function dollarExistsFromJSON(jsonString: string): SafeParseResult<DollarExists, SDKValidationError>;
3638
+ export declare function existsToJSON(exists: Exists): string;
3639
+ export declare function existsFromJSON(jsonString: string): SafeParseResult<Exists, SDKValidationError>;
3640
3640
  /** @internal */
3641
- export declare const OneDollarNin$inboundSchema: z.ZodType<OneDollarNin, z.ZodTypeDef, unknown>;
3641
+ export declare const OneNin$inboundSchema: z.ZodType<OneNin, z.ZodTypeDef, unknown>;
3642
3642
  /** @internal */
3643
- export type OneDollarNin$Outbound = string | number | boolean;
3643
+ export type OneNin$Outbound = string | number | boolean;
3644
3644
  /** @internal */
3645
- export declare const OneDollarNin$outboundSchema: z.ZodType<OneDollarNin$Outbound, z.ZodTypeDef, OneDollarNin>;
3645
+ export declare const OneNin$outboundSchema: z.ZodType<OneNin$Outbound, z.ZodTypeDef, OneNin>;
3646
3646
  /**
3647
3647
  * @internal
3648
3648
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3649
3649
  */
3650
- export declare namespace OneDollarNin$ {
3651
- /** @deprecated use `OneDollarNin$inboundSchema` instead. */
3652
- const inboundSchema: z.ZodType<OneDollarNin, z.ZodTypeDef, unknown>;
3653
- /** @deprecated use `OneDollarNin$outboundSchema` instead. */
3654
- const outboundSchema: z.ZodType<OneDollarNin$Outbound, z.ZodTypeDef, OneDollarNin>;
3655
- /** @deprecated use `OneDollarNin$Outbound` instead. */
3656
- type Outbound = OneDollarNin$Outbound;
3650
+ export declare namespace OneNin$ {
3651
+ /** @deprecated use `OneNin$inboundSchema` instead. */
3652
+ const inboundSchema: z.ZodType<OneNin, z.ZodTypeDef, unknown>;
3653
+ /** @deprecated use `OneNin$outboundSchema` instead. */
3654
+ const outboundSchema: z.ZodType<OneNin$Outbound, z.ZodTypeDef, OneNin>;
3655
+ /** @deprecated use `OneNin$Outbound` instead. */
3656
+ type Outbound = OneNin$Outbound;
3657
3657
  }
3658
- export declare function oneDollarNinToJSON(oneDollarNin: OneDollarNin): string;
3659
- export declare function oneDollarNinFromJSON(jsonString: string): SafeParseResult<OneDollarNin, SDKValidationError>;
3658
+ export declare function oneNinToJSON(oneNin: OneNin): string;
3659
+ export declare function oneNinFromJSON(jsonString: string): SafeParseResult<OneNin, SDKValidationError>;
3660
3660
  /** @internal */
3661
- export declare const DollarNin$inboundSchema: z.ZodType<DollarNin, z.ZodTypeDef, unknown>;
3661
+ export declare const Nin$inboundSchema: z.ZodType<Nin, z.ZodTypeDef, unknown>;
3662
3662
  /** @internal */
3663
- export type DollarNin$Outbound = {
3664
- $nin: Array<string | number | boolean>;
3663
+ export type Nin$Outbound = {
3664
+ nin: Array<string | number | boolean>;
3665
3665
  };
3666
3666
  /** @internal */
3667
- export declare const DollarNin$outboundSchema: z.ZodType<DollarNin$Outbound, z.ZodTypeDef, DollarNin>;
3667
+ export declare const Nin$outboundSchema: z.ZodType<Nin$Outbound, z.ZodTypeDef, Nin>;
3668
3668
  /**
3669
3669
  * @internal
3670
3670
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3671
3671
  */
3672
- export declare namespace DollarNin$ {
3673
- /** @deprecated use `DollarNin$inboundSchema` instead. */
3674
- const inboundSchema: z.ZodType<DollarNin, z.ZodTypeDef, unknown>;
3675
- /** @deprecated use `DollarNin$outboundSchema` instead. */
3676
- const outboundSchema: z.ZodType<DollarNin$Outbound, z.ZodTypeDef, DollarNin>;
3677
- /** @deprecated use `DollarNin$Outbound` instead. */
3678
- type Outbound = DollarNin$Outbound;
3672
+ export declare namespace Nin$ {
3673
+ /** @deprecated use `Nin$inboundSchema` instead. */
3674
+ const inboundSchema: z.ZodType<Nin, z.ZodTypeDef, unknown>;
3675
+ /** @deprecated use `Nin$outboundSchema` instead. */
3676
+ const outboundSchema: z.ZodType<Nin$Outbound, z.ZodTypeDef, Nin>;
3677
+ /** @deprecated use `Nin$Outbound` instead. */
3678
+ type Outbound = Nin$Outbound;
3679
3679
  }
3680
- export declare function dollarNinToJSON(dollarNin: DollarNin): string;
3681
- export declare function dollarNinFromJSON(jsonString: string): SafeParseResult<DollarNin, SDKValidationError>;
3680
+ export declare function ninToJSON(nin: Nin): string;
3681
+ export declare function ninFromJSON(jsonString: string): SafeParseResult<Nin, SDKValidationError>;
3682
3682
  /** @internal */
3683
- export declare const OneDollarIn$inboundSchema: z.ZodType<OneDollarIn, z.ZodTypeDef, unknown>;
3683
+ export declare const OneIn$inboundSchema: z.ZodType<OneIn, z.ZodTypeDef, unknown>;
3684
3684
  /** @internal */
3685
- export type OneDollarIn$Outbound = string | number | boolean;
3685
+ export type OneIn$Outbound = string | number | boolean;
3686
3686
  /** @internal */
3687
- export declare const OneDollarIn$outboundSchema: z.ZodType<OneDollarIn$Outbound, z.ZodTypeDef, OneDollarIn>;
3687
+ export declare const OneIn$outboundSchema: z.ZodType<OneIn$Outbound, z.ZodTypeDef, OneIn>;
3688
3688
  /**
3689
3689
  * @internal
3690
3690
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3691
3691
  */
3692
- export declare namespace OneDollarIn$ {
3693
- /** @deprecated use `OneDollarIn$inboundSchema` instead. */
3694
- const inboundSchema: z.ZodType<OneDollarIn, z.ZodTypeDef, unknown>;
3695
- /** @deprecated use `OneDollarIn$outboundSchema` instead. */
3696
- const outboundSchema: z.ZodType<OneDollarIn$Outbound, z.ZodTypeDef, OneDollarIn>;
3697
- /** @deprecated use `OneDollarIn$Outbound` instead. */
3698
- type Outbound = OneDollarIn$Outbound;
3692
+ export declare namespace OneIn$ {
3693
+ /** @deprecated use `OneIn$inboundSchema` instead. */
3694
+ const inboundSchema: z.ZodType<OneIn, z.ZodTypeDef, unknown>;
3695
+ /** @deprecated use `OneIn$outboundSchema` instead. */
3696
+ const outboundSchema: z.ZodType<OneIn$Outbound, z.ZodTypeDef, OneIn>;
3697
+ /** @deprecated use `OneIn$Outbound` instead. */
3698
+ type Outbound = OneIn$Outbound;
3699
3699
  }
3700
- export declare function oneDollarInToJSON(oneDollarIn: OneDollarIn): string;
3701
- export declare function oneDollarInFromJSON(jsonString: string): SafeParseResult<OneDollarIn, SDKValidationError>;
3700
+ export declare function oneInToJSON(oneIn: OneIn): string;
3701
+ export declare function oneInFromJSON(jsonString: string): SafeParseResult<OneIn, SDKValidationError>;
3702
3702
  /** @internal */
3703
- export declare const DollarIn$inboundSchema: z.ZodType<DollarIn, z.ZodTypeDef, unknown>;
3703
+ export declare const In$inboundSchema: z.ZodType<In, z.ZodTypeDef, unknown>;
3704
3704
  /** @internal */
3705
- export type DollarIn$Outbound = {
3706
- $in: Array<string | number | boolean>;
3705
+ export type In$Outbound = {
3706
+ in: Array<string | number | boolean>;
3707
3707
  };
3708
3708
  /** @internal */
3709
- export declare const DollarIn$outboundSchema: z.ZodType<DollarIn$Outbound, z.ZodTypeDef, DollarIn>;
3709
+ export declare const In$outboundSchema: z.ZodType<In$Outbound, z.ZodTypeDef, In>;
3710
3710
  /**
3711
3711
  * @internal
3712
3712
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3713
3713
  */
3714
- export declare namespace DollarIn$ {
3715
- /** @deprecated use `DollarIn$inboundSchema` instead. */
3716
- const inboundSchema: z.ZodType<DollarIn, z.ZodTypeDef, unknown>;
3717
- /** @deprecated use `DollarIn$outboundSchema` instead. */
3718
- const outboundSchema: z.ZodType<DollarIn$Outbound, z.ZodTypeDef, DollarIn>;
3719
- /** @deprecated use `DollarIn$Outbound` instead. */
3720
- type Outbound = DollarIn$Outbound;
3714
+ export declare namespace In$ {
3715
+ /** @deprecated use `In$inboundSchema` instead. */
3716
+ const inboundSchema: z.ZodType<In, z.ZodTypeDef, unknown>;
3717
+ /** @deprecated use `In$outboundSchema` instead. */
3718
+ const outboundSchema: z.ZodType<In$Outbound, z.ZodTypeDef, In>;
3719
+ /** @deprecated use `In$Outbound` instead. */
3720
+ type Outbound = In$Outbound;
3721
3721
  }
3722
- export declare function dollarInToJSON(dollarIn: DollarIn): string;
3723
- export declare function dollarInFromJSON(jsonString: string): SafeParseResult<DollarIn, SDKValidationError>;
3722
+ export declare function inToJSON(value: In): string;
3723
+ export declare function inFromJSON(jsonString: string): SafeParseResult<In, SDKValidationError>;
3724
3724
  /** @internal */
3725
- export declare const DollarLte$inboundSchema: z.ZodType<DollarLte, z.ZodTypeDef, unknown>;
3725
+ export declare const Lte$inboundSchema: z.ZodType<Lte, z.ZodTypeDef, unknown>;
3726
3726
  /** @internal */
3727
- export type DollarLte$Outbound = {
3728
- $lte: number;
3727
+ export type Lte$Outbound = {
3728
+ lte: number;
3729
3729
  };
3730
3730
  /** @internal */
3731
- export declare const DollarLte$outboundSchema: z.ZodType<DollarLte$Outbound, z.ZodTypeDef, DollarLte>;
3731
+ export declare const Lte$outboundSchema: z.ZodType<Lte$Outbound, z.ZodTypeDef, Lte>;
3732
3732
  /**
3733
3733
  * @internal
3734
3734
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3735
3735
  */
3736
- export declare namespace DollarLte$ {
3737
- /** @deprecated use `DollarLte$inboundSchema` instead. */
3738
- const inboundSchema: z.ZodType<DollarLte, z.ZodTypeDef, unknown>;
3739
- /** @deprecated use `DollarLte$outboundSchema` instead. */
3740
- const outboundSchema: z.ZodType<DollarLte$Outbound, z.ZodTypeDef, DollarLte>;
3741
- /** @deprecated use `DollarLte$Outbound` instead. */
3742
- type Outbound = DollarLte$Outbound;
3736
+ export declare namespace Lte$ {
3737
+ /** @deprecated use `Lte$inboundSchema` instead. */
3738
+ const inboundSchema: z.ZodType<Lte, z.ZodTypeDef, unknown>;
3739
+ /** @deprecated use `Lte$outboundSchema` instead. */
3740
+ const outboundSchema: z.ZodType<Lte$Outbound, z.ZodTypeDef, Lte>;
3741
+ /** @deprecated use `Lte$Outbound` instead. */
3742
+ type Outbound = Lte$Outbound;
3743
3743
  }
3744
- export declare function dollarLteToJSON(dollarLte: DollarLte): string;
3745
- export declare function dollarLteFromJSON(jsonString: string): SafeParseResult<DollarLte, SDKValidationError>;
3744
+ export declare function lteToJSON(lte: Lte): string;
3745
+ export declare function lteFromJSON(jsonString: string): SafeParseResult<Lte, SDKValidationError>;
3746
3746
  /** @internal */
3747
- export declare const DollarLt$inboundSchema: z.ZodType<DollarLt, z.ZodTypeDef, unknown>;
3747
+ export declare const Lt$inboundSchema: z.ZodType<Lt, z.ZodTypeDef, unknown>;
3748
3748
  /** @internal */
3749
- export type DollarLt$Outbound = {
3750
- $lt: number;
3749
+ export type Lt$Outbound = {
3750
+ lt: number;
3751
3751
  };
3752
3752
  /** @internal */
3753
- export declare const DollarLt$outboundSchema: z.ZodType<DollarLt$Outbound, z.ZodTypeDef, DollarLt>;
3753
+ export declare const Lt$outboundSchema: z.ZodType<Lt$Outbound, z.ZodTypeDef, Lt>;
3754
3754
  /**
3755
3755
  * @internal
3756
3756
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3757
3757
  */
3758
- export declare namespace DollarLt$ {
3759
- /** @deprecated use `DollarLt$inboundSchema` instead. */
3760
- const inboundSchema: z.ZodType<DollarLt, z.ZodTypeDef, unknown>;
3761
- /** @deprecated use `DollarLt$outboundSchema` instead. */
3762
- const outboundSchema: z.ZodType<DollarLt$Outbound, z.ZodTypeDef, DollarLt>;
3763
- /** @deprecated use `DollarLt$Outbound` instead. */
3764
- type Outbound = DollarLt$Outbound;
3758
+ export declare namespace Lt$ {
3759
+ /** @deprecated use `Lt$inboundSchema` instead. */
3760
+ const inboundSchema: z.ZodType<Lt, z.ZodTypeDef, unknown>;
3761
+ /** @deprecated use `Lt$outboundSchema` instead. */
3762
+ const outboundSchema: z.ZodType<Lt$Outbound, z.ZodTypeDef, Lt>;
3763
+ /** @deprecated use `Lt$Outbound` instead. */
3764
+ type Outbound = Lt$Outbound;
3765
3765
  }
3766
- export declare function dollarLtToJSON(dollarLt: DollarLt): string;
3767
- export declare function dollarLtFromJSON(jsonString: string): SafeParseResult<DollarLt, SDKValidationError>;
3766
+ export declare function ltToJSON(lt: Lt): string;
3767
+ export declare function ltFromJSON(jsonString: string): SafeParseResult<Lt, SDKValidationError>;
3768
3768
  /** @internal */
3769
- export declare const DollarGte$inboundSchema: z.ZodType<DollarGte, z.ZodTypeDef, unknown>;
3769
+ export declare const Gte$inboundSchema: z.ZodType<Gte, z.ZodTypeDef, unknown>;
3770
3770
  /** @internal */
3771
- export type DollarGte$Outbound = {
3772
- $gte: number;
3771
+ export type Gte$Outbound = {
3772
+ gte: number;
3773
3773
  };
3774
3774
  /** @internal */
3775
- export declare const DollarGte$outboundSchema: z.ZodType<DollarGte$Outbound, z.ZodTypeDef, DollarGte>;
3775
+ export declare const Gte$outboundSchema: z.ZodType<Gte$Outbound, z.ZodTypeDef, Gte>;
3776
3776
  /**
3777
3777
  * @internal
3778
3778
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3779
3779
  */
3780
- export declare namespace DollarGte$ {
3781
- /** @deprecated use `DollarGte$inboundSchema` instead. */
3782
- const inboundSchema: z.ZodType<DollarGte, z.ZodTypeDef, unknown>;
3783
- /** @deprecated use `DollarGte$outboundSchema` instead. */
3784
- const outboundSchema: z.ZodType<DollarGte$Outbound, z.ZodTypeDef, DollarGte>;
3785
- /** @deprecated use `DollarGte$Outbound` instead. */
3786
- type Outbound = DollarGte$Outbound;
3780
+ export declare namespace Gte$ {
3781
+ /** @deprecated use `Gte$inboundSchema` instead. */
3782
+ const inboundSchema: z.ZodType<Gte, z.ZodTypeDef, unknown>;
3783
+ /** @deprecated use `Gte$outboundSchema` instead. */
3784
+ const outboundSchema: z.ZodType<Gte$Outbound, z.ZodTypeDef, Gte>;
3785
+ /** @deprecated use `Gte$Outbound` instead. */
3786
+ type Outbound = Gte$Outbound;
3787
3787
  }
3788
- export declare function dollarGteToJSON(dollarGte: DollarGte): string;
3789
- export declare function dollarGteFromJSON(jsonString: string): SafeParseResult<DollarGte, SDKValidationError>;
3788
+ export declare function gteToJSON(gte: Gte): string;
3789
+ export declare function gteFromJSON(jsonString: string): SafeParseResult<Gte, SDKValidationError>;
3790
3790
  /** @internal */
3791
3791
  export declare const One3$inboundSchema: z.ZodType<One3, z.ZodTypeDef, unknown>;
3792
3792
  /** @internal */
3793
3793
  export type One3$Outbound = {
3794
- $gt: number;
3794
+ gt: number;
3795
3795
  };
3796
3796
  /** @internal */
3797
3797
  export declare const One3$outboundSchema: z.ZodType<One3$Outbound, z.ZodTypeDef, One3>;
@@ -3810,93 +3810,93 @@ export declare namespace One3$ {
3810
3810
  export declare function one3ToJSON(one3: One3): string;
3811
3811
  export declare function one3FromJSON(jsonString: string): SafeParseResult<One3, SDKValidationError>;
3812
3812
  /** @internal */
3813
- export declare const OneDollarNe$inboundSchema: z.ZodType<OneDollarNe, z.ZodTypeDef, unknown>;
3813
+ export declare const OneNe$inboundSchema: z.ZodType<OneNe, z.ZodTypeDef, unknown>;
3814
3814
  /** @internal */
3815
- export type OneDollarNe$Outbound = string | number | boolean;
3815
+ export type OneNe$Outbound = string | number | boolean;
3816
3816
  /** @internal */
3817
- export declare const OneDollarNe$outboundSchema: z.ZodType<OneDollarNe$Outbound, z.ZodTypeDef, OneDollarNe>;
3817
+ export declare const OneNe$outboundSchema: z.ZodType<OneNe$Outbound, z.ZodTypeDef, OneNe>;
3818
3818
  /**
3819
3819
  * @internal
3820
3820
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3821
3821
  */
3822
- export declare namespace OneDollarNe$ {
3823
- /** @deprecated use `OneDollarNe$inboundSchema` instead. */
3824
- const inboundSchema: z.ZodType<OneDollarNe, z.ZodTypeDef, unknown>;
3825
- /** @deprecated use `OneDollarNe$outboundSchema` instead. */
3826
- const outboundSchema: z.ZodType<OneDollarNe$Outbound, z.ZodTypeDef, OneDollarNe>;
3827
- /** @deprecated use `OneDollarNe$Outbound` instead. */
3828
- type Outbound = OneDollarNe$Outbound;
3822
+ export declare namespace OneNe$ {
3823
+ /** @deprecated use `OneNe$inboundSchema` instead. */
3824
+ const inboundSchema: z.ZodType<OneNe, z.ZodTypeDef, unknown>;
3825
+ /** @deprecated use `OneNe$outboundSchema` instead. */
3826
+ const outboundSchema: z.ZodType<OneNe$Outbound, z.ZodTypeDef, OneNe>;
3827
+ /** @deprecated use `OneNe$Outbound` instead. */
3828
+ type Outbound = OneNe$Outbound;
3829
3829
  }
3830
- export declare function oneDollarNeToJSON(oneDollarNe: OneDollarNe): string;
3831
- export declare function oneDollarNeFromJSON(jsonString: string): SafeParseResult<OneDollarNe, SDKValidationError>;
3830
+ export declare function oneNeToJSON(oneNe: OneNe): string;
3831
+ export declare function oneNeFromJSON(jsonString: string): SafeParseResult<OneNe, SDKValidationError>;
3832
3832
  /** @internal */
3833
- export declare const DollarNe$inboundSchema: z.ZodType<DollarNe, z.ZodTypeDef, unknown>;
3833
+ export declare const Ne$inboundSchema: z.ZodType<Ne, z.ZodTypeDef, unknown>;
3834
3834
  /** @internal */
3835
- export type DollarNe$Outbound = {
3836
- $ne: string | number | boolean;
3835
+ export type Ne$Outbound = {
3836
+ ne: string | number | boolean;
3837
3837
  };
3838
3838
  /** @internal */
3839
- export declare const DollarNe$outboundSchema: z.ZodType<DollarNe$Outbound, z.ZodTypeDef, DollarNe>;
3839
+ export declare const Ne$outboundSchema: z.ZodType<Ne$Outbound, z.ZodTypeDef, Ne>;
3840
3840
  /**
3841
3841
  * @internal
3842
3842
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3843
3843
  */
3844
- export declare namespace DollarNe$ {
3845
- /** @deprecated use `DollarNe$inboundSchema` instead. */
3846
- const inboundSchema: z.ZodType<DollarNe, z.ZodTypeDef, unknown>;
3847
- /** @deprecated use `DollarNe$outboundSchema` instead. */
3848
- const outboundSchema: z.ZodType<DollarNe$Outbound, z.ZodTypeDef, DollarNe>;
3849
- /** @deprecated use `DollarNe$Outbound` instead. */
3850
- type Outbound = DollarNe$Outbound;
3844
+ export declare namespace Ne$ {
3845
+ /** @deprecated use `Ne$inboundSchema` instead. */
3846
+ const inboundSchema: z.ZodType<Ne, z.ZodTypeDef, unknown>;
3847
+ /** @deprecated use `Ne$outboundSchema` instead. */
3848
+ const outboundSchema: z.ZodType<Ne$Outbound, z.ZodTypeDef, Ne>;
3849
+ /** @deprecated use `Ne$Outbound` instead. */
3850
+ type Outbound = Ne$Outbound;
3851
3851
  }
3852
- export declare function dollarNeToJSON(dollarNe: DollarNe): string;
3853
- export declare function dollarNeFromJSON(jsonString: string): SafeParseResult<DollarNe, SDKValidationError>;
3852
+ export declare function neToJSON(ne: Ne): string;
3853
+ export declare function neFromJSON(jsonString: string): SafeParseResult<Ne, SDKValidationError>;
3854
3854
  /** @internal */
3855
- export declare const OneDollarEq$inboundSchema: z.ZodType<OneDollarEq, z.ZodTypeDef, unknown>;
3855
+ export declare const OneEq$inboundSchema: z.ZodType<OneEq, z.ZodTypeDef, unknown>;
3856
3856
  /** @internal */
3857
- export type OneDollarEq$Outbound = string | number | boolean;
3857
+ export type OneEq$Outbound = string | number | boolean;
3858
3858
  /** @internal */
3859
- export declare const OneDollarEq$outboundSchema: z.ZodType<OneDollarEq$Outbound, z.ZodTypeDef, OneDollarEq>;
3859
+ export declare const OneEq$outboundSchema: z.ZodType<OneEq$Outbound, z.ZodTypeDef, OneEq>;
3860
3860
  /**
3861
3861
  * @internal
3862
3862
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3863
3863
  */
3864
- export declare namespace OneDollarEq$ {
3865
- /** @deprecated use `OneDollarEq$inboundSchema` instead. */
3866
- const inboundSchema: z.ZodType<OneDollarEq, z.ZodTypeDef, unknown>;
3867
- /** @deprecated use `OneDollarEq$outboundSchema` instead. */
3868
- const outboundSchema: z.ZodType<OneDollarEq$Outbound, z.ZodTypeDef, OneDollarEq>;
3869
- /** @deprecated use `OneDollarEq$Outbound` instead. */
3870
- type Outbound = OneDollarEq$Outbound;
3864
+ export declare namespace OneEq$ {
3865
+ /** @deprecated use `OneEq$inboundSchema` instead. */
3866
+ const inboundSchema: z.ZodType<OneEq, z.ZodTypeDef, unknown>;
3867
+ /** @deprecated use `OneEq$outboundSchema` instead. */
3868
+ const outboundSchema: z.ZodType<OneEq$Outbound, z.ZodTypeDef, OneEq>;
3869
+ /** @deprecated use `OneEq$Outbound` instead. */
3870
+ type Outbound = OneEq$Outbound;
3871
3871
  }
3872
- export declare function oneDollarEqToJSON(oneDollarEq: OneDollarEq): string;
3873
- export declare function oneDollarEqFromJSON(jsonString: string): SafeParseResult<OneDollarEq, SDKValidationError>;
3872
+ export declare function oneEqToJSON(oneEq: OneEq): string;
3873
+ export declare function oneEqFromJSON(jsonString: string): SafeParseResult<OneEq, SDKValidationError>;
3874
3874
  /** @internal */
3875
- export declare const DollarEq$inboundSchema: z.ZodType<DollarEq, z.ZodTypeDef, unknown>;
3875
+ export declare const Eq$inboundSchema: z.ZodType<Eq, z.ZodTypeDef, unknown>;
3876
3876
  /** @internal */
3877
- export type DollarEq$Outbound = {
3878
- $eq: string | number | boolean;
3877
+ export type Eq$Outbound = {
3878
+ eq: string | number | boolean;
3879
3879
  };
3880
3880
  /** @internal */
3881
- export declare const DollarEq$outboundSchema: z.ZodType<DollarEq$Outbound, z.ZodTypeDef, DollarEq>;
3881
+ export declare const Eq$outboundSchema: z.ZodType<Eq$Outbound, z.ZodTypeDef, Eq>;
3882
3882
  /**
3883
3883
  * @internal
3884
3884
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3885
3885
  */
3886
- export declare namespace DollarEq$ {
3887
- /** @deprecated use `DollarEq$inboundSchema` instead. */
3888
- const inboundSchema: z.ZodType<DollarEq, z.ZodTypeDef, unknown>;
3889
- /** @deprecated use `DollarEq$outboundSchema` instead. */
3890
- const outboundSchema: z.ZodType<DollarEq$Outbound, z.ZodTypeDef, DollarEq>;
3891
- /** @deprecated use `DollarEq$Outbound` instead. */
3892
- type Outbound = DollarEq$Outbound;
3886
+ export declare namespace Eq$ {
3887
+ /** @deprecated use `Eq$inboundSchema` instead. */
3888
+ const inboundSchema: z.ZodType<Eq, z.ZodTypeDef, unknown>;
3889
+ /** @deprecated use `Eq$outboundSchema` instead. */
3890
+ const outboundSchema: z.ZodType<Eq$Outbound, z.ZodTypeDef, Eq>;
3891
+ /** @deprecated use `Eq$Outbound` instead. */
3892
+ type Outbound = Eq$Outbound;
3893
3893
  }
3894
- export declare function dollarEqToJSON(dollarEq: DollarEq): string;
3895
- export declare function dollarEqFromJSON(jsonString: string): SafeParseResult<DollarEq, SDKValidationError>;
3894
+ export declare function eqToJSON(eq: Eq): string;
3895
+ export declare function eqFromJSON(jsonString: string): SafeParseResult<Eq, SDKValidationError>;
3896
3896
  /** @internal */
3897
3897
  export declare const KnowledgeFilter1$inboundSchema: z.ZodType<KnowledgeFilter1, z.ZodTypeDef, unknown>;
3898
3898
  /** @internal */
3899
- export type KnowledgeFilter1$Outbound = DollarEq$Outbound | DollarNe$Outbound | One3$Outbound | DollarGte$Outbound | DollarLt$Outbound | DollarLte$Outbound | DollarIn$Outbound | DollarNin$Outbound | DollarExists$Outbound;
3899
+ export type KnowledgeFilter1$Outbound = Eq$Outbound | Ne$Outbound | One3$Outbound | Gte$Outbound | Lt$Outbound | Lte$Outbound | In$Outbound | Nin$Outbound | Exists$Outbound;
3900
3900
  /** @internal */
3901
3901
  export declare const KnowledgeFilter1$outboundSchema: z.ZodType<KnowledgeFilter1$Outbound, z.ZodTypeDef, KnowledgeFilter1>;
3902
3902
  /**
@@ -3916,8 +3916,8 @@ export declare function knowledgeFilter1FromJSON(jsonString: string): SafeParseR
3916
3916
  /** @internal */
3917
3917
  export declare const KnowledgeFilter$inboundSchema: z.ZodType<KnowledgeFilter, z.ZodTypeDef, unknown>;
3918
3918
  /** @internal */
3919
- export type KnowledgeFilter$Outbound = DollarAnd$Outbound | DollarOr$Outbound | {
3920
- [k: string]: DollarEq$Outbound | DollarNe$Outbound | One3$Outbound | DollarGte$Outbound | DollarLt$Outbound | DollarLte$Outbound | DollarIn$Outbound | DollarNin$Outbound | DollarExists$Outbound;
3919
+ export type KnowledgeFilter$Outbound = And$Outbound | Or$Outbound | {
3920
+ [k: string]: Eq$Outbound | Ne$Outbound | One3$Outbound | Gte$Outbound | Lt$Outbound | Lte$Outbound | In$Outbound | Nin$Outbound | Exists$Outbound;
3921
3921
  };
3922
3922
  /** @internal */
3923
3923
  export declare const KnowledgeFilter$outboundSchema: z.ZodType<KnowledgeFilter$Outbound, z.ZodTypeDef, KnowledgeFilter>;
@@ -3958,8 +3958,8 @@ export type DeploymentGetConfigRequestBody$Outbound = {
3958
3958
  documents?: Array<Documents$Outbound> | undefined;
3959
3959
  invoke_options?: InvokeOptions$Outbound | undefined;
3960
3960
  thread?: Thread$Outbound | undefined;
3961
- knowledge_filter?: DollarAnd$Outbound | DollarOr$Outbound | {
3962
- [k: string]: DollarEq$Outbound | DollarNe$Outbound | One3$Outbound | DollarGte$Outbound | DollarLt$Outbound | DollarLte$Outbound | DollarIn$Outbound | DollarNin$Outbound | DollarExists$Outbound;
3961
+ knowledge_filter?: And$Outbound | Or$Outbound | {
3962
+ [k: string]: Eq$Outbound | Ne$Outbound | One3$Outbound | Gte$Outbound | Lt$Outbound | Lte$Outbound | In$Outbound | Nin$Outbound | Exists$Outbound;
3963
3963
  } | undefined;
3964
3964
  };
3965
3965
  /** @internal */