@orq-ai/node 3.5.22 → 3.5.24

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 (79) hide show
  1. package/bin/mcp-server.js +40 -40
  2. package/bin/mcp-server.js.map +21 -21
  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/operations/bulkcreatedatapoints.js +2 -2
  9. package/models/operations/createcontact.js +2 -2
  10. package/models/operations/createdataset.js +2 -2
  11. package/models/operations/createdatasetitem.js +2 -2
  12. package/models/operations/createdatasource.js +2 -2
  13. package/models/operations/fileget.js +2 -2
  14. package/models/operations/filelist.js +2 -2
  15. package/models/operations/fileupload.js +2 -2
  16. package/models/operations/listdatasetdatapoints.js +2 -2
  17. package/models/operations/listdatasets.js +2 -2
  18. package/models/operations/listdatasources.js +2 -2
  19. package/models/operations/retrievedatapoint.js +2 -2
  20. package/models/operations/retrievedataset.js +2 -2
  21. package/models/operations/retrievedatasource.js +2 -2
  22. package/models/operations/updatedatapoint.js +2 -2
  23. package/models/operations/updatedataset.js +2 -2
  24. package/models/operations/updatedatasource.js +2 -2
  25. package/package.json +1 -1
  26. package/packages/orq-rc/jsr.json +1 -1
  27. package/packages/orq-rc/package-lock.json +6 -6
  28. package/packages/orq-rc/package.json +2 -2
  29. package/packages/orq-rc/src/lib/config.ts +3 -3
  30. package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
  31. package/packages/orq-rc/src/mcp-server/server.ts +1 -1
  32. package/packages/orq-rc/src/models/components/deployments.ts +1217 -1677
  33. package/packages/orq-rc/src/models/operations/bulkcreatedatapoints.ts +416 -12
  34. package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
  35. package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
  36. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +410 -13
  37. package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
  38. package/packages/orq-rc/src/models/operations/createprompt.ts +400 -12
  39. package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +1413 -1729
  40. package/packages/orq-rc/src/models/operations/deployments.ts +211 -23
  41. package/packages/orq-rc/src/models/operations/deploymentstream.ts +1314 -1761
  42. package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
  43. package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
  44. package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
  45. package/packages/orq-rc/src/models/operations/getallprompts.ts +200 -6
  46. package/packages/orq-rc/src/models/operations/getoneprompt.ts +195 -6
  47. package/packages/orq-rc/src/models/operations/getpromptversion.ts +204 -6
  48. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +207 -8
  49. package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
  50. package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
  51. package/packages/orq-rc/src/models/operations/listpromptversions.ts +202 -6
  52. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +204 -8
  53. package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
  54. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
  55. package/packages/orq-rc/src/models/operations/searchknowledge.ts +1334 -1750
  56. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +412 -14
  57. package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
  58. package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
  59. package/packages/orq-rc/src/models/operations/updateprompt.ts +400 -12
  60. package/src/lib/config.ts +3 -3
  61. package/src/mcp-server/mcp-server.ts +1 -1
  62. package/src/mcp-server/server.ts +1 -1
  63. package/src/models/operations/bulkcreatedatapoints.ts +2 -2
  64. package/src/models/operations/createcontact.ts +2 -2
  65. package/src/models/operations/createdataset.ts +2 -2
  66. package/src/models/operations/createdatasetitem.ts +2 -2
  67. package/src/models/operations/createdatasource.ts +2 -2
  68. package/src/models/operations/fileget.ts +2 -2
  69. package/src/models/operations/filelist.ts +2 -2
  70. package/src/models/operations/fileupload.ts +2 -2
  71. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  72. package/src/models/operations/listdatasets.ts +2 -2
  73. package/src/models/operations/listdatasources.ts +2 -2
  74. package/src/models/operations/retrievedatapoint.ts +2 -2
  75. package/src/models/operations/retrievedataset.ts +2 -2
  76. package/src/models/operations/retrievedatasource.ts +2 -2
  77. package/src/models/operations/updatedatapoint.ts +2 -2
  78. package/src/models/operations/updatedataset.ts +2 -2
  79. package/src/models/operations/updatedatasource.ts +2 -2
@@ -867,98 +867,98 @@ export type Thread = {
867
867
  /**
868
868
  * Exists
869
869
  */
870
- export type DollarOrDollarExists = {
871
- dollarExists: boolean;
870
+ export type OrExists = {
871
+ exists: boolean;
872
872
  };
873
873
 
874
- export type DollarOrDollarNin = string | number | boolean;
874
+ export type OrNin = string | number | boolean;
875
875
 
876
876
  /**
877
877
  * Not in
878
878
  */
879
- export type DeploymentsDollarOrDollarNin = {
880
- dollarNin: Array<string | number | boolean>;
879
+ export type DeploymentsOrNin = {
880
+ nin: Array<string | number | boolean>;
881
881
  };
882
882
 
883
- export type DollarOrDollarIn = string | number | boolean;
883
+ export type OrIn = string | number | boolean;
884
884
 
885
885
  /**
886
886
  * In
887
887
  */
888
- export type DeploymentsDollarOrDollarIn = {
889
- dollarIn: Array<string | number | boolean>;
888
+ export type DeploymentsOrIn = {
889
+ in: Array<string | number | boolean>;
890
890
  };
891
891
 
892
892
  /**
893
893
  * Less than or equal to
894
894
  */
895
- export type DollarOrDollarLte = {
896
- dollarLte: number;
895
+ export type OrLte = {
896
+ lte: number;
897
897
  };
898
898
 
899
899
  /**
900
900
  * Less than
901
901
  */
902
- export type DollarOrDollarLt = {
903
- dollarLt: number;
902
+ export type OrLt = {
903
+ lt: number;
904
904
  };
905
905
 
906
906
  /**
907
907
  * Greater than or equal to
908
908
  */
909
- export type DollarOrDollarGte = {
910
- dollarGte: number;
909
+ export type OrGte = {
910
+ gte: number;
911
911
  };
912
912
 
913
- export type DollarOr3 = {
914
- dollarGt: number;
913
+ export type Or3 = {
914
+ gt: number;
915
915
  };
916
916
 
917
- export type DollarOrDollarNe = string | number | boolean;
917
+ export type OrNe = string | number | boolean;
918
918
 
919
919
  /**
920
920
  * Not equal to
921
921
  */
922
- export type DeploymentsDollarOrDollarNe = {
923
- dollarNe: string | number | boolean;
922
+ export type DeploymentsOrNe = {
923
+ ne: string | number | boolean;
924
924
  };
925
925
 
926
- export type DollarOrDollarEq = string | number | boolean;
926
+ export type OrEq = string | number | boolean;
927
927
 
928
928
  /**
929
929
  * Equal to
930
930
  */
931
- export type DeploymentsDollarOrDollarEq = {
932
- dollarEq: string | number | boolean;
931
+ export type DeploymentsOrEq = {
932
+ eq: string | number | boolean;
933
933
  };
934
934
 
935
- export type DollarOr =
936
- | DeploymentsDollarOrDollarEq
937
- | DeploymentsDollarOrDollarNe
938
- | DollarOr3
939
- | DollarOrDollarGte
940
- | DollarOrDollarLt
941
- | DollarOrDollarLte
942
- | DeploymentsDollarOrDollarIn
943
- | DeploymentsDollarOrDollarNin
944
- | DollarOrDollarExists;
935
+ export type Or =
936
+ | DeploymentsOrEq
937
+ | DeploymentsOrNe
938
+ | Or3
939
+ | OrGte
940
+ | OrLt
941
+ | OrLte
942
+ | DeploymentsOrIn
943
+ | DeploymentsOrNin
944
+ | OrExists;
945
945
 
946
946
  /**
947
947
  * Or
948
948
  */
949
- export type KnowledgeFilterDollarOr = {
950
- dollarOr: Array<
949
+ export type KnowledgeFilterOr = {
950
+ or: Array<
951
951
  {
952
952
  [k: string]:
953
- | DeploymentsDollarOrDollarEq
954
- | DeploymentsDollarOrDollarNe
955
- | DollarOr3
956
- | DollarOrDollarGte
957
- | DollarOrDollarLt
958
- | DollarOrDollarLte
959
- | DeploymentsDollarOrDollarIn
960
- | DeploymentsDollarOrDollarNin
961
- | DollarOrDollarExists;
953
+ | DeploymentsOrEq
954
+ | DeploymentsOrNe
955
+ | Or3
956
+ | OrGte
957
+ | OrLt
958
+ | OrLte
959
+ | DeploymentsOrIn
960
+ | DeploymentsOrNin
961
+ | OrExists;
962
962
  }
963
963
  >;
964
964
  };
@@ -966,98 +966,98 @@ export type KnowledgeFilterDollarOr = {
966
966
  /**
967
967
  * Exists
968
968
  */
969
- export type DollarAndDollarExists = {
970
- dollarExists: boolean;
969
+ export type AndExists = {
970
+ exists: boolean;
971
971
  };
972
972
 
973
- export type DollarAndDollarNin = string | number | boolean;
973
+ export type AndNin = string | number | boolean;
974
974
 
975
975
  /**
976
976
  * Not in
977
977
  */
978
- export type DeploymentsDollarAndDollarNin = {
979
- dollarNin: Array<string | number | boolean>;
978
+ export type DeploymentsAndNin = {
979
+ nin: Array<string | number | boolean>;
980
980
  };
981
981
 
982
- export type DollarAndDollarIn = string | number | boolean;
982
+ export type AndIn = string | number | boolean;
983
983
 
984
984
  /**
985
985
  * In
986
986
  */
987
- export type DeploymentsDollarAndDollarIn = {
988
- dollarIn: Array<string | number | boolean>;
987
+ export type DeploymentsAndIn = {
988
+ in: Array<string | number | boolean>;
989
989
  };
990
990
 
991
991
  /**
992
992
  * Less than or equal to
993
993
  */
994
- export type DollarAndDollarLte = {
995
- dollarLte: number;
994
+ export type AndLte = {
995
+ lte: number;
996
996
  };
997
997
 
998
998
  /**
999
999
  * Less than
1000
1000
  */
1001
- export type DollarAndDollarLt = {
1002
- dollarLt: number;
1001
+ export type AndLt = {
1002
+ lt: number;
1003
1003
  };
1004
1004
 
1005
1005
  /**
1006
1006
  * Greater than or equal to
1007
1007
  */
1008
- export type DollarAndDollarGte = {
1009
- dollarGte: number;
1008
+ export type AndGte = {
1009
+ gte: number;
1010
1010
  };
1011
1011
 
1012
- export type DollarAnd3 = {
1013
- dollarGt: number;
1012
+ export type And3 = {
1013
+ gt: number;
1014
1014
  };
1015
1015
 
1016
- export type DollarAndDollarNe = string | number | boolean;
1016
+ export type AndNe = string | number | boolean;
1017
1017
 
1018
1018
  /**
1019
1019
  * Not equal to
1020
1020
  */
1021
- export type DeploymentsDollarAndDollarNe = {
1022
- dollarNe: string | number | boolean;
1021
+ export type DeploymentsAndNe = {
1022
+ ne: string | number | boolean;
1023
1023
  };
1024
1024
 
1025
- export type DollarAndDollarEq = string | number | boolean;
1025
+ export type AndEq = string | number | boolean;
1026
1026
 
1027
1027
  /**
1028
1028
  * Equal to
1029
1029
  */
1030
- export type DeploymentsDollarAndDollarEq = {
1031
- dollarEq: string | number | boolean;
1030
+ export type DeploymentsAndEq = {
1031
+ eq: string | number | boolean;
1032
1032
  };
1033
1033
 
1034
- export type DollarAnd =
1035
- | DeploymentsDollarAndDollarEq
1036
- | DeploymentsDollarAndDollarNe
1037
- | DollarAnd3
1038
- | DollarAndDollarGte
1039
- | DollarAndDollarLt
1040
- | DollarAndDollarLte
1041
- | DeploymentsDollarAndDollarIn
1042
- | DeploymentsDollarAndDollarNin
1043
- | DollarAndDollarExists;
1034
+ export type And =
1035
+ | DeploymentsAndEq
1036
+ | DeploymentsAndNe
1037
+ | And3
1038
+ | AndGte
1039
+ | AndLt
1040
+ | AndLte
1041
+ | DeploymentsAndIn
1042
+ | DeploymentsAndNin
1043
+ | AndExists;
1044
1044
 
1045
1045
  /**
1046
1046
  * And
1047
1047
  */
1048
- export type KnowledgeFilterDollarAnd = {
1049
- dollarAnd: Array<
1048
+ export type KnowledgeFilterAnd = {
1049
+ and: Array<
1050
1050
  {
1051
1051
  [k: string]:
1052
- | DeploymentsDollarAndDollarEq
1053
- | DeploymentsDollarAndDollarNe
1054
- | DollarAnd3
1055
- | DollarAndDollarGte
1056
- | DollarAndDollarLt
1057
- | DollarAndDollarLte
1058
- | DeploymentsDollarAndDollarIn
1059
- | DeploymentsDollarAndDollarNin
1060
- | DollarAndDollarExists;
1052
+ | DeploymentsAndEq
1053
+ | DeploymentsAndNe
1054
+ | And3
1055
+ | AndGte
1056
+ | AndLt
1057
+ | AndLte
1058
+ | DeploymentsAndIn
1059
+ | DeploymentsAndNin
1060
+ | AndExists;
1061
1061
  }
1062
1062
  >;
1063
1063
  };
@@ -1065,100 +1065,88 @@ export type KnowledgeFilterDollarAnd = {
1065
1065
  /**
1066
1066
  * Exists
1067
1067
  */
1068
- export type DollarExists = {
1069
- dollarExists: boolean;
1068
+ export type Exists = {
1069
+ exists: boolean;
1070
1070
  };
1071
1071
 
1072
- export type DollarNin = string | number | boolean;
1072
+ export type Nin = string | number | boolean;
1073
1073
 
1074
1074
  /**
1075
1075
  * Not in
1076
1076
  */
1077
- export type OneDollarNin = {
1078
- dollarNin: Array<string | number | boolean>;
1077
+ export type OneNin = {
1078
+ nin: Array<string | number | boolean>;
1079
1079
  };
1080
1080
 
1081
- export type DollarIn = string | number | boolean;
1081
+ export type In = string | number | boolean;
1082
1082
 
1083
1083
  /**
1084
1084
  * In
1085
1085
  */
1086
- export type OneDollarIn = {
1087
- dollarIn: Array<string | number | boolean>;
1086
+ export type OneIn = {
1087
+ in: Array<string | number | boolean>;
1088
1088
  };
1089
1089
 
1090
1090
  /**
1091
1091
  * Less than or equal to
1092
1092
  */
1093
- export type DollarLte = {
1094
- dollarLte: number;
1093
+ export type Lte = {
1094
+ lte: number;
1095
1095
  };
1096
1096
 
1097
1097
  /**
1098
1098
  * Less than
1099
1099
  */
1100
- export type DollarLt = {
1101
- dollarLt: number;
1100
+ export type Lt = {
1101
+ lt: number;
1102
1102
  };
1103
1103
 
1104
1104
  /**
1105
1105
  * Greater than or equal to
1106
1106
  */
1107
- export type DollarGte = {
1108
- dollarGte: number;
1107
+ export type Gte = {
1108
+ gte: number;
1109
1109
  };
1110
1110
 
1111
1111
  export type Three = {
1112
- dollarGt: number;
1112
+ gt: number;
1113
1113
  };
1114
1114
 
1115
- export type DollarNe = string | number | boolean;
1115
+ export type Ne = string | number | boolean;
1116
1116
 
1117
1117
  /**
1118
1118
  * Not equal to
1119
1119
  */
1120
- export type OneDollarNe = {
1121
- dollarNe: string | number | boolean;
1120
+ export type OneNe = {
1121
+ ne: string | number | boolean;
1122
1122
  };
1123
1123
 
1124
- export type DollarEq = string | number | boolean;
1124
+ export type Eq = string | number | boolean;
1125
1125
 
1126
1126
  /**
1127
1127
  * Equal to
1128
1128
  */
1129
- export type OneDollarEq = {
1130
- dollarEq: string | number | boolean;
1129
+ export type OneEq = {
1130
+ eq: string | number | boolean;
1131
1131
  };
1132
1132
 
1133
1133
  export type One =
1134
- | OneDollarEq
1135
- | OneDollarNe
1134
+ | OneEq
1135
+ | OneNe
1136
1136
  | Three
1137
- | DollarGte
1138
- | DollarLt
1139
- | DollarLte
1140
- | OneDollarIn
1141
- | OneDollarNin
1142
- | DollarExists;
1137
+ | Gte
1138
+ | Lt
1139
+ | Lte
1140
+ | OneIn
1141
+ | OneNin
1142
+ | Exists;
1143
1143
 
1144
1144
  /**
1145
1145
  * A filter to apply to the knowledge base chunk metadata when using knowledge bases in the deployment.
1146
1146
  */
1147
- export type KnowledgeFilter =
1148
- | KnowledgeFilterDollarAnd
1149
- | KnowledgeFilterDollarOr
1150
- | {
1151
- [k: string]:
1152
- | OneDollarEq
1153
- | OneDollarNe
1154
- | Three
1155
- | DollarGte
1156
- | DollarLt
1157
- | DollarLte
1158
- | OneDollarIn
1159
- | OneDollarNin
1160
- | DollarExists;
1161
- };
1147
+ export type KnowledgeFilter = KnowledgeFilterAnd | KnowledgeFilterOr | {
1148
+ [k: string]: OneEq | OneNe | Three | Gte | Lt | Lte | OneIn | OneNin | Exists;
1149
+ };
1162
1150
 
1163
1151
  /**
1164
1152
  * The deployment request payload
@@ -1221,17 +1209,17 @@ export type Deployments = {
1221
1209
  /**
1222
1210
  * A filter to apply to the knowledge base chunk metadata when using knowledge bases in the deployment.
1223
1211
  */
1224
- knowledgeFilter?: KnowledgeFilterDollarAnd | KnowledgeFilterDollarOr | {
1212
+ knowledgeFilter?: KnowledgeFilterAnd | KnowledgeFilterOr | {
1225
1213
  [k: string]:
1226
- | OneDollarEq
1227
- | OneDollarNe
1214
+ | OneEq
1215
+ | OneNe
1228
1216
  | Three
1229
- | DollarGte
1230
- | DollarLt
1231
- | DollarLte
1232
- | OneDollarIn
1233
- | OneDollarNin
1234
- | DollarExists;
1217
+ | Gte
1218
+ | Lt
1219
+ | Lte
1220
+ | OneIn
1221
+ | OneNin
1222
+ | Exists;
1235
1223
  } | undefined;
1236
1224
  };
1237
1225
 
@@ -4844,2314 +4832,1902 @@ export function threadFromJSON(
4844
4832
  }
4845
4833
 
4846
4834
  /** @internal */
4847
- export const DollarOrDollarExists$inboundSchema: z.ZodType<
4848
- DollarOrDollarExists,
4835
+ export const OrExists$inboundSchema: z.ZodType<
4836
+ OrExists,
4849
4837
  z.ZodTypeDef,
4850
4838
  unknown
4851
4839
  > = z.object({
4852
- $exists: z.boolean(),
4853
- }).transform((v) => {
4854
- return remap$(v, {
4855
- "$exists": "dollarExists",
4856
- });
4840
+ exists: z.boolean(),
4857
4841
  });
4858
4842
 
4859
4843
  /** @internal */
4860
- export type DollarOrDollarExists$Outbound = {
4861
- $exists: boolean;
4844
+ export type OrExists$Outbound = {
4845
+ exists: boolean;
4862
4846
  };
4863
4847
 
4864
4848
  /** @internal */
4865
- export const DollarOrDollarExists$outboundSchema: z.ZodType<
4866
- DollarOrDollarExists$Outbound,
4849
+ export const OrExists$outboundSchema: z.ZodType<
4850
+ OrExists$Outbound,
4867
4851
  z.ZodTypeDef,
4868
- DollarOrDollarExists
4852
+ OrExists
4869
4853
  > = z.object({
4870
- dollarExists: z.boolean(),
4871
- }).transform((v) => {
4872
- return remap$(v, {
4873
- dollarExists: "$exists",
4874
- });
4854
+ exists: z.boolean(),
4875
4855
  });
4876
4856
 
4877
4857
  /**
4878
4858
  * @internal
4879
4859
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4880
4860
  */
4881
- export namespace DollarOrDollarExists$ {
4882
- /** @deprecated use `DollarOrDollarExists$inboundSchema` instead. */
4883
- export const inboundSchema = DollarOrDollarExists$inboundSchema;
4884
- /** @deprecated use `DollarOrDollarExists$outboundSchema` instead. */
4885
- export const outboundSchema = DollarOrDollarExists$outboundSchema;
4886
- /** @deprecated use `DollarOrDollarExists$Outbound` instead. */
4887
- export type Outbound = DollarOrDollarExists$Outbound;
4861
+ export namespace OrExists$ {
4862
+ /** @deprecated use `OrExists$inboundSchema` instead. */
4863
+ export const inboundSchema = OrExists$inboundSchema;
4864
+ /** @deprecated use `OrExists$outboundSchema` instead. */
4865
+ export const outboundSchema = OrExists$outboundSchema;
4866
+ /** @deprecated use `OrExists$Outbound` instead. */
4867
+ export type Outbound = OrExists$Outbound;
4888
4868
  }
4889
4869
 
4890
- export function dollarOrDollarExistsToJSON(
4891
- dollarOrDollarExists: DollarOrDollarExists,
4892
- ): string {
4893
- return JSON.stringify(
4894
- DollarOrDollarExists$outboundSchema.parse(dollarOrDollarExists),
4895
- );
4870
+ export function orExistsToJSON(orExists: OrExists): string {
4871
+ return JSON.stringify(OrExists$outboundSchema.parse(orExists));
4896
4872
  }
4897
4873
 
4898
- export function dollarOrDollarExistsFromJSON(
4874
+ export function orExistsFromJSON(
4899
4875
  jsonString: string,
4900
- ): SafeParseResult<DollarOrDollarExists, SDKValidationError> {
4876
+ ): SafeParseResult<OrExists, SDKValidationError> {
4901
4877
  return safeParse(
4902
4878
  jsonString,
4903
- (x) => DollarOrDollarExists$inboundSchema.parse(JSON.parse(x)),
4904
- `Failed to parse 'DollarOrDollarExists' from JSON`,
4879
+ (x) => OrExists$inboundSchema.parse(JSON.parse(x)),
4880
+ `Failed to parse 'OrExists' from JSON`,
4905
4881
  );
4906
4882
  }
4907
4883
 
4908
4884
  /** @internal */
4909
- export const DollarOrDollarNin$inboundSchema: z.ZodType<
4910
- DollarOrDollarNin,
4911
- z.ZodTypeDef,
4912
- unknown
4913
- > = z.union([z.string(), z.number(), z.boolean()]);
4885
+ export const OrNin$inboundSchema: z.ZodType<OrNin, z.ZodTypeDef, unknown> = z
4886
+ .union([z.string(), z.number(), z.boolean()]);
4914
4887
 
4915
4888
  /** @internal */
4916
- export type DollarOrDollarNin$Outbound = string | number | boolean;
4889
+ export type OrNin$Outbound = string | number | boolean;
4917
4890
 
4918
4891
  /** @internal */
4919
- export const DollarOrDollarNin$outboundSchema: z.ZodType<
4920
- DollarOrDollarNin$Outbound,
4892
+ export const OrNin$outboundSchema: z.ZodType<
4893
+ OrNin$Outbound,
4921
4894
  z.ZodTypeDef,
4922
- DollarOrDollarNin
4895
+ OrNin
4923
4896
  > = z.union([z.string(), z.number(), z.boolean()]);
4924
4897
 
4925
4898
  /**
4926
4899
  * @internal
4927
4900
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4928
4901
  */
4929
- export namespace DollarOrDollarNin$ {
4930
- /** @deprecated use `DollarOrDollarNin$inboundSchema` instead. */
4931
- export const inboundSchema = DollarOrDollarNin$inboundSchema;
4932
- /** @deprecated use `DollarOrDollarNin$outboundSchema` instead. */
4933
- export const outboundSchema = DollarOrDollarNin$outboundSchema;
4934
- /** @deprecated use `DollarOrDollarNin$Outbound` instead. */
4935
- export type Outbound = DollarOrDollarNin$Outbound;
4902
+ export namespace OrNin$ {
4903
+ /** @deprecated use `OrNin$inboundSchema` instead. */
4904
+ export const inboundSchema = OrNin$inboundSchema;
4905
+ /** @deprecated use `OrNin$outboundSchema` instead. */
4906
+ export const outboundSchema = OrNin$outboundSchema;
4907
+ /** @deprecated use `OrNin$Outbound` instead. */
4908
+ export type Outbound = OrNin$Outbound;
4936
4909
  }
4937
4910
 
4938
- export function dollarOrDollarNinToJSON(
4939
- dollarOrDollarNin: DollarOrDollarNin,
4940
- ): string {
4941
- return JSON.stringify(
4942
- DollarOrDollarNin$outboundSchema.parse(dollarOrDollarNin),
4943
- );
4911
+ export function orNinToJSON(orNin: OrNin): string {
4912
+ return JSON.stringify(OrNin$outboundSchema.parse(orNin));
4944
4913
  }
4945
4914
 
4946
- export function dollarOrDollarNinFromJSON(
4915
+ export function orNinFromJSON(
4947
4916
  jsonString: string,
4948
- ): SafeParseResult<DollarOrDollarNin, SDKValidationError> {
4917
+ ): SafeParseResult<OrNin, SDKValidationError> {
4949
4918
  return safeParse(
4950
4919
  jsonString,
4951
- (x) => DollarOrDollarNin$inboundSchema.parse(JSON.parse(x)),
4952
- `Failed to parse 'DollarOrDollarNin' from JSON`,
4920
+ (x) => OrNin$inboundSchema.parse(JSON.parse(x)),
4921
+ `Failed to parse 'OrNin' from JSON`,
4953
4922
  );
4954
4923
  }
4955
4924
 
4956
4925
  /** @internal */
4957
- export const DeploymentsDollarOrDollarNin$inboundSchema: z.ZodType<
4958
- DeploymentsDollarOrDollarNin,
4926
+ export const DeploymentsOrNin$inboundSchema: z.ZodType<
4927
+ DeploymentsOrNin,
4959
4928
  z.ZodTypeDef,
4960
4929
  unknown
4961
4930
  > = z.object({
4962
- $nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
4963
- }).transform((v) => {
4964
- return remap$(v, {
4965
- "$nin": "dollarNin",
4966
- });
4931
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
4967
4932
  });
4968
4933
 
4969
4934
  /** @internal */
4970
- export type DeploymentsDollarOrDollarNin$Outbound = {
4971
- $nin: Array<string | number | boolean>;
4935
+ export type DeploymentsOrNin$Outbound = {
4936
+ nin: Array<string | number | boolean>;
4972
4937
  };
4973
4938
 
4974
4939
  /** @internal */
4975
- export const DeploymentsDollarOrDollarNin$outboundSchema: z.ZodType<
4976
- DeploymentsDollarOrDollarNin$Outbound,
4940
+ export const DeploymentsOrNin$outboundSchema: z.ZodType<
4941
+ DeploymentsOrNin$Outbound,
4977
4942
  z.ZodTypeDef,
4978
- DeploymentsDollarOrDollarNin
4943
+ DeploymentsOrNin
4979
4944
  > = z.object({
4980
- dollarNin: z.array(z.union([z.string(), z.number(), z.boolean()])),
4981
- }).transform((v) => {
4982
- return remap$(v, {
4983
- dollarNin: "$nin",
4984
- });
4945
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
4985
4946
  });
4986
4947
 
4987
4948
  /**
4988
4949
  * @internal
4989
4950
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4990
4951
  */
4991
- export namespace DeploymentsDollarOrDollarNin$ {
4992
- /** @deprecated use `DeploymentsDollarOrDollarNin$inboundSchema` instead. */
4993
- export const inboundSchema = DeploymentsDollarOrDollarNin$inboundSchema;
4994
- /** @deprecated use `DeploymentsDollarOrDollarNin$outboundSchema` instead. */
4995
- export const outboundSchema = DeploymentsDollarOrDollarNin$outboundSchema;
4996
- /** @deprecated use `DeploymentsDollarOrDollarNin$Outbound` instead. */
4997
- export type Outbound = DeploymentsDollarOrDollarNin$Outbound;
4952
+ export namespace DeploymentsOrNin$ {
4953
+ /** @deprecated use `DeploymentsOrNin$inboundSchema` instead. */
4954
+ export const inboundSchema = DeploymentsOrNin$inboundSchema;
4955
+ /** @deprecated use `DeploymentsOrNin$outboundSchema` instead. */
4956
+ export const outboundSchema = DeploymentsOrNin$outboundSchema;
4957
+ /** @deprecated use `DeploymentsOrNin$Outbound` instead. */
4958
+ export type Outbound = DeploymentsOrNin$Outbound;
4998
4959
  }
4999
4960
 
5000
- export function deploymentsDollarOrDollarNinToJSON(
5001
- deploymentsDollarOrDollarNin: DeploymentsDollarOrDollarNin,
4961
+ export function deploymentsOrNinToJSON(
4962
+ deploymentsOrNin: DeploymentsOrNin,
5002
4963
  ): string {
5003
4964
  return JSON.stringify(
5004
- DeploymentsDollarOrDollarNin$outboundSchema.parse(
5005
- deploymentsDollarOrDollarNin,
5006
- ),
4965
+ DeploymentsOrNin$outboundSchema.parse(deploymentsOrNin),
5007
4966
  );
5008
4967
  }
5009
4968
 
5010
- export function deploymentsDollarOrDollarNinFromJSON(
4969
+ export function deploymentsOrNinFromJSON(
5011
4970
  jsonString: string,
5012
- ): SafeParseResult<DeploymentsDollarOrDollarNin, SDKValidationError> {
4971
+ ): SafeParseResult<DeploymentsOrNin, SDKValidationError> {
5013
4972
  return safeParse(
5014
4973
  jsonString,
5015
- (x) => DeploymentsDollarOrDollarNin$inboundSchema.parse(JSON.parse(x)),
5016
- `Failed to parse 'DeploymentsDollarOrDollarNin' from JSON`,
4974
+ (x) => DeploymentsOrNin$inboundSchema.parse(JSON.parse(x)),
4975
+ `Failed to parse 'DeploymentsOrNin' from JSON`,
5017
4976
  );
5018
4977
  }
5019
4978
 
5020
4979
  /** @internal */
5021
- export const DollarOrDollarIn$inboundSchema: z.ZodType<
5022
- DollarOrDollarIn,
5023
- z.ZodTypeDef,
5024
- unknown
5025
- > = z.union([z.string(), z.number(), z.boolean()]);
4980
+ export const OrIn$inboundSchema: z.ZodType<OrIn, z.ZodTypeDef, unknown> = z
4981
+ .union([z.string(), z.number(), z.boolean()]);
5026
4982
 
5027
4983
  /** @internal */
5028
- export type DollarOrDollarIn$Outbound = string | number | boolean;
4984
+ export type OrIn$Outbound = string | number | boolean;
5029
4985
 
5030
4986
  /** @internal */
5031
- export const DollarOrDollarIn$outboundSchema: z.ZodType<
5032
- DollarOrDollarIn$Outbound,
5033
- z.ZodTypeDef,
5034
- DollarOrDollarIn
5035
- > = z.union([z.string(), z.number(), z.boolean()]);
4987
+ export const OrIn$outboundSchema: z.ZodType<OrIn$Outbound, z.ZodTypeDef, OrIn> =
4988
+ z.union([z.string(), z.number(), z.boolean()]);
5036
4989
 
5037
4990
  /**
5038
4991
  * @internal
5039
4992
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5040
4993
  */
5041
- export namespace DollarOrDollarIn$ {
5042
- /** @deprecated use `DollarOrDollarIn$inboundSchema` instead. */
5043
- export const inboundSchema = DollarOrDollarIn$inboundSchema;
5044
- /** @deprecated use `DollarOrDollarIn$outboundSchema` instead. */
5045
- export const outboundSchema = DollarOrDollarIn$outboundSchema;
5046
- /** @deprecated use `DollarOrDollarIn$Outbound` instead. */
5047
- export type Outbound = DollarOrDollarIn$Outbound;
4994
+ export namespace OrIn$ {
4995
+ /** @deprecated use `OrIn$inboundSchema` instead. */
4996
+ export const inboundSchema = OrIn$inboundSchema;
4997
+ /** @deprecated use `OrIn$outboundSchema` instead. */
4998
+ export const outboundSchema = OrIn$outboundSchema;
4999
+ /** @deprecated use `OrIn$Outbound` instead. */
5000
+ export type Outbound = OrIn$Outbound;
5048
5001
  }
5049
5002
 
5050
- export function dollarOrDollarInToJSON(
5051
- dollarOrDollarIn: DollarOrDollarIn,
5052
- ): string {
5053
- return JSON.stringify(
5054
- DollarOrDollarIn$outboundSchema.parse(dollarOrDollarIn),
5055
- );
5003
+ export function orInToJSON(orIn: OrIn): string {
5004
+ return JSON.stringify(OrIn$outboundSchema.parse(orIn));
5056
5005
  }
5057
5006
 
5058
- export function dollarOrDollarInFromJSON(
5007
+ export function orInFromJSON(
5059
5008
  jsonString: string,
5060
- ): SafeParseResult<DollarOrDollarIn, SDKValidationError> {
5009
+ ): SafeParseResult<OrIn, SDKValidationError> {
5061
5010
  return safeParse(
5062
5011
  jsonString,
5063
- (x) => DollarOrDollarIn$inboundSchema.parse(JSON.parse(x)),
5064
- `Failed to parse 'DollarOrDollarIn' from JSON`,
5012
+ (x) => OrIn$inboundSchema.parse(JSON.parse(x)),
5013
+ `Failed to parse 'OrIn' from JSON`,
5065
5014
  );
5066
5015
  }
5067
5016
 
5068
5017
  /** @internal */
5069
- export const DeploymentsDollarOrDollarIn$inboundSchema: z.ZodType<
5070
- DeploymentsDollarOrDollarIn,
5018
+ export const DeploymentsOrIn$inboundSchema: z.ZodType<
5019
+ DeploymentsOrIn,
5071
5020
  z.ZodTypeDef,
5072
5021
  unknown
5073
5022
  > = z.object({
5074
- $in: z.array(z.union([z.string(), z.number(), z.boolean()])),
5075
- }).transform((v) => {
5076
- return remap$(v, {
5077
- "$in": "dollarIn",
5078
- });
5023
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
5079
5024
  });
5080
5025
 
5081
5026
  /** @internal */
5082
- export type DeploymentsDollarOrDollarIn$Outbound = {
5083
- $in: Array<string | number | boolean>;
5027
+ export type DeploymentsOrIn$Outbound = {
5028
+ in: Array<string | number | boolean>;
5084
5029
  };
5085
5030
 
5086
5031
  /** @internal */
5087
- export const DeploymentsDollarOrDollarIn$outboundSchema: z.ZodType<
5088
- DeploymentsDollarOrDollarIn$Outbound,
5032
+ export const DeploymentsOrIn$outboundSchema: z.ZodType<
5033
+ DeploymentsOrIn$Outbound,
5089
5034
  z.ZodTypeDef,
5090
- DeploymentsDollarOrDollarIn
5035
+ DeploymentsOrIn
5091
5036
  > = z.object({
5092
- dollarIn: z.array(z.union([z.string(), z.number(), z.boolean()])),
5093
- }).transform((v) => {
5094
- return remap$(v, {
5095
- dollarIn: "$in",
5096
- });
5037
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
5097
5038
  });
5098
5039
 
5099
5040
  /**
5100
5041
  * @internal
5101
5042
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5102
5043
  */
5103
- export namespace DeploymentsDollarOrDollarIn$ {
5104
- /** @deprecated use `DeploymentsDollarOrDollarIn$inboundSchema` instead. */
5105
- export const inboundSchema = DeploymentsDollarOrDollarIn$inboundSchema;
5106
- /** @deprecated use `DeploymentsDollarOrDollarIn$outboundSchema` instead. */
5107
- export const outboundSchema = DeploymentsDollarOrDollarIn$outboundSchema;
5108
- /** @deprecated use `DeploymentsDollarOrDollarIn$Outbound` instead. */
5109
- export type Outbound = DeploymentsDollarOrDollarIn$Outbound;
5044
+ export namespace DeploymentsOrIn$ {
5045
+ /** @deprecated use `DeploymentsOrIn$inboundSchema` instead. */
5046
+ export const inboundSchema = DeploymentsOrIn$inboundSchema;
5047
+ /** @deprecated use `DeploymentsOrIn$outboundSchema` instead. */
5048
+ export const outboundSchema = DeploymentsOrIn$outboundSchema;
5049
+ /** @deprecated use `DeploymentsOrIn$Outbound` instead. */
5050
+ export type Outbound = DeploymentsOrIn$Outbound;
5110
5051
  }
5111
5052
 
5112
- export function deploymentsDollarOrDollarInToJSON(
5113
- deploymentsDollarOrDollarIn: DeploymentsDollarOrDollarIn,
5053
+ export function deploymentsOrInToJSON(
5054
+ deploymentsOrIn: DeploymentsOrIn,
5114
5055
  ): string {
5115
- return JSON.stringify(
5116
- DeploymentsDollarOrDollarIn$outboundSchema.parse(
5117
- deploymentsDollarOrDollarIn,
5118
- ),
5119
- );
5056
+ return JSON.stringify(DeploymentsOrIn$outboundSchema.parse(deploymentsOrIn));
5120
5057
  }
5121
5058
 
5122
- export function deploymentsDollarOrDollarInFromJSON(
5059
+ export function deploymentsOrInFromJSON(
5123
5060
  jsonString: string,
5124
- ): SafeParseResult<DeploymentsDollarOrDollarIn, SDKValidationError> {
5061
+ ): SafeParseResult<DeploymentsOrIn, SDKValidationError> {
5125
5062
  return safeParse(
5126
5063
  jsonString,
5127
- (x) => DeploymentsDollarOrDollarIn$inboundSchema.parse(JSON.parse(x)),
5128
- `Failed to parse 'DeploymentsDollarOrDollarIn' from JSON`,
5064
+ (x) => DeploymentsOrIn$inboundSchema.parse(JSON.parse(x)),
5065
+ `Failed to parse 'DeploymentsOrIn' from JSON`,
5129
5066
  );
5130
5067
  }
5131
5068
 
5132
5069
  /** @internal */
5133
- export const DollarOrDollarLte$inboundSchema: z.ZodType<
5134
- DollarOrDollarLte,
5135
- z.ZodTypeDef,
5136
- unknown
5137
- > = z.object({
5138
- $lte: z.number(),
5139
- }).transform((v) => {
5140
- return remap$(v, {
5141
- "$lte": "dollarLte",
5070
+ export const OrLte$inboundSchema: z.ZodType<OrLte, z.ZodTypeDef, unknown> = z
5071
+ .object({
5072
+ lte: z.number(),
5142
5073
  });
5143
- });
5144
5074
 
5145
5075
  /** @internal */
5146
- export type DollarOrDollarLte$Outbound = {
5147
- $lte: number;
5076
+ export type OrLte$Outbound = {
5077
+ lte: number;
5148
5078
  };
5149
5079
 
5150
5080
  /** @internal */
5151
- export const DollarOrDollarLte$outboundSchema: z.ZodType<
5152
- DollarOrDollarLte$Outbound,
5081
+ export const OrLte$outboundSchema: z.ZodType<
5082
+ OrLte$Outbound,
5153
5083
  z.ZodTypeDef,
5154
- DollarOrDollarLte
5084
+ OrLte
5155
5085
  > = z.object({
5156
- dollarLte: z.number(),
5157
- }).transform((v) => {
5158
- return remap$(v, {
5159
- dollarLte: "$lte",
5160
- });
5086
+ lte: z.number(),
5161
5087
  });
5162
5088
 
5163
5089
  /**
5164
5090
  * @internal
5165
5091
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5166
5092
  */
5167
- export namespace DollarOrDollarLte$ {
5168
- /** @deprecated use `DollarOrDollarLte$inboundSchema` instead. */
5169
- export const inboundSchema = DollarOrDollarLte$inboundSchema;
5170
- /** @deprecated use `DollarOrDollarLte$outboundSchema` instead. */
5171
- export const outboundSchema = DollarOrDollarLte$outboundSchema;
5172
- /** @deprecated use `DollarOrDollarLte$Outbound` instead. */
5173
- export type Outbound = DollarOrDollarLte$Outbound;
5093
+ export namespace OrLte$ {
5094
+ /** @deprecated use `OrLte$inboundSchema` instead. */
5095
+ export const inboundSchema = OrLte$inboundSchema;
5096
+ /** @deprecated use `OrLte$outboundSchema` instead. */
5097
+ export const outboundSchema = OrLte$outboundSchema;
5098
+ /** @deprecated use `OrLte$Outbound` instead. */
5099
+ export type Outbound = OrLte$Outbound;
5174
5100
  }
5175
5101
 
5176
- export function dollarOrDollarLteToJSON(
5177
- dollarOrDollarLte: DollarOrDollarLte,
5178
- ): string {
5179
- return JSON.stringify(
5180
- DollarOrDollarLte$outboundSchema.parse(dollarOrDollarLte),
5181
- );
5102
+ export function orLteToJSON(orLte: OrLte): string {
5103
+ return JSON.stringify(OrLte$outboundSchema.parse(orLte));
5182
5104
  }
5183
5105
 
5184
- export function dollarOrDollarLteFromJSON(
5106
+ export function orLteFromJSON(
5185
5107
  jsonString: string,
5186
- ): SafeParseResult<DollarOrDollarLte, SDKValidationError> {
5108
+ ): SafeParseResult<OrLte, SDKValidationError> {
5187
5109
  return safeParse(
5188
5110
  jsonString,
5189
- (x) => DollarOrDollarLte$inboundSchema.parse(JSON.parse(x)),
5190
- `Failed to parse 'DollarOrDollarLte' from JSON`,
5111
+ (x) => OrLte$inboundSchema.parse(JSON.parse(x)),
5112
+ `Failed to parse 'OrLte' from JSON`,
5191
5113
  );
5192
5114
  }
5193
5115
 
5194
5116
  /** @internal */
5195
- export const DollarOrDollarLt$inboundSchema: z.ZodType<
5196
- DollarOrDollarLt,
5197
- z.ZodTypeDef,
5198
- unknown
5199
- > = z.object({
5200
- $lt: z.number(),
5201
- }).transform((v) => {
5202
- return remap$(v, {
5203
- "$lt": "dollarLt",
5117
+ export const OrLt$inboundSchema: z.ZodType<OrLt, z.ZodTypeDef, unknown> = z
5118
+ .object({
5119
+ lt: z.number(),
5204
5120
  });
5205
- });
5206
5121
 
5207
5122
  /** @internal */
5208
- export type DollarOrDollarLt$Outbound = {
5209
- $lt: number;
5123
+ export type OrLt$Outbound = {
5124
+ lt: number;
5210
5125
  };
5211
5126
 
5212
5127
  /** @internal */
5213
- export const DollarOrDollarLt$outboundSchema: z.ZodType<
5214
- DollarOrDollarLt$Outbound,
5215
- z.ZodTypeDef,
5216
- DollarOrDollarLt
5217
- > = z.object({
5218
- dollarLt: z.number(),
5219
- }).transform((v) => {
5220
- return remap$(v, {
5221
- dollarLt: "$lt",
5128
+ export const OrLt$outboundSchema: z.ZodType<OrLt$Outbound, z.ZodTypeDef, OrLt> =
5129
+ z.object({
5130
+ lt: z.number(),
5222
5131
  });
5223
- });
5224
5132
 
5225
5133
  /**
5226
5134
  * @internal
5227
5135
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5228
5136
  */
5229
- export namespace DollarOrDollarLt$ {
5230
- /** @deprecated use `DollarOrDollarLt$inboundSchema` instead. */
5231
- export const inboundSchema = DollarOrDollarLt$inboundSchema;
5232
- /** @deprecated use `DollarOrDollarLt$outboundSchema` instead. */
5233
- export const outboundSchema = DollarOrDollarLt$outboundSchema;
5234
- /** @deprecated use `DollarOrDollarLt$Outbound` instead. */
5235
- export type Outbound = DollarOrDollarLt$Outbound;
5137
+ export namespace OrLt$ {
5138
+ /** @deprecated use `OrLt$inboundSchema` instead. */
5139
+ export const inboundSchema = OrLt$inboundSchema;
5140
+ /** @deprecated use `OrLt$outboundSchema` instead. */
5141
+ export const outboundSchema = OrLt$outboundSchema;
5142
+ /** @deprecated use `OrLt$Outbound` instead. */
5143
+ export type Outbound = OrLt$Outbound;
5236
5144
  }
5237
5145
 
5238
- export function dollarOrDollarLtToJSON(
5239
- dollarOrDollarLt: DollarOrDollarLt,
5240
- ): string {
5241
- return JSON.stringify(
5242
- DollarOrDollarLt$outboundSchema.parse(dollarOrDollarLt),
5243
- );
5146
+ export function orLtToJSON(orLt: OrLt): string {
5147
+ return JSON.stringify(OrLt$outboundSchema.parse(orLt));
5244
5148
  }
5245
5149
 
5246
- export function dollarOrDollarLtFromJSON(
5150
+ export function orLtFromJSON(
5247
5151
  jsonString: string,
5248
- ): SafeParseResult<DollarOrDollarLt, SDKValidationError> {
5152
+ ): SafeParseResult<OrLt, SDKValidationError> {
5249
5153
  return safeParse(
5250
5154
  jsonString,
5251
- (x) => DollarOrDollarLt$inboundSchema.parse(JSON.parse(x)),
5252
- `Failed to parse 'DollarOrDollarLt' from JSON`,
5155
+ (x) => OrLt$inboundSchema.parse(JSON.parse(x)),
5156
+ `Failed to parse 'OrLt' from JSON`,
5253
5157
  );
5254
5158
  }
5255
5159
 
5256
5160
  /** @internal */
5257
- export const DollarOrDollarGte$inboundSchema: z.ZodType<
5258
- DollarOrDollarGte,
5259
- z.ZodTypeDef,
5260
- unknown
5261
- > = z.object({
5262
- $gte: z.number(),
5263
- }).transform((v) => {
5264
- return remap$(v, {
5265
- "$gte": "dollarGte",
5161
+ export const OrGte$inboundSchema: z.ZodType<OrGte, z.ZodTypeDef, unknown> = z
5162
+ .object({
5163
+ gte: z.number(),
5266
5164
  });
5267
- });
5268
5165
 
5269
5166
  /** @internal */
5270
- export type DollarOrDollarGte$Outbound = {
5271
- $gte: number;
5167
+ export type OrGte$Outbound = {
5168
+ gte: number;
5272
5169
  };
5273
5170
 
5274
5171
  /** @internal */
5275
- export const DollarOrDollarGte$outboundSchema: z.ZodType<
5276
- DollarOrDollarGte$Outbound,
5172
+ export const OrGte$outboundSchema: z.ZodType<
5173
+ OrGte$Outbound,
5277
5174
  z.ZodTypeDef,
5278
- DollarOrDollarGte
5175
+ OrGte
5279
5176
  > = z.object({
5280
- dollarGte: z.number(),
5281
- }).transform((v) => {
5282
- return remap$(v, {
5283
- dollarGte: "$gte",
5284
- });
5177
+ gte: z.number(),
5285
5178
  });
5286
5179
 
5287
5180
  /**
5288
5181
  * @internal
5289
5182
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5290
5183
  */
5291
- export namespace DollarOrDollarGte$ {
5292
- /** @deprecated use `DollarOrDollarGte$inboundSchema` instead. */
5293
- export const inboundSchema = DollarOrDollarGte$inboundSchema;
5294
- /** @deprecated use `DollarOrDollarGte$outboundSchema` instead. */
5295
- export const outboundSchema = DollarOrDollarGte$outboundSchema;
5296
- /** @deprecated use `DollarOrDollarGte$Outbound` instead. */
5297
- export type Outbound = DollarOrDollarGte$Outbound;
5184
+ export namespace OrGte$ {
5185
+ /** @deprecated use `OrGte$inboundSchema` instead. */
5186
+ export const inboundSchema = OrGte$inboundSchema;
5187
+ /** @deprecated use `OrGte$outboundSchema` instead. */
5188
+ export const outboundSchema = OrGte$outboundSchema;
5189
+ /** @deprecated use `OrGte$Outbound` instead. */
5190
+ export type Outbound = OrGte$Outbound;
5298
5191
  }
5299
5192
 
5300
- export function dollarOrDollarGteToJSON(
5301
- dollarOrDollarGte: DollarOrDollarGte,
5302
- ): string {
5303
- return JSON.stringify(
5304
- DollarOrDollarGte$outboundSchema.parse(dollarOrDollarGte),
5305
- );
5193
+ export function orGteToJSON(orGte: OrGte): string {
5194
+ return JSON.stringify(OrGte$outboundSchema.parse(orGte));
5306
5195
  }
5307
5196
 
5308
- export function dollarOrDollarGteFromJSON(
5197
+ export function orGteFromJSON(
5309
5198
  jsonString: string,
5310
- ): SafeParseResult<DollarOrDollarGte, SDKValidationError> {
5199
+ ): SafeParseResult<OrGte, SDKValidationError> {
5311
5200
  return safeParse(
5312
5201
  jsonString,
5313
- (x) => DollarOrDollarGte$inboundSchema.parse(JSON.parse(x)),
5314
- `Failed to parse 'DollarOrDollarGte' from JSON`,
5202
+ (x) => OrGte$inboundSchema.parse(JSON.parse(x)),
5203
+ `Failed to parse 'OrGte' from JSON`,
5315
5204
  );
5316
5205
  }
5317
5206
 
5318
5207
  /** @internal */
5319
- export const DollarOr3$inboundSchema: z.ZodType<
5320
- DollarOr3,
5321
- z.ZodTypeDef,
5322
- unknown
5323
- > = z.object({
5324
- $gt: z.number(),
5325
- }).transform((v) => {
5326
- return remap$(v, {
5327
- "$gt": "dollarGt",
5208
+ export const Or3$inboundSchema: z.ZodType<Or3, z.ZodTypeDef, unknown> = z
5209
+ .object({
5210
+ gt: z.number(),
5328
5211
  });
5329
- });
5330
5212
 
5331
5213
  /** @internal */
5332
- export type DollarOr3$Outbound = {
5333
- $gt: number;
5214
+ export type Or3$Outbound = {
5215
+ gt: number;
5334
5216
  };
5335
5217
 
5336
5218
  /** @internal */
5337
- export const DollarOr3$outboundSchema: z.ZodType<
5338
- DollarOr3$Outbound,
5339
- z.ZodTypeDef,
5340
- DollarOr3
5341
- > = z.object({
5342
- dollarGt: z.number(),
5343
- }).transform((v) => {
5344
- return remap$(v, {
5345
- dollarGt: "$gt",
5219
+ export const Or3$outboundSchema: z.ZodType<Or3$Outbound, z.ZodTypeDef, Or3> = z
5220
+ .object({
5221
+ gt: z.number(),
5346
5222
  });
5347
- });
5348
5223
 
5349
5224
  /**
5350
5225
  * @internal
5351
5226
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5352
5227
  */
5353
- export namespace DollarOr3$ {
5354
- /** @deprecated use `DollarOr3$inboundSchema` instead. */
5355
- export const inboundSchema = DollarOr3$inboundSchema;
5356
- /** @deprecated use `DollarOr3$outboundSchema` instead. */
5357
- export const outboundSchema = DollarOr3$outboundSchema;
5358
- /** @deprecated use `DollarOr3$Outbound` instead. */
5359
- export type Outbound = DollarOr3$Outbound;
5228
+ export namespace Or3$ {
5229
+ /** @deprecated use `Or3$inboundSchema` instead. */
5230
+ export const inboundSchema = Or3$inboundSchema;
5231
+ /** @deprecated use `Or3$outboundSchema` instead. */
5232
+ export const outboundSchema = Or3$outboundSchema;
5233
+ /** @deprecated use `Or3$Outbound` instead. */
5234
+ export type Outbound = Or3$Outbound;
5360
5235
  }
5361
5236
 
5362
- export function dollarOr3ToJSON(dollarOr3: DollarOr3): string {
5363
- return JSON.stringify(DollarOr3$outboundSchema.parse(dollarOr3));
5237
+ export function or3ToJSON(or3: Or3): string {
5238
+ return JSON.stringify(Or3$outboundSchema.parse(or3));
5364
5239
  }
5365
5240
 
5366
- export function dollarOr3FromJSON(
5241
+ export function or3FromJSON(
5367
5242
  jsonString: string,
5368
- ): SafeParseResult<DollarOr3, SDKValidationError> {
5243
+ ): SafeParseResult<Or3, SDKValidationError> {
5369
5244
  return safeParse(
5370
5245
  jsonString,
5371
- (x) => DollarOr3$inboundSchema.parse(JSON.parse(x)),
5372
- `Failed to parse 'DollarOr3' from JSON`,
5246
+ (x) => Or3$inboundSchema.parse(JSON.parse(x)),
5247
+ `Failed to parse 'Or3' from JSON`,
5373
5248
  );
5374
5249
  }
5375
5250
 
5376
5251
  /** @internal */
5377
- export const DollarOrDollarNe$inboundSchema: z.ZodType<
5378
- DollarOrDollarNe,
5379
- z.ZodTypeDef,
5380
- unknown
5381
- > = z.union([z.string(), z.number(), z.boolean()]);
5252
+ export const OrNe$inboundSchema: z.ZodType<OrNe, z.ZodTypeDef, unknown> = z
5253
+ .union([z.string(), z.number(), z.boolean()]);
5382
5254
 
5383
5255
  /** @internal */
5384
- export type DollarOrDollarNe$Outbound = string | number | boolean;
5256
+ export type OrNe$Outbound = string | number | boolean;
5385
5257
 
5386
5258
  /** @internal */
5387
- export const DollarOrDollarNe$outboundSchema: z.ZodType<
5388
- DollarOrDollarNe$Outbound,
5389
- z.ZodTypeDef,
5390
- DollarOrDollarNe
5391
- > = z.union([z.string(), z.number(), z.boolean()]);
5259
+ export const OrNe$outboundSchema: z.ZodType<OrNe$Outbound, z.ZodTypeDef, OrNe> =
5260
+ z.union([z.string(), z.number(), z.boolean()]);
5392
5261
 
5393
5262
  /**
5394
5263
  * @internal
5395
5264
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5396
5265
  */
5397
- export namespace DollarOrDollarNe$ {
5398
- /** @deprecated use `DollarOrDollarNe$inboundSchema` instead. */
5399
- export const inboundSchema = DollarOrDollarNe$inboundSchema;
5400
- /** @deprecated use `DollarOrDollarNe$outboundSchema` instead. */
5401
- export const outboundSchema = DollarOrDollarNe$outboundSchema;
5402
- /** @deprecated use `DollarOrDollarNe$Outbound` instead. */
5403
- export type Outbound = DollarOrDollarNe$Outbound;
5266
+ export namespace OrNe$ {
5267
+ /** @deprecated use `OrNe$inboundSchema` instead. */
5268
+ export const inboundSchema = OrNe$inboundSchema;
5269
+ /** @deprecated use `OrNe$outboundSchema` instead. */
5270
+ export const outboundSchema = OrNe$outboundSchema;
5271
+ /** @deprecated use `OrNe$Outbound` instead. */
5272
+ export type Outbound = OrNe$Outbound;
5404
5273
  }
5405
5274
 
5406
- export function dollarOrDollarNeToJSON(
5407
- dollarOrDollarNe: DollarOrDollarNe,
5408
- ): string {
5409
- return JSON.stringify(
5410
- DollarOrDollarNe$outboundSchema.parse(dollarOrDollarNe),
5411
- );
5275
+ export function orNeToJSON(orNe: OrNe): string {
5276
+ return JSON.stringify(OrNe$outboundSchema.parse(orNe));
5412
5277
  }
5413
5278
 
5414
- export function dollarOrDollarNeFromJSON(
5279
+ export function orNeFromJSON(
5415
5280
  jsonString: string,
5416
- ): SafeParseResult<DollarOrDollarNe, SDKValidationError> {
5281
+ ): SafeParseResult<OrNe, SDKValidationError> {
5417
5282
  return safeParse(
5418
5283
  jsonString,
5419
- (x) => DollarOrDollarNe$inboundSchema.parse(JSON.parse(x)),
5420
- `Failed to parse 'DollarOrDollarNe' from JSON`,
5284
+ (x) => OrNe$inboundSchema.parse(JSON.parse(x)),
5285
+ `Failed to parse 'OrNe' from JSON`,
5421
5286
  );
5422
5287
  }
5423
5288
 
5424
5289
  /** @internal */
5425
- export const DeploymentsDollarOrDollarNe$inboundSchema: z.ZodType<
5426
- DeploymentsDollarOrDollarNe,
5290
+ export const DeploymentsOrNe$inboundSchema: z.ZodType<
5291
+ DeploymentsOrNe,
5427
5292
  z.ZodTypeDef,
5428
5293
  unknown
5429
5294
  > = z.object({
5430
- $ne: z.union([z.string(), z.number(), z.boolean()]),
5431
- }).transform((v) => {
5432
- return remap$(v, {
5433
- "$ne": "dollarNe",
5434
- });
5295
+ ne: z.union([z.string(), z.number(), z.boolean()]),
5435
5296
  });
5436
5297
 
5437
5298
  /** @internal */
5438
- export type DeploymentsDollarOrDollarNe$Outbound = {
5439
- $ne: string | number | boolean;
5299
+ export type DeploymentsOrNe$Outbound = {
5300
+ ne: string | number | boolean;
5440
5301
  };
5441
5302
 
5442
5303
  /** @internal */
5443
- export const DeploymentsDollarOrDollarNe$outboundSchema: z.ZodType<
5444
- DeploymentsDollarOrDollarNe$Outbound,
5304
+ export const DeploymentsOrNe$outboundSchema: z.ZodType<
5305
+ DeploymentsOrNe$Outbound,
5445
5306
  z.ZodTypeDef,
5446
- DeploymentsDollarOrDollarNe
5307
+ DeploymentsOrNe
5447
5308
  > = z.object({
5448
- dollarNe: z.union([z.string(), z.number(), z.boolean()]),
5449
- }).transform((v) => {
5450
- return remap$(v, {
5451
- dollarNe: "$ne",
5452
- });
5309
+ ne: z.union([z.string(), z.number(), z.boolean()]),
5453
5310
  });
5454
5311
 
5455
5312
  /**
5456
5313
  * @internal
5457
5314
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5458
5315
  */
5459
- export namespace DeploymentsDollarOrDollarNe$ {
5460
- /** @deprecated use `DeploymentsDollarOrDollarNe$inboundSchema` instead. */
5461
- export const inboundSchema = DeploymentsDollarOrDollarNe$inboundSchema;
5462
- /** @deprecated use `DeploymentsDollarOrDollarNe$outboundSchema` instead. */
5463
- export const outboundSchema = DeploymentsDollarOrDollarNe$outboundSchema;
5464
- /** @deprecated use `DeploymentsDollarOrDollarNe$Outbound` instead. */
5465
- export type Outbound = DeploymentsDollarOrDollarNe$Outbound;
5316
+ export namespace DeploymentsOrNe$ {
5317
+ /** @deprecated use `DeploymentsOrNe$inboundSchema` instead. */
5318
+ export const inboundSchema = DeploymentsOrNe$inboundSchema;
5319
+ /** @deprecated use `DeploymentsOrNe$outboundSchema` instead. */
5320
+ export const outboundSchema = DeploymentsOrNe$outboundSchema;
5321
+ /** @deprecated use `DeploymentsOrNe$Outbound` instead. */
5322
+ export type Outbound = DeploymentsOrNe$Outbound;
5466
5323
  }
5467
5324
 
5468
- export function deploymentsDollarOrDollarNeToJSON(
5469
- deploymentsDollarOrDollarNe: DeploymentsDollarOrDollarNe,
5325
+ export function deploymentsOrNeToJSON(
5326
+ deploymentsOrNe: DeploymentsOrNe,
5470
5327
  ): string {
5471
- return JSON.stringify(
5472
- DeploymentsDollarOrDollarNe$outboundSchema.parse(
5473
- deploymentsDollarOrDollarNe,
5474
- ),
5475
- );
5328
+ return JSON.stringify(DeploymentsOrNe$outboundSchema.parse(deploymentsOrNe));
5476
5329
  }
5477
5330
 
5478
- export function deploymentsDollarOrDollarNeFromJSON(
5331
+ export function deploymentsOrNeFromJSON(
5479
5332
  jsonString: string,
5480
- ): SafeParseResult<DeploymentsDollarOrDollarNe, SDKValidationError> {
5333
+ ): SafeParseResult<DeploymentsOrNe, SDKValidationError> {
5481
5334
  return safeParse(
5482
5335
  jsonString,
5483
- (x) => DeploymentsDollarOrDollarNe$inboundSchema.parse(JSON.parse(x)),
5484
- `Failed to parse 'DeploymentsDollarOrDollarNe' from JSON`,
5336
+ (x) => DeploymentsOrNe$inboundSchema.parse(JSON.parse(x)),
5337
+ `Failed to parse 'DeploymentsOrNe' from JSON`,
5485
5338
  );
5486
5339
  }
5487
5340
 
5488
5341
  /** @internal */
5489
- export const DollarOrDollarEq$inboundSchema: z.ZodType<
5490
- DollarOrDollarEq,
5491
- z.ZodTypeDef,
5492
- unknown
5493
- > = z.union([z.string(), z.number(), z.boolean()]);
5342
+ export const OrEq$inboundSchema: z.ZodType<OrEq, z.ZodTypeDef, unknown> = z
5343
+ .union([z.string(), z.number(), z.boolean()]);
5494
5344
 
5495
5345
  /** @internal */
5496
- export type DollarOrDollarEq$Outbound = string | number | boolean;
5346
+ export type OrEq$Outbound = string | number | boolean;
5497
5347
 
5498
5348
  /** @internal */
5499
- export const DollarOrDollarEq$outboundSchema: z.ZodType<
5500
- DollarOrDollarEq$Outbound,
5501
- z.ZodTypeDef,
5502
- DollarOrDollarEq
5503
- > = z.union([z.string(), z.number(), z.boolean()]);
5349
+ export const OrEq$outboundSchema: z.ZodType<OrEq$Outbound, z.ZodTypeDef, OrEq> =
5350
+ z.union([z.string(), z.number(), z.boolean()]);
5504
5351
 
5505
5352
  /**
5506
5353
  * @internal
5507
5354
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5508
5355
  */
5509
- export namespace DollarOrDollarEq$ {
5510
- /** @deprecated use `DollarOrDollarEq$inboundSchema` instead. */
5511
- export const inboundSchema = DollarOrDollarEq$inboundSchema;
5512
- /** @deprecated use `DollarOrDollarEq$outboundSchema` instead. */
5513
- export const outboundSchema = DollarOrDollarEq$outboundSchema;
5514
- /** @deprecated use `DollarOrDollarEq$Outbound` instead. */
5515
- export type Outbound = DollarOrDollarEq$Outbound;
5356
+ export namespace OrEq$ {
5357
+ /** @deprecated use `OrEq$inboundSchema` instead. */
5358
+ export const inboundSchema = OrEq$inboundSchema;
5359
+ /** @deprecated use `OrEq$outboundSchema` instead. */
5360
+ export const outboundSchema = OrEq$outboundSchema;
5361
+ /** @deprecated use `OrEq$Outbound` instead. */
5362
+ export type Outbound = OrEq$Outbound;
5516
5363
  }
5517
5364
 
5518
- export function dollarOrDollarEqToJSON(
5519
- dollarOrDollarEq: DollarOrDollarEq,
5520
- ): string {
5521
- return JSON.stringify(
5522
- DollarOrDollarEq$outboundSchema.parse(dollarOrDollarEq),
5523
- );
5365
+ export function orEqToJSON(orEq: OrEq): string {
5366
+ return JSON.stringify(OrEq$outboundSchema.parse(orEq));
5524
5367
  }
5525
5368
 
5526
- export function dollarOrDollarEqFromJSON(
5369
+ export function orEqFromJSON(
5527
5370
  jsonString: string,
5528
- ): SafeParseResult<DollarOrDollarEq, SDKValidationError> {
5371
+ ): SafeParseResult<OrEq, SDKValidationError> {
5529
5372
  return safeParse(
5530
5373
  jsonString,
5531
- (x) => DollarOrDollarEq$inboundSchema.parse(JSON.parse(x)),
5532
- `Failed to parse 'DollarOrDollarEq' from JSON`,
5374
+ (x) => OrEq$inboundSchema.parse(JSON.parse(x)),
5375
+ `Failed to parse 'OrEq' from JSON`,
5533
5376
  );
5534
5377
  }
5535
5378
 
5536
5379
  /** @internal */
5537
- export const DeploymentsDollarOrDollarEq$inboundSchema: z.ZodType<
5538
- DeploymentsDollarOrDollarEq,
5380
+ export const DeploymentsOrEq$inboundSchema: z.ZodType<
5381
+ DeploymentsOrEq,
5539
5382
  z.ZodTypeDef,
5540
5383
  unknown
5541
5384
  > = z.object({
5542
- $eq: z.union([z.string(), z.number(), z.boolean()]),
5543
- }).transform((v) => {
5544
- return remap$(v, {
5545
- "$eq": "dollarEq",
5546
- });
5385
+ eq: z.union([z.string(), z.number(), z.boolean()]),
5547
5386
  });
5548
5387
 
5549
5388
  /** @internal */
5550
- export type DeploymentsDollarOrDollarEq$Outbound = {
5551
- $eq: string | number | boolean;
5389
+ export type DeploymentsOrEq$Outbound = {
5390
+ eq: string | number | boolean;
5552
5391
  };
5553
5392
 
5554
5393
  /** @internal */
5555
- export const DeploymentsDollarOrDollarEq$outboundSchema: z.ZodType<
5556
- DeploymentsDollarOrDollarEq$Outbound,
5394
+ export const DeploymentsOrEq$outboundSchema: z.ZodType<
5395
+ DeploymentsOrEq$Outbound,
5557
5396
  z.ZodTypeDef,
5558
- DeploymentsDollarOrDollarEq
5397
+ DeploymentsOrEq
5559
5398
  > = z.object({
5560
- dollarEq: z.union([z.string(), z.number(), z.boolean()]),
5561
- }).transform((v) => {
5562
- return remap$(v, {
5563
- dollarEq: "$eq",
5564
- });
5399
+ eq: z.union([z.string(), z.number(), z.boolean()]),
5565
5400
  });
5566
5401
 
5567
5402
  /**
5568
5403
  * @internal
5569
5404
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5570
5405
  */
5571
- export namespace DeploymentsDollarOrDollarEq$ {
5572
- /** @deprecated use `DeploymentsDollarOrDollarEq$inboundSchema` instead. */
5573
- export const inboundSchema = DeploymentsDollarOrDollarEq$inboundSchema;
5574
- /** @deprecated use `DeploymentsDollarOrDollarEq$outboundSchema` instead. */
5575
- export const outboundSchema = DeploymentsDollarOrDollarEq$outboundSchema;
5576
- /** @deprecated use `DeploymentsDollarOrDollarEq$Outbound` instead. */
5577
- export type Outbound = DeploymentsDollarOrDollarEq$Outbound;
5406
+ export namespace DeploymentsOrEq$ {
5407
+ /** @deprecated use `DeploymentsOrEq$inboundSchema` instead. */
5408
+ export const inboundSchema = DeploymentsOrEq$inboundSchema;
5409
+ /** @deprecated use `DeploymentsOrEq$outboundSchema` instead. */
5410
+ export const outboundSchema = DeploymentsOrEq$outboundSchema;
5411
+ /** @deprecated use `DeploymentsOrEq$Outbound` instead. */
5412
+ export type Outbound = DeploymentsOrEq$Outbound;
5578
5413
  }
5579
5414
 
5580
- export function deploymentsDollarOrDollarEqToJSON(
5581
- deploymentsDollarOrDollarEq: DeploymentsDollarOrDollarEq,
5415
+ export function deploymentsOrEqToJSON(
5416
+ deploymentsOrEq: DeploymentsOrEq,
5582
5417
  ): string {
5583
- return JSON.stringify(
5584
- DeploymentsDollarOrDollarEq$outboundSchema.parse(
5585
- deploymentsDollarOrDollarEq,
5586
- ),
5587
- );
5418
+ return JSON.stringify(DeploymentsOrEq$outboundSchema.parse(deploymentsOrEq));
5588
5419
  }
5589
5420
 
5590
- export function deploymentsDollarOrDollarEqFromJSON(
5421
+ export function deploymentsOrEqFromJSON(
5591
5422
  jsonString: string,
5592
- ): SafeParseResult<DeploymentsDollarOrDollarEq, SDKValidationError> {
5423
+ ): SafeParseResult<DeploymentsOrEq, SDKValidationError> {
5593
5424
  return safeParse(
5594
5425
  jsonString,
5595
- (x) => DeploymentsDollarOrDollarEq$inboundSchema.parse(JSON.parse(x)),
5596
- `Failed to parse 'DeploymentsDollarOrDollarEq' from JSON`,
5426
+ (x) => DeploymentsOrEq$inboundSchema.parse(JSON.parse(x)),
5427
+ `Failed to parse 'DeploymentsOrEq' from JSON`,
5597
5428
  );
5598
5429
  }
5599
5430
 
5600
5431
  /** @internal */
5601
- export const DollarOr$inboundSchema: z.ZodType<
5602
- DollarOr,
5603
- z.ZodTypeDef,
5604
- unknown
5605
- > = z.union([
5606
- z.lazy(() => DeploymentsDollarOrDollarEq$inboundSchema),
5607
- z.lazy(() => DeploymentsDollarOrDollarNe$inboundSchema),
5608
- z.lazy(() => DollarOr3$inboundSchema),
5609
- z.lazy(() => DollarOrDollarGte$inboundSchema),
5610
- z.lazy(() => DollarOrDollarLt$inboundSchema),
5611
- z.lazy(() => DollarOrDollarLte$inboundSchema),
5612
- z.lazy(() => DeploymentsDollarOrDollarIn$inboundSchema),
5613
- z.lazy(() => DeploymentsDollarOrDollarNin$inboundSchema),
5614
- z.lazy(() => DollarOrDollarExists$inboundSchema),
5432
+ export const Or$inboundSchema: z.ZodType<Or, z.ZodTypeDef, unknown> = z.union([
5433
+ z.lazy(() => DeploymentsOrEq$inboundSchema),
5434
+ z.lazy(() => DeploymentsOrNe$inboundSchema),
5435
+ z.lazy(() => Or3$inboundSchema),
5436
+ z.lazy(() => OrGte$inboundSchema),
5437
+ z.lazy(() => OrLt$inboundSchema),
5438
+ z.lazy(() => OrLte$inboundSchema),
5439
+ z.lazy(() => DeploymentsOrIn$inboundSchema),
5440
+ z.lazy(() => DeploymentsOrNin$inboundSchema),
5441
+ z.lazy(() => OrExists$inboundSchema),
5615
5442
  ]);
5616
5443
 
5617
5444
  /** @internal */
5618
- export type DollarOr$Outbound =
5619
- | DeploymentsDollarOrDollarEq$Outbound
5620
- | DeploymentsDollarOrDollarNe$Outbound
5621
- | DollarOr3$Outbound
5622
- | DollarOrDollarGte$Outbound
5623
- | DollarOrDollarLt$Outbound
5624
- | DollarOrDollarLte$Outbound
5625
- | DeploymentsDollarOrDollarIn$Outbound
5626
- | DeploymentsDollarOrDollarNin$Outbound
5627
- | DollarOrDollarExists$Outbound;
5445
+ export type Or$Outbound =
5446
+ | DeploymentsOrEq$Outbound
5447
+ | DeploymentsOrNe$Outbound
5448
+ | Or3$Outbound
5449
+ | OrGte$Outbound
5450
+ | OrLt$Outbound
5451
+ | OrLte$Outbound
5452
+ | DeploymentsOrIn$Outbound
5453
+ | DeploymentsOrNin$Outbound
5454
+ | OrExists$Outbound;
5628
5455
 
5629
5456
  /** @internal */
5630
- export const DollarOr$outboundSchema: z.ZodType<
5631
- DollarOr$Outbound,
5632
- z.ZodTypeDef,
5633
- DollarOr
5634
- > = z.union([
5635
- z.lazy(() => DeploymentsDollarOrDollarEq$outboundSchema),
5636
- z.lazy(() => DeploymentsDollarOrDollarNe$outboundSchema),
5637
- z.lazy(() => DollarOr3$outboundSchema),
5638
- z.lazy(() => DollarOrDollarGte$outboundSchema),
5639
- z.lazy(() => DollarOrDollarLt$outboundSchema),
5640
- z.lazy(() => DollarOrDollarLte$outboundSchema),
5641
- z.lazy(() => DeploymentsDollarOrDollarIn$outboundSchema),
5642
- z.lazy(() => DeploymentsDollarOrDollarNin$outboundSchema),
5643
- z.lazy(() => DollarOrDollarExists$outboundSchema),
5644
- ]);
5457
+ export const Or$outboundSchema: z.ZodType<Or$Outbound, z.ZodTypeDef, Or> = z
5458
+ .union([
5459
+ z.lazy(() => DeploymentsOrEq$outboundSchema),
5460
+ z.lazy(() => DeploymentsOrNe$outboundSchema),
5461
+ z.lazy(() => Or3$outboundSchema),
5462
+ z.lazy(() => OrGte$outboundSchema),
5463
+ z.lazy(() => OrLt$outboundSchema),
5464
+ z.lazy(() => OrLte$outboundSchema),
5465
+ z.lazy(() => DeploymentsOrIn$outboundSchema),
5466
+ z.lazy(() => DeploymentsOrNin$outboundSchema),
5467
+ z.lazy(() => OrExists$outboundSchema),
5468
+ ]);
5645
5469
 
5646
5470
  /**
5647
5471
  * @internal
5648
5472
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5649
5473
  */
5650
- export namespace DollarOr$ {
5651
- /** @deprecated use `DollarOr$inboundSchema` instead. */
5652
- export const inboundSchema = DollarOr$inboundSchema;
5653
- /** @deprecated use `DollarOr$outboundSchema` instead. */
5654
- export const outboundSchema = DollarOr$outboundSchema;
5655
- /** @deprecated use `DollarOr$Outbound` instead. */
5656
- export type Outbound = DollarOr$Outbound;
5474
+ export namespace Or$ {
5475
+ /** @deprecated use `Or$inboundSchema` instead. */
5476
+ export const inboundSchema = Or$inboundSchema;
5477
+ /** @deprecated use `Or$outboundSchema` instead. */
5478
+ export const outboundSchema = Or$outboundSchema;
5479
+ /** @deprecated use `Or$Outbound` instead. */
5480
+ export type Outbound = Or$Outbound;
5657
5481
  }
5658
5482
 
5659
- export function dollarOrToJSON(dollarOr: DollarOr): string {
5660
- return JSON.stringify(DollarOr$outboundSchema.parse(dollarOr));
5483
+ export function orToJSON(or: Or): string {
5484
+ return JSON.stringify(Or$outboundSchema.parse(or));
5661
5485
  }
5662
5486
 
5663
- export function dollarOrFromJSON(
5487
+ export function orFromJSON(
5664
5488
  jsonString: string,
5665
- ): SafeParseResult<DollarOr, SDKValidationError> {
5489
+ ): SafeParseResult<Or, SDKValidationError> {
5666
5490
  return safeParse(
5667
5491
  jsonString,
5668
- (x) => DollarOr$inboundSchema.parse(JSON.parse(x)),
5669
- `Failed to parse 'DollarOr' from JSON`,
5492
+ (x) => Or$inboundSchema.parse(JSON.parse(x)),
5493
+ `Failed to parse 'Or' from JSON`,
5670
5494
  );
5671
5495
  }
5672
5496
 
5673
5497
  /** @internal */
5674
- export const KnowledgeFilterDollarOr$inboundSchema: z.ZodType<
5675
- KnowledgeFilterDollarOr,
5498
+ export const KnowledgeFilterOr$inboundSchema: z.ZodType<
5499
+ KnowledgeFilterOr,
5676
5500
  z.ZodTypeDef,
5677
5501
  unknown
5678
5502
  > = z.object({
5679
- $or: z.array(
5503
+ or: z.array(
5680
5504
  z.record(z.union([
5681
- z.lazy(() => DeploymentsDollarOrDollarEq$inboundSchema),
5505
+ z.lazy(() => DeploymentsOrEq$inboundSchema),
5682
5506
  z.lazy(() =>
5683
- DeploymentsDollarOrDollarNe$inboundSchema
5507
+ DeploymentsOrNe$inboundSchema
5684
5508
  ),
5685
- z.lazy(() => DollarOr3$inboundSchema),
5686
- z.lazy(() => DollarOrDollarGte$inboundSchema),
5687
- z.lazy(() => DollarOrDollarLt$inboundSchema),
5688
- z.lazy(() => DollarOrDollarLte$inboundSchema),
5689
- z.lazy(() => DeploymentsDollarOrDollarIn$inboundSchema),
5690
- z.lazy(() => DeploymentsDollarOrDollarNin$inboundSchema),
5691
- z.lazy(() => DollarOrDollarExists$inboundSchema),
5509
+ z.lazy(() => Or3$inboundSchema),
5510
+ z.lazy(() => OrGte$inboundSchema),
5511
+ z.lazy(() => OrLt$inboundSchema),
5512
+ z.lazy(() => OrLte$inboundSchema),
5513
+ z.lazy(() => DeploymentsOrIn$inboundSchema),
5514
+ z.lazy(() => DeploymentsOrNin$inboundSchema),
5515
+ z.lazy(() => OrExists$inboundSchema),
5692
5516
  ])),
5693
5517
  ),
5694
- }).transform((v) => {
5695
- return remap$(v, {
5696
- "$or": "dollarOr",
5697
- });
5698
5518
  });
5699
5519
 
5700
5520
  /** @internal */
5701
- export type KnowledgeFilterDollarOr$Outbound = {
5702
- $or: Array<
5521
+ export type KnowledgeFilterOr$Outbound = {
5522
+ or: Array<
5703
5523
  {
5704
5524
  [k: string]:
5705
- | DeploymentsDollarOrDollarEq$Outbound
5706
- | DeploymentsDollarOrDollarNe$Outbound
5707
- | DollarOr3$Outbound
5708
- | DollarOrDollarGte$Outbound
5709
- | DollarOrDollarLt$Outbound
5710
- | DollarOrDollarLte$Outbound
5711
- | DeploymentsDollarOrDollarIn$Outbound
5712
- | DeploymentsDollarOrDollarNin$Outbound
5713
- | DollarOrDollarExists$Outbound;
5525
+ | DeploymentsOrEq$Outbound
5526
+ | DeploymentsOrNe$Outbound
5527
+ | Or3$Outbound
5528
+ | OrGte$Outbound
5529
+ | OrLt$Outbound
5530
+ | OrLte$Outbound
5531
+ | DeploymentsOrIn$Outbound
5532
+ | DeploymentsOrNin$Outbound
5533
+ | OrExists$Outbound;
5714
5534
  }
5715
5535
  >;
5716
5536
  };
5717
5537
 
5718
5538
  /** @internal */
5719
- export const KnowledgeFilterDollarOr$outboundSchema: z.ZodType<
5720
- KnowledgeFilterDollarOr$Outbound,
5539
+ export const KnowledgeFilterOr$outboundSchema: z.ZodType<
5540
+ KnowledgeFilterOr$Outbound,
5721
5541
  z.ZodTypeDef,
5722
- KnowledgeFilterDollarOr
5542
+ KnowledgeFilterOr
5723
5543
  > = z.object({
5724
- dollarOr: z.array(
5544
+ or: z.array(
5725
5545
  z.record(z.union([
5726
- z.lazy(() => DeploymentsDollarOrDollarEq$outboundSchema),
5546
+ z.lazy(() => DeploymentsOrEq$outboundSchema),
5727
5547
  z.lazy(() =>
5728
- DeploymentsDollarOrDollarNe$outboundSchema
5548
+ DeploymentsOrNe$outboundSchema
5729
5549
  ),
5730
- z.lazy(() => DollarOr3$outboundSchema),
5731
- z.lazy(() => DollarOrDollarGte$outboundSchema),
5732
- z.lazy(() => DollarOrDollarLt$outboundSchema),
5733
- z.lazy(() => DollarOrDollarLte$outboundSchema),
5734
- z.lazy(() => DeploymentsDollarOrDollarIn$outboundSchema),
5735
- z.lazy(() => DeploymentsDollarOrDollarNin$outboundSchema),
5736
- z.lazy(() => DollarOrDollarExists$outboundSchema),
5550
+ z.lazy(() => Or3$outboundSchema),
5551
+ z.lazy(() => OrGte$outboundSchema),
5552
+ z.lazy(() => OrLt$outboundSchema),
5553
+ z.lazy(() => OrLte$outboundSchema),
5554
+ z.lazy(() => DeploymentsOrIn$outboundSchema),
5555
+ z.lazy(() => DeploymentsOrNin$outboundSchema),
5556
+ z.lazy(() => OrExists$outboundSchema),
5737
5557
  ])),
5738
5558
  ),
5739
- }).transform((v) => {
5740
- return remap$(v, {
5741
- dollarOr: "$or",
5742
- });
5743
5559
  });
5744
5560
 
5745
5561
  /**
5746
5562
  * @internal
5747
5563
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5748
5564
  */
5749
- export namespace KnowledgeFilterDollarOr$ {
5750
- /** @deprecated use `KnowledgeFilterDollarOr$inboundSchema` instead. */
5751
- export const inboundSchema = KnowledgeFilterDollarOr$inboundSchema;
5752
- /** @deprecated use `KnowledgeFilterDollarOr$outboundSchema` instead. */
5753
- export const outboundSchema = KnowledgeFilterDollarOr$outboundSchema;
5754
- /** @deprecated use `KnowledgeFilterDollarOr$Outbound` instead. */
5755
- export type Outbound = KnowledgeFilterDollarOr$Outbound;
5565
+ export namespace KnowledgeFilterOr$ {
5566
+ /** @deprecated use `KnowledgeFilterOr$inboundSchema` instead. */
5567
+ export const inboundSchema = KnowledgeFilterOr$inboundSchema;
5568
+ /** @deprecated use `KnowledgeFilterOr$outboundSchema` instead. */
5569
+ export const outboundSchema = KnowledgeFilterOr$outboundSchema;
5570
+ /** @deprecated use `KnowledgeFilterOr$Outbound` instead. */
5571
+ export type Outbound = KnowledgeFilterOr$Outbound;
5756
5572
  }
5757
5573
 
5758
- export function knowledgeFilterDollarOrToJSON(
5759
- knowledgeFilterDollarOr: KnowledgeFilterDollarOr,
5574
+ export function knowledgeFilterOrToJSON(
5575
+ knowledgeFilterOr: KnowledgeFilterOr,
5760
5576
  ): string {
5761
5577
  return JSON.stringify(
5762
- KnowledgeFilterDollarOr$outboundSchema.parse(knowledgeFilterDollarOr),
5578
+ KnowledgeFilterOr$outboundSchema.parse(knowledgeFilterOr),
5763
5579
  );
5764
5580
  }
5765
5581
 
5766
- export function knowledgeFilterDollarOrFromJSON(
5582
+ export function knowledgeFilterOrFromJSON(
5767
5583
  jsonString: string,
5768
- ): SafeParseResult<KnowledgeFilterDollarOr, SDKValidationError> {
5584
+ ): SafeParseResult<KnowledgeFilterOr, SDKValidationError> {
5769
5585
  return safeParse(
5770
5586
  jsonString,
5771
- (x) => KnowledgeFilterDollarOr$inboundSchema.parse(JSON.parse(x)),
5772
- `Failed to parse 'KnowledgeFilterDollarOr' from JSON`,
5587
+ (x) => KnowledgeFilterOr$inboundSchema.parse(JSON.parse(x)),
5588
+ `Failed to parse 'KnowledgeFilterOr' from JSON`,
5773
5589
  );
5774
5590
  }
5775
5591
 
5776
5592
  /** @internal */
5777
- export const DollarAndDollarExists$inboundSchema: z.ZodType<
5778
- DollarAndDollarExists,
5593
+ export const AndExists$inboundSchema: z.ZodType<
5594
+ AndExists,
5779
5595
  z.ZodTypeDef,
5780
5596
  unknown
5781
5597
  > = z.object({
5782
- $exists: z.boolean(),
5783
- }).transform((v) => {
5784
- return remap$(v, {
5785
- "$exists": "dollarExists",
5786
- });
5598
+ exists: z.boolean(),
5787
5599
  });
5788
5600
 
5789
5601
  /** @internal */
5790
- export type DollarAndDollarExists$Outbound = {
5791
- $exists: boolean;
5602
+ export type AndExists$Outbound = {
5603
+ exists: boolean;
5792
5604
  };
5793
5605
 
5794
5606
  /** @internal */
5795
- export const DollarAndDollarExists$outboundSchema: z.ZodType<
5796
- DollarAndDollarExists$Outbound,
5607
+ export const AndExists$outboundSchema: z.ZodType<
5608
+ AndExists$Outbound,
5797
5609
  z.ZodTypeDef,
5798
- DollarAndDollarExists
5610
+ AndExists
5799
5611
  > = z.object({
5800
- dollarExists: z.boolean(),
5801
- }).transform((v) => {
5802
- return remap$(v, {
5803
- dollarExists: "$exists",
5804
- });
5612
+ exists: z.boolean(),
5805
5613
  });
5806
5614
 
5807
5615
  /**
5808
5616
  * @internal
5809
5617
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5810
5618
  */
5811
- export namespace DollarAndDollarExists$ {
5812
- /** @deprecated use `DollarAndDollarExists$inboundSchema` instead. */
5813
- export const inboundSchema = DollarAndDollarExists$inboundSchema;
5814
- /** @deprecated use `DollarAndDollarExists$outboundSchema` instead. */
5815
- export const outboundSchema = DollarAndDollarExists$outboundSchema;
5816
- /** @deprecated use `DollarAndDollarExists$Outbound` instead. */
5817
- export type Outbound = DollarAndDollarExists$Outbound;
5619
+ export namespace AndExists$ {
5620
+ /** @deprecated use `AndExists$inboundSchema` instead. */
5621
+ export const inboundSchema = AndExists$inboundSchema;
5622
+ /** @deprecated use `AndExists$outboundSchema` instead. */
5623
+ export const outboundSchema = AndExists$outboundSchema;
5624
+ /** @deprecated use `AndExists$Outbound` instead. */
5625
+ export type Outbound = AndExists$Outbound;
5818
5626
  }
5819
5627
 
5820
- export function dollarAndDollarExistsToJSON(
5821
- dollarAndDollarExists: DollarAndDollarExists,
5822
- ): string {
5823
- return JSON.stringify(
5824
- DollarAndDollarExists$outboundSchema.parse(dollarAndDollarExists),
5825
- );
5628
+ export function andExistsToJSON(andExists: AndExists): string {
5629
+ return JSON.stringify(AndExists$outboundSchema.parse(andExists));
5826
5630
  }
5827
5631
 
5828
- export function dollarAndDollarExistsFromJSON(
5632
+ export function andExistsFromJSON(
5829
5633
  jsonString: string,
5830
- ): SafeParseResult<DollarAndDollarExists, SDKValidationError> {
5634
+ ): SafeParseResult<AndExists, SDKValidationError> {
5831
5635
  return safeParse(
5832
5636
  jsonString,
5833
- (x) => DollarAndDollarExists$inboundSchema.parse(JSON.parse(x)),
5834
- `Failed to parse 'DollarAndDollarExists' from JSON`,
5637
+ (x) => AndExists$inboundSchema.parse(JSON.parse(x)),
5638
+ `Failed to parse 'AndExists' from JSON`,
5835
5639
  );
5836
5640
  }
5837
5641
 
5838
5642
  /** @internal */
5839
- export const DollarAndDollarNin$inboundSchema: z.ZodType<
5840
- DollarAndDollarNin,
5841
- z.ZodTypeDef,
5842
- unknown
5843
- > = z.union([z.string(), z.number(), z.boolean()]);
5643
+ export const AndNin$inboundSchema: z.ZodType<AndNin, z.ZodTypeDef, unknown> = z
5644
+ .union([z.string(), z.number(), z.boolean()]);
5844
5645
 
5845
5646
  /** @internal */
5846
- export type DollarAndDollarNin$Outbound = string | number | boolean;
5647
+ export type AndNin$Outbound = string | number | boolean;
5847
5648
 
5848
5649
  /** @internal */
5849
- export const DollarAndDollarNin$outboundSchema: z.ZodType<
5850
- DollarAndDollarNin$Outbound,
5650
+ export const AndNin$outboundSchema: z.ZodType<
5651
+ AndNin$Outbound,
5851
5652
  z.ZodTypeDef,
5852
- DollarAndDollarNin
5653
+ AndNin
5853
5654
  > = z.union([z.string(), z.number(), z.boolean()]);
5854
5655
 
5855
5656
  /**
5856
5657
  * @internal
5857
5658
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5858
5659
  */
5859
- export namespace DollarAndDollarNin$ {
5860
- /** @deprecated use `DollarAndDollarNin$inboundSchema` instead. */
5861
- export const inboundSchema = DollarAndDollarNin$inboundSchema;
5862
- /** @deprecated use `DollarAndDollarNin$outboundSchema` instead. */
5863
- export const outboundSchema = DollarAndDollarNin$outboundSchema;
5864
- /** @deprecated use `DollarAndDollarNin$Outbound` instead. */
5865
- export type Outbound = DollarAndDollarNin$Outbound;
5660
+ export namespace AndNin$ {
5661
+ /** @deprecated use `AndNin$inboundSchema` instead. */
5662
+ export const inboundSchema = AndNin$inboundSchema;
5663
+ /** @deprecated use `AndNin$outboundSchema` instead. */
5664
+ export const outboundSchema = AndNin$outboundSchema;
5665
+ /** @deprecated use `AndNin$Outbound` instead. */
5666
+ export type Outbound = AndNin$Outbound;
5866
5667
  }
5867
5668
 
5868
- export function dollarAndDollarNinToJSON(
5869
- dollarAndDollarNin: DollarAndDollarNin,
5870
- ): string {
5871
- return JSON.stringify(
5872
- DollarAndDollarNin$outboundSchema.parse(dollarAndDollarNin),
5873
- );
5669
+ export function andNinToJSON(andNin: AndNin): string {
5670
+ return JSON.stringify(AndNin$outboundSchema.parse(andNin));
5874
5671
  }
5875
5672
 
5876
- export function dollarAndDollarNinFromJSON(
5673
+ export function andNinFromJSON(
5877
5674
  jsonString: string,
5878
- ): SafeParseResult<DollarAndDollarNin, SDKValidationError> {
5675
+ ): SafeParseResult<AndNin, SDKValidationError> {
5879
5676
  return safeParse(
5880
5677
  jsonString,
5881
- (x) => DollarAndDollarNin$inboundSchema.parse(JSON.parse(x)),
5882
- `Failed to parse 'DollarAndDollarNin' from JSON`,
5678
+ (x) => AndNin$inboundSchema.parse(JSON.parse(x)),
5679
+ `Failed to parse 'AndNin' from JSON`,
5883
5680
  );
5884
5681
  }
5885
5682
 
5886
5683
  /** @internal */
5887
- export const DeploymentsDollarAndDollarNin$inboundSchema: z.ZodType<
5888
- DeploymentsDollarAndDollarNin,
5684
+ export const DeploymentsAndNin$inboundSchema: z.ZodType<
5685
+ DeploymentsAndNin,
5889
5686
  z.ZodTypeDef,
5890
5687
  unknown
5891
5688
  > = z.object({
5892
- $nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
5893
- }).transform((v) => {
5894
- return remap$(v, {
5895
- "$nin": "dollarNin",
5896
- });
5689
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
5897
5690
  });
5898
5691
 
5899
5692
  /** @internal */
5900
- export type DeploymentsDollarAndDollarNin$Outbound = {
5901
- $nin: Array<string | number | boolean>;
5693
+ export type DeploymentsAndNin$Outbound = {
5694
+ nin: Array<string | number | boolean>;
5902
5695
  };
5903
5696
 
5904
5697
  /** @internal */
5905
- export const DeploymentsDollarAndDollarNin$outboundSchema: z.ZodType<
5906
- DeploymentsDollarAndDollarNin$Outbound,
5698
+ export const DeploymentsAndNin$outboundSchema: z.ZodType<
5699
+ DeploymentsAndNin$Outbound,
5907
5700
  z.ZodTypeDef,
5908
- DeploymentsDollarAndDollarNin
5701
+ DeploymentsAndNin
5909
5702
  > = z.object({
5910
- dollarNin: z.array(z.union([z.string(), z.number(), z.boolean()])),
5911
- }).transform((v) => {
5912
- return remap$(v, {
5913
- dollarNin: "$nin",
5914
- });
5703
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
5915
5704
  });
5916
5705
 
5917
5706
  /**
5918
5707
  * @internal
5919
5708
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5920
5709
  */
5921
- export namespace DeploymentsDollarAndDollarNin$ {
5922
- /** @deprecated use `DeploymentsDollarAndDollarNin$inboundSchema` instead. */
5923
- export const inboundSchema = DeploymentsDollarAndDollarNin$inboundSchema;
5924
- /** @deprecated use `DeploymentsDollarAndDollarNin$outboundSchema` instead. */
5925
- export const outboundSchema = DeploymentsDollarAndDollarNin$outboundSchema;
5926
- /** @deprecated use `DeploymentsDollarAndDollarNin$Outbound` instead. */
5927
- export type Outbound = DeploymentsDollarAndDollarNin$Outbound;
5710
+ export namespace DeploymentsAndNin$ {
5711
+ /** @deprecated use `DeploymentsAndNin$inboundSchema` instead. */
5712
+ export const inboundSchema = DeploymentsAndNin$inboundSchema;
5713
+ /** @deprecated use `DeploymentsAndNin$outboundSchema` instead. */
5714
+ export const outboundSchema = DeploymentsAndNin$outboundSchema;
5715
+ /** @deprecated use `DeploymentsAndNin$Outbound` instead. */
5716
+ export type Outbound = DeploymentsAndNin$Outbound;
5928
5717
  }
5929
5718
 
5930
- export function deploymentsDollarAndDollarNinToJSON(
5931
- deploymentsDollarAndDollarNin: DeploymentsDollarAndDollarNin,
5719
+ export function deploymentsAndNinToJSON(
5720
+ deploymentsAndNin: DeploymentsAndNin,
5932
5721
  ): string {
5933
5722
  return JSON.stringify(
5934
- DeploymentsDollarAndDollarNin$outboundSchema.parse(
5935
- deploymentsDollarAndDollarNin,
5936
- ),
5723
+ DeploymentsAndNin$outboundSchema.parse(deploymentsAndNin),
5937
5724
  );
5938
5725
  }
5939
5726
 
5940
- export function deploymentsDollarAndDollarNinFromJSON(
5727
+ export function deploymentsAndNinFromJSON(
5941
5728
  jsonString: string,
5942
- ): SafeParseResult<DeploymentsDollarAndDollarNin, SDKValidationError> {
5729
+ ): SafeParseResult<DeploymentsAndNin, SDKValidationError> {
5943
5730
  return safeParse(
5944
5731
  jsonString,
5945
- (x) => DeploymentsDollarAndDollarNin$inboundSchema.parse(JSON.parse(x)),
5946
- `Failed to parse 'DeploymentsDollarAndDollarNin' from JSON`,
5732
+ (x) => DeploymentsAndNin$inboundSchema.parse(JSON.parse(x)),
5733
+ `Failed to parse 'DeploymentsAndNin' from JSON`,
5947
5734
  );
5948
5735
  }
5949
5736
 
5950
5737
  /** @internal */
5951
- export const DollarAndDollarIn$inboundSchema: z.ZodType<
5952
- DollarAndDollarIn,
5953
- z.ZodTypeDef,
5954
- unknown
5955
- > = z.union([z.string(), z.number(), z.boolean()]);
5738
+ export const AndIn$inboundSchema: z.ZodType<AndIn, z.ZodTypeDef, unknown> = z
5739
+ .union([z.string(), z.number(), z.boolean()]);
5956
5740
 
5957
5741
  /** @internal */
5958
- export type DollarAndDollarIn$Outbound = string | number | boolean;
5742
+ export type AndIn$Outbound = string | number | boolean;
5959
5743
 
5960
5744
  /** @internal */
5961
- export const DollarAndDollarIn$outboundSchema: z.ZodType<
5962
- DollarAndDollarIn$Outbound,
5745
+ export const AndIn$outboundSchema: z.ZodType<
5746
+ AndIn$Outbound,
5963
5747
  z.ZodTypeDef,
5964
- DollarAndDollarIn
5748
+ AndIn
5965
5749
  > = z.union([z.string(), z.number(), z.boolean()]);
5966
5750
 
5967
5751
  /**
5968
5752
  * @internal
5969
5753
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5970
5754
  */
5971
- export namespace DollarAndDollarIn$ {
5972
- /** @deprecated use `DollarAndDollarIn$inboundSchema` instead. */
5973
- export const inboundSchema = DollarAndDollarIn$inboundSchema;
5974
- /** @deprecated use `DollarAndDollarIn$outboundSchema` instead. */
5975
- export const outboundSchema = DollarAndDollarIn$outboundSchema;
5976
- /** @deprecated use `DollarAndDollarIn$Outbound` instead. */
5977
- export type Outbound = DollarAndDollarIn$Outbound;
5755
+ export namespace AndIn$ {
5756
+ /** @deprecated use `AndIn$inboundSchema` instead. */
5757
+ export const inboundSchema = AndIn$inboundSchema;
5758
+ /** @deprecated use `AndIn$outboundSchema` instead. */
5759
+ export const outboundSchema = AndIn$outboundSchema;
5760
+ /** @deprecated use `AndIn$Outbound` instead. */
5761
+ export type Outbound = AndIn$Outbound;
5978
5762
  }
5979
5763
 
5980
- export function dollarAndDollarInToJSON(
5981
- dollarAndDollarIn: DollarAndDollarIn,
5982
- ): string {
5983
- return JSON.stringify(
5984
- DollarAndDollarIn$outboundSchema.parse(dollarAndDollarIn),
5985
- );
5764
+ export function andInToJSON(andIn: AndIn): string {
5765
+ return JSON.stringify(AndIn$outboundSchema.parse(andIn));
5986
5766
  }
5987
5767
 
5988
- export function dollarAndDollarInFromJSON(
5768
+ export function andInFromJSON(
5989
5769
  jsonString: string,
5990
- ): SafeParseResult<DollarAndDollarIn, SDKValidationError> {
5770
+ ): SafeParseResult<AndIn, SDKValidationError> {
5991
5771
  return safeParse(
5992
5772
  jsonString,
5993
- (x) => DollarAndDollarIn$inboundSchema.parse(JSON.parse(x)),
5994
- `Failed to parse 'DollarAndDollarIn' from JSON`,
5773
+ (x) => AndIn$inboundSchema.parse(JSON.parse(x)),
5774
+ `Failed to parse 'AndIn' from JSON`,
5995
5775
  );
5996
5776
  }
5997
5777
 
5998
5778
  /** @internal */
5999
- export const DeploymentsDollarAndDollarIn$inboundSchema: z.ZodType<
6000
- DeploymentsDollarAndDollarIn,
5779
+ export const DeploymentsAndIn$inboundSchema: z.ZodType<
5780
+ DeploymentsAndIn,
6001
5781
  z.ZodTypeDef,
6002
5782
  unknown
6003
5783
  > = z.object({
6004
- $in: z.array(z.union([z.string(), z.number(), z.boolean()])),
6005
- }).transform((v) => {
6006
- return remap$(v, {
6007
- "$in": "dollarIn",
6008
- });
5784
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
6009
5785
  });
6010
5786
 
6011
5787
  /** @internal */
6012
- export type DeploymentsDollarAndDollarIn$Outbound = {
6013
- $in: Array<string | number | boolean>;
5788
+ export type DeploymentsAndIn$Outbound = {
5789
+ in: Array<string | number | boolean>;
6014
5790
  };
6015
5791
 
6016
5792
  /** @internal */
6017
- export const DeploymentsDollarAndDollarIn$outboundSchema: z.ZodType<
6018
- DeploymentsDollarAndDollarIn$Outbound,
5793
+ export const DeploymentsAndIn$outboundSchema: z.ZodType<
5794
+ DeploymentsAndIn$Outbound,
6019
5795
  z.ZodTypeDef,
6020
- DeploymentsDollarAndDollarIn
5796
+ DeploymentsAndIn
6021
5797
  > = z.object({
6022
- dollarIn: z.array(z.union([z.string(), z.number(), z.boolean()])),
6023
- }).transform((v) => {
6024
- return remap$(v, {
6025
- dollarIn: "$in",
6026
- });
5798
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
6027
5799
  });
6028
5800
 
6029
5801
  /**
6030
5802
  * @internal
6031
5803
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6032
5804
  */
6033
- export namespace DeploymentsDollarAndDollarIn$ {
6034
- /** @deprecated use `DeploymentsDollarAndDollarIn$inboundSchema` instead. */
6035
- export const inboundSchema = DeploymentsDollarAndDollarIn$inboundSchema;
6036
- /** @deprecated use `DeploymentsDollarAndDollarIn$outboundSchema` instead. */
6037
- export const outboundSchema = DeploymentsDollarAndDollarIn$outboundSchema;
6038
- /** @deprecated use `DeploymentsDollarAndDollarIn$Outbound` instead. */
6039
- export type Outbound = DeploymentsDollarAndDollarIn$Outbound;
5805
+ export namespace DeploymentsAndIn$ {
5806
+ /** @deprecated use `DeploymentsAndIn$inboundSchema` instead. */
5807
+ export const inboundSchema = DeploymentsAndIn$inboundSchema;
5808
+ /** @deprecated use `DeploymentsAndIn$outboundSchema` instead. */
5809
+ export const outboundSchema = DeploymentsAndIn$outboundSchema;
5810
+ /** @deprecated use `DeploymentsAndIn$Outbound` instead. */
5811
+ export type Outbound = DeploymentsAndIn$Outbound;
6040
5812
  }
6041
5813
 
6042
- export function deploymentsDollarAndDollarInToJSON(
6043
- deploymentsDollarAndDollarIn: DeploymentsDollarAndDollarIn,
5814
+ export function deploymentsAndInToJSON(
5815
+ deploymentsAndIn: DeploymentsAndIn,
6044
5816
  ): string {
6045
5817
  return JSON.stringify(
6046
- DeploymentsDollarAndDollarIn$outboundSchema.parse(
6047
- deploymentsDollarAndDollarIn,
6048
- ),
5818
+ DeploymentsAndIn$outboundSchema.parse(deploymentsAndIn),
6049
5819
  );
6050
5820
  }
6051
5821
 
6052
- export function deploymentsDollarAndDollarInFromJSON(
5822
+ export function deploymentsAndInFromJSON(
6053
5823
  jsonString: string,
6054
- ): SafeParseResult<DeploymentsDollarAndDollarIn, SDKValidationError> {
5824
+ ): SafeParseResult<DeploymentsAndIn, SDKValidationError> {
6055
5825
  return safeParse(
6056
5826
  jsonString,
6057
- (x) => DeploymentsDollarAndDollarIn$inboundSchema.parse(JSON.parse(x)),
6058
- `Failed to parse 'DeploymentsDollarAndDollarIn' from JSON`,
5827
+ (x) => DeploymentsAndIn$inboundSchema.parse(JSON.parse(x)),
5828
+ `Failed to parse 'DeploymentsAndIn' from JSON`,
6059
5829
  );
6060
5830
  }
6061
5831
 
6062
5832
  /** @internal */
6063
- export const DollarAndDollarLte$inboundSchema: z.ZodType<
6064
- DollarAndDollarLte,
6065
- z.ZodTypeDef,
6066
- unknown
6067
- > = z.object({
6068
- $lte: z.number(),
6069
- }).transform((v) => {
6070
- return remap$(v, {
6071
- "$lte": "dollarLte",
5833
+ export const AndLte$inboundSchema: z.ZodType<AndLte, z.ZodTypeDef, unknown> = z
5834
+ .object({
5835
+ lte: z.number(),
6072
5836
  });
6073
- });
6074
5837
 
6075
5838
  /** @internal */
6076
- export type DollarAndDollarLte$Outbound = {
6077
- $lte: number;
5839
+ export type AndLte$Outbound = {
5840
+ lte: number;
6078
5841
  };
6079
5842
 
6080
5843
  /** @internal */
6081
- export const DollarAndDollarLte$outboundSchema: z.ZodType<
6082
- DollarAndDollarLte$Outbound,
5844
+ export const AndLte$outboundSchema: z.ZodType<
5845
+ AndLte$Outbound,
6083
5846
  z.ZodTypeDef,
6084
- DollarAndDollarLte
5847
+ AndLte
6085
5848
  > = z.object({
6086
- dollarLte: z.number(),
6087
- }).transform((v) => {
6088
- return remap$(v, {
6089
- dollarLte: "$lte",
6090
- });
5849
+ lte: z.number(),
6091
5850
  });
6092
5851
 
6093
5852
  /**
6094
5853
  * @internal
6095
5854
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6096
5855
  */
6097
- export namespace DollarAndDollarLte$ {
6098
- /** @deprecated use `DollarAndDollarLte$inboundSchema` instead. */
6099
- export const inboundSchema = DollarAndDollarLte$inboundSchema;
6100
- /** @deprecated use `DollarAndDollarLte$outboundSchema` instead. */
6101
- export const outboundSchema = DollarAndDollarLte$outboundSchema;
6102
- /** @deprecated use `DollarAndDollarLte$Outbound` instead. */
6103
- export type Outbound = DollarAndDollarLte$Outbound;
5856
+ export namespace AndLte$ {
5857
+ /** @deprecated use `AndLte$inboundSchema` instead. */
5858
+ export const inboundSchema = AndLte$inboundSchema;
5859
+ /** @deprecated use `AndLte$outboundSchema` instead. */
5860
+ export const outboundSchema = AndLte$outboundSchema;
5861
+ /** @deprecated use `AndLte$Outbound` instead. */
5862
+ export type Outbound = AndLte$Outbound;
6104
5863
  }
6105
5864
 
6106
- export function dollarAndDollarLteToJSON(
6107
- dollarAndDollarLte: DollarAndDollarLte,
6108
- ): string {
6109
- return JSON.stringify(
6110
- DollarAndDollarLte$outboundSchema.parse(dollarAndDollarLte),
6111
- );
5865
+ export function andLteToJSON(andLte: AndLte): string {
5866
+ return JSON.stringify(AndLte$outboundSchema.parse(andLte));
6112
5867
  }
6113
5868
 
6114
- export function dollarAndDollarLteFromJSON(
5869
+ export function andLteFromJSON(
6115
5870
  jsonString: string,
6116
- ): SafeParseResult<DollarAndDollarLte, SDKValidationError> {
5871
+ ): SafeParseResult<AndLte, SDKValidationError> {
6117
5872
  return safeParse(
6118
5873
  jsonString,
6119
- (x) => DollarAndDollarLte$inboundSchema.parse(JSON.parse(x)),
6120
- `Failed to parse 'DollarAndDollarLte' from JSON`,
5874
+ (x) => AndLte$inboundSchema.parse(JSON.parse(x)),
5875
+ `Failed to parse 'AndLte' from JSON`,
6121
5876
  );
6122
5877
  }
6123
5878
 
6124
5879
  /** @internal */
6125
- export const DollarAndDollarLt$inboundSchema: z.ZodType<
6126
- DollarAndDollarLt,
6127
- z.ZodTypeDef,
6128
- unknown
6129
- > = z.object({
6130
- $lt: z.number(),
6131
- }).transform((v) => {
6132
- return remap$(v, {
6133
- "$lt": "dollarLt",
5880
+ export const AndLt$inboundSchema: z.ZodType<AndLt, z.ZodTypeDef, unknown> = z
5881
+ .object({
5882
+ lt: z.number(),
6134
5883
  });
6135
- });
6136
5884
 
6137
5885
  /** @internal */
6138
- export type DollarAndDollarLt$Outbound = {
6139
- $lt: number;
5886
+ export type AndLt$Outbound = {
5887
+ lt: number;
6140
5888
  };
6141
5889
 
6142
5890
  /** @internal */
6143
- export const DollarAndDollarLt$outboundSchema: z.ZodType<
6144
- DollarAndDollarLt$Outbound,
5891
+ export const AndLt$outboundSchema: z.ZodType<
5892
+ AndLt$Outbound,
6145
5893
  z.ZodTypeDef,
6146
- DollarAndDollarLt
5894
+ AndLt
6147
5895
  > = z.object({
6148
- dollarLt: z.number(),
6149
- }).transform((v) => {
6150
- return remap$(v, {
6151
- dollarLt: "$lt",
6152
- });
5896
+ lt: z.number(),
6153
5897
  });
6154
5898
 
6155
5899
  /**
6156
5900
  * @internal
6157
5901
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6158
5902
  */
6159
- export namespace DollarAndDollarLt$ {
6160
- /** @deprecated use `DollarAndDollarLt$inboundSchema` instead. */
6161
- export const inboundSchema = DollarAndDollarLt$inboundSchema;
6162
- /** @deprecated use `DollarAndDollarLt$outboundSchema` instead. */
6163
- export const outboundSchema = DollarAndDollarLt$outboundSchema;
6164
- /** @deprecated use `DollarAndDollarLt$Outbound` instead. */
6165
- export type Outbound = DollarAndDollarLt$Outbound;
5903
+ export namespace AndLt$ {
5904
+ /** @deprecated use `AndLt$inboundSchema` instead. */
5905
+ export const inboundSchema = AndLt$inboundSchema;
5906
+ /** @deprecated use `AndLt$outboundSchema` instead. */
5907
+ export const outboundSchema = AndLt$outboundSchema;
5908
+ /** @deprecated use `AndLt$Outbound` instead. */
5909
+ export type Outbound = AndLt$Outbound;
6166
5910
  }
6167
5911
 
6168
- export function dollarAndDollarLtToJSON(
6169
- dollarAndDollarLt: DollarAndDollarLt,
6170
- ): string {
6171
- return JSON.stringify(
6172
- DollarAndDollarLt$outboundSchema.parse(dollarAndDollarLt),
6173
- );
5912
+ export function andLtToJSON(andLt: AndLt): string {
5913
+ return JSON.stringify(AndLt$outboundSchema.parse(andLt));
6174
5914
  }
6175
5915
 
6176
- export function dollarAndDollarLtFromJSON(
5916
+ export function andLtFromJSON(
6177
5917
  jsonString: string,
6178
- ): SafeParseResult<DollarAndDollarLt, SDKValidationError> {
5918
+ ): SafeParseResult<AndLt, SDKValidationError> {
6179
5919
  return safeParse(
6180
5920
  jsonString,
6181
- (x) => DollarAndDollarLt$inboundSchema.parse(JSON.parse(x)),
6182
- `Failed to parse 'DollarAndDollarLt' from JSON`,
5921
+ (x) => AndLt$inboundSchema.parse(JSON.parse(x)),
5922
+ `Failed to parse 'AndLt' from JSON`,
6183
5923
  );
6184
5924
  }
6185
5925
 
6186
5926
  /** @internal */
6187
- export const DollarAndDollarGte$inboundSchema: z.ZodType<
6188
- DollarAndDollarGte,
6189
- z.ZodTypeDef,
6190
- unknown
6191
- > = z.object({
6192
- $gte: z.number(),
6193
- }).transform((v) => {
6194
- return remap$(v, {
6195
- "$gte": "dollarGte",
5927
+ export const AndGte$inboundSchema: z.ZodType<AndGte, z.ZodTypeDef, unknown> = z
5928
+ .object({
5929
+ gte: z.number(),
6196
5930
  });
6197
- });
6198
5931
 
6199
5932
  /** @internal */
6200
- export type DollarAndDollarGte$Outbound = {
6201
- $gte: number;
5933
+ export type AndGte$Outbound = {
5934
+ gte: number;
6202
5935
  };
6203
5936
 
6204
5937
  /** @internal */
6205
- export const DollarAndDollarGte$outboundSchema: z.ZodType<
6206
- DollarAndDollarGte$Outbound,
5938
+ export const AndGte$outboundSchema: z.ZodType<
5939
+ AndGte$Outbound,
6207
5940
  z.ZodTypeDef,
6208
- DollarAndDollarGte
5941
+ AndGte
6209
5942
  > = z.object({
6210
- dollarGte: z.number(),
6211
- }).transform((v) => {
6212
- return remap$(v, {
6213
- dollarGte: "$gte",
6214
- });
5943
+ gte: z.number(),
6215
5944
  });
6216
5945
 
6217
5946
  /**
6218
5947
  * @internal
6219
5948
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6220
5949
  */
6221
- export namespace DollarAndDollarGte$ {
6222
- /** @deprecated use `DollarAndDollarGte$inboundSchema` instead. */
6223
- export const inboundSchema = DollarAndDollarGte$inboundSchema;
6224
- /** @deprecated use `DollarAndDollarGte$outboundSchema` instead. */
6225
- export const outboundSchema = DollarAndDollarGte$outboundSchema;
6226
- /** @deprecated use `DollarAndDollarGte$Outbound` instead. */
6227
- export type Outbound = DollarAndDollarGte$Outbound;
5950
+ export namespace AndGte$ {
5951
+ /** @deprecated use `AndGte$inboundSchema` instead. */
5952
+ export const inboundSchema = AndGte$inboundSchema;
5953
+ /** @deprecated use `AndGte$outboundSchema` instead. */
5954
+ export const outboundSchema = AndGte$outboundSchema;
5955
+ /** @deprecated use `AndGte$Outbound` instead. */
5956
+ export type Outbound = AndGte$Outbound;
6228
5957
  }
6229
5958
 
6230
- export function dollarAndDollarGteToJSON(
6231
- dollarAndDollarGte: DollarAndDollarGte,
6232
- ): string {
6233
- return JSON.stringify(
6234
- DollarAndDollarGte$outboundSchema.parse(dollarAndDollarGte),
6235
- );
5959
+ export function andGteToJSON(andGte: AndGte): string {
5960
+ return JSON.stringify(AndGte$outboundSchema.parse(andGte));
6236
5961
  }
6237
5962
 
6238
- export function dollarAndDollarGteFromJSON(
5963
+ export function andGteFromJSON(
6239
5964
  jsonString: string,
6240
- ): SafeParseResult<DollarAndDollarGte, SDKValidationError> {
5965
+ ): SafeParseResult<AndGte, SDKValidationError> {
6241
5966
  return safeParse(
6242
5967
  jsonString,
6243
- (x) => DollarAndDollarGte$inboundSchema.parse(JSON.parse(x)),
6244
- `Failed to parse 'DollarAndDollarGte' from JSON`,
5968
+ (x) => AndGte$inboundSchema.parse(JSON.parse(x)),
5969
+ `Failed to parse 'AndGte' from JSON`,
6245
5970
  );
6246
5971
  }
6247
5972
 
6248
5973
  /** @internal */
6249
- export const DollarAnd3$inboundSchema: z.ZodType<
6250
- DollarAnd3,
6251
- z.ZodTypeDef,
6252
- unknown
6253
- > = z.object({
6254
- $gt: z.number(),
6255
- }).transform((v) => {
6256
- return remap$(v, {
6257
- "$gt": "dollarGt",
5974
+ export const And3$inboundSchema: z.ZodType<And3, z.ZodTypeDef, unknown> = z
5975
+ .object({
5976
+ gt: z.number(),
6258
5977
  });
6259
- });
6260
5978
 
6261
5979
  /** @internal */
6262
- export type DollarAnd3$Outbound = {
6263
- $gt: number;
5980
+ export type And3$Outbound = {
5981
+ gt: number;
6264
5982
  };
6265
5983
 
6266
5984
  /** @internal */
6267
- export const DollarAnd3$outboundSchema: z.ZodType<
6268
- DollarAnd3$Outbound,
6269
- z.ZodTypeDef,
6270
- DollarAnd3
6271
- > = z.object({
6272
- dollarGt: z.number(),
6273
- }).transform((v) => {
6274
- return remap$(v, {
6275
- dollarGt: "$gt",
5985
+ export const And3$outboundSchema: z.ZodType<And3$Outbound, z.ZodTypeDef, And3> =
5986
+ z.object({
5987
+ gt: z.number(),
6276
5988
  });
6277
- });
6278
5989
 
6279
5990
  /**
6280
5991
  * @internal
6281
5992
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6282
5993
  */
6283
- export namespace DollarAnd3$ {
6284
- /** @deprecated use `DollarAnd3$inboundSchema` instead. */
6285
- export const inboundSchema = DollarAnd3$inboundSchema;
6286
- /** @deprecated use `DollarAnd3$outboundSchema` instead. */
6287
- export const outboundSchema = DollarAnd3$outboundSchema;
6288
- /** @deprecated use `DollarAnd3$Outbound` instead. */
6289
- export type Outbound = DollarAnd3$Outbound;
5994
+ export namespace And3$ {
5995
+ /** @deprecated use `And3$inboundSchema` instead. */
5996
+ export const inboundSchema = And3$inboundSchema;
5997
+ /** @deprecated use `And3$outboundSchema` instead. */
5998
+ export const outboundSchema = And3$outboundSchema;
5999
+ /** @deprecated use `And3$Outbound` instead. */
6000
+ export type Outbound = And3$Outbound;
6290
6001
  }
6291
6002
 
6292
- export function dollarAnd3ToJSON(dollarAnd3: DollarAnd3): string {
6293
- return JSON.stringify(DollarAnd3$outboundSchema.parse(dollarAnd3));
6003
+ export function and3ToJSON(and3: And3): string {
6004
+ return JSON.stringify(And3$outboundSchema.parse(and3));
6294
6005
  }
6295
6006
 
6296
- export function dollarAnd3FromJSON(
6007
+ export function and3FromJSON(
6297
6008
  jsonString: string,
6298
- ): SafeParseResult<DollarAnd3, SDKValidationError> {
6009
+ ): SafeParseResult<And3, SDKValidationError> {
6299
6010
  return safeParse(
6300
6011
  jsonString,
6301
- (x) => DollarAnd3$inboundSchema.parse(JSON.parse(x)),
6302
- `Failed to parse 'DollarAnd3' from JSON`,
6012
+ (x) => And3$inboundSchema.parse(JSON.parse(x)),
6013
+ `Failed to parse 'And3' from JSON`,
6303
6014
  );
6304
6015
  }
6305
6016
 
6306
6017
  /** @internal */
6307
- export const DollarAndDollarNe$inboundSchema: z.ZodType<
6308
- DollarAndDollarNe,
6309
- z.ZodTypeDef,
6310
- unknown
6311
- > = z.union([z.string(), z.number(), z.boolean()]);
6018
+ export const AndNe$inboundSchema: z.ZodType<AndNe, z.ZodTypeDef, unknown> = z
6019
+ .union([z.string(), z.number(), z.boolean()]);
6312
6020
 
6313
6021
  /** @internal */
6314
- export type DollarAndDollarNe$Outbound = string | number | boolean;
6022
+ export type AndNe$Outbound = string | number | boolean;
6315
6023
 
6316
6024
  /** @internal */
6317
- export const DollarAndDollarNe$outboundSchema: z.ZodType<
6318
- DollarAndDollarNe$Outbound,
6025
+ export const AndNe$outboundSchema: z.ZodType<
6026
+ AndNe$Outbound,
6319
6027
  z.ZodTypeDef,
6320
- DollarAndDollarNe
6028
+ AndNe
6321
6029
  > = z.union([z.string(), z.number(), z.boolean()]);
6322
6030
 
6323
6031
  /**
6324
6032
  * @internal
6325
6033
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6326
6034
  */
6327
- export namespace DollarAndDollarNe$ {
6328
- /** @deprecated use `DollarAndDollarNe$inboundSchema` instead. */
6329
- export const inboundSchema = DollarAndDollarNe$inboundSchema;
6330
- /** @deprecated use `DollarAndDollarNe$outboundSchema` instead. */
6331
- export const outboundSchema = DollarAndDollarNe$outboundSchema;
6332
- /** @deprecated use `DollarAndDollarNe$Outbound` instead. */
6333
- export type Outbound = DollarAndDollarNe$Outbound;
6035
+ export namespace AndNe$ {
6036
+ /** @deprecated use `AndNe$inboundSchema` instead. */
6037
+ export const inboundSchema = AndNe$inboundSchema;
6038
+ /** @deprecated use `AndNe$outboundSchema` instead. */
6039
+ export const outboundSchema = AndNe$outboundSchema;
6040
+ /** @deprecated use `AndNe$Outbound` instead. */
6041
+ export type Outbound = AndNe$Outbound;
6334
6042
  }
6335
6043
 
6336
- export function dollarAndDollarNeToJSON(
6337
- dollarAndDollarNe: DollarAndDollarNe,
6338
- ): string {
6339
- return JSON.stringify(
6340
- DollarAndDollarNe$outboundSchema.parse(dollarAndDollarNe),
6341
- );
6044
+ export function andNeToJSON(andNe: AndNe): string {
6045
+ return JSON.stringify(AndNe$outboundSchema.parse(andNe));
6342
6046
  }
6343
6047
 
6344
- export function dollarAndDollarNeFromJSON(
6048
+ export function andNeFromJSON(
6345
6049
  jsonString: string,
6346
- ): SafeParseResult<DollarAndDollarNe, SDKValidationError> {
6050
+ ): SafeParseResult<AndNe, SDKValidationError> {
6347
6051
  return safeParse(
6348
6052
  jsonString,
6349
- (x) => DollarAndDollarNe$inboundSchema.parse(JSON.parse(x)),
6350
- `Failed to parse 'DollarAndDollarNe' from JSON`,
6053
+ (x) => AndNe$inboundSchema.parse(JSON.parse(x)),
6054
+ `Failed to parse 'AndNe' from JSON`,
6351
6055
  );
6352
6056
  }
6353
6057
 
6354
6058
  /** @internal */
6355
- export const DeploymentsDollarAndDollarNe$inboundSchema: z.ZodType<
6356
- DeploymentsDollarAndDollarNe,
6059
+ export const DeploymentsAndNe$inboundSchema: z.ZodType<
6060
+ DeploymentsAndNe,
6357
6061
  z.ZodTypeDef,
6358
6062
  unknown
6359
6063
  > = z.object({
6360
- $ne: z.union([z.string(), z.number(), z.boolean()]),
6361
- }).transform((v) => {
6362
- return remap$(v, {
6363
- "$ne": "dollarNe",
6364
- });
6064
+ ne: z.union([z.string(), z.number(), z.boolean()]),
6365
6065
  });
6366
6066
 
6367
6067
  /** @internal */
6368
- export type DeploymentsDollarAndDollarNe$Outbound = {
6369
- $ne: string | number | boolean;
6068
+ export type DeploymentsAndNe$Outbound = {
6069
+ ne: string | number | boolean;
6370
6070
  };
6371
6071
 
6372
6072
  /** @internal */
6373
- export const DeploymentsDollarAndDollarNe$outboundSchema: z.ZodType<
6374
- DeploymentsDollarAndDollarNe$Outbound,
6073
+ export const DeploymentsAndNe$outboundSchema: z.ZodType<
6074
+ DeploymentsAndNe$Outbound,
6375
6075
  z.ZodTypeDef,
6376
- DeploymentsDollarAndDollarNe
6076
+ DeploymentsAndNe
6377
6077
  > = z.object({
6378
- dollarNe: z.union([z.string(), z.number(), z.boolean()]),
6379
- }).transform((v) => {
6380
- return remap$(v, {
6381
- dollarNe: "$ne",
6382
- });
6078
+ ne: z.union([z.string(), z.number(), z.boolean()]),
6383
6079
  });
6384
6080
 
6385
6081
  /**
6386
6082
  * @internal
6387
6083
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6388
6084
  */
6389
- export namespace DeploymentsDollarAndDollarNe$ {
6390
- /** @deprecated use `DeploymentsDollarAndDollarNe$inboundSchema` instead. */
6391
- export const inboundSchema = DeploymentsDollarAndDollarNe$inboundSchema;
6392
- /** @deprecated use `DeploymentsDollarAndDollarNe$outboundSchema` instead. */
6393
- export const outboundSchema = DeploymentsDollarAndDollarNe$outboundSchema;
6394
- /** @deprecated use `DeploymentsDollarAndDollarNe$Outbound` instead. */
6395
- export type Outbound = DeploymentsDollarAndDollarNe$Outbound;
6085
+ export namespace DeploymentsAndNe$ {
6086
+ /** @deprecated use `DeploymentsAndNe$inboundSchema` instead. */
6087
+ export const inboundSchema = DeploymentsAndNe$inboundSchema;
6088
+ /** @deprecated use `DeploymentsAndNe$outboundSchema` instead. */
6089
+ export const outboundSchema = DeploymentsAndNe$outboundSchema;
6090
+ /** @deprecated use `DeploymentsAndNe$Outbound` instead. */
6091
+ export type Outbound = DeploymentsAndNe$Outbound;
6396
6092
  }
6397
6093
 
6398
- export function deploymentsDollarAndDollarNeToJSON(
6399
- deploymentsDollarAndDollarNe: DeploymentsDollarAndDollarNe,
6094
+ export function deploymentsAndNeToJSON(
6095
+ deploymentsAndNe: DeploymentsAndNe,
6400
6096
  ): string {
6401
6097
  return JSON.stringify(
6402
- DeploymentsDollarAndDollarNe$outboundSchema.parse(
6403
- deploymentsDollarAndDollarNe,
6404
- ),
6098
+ DeploymentsAndNe$outboundSchema.parse(deploymentsAndNe),
6405
6099
  );
6406
6100
  }
6407
6101
 
6408
- export function deploymentsDollarAndDollarNeFromJSON(
6102
+ export function deploymentsAndNeFromJSON(
6409
6103
  jsonString: string,
6410
- ): SafeParseResult<DeploymentsDollarAndDollarNe, SDKValidationError> {
6104
+ ): SafeParseResult<DeploymentsAndNe, SDKValidationError> {
6411
6105
  return safeParse(
6412
6106
  jsonString,
6413
- (x) => DeploymentsDollarAndDollarNe$inboundSchema.parse(JSON.parse(x)),
6414
- `Failed to parse 'DeploymentsDollarAndDollarNe' from JSON`,
6107
+ (x) => DeploymentsAndNe$inboundSchema.parse(JSON.parse(x)),
6108
+ `Failed to parse 'DeploymentsAndNe' from JSON`,
6415
6109
  );
6416
6110
  }
6417
6111
 
6418
6112
  /** @internal */
6419
- export const DollarAndDollarEq$inboundSchema: z.ZodType<
6420
- DollarAndDollarEq,
6421
- z.ZodTypeDef,
6422
- unknown
6423
- > = z.union([z.string(), z.number(), z.boolean()]);
6113
+ export const AndEq$inboundSchema: z.ZodType<AndEq, z.ZodTypeDef, unknown> = z
6114
+ .union([z.string(), z.number(), z.boolean()]);
6424
6115
 
6425
6116
  /** @internal */
6426
- export type DollarAndDollarEq$Outbound = string | number | boolean;
6117
+ export type AndEq$Outbound = string | number | boolean;
6427
6118
 
6428
6119
  /** @internal */
6429
- export const DollarAndDollarEq$outboundSchema: z.ZodType<
6430
- DollarAndDollarEq$Outbound,
6120
+ export const AndEq$outboundSchema: z.ZodType<
6121
+ AndEq$Outbound,
6431
6122
  z.ZodTypeDef,
6432
- DollarAndDollarEq
6123
+ AndEq
6433
6124
  > = z.union([z.string(), z.number(), z.boolean()]);
6434
6125
 
6435
6126
  /**
6436
6127
  * @internal
6437
6128
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6438
6129
  */
6439
- export namespace DollarAndDollarEq$ {
6440
- /** @deprecated use `DollarAndDollarEq$inboundSchema` instead. */
6441
- export const inboundSchema = DollarAndDollarEq$inboundSchema;
6442
- /** @deprecated use `DollarAndDollarEq$outboundSchema` instead. */
6443
- export const outboundSchema = DollarAndDollarEq$outboundSchema;
6444
- /** @deprecated use `DollarAndDollarEq$Outbound` instead. */
6445
- export type Outbound = DollarAndDollarEq$Outbound;
6130
+ export namespace AndEq$ {
6131
+ /** @deprecated use `AndEq$inboundSchema` instead. */
6132
+ export const inboundSchema = AndEq$inboundSchema;
6133
+ /** @deprecated use `AndEq$outboundSchema` instead. */
6134
+ export const outboundSchema = AndEq$outboundSchema;
6135
+ /** @deprecated use `AndEq$Outbound` instead. */
6136
+ export type Outbound = AndEq$Outbound;
6446
6137
  }
6447
6138
 
6448
- export function dollarAndDollarEqToJSON(
6449
- dollarAndDollarEq: DollarAndDollarEq,
6450
- ): string {
6451
- return JSON.stringify(
6452
- DollarAndDollarEq$outboundSchema.parse(dollarAndDollarEq),
6453
- );
6139
+ export function andEqToJSON(andEq: AndEq): string {
6140
+ return JSON.stringify(AndEq$outboundSchema.parse(andEq));
6454
6141
  }
6455
6142
 
6456
- export function dollarAndDollarEqFromJSON(
6143
+ export function andEqFromJSON(
6457
6144
  jsonString: string,
6458
- ): SafeParseResult<DollarAndDollarEq, SDKValidationError> {
6145
+ ): SafeParseResult<AndEq, SDKValidationError> {
6459
6146
  return safeParse(
6460
6147
  jsonString,
6461
- (x) => DollarAndDollarEq$inboundSchema.parse(JSON.parse(x)),
6462
- `Failed to parse 'DollarAndDollarEq' from JSON`,
6148
+ (x) => AndEq$inboundSchema.parse(JSON.parse(x)),
6149
+ `Failed to parse 'AndEq' from JSON`,
6463
6150
  );
6464
6151
  }
6465
6152
 
6466
6153
  /** @internal */
6467
- export const DeploymentsDollarAndDollarEq$inboundSchema: z.ZodType<
6468
- DeploymentsDollarAndDollarEq,
6154
+ export const DeploymentsAndEq$inboundSchema: z.ZodType<
6155
+ DeploymentsAndEq,
6469
6156
  z.ZodTypeDef,
6470
6157
  unknown
6471
6158
  > = z.object({
6472
- $eq: z.union([z.string(), z.number(), z.boolean()]),
6473
- }).transform((v) => {
6474
- return remap$(v, {
6475
- "$eq": "dollarEq",
6476
- });
6159
+ eq: z.union([z.string(), z.number(), z.boolean()]),
6477
6160
  });
6478
6161
 
6479
6162
  /** @internal */
6480
- export type DeploymentsDollarAndDollarEq$Outbound = {
6481
- $eq: string | number | boolean;
6163
+ export type DeploymentsAndEq$Outbound = {
6164
+ eq: string | number | boolean;
6482
6165
  };
6483
6166
 
6484
6167
  /** @internal */
6485
- export const DeploymentsDollarAndDollarEq$outboundSchema: z.ZodType<
6486
- DeploymentsDollarAndDollarEq$Outbound,
6168
+ export const DeploymentsAndEq$outboundSchema: z.ZodType<
6169
+ DeploymentsAndEq$Outbound,
6487
6170
  z.ZodTypeDef,
6488
- DeploymentsDollarAndDollarEq
6171
+ DeploymentsAndEq
6489
6172
  > = z.object({
6490
- dollarEq: z.union([z.string(), z.number(), z.boolean()]),
6491
- }).transform((v) => {
6492
- return remap$(v, {
6493
- dollarEq: "$eq",
6494
- });
6173
+ eq: z.union([z.string(), z.number(), z.boolean()]),
6495
6174
  });
6496
6175
 
6497
6176
  /**
6498
6177
  * @internal
6499
6178
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6500
6179
  */
6501
- export namespace DeploymentsDollarAndDollarEq$ {
6502
- /** @deprecated use `DeploymentsDollarAndDollarEq$inboundSchema` instead. */
6503
- export const inboundSchema = DeploymentsDollarAndDollarEq$inboundSchema;
6504
- /** @deprecated use `DeploymentsDollarAndDollarEq$outboundSchema` instead. */
6505
- export const outboundSchema = DeploymentsDollarAndDollarEq$outboundSchema;
6506
- /** @deprecated use `DeploymentsDollarAndDollarEq$Outbound` instead. */
6507
- export type Outbound = DeploymentsDollarAndDollarEq$Outbound;
6180
+ export namespace DeploymentsAndEq$ {
6181
+ /** @deprecated use `DeploymentsAndEq$inboundSchema` instead. */
6182
+ export const inboundSchema = DeploymentsAndEq$inboundSchema;
6183
+ /** @deprecated use `DeploymentsAndEq$outboundSchema` instead. */
6184
+ export const outboundSchema = DeploymentsAndEq$outboundSchema;
6185
+ /** @deprecated use `DeploymentsAndEq$Outbound` instead. */
6186
+ export type Outbound = DeploymentsAndEq$Outbound;
6508
6187
  }
6509
6188
 
6510
- export function deploymentsDollarAndDollarEqToJSON(
6511
- deploymentsDollarAndDollarEq: DeploymentsDollarAndDollarEq,
6189
+ export function deploymentsAndEqToJSON(
6190
+ deploymentsAndEq: DeploymentsAndEq,
6512
6191
  ): string {
6513
6192
  return JSON.stringify(
6514
- DeploymentsDollarAndDollarEq$outboundSchema.parse(
6515
- deploymentsDollarAndDollarEq,
6516
- ),
6193
+ DeploymentsAndEq$outboundSchema.parse(deploymentsAndEq),
6517
6194
  );
6518
6195
  }
6519
6196
 
6520
- export function deploymentsDollarAndDollarEqFromJSON(
6197
+ export function deploymentsAndEqFromJSON(
6521
6198
  jsonString: string,
6522
- ): SafeParseResult<DeploymentsDollarAndDollarEq, SDKValidationError> {
6199
+ ): SafeParseResult<DeploymentsAndEq, SDKValidationError> {
6523
6200
  return safeParse(
6524
6201
  jsonString,
6525
- (x) => DeploymentsDollarAndDollarEq$inboundSchema.parse(JSON.parse(x)),
6526
- `Failed to parse 'DeploymentsDollarAndDollarEq' from JSON`,
6202
+ (x) => DeploymentsAndEq$inboundSchema.parse(JSON.parse(x)),
6203
+ `Failed to parse 'DeploymentsAndEq' from JSON`,
6527
6204
  );
6528
6205
  }
6529
6206
 
6530
6207
  /** @internal */
6531
- export const DollarAnd$inboundSchema: z.ZodType<
6532
- DollarAnd,
6533
- z.ZodTypeDef,
6534
- unknown
6535
- > = z.union([
6536
- z.lazy(() => DeploymentsDollarAndDollarEq$inboundSchema),
6537
- z.lazy(() => DeploymentsDollarAndDollarNe$inboundSchema),
6538
- z.lazy(() => DollarAnd3$inboundSchema),
6539
- z.lazy(() => DollarAndDollarGte$inboundSchema),
6540
- z.lazy(() => DollarAndDollarLt$inboundSchema),
6541
- z.lazy(() => DollarAndDollarLte$inboundSchema),
6542
- z.lazy(() => DeploymentsDollarAndDollarIn$inboundSchema),
6543
- z.lazy(() => DeploymentsDollarAndDollarNin$inboundSchema),
6544
- z.lazy(() => DollarAndDollarExists$inboundSchema),
6545
- ]);
6208
+ export const And$inboundSchema: z.ZodType<And, z.ZodTypeDef, unknown> = z.union(
6209
+ [
6210
+ z.lazy(() => DeploymentsAndEq$inboundSchema),
6211
+ z.lazy(() => DeploymentsAndNe$inboundSchema),
6212
+ z.lazy(() => And3$inboundSchema),
6213
+ z.lazy(() => AndGte$inboundSchema),
6214
+ z.lazy(() => AndLt$inboundSchema),
6215
+ z.lazy(() => AndLte$inboundSchema),
6216
+ z.lazy(() => DeploymentsAndIn$inboundSchema),
6217
+ z.lazy(() => DeploymentsAndNin$inboundSchema),
6218
+ z.lazy(() => AndExists$inboundSchema),
6219
+ ],
6220
+ );
6546
6221
 
6547
6222
  /** @internal */
6548
- export type DollarAnd$Outbound =
6549
- | DeploymentsDollarAndDollarEq$Outbound
6550
- | DeploymentsDollarAndDollarNe$Outbound
6551
- | DollarAnd3$Outbound
6552
- | DollarAndDollarGte$Outbound
6553
- | DollarAndDollarLt$Outbound
6554
- | DollarAndDollarLte$Outbound
6555
- | DeploymentsDollarAndDollarIn$Outbound
6556
- | DeploymentsDollarAndDollarNin$Outbound
6557
- | DollarAndDollarExists$Outbound;
6223
+ export type And$Outbound =
6224
+ | DeploymentsAndEq$Outbound
6225
+ | DeploymentsAndNe$Outbound
6226
+ | And3$Outbound
6227
+ | AndGte$Outbound
6228
+ | AndLt$Outbound
6229
+ | AndLte$Outbound
6230
+ | DeploymentsAndIn$Outbound
6231
+ | DeploymentsAndNin$Outbound
6232
+ | AndExists$Outbound;
6558
6233
 
6559
6234
  /** @internal */
6560
- export const DollarAnd$outboundSchema: z.ZodType<
6561
- DollarAnd$Outbound,
6562
- z.ZodTypeDef,
6563
- DollarAnd
6564
- > = z.union([
6565
- z.lazy(() => DeploymentsDollarAndDollarEq$outboundSchema),
6566
- z.lazy(() => DeploymentsDollarAndDollarNe$outboundSchema),
6567
- z.lazy(() => DollarAnd3$outboundSchema),
6568
- z.lazy(() => DollarAndDollarGte$outboundSchema),
6569
- z.lazy(() => DollarAndDollarLt$outboundSchema),
6570
- z.lazy(() => DollarAndDollarLte$outboundSchema),
6571
- z.lazy(() => DeploymentsDollarAndDollarIn$outboundSchema),
6572
- z.lazy(() => DeploymentsDollarAndDollarNin$outboundSchema),
6573
- z.lazy(() => DollarAndDollarExists$outboundSchema),
6574
- ]);
6235
+ export const And$outboundSchema: z.ZodType<And$Outbound, z.ZodTypeDef, And> = z
6236
+ .union([
6237
+ z.lazy(() => DeploymentsAndEq$outboundSchema),
6238
+ z.lazy(() => DeploymentsAndNe$outboundSchema),
6239
+ z.lazy(() => And3$outboundSchema),
6240
+ z.lazy(() => AndGte$outboundSchema),
6241
+ z.lazy(() => AndLt$outboundSchema),
6242
+ z.lazy(() => AndLte$outboundSchema),
6243
+ z.lazy(() => DeploymentsAndIn$outboundSchema),
6244
+ z.lazy(() => DeploymentsAndNin$outboundSchema),
6245
+ z.lazy(() => AndExists$outboundSchema),
6246
+ ]);
6575
6247
 
6576
6248
  /**
6577
6249
  * @internal
6578
6250
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6579
6251
  */
6580
- export namespace DollarAnd$ {
6581
- /** @deprecated use `DollarAnd$inboundSchema` instead. */
6582
- export const inboundSchema = DollarAnd$inboundSchema;
6583
- /** @deprecated use `DollarAnd$outboundSchema` instead. */
6584
- export const outboundSchema = DollarAnd$outboundSchema;
6585
- /** @deprecated use `DollarAnd$Outbound` instead. */
6586
- export type Outbound = DollarAnd$Outbound;
6252
+ export namespace And$ {
6253
+ /** @deprecated use `And$inboundSchema` instead. */
6254
+ export const inboundSchema = And$inboundSchema;
6255
+ /** @deprecated use `And$outboundSchema` instead. */
6256
+ export const outboundSchema = And$outboundSchema;
6257
+ /** @deprecated use `And$Outbound` instead. */
6258
+ export type Outbound = And$Outbound;
6587
6259
  }
6588
6260
 
6589
- export function dollarAndToJSON(dollarAnd: DollarAnd): string {
6590
- return JSON.stringify(DollarAnd$outboundSchema.parse(dollarAnd));
6261
+ export function andToJSON(and: And): string {
6262
+ return JSON.stringify(And$outboundSchema.parse(and));
6591
6263
  }
6592
6264
 
6593
- export function dollarAndFromJSON(
6265
+ export function andFromJSON(
6594
6266
  jsonString: string,
6595
- ): SafeParseResult<DollarAnd, SDKValidationError> {
6267
+ ): SafeParseResult<And, SDKValidationError> {
6596
6268
  return safeParse(
6597
6269
  jsonString,
6598
- (x) => DollarAnd$inboundSchema.parse(JSON.parse(x)),
6599
- `Failed to parse 'DollarAnd' from JSON`,
6270
+ (x) => And$inboundSchema.parse(JSON.parse(x)),
6271
+ `Failed to parse 'And' from JSON`,
6600
6272
  );
6601
6273
  }
6602
6274
 
6603
6275
  /** @internal */
6604
- export const KnowledgeFilterDollarAnd$inboundSchema: z.ZodType<
6605
- KnowledgeFilterDollarAnd,
6276
+ export const KnowledgeFilterAnd$inboundSchema: z.ZodType<
6277
+ KnowledgeFilterAnd,
6606
6278
  z.ZodTypeDef,
6607
6279
  unknown
6608
6280
  > = z.object({
6609
- $and: z.array(
6281
+ and: z.array(
6610
6282
  z.record(z.union([
6611
- z.lazy(() => DeploymentsDollarAndDollarEq$inboundSchema),
6283
+ z.lazy(() => DeploymentsAndEq$inboundSchema),
6612
6284
  z.lazy(() =>
6613
- DeploymentsDollarAndDollarNe$inboundSchema
6285
+ DeploymentsAndNe$inboundSchema
6614
6286
  ),
6615
- z.lazy(() => DollarAnd3$inboundSchema),
6616
- z.lazy(() => DollarAndDollarGte$inboundSchema),
6617
- z.lazy(() => DollarAndDollarLt$inboundSchema),
6618
- z.lazy(() => DollarAndDollarLte$inboundSchema),
6619
- z.lazy(() => DeploymentsDollarAndDollarIn$inboundSchema),
6620
- z.lazy(() => DeploymentsDollarAndDollarNin$inboundSchema),
6621
- z.lazy(() => DollarAndDollarExists$inboundSchema),
6287
+ z.lazy(() => And3$inboundSchema),
6288
+ z.lazy(() => AndGte$inboundSchema),
6289
+ z.lazy(() => AndLt$inboundSchema),
6290
+ z.lazy(() => AndLte$inboundSchema),
6291
+ z.lazy(() => DeploymentsAndIn$inboundSchema),
6292
+ z.lazy(() => DeploymentsAndNin$inboundSchema),
6293
+ z.lazy(() => AndExists$inboundSchema),
6622
6294
  ])),
6623
6295
  ),
6624
- }).transform((v) => {
6625
- return remap$(v, {
6626
- "$and": "dollarAnd",
6627
- });
6628
6296
  });
6629
6297
 
6630
6298
  /** @internal */
6631
- export type KnowledgeFilterDollarAnd$Outbound = {
6632
- $and: Array<
6299
+ export type KnowledgeFilterAnd$Outbound = {
6300
+ and: Array<
6633
6301
  {
6634
6302
  [k: string]:
6635
- | DeploymentsDollarAndDollarEq$Outbound
6636
- | DeploymentsDollarAndDollarNe$Outbound
6637
- | DollarAnd3$Outbound
6638
- | DollarAndDollarGte$Outbound
6639
- | DollarAndDollarLt$Outbound
6640
- | DollarAndDollarLte$Outbound
6641
- | DeploymentsDollarAndDollarIn$Outbound
6642
- | DeploymentsDollarAndDollarNin$Outbound
6643
- | DollarAndDollarExists$Outbound;
6303
+ | DeploymentsAndEq$Outbound
6304
+ | DeploymentsAndNe$Outbound
6305
+ | And3$Outbound
6306
+ | AndGte$Outbound
6307
+ | AndLt$Outbound
6308
+ | AndLte$Outbound
6309
+ | DeploymentsAndIn$Outbound
6310
+ | DeploymentsAndNin$Outbound
6311
+ | AndExists$Outbound;
6644
6312
  }
6645
6313
  >;
6646
6314
  };
6647
6315
 
6648
6316
  /** @internal */
6649
- export const KnowledgeFilterDollarAnd$outboundSchema: z.ZodType<
6650
- KnowledgeFilterDollarAnd$Outbound,
6317
+ export const KnowledgeFilterAnd$outboundSchema: z.ZodType<
6318
+ KnowledgeFilterAnd$Outbound,
6651
6319
  z.ZodTypeDef,
6652
- KnowledgeFilterDollarAnd
6320
+ KnowledgeFilterAnd
6653
6321
  > = z.object({
6654
- dollarAnd: z.array(
6322
+ and: z.array(
6655
6323
  z.record(z.union([
6656
- z.lazy(() => DeploymentsDollarAndDollarEq$outboundSchema),
6324
+ z.lazy(() => DeploymentsAndEq$outboundSchema),
6657
6325
  z.lazy(() =>
6658
- DeploymentsDollarAndDollarNe$outboundSchema
6326
+ DeploymentsAndNe$outboundSchema
6659
6327
  ),
6660
- z.lazy(() => DollarAnd3$outboundSchema),
6661
- z.lazy(() => DollarAndDollarGte$outboundSchema),
6662
- z.lazy(() => DollarAndDollarLt$outboundSchema),
6663
- z.lazy(() => DollarAndDollarLte$outboundSchema),
6664
- z.lazy(() => DeploymentsDollarAndDollarIn$outboundSchema),
6665
- z.lazy(() => DeploymentsDollarAndDollarNin$outboundSchema),
6666
- z.lazy(() => DollarAndDollarExists$outboundSchema),
6328
+ z.lazy(() => And3$outboundSchema),
6329
+ z.lazy(() => AndGte$outboundSchema),
6330
+ z.lazy(() => AndLt$outboundSchema),
6331
+ z.lazy(() => AndLte$outboundSchema),
6332
+ z.lazy(() => DeploymentsAndIn$outboundSchema),
6333
+ z.lazy(() => DeploymentsAndNin$outboundSchema),
6334
+ z.lazy(() => AndExists$outboundSchema),
6667
6335
  ])),
6668
6336
  ),
6669
- }).transform((v) => {
6670
- return remap$(v, {
6671
- dollarAnd: "$and",
6672
- });
6673
6337
  });
6674
6338
 
6675
6339
  /**
6676
6340
  * @internal
6677
6341
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6678
6342
  */
6679
- export namespace KnowledgeFilterDollarAnd$ {
6680
- /** @deprecated use `KnowledgeFilterDollarAnd$inboundSchema` instead. */
6681
- export const inboundSchema = KnowledgeFilterDollarAnd$inboundSchema;
6682
- /** @deprecated use `KnowledgeFilterDollarAnd$outboundSchema` instead. */
6683
- export const outboundSchema = KnowledgeFilterDollarAnd$outboundSchema;
6684
- /** @deprecated use `KnowledgeFilterDollarAnd$Outbound` instead. */
6685
- export type Outbound = KnowledgeFilterDollarAnd$Outbound;
6343
+ export namespace KnowledgeFilterAnd$ {
6344
+ /** @deprecated use `KnowledgeFilterAnd$inboundSchema` instead. */
6345
+ export const inboundSchema = KnowledgeFilterAnd$inboundSchema;
6346
+ /** @deprecated use `KnowledgeFilterAnd$outboundSchema` instead. */
6347
+ export const outboundSchema = KnowledgeFilterAnd$outboundSchema;
6348
+ /** @deprecated use `KnowledgeFilterAnd$Outbound` instead. */
6349
+ export type Outbound = KnowledgeFilterAnd$Outbound;
6686
6350
  }
6687
6351
 
6688
- export function knowledgeFilterDollarAndToJSON(
6689
- knowledgeFilterDollarAnd: KnowledgeFilterDollarAnd,
6352
+ export function knowledgeFilterAndToJSON(
6353
+ knowledgeFilterAnd: KnowledgeFilterAnd,
6690
6354
  ): string {
6691
6355
  return JSON.stringify(
6692
- KnowledgeFilterDollarAnd$outboundSchema.parse(knowledgeFilterDollarAnd),
6356
+ KnowledgeFilterAnd$outboundSchema.parse(knowledgeFilterAnd),
6693
6357
  );
6694
6358
  }
6695
6359
 
6696
- export function knowledgeFilterDollarAndFromJSON(
6360
+ export function knowledgeFilterAndFromJSON(
6697
6361
  jsonString: string,
6698
- ): SafeParseResult<KnowledgeFilterDollarAnd, SDKValidationError> {
6362
+ ): SafeParseResult<KnowledgeFilterAnd, SDKValidationError> {
6699
6363
  return safeParse(
6700
6364
  jsonString,
6701
- (x) => KnowledgeFilterDollarAnd$inboundSchema.parse(JSON.parse(x)),
6702
- `Failed to parse 'KnowledgeFilterDollarAnd' from JSON`,
6365
+ (x) => KnowledgeFilterAnd$inboundSchema.parse(JSON.parse(x)),
6366
+ `Failed to parse 'KnowledgeFilterAnd' from JSON`,
6703
6367
  );
6704
6368
  }
6705
6369
 
6706
6370
  /** @internal */
6707
- export const DollarExists$inboundSchema: z.ZodType<
6708
- DollarExists,
6709
- z.ZodTypeDef,
6710
- unknown
6711
- > = z.object({
6712
- $exists: z.boolean(),
6713
- }).transform((v) => {
6714
- return remap$(v, {
6715
- "$exists": "dollarExists",
6371
+ export const Exists$inboundSchema: z.ZodType<Exists, z.ZodTypeDef, unknown> = z
6372
+ .object({
6373
+ exists: z.boolean(),
6716
6374
  });
6717
- });
6718
6375
 
6719
6376
  /** @internal */
6720
- export type DollarExists$Outbound = {
6721
- $exists: boolean;
6377
+ export type Exists$Outbound = {
6378
+ exists: boolean;
6722
6379
  };
6723
6380
 
6724
6381
  /** @internal */
6725
- export const DollarExists$outboundSchema: z.ZodType<
6726
- DollarExists$Outbound,
6382
+ export const Exists$outboundSchema: z.ZodType<
6383
+ Exists$Outbound,
6727
6384
  z.ZodTypeDef,
6728
- DollarExists
6385
+ Exists
6729
6386
  > = z.object({
6730
- dollarExists: z.boolean(),
6731
- }).transform((v) => {
6732
- return remap$(v, {
6733
- dollarExists: "$exists",
6734
- });
6387
+ exists: z.boolean(),
6735
6388
  });
6736
6389
 
6737
6390
  /**
6738
6391
  * @internal
6739
6392
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6740
6393
  */
6741
- export namespace DollarExists$ {
6742
- /** @deprecated use `DollarExists$inboundSchema` instead. */
6743
- export const inboundSchema = DollarExists$inboundSchema;
6744
- /** @deprecated use `DollarExists$outboundSchema` instead. */
6745
- export const outboundSchema = DollarExists$outboundSchema;
6746
- /** @deprecated use `DollarExists$Outbound` instead. */
6747
- export type Outbound = DollarExists$Outbound;
6394
+ export namespace Exists$ {
6395
+ /** @deprecated use `Exists$inboundSchema` instead. */
6396
+ export const inboundSchema = Exists$inboundSchema;
6397
+ /** @deprecated use `Exists$outboundSchema` instead. */
6398
+ export const outboundSchema = Exists$outboundSchema;
6399
+ /** @deprecated use `Exists$Outbound` instead. */
6400
+ export type Outbound = Exists$Outbound;
6748
6401
  }
6749
6402
 
6750
- export function dollarExistsToJSON(dollarExists: DollarExists): string {
6751
- return JSON.stringify(DollarExists$outboundSchema.parse(dollarExists));
6403
+ export function existsToJSON(exists: Exists): string {
6404
+ return JSON.stringify(Exists$outboundSchema.parse(exists));
6752
6405
  }
6753
6406
 
6754
- export function dollarExistsFromJSON(
6407
+ export function existsFromJSON(
6755
6408
  jsonString: string,
6756
- ): SafeParseResult<DollarExists, SDKValidationError> {
6409
+ ): SafeParseResult<Exists, SDKValidationError> {
6757
6410
  return safeParse(
6758
6411
  jsonString,
6759
- (x) => DollarExists$inboundSchema.parse(JSON.parse(x)),
6760
- `Failed to parse 'DollarExists' from JSON`,
6412
+ (x) => Exists$inboundSchema.parse(JSON.parse(x)),
6413
+ `Failed to parse 'Exists' from JSON`,
6761
6414
  );
6762
6415
  }
6763
6416
 
6764
6417
  /** @internal */
6765
- export const DollarNin$inboundSchema: z.ZodType<
6766
- DollarNin,
6767
- z.ZodTypeDef,
6768
- unknown
6769
- > = z.union([z.string(), z.number(), z.boolean()]);
6418
+ export const Nin$inboundSchema: z.ZodType<Nin, z.ZodTypeDef, unknown> = z.union(
6419
+ [z.string(), z.number(), z.boolean()],
6420
+ );
6770
6421
 
6771
6422
  /** @internal */
6772
- export type DollarNin$Outbound = string | number | boolean;
6423
+ export type Nin$Outbound = string | number | boolean;
6773
6424
 
6774
6425
  /** @internal */
6775
- export const DollarNin$outboundSchema: z.ZodType<
6776
- DollarNin$Outbound,
6777
- z.ZodTypeDef,
6778
- DollarNin
6779
- > = z.union([z.string(), z.number(), z.boolean()]);
6426
+ export const Nin$outboundSchema: z.ZodType<Nin$Outbound, z.ZodTypeDef, Nin> = z
6427
+ .union([z.string(), z.number(), z.boolean()]);
6780
6428
 
6781
6429
  /**
6782
6430
  * @internal
6783
6431
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6784
6432
  */
6785
- export namespace DollarNin$ {
6786
- /** @deprecated use `DollarNin$inboundSchema` instead. */
6787
- export const inboundSchema = DollarNin$inboundSchema;
6788
- /** @deprecated use `DollarNin$outboundSchema` instead. */
6789
- export const outboundSchema = DollarNin$outboundSchema;
6790
- /** @deprecated use `DollarNin$Outbound` instead. */
6791
- export type Outbound = DollarNin$Outbound;
6433
+ export namespace Nin$ {
6434
+ /** @deprecated use `Nin$inboundSchema` instead. */
6435
+ export const inboundSchema = Nin$inboundSchema;
6436
+ /** @deprecated use `Nin$outboundSchema` instead. */
6437
+ export const outboundSchema = Nin$outboundSchema;
6438
+ /** @deprecated use `Nin$Outbound` instead. */
6439
+ export type Outbound = Nin$Outbound;
6792
6440
  }
6793
6441
 
6794
- export function dollarNinToJSON(dollarNin: DollarNin): string {
6795
- return JSON.stringify(DollarNin$outboundSchema.parse(dollarNin));
6442
+ export function ninToJSON(nin: Nin): string {
6443
+ return JSON.stringify(Nin$outboundSchema.parse(nin));
6796
6444
  }
6797
6445
 
6798
- export function dollarNinFromJSON(
6446
+ export function ninFromJSON(
6799
6447
  jsonString: string,
6800
- ): SafeParseResult<DollarNin, SDKValidationError> {
6448
+ ): SafeParseResult<Nin, SDKValidationError> {
6801
6449
  return safeParse(
6802
6450
  jsonString,
6803
- (x) => DollarNin$inboundSchema.parse(JSON.parse(x)),
6804
- `Failed to parse 'DollarNin' from JSON`,
6451
+ (x) => Nin$inboundSchema.parse(JSON.parse(x)),
6452
+ `Failed to parse 'Nin' from JSON`,
6805
6453
  );
6806
6454
  }
6807
6455
 
6808
6456
  /** @internal */
6809
- export const OneDollarNin$inboundSchema: z.ZodType<
6810
- OneDollarNin,
6811
- z.ZodTypeDef,
6812
- unknown
6813
- > = z.object({
6814
- $nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
6815
- }).transform((v) => {
6816
- return remap$(v, {
6817
- "$nin": "dollarNin",
6457
+ export const OneNin$inboundSchema: z.ZodType<OneNin, z.ZodTypeDef, unknown> = z
6458
+ .object({
6459
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
6818
6460
  });
6819
- });
6820
6461
 
6821
6462
  /** @internal */
6822
- export type OneDollarNin$Outbound = {
6823
- $nin: Array<string | number | boolean>;
6463
+ export type OneNin$Outbound = {
6464
+ nin: Array<string | number | boolean>;
6824
6465
  };
6825
6466
 
6826
6467
  /** @internal */
6827
- export const OneDollarNin$outboundSchema: z.ZodType<
6828
- OneDollarNin$Outbound,
6468
+ export const OneNin$outboundSchema: z.ZodType<
6469
+ OneNin$Outbound,
6829
6470
  z.ZodTypeDef,
6830
- OneDollarNin
6471
+ OneNin
6831
6472
  > = z.object({
6832
- dollarNin: z.array(z.union([z.string(), z.number(), z.boolean()])),
6833
- }).transform((v) => {
6834
- return remap$(v, {
6835
- dollarNin: "$nin",
6836
- });
6473
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
6837
6474
  });
6838
6475
 
6839
6476
  /**
6840
6477
  * @internal
6841
6478
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6842
6479
  */
6843
- export namespace OneDollarNin$ {
6844
- /** @deprecated use `OneDollarNin$inboundSchema` instead. */
6845
- export const inboundSchema = OneDollarNin$inboundSchema;
6846
- /** @deprecated use `OneDollarNin$outboundSchema` instead. */
6847
- export const outboundSchema = OneDollarNin$outboundSchema;
6848
- /** @deprecated use `OneDollarNin$Outbound` instead. */
6849
- export type Outbound = OneDollarNin$Outbound;
6480
+ export namespace OneNin$ {
6481
+ /** @deprecated use `OneNin$inboundSchema` instead. */
6482
+ export const inboundSchema = OneNin$inboundSchema;
6483
+ /** @deprecated use `OneNin$outboundSchema` instead. */
6484
+ export const outboundSchema = OneNin$outboundSchema;
6485
+ /** @deprecated use `OneNin$Outbound` instead. */
6486
+ export type Outbound = OneNin$Outbound;
6850
6487
  }
6851
6488
 
6852
- export function oneDollarNinToJSON(oneDollarNin: OneDollarNin): string {
6853
- return JSON.stringify(OneDollarNin$outboundSchema.parse(oneDollarNin));
6489
+ export function oneNinToJSON(oneNin: OneNin): string {
6490
+ return JSON.stringify(OneNin$outboundSchema.parse(oneNin));
6854
6491
  }
6855
6492
 
6856
- export function oneDollarNinFromJSON(
6493
+ export function oneNinFromJSON(
6857
6494
  jsonString: string,
6858
- ): SafeParseResult<OneDollarNin, SDKValidationError> {
6495
+ ): SafeParseResult<OneNin, SDKValidationError> {
6859
6496
  return safeParse(
6860
6497
  jsonString,
6861
- (x) => OneDollarNin$inboundSchema.parse(JSON.parse(x)),
6862
- `Failed to parse 'OneDollarNin' from JSON`,
6498
+ (x) => OneNin$inboundSchema.parse(JSON.parse(x)),
6499
+ `Failed to parse 'OneNin' from JSON`,
6863
6500
  );
6864
6501
  }
6865
6502
 
6866
6503
  /** @internal */
6867
- export const DollarIn$inboundSchema: z.ZodType<
6868
- DollarIn,
6869
- z.ZodTypeDef,
6870
- unknown
6871
- > = z.union([z.string(), z.number(), z.boolean()]);
6504
+ export const In$inboundSchema: z.ZodType<In, z.ZodTypeDef, unknown> = z.union([
6505
+ z.string(),
6506
+ z.number(),
6507
+ z.boolean(),
6508
+ ]);
6872
6509
 
6873
6510
  /** @internal */
6874
- export type DollarIn$Outbound = string | number | boolean;
6511
+ export type In$Outbound = string | number | boolean;
6875
6512
 
6876
6513
  /** @internal */
6877
- export const DollarIn$outboundSchema: z.ZodType<
6878
- DollarIn$Outbound,
6879
- z.ZodTypeDef,
6880
- DollarIn
6881
- > = z.union([z.string(), z.number(), z.boolean()]);
6514
+ export const In$outboundSchema: z.ZodType<In$Outbound, z.ZodTypeDef, In> = z
6515
+ .union([z.string(), z.number(), z.boolean()]);
6882
6516
 
6883
6517
  /**
6884
6518
  * @internal
6885
6519
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6886
6520
  */
6887
- export namespace DollarIn$ {
6888
- /** @deprecated use `DollarIn$inboundSchema` instead. */
6889
- export const inboundSchema = DollarIn$inboundSchema;
6890
- /** @deprecated use `DollarIn$outboundSchema` instead. */
6891
- export const outboundSchema = DollarIn$outboundSchema;
6892
- /** @deprecated use `DollarIn$Outbound` instead. */
6893
- export type Outbound = DollarIn$Outbound;
6521
+ export namespace In$ {
6522
+ /** @deprecated use `In$inboundSchema` instead. */
6523
+ export const inboundSchema = In$inboundSchema;
6524
+ /** @deprecated use `In$outboundSchema` instead. */
6525
+ export const outboundSchema = In$outboundSchema;
6526
+ /** @deprecated use `In$Outbound` instead. */
6527
+ export type Outbound = In$Outbound;
6894
6528
  }
6895
6529
 
6896
- export function dollarInToJSON(dollarIn: DollarIn): string {
6897
- return JSON.stringify(DollarIn$outboundSchema.parse(dollarIn));
6530
+ export function inToJSON(value: In): string {
6531
+ return JSON.stringify(In$outboundSchema.parse(value));
6898
6532
  }
6899
6533
 
6900
- export function dollarInFromJSON(
6534
+ export function inFromJSON(
6901
6535
  jsonString: string,
6902
- ): SafeParseResult<DollarIn, SDKValidationError> {
6536
+ ): SafeParseResult<In, SDKValidationError> {
6903
6537
  return safeParse(
6904
6538
  jsonString,
6905
- (x) => DollarIn$inboundSchema.parse(JSON.parse(x)),
6906
- `Failed to parse 'DollarIn' from JSON`,
6539
+ (x) => In$inboundSchema.parse(JSON.parse(x)),
6540
+ `Failed to parse 'In' from JSON`,
6907
6541
  );
6908
6542
  }
6909
6543
 
6910
6544
  /** @internal */
6911
- export const OneDollarIn$inboundSchema: z.ZodType<
6912
- OneDollarIn,
6913
- z.ZodTypeDef,
6914
- unknown
6915
- > = z.object({
6916
- $in: z.array(z.union([z.string(), z.number(), z.boolean()])),
6917
- }).transform((v) => {
6918
- return remap$(v, {
6919
- "$in": "dollarIn",
6545
+ export const OneIn$inboundSchema: z.ZodType<OneIn, z.ZodTypeDef, unknown> = z
6546
+ .object({
6547
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
6920
6548
  });
6921
- });
6922
6549
 
6923
6550
  /** @internal */
6924
- export type OneDollarIn$Outbound = {
6925
- $in: Array<string | number | boolean>;
6551
+ export type OneIn$Outbound = {
6552
+ in: Array<string | number | boolean>;
6926
6553
  };
6927
6554
 
6928
6555
  /** @internal */
6929
- export const OneDollarIn$outboundSchema: z.ZodType<
6930
- OneDollarIn$Outbound,
6556
+ export const OneIn$outboundSchema: z.ZodType<
6557
+ OneIn$Outbound,
6931
6558
  z.ZodTypeDef,
6932
- OneDollarIn
6559
+ OneIn
6933
6560
  > = z.object({
6934
- dollarIn: z.array(z.union([z.string(), z.number(), z.boolean()])),
6935
- }).transform((v) => {
6936
- return remap$(v, {
6937
- dollarIn: "$in",
6938
- });
6561
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
6939
6562
  });
6940
6563
 
6941
6564
  /**
6942
6565
  * @internal
6943
6566
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6944
6567
  */
6945
- export namespace OneDollarIn$ {
6946
- /** @deprecated use `OneDollarIn$inboundSchema` instead. */
6947
- export const inboundSchema = OneDollarIn$inboundSchema;
6948
- /** @deprecated use `OneDollarIn$outboundSchema` instead. */
6949
- export const outboundSchema = OneDollarIn$outboundSchema;
6950
- /** @deprecated use `OneDollarIn$Outbound` instead. */
6951
- export type Outbound = OneDollarIn$Outbound;
6568
+ export namespace OneIn$ {
6569
+ /** @deprecated use `OneIn$inboundSchema` instead. */
6570
+ export const inboundSchema = OneIn$inboundSchema;
6571
+ /** @deprecated use `OneIn$outboundSchema` instead. */
6572
+ export const outboundSchema = OneIn$outboundSchema;
6573
+ /** @deprecated use `OneIn$Outbound` instead. */
6574
+ export type Outbound = OneIn$Outbound;
6952
6575
  }
6953
6576
 
6954
- export function oneDollarInToJSON(oneDollarIn: OneDollarIn): string {
6955
- return JSON.stringify(OneDollarIn$outboundSchema.parse(oneDollarIn));
6577
+ export function oneInToJSON(oneIn: OneIn): string {
6578
+ return JSON.stringify(OneIn$outboundSchema.parse(oneIn));
6956
6579
  }
6957
6580
 
6958
- export function oneDollarInFromJSON(
6581
+ export function oneInFromJSON(
6959
6582
  jsonString: string,
6960
- ): SafeParseResult<OneDollarIn, SDKValidationError> {
6583
+ ): SafeParseResult<OneIn, SDKValidationError> {
6961
6584
  return safeParse(
6962
6585
  jsonString,
6963
- (x) => OneDollarIn$inboundSchema.parse(JSON.parse(x)),
6964
- `Failed to parse 'OneDollarIn' from JSON`,
6586
+ (x) => OneIn$inboundSchema.parse(JSON.parse(x)),
6587
+ `Failed to parse 'OneIn' from JSON`,
6965
6588
  );
6966
6589
  }
6967
6590
 
6968
6591
  /** @internal */
6969
- export const DollarLte$inboundSchema: z.ZodType<
6970
- DollarLte,
6971
- z.ZodTypeDef,
6972
- unknown
6973
- > = z.object({
6974
- $lte: z.number(),
6975
- }).transform((v) => {
6976
- return remap$(v, {
6977
- "$lte": "dollarLte",
6592
+ export const Lte$inboundSchema: z.ZodType<Lte, z.ZodTypeDef, unknown> = z
6593
+ .object({
6594
+ lte: z.number(),
6978
6595
  });
6979
- });
6980
6596
 
6981
6597
  /** @internal */
6982
- export type DollarLte$Outbound = {
6983
- $lte: number;
6598
+ export type Lte$Outbound = {
6599
+ lte: number;
6984
6600
  };
6985
6601
 
6986
6602
  /** @internal */
6987
- export const DollarLte$outboundSchema: z.ZodType<
6988
- DollarLte$Outbound,
6989
- z.ZodTypeDef,
6990
- DollarLte
6991
- > = z.object({
6992
- dollarLte: z.number(),
6993
- }).transform((v) => {
6994
- return remap$(v, {
6995
- dollarLte: "$lte",
6603
+ export const Lte$outboundSchema: z.ZodType<Lte$Outbound, z.ZodTypeDef, Lte> = z
6604
+ .object({
6605
+ lte: z.number(),
6996
6606
  });
6997
- });
6998
6607
 
6999
6608
  /**
7000
6609
  * @internal
7001
6610
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7002
6611
  */
7003
- export namespace DollarLte$ {
7004
- /** @deprecated use `DollarLte$inboundSchema` instead. */
7005
- export const inboundSchema = DollarLte$inboundSchema;
7006
- /** @deprecated use `DollarLte$outboundSchema` instead. */
7007
- export const outboundSchema = DollarLte$outboundSchema;
7008
- /** @deprecated use `DollarLte$Outbound` instead. */
7009
- export type Outbound = DollarLte$Outbound;
6612
+ export namespace Lte$ {
6613
+ /** @deprecated use `Lte$inboundSchema` instead. */
6614
+ export const inboundSchema = Lte$inboundSchema;
6615
+ /** @deprecated use `Lte$outboundSchema` instead. */
6616
+ export const outboundSchema = Lte$outboundSchema;
6617
+ /** @deprecated use `Lte$Outbound` instead. */
6618
+ export type Outbound = Lte$Outbound;
7010
6619
  }
7011
6620
 
7012
- export function dollarLteToJSON(dollarLte: DollarLte): string {
7013
- return JSON.stringify(DollarLte$outboundSchema.parse(dollarLte));
6621
+ export function lteToJSON(lte: Lte): string {
6622
+ return JSON.stringify(Lte$outboundSchema.parse(lte));
7014
6623
  }
7015
6624
 
7016
- export function dollarLteFromJSON(
6625
+ export function lteFromJSON(
7017
6626
  jsonString: string,
7018
- ): SafeParseResult<DollarLte, SDKValidationError> {
6627
+ ): SafeParseResult<Lte, SDKValidationError> {
7019
6628
  return safeParse(
7020
6629
  jsonString,
7021
- (x) => DollarLte$inboundSchema.parse(JSON.parse(x)),
7022
- `Failed to parse 'DollarLte' from JSON`,
6630
+ (x) => Lte$inboundSchema.parse(JSON.parse(x)),
6631
+ `Failed to parse 'Lte' from JSON`,
7023
6632
  );
7024
6633
  }
7025
6634
 
7026
6635
  /** @internal */
7027
- export const DollarLt$inboundSchema: z.ZodType<
7028
- DollarLt,
7029
- z.ZodTypeDef,
7030
- unknown
7031
- > = z.object({
7032
- $lt: z.number(),
7033
- }).transform((v) => {
7034
- return remap$(v, {
7035
- "$lt": "dollarLt",
7036
- });
6636
+ export const Lt$inboundSchema: z.ZodType<Lt, z.ZodTypeDef, unknown> = z.object({
6637
+ lt: z.number(),
7037
6638
  });
7038
6639
 
7039
6640
  /** @internal */
7040
- export type DollarLt$Outbound = {
7041
- $lt: number;
6641
+ export type Lt$Outbound = {
6642
+ lt: number;
7042
6643
  };
7043
6644
 
7044
6645
  /** @internal */
7045
- export const DollarLt$outboundSchema: z.ZodType<
7046
- DollarLt$Outbound,
7047
- z.ZodTypeDef,
7048
- DollarLt
7049
- > = z.object({
7050
- dollarLt: z.number(),
7051
- }).transform((v) => {
7052
- return remap$(v, {
7053
- dollarLt: "$lt",
6646
+ export const Lt$outboundSchema: z.ZodType<Lt$Outbound, z.ZodTypeDef, Lt> = z
6647
+ .object({
6648
+ lt: z.number(),
7054
6649
  });
7055
- });
7056
6650
 
7057
6651
  /**
7058
6652
  * @internal
7059
6653
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7060
6654
  */
7061
- export namespace DollarLt$ {
7062
- /** @deprecated use `DollarLt$inboundSchema` instead. */
7063
- export const inboundSchema = DollarLt$inboundSchema;
7064
- /** @deprecated use `DollarLt$outboundSchema` instead. */
7065
- export const outboundSchema = DollarLt$outboundSchema;
7066
- /** @deprecated use `DollarLt$Outbound` instead. */
7067
- export type Outbound = DollarLt$Outbound;
6655
+ export namespace Lt$ {
6656
+ /** @deprecated use `Lt$inboundSchema` instead. */
6657
+ export const inboundSchema = Lt$inboundSchema;
6658
+ /** @deprecated use `Lt$outboundSchema` instead. */
6659
+ export const outboundSchema = Lt$outboundSchema;
6660
+ /** @deprecated use `Lt$Outbound` instead. */
6661
+ export type Outbound = Lt$Outbound;
7068
6662
  }
7069
6663
 
7070
- export function dollarLtToJSON(dollarLt: DollarLt): string {
7071
- return JSON.stringify(DollarLt$outboundSchema.parse(dollarLt));
6664
+ export function ltToJSON(lt: Lt): string {
6665
+ return JSON.stringify(Lt$outboundSchema.parse(lt));
7072
6666
  }
7073
6667
 
7074
- export function dollarLtFromJSON(
6668
+ export function ltFromJSON(
7075
6669
  jsonString: string,
7076
- ): SafeParseResult<DollarLt, SDKValidationError> {
6670
+ ): SafeParseResult<Lt, SDKValidationError> {
7077
6671
  return safeParse(
7078
6672
  jsonString,
7079
- (x) => DollarLt$inboundSchema.parse(JSON.parse(x)),
7080
- `Failed to parse 'DollarLt' from JSON`,
6673
+ (x) => Lt$inboundSchema.parse(JSON.parse(x)),
6674
+ `Failed to parse 'Lt' from JSON`,
7081
6675
  );
7082
6676
  }
7083
6677
 
7084
6678
  /** @internal */
7085
- export const DollarGte$inboundSchema: z.ZodType<
7086
- DollarGte,
7087
- z.ZodTypeDef,
7088
- unknown
7089
- > = z.object({
7090
- $gte: z.number(),
7091
- }).transform((v) => {
7092
- return remap$(v, {
7093
- "$gte": "dollarGte",
6679
+ export const Gte$inboundSchema: z.ZodType<Gte, z.ZodTypeDef, unknown> = z
6680
+ .object({
6681
+ gte: z.number(),
7094
6682
  });
7095
- });
7096
6683
 
7097
6684
  /** @internal */
7098
- export type DollarGte$Outbound = {
7099
- $gte: number;
6685
+ export type Gte$Outbound = {
6686
+ gte: number;
7100
6687
  };
7101
6688
 
7102
6689
  /** @internal */
7103
- export const DollarGte$outboundSchema: z.ZodType<
7104
- DollarGte$Outbound,
7105
- z.ZodTypeDef,
7106
- DollarGte
7107
- > = z.object({
7108
- dollarGte: z.number(),
7109
- }).transform((v) => {
7110
- return remap$(v, {
7111
- dollarGte: "$gte",
6690
+ export const Gte$outboundSchema: z.ZodType<Gte$Outbound, z.ZodTypeDef, Gte> = z
6691
+ .object({
6692
+ gte: z.number(),
7112
6693
  });
7113
- });
7114
6694
 
7115
6695
  /**
7116
6696
  * @internal
7117
6697
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7118
6698
  */
7119
- export namespace DollarGte$ {
7120
- /** @deprecated use `DollarGte$inboundSchema` instead. */
7121
- export const inboundSchema = DollarGte$inboundSchema;
7122
- /** @deprecated use `DollarGte$outboundSchema` instead. */
7123
- export const outboundSchema = DollarGte$outboundSchema;
7124
- /** @deprecated use `DollarGte$Outbound` instead. */
7125
- export type Outbound = DollarGte$Outbound;
6699
+ export namespace Gte$ {
6700
+ /** @deprecated use `Gte$inboundSchema` instead. */
6701
+ export const inboundSchema = Gte$inboundSchema;
6702
+ /** @deprecated use `Gte$outboundSchema` instead. */
6703
+ export const outboundSchema = Gte$outboundSchema;
6704
+ /** @deprecated use `Gte$Outbound` instead. */
6705
+ export type Outbound = Gte$Outbound;
7126
6706
  }
7127
6707
 
7128
- export function dollarGteToJSON(dollarGte: DollarGte): string {
7129
- return JSON.stringify(DollarGte$outboundSchema.parse(dollarGte));
6708
+ export function gteToJSON(gte: Gte): string {
6709
+ return JSON.stringify(Gte$outboundSchema.parse(gte));
7130
6710
  }
7131
6711
 
7132
- export function dollarGteFromJSON(
6712
+ export function gteFromJSON(
7133
6713
  jsonString: string,
7134
- ): SafeParseResult<DollarGte, SDKValidationError> {
6714
+ ): SafeParseResult<Gte, SDKValidationError> {
7135
6715
  return safeParse(
7136
6716
  jsonString,
7137
- (x) => DollarGte$inboundSchema.parse(JSON.parse(x)),
7138
- `Failed to parse 'DollarGte' from JSON`,
6717
+ (x) => Gte$inboundSchema.parse(JSON.parse(x)),
6718
+ `Failed to parse 'Gte' from JSON`,
7139
6719
  );
7140
6720
  }
7141
6721
 
7142
6722
  /** @internal */
7143
6723
  export const Three$inboundSchema: z.ZodType<Three, z.ZodTypeDef, unknown> = z
7144
6724
  .object({
7145
- $gt: z.number(),
7146
- }).transform((v) => {
7147
- return remap$(v, {
7148
- "$gt": "dollarGt",
7149
- });
6725
+ gt: z.number(),
7150
6726
  });
7151
6727
 
7152
6728
  /** @internal */
7153
6729
  export type Three$Outbound = {
7154
- $gt: number;
6730
+ gt: number;
7155
6731
  };
7156
6732
 
7157
6733
  /** @internal */
@@ -7160,11 +6736,7 @@ export const Three$outboundSchema: z.ZodType<
7160
6736
  z.ZodTypeDef,
7161
6737
  Three
7162
6738
  > = z.object({
7163
- dollarGt: z.number(),
7164
- }).transform((v) => {
7165
- return remap$(v, {
7166
- dollarGt: "$gt",
7167
- });
6739
+ gt: z.number(),
7168
6740
  });
7169
6741
 
7170
6742
  /**
@@ -7195,248 +6767,220 @@ export function threeFromJSON(
7195
6767
  }
7196
6768
 
7197
6769
  /** @internal */
7198
- export const DollarNe$inboundSchema: z.ZodType<
7199
- DollarNe,
7200
- z.ZodTypeDef,
7201
- unknown
7202
- > = z.union([z.string(), z.number(), z.boolean()]);
6770
+ export const Ne$inboundSchema: z.ZodType<Ne, z.ZodTypeDef, unknown> = z.union([
6771
+ z.string(),
6772
+ z.number(),
6773
+ z.boolean(),
6774
+ ]);
7203
6775
 
7204
6776
  /** @internal */
7205
- export type DollarNe$Outbound = string | number | boolean;
6777
+ export type Ne$Outbound = string | number | boolean;
7206
6778
 
7207
6779
  /** @internal */
7208
- export const DollarNe$outboundSchema: z.ZodType<
7209
- DollarNe$Outbound,
7210
- z.ZodTypeDef,
7211
- DollarNe
7212
- > = z.union([z.string(), z.number(), z.boolean()]);
6780
+ export const Ne$outboundSchema: z.ZodType<Ne$Outbound, z.ZodTypeDef, Ne> = z
6781
+ .union([z.string(), z.number(), z.boolean()]);
7213
6782
 
7214
6783
  /**
7215
6784
  * @internal
7216
6785
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7217
6786
  */
7218
- export namespace DollarNe$ {
7219
- /** @deprecated use `DollarNe$inboundSchema` instead. */
7220
- export const inboundSchema = DollarNe$inboundSchema;
7221
- /** @deprecated use `DollarNe$outboundSchema` instead. */
7222
- export const outboundSchema = DollarNe$outboundSchema;
7223
- /** @deprecated use `DollarNe$Outbound` instead. */
7224
- export type Outbound = DollarNe$Outbound;
6787
+ export namespace Ne$ {
6788
+ /** @deprecated use `Ne$inboundSchema` instead. */
6789
+ export const inboundSchema = Ne$inboundSchema;
6790
+ /** @deprecated use `Ne$outboundSchema` instead. */
6791
+ export const outboundSchema = Ne$outboundSchema;
6792
+ /** @deprecated use `Ne$Outbound` instead. */
6793
+ export type Outbound = Ne$Outbound;
7225
6794
  }
7226
6795
 
7227
- export function dollarNeToJSON(dollarNe: DollarNe): string {
7228
- return JSON.stringify(DollarNe$outboundSchema.parse(dollarNe));
6796
+ export function neToJSON(ne: Ne): string {
6797
+ return JSON.stringify(Ne$outboundSchema.parse(ne));
7229
6798
  }
7230
6799
 
7231
- export function dollarNeFromJSON(
6800
+ export function neFromJSON(
7232
6801
  jsonString: string,
7233
- ): SafeParseResult<DollarNe, SDKValidationError> {
6802
+ ): SafeParseResult<Ne, SDKValidationError> {
7234
6803
  return safeParse(
7235
6804
  jsonString,
7236
- (x) => DollarNe$inboundSchema.parse(JSON.parse(x)),
7237
- `Failed to parse 'DollarNe' from JSON`,
6805
+ (x) => Ne$inboundSchema.parse(JSON.parse(x)),
6806
+ `Failed to parse 'Ne' from JSON`,
7238
6807
  );
7239
6808
  }
7240
6809
 
7241
6810
  /** @internal */
7242
- export const OneDollarNe$inboundSchema: z.ZodType<
7243
- OneDollarNe,
7244
- z.ZodTypeDef,
7245
- unknown
7246
- > = z.object({
7247
- $ne: z.union([z.string(), z.number(), z.boolean()]),
7248
- }).transform((v) => {
7249
- return remap$(v, {
7250
- "$ne": "dollarNe",
6811
+ export const OneNe$inboundSchema: z.ZodType<OneNe, z.ZodTypeDef, unknown> = z
6812
+ .object({
6813
+ ne: z.union([z.string(), z.number(), z.boolean()]),
7251
6814
  });
7252
- });
7253
6815
 
7254
6816
  /** @internal */
7255
- export type OneDollarNe$Outbound = {
7256
- $ne: string | number | boolean;
6817
+ export type OneNe$Outbound = {
6818
+ ne: string | number | boolean;
7257
6819
  };
7258
6820
 
7259
6821
  /** @internal */
7260
- export const OneDollarNe$outboundSchema: z.ZodType<
7261
- OneDollarNe$Outbound,
6822
+ export const OneNe$outboundSchema: z.ZodType<
6823
+ OneNe$Outbound,
7262
6824
  z.ZodTypeDef,
7263
- OneDollarNe
6825
+ OneNe
7264
6826
  > = z.object({
7265
- dollarNe: z.union([z.string(), z.number(), z.boolean()]),
7266
- }).transform((v) => {
7267
- return remap$(v, {
7268
- dollarNe: "$ne",
7269
- });
6827
+ ne: z.union([z.string(), z.number(), z.boolean()]),
7270
6828
  });
7271
6829
 
7272
6830
  /**
7273
6831
  * @internal
7274
6832
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7275
6833
  */
7276
- export namespace OneDollarNe$ {
7277
- /** @deprecated use `OneDollarNe$inboundSchema` instead. */
7278
- export const inboundSchema = OneDollarNe$inboundSchema;
7279
- /** @deprecated use `OneDollarNe$outboundSchema` instead. */
7280
- export const outboundSchema = OneDollarNe$outboundSchema;
7281
- /** @deprecated use `OneDollarNe$Outbound` instead. */
7282
- export type Outbound = OneDollarNe$Outbound;
6834
+ export namespace OneNe$ {
6835
+ /** @deprecated use `OneNe$inboundSchema` instead. */
6836
+ export const inboundSchema = OneNe$inboundSchema;
6837
+ /** @deprecated use `OneNe$outboundSchema` instead. */
6838
+ export const outboundSchema = OneNe$outboundSchema;
6839
+ /** @deprecated use `OneNe$Outbound` instead. */
6840
+ export type Outbound = OneNe$Outbound;
7283
6841
  }
7284
6842
 
7285
- export function oneDollarNeToJSON(oneDollarNe: OneDollarNe): string {
7286
- return JSON.stringify(OneDollarNe$outboundSchema.parse(oneDollarNe));
6843
+ export function oneNeToJSON(oneNe: OneNe): string {
6844
+ return JSON.stringify(OneNe$outboundSchema.parse(oneNe));
7287
6845
  }
7288
6846
 
7289
- export function oneDollarNeFromJSON(
6847
+ export function oneNeFromJSON(
7290
6848
  jsonString: string,
7291
- ): SafeParseResult<OneDollarNe, SDKValidationError> {
6849
+ ): SafeParseResult<OneNe, SDKValidationError> {
7292
6850
  return safeParse(
7293
6851
  jsonString,
7294
- (x) => OneDollarNe$inboundSchema.parse(JSON.parse(x)),
7295
- `Failed to parse 'OneDollarNe' from JSON`,
6852
+ (x) => OneNe$inboundSchema.parse(JSON.parse(x)),
6853
+ `Failed to parse 'OneNe' from JSON`,
7296
6854
  );
7297
6855
  }
7298
6856
 
7299
6857
  /** @internal */
7300
- export const DollarEq$inboundSchema: z.ZodType<
7301
- DollarEq,
7302
- z.ZodTypeDef,
7303
- unknown
7304
- > = z.union([z.string(), z.number(), z.boolean()]);
6858
+ export const Eq$inboundSchema: z.ZodType<Eq, z.ZodTypeDef, unknown> = z.union([
6859
+ z.string(),
6860
+ z.number(),
6861
+ z.boolean(),
6862
+ ]);
7305
6863
 
7306
6864
  /** @internal */
7307
- export type DollarEq$Outbound = string | number | boolean;
6865
+ export type Eq$Outbound = string | number | boolean;
7308
6866
 
7309
6867
  /** @internal */
7310
- export const DollarEq$outboundSchema: z.ZodType<
7311
- DollarEq$Outbound,
7312
- z.ZodTypeDef,
7313
- DollarEq
7314
- > = z.union([z.string(), z.number(), z.boolean()]);
6868
+ export const Eq$outboundSchema: z.ZodType<Eq$Outbound, z.ZodTypeDef, Eq> = z
6869
+ .union([z.string(), z.number(), z.boolean()]);
7315
6870
 
7316
6871
  /**
7317
6872
  * @internal
7318
6873
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7319
6874
  */
7320
- export namespace DollarEq$ {
7321
- /** @deprecated use `DollarEq$inboundSchema` instead. */
7322
- export const inboundSchema = DollarEq$inboundSchema;
7323
- /** @deprecated use `DollarEq$outboundSchema` instead. */
7324
- export const outboundSchema = DollarEq$outboundSchema;
7325
- /** @deprecated use `DollarEq$Outbound` instead. */
7326
- export type Outbound = DollarEq$Outbound;
6875
+ export namespace Eq$ {
6876
+ /** @deprecated use `Eq$inboundSchema` instead. */
6877
+ export const inboundSchema = Eq$inboundSchema;
6878
+ /** @deprecated use `Eq$outboundSchema` instead. */
6879
+ export const outboundSchema = Eq$outboundSchema;
6880
+ /** @deprecated use `Eq$Outbound` instead. */
6881
+ export type Outbound = Eq$Outbound;
7327
6882
  }
7328
6883
 
7329
- export function dollarEqToJSON(dollarEq: DollarEq): string {
7330
- return JSON.stringify(DollarEq$outboundSchema.parse(dollarEq));
6884
+ export function eqToJSON(eq: Eq): string {
6885
+ return JSON.stringify(Eq$outboundSchema.parse(eq));
7331
6886
  }
7332
6887
 
7333
- export function dollarEqFromJSON(
6888
+ export function eqFromJSON(
7334
6889
  jsonString: string,
7335
- ): SafeParseResult<DollarEq, SDKValidationError> {
6890
+ ): SafeParseResult<Eq, SDKValidationError> {
7336
6891
  return safeParse(
7337
6892
  jsonString,
7338
- (x) => DollarEq$inboundSchema.parse(JSON.parse(x)),
7339
- `Failed to parse 'DollarEq' from JSON`,
6893
+ (x) => Eq$inboundSchema.parse(JSON.parse(x)),
6894
+ `Failed to parse 'Eq' from JSON`,
7340
6895
  );
7341
6896
  }
7342
6897
 
7343
6898
  /** @internal */
7344
- export const OneDollarEq$inboundSchema: z.ZodType<
7345
- OneDollarEq,
7346
- z.ZodTypeDef,
7347
- unknown
7348
- > = z.object({
7349
- $eq: z.union([z.string(), z.number(), z.boolean()]),
7350
- }).transform((v) => {
7351
- return remap$(v, {
7352
- "$eq": "dollarEq",
6899
+ export const OneEq$inboundSchema: z.ZodType<OneEq, z.ZodTypeDef, unknown> = z
6900
+ .object({
6901
+ eq: z.union([z.string(), z.number(), z.boolean()]),
7353
6902
  });
7354
- });
7355
6903
 
7356
6904
  /** @internal */
7357
- export type OneDollarEq$Outbound = {
7358
- $eq: string | number | boolean;
6905
+ export type OneEq$Outbound = {
6906
+ eq: string | number | boolean;
7359
6907
  };
7360
6908
 
7361
6909
  /** @internal */
7362
- export const OneDollarEq$outboundSchema: z.ZodType<
7363
- OneDollarEq$Outbound,
6910
+ export const OneEq$outboundSchema: z.ZodType<
6911
+ OneEq$Outbound,
7364
6912
  z.ZodTypeDef,
7365
- OneDollarEq
6913
+ OneEq
7366
6914
  > = z.object({
7367
- dollarEq: z.union([z.string(), z.number(), z.boolean()]),
7368
- }).transform((v) => {
7369
- return remap$(v, {
7370
- dollarEq: "$eq",
7371
- });
6915
+ eq: z.union([z.string(), z.number(), z.boolean()]),
7372
6916
  });
7373
6917
 
7374
6918
  /**
7375
6919
  * @internal
7376
6920
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7377
6921
  */
7378
- export namespace OneDollarEq$ {
7379
- /** @deprecated use `OneDollarEq$inboundSchema` instead. */
7380
- export const inboundSchema = OneDollarEq$inboundSchema;
7381
- /** @deprecated use `OneDollarEq$outboundSchema` instead. */
7382
- export const outboundSchema = OneDollarEq$outboundSchema;
7383
- /** @deprecated use `OneDollarEq$Outbound` instead. */
7384
- export type Outbound = OneDollarEq$Outbound;
6922
+ export namespace OneEq$ {
6923
+ /** @deprecated use `OneEq$inboundSchema` instead. */
6924
+ export const inboundSchema = OneEq$inboundSchema;
6925
+ /** @deprecated use `OneEq$outboundSchema` instead. */
6926
+ export const outboundSchema = OneEq$outboundSchema;
6927
+ /** @deprecated use `OneEq$Outbound` instead. */
6928
+ export type Outbound = OneEq$Outbound;
7385
6929
  }
7386
6930
 
7387
- export function oneDollarEqToJSON(oneDollarEq: OneDollarEq): string {
7388
- return JSON.stringify(OneDollarEq$outboundSchema.parse(oneDollarEq));
6931
+ export function oneEqToJSON(oneEq: OneEq): string {
6932
+ return JSON.stringify(OneEq$outboundSchema.parse(oneEq));
7389
6933
  }
7390
6934
 
7391
- export function oneDollarEqFromJSON(
6935
+ export function oneEqFromJSON(
7392
6936
  jsonString: string,
7393
- ): SafeParseResult<OneDollarEq, SDKValidationError> {
6937
+ ): SafeParseResult<OneEq, SDKValidationError> {
7394
6938
  return safeParse(
7395
6939
  jsonString,
7396
- (x) => OneDollarEq$inboundSchema.parse(JSON.parse(x)),
7397
- `Failed to parse 'OneDollarEq' from JSON`,
6940
+ (x) => OneEq$inboundSchema.parse(JSON.parse(x)),
6941
+ `Failed to parse 'OneEq' from JSON`,
7398
6942
  );
7399
6943
  }
7400
6944
 
7401
6945
  /** @internal */
7402
6946
  export const One$inboundSchema: z.ZodType<One, z.ZodTypeDef, unknown> = z.union(
7403
6947
  [
7404
- z.lazy(() => OneDollarEq$inboundSchema),
7405
- z.lazy(() => OneDollarNe$inboundSchema),
6948
+ z.lazy(() => OneEq$inboundSchema),
6949
+ z.lazy(() => OneNe$inboundSchema),
7406
6950
  z.lazy(() => Three$inboundSchema),
7407
- z.lazy(() => DollarGte$inboundSchema),
7408
- z.lazy(() => DollarLt$inboundSchema),
7409
- z.lazy(() => DollarLte$inboundSchema),
7410
- z.lazy(() => OneDollarIn$inboundSchema),
7411
- z.lazy(() => OneDollarNin$inboundSchema),
7412
- z.lazy(() => DollarExists$inboundSchema),
6951
+ z.lazy(() => Gte$inboundSchema),
6952
+ z.lazy(() => Lt$inboundSchema),
6953
+ z.lazy(() => Lte$inboundSchema),
6954
+ z.lazy(() => OneIn$inboundSchema),
6955
+ z.lazy(() => OneNin$inboundSchema),
6956
+ z.lazy(() => Exists$inboundSchema),
7413
6957
  ],
7414
6958
  );
7415
6959
 
7416
6960
  /** @internal */
7417
6961
  export type One$Outbound =
7418
- | OneDollarEq$Outbound
7419
- | OneDollarNe$Outbound
6962
+ | OneEq$Outbound
6963
+ | OneNe$Outbound
7420
6964
  | Three$Outbound
7421
- | DollarGte$Outbound
7422
- | DollarLt$Outbound
7423
- | DollarLte$Outbound
7424
- | OneDollarIn$Outbound
7425
- | OneDollarNin$Outbound
7426
- | DollarExists$Outbound;
6965
+ | Gte$Outbound
6966
+ | Lt$Outbound
6967
+ | Lte$Outbound
6968
+ | OneIn$Outbound
6969
+ | OneNin$Outbound
6970
+ | Exists$Outbound;
7427
6971
 
7428
6972
  /** @internal */
7429
6973
  export const One$outboundSchema: z.ZodType<One$Outbound, z.ZodTypeDef, One> = z
7430
6974
  .union([
7431
- z.lazy(() => OneDollarEq$outboundSchema),
7432
- z.lazy(() => OneDollarNe$outboundSchema),
6975
+ z.lazy(() => OneEq$outboundSchema),
6976
+ z.lazy(() => OneNe$outboundSchema),
7433
6977
  z.lazy(() => Three$outboundSchema),
7434
- z.lazy(() => DollarGte$outboundSchema),
7435
- z.lazy(() => DollarLt$outboundSchema),
7436
- z.lazy(() => DollarLte$outboundSchema),
7437
- z.lazy(() => OneDollarIn$outboundSchema),
7438
- z.lazy(() => OneDollarNin$outboundSchema),
7439
- z.lazy(() => DollarExists$outboundSchema),
6978
+ z.lazy(() => Gte$outboundSchema),
6979
+ z.lazy(() => Lt$outboundSchema),
6980
+ z.lazy(() => Lte$outboundSchema),
6981
+ z.lazy(() => OneIn$outboundSchema),
6982
+ z.lazy(() => OneNin$outboundSchema),
6983
+ z.lazy(() => Exists$outboundSchema),
7440
6984
  ]);
7441
6985
 
7442
6986
  /**
@@ -7472,36 +7016,36 @@ export const KnowledgeFilter$inboundSchema: z.ZodType<
7472
7016
  z.ZodTypeDef,
7473
7017
  unknown
7474
7018
  > = z.union([
7475
- z.lazy(() => KnowledgeFilterDollarAnd$inboundSchema),
7476
- z.lazy(() => KnowledgeFilterDollarOr$inboundSchema),
7019
+ z.lazy(() => KnowledgeFilterAnd$inboundSchema),
7020
+ z.lazy(() => KnowledgeFilterOr$inboundSchema),
7477
7021
  z.record(z.union([
7478
- z.lazy(() => OneDollarEq$inboundSchema),
7479
- z.lazy(() => OneDollarNe$inboundSchema),
7022
+ z.lazy(() => OneEq$inboundSchema),
7023
+ z.lazy(() => OneNe$inboundSchema),
7480
7024
  z.lazy(() => Three$inboundSchema),
7481
- z.lazy(() => DollarGte$inboundSchema),
7482
- z.lazy(() => DollarLt$inboundSchema),
7483
- z.lazy(() => DollarLte$inboundSchema),
7484
- z.lazy(() => OneDollarIn$inboundSchema),
7485
- z.lazy(() => OneDollarNin$inboundSchema),
7486
- z.lazy(() => DollarExists$inboundSchema),
7025
+ z.lazy(() => Gte$inboundSchema),
7026
+ z.lazy(() => Lt$inboundSchema),
7027
+ z.lazy(() => Lte$inboundSchema),
7028
+ z.lazy(() => OneIn$inboundSchema),
7029
+ z.lazy(() => OneNin$inboundSchema),
7030
+ z.lazy(() => Exists$inboundSchema),
7487
7031
  ])),
7488
7032
  ]);
7489
7033
 
7490
7034
  /** @internal */
7491
7035
  export type KnowledgeFilter$Outbound =
7492
- | KnowledgeFilterDollarAnd$Outbound
7493
- | KnowledgeFilterDollarOr$Outbound
7036
+ | KnowledgeFilterAnd$Outbound
7037
+ | KnowledgeFilterOr$Outbound
7494
7038
  | {
7495
7039
  [k: string]:
7496
- | OneDollarEq$Outbound
7497
- | OneDollarNe$Outbound
7040
+ | OneEq$Outbound
7041
+ | OneNe$Outbound
7498
7042
  | Three$Outbound
7499
- | DollarGte$Outbound
7500
- | DollarLt$Outbound
7501
- | DollarLte$Outbound
7502
- | OneDollarIn$Outbound
7503
- | OneDollarNin$Outbound
7504
- | DollarExists$Outbound;
7043
+ | Gte$Outbound
7044
+ | Lt$Outbound
7045
+ | Lte$Outbound
7046
+ | OneIn$Outbound
7047
+ | OneNin$Outbound
7048
+ | Exists$Outbound;
7505
7049
  };
7506
7050
 
7507
7051
  /** @internal */
@@ -7510,18 +7054,18 @@ export const KnowledgeFilter$outboundSchema: z.ZodType<
7510
7054
  z.ZodTypeDef,
7511
7055
  KnowledgeFilter
7512
7056
  > = z.union([
7513
- z.lazy(() => KnowledgeFilterDollarAnd$outboundSchema),
7514
- z.lazy(() => KnowledgeFilterDollarOr$outboundSchema),
7057
+ z.lazy(() => KnowledgeFilterAnd$outboundSchema),
7058
+ z.lazy(() => KnowledgeFilterOr$outboundSchema),
7515
7059
  z.record(z.union([
7516
- z.lazy(() => OneDollarEq$outboundSchema),
7517
- z.lazy(() => OneDollarNe$outboundSchema),
7060
+ z.lazy(() => OneEq$outboundSchema),
7061
+ z.lazy(() => OneNe$outboundSchema),
7518
7062
  z.lazy(() => Three$outboundSchema),
7519
- z.lazy(() => DollarGte$outboundSchema),
7520
- z.lazy(() => DollarLt$outboundSchema),
7521
- z.lazy(() => DollarLte$outboundSchema),
7522
- z.lazy(() => OneDollarIn$outboundSchema),
7523
- z.lazy(() => OneDollarNin$outboundSchema),
7524
- z.lazy(() => DollarExists$outboundSchema),
7063
+ z.lazy(() => Gte$outboundSchema),
7064
+ z.lazy(() => Lt$outboundSchema),
7065
+ z.lazy(() => Lte$outboundSchema),
7066
+ z.lazy(() => OneIn$outboundSchema),
7067
+ z.lazy(() => OneNin$outboundSchema),
7068
+ z.lazy(() => Exists$outboundSchema),
7525
7069
  ])),
7526
7070
  ]);
7527
7071
 
@@ -7588,21 +7132,19 @@ export const Deployments$inboundSchema: z.ZodType<
7588
7132
  invoke_options: z.lazy(() => InvokeOptions$inboundSchema).optional(),
7589
7133
  thread: z.lazy(() => Thread$inboundSchema).optional(),
7590
7134
  knowledge_filter: z.union([
7591
- z.lazy(() => KnowledgeFilterDollarAnd$inboundSchema),
7592
- z.lazy(() => KnowledgeFilterDollarOr$inboundSchema),
7593
- z.record(
7594
- z.union([
7595
- z.lazy(() => OneDollarEq$inboundSchema),
7596
- z.lazy(() => OneDollarNe$inboundSchema),
7597
- z.lazy(() => Three$inboundSchema),
7598
- z.lazy(() => DollarGte$inboundSchema),
7599
- z.lazy(() => DollarLt$inboundSchema),
7600
- z.lazy(() => DollarLte$inboundSchema),
7601
- z.lazy(() => OneDollarIn$inboundSchema),
7602
- z.lazy(() => OneDollarNin$inboundSchema),
7603
- z.lazy(() => DollarExists$inboundSchema),
7604
- ]),
7605
- ),
7135
+ z.lazy(() => KnowledgeFilterAnd$inboundSchema),
7136
+ z.lazy(() => KnowledgeFilterOr$inboundSchema),
7137
+ z.record(z.union([
7138
+ z.lazy(() => OneEq$inboundSchema),
7139
+ z.lazy(() => OneNe$inboundSchema),
7140
+ z.lazy(() => Three$inboundSchema),
7141
+ z.lazy(() => Gte$inboundSchema),
7142
+ z.lazy(() => Lt$inboundSchema),
7143
+ z.lazy(() => Lte$inboundSchema),
7144
+ z.lazy(() => OneIn$inboundSchema),
7145
+ z.lazy(() => OneNin$inboundSchema),
7146
+ z.lazy(() => Exists$inboundSchema),
7147
+ ])),
7606
7148
  ]).optional(),
7607
7149
  }).transform((v) => {
7608
7150
  return remap$(v, {
@@ -7644,19 +7186,19 @@ export type Deployments$Outbound = {
7644
7186
  invoke_options?: InvokeOptions$Outbound | undefined;
7645
7187
  thread?: Thread$Outbound | undefined;
7646
7188
  knowledge_filter?:
7647
- | KnowledgeFilterDollarAnd$Outbound
7648
- | KnowledgeFilterDollarOr$Outbound
7189
+ | KnowledgeFilterAnd$Outbound
7190
+ | KnowledgeFilterOr$Outbound
7649
7191
  | {
7650
7192
  [k: string]:
7651
- | OneDollarEq$Outbound
7652
- | OneDollarNe$Outbound
7193
+ | OneEq$Outbound
7194
+ | OneNe$Outbound
7653
7195
  | Three$Outbound
7654
- | DollarGte$Outbound
7655
- | DollarLt$Outbound
7656
- | DollarLte$Outbound
7657
- | OneDollarIn$Outbound
7658
- | OneDollarNin$Outbound
7659
- | DollarExists$Outbound;
7196
+ | Gte$Outbound
7197
+ | Lt$Outbound
7198
+ | Lte$Outbound
7199
+ | OneIn$Outbound
7200
+ | OneNin$Outbound
7201
+ | Exists$Outbound;
7660
7202
  }
7661
7203
  | undefined;
7662
7204
  };
@@ -7695,21 +7237,19 @@ export const Deployments$outboundSchema: z.ZodType<
7695
7237
  invokeOptions: z.lazy(() => InvokeOptions$outboundSchema).optional(),
7696
7238
  thread: z.lazy(() => Thread$outboundSchema).optional(),
7697
7239
  knowledgeFilter: z.union([
7698
- z.lazy(() => KnowledgeFilterDollarAnd$outboundSchema),
7699
- z.lazy(() => KnowledgeFilterDollarOr$outboundSchema),
7700
- z.record(
7701
- z.union([
7702
- z.lazy(() => OneDollarEq$outboundSchema),
7703
- z.lazy(() => OneDollarNe$outboundSchema),
7704
- z.lazy(() => Three$outboundSchema),
7705
- z.lazy(() => DollarGte$outboundSchema),
7706
- z.lazy(() => DollarLt$outboundSchema),
7707
- z.lazy(() => DollarLte$outboundSchema),
7708
- z.lazy(() => OneDollarIn$outboundSchema),
7709
- z.lazy(() => OneDollarNin$outboundSchema),
7710
- z.lazy(() => DollarExists$outboundSchema),
7711
- ]),
7712
- ),
7240
+ z.lazy(() => KnowledgeFilterAnd$outboundSchema),
7241
+ z.lazy(() => KnowledgeFilterOr$outboundSchema),
7242
+ z.record(z.union([
7243
+ z.lazy(() => OneEq$outboundSchema),
7244
+ z.lazy(() => OneNe$outboundSchema),
7245
+ z.lazy(() => Three$outboundSchema),
7246
+ z.lazy(() => Gte$outboundSchema),
7247
+ z.lazy(() => Lt$outboundSchema),
7248
+ z.lazy(() => Lte$outboundSchema),
7249
+ z.lazy(() => OneIn$outboundSchema),
7250
+ z.lazy(() => OneNin$outboundSchema),
7251
+ z.lazy(() => Exists$outboundSchema),
7252
+ ])),
7713
7253
  ]).optional(),
7714
7254
  }).transform((v) => {
7715
7255
  return remap$(v, {