@orq-ai/node 3.6.0-rc.25 → 3.6.0-rc.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/bin/mcp-server.js +3013 -3880
  2. package/bin/mcp-server.js.map +37 -28
  3. package/jsr.json +1 -1
  4. package/lib/config.d.ts +3 -3
  5. package/lib/config.js +3 -3
  6. package/mcp-server/mcp-server.js +1 -1
  7. package/mcp-server/server.js +1 -1
  8. package/models/components/deployments.d.ts +618 -618
  9. package/models/components/deployments.d.ts.map +1 -1
  10. package/models/components/deployments.js +864 -1051
  11. package/models/components/deployments.js.map +1 -1
  12. package/models/operations/bulkcreatedatapoints.js +2 -2
  13. package/models/operations/createcontact.js +2 -2
  14. package/models/operations/createdataset.js +2 -2
  15. package/models/operations/createdatasetitem.js +2 -2
  16. package/models/operations/createdatasource.js +2 -2
  17. package/models/operations/deploymentgetconfig.d.ts +618 -618
  18. package/models/operations/deploymentgetconfig.d.ts.map +1 -1
  19. package/models/operations/deploymentgetconfig.js +855 -1052
  20. package/models/operations/deploymentgetconfig.js.map +1 -1
  21. package/models/operations/deploymentstream.d.ts +618 -618
  22. package/models/operations/deploymentstream.d.ts.map +1 -1
  23. package/models/operations/deploymentstream.js +823 -1052
  24. package/models/operations/deploymentstream.js.map +1 -1
  25. package/models/operations/fileget.js +2 -2
  26. package/models/operations/filelist.js +2 -2
  27. package/models/operations/fileupload.js +2 -2
  28. package/models/operations/listdatasetdatapoints.js +2 -2
  29. package/models/operations/listdatasets.js +2 -2
  30. package/models/operations/listdatasources.js +2 -2
  31. package/models/operations/retrievedatapoint.js +2 -2
  32. package/models/operations/retrievedataset.js +2 -2
  33. package/models/operations/retrievedatasource.js +2 -2
  34. package/models/operations/searchknowledge.d.ts +642 -642
  35. package/models/operations/searchknowledge.d.ts.map +1 -1
  36. package/models/operations/searchknowledge.js +946 -1177
  37. package/models/operations/searchknowledge.js.map +1 -1
  38. package/models/operations/updatedatapoint.js +2 -2
  39. package/models/operations/updatedataset.js +2 -2
  40. package/models/operations/updatedatasource.js +2 -2
  41. package/package.json +2 -2
  42. package/src/lib/config.ts +3 -3
  43. package/src/mcp-server/mcp-server.ts +1 -1
  44. package/src/mcp-server/server.ts +1 -1
  45. package/src/models/components/deployments.ts +1217 -1677
  46. package/src/models/operations/bulkcreatedatapoints.ts +2 -2
  47. package/src/models/operations/createcontact.ts +2 -2
  48. package/src/models/operations/createdataset.ts +2 -2
  49. package/src/models/operations/createdatasetitem.ts +2 -2
  50. package/src/models/operations/createdatasource.ts +2 -2
  51. package/src/models/operations/deploymentgetconfig.ts +1202 -1723
  52. package/src/models/operations/deploymentstream.ts +1314 -1761
  53. package/src/models/operations/fileget.ts +2 -2
  54. package/src/models/operations/filelist.ts +2 -2
  55. package/src/models/operations/fileupload.ts +2 -2
  56. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  57. package/src/models/operations/listdatasets.ts +2 -2
  58. package/src/models/operations/listdatasources.ts +2 -2
  59. package/src/models/operations/retrievedatapoint.ts +2 -2
  60. package/src/models/operations/retrievedataset.ts +2 -2
  61. package/src/models/operations/retrievedatasource.ts +2 -2
  62. package/src/models/operations/searchknowledge.ts +1334 -1750
  63. package/src/models/operations/updatedatapoint.ts +2 -2
  64. package/src/models/operations/updatedataset.ts +2 -2
  65. package/src/models/operations/updatedatasource.ts +2 -2
@@ -880,98 +880,98 @@ export type Thread = {
880
880
  /**
881
881
  * Exists
882
882
  */
883
- export type DollarOrDollarExists = {
884
- dollarExists: boolean;
883
+ export type OrExists = {
884
+ exists: boolean;
885
885
  };
886
886
 
887
- export type DeploymentGetConfigDollarOrDollarNin = string | number | boolean;
887
+ export type DeploymentGetConfigOrNin = string | number | boolean;
888
888
 
889
889
  /**
890
890
  * Not in
891
891
  */
892
- export type DollarOrDollarNin = {
893
- dollarNin: Array<string | number | boolean>;
892
+ export type OrNin = {
893
+ nin: Array<string | number | boolean>;
894
894
  };
895
895
 
896
- export type DeploymentGetConfigDollarOrDollarIn = string | number | boolean;
896
+ export type DeploymentGetConfigOrIn = string | number | boolean;
897
897
 
898
898
  /**
899
899
  * In
900
900
  */
901
- export type DollarOrDollarIn = {
902
- dollarIn: Array<string | number | boolean>;
901
+ export type OrIn = {
902
+ in: Array<string | number | boolean>;
903
903
  };
904
904
 
905
905
  /**
906
906
  * Less than or equal to
907
907
  */
908
- export type DollarOrDollarLte = {
909
- dollarLte: number;
908
+ export type OrLte = {
909
+ lte: number;
910
910
  };
911
911
 
912
912
  /**
913
913
  * Less than
914
914
  */
915
- export type DollarOrDollarLt = {
916
- dollarLt: number;
915
+ export type OrLt = {
916
+ lt: number;
917
917
  };
918
918
 
919
919
  /**
920
920
  * Greater than or equal to
921
921
  */
922
- export type DollarOrDollarGte = {
923
- dollarGte: number;
922
+ export type OrGte = {
923
+ gte: number;
924
924
  };
925
925
 
926
- export type DollarOr3 = {
927
- dollarGt: number;
926
+ export type Or3 = {
927
+ gt: number;
928
928
  };
929
929
 
930
- export type DeploymentGetConfigDollarOrDollarNe = string | number | boolean;
930
+ export type DeploymentGetConfigOrNe = string | number | boolean;
931
931
 
932
932
  /**
933
933
  * Not equal to
934
934
  */
935
- export type DollarOrDollarNe = {
936
- dollarNe: string | number | boolean;
935
+ export type OrNe = {
936
+ ne: string | number | boolean;
937
937
  };
938
938
 
939
- export type DeploymentGetConfigDollarOrDollarEq = string | number | boolean;
939
+ export type DeploymentGetConfigOrEq = string | number | boolean;
940
940
 
941
941
  /**
942
942
  * Equal to
943
943
  */
944
- export type DollarOrDollarEq = {
945
- dollarEq: string | number | boolean;
944
+ export type OrEq = {
945
+ eq: string | number | boolean;
946
946
  };
947
947
 
948
- export type KnowledgeFilterDollarOr =
949
- | DollarOrDollarEq
950
- | DollarOrDollarNe
951
- | DollarOr3
952
- | DollarOrDollarGte
953
- | DollarOrDollarLt
954
- | DollarOrDollarLte
955
- | DollarOrDollarIn
956
- | DollarOrDollarNin
957
- | DollarOrDollarExists;
948
+ export type KnowledgeFilterOr =
949
+ | OrEq
950
+ | OrNe
951
+ | Or3
952
+ | OrGte
953
+ | OrLt
954
+ | OrLte
955
+ | OrIn
956
+ | OrNin
957
+ | OrExists;
958
958
 
959
959
  /**
960
960
  * Or
961
961
  */
962
- export type DollarOr = {
963
- dollarOr: Array<
962
+ export type Or = {
963
+ or: Array<
964
964
  {
965
965
  [k: string]:
966
- | DollarOrDollarEq
967
- | DollarOrDollarNe
968
- | DollarOr3
969
- | DollarOrDollarGte
970
- | DollarOrDollarLt
971
- | DollarOrDollarLte
972
- | DollarOrDollarIn
973
- | DollarOrDollarNin
974
- | DollarOrDollarExists;
966
+ | OrEq
967
+ | OrNe
968
+ | Or3
969
+ | OrGte
970
+ | OrLt
971
+ | OrLte
972
+ | OrIn
973
+ | OrNin
974
+ | OrExists;
975
975
  }
976
976
  >;
977
977
  };
@@ -979,98 +979,98 @@ export type DollarOr = {
979
979
  /**
980
980
  * Exists
981
981
  */
982
- export type DollarAndDollarExists = {
983
- dollarExists: boolean;
982
+ export type AndExists = {
983
+ exists: boolean;
984
984
  };
985
985
 
986
- export type DeploymentGetConfigDollarAndDollarNin = string | number | boolean;
986
+ export type DeploymentGetConfigAndNin = string | number | boolean;
987
987
 
988
988
  /**
989
989
  * Not in
990
990
  */
991
- export type DollarAndDollarNin = {
992
- dollarNin: Array<string | number | boolean>;
991
+ export type AndNin = {
992
+ nin: Array<string | number | boolean>;
993
993
  };
994
994
 
995
- export type DeploymentGetConfigDollarAndDollarIn = string | number | boolean;
995
+ export type DeploymentGetConfigAndIn = string | number | boolean;
996
996
 
997
997
  /**
998
998
  * In
999
999
  */
1000
- export type DollarAndDollarIn = {
1001
- dollarIn: Array<string | number | boolean>;
1000
+ export type AndIn = {
1001
+ in: Array<string | number | boolean>;
1002
1002
  };
1003
1003
 
1004
1004
  /**
1005
1005
  * Less than or equal to
1006
1006
  */
1007
- export type DollarAndDollarLte = {
1008
- dollarLte: number;
1007
+ export type AndLte = {
1008
+ lte: number;
1009
1009
  };
1010
1010
 
1011
1011
  /**
1012
1012
  * Less than
1013
1013
  */
1014
- export type DollarAndDollarLt = {
1015
- dollarLt: number;
1014
+ export type AndLt = {
1015
+ lt: number;
1016
1016
  };
1017
1017
 
1018
1018
  /**
1019
1019
  * Greater than or equal to
1020
1020
  */
1021
- export type DollarAndDollarGte = {
1022
- dollarGte: number;
1021
+ export type AndGte = {
1022
+ gte: number;
1023
1023
  };
1024
1024
 
1025
- export type DollarAnd3 = {
1026
- dollarGt: number;
1025
+ export type And3 = {
1026
+ gt: number;
1027
1027
  };
1028
1028
 
1029
- export type DeploymentGetConfigDollarAndDollarNe = string | number | boolean;
1029
+ export type DeploymentGetConfigAndNe = string | number | boolean;
1030
1030
 
1031
1031
  /**
1032
1032
  * Not equal to
1033
1033
  */
1034
- export type DollarAndDollarNe = {
1035
- dollarNe: string | number | boolean;
1034
+ export type AndNe = {
1035
+ ne: string | number | boolean;
1036
1036
  };
1037
1037
 
1038
- export type DeploymentGetConfigDollarAndDollarEq = string | number | boolean;
1038
+ export type DeploymentGetConfigAndEq = string | number | boolean;
1039
1039
 
1040
1040
  /**
1041
1041
  * Equal to
1042
1042
  */
1043
- export type DollarAndDollarEq = {
1044
- dollarEq: string | number | boolean;
1043
+ export type AndEq = {
1044
+ eq: string | number | boolean;
1045
1045
  };
1046
1046
 
1047
- export type KnowledgeFilterDollarAnd =
1048
- | DollarAndDollarEq
1049
- | DollarAndDollarNe
1050
- | DollarAnd3
1051
- | DollarAndDollarGte
1052
- | DollarAndDollarLt
1053
- | DollarAndDollarLte
1054
- | DollarAndDollarIn
1055
- | DollarAndDollarNin
1056
- | DollarAndDollarExists;
1047
+ export type KnowledgeFilterAnd =
1048
+ | AndEq
1049
+ | AndNe
1050
+ | And3
1051
+ | AndGte
1052
+ | AndLt
1053
+ | AndLte
1054
+ | AndIn
1055
+ | AndNin
1056
+ | AndExists;
1057
1057
 
1058
1058
  /**
1059
1059
  * And
1060
1060
  */
1061
- export type DollarAnd = {
1062
- dollarAnd: Array<
1061
+ export type And = {
1062
+ and: Array<
1063
1063
  {
1064
1064
  [k: string]:
1065
- | DollarAndDollarEq
1066
- | DollarAndDollarNe
1067
- | DollarAnd3
1068
- | DollarAndDollarGte
1069
- | DollarAndDollarLt
1070
- | DollarAndDollarLte
1071
- | DollarAndDollarIn
1072
- | DollarAndDollarNin
1073
- | DollarAndDollarExists;
1065
+ | AndEq
1066
+ | AndNe
1067
+ | And3
1068
+ | AndGte
1069
+ | AndLt
1070
+ | AndLte
1071
+ | AndIn
1072
+ | AndNin
1073
+ | AndExists;
1074
1074
  }
1075
1075
  >;
1076
1076
  };
@@ -1078,96 +1078,87 @@ export type DollarAnd = {
1078
1078
  /**
1079
1079
  * Exists
1080
1080
  */
1081
- export type DollarExists = {
1082
- dollarExists: boolean;
1081
+ export type Exists = {
1082
+ exists: boolean;
1083
1083
  };
1084
1084
 
1085
- export type OneDollarNin = string | number | boolean;
1085
+ export type OneNin = string | number | boolean;
1086
1086
 
1087
1087
  /**
1088
1088
  * Not in
1089
1089
  */
1090
- export type DollarNin = {
1091
- dollarNin: Array<string | number | boolean>;
1090
+ export type Nin = {
1091
+ nin: Array<string | number | boolean>;
1092
1092
  };
1093
1093
 
1094
- export type OneDollarIn = string | number | boolean;
1094
+ export type OneIn = string | number | boolean;
1095
1095
 
1096
1096
  /**
1097
1097
  * In
1098
1098
  */
1099
- export type DollarIn = {
1100
- dollarIn: Array<string | number | boolean>;
1099
+ export type In = {
1100
+ in: Array<string | number | boolean>;
1101
1101
  };
1102
1102
 
1103
1103
  /**
1104
1104
  * Less than or equal to
1105
1105
  */
1106
- export type DollarLte = {
1107
- dollarLte: number;
1106
+ export type Lte = {
1107
+ lte: number;
1108
1108
  };
1109
1109
 
1110
1110
  /**
1111
1111
  * Less than
1112
1112
  */
1113
- export type DollarLt = {
1114
- dollarLt: number;
1113
+ export type Lt = {
1114
+ lt: number;
1115
1115
  };
1116
1116
 
1117
1117
  /**
1118
1118
  * Greater than or equal to
1119
1119
  */
1120
- export type DollarGte = {
1121
- dollarGte: number;
1120
+ export type Gte = {
1121
+ gte: number;
1122
1122
  };
1123
1123
 
1124
1124
  export type One3 = {
1125
- dollarGt: number;
1125
+ gt: number;
1126
1126
  };
1127
1127
 
1128
- export type OneDollarNe = string | number | boolean;
1128
+ export type OneNe = string | number | boolean;
1129
1129
 
1130
1130
  /**
1131
1131
  * Not equal to
1132
1132
  */
1133
- export type DollarNe = {
1134
- dollarNe: string | number | boolean;
1133
+ export type Ne = {
1134
+ ne: string | number | boolean;
1135
1135
  };
1136
1136
 
1137
- export type OneDollarEq = string | number | boolean;
1137
+ export type OneEq = string | number | boolean;
1138
1138
 
1139
1139
  /**
1140
1140
  * Equal to
1141
1141
  */
1142
- export type DollarEq = {
1143
- dollarEq: string | number | boolean;
1142
+ export type Eq = {
1143
+ eq: string | number | boolean;
1144
1144
  };
1145
1145
 
1146
1146
  export type KnowledgeFilter1 =
1147
- | DollarEq
1148
- | DollarNe
1147
+ | Eq
1148
+ | Ne
1149
1149
  | One3
1150
- | DollarGte
1151
- | DollarLt
1152
- | DollarLte
1153
- | DollarIn
1154
- | DollarNin
1155
- | DollarExists;
1150
+ | Gte
1151
+ | Lt
1152
+ | Lte
1153
+ | In
1154
+ | Nin
1155
+ | Exists;
1156
1156
 
1157
1157
  /**
1158
1158
  * A filter to apply to the knowledge base chunk metadata when using knowledge bases in the deployment.
1159
1159
  */
1160
- export type KnowledgeFilter = DollarAnd | DollarOr | {
1161
- [k: string]:
1162
- | DollarEq
1163
- | DollarNe
1164
- | One3
1165
- | DollarGte
1166
- | DollarLt
1167
- | DollarLte
1168
- | DollarIn
1169
- | DollarNin
1170
- | DollarExists;
1160
+ export type KnowledgeFilter = And | Or | {
1161
+ [k: string]: Eq | Ne | One3 | Gte | Lt | Lte | In | Nin | Exists;
1171
1162
  };
1172
1163
 
1173
1164
  export type DeploymentGetConfigRequestBody = {
@@ -1228,17 +1219,8 @@ export type DeploymentGetConfigRequestBody = {
1228
1219
  /**
1229
1220
  * A filter to apply to the knowledge base chunk metadata when using knowledge bases in the deployment.
1230
1221
  */
1231
- knowledgeFilter?: DollarAnd | DollarOr | {
1232
- [k: string]:
1233
- | DollarEq
1234
- | DollarNe
1235
- | One3
1236
- | DollarGte
1237
- | DollarLt
1238
- | DollarLte
1239
- | DollarIn
1240
- | DollarNin
1241
- | DollarExists;
1222
+ knowledgeFilter?: And | Or | {
1223
+ [k: string]: Eq | Ne | One3 | Gte | Lt | Lte | In | Nin | Exists;
1242
1224
  } | undefined;
1243
1225
  };
1244
1226
 
@@ -5354,2372 +5336,1908 @@ export function threadFromJSON(
5354
5336
  }
5355
5337
 
5356
5338
  /** @internal */
5357
- export const DollarOrDollarExists$inboundSchema: z.ZodType<
5358
- DollarOrDollarExists,
5339
+ export const OrExists$inboundSchema: z.ZodType<
5340
+ OrExists,
5359
5341
  z.ZodTypeDef,
5360
5342
  unknown
5361
5343
  > = z.object({
5362
- $exists: z.boolean(),
5363
- }).transform((v) => {
5364
- return remap$(v, {
5365
- "$exists": "dollarExists",
5366
- });
5344
+ exists: z.boolean(),
5367
5345
  });
5368
5346
 
5369
5347
  /** @internal */
5370
- export type DollarOrDollarExists$Outbound = {
5371
- $exists: boolean;
5348
+ export type OrExists$Outbound = {
5349
+ exists: boolean;
5372
5350
  };
5373
5351
 
5374
5352
  /** @internal */
5375
- export const DollarOrDollarExists$outboundSchema: z.ZodType<
5376
- DollarOrDollarExists$Outbound,
5353
+ export const OrExists$outboundSchema: z.ZodType<
5354
+ OrExists$Outbound,
5377
5355
  z.ZodTypeDef,
5378
- DollarOrDollarExists
5356
+ OrExists
5379
5357
  > = z.object({
5380
- dollarExists: z.boolean(),
5381
- }).transform((v) => {
5382
- return remap$(v, {
5383
- dollarExists: "$exists",
5384
- });
5358
+ exists: z.boolean(),
5385
5359
  });
5386
5360
 
5387
5361
  /**
5388
5362
  * @internal
5389
5363
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5390
5364
  */
5391
- export namespace DollarOrDollarExists$ {
5392
- /** @deprecated use `DollarOrDollarExists$inboundSchema` instead. */
5393
- export const inboundSchema = DollarOrDollarExists$inboundSchema;
5394
- /** @deprecated use `DollarOrDollarExists$outboundSchema` instead. */
5395
- export const outboundSchema = DollarOrDollarExists$outboundSchema;
5396
- /** @deprecated use `DollarOrDollarExists$Outbound` instead. */
5397
- export type Outbound = DollarOrDollarExists$Outbound;
5365
+ export namespace OrExists$ {
5366
+ /** @deprecated use `OrExists$inboundSchema` instead. */
5367
+ export const inboundSchema = OrExists$inboundSchema;
5368
+ /** @deprecated use `OrExists$outboundSchema` instead. */
5369
+ export const outboundSchema = OrExists$outboundSchema;
5370
+ /** @deprecated use `OrExists$Outbound` instead. */
5371
+ export type Outbound = OrExists$Outbound;
5398
5372
  }
5399
5373
 
5400
- export function dollarOrDollarExistsToJSON(
5401
- dollarOrDollarExists: DollarOrDollarExists,
5402
- ): string {
5403
- return JSON.stringify(
5404
- DollarOrDollarExists$outboundSchema.parse(dollarOrDollarExists),
5405
- );
5374
+ export function orExistsToJSON(orExists: OrExists): string {
5375
+ return JSON.stringify(OrExists$outboundSchema.parse(orExists));
5406
5376
  }
5407
5377
 
5408
- export function dollarOrDollarExistsFromJSON(
5378
+ export function orExistsFromJSON(
5409
5379
  jsonString: string,
5410
- ): SafeParseResult<DollarOrDollarExists, SDKValidationError> {
5380
+ ): SafeParseResult<OrExists, SDKValidationError> {
5411
5381
  return safeParse(
5412
5382
  jsonString,
5413
- (x) => DollarOrDollarExists$inboundSchema.parse(JSON.parse(x)),
5414
- `Failed to parse 'DollarOrDollarExists' from JSON`,
5383
+ (x) => OrExists$inboundSchema.parse(JSON.parse(x)),
5384
+ `Failed to parse 'OrExists' from JSON`,
5415
5385
  );
5416
5386
  }
5417
5387
 
5418
5388
  /** @internal */
5419
- export const DeploymentGetConfigDollarOrDollarNin$inboundSchema: z.ZodType<
5420
- DeploymentGetConfigDollarOrDollarNin,
5389
+ export const DeploymentGetConfigOrNin$inboundSchema: z.ZodType<
5390
+ DeploymentGetConfigOrNin,
5421
5391
  z.ZodTypeDef,
5422
5392
  unknown
5423
5393
  > = z.union([z.string(), z.number(), z.boolean()]);
5424
5394
 
5425
5395
  /** @internal */
5426
- export type DeploymentGetConfigDollarOrDollarNin$Outbound =
5427
- | string
5428
- | number
5429
- | boolean;
5396
+ export type DeploymentGetConfigOrNin$Outbound = string | number | boolean;
5430
5397
 
5431
5398
  /** @internal */
5432
- export const DeploymentGetConfigDollarOrDollarNin$outboundSchema: z.ZodType<
5433
- DeploymentGetConfigDollarOrDollarNin$Outbound,
5399
+ export const DeploymentGetConfigOrNin$outboundSchema: z.ZodType<
5400
+ DeploymentGetConfigOrNin$Outbound,
5434
5401
  z.ZodTypeDef,
5435
- DeploymentGetConfigDollarOrDollarNin
5402
+ DeploymentGetConfigOrNin
5436
5403
  > = z.union([z.string(), z.number(), z.boolean()]);
5437
5404
 
5438
5405
  /**
5439
5406
  * @internal
5440
5407
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5441
5408
  */
5442
- export namespace DeploymentGetConfigDollarOrDollarNin$ {
5443
- /** @deprecated use `DeploymentGetConfigDollarOrDollarNin$inboundSchema` instead. */
5444
- export const inboundSchema =
5445
- DeploymentGetConfigDollarOrDollarNin$inboundSchema;
5446
- /** @deprecated use `DeploymentGetConfigDollarOrDollarNin$outboundSchema` instead. */
5447
- export const outboundSchema =
5448
- DeploymentGetConfigDollarOrDollarNin$outboundSchema;
5449
- /** @deprecated use `DeploymentGetConfigDollarOrDollarNin$Outbound` instead. */
5450
- export type Outbound = DeploymentGetConfigDollarOrDollarNin$Outbound;
5409
+ export namespace DeploymentGetConfigOrNin$ {
5410
+ /** @deprecated use `DeploymentGetConfigOrNin$inboundSchema` instead. */
5411
+ export const inboundSchema = DeploymentGetConfigOrNin$inboundSchema;
5412
+ /** @deprecated use `DeploymentGetConfigOrNin$outboundSchema` instead. */
5413
+ export const outboundSchema = DeploymentGetConfigOrNin$outboundSchema;
5414
+ /** @deprecated use `DeploymentGetConfigOrNin$Outbound` instead. */
5415
+ export type Outbound = DeploymentGetConfigOrNin$Outbound;
5451
5416
  }
5452
5417
 
5453
- export function deploymentGetConfigDollarOrDollarNinToJSON(
5454
- deploymentGetConfigDollarOrDollarNin: DeploymentGetConfigDollarOrDollarNin,
5418
+ export function deploymentGetConfigOrNinToJSON(
5419
+ deploymentGetConfigOrNin: DeploymentGetConfigOrNin,
5455
5420
  ): string {
5456
5421
  return JSON.stringify(
5457
- DeploymentGetConfigDollarOrDollarNin$outboundSchema.parse(
5458
- deploymentGetConfigDollarOrDollarNin,
5459
- ),
5422
+ DeploymentGetConfigOrNin$outboundSchema.parse(deploymentGetConfigOrNin),
5460
5423
  );
5461
5424
  }
5462
5425
 
5463
- export function deploymentGetConfigDollarOrDollarNinFromJSON(
5426
+ export function deploymentGetConfigOrNinFromJSON(
5464
5427
  jsonString: string,
5465
- ): SafeParseResult<DeploymentGetConfigDollarOrDollarNin, SDKValidationError> {
5428
+ ): SafeParseResult<DeploymentGetConfigOrNin, SDKValidationError> {
5466
5429
  return safeParse(
5467
5430
  jsonString,
5468
- (x) =>
5469
- DeploymentGetConfigDollarOrDollarNin$inboundSchema.parse(JSON.parse(x)),
5470
- `Failed to parse 'DeploymentGetConfigDollarOrDollarNin' from JSON`,
5431
+ (x) => DeploymentGetConfigOrNin$inboundSchema.parse(JSON.parse(x)),
5432
+ `Failed to parse 'DeploymentGetConfigOrNin' from JSON`,
5471
5433
  );
5472
5434
  }
5473
5435
 
5474
5436
  /** @internal */
5475
- export const DollarOrDollarNin$inboundSchema: z.ZodType<
5476
- DollarOrDollarNin,
5477
- z.ZodTypeDef,
5478
- unknown
5479
- > = z.object({
5480
- $nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
5481
- }).transform((v) => {
5482
- return remap$(v, {
5483
- "$nin": "dollarNin",
5437
+ export const OrNin$inboundSchema: z.ZodType<OrNin, z.ZodTypeDef, unknown> = z
5438
+ .object({
5439
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
5484
5440
  });
5485
- });
5486
5441
 
5487
5442
  /** @internal */
5488
- export type DollarOrDollarNin$Outbound = {
5489
- $nin: Array<string | number | boolean>;
5443
+ export type OrNin$Outbound = {
5444
+ nin: Array<string | number | boolean>;
5490
5445
  };
5491
5446
 
5492
5447
  /** @internal */
5493
- export const DollarOrDollarNin$outboundSchema: z.ZodType<
5494
- DollarOrDollarNin$Outbound,
5448
+ export const OrNin$outboundSchema: z.ZodType<
5449
+ OrNin$Outbound,
5495
5450
  z.ZodTypeDef,
5496
- DollarOrDollarNin
5451
+ OrNin
5497
5452
  > = z.object({
5498
- dollarNin: z.array(z.union([z.string(), z.number(), z.boolean()])),
5499
- }).transform((v) => {
5500
- return remap$(v, {
5501
- dollarNin: "$nin",
5502
- });
5453
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
5503
5454
  });
5504
5455
 
5505
5456
  /**
5506
5457
  * @internal
5507
5458
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5508
5459
  */
5509
- export namespace DollarOrDollarNin$ {
5510
- /** @deprecated use `DollarOrDollarNin$inboundSchema` instead. */
5511
- export const inboundSchema = DollarOrDollarNin$inboundSchema;
5512
- /** @deprecated use `DollarOrDollarNin$outboundSchema` instead. */
5513
- export const outboundSchema = DollarOrDollarNin$outboundSchema;
5514
- /** @deprecated use `DollarOrDollarNin$Outbound` instead. */
5515
- export type Outbound = DollarOrDollarNin$Outbound;
5460
+ export namespace OrNin$ {
5461
+ /** @deprecated use `OrNin$inboundSchema` instead. */
5462
+ export const inboundSchema = OrNin$inboundSchema;
5463
+ /** @deprecated use `OrNin$outboundSchema` instead. */
5464
+ export const outboundSchema = OrNin$outboundSchema;
5465
+ /** @deprecated use `OrNin$Outbound` instead. */
5466
+ export type Outbound = OrNin$Outbound;
5516
5467
  }
5517
5468
 
5518
- export function dollarOrDollarNinToJSON(
5519
- dollarOrDollarNin: DollarOrDollarNin,
5520
- ): string {
5521
- return JSON.stringify(
5522
- DollarOrDollarNin$outboundSchema.parse(dollarOrDollarNin),
5523
- );
5469
+ export function orNinToJSON(orNin: OrNin): string {
5470
+ return JSON.stringify(OrNin$outboundSchema.parse(orNin));
5524
5471
  }
5525
5472
 
5526
- export function dollarOrDollarNinFromJSON(
5473
+ export function orNinFromJSON(
5527
5474
  jsonString: string,
5528
- ): SafeParseResult<DollarOrDollarNin, SDKValidationError> {
5475
+ ): SafeParseResult<OrNin, SDKValidationError> {
5529
5476
  return safeParse(
5530
5477
  jsonString,
5531
- (x) => DollarOrDollarNin$inboundSchema.parse(JSON.parse(x)),
5532
- `Failed to parse 'DollarOrDollarNin' from JSON`,
5478
+ (x) => OrNin$inboundSchema.parse(JSON.parse(x)),
5479
+ `Failed to parse 'OrNin' from JSON`,
5533
5480
  );
5534
5481
  }
5535
5482
 
5536
5483
  /** @internal */
5537
- export const DeploymentGetConfigDollarOrDollarIn$inboundSchema: z.ZodType<
5538
- DeploymentGetConfigDollarOrDollarIn,
5484
+ export const DeploymentGetConfigOrIn$inboundSchema: z.ZodType<
5485
+ DeploymentGetConfigOrIn,
5539
5486
  z.ZodTypeDef,
5540
5487
  unknown
5541
5488
  > = z.union([z.string(), z.number(), z.boolean()]);
5542
5489
 
5543
5490
  /** @internal */
5544
- export type DeploymentGetConfigDollarOrDollarIn$Outbound =
5545
- | string
5546
- | number
5547
- | boolean;
5491
+ export type DeploymentGetConfigOrIn$Outbound = string | number | boolean;
5548
5492
 
5549
5493
  /** @internal */
5550
- export const DeploymentGetConfigDollarOrDollarIn$outboundSchema: z.ZodType<
5551
- DeploymentGetConfigDollarOrDollarIn$Outbound,
5494
+ export const DeploymentGetConfigOrIn$outboundSchema: z.ZodType<
5495
+ DeploymentGetConfigOrIn$Outbound,
5552
5496
  z.ZodTypeDef,
5553
- DeploymentGetConfigDollarOrDollarIn
5497
+ DeploymentGetConfigOrIn
5554
5498
  > = z.union([z.string(), z.number(), z.boolean()]);
5555
5499
 
5556
5500
  /**
5557
5501
  * @internal
5558
5502
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5559
5503
  */
5560
- export namespace DeploymentGetConfigDollarOrDollarIn$ {
5561
- /** @deprecated use `DeploymentGetConfigDollarOrDollarIn$inboundSchema` instead. */
5562
- export const inboundSchema =
5563
- DeploymentGetConfigDollarOrDollarIn$inboundSchema;
5564
- /** @deprecated use `DeploymentGetConfigDollarOrDollarIn$outboundSchema` instead. */
5565
- export const outboundSchema =
5566
- DeploymentGetConfigDollarOrDollarIn$outboundSchema;
5567
- /** @deprecated use `DeploymentGetConfigDollarOrDollarIn$Outbound` instead. */
5568
- export type Outbound = DeploymentGetConfigDollarOrDollarIn$Outbound;
5504
+ export namespace DeploymentGetConfigOrIn$ {
5505
+ /** @deprecated use `DeploymentGetConfigOrIn$inboundSchema` instead. */
5506
+ export const inboundSchema = DeploymentGetConfigOrIn$inboundSchema;
5507
+ /** @deprecated use `DeploymentGetConfigOrIn$outboundSchema` instead. */
5508
+ export const outboundSchema = DeploymentGetConfigOrIn$outboundSchema;
5509
+ /** @deprecated use `DeploymentGetConfigOrIn$Outbound` instead. */
5510
+ export type Outbound = DeploymentGetConfigOrIn$Outbound;
5569
5511
  }
5570
5512
 
5571
- export function deploymentGetConfigDollarOrDollarInToJSON(
5572
- deploymentGetConfigDollarOrDollarIn: DeploymentGetConfigDollarOrDollarIn,
5513
+ export function deploymentGetConfigOrInToJSON(
5514
+ deploymentGetConfigOrIn: DeploymentGetConfigOrIn,
5573
5515
  ): string {
5574
5516
  return JSON.stringify(
5575
- DeploymentGetConfigDollarOrDollarIn$outboundSchema.parse(
5576
- deploymentGetConfigDollarOrDollarIn,
5577
- ),
5517
+ DeploymentGetConfigOrIn$outboundSchema.parse(deploymentGetConfigOrIn),
5578
5518
  );
5579
5519
  }
5580
5520
 
5581
- export function deploymentGetConfigDollarOrDollarInFromJSON(
5521
+ export function deploymentGetConfigOrInFromJSON(
5582
5522
  jsonString: string,
5583
- ): SafeParseResult<DeploymentGetConfigDollarOrDollarIn, SDKValidationError> {
5523
+ ): SafeParseResult<DeploymentGetConfigOrIn, SDKValidationError> {
5584
5524
  return safeParse(
5585
5525
  jsonString,
5586
- (x) =>
5587
- DeploymentGetConfigDollarOrDollarIn$inboundSchema.parse(JSON.parse(x)),
5588
- `Failed to parse 'DeploymentGetConfigDollarOrDollarIn' from JSON`,
5526
+ (x) => DeploymentGetConfigOrIn$inboundSchema.parse(JSON.parse(x)),
5527
+ `Failed to parse 'DeploymentGetConfigOrIn' from JSON`,
5589
5528
  );
5590
5529
  }
5591
5530
 
5592
5531
  /** @internal */
5593
- export const DollarOrDollarIn$inboundSchema: z.ZodType<
5594
- DollarOrDollarIn,
5595
- z.ZodTypeDef,
5596
- unknown
5597
- > = z.object({
5598
- $in: z.array(z.union([z.string(), z.number(), z.boolean()])),
5599
- }).transform((v) => {
5600
- return remap$(v, {
5601
- "$in": "dollarIn",
5532
+ export const OrIn$inboundSchema: z.ZodType<OrIn, z.ZodTypeDef, unknown> = z
5533
+ .object({
5534
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
5602
5535
  });
5603
- });
5604
5536
 
5605
5537
  /** @internal */
5606
- export type DollarOrDollarIn$Outbound = {
5607
- $in: Array<string | number | boolean>;
5538
+ export type OrIn$Outbound = {
5539
+ in: Array<string | number | boolean>;
5608
5540
  };
5609
5541
 
5610
5542
  /** @internal */
5611
- export const DollarOrDollarIn$outboundSchema: z.ZodType<
5612
- DollarOrDollarIn$Outbound,
5613
- z.ZodTypeDef,
5614
- DollarOrDollarIn
5615
- > = z.object({
5616
- dollarIn: z.array(z.union([z.string(), z.number(), z.boolean()])),
5617
- }).transform((v) => {
5618
- return remap$(v, {
5619
- dollarIn: "$in",
5543
+ export const OrIn$outboundSchema: z.ZodType<OrIn$Outbound, z.ZodTypeDef, OrIn> =
5544
+ z.object({
5545
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
5620
5546
  });
5621
- });
5622
5547
 
5623
5548
  /**
5624
5549
  * @internal
5625
5550
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5626
5551
  */
5627
- export namespace DollarOrDollarIn$ {
5628
- /** @deprecated use `DollarOrDollarIn$inboundSchema` instead. */
5629
- export const inboundSchema = DollarOrDollarIn$inboundSchema;
5630
- /** @deprecated use `DollarOrDollarIn$outboundSchema` instead. */
5631
- export const outboundSchema = DollarOrDollarIn$outboundSchema;
5632
- /** @deprecated use `DollarOrDollarIn$Outbound` instead. */
5633
- export type Outbound = DollarOrDollarIn$Outbound;
5552
+ export namespace OrIn$ {
5553
+ /** @deprecated use `OrIn$inboundSchema` instead. */
5554
+ export const inboundSchema = OrIn$inboundSchema;
5555
+ /** @deprecated use `OrIn$outboundSchema` instead. */
5556
+ export const outboundSchema = OrIn$outboundSchema;
5557
+ /** @deprecated use `OrIn$Outbound` instead. */
5558
+ export type Outbound = OrIn$Outbound;
5634
5559
  }
5635
5560
 
5636
- export function dollarOrDollarInToJSON(
5637
- dollarOrDollarIn: DollarOrDollarIn,
5638
- ): string {
5639
- return JSON.stringify(
5640
- DollarOrDollarIn$outboundSchema.parse(dollarOrDollarIn),
5641
- );
5561
+ export function orInToJSON(orIn: OrIn): string {
5562
+ return JSON.stringify(OrIn$outboundSchema.parse(orIn));
5642
5563
  }
5643
5564
 
5644
- export function dollarOrDollarInFromJSON(
5565
+ export function orInFromJSON(
5645
5566
  jsonString: string,
5646
- ): SafeParseResult<DollarOrDollarIn, SDKValidationError> {
5567
+ ): SafeParseResult<OrIn, SDKValidationError> {
5647
5568
  return safeParse(
5648
5569
  jsonString,
5649
- (x) => DollarOrDollarIn$inboundSchema.parse(JSON.parse(x)),
5650
- `Failed to parse 'DollarOrDollarIn' from JSON`,
5570
+ (x) => OrIn$inboundSchema.parse(JSON.parse(x)),
5571
+ `Failed to parse 'OrIn' from JSON`,
5651
5572
  );
5652
5573
  }
5653
5574
 
5654
5575
  /** @internal */
5655
- export const DollarOrDollarLte$inboundSchema: z.ZodType<
5656
- DollarOrDollarLte,
5657
- z.ZodTypeDef,
5658
- unknown
5659
- > = z.object({
5660
- $lte: z.number(),
5661
- }).transform((v) => {
5662
- return remap$(v, {
5663
- "$lte": "dollarLte",
5576
+ export const OrLte$inboundSchema: z.ZodType<OrLte, z.ZodTypeDef, unknown> = z
5577
+ .object({
5578
+ lte: z.number(),
5664
5579
  });
5665
- });
5666
5580
 
5667
5581
  /** @internal */
5668
- export type DollarOrDollarLte$Outbound = {
5669
- $lte: number;
5582
+ export type OrLte$Outbound = {
5583
+ lte: number;
5670
5584
  };
5671
5585
 
5672
5586
  /** @internal */
5673
- export const DollarOrDollarLte$outboundSchema: z.ZodType<
5674
- DollarOrDollarLte$Outbound,
5587
+ export const OrLte$outboundSchema: z.ZodType<
5588
+ OrLte$Outbound,
5675
5589
  z.ZodTypeDef,
5676
- DollarOrDollarLte
5590
+ OrLte
5677
5591
  > = z.object({
5678
- dollarLte: z.number(),
5679
- }).transform((v) => {
5680
- return remap$(v, {
5681
- dollarLte: "$lte",
5682
- });
5592
+ lte: z.number(),
5683
5593
  });
5684
5594
 
5685
5595
  /**
5686
5596
  * @internal
5687
5597
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5688
5598
  */
5689
- export namespace DollarOrDollarLte$ {
5690
- /** @deprecated use `DollarOrDollarLte$inboundSchema` instead. */
5691
- export const inboundSchema = DollarOrDollarLte$inboundSchema;
5692
- /** @deprecated use `DollarOrDollarLte$outboundSchema` instead. */
5693
- export const outboundSchema = DollarOrDollarLte$outboundSchema;
5694
- /** @deprecated use `DollarOrDollarLte$Outbound` instead. */
5695
- export type Outbound = DollarOrDollarLte$Outbound;
5599
+ export namespace OrLte$ {
5600
+ /** @deprecated use `OrLte$inboundSchema` instead. */
5601
+ export const inboundSchema = OrLte$inboundSchema;
5602
+ /** @deprecated use `OrLte$outboundSchema` instead. */
5603
+ export const outboundSchema = OrLte$outboundSchema;
5604
+ /** @deprecated use `OrLte$Outbound` instead. */
5605
+ export type Outbound = OrLte$Outbound;
5696
5606
  }
5697
5607
 
5698
- export function dollarOrDollarLteToJSON(
5699
- dollarOrDollarLte: DollarOrDollarLte,
5700
- ): string {
5701
- return JSON.stringify(
5702
- DollarOrDollarLte$outboundSchema.parse(dollarOrDollarLte),
5703
- );
5608
+ export function orLteToJSON(orLte: OrLte): string {
5609
+ return JSON.stringify(OrLte$outboundSchema.parse(orLte));
5704
5610
  }
5705
5611
 
5706
- export function dollarOrDollarLteFromJSON(
5612
+ export function orLteFromJSON(
5707
5613
  jsonString: string,
5708
- ): SafeParseResult<DollarOrDollarLte, SDKValidationError> {
5614
+ ): SafeParseResult<OrLte, SDKValidationError> {
5709
5615
  return safeParse(
5710
5616
  jsonString,
5711
- (x) => DollarOrDollarLte$inboundSchema.parse(JSON.parse(x)),
5712
- `Failed to parse 'DollarOrDollarLte' from JSON`,
5617
+ (x) => OrLte$inboundSchema.parse(JSON.parse(x)),
5618
+ `Failed to parse 'OrLte' from JSON`,
5713
5619
  );
5714
5620
  }
5715
5621
 
5716
5622
  /** @internal */
5717
- export const DollarOrDollarLt$inboundSchema: z.ZodType<
5718
- DollarOrDollarLt,
5719
- z.ZodTypeDef,
5720
- unknown
5721
- > = z.object({
5722
- $lt: z.number(),
5723
- }).transform((v) => {
5724
- return remap$(v, {
5725
- "$lt": "dollarLt",
5623
+ export const OrLt$inboundSchema: z.ZodType<OrLt, z.ZodTypeDef, unknown> = z
5624
+ .object({
5625
+ lt: z.number(),
5726
5626
  });
5727
- });
5728
5627
 
5729
5628
  /** @internal */
5730
- export type DollarOrDollarLt$Outbound = {
5731
- $lt: number;
5629
+ export type OrLt$Outbound = {
5630
+ lt: number;
5732
5631
  };
5733
5632
 
5734
5633
  /** @internal */
5735
- export const DollarOrDollarLt$outboundSchema: z.ZodType<
5736
- DollarOrDollarLt$Outbound,
5737
- z.ZodTypeDef,
5738
- DollarOrDollarLt
5739
- > = z.object({
5740
- dollarLt: z.number(),
5741
- }).transform((v) => {
5742
- return remap$(v, {
5743
- dollarLt: "$lt",
5634
+ export const OrLt$outboundSchema: z.ZodType<OrLt$Outbound, z.ZodTypeDef, OrLt> =
5635
+ z.object({
5636
+ lt: z.number(),
5744
5637
  });
5745
- });
5746
5638
 
5747
5639
  /**
5748
5640
  * @internal
5749
5641
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5750
5642
  */
5751
- export namespace DollarOrDollarLt$ {
5752
- /** @deprecated use `DollarOrDollarLt$inboundSchema` instead. */
5753
- export const inboundSchema = DollarOrDollarLt$inboundSchema;
5754
- /** @deprecated use `DollarOrDollarLt$outboundSchema` instead. */
5755
- export const outboundSchema = DollarOrDollarLt$outboundSchema;
5756
- /** @deprecated use `DollarOrDollarLt$Outbound` instead. */
5757
- export type Outbound = DollarOrDollarLt$Outbound;
5643
+ export namespace OrLt$ {
5644
+ /** @deprecated use `OrLt$inboundSchema` instead. */
5645
+ export const inboundSchema = OrLt$inboundSchema;
5646
+ /** @deprecated use `OrLt$outboundSchema` instead. */
5647
+ export const outboundSchema = OrLt$outboundSchema;
5648
+ /** @deprecated use `OrLt$Outbound` instead. */
5649
+ export type Outbound = OrLt$Outbound;
5758
5650
  }
5759
5651
 
5760
- export function dollarOrDollarLtToJSON(
5761
- dollarOrDollarLt: DollarOrDollarLt,
5762
- ): string {
5763
- return JSON.stringify(
5764
- DollarOrDollarLt$outboundSchema.parse(dollarOrDollarLt),
5765
- );
5652
+ export function orLtToJSON(orLt: OrLt): string {
5653
+ return JSON.stringify(OrLt$outboundSchema.parse(orLt));
5766
5654
  }
5767
5655
 
5768
- export function dollarOrDollarLtFromJSON(
5656
+ export function orLtFromJSON(
5769
5657
  jsonString: string,
5770
- ): SafeParseResult<DollarOrDollarLt, SDKValidationError> {
5658
+ ): SafeParseResult<OrLt, SDKValidationError> {
5771
5659
  return safeParse(
5772
5660
  jsonString,
5773
- (x) => DollarOrDollarLt$inboundSchema.parse(JSON.parse(x)),
5774
- `Failed to parse 'DollarOrDollarLt' from JSON`,
5661
+ (x) => OrLt$inboundSchema.parse(JSON.parse(x)),
5662
+ `Failed to parse 'OrLt' from JSON`,
5775
5663
  );
5776
5664
  }
5777
5665
 
5778
5666
  /** @internal */
5779
- export const DollarOrDollarGte$inboundSchema: z.ZodType<
5780
- DollarOrDollarGte,
5781
- z.ZodTypeDef,
5782
- unknown
5783
- > = z.object({
5784
- $gte: z.number(),
5785
- }).transform((v) => {
5786
- return remap$(v, {
5787
- "$gte": "dollarGte",
5667
+ export const OrGte$inboundSchema: z.ZodType<OrGte, z.ZodTypeDef, unknown> = z
5668
+ .object({
5669
+ gte: z.number(),
5788
5670
  });
5789
- });
5790
5671
 
5791
5672
  /** @internal */
5792
- export type DollarOrDollarGte$Outbound = {
5793
- $gte: number;
5673
+ export type OrGte$Outbound = {
5674
+ gte: number;
5794
5675
  };
5795
5676
 
5796
5677
  /** @internal */
5797
- export const DollarOrDollarGte$outboundSchema: z.ZodType<
5798
- DollarOrDollarGte$Outbound,
5678
+ export const OrGte$outboundSchema: z.ZodType<
5679
+ OrGte$Outbound,
5799
5680
  z.ZodTypeDef,
5800
- DollarOrDollarGte
5681
+ OrGte
5801
5682
  > = z.object({
5802
- dollarGte: z.number(),
5803
- }).transform((v) => {
5804
- return remap$(v, {
5805
- dollarGte: "$gte",
5806
- });
5683
+ gte: z.number(),
5807
5684
  });
5808
5685
 
5809
5686
  /**
5810
5687
  * @internal
5811
5688
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5812
5689
  */
5813
- export namespace DollarOrDollarGte$ {
5814
- /** @deprecated use `DollarOrDollarGte$inboundSchema` instead. */
5815
- export const inboundSchema = DollarOrDollarGte$inboundSchema;
5816
- /** @deprecated use `DollarOrDollarGte$outboundSchema` instead. */
5817
- export const outboundSchema = DollarOrDollarGte$outboundSchema;
5818
- /** @deprecated use `DollarOrDollarGte$Outbound` instead. */
5819
- export type Outbound = DollarOrDollarGte$Outbound;
5690
+ export namespace OrGte$ {
5691
+ /** @deprecated use `OrGte$inboundSchema` instead. */
5692
+ export const inboundSchema = OrGte$inboundSchema;
5693
+ /** @deprecated use `OrGte$outboundSchema` instead. */
5694
+ export const outboundSchema = OrGte$outboundSchema;
5695
+ /** @deprecated use `OrGte$Outbound` instead. */
5696
+ export type Outbound = OrGte$Outbound;
5820
5697
  }
5821
5698
 
5822
- export function dollarOrDollarGteToJSON(
5823
- dollarOrDollarGte: DollarOrDollarGte,
5824
- ): string {
5825
- return JSON.stringify(
5826
- DollarOrDollarGte$outboundSchema.parse(dollarOrDollarGte),
5827
- );
5699
+ export function orGteToJSON(orGte: OrGte): string {
5700
+ return JSON.stringify(OrGte$outboundSchema.parse(orGte));
5828
5701
  }
5829
5702
 
5830
- export function dollarOrDollarGteFromJSON(
5703
+ export function orGteFromJSON(
5831
5704
  jsonString: string,
5832
- ): SafeParseResult<DollarOrDollarGte, SDKValidationError> {
5705
+ ): SafeParseResult<OrGte, SDKValidationError> {
5833
5706
  return safeParse(
5834
5707
  jsonString,
5835
- (x) => DollarOrDollarGte$inboundSchema.parse(JSON.parse(x)),
5836
- `Failed to parse 'DollarOrDollarGte' from JSON`,
5708
+ (x) => OrGte$inboundSchema.parse(JSON.parse(x)),
5709
+ `Failed to parse 'OrGte' from JSON`,
5837
5710
  );
5838
5711
  }
5839
5712
 
5840
5713
  /** @internal */
5841
- export const DollarOr3$inboundSchema: z.ZodType<
5842
- DollarOr3,
5843
- z.ZodTypeDef,
5844
- unknown
5845
- > = z.object({
5846
- $gt: z.number(),
5847
- }).transform((v) => {
5848
- return remap$(v, {
5849
- "$gt": "dollarGt",
5714
+ export const Or3$inboundSchema: z.ZodType<Or3, z.ZodTypeDef, unknown> = z
5715
+ .object({
5716
+ gt: z.number(),
5850
5717
  });
5851
- });
5852
5718
 
5853
5719
  /** @internal */
5854
- export type DollarOr3$Outbound = {
5855
- $gt: number;
5720
+ export type Or3$Outbound = {
5721
+ gt: number;
5856
5722
  };
5857
5723
 
5858
5724
  /** @internal */
5859
- export const DollarOr3$outboundSchema: z.ZodType<
5860
- DollarOr3$Outbound,
5861
- z.ZodTypeDef,
5862
- DollarOr3
5863
- > = z.object({
5864
- dollarGt: z.number(),
5865
- }).transform((v) => {
5866
- return remap$(v, {
5867
- dollarGt: "$gt",
5725
+ export const Or3$outboundSchema: z.ZodType<Or3$Outbound, z.ZodTypeDef, Or3> = z
5726
+ .object({
5727
+ gt: z.number(),
5868
5728
  });
5869
- });
5870
5729
 
5871
5730
  /**
5872
5731
  * @internal
5873
5732
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5874
5733
  */
5875
- export namespace DollarOr3$ {
5876
- /** @deprecated use `DollarOr3$inboundSchema` instead. */
5877
- export const inboundSchema = DollarOr3$inboundSchema;
5878
- /** @deprecated use `DollarOr3$outboundSchema` instead. */
5879
- export const outboundSchema = DollarOr3$outboundSchema;
5880
- /** @deprecated use `DollarOr3$Outbound` instead. */
5881
- export type Outbound = DollarOr3$Outbound;
5734
+ export namespace Or3$ {
5735
+ /** @deprecated use `Or3$inboundSchema` instead. */
5736
+ export const inboundSchema = Or3$inboundSchema;
5737
+ /** @deprecated use `Or3$outboundSchema` instead. */
5738
+ export const outboundSchema = Or3$outboundSchema;
5739
+ /** @deprecated use `Or3$Outbound` instead. */
5740
+ export type Outbound = Or3$Outbound;
5882
5741
  }
5883
5742
 
5884
- export function dollarOr3ToJSON(dollarOr3: DollarOr3): string {
5885
- return JSON.stringify(DollarOr3$outboundSchema.parse(dollarOr3));
5743
+ export function or3ToJSON(or3: Or3): string {
5744
+ return JSON.stringify(Or3$outboundSchema.parse(or3));
5886
5745
  }
5887
5746
 
5888
- export function dollarOr3FromJSON(
5747
+ export function or3FromJSON(
5889
5748
  jsonString: string,
5890
- ): SafeParseResult<DollarOr3, SDKValidationError> {
5749
+ ): SafeParseResult<Or3, SDKValidationError> {
5891
5750
  return safeParse(
5892
5751
  jsonString,
5893
- (x) => DollarOr3$inboundSchema.parse(JSON.parse(x)),
5894
- `Failed to parse 'DollarOr3' from JSON`,
5752
+ (x) => Or3$inboundSchema.parse(JSON.parse(x)),
5753
+ `Failed to parse 'Or3' from JSON`,
5895
5754
  );
5896
5755
  }
5897
5756
 
5898
5757
  /** @internal */
5899
- export const DeploymentGetConfigDollarOrDollarNe$inboundSchema: z.ZodType<
5900
- DeploymentGetConfigDollarOrDollarNe,
5758
+ export const DeploymentGetConfigOrNe$inboundSchema: z.ZodType<
5759
+ DeploymentGetConfigOrNe,
5901
5760
  z.ZodTypeDef,
5902
5761
  unknown
5903
5762
  > = z.union([z.string(), z.number(), z.boolean()]);
5904
5763
 
5905
5764
  /** @internal */
5906
- export type DeploymentGetConfigDollarOrDollarNe$Outbound =
5907
- | string
5908
- | number
5909
- | boolean;
5765
+ export type DeploymentGetConfigOrNe$Outbound = string | number | boolean;
5910
5766
 
5911
5767
  /** @internal */
5912
- export const DeploymentGetConfigDollarOrDollarNe$outboundSchema: z.ZodType<
5913
- DeploymentGetConfigDollarOrDollarNe$Outbound,
5768
+ export const DeploymentGetConfigOrNe$outboundSchema: z.ZodType<
5769
+ DeploymentGetConfigOrNe$Outbound,
5914
5770
  z.ZodTypeDef,
5915
- DeploymentGetConfigDollarOrDollarNe
5771
+ DeploymentGetConfigOrNe
5916
5772
  > = z.union([z.string(), z.number(), z.boolean()]);
5917
5773
 
5918
5774
  /**
5919
5775
  * @internal
5920
5776
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5921
5777
  */
5922
- export namespace DeploymentGetConfigDollarOrDollarNe$ {
5923
- /** @deprecated use `DeploymentGetConfigDollarOrDollarNe$inboundSchema` instead. */
5924
- export const inboundSchema =
5925
- DeploymentGetConfigDollarOrDollarNe$inboundSchema;
5926
- /** @deprecated use `DeploymentGetConfigDollarOrDollarNe$outboundSchema` instead. */
5927
- export const outboundSchema =
5928
- DeploymentGetConfigDollarOrDollarNe$outboundSchema;
5929
- /** @deprecated use `DeploymentGetConfigDollarOrDollarNe$Outbound` instead. */
5930
- export type Outbound = DeploymentGetConfigDollarOrDollarNe$Outbound;
5778
+ export namespace DeploymentGetConfigOrNe$ {
5779
+ /** @deprecated use `DeploymentGetConfigOrNe$inboundSchema` instead. */
5780
+ export const inboundSchema = DeploymentGetConfigOrNe$inboundSchema;
5781
+ /** @deprecated use `DeploymentGetConfigOrNe$outboundSchema` instead. */
5782
+ export const outboundSchema = DeploymentGetConfigOrNe$outboundSchema;
5783
+ /** @deprecated use `DeploymentGetConfigOrNe$Outbound` instead. */
5784
+ export type Outbound = DeploymentGetConfigOrNe$Outbound;
5931
5785
  }
5932
5786
 
5933
- export function deploymentGetConfigDollarOrDollarNeToJSON(
5934
- deploymentGetConfigDollarOrDollarNe: DeploymentGetConfigDollarOrDollarNe,
5787
+ export function deploymentGetConfigOrNeToJSON(
5788
+ deploymentGetConfigOrNe: DeploymentGetConfigOrNe,
5935
5789
  ): string {
5936
5790
  return JSON.stringify(
5937
- DeploymentGetConfigDollarOrDollarNe$outboundSchema.parse(
5938
- deploymentGetConfigDollarOrDollarNe,
5939
- ),
5791
+ DeploymentGetConfigOrNe$outboundSchema.parse(deploymentGetConfigOrNe),
5940
5792
  );
5941
5793
  }
5942
5794
 
5943
- export function deploymentGetConfigDollarOrDollarNeFromJSON(
5795
+ export function deploymentGetConfigOrNeFromJSON(
5944
5796
  jsonString: string,
5945
- ): SafeParseResult<DeploymentGetConfigDollarOrDollarNe, SDKValidationError> {
5797
+ ): SafeParseResult<DeploymentGetConfigOrNe, SDKValidationError> {
5946
5798
  return safeParse(
5947
5799
  jsonString,
5948
- (x) =>
5949
- DeploymentGetConfigDollarOrDollarNe$inboundSchema.parse(JSON.parse(x)),
5950
- `Failed to parse 'DeploymentGetConfigDollarOrDollarNe' from JSON`,
5800
+ (x) => DeploymentGetConfigOrNe$inboundSchema.parse(JSON.parse(x)),
5801
+ `Failed to parse 'DeploymentGetConfigOrNe' from JSON`,
5951
5802
  );
5952
5803
  }
5953
5804
 
5954
5805
  /** @internal */
5955
- export const DollarOrDollarNe$inboundSchema: z.ZodType<
5956
- DollarOrDollarNe,
5957
- z.ZodTypeDef,
5958
- unknown
5959
- > = z.object({
5960
- $ne: z.union([z.string(), z.number(), z.boolean()]),
5961
- }).transform((v) => {
5962
- return remap$(v, {
5963
- "$ne": "dollarNe",
5806
+ export const OrNe$inboundSchema: z.ZodType<OrNe, z.ZodTypeDef, unknown> = z
5807
+ .object({
5808
+ ne: z.union([z.string(), z.number(), z.boolean()]),
5964
5809
  });
5965
- });
5966
5810
 
5967
5811
  /** @internal */
5968
- export type DollarOrDollarNe$Outbound = {
5969
- $ne: string | number | boolean;
5812
+ export type OrNe$Outbound = {
5813
+ ne: string | number | boolean;
5970
5814
  };
5971
5815
 
5972
5816
  /** @internal */
5973
- export const DollarOrDollarNe$outboundSchema: z.ZodType<
5974
- DollarOrDollarNe$Outbound,
5975
- z.ZodTypeDef,
5976
- DollarOrDollarNe
5977
- > = z.object({
5978
- dollarNe: z.union([z.string(), z.number(), z.boolean()]),
5979
- }).transform((v) => {
5980
- return remap$(v, {
5981
- dollarNe: "$ne",
5817
+ export const OrNe$outboundSchema: z.ZodType<OrNe$Outbound, z.ZodTypeDef, OrNe> =
5818
+ z.object({
5819
+ ne: z.union([z.string(), z.number(), z.boolean()]),
5982
5820
  });
5983
- });
5984
5821
 
5985
5822
  /**
5986
5823
  * @internal
5987
5824
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5988
5825
  */
5989
- export namespace DollarOrDollarNe$ {
5990
- /** @deprecated use `DollarOrDollarNe$inboundSchema` instead. */
5991
- export const inboundSchema = DollarOrDollarNe$inboundSchema;
5992
- /** @deprecated use `DollarOrDollarNe$outboundSchema` instead. */
5993
- export const outboundSchema = DollarOrDollarNe$outboundSchema;
5994
- /** @deprecated use `DollarOrDollarNe$Outbound` instead. */
5995
- export type Outbound = DollarOrDollarNe$Outbound;
5826
+ export namespace OrNe$ {
5827
+ /** @deprecated use `OrNe$inboundSchema` instead. */
5828
+ export const inboundSchema = OrNe$inboundSchema;
5829
+ /** @deprecated use `OrNe$outboundSchema` instead. */
5830
+ export const outboundSchema = OrNe$outboundSchema;
5831
+ /** @deprecated use `OrNe$Outbound` instead. */
5832
+ export type Outbound = OrNe$Outbound;
5996
5833
  }
5997
5834
 
5998
- export function dollarOrDollarNeToJSON(
5999
- dollarOrDollarNe: DollarOrDollarNe,
6000
- ): string {
6001
- return JSON.stringify(
6002
- DollarOrDollarNe$outboundSchema.parse(dollarOrDollarNe),
6003
- );
5835
+ export function orNeToJSON(orNe: OrNe): string {
5836
+ return JSON.stringify(OrNe$outboundSchema.parse(orNe));
6004
5837
  }
6005
5838
 
6006
- export function dollarOrDollarNeFromJSON(
5839
+ export function orNeFromJSON(
6007
5840
  jsonString: string,
6008
- ): SafeParseResult<DollarOrDollarNe, SDKValidationError> {
5841
+ ): SafeParseResult<OrNe, SDKValidationError> {
6009
5842
  return safeParse(
6010
5843
  jsonString,
6011
- (x) => DollarOrDollarNe$inboundSchema.parse(JSON.parse(x)),
6012
- `Failed to parse 'DollarOrDollarNe' from JSON`,
5844
+ (x) => OrNe$inboundSchema.parse(JSON.parse(x)),
5845
+ `Failed to parse 'OrNe' from JSON`,
6013
5846
  );
6014
5847
  }
6015
5848
 
6016
5849
  /** @internal */
6017
- export const DeploymentGetConfigDollarOrDollarEq$inboundSchema: z.ZodType<
6018
- DeploymentGetConfigDollarOrDollarEq,
5850
+ export const DeploymentGetConfigOrEq$inboundSchema: z.ZodType<
5851
+ DeploymentGetConfigOrEq,
6019
5852
  z.ZodTypeDef,
6020
5853
  unknown
6021
5854
  > = z.union([z.string(), z.number(), z.boolean()]);
6022
5855
 
6023
5856
  /** @internal */
6024
- export type DeploymentGetConfigDollarOrDollarEq$Outbound =
6025
- | string
6026
- | number
6027
- | boolean;
5857
+ export type DeploymentGetConfigOrEq$Outbound = string | number | boolean;
6028
5858
 
6029
5859
  /** @internal */
6030
- export const DeploymentGetConfigDollarOrDollarEq$outboundSchema: z.ZodType<
6031
- DeploymentGetConfigDollarOrDollarEq$Outbound,
5860
+ export const DeploymentGetConfigOrEq$outboundSchema: z.ZodType<
5861
+ DeploymentGetConfigOrEq$Outbound,
6032
5862
  z.ZodTypeDef,
6033
- DeploymentGetConfigDollarOrDollarEq
5863
+ DeploymentGetConfigOrEq
6034
5864
  > = z.union([z.string(), z.number(), z.boolean()]);
6035
5865
 
6036
5866
  /**
6037
5867
  * @internal
6038
5868
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6039
5869
  */
6040
- export namespace DeploymentGetConfigDollarOrDollarEq$ {
6041
- /** @deprecated use `DeploymentGetConfigDollarOrDollarEq$inboundSchema` instead. */
6042
- export const inboundSchema =
6043
- DeploymentGetConfigDollarOrDollarEq$inboundSchema;
6044
- /** @deprecated use `DeploymentGetConfigDollarOrDollarEq$outboundSchema` instead. */
6045
- export const outboundSchema =
6046
- DeploymentGetConfigDollarOrDollarEq$outboundSchema;
6047
- /** @deprecated use `DeploymentGetConfigDollarOrDollarEq$Outbound` instead. */
6048
- export type Outbound = DeploymentGetConfigDollarOrDollarEq$Outbound;
5870
+ export namespace DeploymentGetConfigOrEq$ {
5871
+ /** @deprecated use `DeploymentGetConfigOrEq$inboundSchema` instead. */
5872
+ export const inboundSchema = DeploymentGetConfigOrEq$inboundSchema;
5873
+ /** @deprecated use `DeploymentGetConfigOrEq$outboundSchema` instead. */
5874
+ export const outboundSchema = DeploymentGetConfigOrEq$outboundSchema;
5875
+ /** @deprecated use `DeploymentGetConfigOrEq$Outbound` instead. */
5876
+ export type Outbound = DeploymentGetConfigOrEq$Outbound;
6049
5877
  }
6050
5878
 
6051
- export function deploymentGetConfigDollarOrDollarEqToJSON(
6052
- deploymentGetConfigDollarOrDollarEq: DeploymentGetConfigDollarOrDollarEq,
5879
+ export function deploymentGetConfigOrEqToJSON(
5880
+ deploymentGetConfigOrEq: DeploymentGetConfigOrEq,
6053
5881
  ): string {
6054
5882
  return JSON.stringify(
6055
- DeploymentGetConfigDollarOrDollarEq$outboundSchema.parse(
6056
- deploymentGetConfigDollarOrDollarEq,
6057
- ),
5883
+ DeploymentGetConfigOrEq$outboundSchema.parse(deploymentGetConfigOrEq),
6058
5884
  );
6059
5885
  }
6060
5886
 
6061
- export function deploymentGetConfigDollarOrDollarEqFromJSON(
5887
+ export function deploymentGetConfigOrEqFromJSON(
6062
5888
  jsonString: string,
6063
- ): SafeParseResult<DeploymentGetConfigDollarOrDollarEq, SDKValidationError> {
5889
+ ): SafeParseResult<DeploymentGetConfigOrEq, SDKValidationError> {
6064
5890
  return safeParse(
6065
5891
  jsonString,
6066
- (x) =>
6067
- DeploymentGetConfigDollarOrDollarEq$inboundSchema.parse(JSON.parse(x)),
6068
- `Failed to parse 'DeploymentGetConfigDollarOrDollarEq' from JSON`,
5892
+ (x) => DeploymentGetConfigOrEq$inboundSchema.parse(JSON.parse(x)),
5893
+ `Failed to parse 'DeploymentGetConfigOrEq' from JSON`,
6069
5894
  );
6070
5895
  }
6071
5896
 
6072
5897
  /** @internal */
6073
- export const DollarOrDollarEq$inboundSchema: z.ZodType<
6074
- DollarOrDollarEq,
6075
- z.ZodTypeDef,
6076
- unknown
6077
- > = z.object({
6078
- $eq: z.union([z.string(), z.number(), z.boolean()]),
6079
- }).transform((v) => {
6080
- return remap$(v, {
6081
- "$eq": "dollarEq",
5898
+ export const OrEq$inboundSchema: z.ZodType<OrEq, z.ZodTypeDef, unknown> = z
5899
+ .object({
5900
+ eq: z.union([z.string(), z.number(), z.boolean()]),
6082
5901
  });
6083
- });
6084
5902
 
6085
5903
  /** @internal */
6086
- export type DollarOrDollarEq$Outbound = {
6087
- $eq: string | number | boolean;
5904
+ export type OrEq$Outbound = {
5905
+ eq: string | number | boolean;
6088
5906
  };
6089
5907
 
6090
5908
  /** @internal */
6091
- export const DollarOrDollarEq$outboundSchema: z.ZodType<
6092
- DollarOrDollarEq$Outbound,
6093
- z.ZodTypeDef,
6094
- DollarOrDollarEq
6095
- > = z.object({
6096
- dollarEq: z.union([z.string(), z.number(), z.boolean()]),
6097
- }).transform((v) => {
6098
- return remap$(v, {
6099
- dollarEq: "$eq",
5909
+ export const OrEq$outboundSchema: z.ZodType<OrEq$Outbound, z.ZodTypeDef, OrEq> =
5910
+ z.object({
5911
+ eq: z.union([z.string(), z.number(), z.boolean()]),
6100
5912
  });
6101
- });
6102
5913
 
6103
5914
  /**
6104
5915
  * @internal
6105
5916
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6106
5917
  */
6107
- export namespace DollarOrDollarEq$ {
6108
- /** @deprecated use `DollarOrDollarEq$inboundSchema` instead. */
6109
- export const inboundSchema = DollarOrDollarEq$inboundSchema;
6110
- /** @deprecated use `DollarOrDollarEq$outboundSchema` instead. */
6111
- export const outboundSchema = DollarOrDollarEq$outboundSchema;
6112
- /** @deprecated use `DollarOrDollarEq$Outbound` instead. */
6113
- export type Outbound = DollarOrDollarEq$Outbound;
5918
+ export namespace OrEq$ {
5919
+ /** @deprecated use `OrEq$inboundSchema` instead. */
5920
+ export const inboundSchema = OrEq$inboundSchema;
5921
+ /** @deprecated use `OrEq$outboundSchema` instead. */
5922
+ export const outboundSchema = OrEq$outboundSchema;
5923
+ /** @deprecated use `OrEq$Outbound` instead. */
5924
+ export type Outbound = OrEq$Outbound;
6114
5925
  }
6115
5926
 
6116
- export function dollarOrDollarEqToJSON(
6117
- dollarOrDollarEq: DollarOrDollarEq,
6118
- ): string {
6119
- return JSON.stringify(
6120
- DollarOrDollarEq$outboundSchema.parse(dollarOrDollarEq),
6121
- );
5927
+ export function orEqToJSON(orEq: OrEq): string {
5928
+ return JSON.stringify(OrEq$outboundSchema.parse(orEq));
6122
5929
  }
6123
5930
 
6124
- export function dollarOrDollarEqFromJSON(
5931
+ export function orEqFromJSON(
6125
5932
  jsonString: string,
6126
- ): SafeParseResult<DollarOrDollarEq, SDKValidationError> {
5933
+ ): SafeParseResult<OrEq, SDKValidationError> {
6127
5934
  return safeParse(
6128
5935
  jsonString,
6129
- (x) => DollarOrDollarEq$inboundSchema.parse(JSON.parse(x)),
6130
- `Failed to parse 'DollarOrDollarEq' from JSON`,
5936
+ (x) => OrEq$inboundSchema.parse(JSON.parse(x)),
5937
+ `Failed to parse 'OrEq' from JSON`,
6131
5938
  );
6132
5939
  }
6133
5940
 
6134
5941
  /** @internal */
6135
- export const KnowledgeFilterDollarOr$inboundSchema: z.ZodType<
6136
- KnowledgeFilterDollarOr,
5942
+ export const KnowledgeFilterOr$inboundSchema: z.ZodType<
5943
+ KnowledgeFilterOr,
6137
5944
  z.ZodTypeDef,
6138
5945
  unknown
6139
5946
  > = z.union([
6140
- z.lazy(() => DollarOrDollarEq$inboundSchema),
6141
- z.lazy(() => DollarOrDollarNe$inboundSchema),
6142
- z.lazy(() => DollarOr3$inboundSchema),
6143
- z.lazy(() => DollarOrDollarGte$inboundSchema),
6144
- z.lazy(() => DollarOrDollarLt$inboundSchema),
6145
- z.lazy(() => DollarOrDollarLte$inboundSchema),
6146
- z.lazy(() => DollarOrDollarIn$inboundSchema),
6147
- z.lazy(() => DollarOrDollarNin$inboundSchema),
6148
- z.lazy(() => DollarOrDollarExists$inboundSchema),
5947
+ z.lazy(() => OrEq$inboundSchema),
5948
+ z.lazy(() => OrNe$inboundSchema),
5949
+ z.lazy(() => Or3$inboundSchema),
5950
+ z.lazy(() => OrGte$inboundSchema),
5951
+ z.lazy(() => OrLt$inboundSchema),
5952
+ z.lazy(() => OrLte$inboundSchema),
5953
+ z.lazy(() => OrIn$inboundSchema),
5954
+ z.lazy(() => OrNin$inboundSchema),
5955
+ z.lazy(() => OrExists$inboundSchema),
6149
5956
  ]);
6150
5957
 
6151
5958
  /** @internal */
6152
- export type KnowledgeFilterDollarOr$Outbound =
6153
- | DollarOrDollarEq$Outbound
6154
- | DollarOrDollarNe$Outbound
6155
- | DollarOr3$Outbound
6156
- | DollarOrDollarGte$Outbound
6157
- | DollarOrDollarLt$Outbound
6158
- | DollarOrDollarLte$Outbound
6159
- | DollarOrDollarIn$Outbound
6160
- | DollarOrDollarNin$Outbound
6161
- | DollarOrDollarExists$Outbound;
5959
+ export type KnowledgeFilterOr$Outbound =
5960
+ | OrEq$Outbound
5961
+ | OrNe$Outbound
5962
+ | Or3$Outbound
5963
+ | OrGte$Outbound
5964
+ | OrLt$Outbound
5965
+ | OrLte$Outbound
5966
+ | OrIn$Outbound
5967
+ | OrNin$Outbound
5968
+ | OrExists$Outbound;
6162
5969
 
6163
5970
  /** @internal */
6164
- export const KnowledgeFilterDollarOr$outboundSchema: z.ZodType<
6165
- KnowledgeFilterDollarOr$Outbound,
5971
+ export const KnowledgeFilterOr$outboundSchema: z.ZodType<
5972
+ KnowledgeFilterOr$Outbound,
6166
5973
  z.ZodTypeDef,
6167
- KnowledgeFilterDollarOr
5974
+ KnowledgeFilterOr
6168
5975
  > = z.union([
6169
- z.lazy(() => DollarOrDollarEq$outboundSchema),
6170
- z.lazy(() => DollarOrDollarNe$outboundSchema),
6171
- z.lazy(() => DollarOr3$outboundSchema),
6172
- z.lazy(() => DollarOrDollarGte$outboundSchema),
6173
- z.lazy(() => DollarOrDollarLt$outboundSchema),
6174
- z.lazy(() => DollarOrDollarLte$outboundSchema),
6175
- z.lazy(() => DollarOrDollarIn$outboundSchema),
6176
- z.lazy(() => DollarOrDollarNin$outboundSchema),
6177
- z.lazy(() => DollarOrDollarExists$outboundSchema),
5976
+ z.lazy(() => OrEq$outboundSchema),
5977
+ z.lazy(() => OrNe$outboundSchema),
5978
+ z.lazy(() => Or3$outboundSchema),
5979
+ z.lazy(() => OrGte$outboundSchema),
5980
+ z.lazy(() => OrLt$outboundSchema),
5981
+ z.lazy(() => OrLte$outboundSchema),
5982
+ z.lazy(() => OrIn$outboundSchema),
5983
+ z.lazy(() => OrNin$outboundSchema),
5984
+ z.lazy(() => OrExists$outboundSchema),
6178
5985
  ]);
6179
5986
 
6180
5987
  /**
6181
5988
  * @internal
6182
5989
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6183
5990
  */
6184
- export namespace KnowledgeFilterDollarOr$ {
6185
- /** @deprecated use `KnowledgeFilterDollarOr$inboundSchema` instead. */
6186
- export const inboundSchema = KnowledgeFilterDollarOr$inboundSchema;
6187
- /** @deprecated use `KnowledgeFilterDollarOr$outboundSchema` instead. */
6188
- export const outboundSchema = KnowledgeFilterDollarOr$outboundSchema;
6189
- /** @deprecated use `KnowledgeFilterDollarOr$Outbound` instead. */
6190
- export type Outbound = KnowledgeFilterDollarOr$Outbound;
5991
+ export namespace KnowledgeFilterOr$ {
5992
+ /** @deprecated use `KnowledgeFilterOr$inboundSchema` instead. */
5993
+ export const inboundSchema = KnowledgeFilterOr$inboundSchema;
5994
+ /** @deprecated use `KnowledgeFilterOr$outboundSchema` instead. */
5995
+ export const outboundSchema = KnowledgeFilterOr$outboundSchema;
5996
+ /** @deprecated use `KnowledgeFilterOr$Outbound` instead. */
5997
+ export type Outbound = KnowledgeFilterOr$Outbound;
6191
5998
  }
6192
5999
 
6193
- export function knowledgeFilterDollarOrToJSON(
6194
- knowledgeFilterDollarOr: KnowledgeFilterDollarOr,
6000
+ export function knowledgeFilterOrToJSON(
6001
+ knowledgeFilterOr: KnowledgeFilterOr,
6195
6002
  ): string {
6196
6003
  return JSON.stringify(
6197
- KnowledgeFilterDollarOr$outboundSchema.parse(knowledgeFilterDollarOr),
6004
+ KnowledgeFilterOr$outboundSchema.parse(knowledgeFilterOr),
6198
6005
  );
6199
6006
  }
6200
6007
 
6201
- export function knowledgeFilterDollarOrFromJSON(
6008
+ export function knowledgeFilterOrFromJSON(
6202
6009
  jsonString: string,
6203
- ): SafeParseResult<KnowledgeFilterDollarOr, SDKValidationError> {
6010
+ ): SafeParseResult<KnowledgeFilterOr, SDKValidationError> {
6204
6011
  return safeParse(
6205
6012
  jsonString,
6206
- (x) => KnowledgeFilterDollarOr$inboundSchema.parse(JSON.parse(x)),
6207
- `Failed to parse 'KnowledgeFilterDollarOr' from JSON`,
6013
+ (x) => KnowledgeFilterOr$inboundSchema.parse(JSON.parse(x)),
6014
+ `Failed to parse 'KnowledgeFilterOr' from JSON`,
6208
6015
  );
6209
6016
  }
6210
6017
 
6211
6018
  /** @internal */
6212
- export const DollarOr$inboundSchema: z.ZodType<
6213
- DollarOr,
6214
- z.ZodTypeDef,
6215
- unknown
6216
- > = z.object({
6217
- $or: z.array(
6019
+ export const Or$inboundSchema: z.ZodType<Or, z.ZodTypeDef, unknown> = z.object({
6020
+ or: z.array(
6218
6021
  z.record(z.union([
6219
- z.lazy(() => DollarOrDollarEq$inboundSchema),
6022
+ z.lazy(() => OrEq$inboundSchema),
6220
6023
  z.lazy(() =>
6221
- DollarOrDollarNe$inboundSchema
6024
+ OrNe$inboundSchema
6222
6025
  ),
6223
- z.lazy(() => DollarOr3$inboundSchema),
6224
- z.lazy(() => DollarOrDollarGte$inboundSchema),
6225
- z.lazy(() => DollarOrDollarLt$inboundSchema),
6226
- z.lazy(() => DollarOrDollarLte$inboundSchema),
6227
- z.lazy(() => DollarOrDollarIn$inboundSchema),
6228
- z.lazy(() => DollarOrDollarNin$inboundSchema),
6229
- z.lazy(() => DollarOrDollarExists$inboundSchema),
6026
+ z.lazy(() => Or3$inboundSchema),
6027
+ z.lazy(() => OrGte$inboundSchema),
6028
+ z.lazy(() => OrLt$inboundSchema),
6029
+ z.lazy(() => OrLte$inboundSchema),
6030
+ z.lazy(() => OrIn$inboundSchema),
6031
+ z.lazy(() => OrNin$inboundSchema),
6032
+ z.lazy(() => OrExists$inboundSchema),
6230
6033
  ])),
6231
6034
  ),
6232
- }).transform((v) => {
6233
- return remap$(v, {
6234
- "$or": "dollarOr",
6235
- });
6236
6035
  });
6237
6036
 
6238
6037
  /** @internal */
6239
- export type DollarOr$Outbound = {
6240
- $or: Array<
6038
+ export type Or$Outbound = {
6039
+ or: Array<
6241
6040
  {
6242
6041
  [k: string]:
6243
- | DollarOrDollarEq$Outbound
6244
- | DollarOrDollarNe$Outbound
6245
- | DollarOr3$Outbound
6246
- | DollarOrDollarGte$Outbound
6247
- | DollarOrDollarLt$Outbound
6248
- | DollarOrDollarLte$Outbound
6249
- | DollarOrDollarIn$Outbound
6250
- | DollarOrDollarNin$Outbound
6251
- | DollarOrDollarExists$Outbound;
6042
+ | OrEq$Outbound
6043
+ | OrNe$Outbound
6044
+ | Or3$Outbound
6045
+ | OrGte$Outbound
6046
+ | OrLt$Outbound
6047
+ | OrLte$Outbound
6048
+ | OrIn$Outbound
6049
+ | OrNin$Outbound
6050
+ | OrExists$Outbound;
6252
6051
  }
6253
6052
  >;
6254
6053
  };
6255
6054
 
6256
6055
  /** @internal */
6257
- export const DollarOr$outboundSchema: z.ZodType<
6258
- DollarOr$Outbound,
6259
- z.ZodTypeDef,
6260
- DollarOr
6261
- > = z.object({
6262
- dollarOr: z.array(
6263
- z.record(z.union([
6264
- z.lazy(() => DollarOrDollarEq$outboundSchema),
6265
- z.lazy(() =>
6266
- DollarOrDollarNe$outboundSchema
6267
- ),
6268
- z.lazy(() => DollarOr3$outboundSchema),
6269
- z.lazy(() => DollarOrDollarGte$outboundSchema),
6270
- z.lazy(() => DollarOrDollarLt$outboundSchema),
6271
- z.lazy(() => DollarOrDollarLte$outboundSchema),
6272
- z.lazy(() => DollarOrDollarIn$outboundSchema),
6273
- z.lazy(() => DollarOrDollarNin$outboundSchema),
6274
- z.lazy(() => DollarOrDollarExists$outboundSchema),
6275
- ])),
6276
- ),
6277
- }).transform((v) => {
6278
- return remap$(v, {
6279
- dollarOr: "$or",
6056
+ export const Or$outboundSchema: z.ZodType<Or$Outbound, z.ZodTypeDef, Or> = z
6057
+ .object({
6058
+ or: z.array(
6059
+ z.record(z.union([
6060
+ z.lazy(() => OrEq$outboundSchema),
6061
+ z.lazy(() =>
6062
+ OrNe$outboundSchema
6063
+ ),
6064
+ z.lazy(() => Or3$outboundSchema),
6065
+ z.lazy(() => OrGte$outboundSchema),
6066
+ z.lazy(() => OrLt$outboundSchema),
6067
+ z.lazy(() => OrLte$outboundSchema),
6068
+ z.lazy(() => OrIn$outboundSchema),
6069
+ z.lazy(() => OrNin$outboundSchema),
6070
+ z.lazy(() => OrExists$outboundSchema),
6071
+ ])),
6072
+ ),
6280
6073
  });
6281
- });
6282
6074
 
6283
6075
  /**
6284
6076
  * @internal
6285
6077
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6286
6078
  */
6287
- export namespace DollarOr$ {
6288
- /** @deprecated use `DollarOr$inboundSchema` instead. */
6289
- export const inboundSchema = DollarOr$inboundSchema;
6290
- /** @deprecated use `DollarOr$outboundSchema` instead. */
6291
- export const outboundSchema = DollarOr$outboundSchema;
6292
- /** @deprecated use `DollarOr$Outbound` instead. */
6293
- export type Outbound = DollarOr$Outbound;
6079
+ export namespace Or$ {
6080
+ /** @deprecated use `Or$inboundSchema` instead. */
6081
+ export const inboundSchema = Or$inboundSchema;
6082
+ /** @deprecated use `Or$outboundSchema` instead. */
6083
+ export const outboundSchema = Or$outboundSchema;
6084
+ /** @deprecated use `Or$Outbound` instead. */
6085
+ export type Outbound = Or$Outbound;
6294
6086
  }
6295
6087
 
6296
- export function dollarOrToJSON(dollarOr: DollarOr): string {
6297
- return JSON.stringify(DollarOr$outboundSchema.parse(dollarOr));
6088
+ export function orToJSON(or: Or): string {
6089
+ return JSON.stringify(Or$outboundSchema.parse(or));
6298
6090
  }
6299
6091
 
6300
- export function dollarOrFromJSON(
6092
+ export function orFromJSON(
6301
6093
  jsonString: string,
6302
- ): SafeParseResult<DollarOr, SDKValidationError> {
6094
+ ): SafeParseResult<Or, SDKValidationError> {
6303
6095
  return safeParse(
6304
6096
  jsonString,
6305
- (x) => DollarOr$inboundSchema.parse(JSON.parse(x)),
6306
- `Failed to parse 'DollarOr' from JSON`,
6097
+ (x) => Or$inboundSchema.parse(JSON.parse(x)),
6098
+ `Failed to parse 'Or' from JSON`,
6307
6099
  );
6308
6100
  }
6309
6101
 
6310
6102
  /** @internal */
6311
- export const DollarAndDollarExists$inboundSchema: z.ZodType<
6312
- DollarAndDollarExists,
6103
+ export const AndExists$inboundSchema: z.ZodType<
6104
+ AndExists,
6313
6105
  z.ZodTypeDef,
6314
6106
  unknown
6315
6107
  > = z.object({
6316
- $exists: z.boolean(),
6317
- }).transform((v) => {
6318
- return remap$(v, {
6319
- "$exists": "dollarExists",
6320
- });
6108
+ exists: z.boolean(),
6321
6109
  });
6322
6110
 
6323
6111
  /** @internal */
6324
- export type DollarAndDollarExists$Outbound = {
6325
- $exists: boolean;
6112
+ export type AndExists$Outbound = {
6113
+ exists: boolean;
6326
6114
  };
6327
6115
 
6328
6116
  /** @internal */
6329
- export const DollarAndDollarExists$outboundSchema: z.ZodType<
6330
- DollarAndDollarExists$Outbound,
6117
+ export const AndExists$outboundSchema: z.ZodType<
6118
+ AndExists$Outbound,
6331
6119
  z.ZodTypeDef,
6332
- DollarAndDollarExists
6120
+ AndExists
6333
6121
  > = z.object({
6334
- dollarExists: z.boolean(),
6335
- }).transform((v) => {
6336
- return remap$(v, {
6337
- dollarExists: "$exists",
6338
- });
6122
+ exists: z.boolean(),
6339
6123
  });
6340
6124
 
6341
6125
  /**
6342
6126
  * @internal
6343
6127
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6344
6128
  */
6345
- export namespace DollarAndDollarExists$ {
6346
- /** @deprecated use `DollarAndDollarExists$inboundSchema` instead. */
6347
- export const inboundSchema = DollarAndDollarExists$inboundSchema;
6348
- /** @deprecated use `DollarAndDollarExists$outboundSchema` instead. */
6349
- export const outboundSchema = DollarAndDollarExists$outboundSchema;
6350
- /** @deprecated use `DollarAndDollarExists$Outbound` instead. */
6351
- export type Outbound = DollarAndDollarExists$Outbound;
6129
+ export namespace AndExists$ {
6130
+ /** @deprecated use `AndExists$inboundSchema` instead. */
6131
+ export const inboundSchema = AndExists$inboundSchema;
6132
+ /** @deprecated use `AndExists$outboundSchema` instead. */
6133
+ export const outboundSchema = AndExists$outboundSchema;
6134
+ /** @deprecated use `AndExists$Outbound` instead. */
6135
+ export type Outbound = AndExists$Outbound;
6352
6136
  }
6353
6137
 
6354
- export function dollarAndDollarExistsToJSON(
6355
- dollarAndDollarExists: DollarAndDollarExists,
6356
- ): string {
6357
- return JSON.stringify(
6358
- DollarAndDollarExists$outboundSchema.parse(dollarAndDollarExists),
6359
- );
6138
+ export function andExistsToJSON(andExists: AndExists): string {
6139
+ return JSON.stringify(AndExists$outboundSchema.parse(andExists));
6360
6140
  }
6361
6141
 
6362
- export function dollarAndDollarExistsFromJSON(
6142
+ export function andExistsFromJSON(
6363
6143
  jsonString: string,
6364
- ): SafeParseResult<DollarAndDollarExists, SDKValidationError> {
6144
+ ): SafeParseResult<AndExists, SDKValidationError> {
6365
6145
  return safeParse(
6366
6146
  jsonString,
6367
- (x) => DollarAndDollarExists$inboundSchema.parse(JSON.parse(x)),
6368
- `Failed to parse 'DollarAndDollarExists' from JSON`,
6147
+ (x) => AndExists$inboundSchema.parse(JSON.parse(x)),
6148
+ `Failed to parse 'AndExists' from JSON`,
6369
6149
  );
6370
6150
  }
6371
6151
 
6372
6152
  /** @internal */
6373
- export const DeploymentGetConfigDollarAndDollarNin$inboundSchema: z.ZodType<
6374
- DeploymentGetConfigDollarAndDollarNin,
6153
+ export const DeploymentGetConfigAndNin$inboundSchema: z.ZodType<
6154
+ DeploymentGetConfigAndNin,
6375
6155
  z.ZodTypeDef,
6376
6156
  unknown
6377
6157
  > = z.union([z.string(), z.number(), z.boolean()]);
6378
6158
 
6379
6159
  /** @internal */
6380
- export type DeploymentGetConfigDollarAndDollarNin$Outbound =
6381
- | string
6382
- | number
6383
- | boolean;
6160
+ export type DeploymentGetConfigAndNin$Outbound = string | number | boolean;
6384
6161
 
6385
6162
  /** @internal */
6386
- export const DeploymentGetConfigDollarAndDollarNin$outboundSchema: z.ZodType<
6387
- DeploymentGetConfigDollarAndDollarNin$Outbound,
6163
+ export const DeploymentGetConfigAndNin$outboundSchema: z.ZodType<
6164
+ DeploymentGetConfigAndNin$Outbound,
6388
6165
  z.ZodTypeDef,
6389
- DeploymentGetConfigDollarAndDollarNin
6166
+ DeploymentGetConfigAndNin
6390
6167
  > = z.union([z.string(), z.number(), z.boolean()]);
6391
6168
 
6392
6169
  /**
6393
6170
  * @internal
6394
6171
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6395
6172
  */
6396
- export namespace DeploymentGetConfigDollarAndDollarNin$ {
6397
- /** @deprecated use `DeploymentGetConfigDollarAndDollarNin$inboundSchema` instead. */
6398
- export const inboundSchema =
6399
- DeploymentGetConfigDollarAndDollarNin$inboundSchema;
6400
- /** @deprecated use `DeploymentGetConfigDollarAndDollarNin$outboundSchema` instead. */
6401
- export const outboundSchema =
6402
- DeploymentGetConfigDollarAndDollarNin$outboundSchema;
6403
- /** @deprecated use `DeploymentGetConfigDollarAndDollarNin$Outbound` instead. */
6404
- export type Outbound = DeploymentGetConfigDollarAndDollarNin$Outbound;
6173
+ export namespace DeploymentGetConfigAndNin$ {
6174
+ /** @deprecated use `DeploymentGetConfigAndNin$inboundSchema` instead. */
6175
+ export const inboundSchema = DeploymentGetConfigAndNin$inboundSchema;
6176
+ /** @deprecated use `DeploymentGetConfigAndNin$outboundSchema` instead. */
6177
+ export const outboundSchema = DeploymentGetConfigAndNin$outboundSchema;
6178
+ /** @deprecated use `DeploymentGetConfigAndNin$Outbound` instead. */
6179
+ export type Outbound = DeploymentGetConfigAndNin$Outbound;
6405
6180
  }
6406
6181
 
6407
- export function deploymentGetConfigDollarAndDollarNinToJSON(
6408
- deploymentGetConfigDollarAndDollarNin: DeploymentGetConfigDollarAndDollarNin,
6182
+ export function deploymentGetConfigAndNinToJSON(
6183
+ deploymentGetConfigAndNin: DeploymentGetConfigAndNin,
6409
6184
  ): string {
6410
6185
  return JSON.stringify(
6411
- DeploymentGetConfigDollarAndDollarNin$outboundSchema.parse(
6412
- deploymentGetConfigDollarAndDollarNin,
6413
- ),
6186
+ DeploymentGetConfigAndNin$outboundSchema.parse(deploymentGetConfigAndNin),
6414
6187
  );
6415
6188
  }
6416
6189
 
6417
- export function deploymentGetConfigDollarAndDollarNinFromJSON(
6190
+ export function deploymentGetConfigAndNinFromJSON(
6418
6191
  jsonString: string,
6419
- ): SafeParseResult<DeploymentGetConfigDollarAndDollarNin, SDKValidationError> {
6192
+ ): SafeParseResult<DeploymentGetConfigAndNin, SDKValidationError> {
6420
6193
  return safeParse(
6421
6194
  jsonString,
6422
- (x) =>
6423
- DeploymentGetConfigDollarAndDollarNin$inboundSchema.parse(JSON.parse(x)),
6424
- `Failed to parse 'DeploymentGetConfigDollarAndDollarNin' from JSON`,
6195
+ (x) => DeploymentGetConfigAndNin$inboundSchema.parse(JSON.parse(x)),
6196
+ `Failed to parse 'DeploymentGetConfigAndNin' from JSON`,
6425
6197
  );
6426
6198
  }
6427
6199
 
6428
6200
  /** @internal */
6429
- export const DollarAndDollarNin$inboundSchema: z.ZodType<
6430
- DollarAndDollarNin,
6431
- z.ZodTypeDef,
6432
- unknown
6433
- > = z.object({
6434
- $nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
6435
- }).transform((v) => {
6436
- return remap$(v, {
6437
- "$nin": "dollarNin",
6201
+ export const AndNin$inboundSchema: z.ZodType<AndNin, z.ZodTypeDef, unknown> = z
6202
+ .object({
6203
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
6438
6204
  });
6439
- });
6440
6205
 
6441
6206
  /** @internal */
6442
- export type DollarAndDollarNin$Outbound = {
6443
- $nin: Array<string | number | boolean>;
6207
+ export type AndNin$Outbound = {
6208
+ nin: Array<string | number | boolean>;
6444
6209
  };
6445
6210
 
6446
6211
  /** @internal */
6447
- export const DollarAndDollarNin$outboundSchema: z.ZodType<
6448
- DollarAndDollarNin$Outbound,
6212
+ export const AndNin$outboundSchema: z.ZodType<
6213
+ AndNin$Outbound,
6449
6214
  z.ZodTypeDef,
6450
- DollarAndDollarNin
6215
+ AndNin
6451
6216
  > = z.object({
6452
- dollarNin: z.array(z.union([z.string(), z.number(), z.boolean()])),
6453
- }).transform((v) => {
6454
- return remap$(v, {
6455
- dollarNin: "$nin",
6456
- });
6217
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
6457
6218
  });
6458
6219
 
6459
6220
  /**
6460
6221
  * @internal
6461
6222
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6462
6223
  */
6463
- export namespace DollarAndDollarNin$ {
6464
- /** @deprecated use `DollarAndDollarNin$inboundSchema` instead. */
6465
- export const inboundSchema = DollarAndDollarNin$inboundSchema;
6466
- /** @deprecated use `DollarAndDollarNin$outboundSchema` instead. */
6467
- export const outboundSchema = DollarAndDollarNin$outboundSchema;
6468
- /** @deprecated use `DollarAndDollarNin$Outbound` instead. */
6469
- export type Outbound = DollarAndDollarNin$Outbound;
6224
+ export namespace AndNin$ {
6225
+ /** @deprecated use `AndNin$inboundSchema` instead. */
6226
+ export const inboundSchema = AndNin$inboundSchema;
6227
+ /** @deprecated use `AndNin$outboundSchema` instead. */
6228
+ export const outboundSchema = AndNin$outboundSchema;
6229
+ /** @deprecated use `AndNin$Outbound` instead. */
6230
+ export type Outbound = AndNin$Outbound;
6470
6231
  }
6471
6232
 
6472
- export function dollarAndDollarNinToJSON(
6473
- dollarAndDollarNin: DollarAndDollarNin,
6474
- ): string {
6475
- return JSON.stringify(
6476
- DollarAndDollarNin$outboundSchema.parse(dollarAndDollarNin),
6477
- );
6233
+ export function andNinToJSON(andNin: AndNin): string {
6234
+ return JSON.stringify(AndNin$outboundSchema.parse(andNin));
6478
6235
  }
6479
6236
 
6480
- export function dollarAndDollarNinFromJSON(
6237
+ export function andNinFromJSON(
6481
6238
  jsonString: string,
6482
- ): SafeParseResult<DollarAndDollarNin, SDKValidationError> {
6239
+ ): SafeParseResult<AndNin, SDKValidationError> {
6483
6240
  return safeParse(
6484
6241
  jsonString,
6485
- (x) => DollarAndDollarNin$inboundSchema.parse(JSON.parse(x)),
6486
- `Failed to parse 'DollarAndDollarNin' from JSON`,
6242
+ (x) => AndNin$inboundSchema.parse(JSON.parse(x)),
6243
+ `Failed to parse 'AndNin' from JSON`,
6487
6244
  );
6488
6245
  }
6489
6246
 
6490
6247
  /** @internal */
6491
- export const DeploymentGetConfigDollarAndDollarIn$inboundSchema: z.ZodType<
6492
- DeploymentGetConfigDollarAndDollarIn,
6248
+ export const DeploymentGetConfigAndIn$inboundSchema: z.ZodType<
6249
+ DeploymentGetConfigAndIn,
6493
6250
  z.ZodTypeDef,
6494
6251
  unknown
6495
6252
  > = z.union([z.string(), z.number(), z.boolean()]);
6496
6253
 
6497
6254
  /** @internal */
6498
- export type DeploymentGetConfigDollarAndDollarIn$Outbound =
6499
- | string
6500
- | number
6501
- | boolean;
6255
+ export type DeploymentGetConfigAndIn$Outbound = string | number | boolean;
6502
6256
 
6503
6257
  /** @internal */
6504
- export const DeploymentGetConfigDollarAndDollarIn$outboundSchema: z.ZodType<
6505
- DeploymentGetConfigDollarAndDollarIn$Outbound,
6258
+ export const DeploymentGetConfigAndIn$outboundSchema: z.ZodType<
6259
+ DeploymentGetConfigAndIn$Outbound,
6506
6260
  z.ZodTypeDef,
6507
- DeploymentGetConfigDollarAndDollarIn
6261
+ DeploymentGetConfigAndIn
6508
6262
  > = z.union([z.string(), z.number(), z.boolean()]);
6509
6263
 
6510
6264
  /**
6511
6265
  * @internal
6512
6266
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6513
6267
  */
6514
- export namespace DeploymentGetConfigDollarAndDollarIn$ {
6515
- /** @deprecated use `DeploymentGetConfigDollarAndDollarIn$inboundSchema` instead. */
6516
- export const inboundSchema =
6517
- DeploymentGetConfigDollarAndDollarIn$inboundSchema;
6518
- /** @deprecated use `DeploymentGetConfigDollarAndDollarIn$outboundSchema` instead. */
6519
- export const outboundSchema =
6520
- DeploymentGetConfigDollarAndDollarIn$outboundSchema;
6521
- /** @deprecated use `DeploymentGetConfigDollarAndDollarIn$Outbound` instead. */
6522
- export type Outbound = DeploymentGetConfigDollarAndDollarIn$Outbound;
6268
+ export namespace DeploymentGetConfigAndIn$ {
6269
+ /** @deprecated use `DeploymentGetConfigAndIn$inboundSchema` instead. */
6270
+ export const inboundSchema = DeploymentGetConfigAndIn$inboundSchema;
6271
+ /** @deprecated use `DeploymentGetConfigAndIn$outboundSchema` instead. */
6272
+ export const outboundSchema = DeploymentGetConfigAndIn$outboundSchema;
6273
+ /** @deprecated use `DeploymentGetConfigAndIn$Outbound` instead. */
6274
+ export type Outbound = DeploymentGetConfigAndIn$Outbound;
6523
6275
  }
6524
6276
 
6525
- export function deploymentGetConfigDollarAndDollarInToJSON(
6526
- deploymentGetConfigDollarAndDollarIn: DeploymentGetConfigDollarAndDollarIn,
6277
+ export function deploymentGetConfigAndInToJSON(
6278
+ deploymentGetConfigAndIn: DeploymentGetConfigAndIn,
6527
6279
  ): string {
6528
6280
  return JSON.stringify(
6529
- DeploymentGetConfigDollarAndDollarIn$outboundSchema.parse(
6530
- deploymentGetConfigDollarAndDollarIn,
6531
- ),
6281
+ DeploymentGetConfigAndIn$outboundSchema.parse(deploymentGetConfigAndIn),
6532
6282
  );
6533
6283
  }
6534
6284
 
6535
- export function deploymentGetConfigDollarAndDollarInFromJSON(
6285
+ export function deploymentGetConfigAndInFromJSON(
6536
6286
  jsonString: string,
6537
- ): SafeParseResult<DeploymentGetConfigDollarAndDollarIn, SDKValidationError> {
6287
+ ): SafeParseResult<DeploymentGetConfigAndIn, SDKValidationError> {
6538
6288
  return safeParse(
6539
6289
  jsonString,
6540
- (x) =>
6541
- DeploymentGetConfigDollarAndDollarIn$inboundSchema.parse(JSON.parse(x)),
6542
- `Failed to parse 'DeploymentGetConfigDollarAndDollarIn' from JSON`,
6290
+ (x) => DeploymentGetConfigAndIn$inboundSchema.parse(JSON.parse(x)),
6291
+ `Failed to parse 'DeploymentGetConfigAndIn' from JSON`,
6543
6292
  );
6544
6293
  }
6545
6294
 
6546
6295
  /** @internal */
6547
- export const DollarAndDollarIn$inboundSchema: z.ZodType<
6548
- DollarAndDollarIn,
6549
- z.ZodTypeDef,
6550
- unknown
6551
- > = z.object({
6552
- $in: z.array(z.union([z.string(), z.number(), z.boolean()])),
6553
- }).transform((v) => {
6554
- return remap$(v, {
6555
- "$in": "dollarIn",
6296
+ export const AndIn$inboundSchema: z.ZodType<AndIn, z.ZodTypeDef, unknown> = z
6297
+ .object({
6298
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
6556
6299
  });
6557
- });
6558
6300
 
6559
6301
  /** @internal */
6560
- export type DollarAndDollarIn$Outbound = {
6561
- $in: Array<string | number | boolean>;
6302
+ export type AndIn$Outbound = {
6303
+ in: Array<string | number | boolean>;
6562
6304
  };
6563
6305
 
6564
6306
  /** @internal */
6565
- export const DollarAndDollarIn$outboundSchema: z.ZodType<
6566
- DollarAndDollarIn$Outbound,
6307
+ export const AndIn$outboundSchema: z.ZodType<
6308
+ AndIn$Outbound,
6567
6309
  z.ZodTypeDef,
6568
- DollarAndDollarIn
6310
+ AndIn
6569
6311
  > = z.object({
6570
- dollarIn: z.array(z.union([z.string(), z.number(), z.boolean()])),
6571
- }).transform((v) => {
6572
- return remap$(v, {
6573
- dollarIn: "$in",
6574
- });
6312
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
6575
6313
  });
6576
6314
 
6577
6315
  /**
6578
6316
  * @internal
6579
6317
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6580
6318
  */
6581
- export namespace DollarAndDollarIn$ {
6582
- /** @deprecated use `DollarAndDollarIn$inboundSchema` instead. */
6583
- export const inboundSchema = DollarAndDollarIn$inboundSchema;
6584
- /** @deprecated use `DollarAndDollarIn$outboundSchema` instead. */
6585
- export const outboundSchema = DollarAndDollarIn$outboundSchema;
6586
- /** @deprecated use `DollarAndDollarIn$Outbound` instead. */
6587
- export type Outbound = DollarAndDollarIn$Outbound;
6319
+ export namespace AndIn$ {
6320
+ /** @deprecated use `AndIn$inboundSchema` instead. */
6321
+ export const inboundSchema = AndIn$inboundSchema;
6322
+ /** @deprecated use `AndIn$outboundSchema` instead. */
6323
+ export const outboundSchema = AndIn$outboundSchema;
6324
+ /** @deprecated use `AndIn$Outbound` instead. */
6325
+ export type Outbound = AndIn$Outbound;
6588
6326
  }
6589
6327
 
6590
- export function dollarAndDollarInToJSON(
6591
- dollarAndDollarIn: DollarAndDollarIn,
6592
- ): string {
6593
- return JSON.stringify(
6594
- DollarAndDollarIn$outboundSchema.parse(dollarAndDollarIn),
6595
- );
6328
+ export function andInToJSON(andIn: AndIn): string {
6329
+ return JSON.stringify(AndIn$outboundSchema.parse(andIn));
6596
6330
  }
6597
6331
 
6598
- export function dollarAndDollarInFromJSON(
6332
+ export function andInFromJSON(
6599
6333
  jsonString: string,
6600
- ): SafeParseResult<DollarAndDollarIn, SDKValidationError> {
6334
+ ): SafeParseResult<AndIn, SDKValidationError> {
6601
6335
  return safeParse(
6602
6336
  jsonString,
6603
- (x) => DollarAndDollarIn$inboundSchema.parse(JSON.parse(x)),
6604
- `Failed to parse 'DollarAndDollarIn' from JSON`,
6337
+ (x) => AndIn$inboundSchema.parse(JSON.parse(x)),
6338
+ `Failed to parse 'AndIn' from JSON`,
6605
6339
  );
6606
6340
  }
6607
6341
 
6608
6342
  /** @internal */
6609
- export const DollarAndDollarLte$inboundSchema: z.ZodType<
6610
- DollarAndDollarLte,
6611
- z.ZodTypeDef,
6612
- unknown
6613
- > = z.object({
6614
- $lte: z.number(),
6615
- }).transform((v) => {
6616
- return remap$(v, {
6617
- "$lte": "dollarLte",
6343
+ export const AndLte$inboundSchema: z.ZodType<AndLte, z.ZodTypeDef, unknown> = z
6344
+ .object({
6345
+ lte: z.number(),
6618
6346
  });
6619
- });
6620
6347
 
6621
6348
  /** @internal */
6622
- export type DollarAndDollarLte$Outbound = {
6623
- $lte: number;
6349
+ export type AndLte$Outbound = {
6350
+ lte: number;
6624
6351
  };
6625
6352
 
6626
6353
  /** @internal */
6627
- export const DollarAndDollarLte$outboundSchema: z.ZodType<
6628
- DollarAndDollarLte$Outbound,
6354
+ export const AndLte$outboundSchema: z.ZodType<
6355
+ AndLte$Outbound,
6629
6356
  z.ZodTypeDef,
6630
- DollarAndDollarLte
6357
+ AndLte
6631
6358
  > = z.object({
6632
- dollarLte: z.number(),
6633
- }).transform((v) => {
6634
- return remap$(v, {
6635
- dollarLte: "$lte",
6636
- });
6359
+ lte: z.number(),
6637
6360
  });
6638
6361
 
6639
6362
  /**
6640
6363
  * @internal
6641
6364
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6642
6365
  */
6643
- export namespace DollarAndDollarLte$ {
6644
- /** @deprecated use `DollarAndDollarLte$inboundSchema` instead. */
6645
- export const inboundSchema = DollarAndDollarLte$inboundSchema;
6646
- /** @deprecated use `DollarAndDollarLte$outboundSchema` instead. */
6647
- export const outboundSchema = DollarAndDollarLte$outboundSchema;
6648
- /** @deprecated use `DollarAndDollarLte$Outbound` instead. */
6649
- export type Outbound = DollarAndDollarLte$Outbound;
6366
+ export namespace AndLte$ {
6367
+ /** @deprecated use `AndLte$inboundSchema` instead. */
6368
+ export const inboundSchema = AndLte$inboundSchema;
6369
+ /** @deprecated use `AndLte$outboundSchema` instead. */
6370
+ export const outboundSchema = AndLte$outboundSchema;
6371
+ /** @deprecated use `AndLte$Outbound` instead. */
6372
+ export type Outbound = AndLte$Outbound;
6650
6373
  }
6651
6374
 
6652
- export function dollarAndDollarLteToJSON(
6653
- dollarAndDollarLte: DollarAndDollarLte,
6654
- ): string {
6655
- return JSON.stringify(
6656
- DollarAndDollarLte$outboundSchema.parse(dollarAndDollarLte),
6657
- );
6375
+ export function andLteToJSON(andLte: AndLte): string {
6376
+ return JSON.stringify(AndLte$outboundSchema.parse(andLte));
6658
6377
  }
6659
6378
 
6660
- export function dollarAndDollarLteFromJSON(
6379
+ export function andLteFromJSON(
6661
6380
  jsonString: string,
6662
- ): SafeParseResult<DollarAndDollarLte, SDKValidationError> {
6381
+ ): SafeParseResult<AndLte, SDKValidationError> {
6663
6382
  return safeParse(
6664
6383
  jsonString,
6665
- (x) => DollarAndDollarLte$inboundSchema.parse(JSON.parse(x)),
6666
- `Failed to parse 'DollarAndDollarLte' from JSON`,
6384
+ (x) => AndLte$inboundSchema.parse(JSON.parse(x)),
6385
+ `Failed to parse 'AndLte' from JSON`,
6667
6386
  );
6668
6387
  }
6669
6388
 
6670
6389
  /** @internal */
6671
- export const DollarAndDollarLt$inboundSchema: z.ZodType<
6672
- DollarAndDollarLt,
6673
- z.ZodTypeDef,
6674
- unknown
6675
- > = z.object({
6676
- $lt: z.number(),
6677
- }).transform((v) => {
6678
- return remap$(v, {
6679
- "$lt": "dollarLt",
6390
+ export const AndLt$inboundSchema: z.ZodType<AndLt, z.ZodTypeDef, unknown> = z
6391
+ .object({
6392
+ lt: z.number(),
6680
6393
  });
6681
- });
6682
6394
 
6683
6395
  /** @internal */
6684
- export type DollarAndDollarLt$Outbound = {
6685
- $lt: number;
6396
+ export type AndLt$Outbound = {
6397
+ lt: number;
6686
6398
  };
6687
6399
 
6688
6400
  /** @internal */
6689
- export const DollarAndDollarLt$outboundSchema: z.ZodType<
6690
- DollarAndDollarLt$Outbound,
6401
+ export const AndLt$outboundSchema: z.ZodType<
6402
+ AndLt$Outbound,
6691
6403
  z.ZodTypeDef,
6692
- DollarAndDollarLt
6404
+ AndLt
6693
6405
  > = z.object({
6694
- dollarLt: z.number(),
6695
- }).transform((v) => {
6696
- return remap$(v, {
6697
- dollarLt: "$lt",
6698
- });
6406
+ lt: z.number(),
6699
6407
  });
6700
6408
 
6701
6409
  /**
6702
6410
  * @internal
6703
6411
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6704
6412
  */
6705
- export namespace DollarAndDollarLt$ {
6706
- /** @deprecated use `DollarAndDollarLt$inboundSchema` instead. */
6707
- export const inboundSchema = DollarAndDollarLt$inboundSchema;
6708
- /** @deprecated use `DollarAndDollarLt$outboundSchema` instead. */
6709
- export const outboundSchema = DollarAndDollarLt$outboundSchema;
6710
- /** @deprecated use `DollarAndDollarLt$Outbound` instead. */
6711
- export type Outbound = DollarAndDollarLt$Outbound;
6413
+ export namespace AndLt$ {
6414
+ /** @deprecated use `AndLt$inboundSchema` instead. */
6415
+ export const inboundSchema = AndLt$inboundSchema;
6416
+ /** @deprecated use `AndLt$outboundSchema` instead. */
6417
+ export const outboundSchema = AndLt$outboundSchema;
6418
+ /** @deprecated use `AndLt$Outbound` instead. */
6419
+ export type Outbound = AndLt$Outbound;
6712
6420
  }
6713
6421
 
6714
- export function dollarAndDollarLtToJSON(
6715
- dollarAndDollarLt: DollarAndDollarLt,
6716
- ): string {
6717
- return JSON.stringify(
6718
- DollarAndDollarLt$outboundSchema.parse(dollarAndDollarLt),
6719
- );
6422
+ export function andLtToJSON(andLt: AndLt): string {
6423
+ return JSON.stringify(AndLt$outboundSchema.parse(andLt));
6720
6424
  }
6721
6425
 
6722
- export function dollarAndDollarLtFromJSON(
6426
+ export function andLtFromJSON(
6723
6427
  jsonString: string,
6724
- ): SafeParseResult<DollarAndDollarLt, SDKValidationError> {
6428
+ ): SafeParseResult<AndLt, SDKValidationError> {
6725
6429
  return safeParse(
6726
6430
  jsonString,
6727
- (x) => DollarAndDollarLt$inboundSchema.parse(JSON.parse(x)),
6728
- `Failed to parse 'DollarAndDollarLt' from JSON`,
6431
+ (x) => AndLt$inboundSchema.parse(JSON.parse(x)),
6432
+ `Failed to parse 'AndLt' from JSON`,
6729
6433
  );
6730
6434
  }
6731
6435
 
6732
6436
  /** @internal */
6733
- export const DollarAndDollarGte$inboundSchema: z.ZodType<
6734
- DollarAndDollarGte,
6735
- z.ZodTypeDef,
6736
- unknown
6737
- > = z.object({
6738
- $gte: z.number(),
6739
- }).transform((v) => {
6740
- return remap$(v, {
6741
- "$gte": "dollarGte",
6437
+ export const AndGte$inboundSchema: z.ZodType<AndGte, z.ZodTypeDef, unknown> = z
6438
+ .object({
6439
+ gte: z.number(),
6742
6440
  });
6743
- });
6744
6441
 
6745
6442
  /** @internal */
6746
- export type DollarAndDollarGte$Outbound = {
6747
- $gte: number;
6443
+ export type AndGte$Outbound = {
6444
+ gte: number;
6748
6445
  };
6749
6446
 
6750
6447
  /** @internal */
6751
- export const DollarAndDollarGte$outboundSchema: z.ZodType<
6752
- DollarAndDollarGte$Outbound,
6448
+ export const AndGte$outboundSchema: z.ZodType<
6449
+ AndGte$Outbound,
6753
6450
  z.ZodTypeDef,
6754
- DollarAndDollarGte
6451
+ AndGte
6755
6452
  > = z.object({
6756
- dollarGte: z.number(),
6757
- }).transform((v) => {
6758
- return remap$(v, {
6759
- dollarGte: "$gte",
6760
- });
6453
+ gte: z.number(),
6761
6454
  });
6762
6455
 
6763
6456
  /**
6764
6457
  * @internal
6765
6458
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6766
6459
  */
6767
- export namespace DollarAndDollarGte$ {
6768
- /** @deprecated use `DollarAndDollarGte$inboundSchema` instead. */
6769
- export const inboundSchema = DollarAndDollarGte$inboundSchema;
6770
- /** @deprecated use `DollarAndDollarGte$outboundSchema` instead. */
6771
- export const outboundSchema = DollarAndDollarGte$outboundSchema;
6772
- /** @deprecated use `DollarAndDollarGte$Outbound` instead. */
6773
- export type Outbound = DollarAndDollarGte$Outbound;
6460
+ export namespace AndGte$ {
6461
+ /** @deprecated use `AndGte$inboundSchema` instead. */
6462
+ export const inboundSchema = AndGte$inboundSchema;
6463
+ /** @deprecated use `AndGte$outboundSchema` instead. */
6464
+ export const outboundSchema = AndGte$outboundSchema;
6465
+ /** @deprecated use `AndGte$Outbound` instead. */
6466
+ export type Outbound = AndGte$Outbound;
6774
6467
  }
6775
6468
 
6776
- export function dollarAndDollarGteToJSON(
6777
- dollarAndDollarGte: DollarAndDollarGte,
6778
- ): string {
6779
- return JSON.stringify(
6780
- DollarAndDollarGte$outboundSchema.parse(dollarAndDollarGte),
6781
- );
6469
+ export function andGteToJSON(andGte: AndGte): string {
6470
+ return JSON.stringify(AndGte$outboundSchema.parse(andGte));
6782
6471
  }
6783
6472
 
6784
- export function dollarAndDollarGteFromJSON(
6473
+ export function andGteFromJSON(
6785
6474
  jsonString: string,
6786
- ): SafeParseResult<DollarAndDollarGte, SDKValidationError> {
6475
+ ): SafeParseResult<AndGte, SDKValidationError> {
6787
6476
  return safeParse(
6788
6477
  jsonString,
6789
- (x) => DollarAndDollarGte$inboundSchema.parse(JSON.parse(x)),
6790
- `Failed to parse 'DollarAndDollarGte' from JSON`,
6478
+ (x) => AndGte$inboundSchema.parse(JSON.parse(x)),
6479
+ `Failed to parse 'AndGte' from JSON`,
6791
6480
  );
6792
6481
  }
6793
6482
 
6794
6483
  /** @internal */
6795
- export const DollarAnd3$inboundSchema: z.ZodType<
6796
- DollarAnd3,
6797
- z.ZodTypeDef,
6798
- unknown
6799
- > = z.object({
6800
- $gt: z.number(),
6801
- }).transform((v) => {
6802
- return remap$(v, {
6803
- "$gt": "dollarGt",
6484
+ export const And3$inboundSchema: z.ZodType<And3, z.ZodTypeDef, unknown> = z
6485
+ .object({
6486
+ gt: z.number(),
6804
6487
  });
6805
- });
6806
6488
 
6807
6489
  /** @internal */
6808
- export type DollarAnd3$Outbound = {
6809
- $gt: number;
6490
+ export type And3$Outbound = {
6491
+ gt: number;
6810
6492
  };
6811
6493
 
6812
6494
  /** @internal */
6813
- export const DollarAnd3$outboundSchema: z.ZodType<
6814
- DollarAnd3$Outbound,
6815
- z.ZodTypeDef,
6816
- DollarAnd3
6817
- > = z.object({
6818
- dollarGt: z.number(),
6819
- }).transform((v) => {
6820
- return remap$(v, {
6821
- dollarGt: "$gt",
6495
+ export const And3$outboundSchema: z.ZodType<And3$Outbound, z.ZodTypeDef, And3> =
6496
+ z.object({
6497
+ gt: z.number(),
6822
6498
  });
6823
- });
6824
6499
 
6825
6500
  /**
6826
6501
  * @internal
6827
6502
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6828
6503
  */
6829
- export namespace DollarAnd3$ {
6830
- /** @deprecated use `DollarAnd3$inboundSchema` instead. */
6831
- export const inboundSchema = DollarAnd3$inboundSchema;
6832
- /** @deprecated use `DollarAnd3$outboundSchema` instead. */
6833
- export const outboundSchema = DollarAnd3$outboundSchema;
6834
- /** @deprecated use `DollarAnd3$Outbound` instead. */
6835
- export type Outbound = DollarAnd3$Outbound;
6504
+ export namespace And3$ {
6505
+ /** @deprecated use `And3$inboundSchema` instead. */
6506
+ export const inboundSchema = And3$inboundSchema;
6507
+ /** @deprecated use `And3$outboundSchema` instead. */
6508
+ export const outboundSchema = And3$outboundSchema;
6509
+ /** @deprecated use `And3$Outbound` instead. */
6510
+ export type Outbound = And3$Outbound;
6836
6511
  }
6837
6512
 
6838
- export function dollarAnd3ToJSON(dollarAnd3: DollarAnd3): string {
6839
- return JSON.stringify(DollarAnd3$outboundSchema.parse(dollarAnd3));
6513
+ export function and3ToJSON(and3: And3): string {
6514
+ return JSON.stringify(And3$outboundSchema.parse(and3));
6840
6515
  }
6841
6516
 
6842
- export function dollarAnd3FromJSON(
6517
+ export function and3FromJSON(
6843
6518
  jsonString: string,
6844
- ): SafeParseResult<DollarAnd3, SDKValidationError> {
6519
+ ): SafeParseResult<And3, SDKValidationError> {
6845
6520
  return safeParse(
6846
6521
  jsonString,
6847
- (x) => DollarAnd3$inboundSchema.parse(JSON.parse(x)),
6848
- `Failed to parse 'DollarAnd3' from JSON`,
6522
+ (x) => And3$inboundSchema.parse(JSON.parse(x)),
6523
+ `Failed to parse 'And3' from JSON`,
6849
6524
  );
6850
6525
  }
6851
6526
 
6852
6527
  /** @internal */
6853
- export const DeploymentGetConfigDollarAndDollarNe$inboundSchema: z.ZodType<
6854
- DeploymentGetConfigDollarAndDollarNe,
6528
+ export const DeploymentGetConfigAndNe$inboundSchema: z.ZodType<
6529
+ DeploymentGetConfigAndNe,
6855
6530
  z.ZodTypeDef,
6856
6531
  unknown
6857
6532
  > = z.union([z.string(), z.number(), z.boolean()]);
6858
6533
 
6859
6534
  /** @internal */
6860
- export type DeploymentGetConfigDollarAndDollarNe$Outbound =
6861
- | string
6862
- | number
6863
- | boolean;
6535
+ export type DeploymentGetConfigAndNe$Outbound = string | number | boolean;
6864
6536
 
6865
6537
  /** @internal */
6866
- export const DeploymentGetConfigDollarAndDollarNe$outboundSchema: z.ZodType<
6867
- DeploymentGetConfigDollarAndDollarNe$Outbound,
6538
+ export const DeploymentGetConfigAndNe$outboundSchema: z.ZodType<
6539
+ DeploymentGetConfigAndNe$Outbound,
6868
6540
  z.ZodTypeDef,
6869
- DeploymentGetConfigDollarAndDollarNe
6541
+ DeploymentGetConfigAndNe
6870
6542
  > = z.union([z.string(), z.number(), z.boolean()]);
6871
6543
 
6872
6544
  /**
6873
6545
  * @internal
6874
6546
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6875
6547
  */
6876
- export namespace DeploymentGetConfigDollarAndDollarNe$ {
6877
- /** @deprecated use `DeploymentGetConfigDollarAndDollarNe$inboundSchema` instead. */
6878
- export const inboundSchema =
6879
- DeploymentGetConfigDollarAndDollarNe$inboundSchema;
6880
- /** @deprecated use `DeploymentGetConfigDollarAndDollarNe$outboundSchema` instead. */
6881
- export const outboundSchema =
6882
- DeploymentGetConfigDollarAndDollarNe$outboundSchema;
6883
- /** @deprecated use `DeploymentGetConfigDollarAndDollarNe$Outbound` instead. */
6884
- export type Outbound = DeploymentGetConfigDollarAndDollarNe$Outbound;
6548
+ export namespace DeploymentGetConfigAndNe$ {
6549
+ /** @deprecated use `DeploymentGetConfigAndNe$inboundSchema` instead. */
6550
+ export const inboundSchema = DeploymentGetConfigAndNe$inboundSchema;
6551
+ /** @deprecated use `DeploymentGetConfigAndNe$outboundSchema` instead. */
6552
+ export const outboundSchema = DeploymentGetConfigAndNe$outboundSchema;
6553
+ /** @deprecated use `DeploymentGetConfigAndNe$Outbound` instead. */
6554
+ export type Outbound = DeploymentGetConfigAndNe$Outbound;
6885
6555
  }
6886
6556
 
6887
- export function deploymentGetConfigDollarAndDollarNeToJSON(
6888
- deploymentGetConfigDollarAndDollarNe: DeploymentGetConfigDollarAndDollarNe,
6557
+ export function deploymentGetConfigAndNeToJSON(
6558
+ deploymentGetConfigAndNe: DeploymentGetConfigAndNe,
6889
6559
  ): string {
6890
6560
  return JSON.stringify(
6891
- DeploymentGetConfigDollarAndDollarNe$outboundSchema.parse(
6892
- deploymentGetConfigDollarAndDollarNe,
6893
- ),
6561
+ DeploymentGetConfigAndNe$outboundSchema.parse(deploymentGetConfigAndNe),
6894
6562
  );
6895
6563
  }
6896
6564
 
6897
- export function deploymentGetConfigDollarAndDollarNeFromJSON(
6565
+ export function deploymentGetConfigAndNeFromJSON(
6898
6566
  jsonString: string,
6899
- ): SafeParseResult<DeploymentGetConfigDollarAndDollarNe, SDKValidationError> {
6567
+ ): SafeParseResult<DeploymentGetConfigAndNe, SDKValidationError> {
6900
6568
  return safeParse(
6901
6569
  jsonString,
6902
- (x) =>
6903
- DeploymentGetConfigDollarAndDollarNe$inboundSchema.parse(JSON.parse(x)),
6904
- `Failed to parse 'DeploymentGetConfigDollarAndDollarNe' from JSON`,
6570
+ (x) => DeploymentGetConfigAndNe$inboundSchema.parse(JSON.parse(x)),
6571
+ `Failed to parse 'DeploymentGetConfigAndNe' from JSON`,
6905
6572
  );
6906
6573
  }
6907
6574
 
6908
6575
  /** @internal */
6909
- export const DollarAndDollarNe$inboundSchema: z.ZodType<
6910
- DollarAndDollarNe,
6911
- z.ZodTypeDef,
6912
- unknown
6913
- > = z.object({
6914
- $ne: z.union([z.string(), z.number(), z.boolean()]),
6915
- }).transform((v) => {
6916
- return remap$(v, {
6917
- "$ne": "dollarNe",
6576
+ export const AndNe$inboundSchema: z.ZodType<AndNe, z.ZodTypeDef, unknown> = z
6577
+ .object({
6578
+ ne: z.union([z.string(), z.number(), z.boolean()]),
6918
6579
  });
6919
- });
6920
6580
 
6921
6581
  /** @internal */
6922
- export type DollarAndDollarNe$Outbound = {
6923
- $ne: string | number | boolean;
6582
+ export type AndNe$Outbound = {
6583
+ ne: string | number | boolean;
6924
6584
  };
6925
6585
 
6926
6586
  /** @internal */
6927
- export const DollarAndDollarNe$outboundSchema: z.ZodType<
6928
- DollarAndDollarNe$Outbound,
6587
+ export const AndNe$outboundSchema: z.ZodType<
6588
+ AndNe$Outbound,
6929
6589
  z.ZodTypeDef,
6930
- DollarAndDollarNe
6590
+ AndNe
6931
6591
  > = z.object({
6932
- dollarNe: z.union([z.string(), z.number(), z.boolean()]),
6933
- }).transform((v) => {
6934
- return remap$(v, {
6935
- dollarNe: "$ne",
6936
- });
6592
+ ne: z.union([z.string(), z.number(), z.boolean()]),
6937
6593
  });
6938
6594
 
6939
6595
  /**
6940
6596
  * @internal
6941
6597
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6942
6598
  */
6943
- export namespace DollarAndDollarNe$ {
6944
- /** @deprecated use `DollarAndDollarNe$inboundSchema` instead. */
6945
- export const inboundSchema = DollarAndDollarNe$inboundSchema;
6946
- /** @deprecated use `DollarAndDollarNe$outboundSchema` instead. */
6947
- export const outboundSchema = DollarAndDollarNe$outboundSchema;
6948
- /** @deprecated use `DollarAndDollarNe$Outbound` instead. */
6949
- export type Outbound = DollarAndDollarNe$Outbound;
6599
+ export namespace AndNe$ {
6600
+ /** @deprecated use `AndNe$inboundSchema` instead. */
6601
+ export const inboundSchema = AndNe$inboundSchema;
6602
+ /** @deprecated use `AndNe$outboundSchema` instead. */
6603
+ export const outboundSchema = AndNe$outboundSchema;
6604
+ /** @deprecated use `AndNe$Outbound` instead. */
6605
+ export type Outbound = AndNe$Outbound;
6950
6606
  }
6951
6607
 
6952
- export function dollarAndDollarNeToJSON(
6953
- dollarAndDollarNe: DollarAndDollarNe,
6954
- ): string {
6955
- return JSON.stringify(
6956
- DollarAndDollarNe$outboundSchema.parse(dollarAndDollarNe),
6957
- );
6608
+ export function andNeToJSON(andNe: AndNe): string {
6609
+ return JSON.stringify(AndNe$outboundSchema.parse(andNe));
6958
6610
  }
6959
6611
 
6960
- export function dollarAndDollarNeFromJSON(
6612
+ export function andNeFromJSON(
6961
6613
  jsonString: string,
6962
- ): SafeParseResult<DollarAndDollarNe, SDKValidationError> {
6614
+ ): SafeParseResult<AndNe, SDKValidationError> {
6963
6615
  return safeParse(
6964
6616
  jsonString,
6965
- (x) => DollarAndDollarNe$inboundSchema.parse(JSON.parse(x)),
6966
- `Failed to parse 'DollarAndDollarNe' from JSON`,
6617
+ (x) => AndNe$inboundSchema.parse(JSON.parse(x)),
6618
+ `Failed to parse 'AndNe' from JSON`,
6967
6619
  );
6968
6620
  }
6969
6621
 
6970
6622
  /** @internal */
6971
- export const DeploymentGetConfigDollarAndDollarEq$inboundSchema: z.ZodType<
6972
- DeploymentGetConfigDollarAndDollarEq,
6623
+ export const DeploymentGetConfigAndEq$inboundSchema: z.ZodType<
6624
+ DeploymentGetConfigAndEq,
6973
6625
  z.ZodTypeDef,
6974
6626
  unknown
6975
6627
  > = z.union([z.string(), z.number(), z.boolean()]);
6976
6628
 
6977
6629
  /** @internal */
6978
- export type DeploymentGetConfigDollarAndDollarEq$Outbound =
6979
- | string
6980
- | number
6981
- | boolean;
6630
+ export type DeploymentGetConfigAndEq$Outbound = string | number | boolean;
6982
6631
 
6983
6632
  /** @internal */
6984
- export const DeploymentGetConfigDollarAndDollarEq$outboundSchema: z.ZodType<
6985
- DeploymentGetConfigDollarAndDollarEq$Outbound,
6633
+ export const DeploymentGetConfigAndEq$outboundSchema: z.ZodType<
6634
+ DeploymentGetConfigAndEq$Outbound,
6986
6635
  z.ZodTypeDef,
6987
- DeploymentGetConfigDollarAndDollarEq
6636
+ DeploymentGetConfigAndEq
6988
6637
  > = z.union([z.string(), z.number(), z.boolean()]);
6989
6638
 
6990
6639
  /**
6991
6640
  * @internal
6992
6641
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6993
6642
  */
6994
- export namespace DeploymentGetConfigDollarAndDollarEq$ {
6995
- /** @deprecated use `DeploymentGetConfigDollarAndDollarEq$inboundSchema` instead. */
6996
- export const inboundSchema =
6997
- DeploymentGetConfigDollarAndDollarEq$inboundSchema;
6998
- /** @deprecated use `DeploymentGetConfigDollarAndDollarEq$outboundSchema` instead. */
6999
- export const outboundSchema =
7000
- DeploymentGetConfigDollarAndDollarEq$outboundSchema;
7001
- /** @deprecated use `DeploymentGetConfigDollarAndDollarEq$Outbound` instead. */
7002
- export type Outbound = DeploymentGetConfigDollarAndDollarEq$Outbound;
6643
+ export namespace DeploymentGetConfigAndEq$ {
6644
+ /** @deprecated use `DeploymentGetConfigAndEq$inboundSchema` instead. */
6645
+ export const inboundSchema = DeploymentGetConfigAndEq$inboundSchema;
6646
+ /** @deprecated use `DeploymentGetConfigAndEq$outboundSchema` instead. */
6647
+ export const outboundSchema = DeploymentGetConfigAndEq$outboundSchema;
6648
+ /** @deprecated use `DeploymentGetConfigAndEq$Outbound` instead. */
6649
+ export type Outbound = DeploymentGetConfigAndEq$Outbound;
7003
6650
  }
7004
6651
 
7005
- export function deploymentGetConfigDollarAndDollarEqToJSON(
7006
- deploymentGetConfigDollarAndDollarEq: DeploymentGetConfigDollarAndDollarEq,
6652
+ export function deploymentGetConfigAndEqToJSON(
6653
+ deploymentGetConfigAndEq: DeploymentGetConfigAndEq,
7007
6654
  ): string {
7008
6655
  return JSON.stringify(
7009
- DeploymentGetConfigDollarAndDollarEq$outboundSchema.parse(
7010
- deploymentGetConfigDollarAndDollarEq,
7011
- ),
6656
+ DeploymentGetConfigAndEq$outboundSchema.parse(deploymentGetConfigAndEq),
7012
6657
  );
7013
6658
  }
7014
6659
 
7015
- export function deploymentGetConfigDollarAndDollarEqFromJSON(
6660
+ export function deploymentGetConfigAndEqFromJSON(
7016
6661
  jsonString: string,
7017
- ): SafeParseResult<DeploymentGetConfigDollarAndDollarEq, SDKValidationError> {
6662
+ ): SafeParseResult<DeploymentGetConfigAndEq, SDKValidationError> {
7018
6663
  return safeParse(
7019
6664
  jsonString,
7020
- (x) =>
7021
- DeploymentGetConfigDollarAndDollarEq$inboundSchema.parse(JSON.parse(x)),
7022
- `Failed to parse 'DeploymentGetConfigDollarAndDollarEq' from JSON`,
6665
+ (x) => DeploymentGetConfigAndEq$inboundSchema.parse(JSON.parse(x)),
6666
+ `Failed to parse 'DeploymentGetConfigAndEq' from JSON`,
7023
6667
  );
7024
6668
  }
7025
6669
 
7026
6670
  /** @internal */
7027
- export const DollarAndDollarEq$inboundSchema: z.ZodType<
7028
- DollarAndDollarEq,
7029
- z.ZodTypeDef,
7030
- unknown
7031
- > = z.object({
7032
- $eq: z.union([z.string(), z.number(), z.boolean()]),
7033
- }).transform((v) => {
7034
- return remap$(v, {
7035
- "$eq": "dollarEq",
6671
+ export const AndEq$inboundSchema: z.ZodType<AndEq, z.ZodTypeDef, unknown> = z
6672
+ .object({
6673
+ eq: z.union([z.string(), z.number(), z.boolean()]),
7036
6674
  });
7037
- });
7038
6675
 
7039
6676
  /** @internal */
7040
- export type DollarAndDollarEq$Outbound = {
7041
- $eq: string | number | boolean;
6677
+ export type AndEq$Outbound = {
6678
+ eq: string | number | boolean;
7042
6679
  };
7043
6680
 
7044
6681
  /** @internal */
7045
- export const DollarAndDollarEq$outboundSchema: z.ZodType<
7046
- DollarAndDollarEq$Outbound,
6682
+ export const AndEq$outboundSchema: z.ZodType<
6683
+ AndEq$Outbound,
7047
6684
  z.ZodTypeDef,
7048
- DollarAndDollarEq
6685
+ AndEq
7049
6686
  > = z.object({
7050
- dollarEq: z.union([z.string(), z.number(), z.boolean()]),
7051
- }).transform((v) => {
7052
- return remap$(v, {
7053
- dollarEq: "$eq",
7054
- });
6687
+ eq: z.union([z.string(), z.number(), z.boolean()]),
7055
6688
  });
7056
6689
 
7057
6690
  /**
7058
6691
  * @internal
7059
6692
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7060
6693
  */
7061
- export namespace DollarAndDollarEq$ {
7062
- /** @deprecated use `DollarAndDollarEq$inboundSchema` instead. */
7063
- export const inboundSchema = DollarAndDollarEq$inboundSchema;
7064
- /** @deprecated use `DollarAndDollarEq$outboundSchema` instead. */
7065
- export const outboundSchema = DollarAndDollarEq$outboundSchema;
7066
- /** @deprecated use `DollarAndDollarEq$Outbound` instead. */
7067
- export type Outbound = DollarAndDollarEq$Outbound;
6694
+ export namespace AndEq$ {
6695
+ /** @deprecated use `AndEq$inboundSchema` instead. */
6696
+ export const inboundSchema = AndEq$inboundSchema;
6697
+ /** @deprecated use `AndEq$outboundSchema` instead. */
6698
+ export const outboundSchema = AndEq$outboundSchema;
6699
+ /** @deprecated use `AndEq$Outbound` instead. */
6700
+ export type Outbound = AndEq$Outbound;
7068
6701
  }
7069
6702
 
7070
- export function dollarAndDollarEqToJSON(
7071
- dollarAndDollarEq: DollarAndDollarEq,
7072
- ): string {
7073
- return JSON.stringify(
7074
- DollarAndDollarEq$outboundSchema.parse(dollarAndDollarEq),
7075
- );
6703
+ export function andEqToJSON(andEq: AndEq): string {
6704
+ return JSON.stringify(AndEq$outboundSchema.parse(andEq));
7076
6705
  }
7077
6706
 
7078
- export function dollarAndDollarEqFromJSON(
6707
+ export function andEqFromJSON(
7079
6708
  jsonString: string,
7080
- ): SafeParseResult<DollarAndDollarEq, SDKValidationError> {
6709
+ ): SafeParseResult<AndEq, SDKValidationError> {
7081
6710
  return safeParse(
7082
6711
  jsonString,
7083
- (x) => DollarAndDollarEq$inboundSchema.parse(JSON.parse(x)),
7084
- `Failed to parse 'DollarAndDollarEq' from JSON`,
6712
+ (x) => AndEq$inboundSchema.parse(JSON.parse(x)),
6713
+ `Failed to parse 'AndEq' from JSON`,
7085
6714
  );
7086
6715
  }
7087
6716
 
7088
6717
  /** @internal */
7089
- export const KnowledgeFilterDollarAnd$inboundSchema: z.ZodType<
7090
- KnowledgeFilterDollarAnd,
6718
+ export const KnowledgeFilterAnd$inboundSchema: z.ZodType<
6719
+ KnowledgeFilterAnd,
7091
6720
  z.ZodTypeDef,
7092
6721
  unknown
7093
6722
  > = z.union([
7094
- z.lazy(() => DollarAndDollarEq$inboundSchema),
7095
- z.lazy(() => DollarAndDollarNe$inboundSchema),
7096
- z.lazy(() => DollarAnd3$inboundSchema),
7097
- z.lazy(() => DollarAndDollarGte$inboundSchema),
7098
- z.lazy(() => DollarAndDollarLt$inboundSchema),
7099
- z.lazy(() => DollarAndDollarLte$inboundSchema),
7100
- z.lazy(() => DollarAndDollarIn$inboundSchema),
7101
- z.lazy(() => DollarAndDollarNin$inboundSchema),
7102
- z.lazy(() => DollarAndDollarExists$inboundSchema),
6723
+ z.lazy(() => AndEq$inboundSchema),
6724
+ z.lazy(() => AndNe$inboundSchema),
6725
+ z.lazy(() => And3$inboundSchema),
6726
+ z.lazy(() => AndGte$inboundSchema),
6727
+ z.lazy(() => AndLt$inboundSchema),
6728
+ z.lazy(() => AndLte$inboundSchema),
6729
+ z.lazy(() => AndIn$inboundSchema),
6730
+ z.lazy(() => AndNin$inboundSchema),
6731
+ z.lazy(() => AndExists$inboundSchema),
7103
6732
  ]);
7104
6733
 
7105
6734
  /** @internal */
7106
- export type KnowledgeFilterDollarAnd$Outbound =
7107
- | DollarAndDollarEq$Outbound
7108
- | DollarAndDollarNe$Outbound
7109
- | DollarAnd3$Outbound
7110
- | DollarAndDollarGte$Outbound
7111
- | DollarAndDollarLt$Outbound
7112
- | DollarAndDollarLte$Outbound
7113
- | DollarAndDollarIn$Outbound
7114
- | DollarAndDollarNin$Outbound
7115
- | DollarAndDollarExists$Outbound;
6735
+ export type KnowledgeFilterAnd$Outbound =
6736
+ | AndEq$Outbound
6737
+ | AndNe$Outbound
6738
+ | And3$Outbound
6739
+ | AndGte$Outbound
6740
+ | AndLt$Outbound
6741
+ | AndLte$Outbound
6742
+ | AndIn$Outbound
6743
+ | AndNin$Outbound
6744
+ | AndExists$Outbound;
7116
6745
 
7117
6746
  /** @internal */
7118
- export const KnowledgeFilterDollarAnd$outboundSchema: z.ZodType<
7119
- KnowledgeFilterDollarAnd$Outbound,
6747
+ export const KnowledgeFilterAnd$outboundSchema: z.ZodType<
6748
+ KnowledgeFilterAnd$Outbound,
7120
6749
  z.ZodTypeDef,
7121
- KnowledgeFilterDollarAnd
6750
+ KnowledgeFilterAnd
7122
6751
  > = z.union([
7123
- z.lazy(() => DollarAndDollarEq$outboundSchema),
7124
- z.lazy(() => DollarAndDollarNe$outboundSchema),
7125
- z.lazy(() => DollarAnd3$outboundSchema),
7126
- z.lazy(() => DollarAndDollarGte$outboundSchema),
7127
- z.lazy(() => DollarAndDollarLt$outboundSchema),
7128
- z.lazy(() => DollarAndDollarLte$outboundSchema),
7129
- z.lazy(() => DollarAndDollarIn$outboundSchema),
7130
- z.lazy(() => DollarAndDollarNin$outboundSchema),
7131
- z.lazy(() => DollarAndDollarExists$outboundSchema),
6752
+ z.lazy(() => AndEq$outboundSchema),
6753
+ z.lazy(() => AndNe$outboundSchema),
6754
+ z.lazy(() => And3$outboundSchema),
6755
+ z.lazy(() => AndGte$outboundSchema),
6756
+ z.lazy(() => AndLt$outboundSchema),
6757
+ z.lazy(() => AndLte$outboundSchema),
6758
+ z.lazy(() => AndIn$outboundSchema),
6759
+ z.lazy(() => AndNin$outboundSchema),
6760
+ z.lazy(() => AndExists$outboundSchema),
7132
6761
  ]);
7133
6762
 
7134
6763
  /**
7135
6764
  * @internal
7136
6765
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7137
6766
  */
7138
- export namespace KnowledgeFilterDollarAnd$ {
7139
- /** @deprecated use `KnowledgeFilterDollarAnd$inboundSchema` instead. */
7140
- export const inboundSchema = KnowledgeFilterDollarAnd$inboundSchema;
7141
- /** @deprecated use `KnowledgeFilterDollarAnd$outboundSchema` instead. */
7142
- export const outboundSchema = KnowledgeFilterDollarAnd$outboundSchema;
7143
- /** @deprecated use `KnowledgeFilterDollarAnd$Outbound` instead. */
7144
- export type Outbound = KnowledgeFilterDollarAnd$Outbound;
6767
+ export namespace KnowledgeFilterAnd$ {
6768
+ /** @deprecated use `KnowledgeFilterAnd$inboundSchema` instead. */
6769
+ export const inboundSchema = KnowledgeFilterAnd$inboundSchema;
6770
+ /** @deprecated use `KnowledgeFilterAnd$outboundSchema` instead. */
6771
+ export const outboundSchema = KnowledgeFilterAnd$outboundSchema;
6772
+ /** @deprecated use `KnowledgeFilterAnd$Outbound` instead. */
6773
+ export type Outbound = KnowledgeFilterAnd$Outbound;
7145
6774
  }
7146
6775
 
7147
- export function knowledgeFilterDollarAndToJSON(
7148
- knowledgeFilterDollarAnd: KnowledgeFilterDollarAnd,
6776
+ export function knowledgeFilterAndToJSON(
6777
+ knowledgeFilterAnd: KnowledgeFilterAnd,
7149
6778
  ): string {
7150
6779
  return JSON.stringify(
7151
- KnowledgeFilterDollarAnd$outboundSchema.parse(knowledgeFilterDollarAnd),
6780
+ KnowledgeFilterAnd$outboundSchema.parse(knowledgeFilterAnd),
7152
6781
  );
7153
6782
  }
7154
6783
 
7155
- export function knowledgeFilterDollarAndFromJSON(
6784
+ export function knowledgeFilterAndFromJSON(
7156
6785
  jsonString: string,
7157
- ): SafeParseResult<KnowledgeFilterDollarAnd, SDKValidationError> {
6786
+ ): SafeParseResult<KnowledgeFilterAnd, SDKValidationError> {
7158
6787
  return safeParse(
7159
6788
  jsonString,
7160
- (x) => KnowledgeFilterDollarAnd$inboundSchema.parse(JSON.parse(x)),
7161
- `Failed to parse 'KnowledgeFilterDollarAnd' from JSON`,
6789
+ (x) => KnowledgeFilterAnd$inboundSchema.parse(JSON.parse(x)),
6790
+ `Failed to parse 'KnowledgeFilterAnd' from JSON`,
7162
6791
  );
7163
6792
  }
7164
6793
 
7165
6794
  /** @internal */
7166
- export const DollarAnd$inboundSchema: z.ZodType<
7167
- DollarAnd,
7168
- z.ZodTypeDef,
7169
- unknown
7170
- > = z.object({
7171
- $and: z.array(
7172
- z.record(z.union([
7173
- z.lazy(() => DollarAndDollarEq$inboundSchema),
7174
- z.lazy(() =>
7175
- DollarAndDollarNe$inboundSchema
7176
- ),
7177
- z.lazy(() => DollarAnd3$inboundSchema),
7178
- z.lazy(() => DollarAndDollarGte$inboundSchema),
7179
- z.lazy(() => DollarAndDollarLt$inboundSchema),
7180
- z.lazy(() => DollarAndDollarLte$inboundSchema),
7181
- z.lazy(() => DollarAndDollarIn$inboundSchema),
7182
- z.lazy(() => DollarAndDollarNin$inboundSchema),
7183
- z.lazy(() => DollarAndDollarExists$inboundSchema),
7184
- ])),
7185
- ),
7186
- }).transform((v) => {
7187
- return remap$(v, {
7188
- "$and": "dollarAnd",
6795
+ export const And$inboundSchema: z.ZodType<And, z.ZodTypeDef, unknown> = z
6796
+ .object({
6797
+ and: z.array(
6798
+ z.record(z.union([
6799
+ z.lazy(() => AndEq$inboundSchema),
6800
+ z.lazy(() =>
6801
+ AndNe$inboundSchema
6802
+ ),
6803
+ z.lazy(() => And3$inboundSchema),
6804
+ z.lazy(() => AndGte$inboundSchema),
6805
+ z.lazy(() => AndLt$inboundSchema),
6806
+ z.lazy(() => AndLte$inboundSchema),
6807
+ z.lazy(() => AndIn$inboundSchema),
6808
+ z.lazy(() => AndNin$inboundSchema),
6809
+ z.lazy(() => AndExists$inboundSchema),
6810
+ ])),
6811
+ ),
7189
6812
  });
7190
- });
7191
6813
 
7192
6814
  /** @internal */
7193
- export type DollarAnd$Outbound = {
7194
- $and: Array<
6815
+ export type And$Outbound = {
6816
+ and: Array<
7195
6817
  {
7196
6818
  [k: string]:
7197
- | DollarAndDollarEq$Outbound
7198
- | DollarAndDollarNe$Outbound
7199
- | DollarAnd3$Outbound
7200
- | DollarAndDollarGte$Outbound
7201
- | DollarAndDollarLt$Outbound
7202
- | DollarAndDollarLte$Outbound
7203
- | DollarAndDollarIn$Outbound
7204
- | DollarAndDollarNin$Outbound
7205
- | DollarAndDollarExists$Outbound;
6819
+ | AndEq$Outbound
6820
+ | AndNe$Outbound
6821
+ | And3$Outbound
6822
+ | AndGte$Outbound
6823
+ | AndLt$Outbound
6824
+ | AndLte$Outbound
6825
+ | AndIn$Outbound
6826
+ | AndNin$Outbound
6827
+ | AndExists$Outbound;
7206
6828
  }
7207
6829
  >;
7208
6830
  };
7209
6831
 
7210
6832
  /** @internal */
7211
- export const DollarAnd$outboundSchema: z.ZodType<
7212
- DollarAnd$Outbound,
7213
- z.ZodTypeDef,
7214
- DollarAnd
7215
- > = z.object({
7216
- dollarAnd: z.array(
7217
- z.record(z.union([
7218
- z.lazy(() => DollarAndDollarEq$outboundSchema),
7219
- z.lazy(() =>
7220
- DollarAndDollarNe$outboundSchema
7221
- ),
7222
- z.lazy(() => DollarAnd3$outboundSchema),
7223
- z.lazy(() => DollarAndDollarGte$outboundSchema),
7224
- z.lazy(() => DollarAndDollarLt$outboundSchema),
7225
- z.lazy(() => DollarAndDollarLte$outboundSchema),
7226
- z.lazy(() => DollarAndDollarIn$outboundSchema),
7227
- z.lazy(() => DollarAndDollarNin$outboundSchema),
7228
- z.lazy(() => DollarAndDollarExists$outboundSchema),
7229
- ])),
7230
- ),
7231
- }).transform((v) => {
7232
- return remap$(v, {
7233
- dollarAnd: "$and",
6833
+ export const And$outboundSchema: z.ZodType<And$Outbound, z.ZodTypeDef, And> = z
6834
+ .object({
6835
+ and: z.array(
6836
+ z.record(z.union([
6837
+ z.lazy(() => AndEq$outboundSchema),
6838
+ z.lazy(() =>
6839
+ AndNe$outboundSchema
6840
+ ),
6841
+ z.lazy(() => And3$outboundSchema),
6842
+ z.lazy(() => AndGte$outboundSchema),
6843
+ z.lazy(() => AndLt$outboundSchema),
6844
+ z.lazy(() => AndLte$outboundSchema),
6845
+ z.lazy(() => AndIn$outboundSchema),
6846
+ z.lazy(() => AndNin$outboundSchema),
6847
+ z.lazy(() => AndExists$outboundSchema),
6848
+ ])),
6849
+ ),
7234
6850
  });
7235
- });
7236
6851
 
7237
6852
  /**
7238
6853
  * @internal
7239
6854
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7240
6855
  */
7241
- export namespace DollarAnd$ {
7242
- /** @deprecated use `DollarAnd$inboundSchema` instead. */
7243
- export const inboundSchema = DollarAnd$inboundSchema;
7244
- /** @deprecated use `DollarAnd$outboundSchema` instead. */
7245
- export const outboundSchema = DollarAnd$outboundSchema;
7246
- /** @deprecated use `DollarAnd$Outbound` instead. */
7247
- export type Outbound = DollarAnd$Outbound;
6856
+ export namespace And$ {
6857
+ /** @deprecated use `And$inboundSchema` instead. */
6858
+ export const inboundSchema = And$inboundSchema;
6859
+ /** @deprecated use `And$outboundSchema` instead. */
6860
+ export const outboundSchema = And$outboundSchema;
6861
+ /** @deprecated use `And$Outbound` instead. */
6862
+ export type Outbound = And$Outbound;
7248
6863
  }
7249
6864
 
7250
- export function dollarAndToJSON(dollarAnd: DollarAnd): string {
7251
- return JSON.stringify(DollarAnd$outboundSchema.parse(dollarAnd));
6865
+ export function andToJSON(and: And): string {
6866
+ return JSON.stringify(And$outboundSchema.parse(and));
7252
6867
  }
7253
6868
 
7254
- export function dollarAndFromJSON(
6869
+ export function andFromJSON(
7255
6870
  jsonString: string,
7256
- ): SafeParseResult<DollarAnd, SDKValidationError> {
6871
+ ): SafeParseResult<And, SDKValidationError> {
7257
6872
  return safeParse(
7258
6873
  jsonString,
7259
- (x) => DollarAnd$inboundSchema.parse(JSON.parse(x)),
7260
- `Failed to parse 'DollarAnd' from JSON`,
6874
+ (x) => And$inboundSchema.parse(JSON.parse(x)),
6875
+ `Failed to parse 'And' from JSON`,
7261
6876
  );
7262
6877
  }
7263
6878
 
7264
6879
  /** @internal */
7265
- export const DollarExists$inboundSchema: z.ZodType<
7266
- DollarExists,
7267
- z.ZodTypeDef,
7268
- unknown
7269
- > = z.object({
7270
- $exists: z.boolean(),
7271
- }).transform((v) => {
7272
- return remap$(v, {
7273
- "$exists": "dollarExists",
6880
+ export const Exists$inboundSchema: z.ZodType<Exists, z.ZodTypeDef, unknown> = z
6881
+ .object({
6882
+ exists: z.boolean(),
7274
6883
  });
7275
- });
7276
6884
 
7277
6885
  /** @internal */
7278
- export type DollarExists$Outbound = {
7279
- $exists: boolean;
6886
+ export type Exists$Outbound = {
6887
+ exists: boolean;
7280
6888
  };
7281
6889
 
7282
6890
  /** @internal */
7283
- export const DollarExists$outboundSchema: z.ZodType<
7284
- DollarExists$Outbound,
6891
+ export const Exists$outboundSchema: z.ZodType<
6892
+ Exists$Outbound,
7285
6893
  z.ZodTypeDef,
7286
- DollarExists
6894
+ Exists
7287
6895
  > = z.object({
7288
- dollarExists: z.boolean(),
7289
- }).transform((v) => {
7290
- return remap$(v, {
7291
- dollarExists: "$exists",
7292
- });
6896
+ exists: z.boolean(),
7293
6897
  });
7294
6898
 
7295
6899
  /**
7296
6900
  * @internal
7297
6901
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7298
6902
  */
7299
- export namespace DollarExists$ {
7300
- /** @deprecated use `DollarExists$inboundSchema` instead. */
7301
- export const inboundSchema = DollarExists$inboundSchema;
7302
- /** @deprecated use `DollarExists$outboundSchema` instead. */
7303
- export const outboundSchema = DollarExists$outboundSchema;
7304
- /** @deprecated use `DollarExists$Outbound` instead. */
7305
- export type Outbound = DollarExists$Outbound;
6903
+ export namespace Exists$ {
6904
+ /** @deprecated use `Exists$inboundSchema` instead. */
6905
+ export const inboundSchema = Exists$inboundSchema;
6906
+ /** @deprecated use `Exists$outboundSchema` instead. */
6907
+ export const outboundSchema = Exists$outboundSchema;
6908
+ /** @deprecated use `Exists$Outbound` instead. */
6909
+ export type Outbound = Exists$Outbound;
7306
6910
  }
7307
6911
 
7308
- export function dollarExistsToJSON(dollarExists: DollarExists): string {
7309
- return JSON.stringify(DollarExists$outboundSchema.parse(dollarExists));
6912
+ export function existsToJSON(exists: Exists): string {
6913
+ return JSON.stringify(Exists$outboundSchema.parse(exists));
7310
6914
  }
7311
6915
 
7312
- export function dollarExistsFromJSON(
6916
+ export function existsFromJSON(
7313
6917
  jsonString: string,
7314
- ): SafeParseResult<DollarExists, SDKValidationError> {
6918
+ ): SafeParseResult<Exists, SDKValidationError> {
7315
6919
  return safeParse(
7316
6920
  jsonString,
7317
- (x) => DollarExists$inboundSchema.parse(JSON.parse(x)),
7318
- `Failed to parse 'DollarExists' from JSON`,
6921
+ (x) => Exists$inboundSchema.parse(JSON.parse(x)),
6922
+ `Failed to parse 'Exists' from JSON`,
7319
6923
  );
7320
6924
  }
7321
6925
 
7322
6926
  /** @internal */
7323
- export const OneDollarNin$inboundSchema: z.ZodType<
7324
- OneDollarNin,
7325
- z.ZodTypeDef,
7326
- unknown
7327
- > = z.union([z.string(), z.number(), z.boolean()]);
6927
+ export const OneNin$inboundSchema: z.ZodType<OneNin, z.ZodTypeDef, unknown> = z
6928
+ .union([z.string(), z.number(), z.boolean()]);
7328
6929
 
7329
6930
  /** @internal */
7330
- export type OneDollarNin$Outbound = string | number | boolean;
6931
+ export type OneNin$Outbound = string | number | boolean;
7331
6932
 
7332
6933
  /** @internal */
7333
- export const OneDollarNin$outboundSchema: z.ZodType<
7334
- OneDollarNin$Outbound,
6934
+ export const OneNin$outboundSchema: z.ZodType<
6935
+ OneNin$Outbound,
7335
6936
  z.ZodTypeDef,
7336
- OneDollarNin
6937
+ OneNin
7337
6938
  > = z.union([z.string(), z.number(), z.boolean()]);
7338
6939
 
7339
6940
  /**
7340
6941
  * @internal
7341
6942
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7342
6943
  */
7343
- export namespace OneDollarNin$ {
7344
- /** @deprecated use `OneDollarNin$inboundSchema` instead. */
7345
- export const inboundSchema = OneDollarNin$inboundSchema;
7346
- /** @deprecated use `OneDollarNin$outboundSchema` instead. */
7347
- export const outboundSchema = OneDollarNin$outboundSchema;
7348
- /** @deprecated use `OneDollarNin$Outbound` instead. */
7349
- export type Outbound = OneDollarNin$Outbound;
6944
+ export namespace OneNin$ {
6945
+ /** @deprecated use `OneNin$inboundSchema` instead. */
6946
+ export const inboundSchema = OneNin$inboundSchema;
6947
+ /** @deprecated use `OneNin$outboundSchema` instead. */
6948
+ export const outboundSchema = OneNin$outboundSchema;
6949
+ /** @deprecated use `OneNin$Outbound` instead. */
6950
+ export type Outbound = OneNin$Outbound;
7350
6951
  }
7351
6952
 
7352
- export function oneDollarNinToJSON(oneDollarNin: OneDollarNin): string {
7353
- return JSON.stringify(OneDollarNin$outboundSchema.parse(oneDollarNin));
6953
+ export function oneNinToJSON(oneNin: OneNin): string {
6954
+ return JSON.stringify(OneNin$outboundSchema.parse(oneNin));
7354
6955
  }
7355
6956
 
7356
- export function oneDollarNinFromJSON(
6957
+ export function oneNinFromJSON(
7357
6958
  jsonString: string,
7358
- ): SafeParseResult<OneDollarNin, SDKValidationError> {
6959
+ ): SafeParseResult<OneNin, SDKValidationError> {
7359
6960
  return safeParse(
7360
6961
  jsonString,
7361
- (x) => OneDollarNin$inboundSchema.parse(JSON.parse(x)),
7362
- `Failed to parse 'OneDollarNin' from JSON`,
6962
+ (x) => OneNin$inboundSchema.parse(JSON.parse(x)),
6963
+ `Failed to parse 'OneNin' from JSON`,
7363
6964
  );
7364
6965
  }
7365
6966
 
7366
6967
  /** @internal */
7367
- export const DollarNin$inboundSchema: z.ZodType<
7368
- DollarNin,
7369
- z.ZodTypeDef,
7370
- unknown
7371
- > = z.object({
7372
- $nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
7373
- }).transform((v) => {
7374
- return remap$(v, {
7375
- "$nin": "dollarNin",
6968
+ export const Nin$inboundSchema: z.ZodType<Nin, z.ZodTypeDef, unknown> = z
6969
+ .object({
6970
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
7376
6971
  });
7377
- });
7378
6972
 
7379
6973
  /** @internal */
7380
- export type DollarNin$Outbound = {
7381
- $nin: Array<string | number | boolean>;
6974
+ export type Nin$Outbound = {
6975
+ nin: Array<string | number | boolean>;
7382
6976
  };
7383
6977
 
7384
6978
  /** @internal */
7385
- export const DollarNin$outboundSchema: z.ZodType<
7386
- DollarNin$Outbound,
7387
- z.ZodTypeDef,
7388
- DollarNin
7389
- > = z.object({
7390
- dollarNin: z.array(z.union([z.string(), z.number(), z.boolean()])),
7391
- }).transform((v) => {
7392
- return remap$(v, {
7393
- dollarNin: "$nin",
6979
+ export const Nin$outboundSchema: z.ZodType<Nin$Outbound, z.ZodTypeDef, Nin> = z
6980
+ .object({
6981
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
7394
6982
  });
7395
- });
7396
6983
 
7397
6984
  /**
7398
6985
  * @internal
7399
6986
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7400
6987
  */
7401
- export namespace DollarNin$ {
7402
- /** @deprecated use `DollarNin$inboundSchema` instead. */
7403
- export const inboundSchema = DollarNin$inboundSchema;
7404
- /** @deprecated use `DollarNin$outboundSchema` instead. */
7405
- export const outboundSchema = DollarNin$outboundSchema;
7406
- /** @deprecated use `DollarNin$Outbound` instead. */
7407
- export type Outbound = DollarNin$Outbound;
6988
+ export namespace Nin$ {
6989
+ /** @deprecated use `Nin$inboundSchema` instead. */
6990
+ export const inboundSchema = Nin$inboundSchema;
6991
+ /** @deprecated use `Nin$outboundSchema` instead. */
6992
+ export const outboundSchema = Nin$outboundSchema;
6993
+ /** @deprecated use `Nin$Outbound` instead. */
6994
+ export type Outbound = Nin$Outbound;
7408
6995
  }
7409
6996
 
7410
- export function dollarNinToJSON(dollarNin: DollarNin): string {
7411
- return JSON.stringify(DollarNin$outboundSchema.parse(dollarNin));
6997
+ export function ninToJSON(nin: Nin): string {
6998
+ return JSON.stringify(Nin$outboundSchema.parse(nin));
7412
6999
  }
7413
7000
 
7414
- export function dollarNinFromJSON(
7001
+ export function ninFromJSON(
7415
7002
  jsonString: string,
7416
- ): SafeParseResult<DollarNin, SDKValidationError> {
7003
+ ): SafeParseResult<Nin, SDKValidationError> {
7417
7004
  return safeParse(
7418
7005
  jsonString,
7419
- (x) => DollarNin$inboundSchema.parse(JSON.parse(x)),
7420
- `Failed to parse 'DollarNin' from JSON`,
7006
+ (x) => Nin$inboundSchema.parse(JSON.parse(x)),
7007
+ `Failed to parse 'Nin' from JSON`,
7421
7008
  );
7422
7009
  }
7423
7010
 
7424
7011
  /** @internal */
7425
- export const OneDollarIn$inboundSchema: z.ZodType<
7426
- OneDollarIn,
7427
- z.ZodTypeDef,
7428
- unknown
7429
- > = z.union([z.string(), z.number(), z.boolean()]);
7012
+ export const OneIn$inboundSchema: z.ZodType<OneIn, z.ZodTypeDef, unknown> = z
7013
+ .union([z.string(), z.number(), z.boolean()]);
7430
7014
 
7431
7015
  /** @internal */
7432
- export type OneDollarIn$Outbound = string | number | boolean;
7016
+ export type OneIn$Outbound = string | number | boolean;
7433
7017
 
7434
7018
  /** @internal */
7435
- export const OneDollarIn$outboundSchema: z.ZodType<
7436
- OneDollarIn$Outbound,
7019
+ export const OneIn$outboundSchema: z.ZodType<
7020
+ OneIn$Outbound,
7437
7021
  z.ZodTypeDef,
7438
- OneDollarIn
7022
+ OneIn
7439
7023
  > = z.union([z.string(), z.number(), z.boolean()]);
7440
7024
 
7441
7025
  /**
7442
7026
  * @internal
7443
7027
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7444
7028
  */
7445
- export namespace OneDollarIn$ {
7446
- /** @deprecated use `OneDollarIn$inboundSchema` instead. */
7447
- export const inboundSchema = OneDollarIn$inboundSchema;
7448
- /** @deprecated use `OneDollarIn$outboundSchema` instead. */
7449
- export const outboundSchema = OneDollarIn$outboundSchema;
7450
- /** @deprecated use `OneDollarIn$Outbound` instead. */
7451
- export type Outbound = OneDollarIn$Outbound;
7029
+ export namespace OneIn$ {
7030
+ /** @deprecated use `OneIn$inboundSchema` instead. */
7031
+ export const inboundSchema = OneIn$inboundSchema;
7032
+ /** @deprecated use `OneIn$outboundSchema` instead. */
7033
+ export const outboundSchema = OneIn$outboundSchema;
7034
+ /** @deprecated use `OneIn$Outbound` instead. */
7035
+ export type Outbound = OneIn$Outbound;
7452
7036
  }
7453
7037
 
7454
- export function oneDollarInToJSON(oneDollarIn: OneDollarIn): string {
7455
- return JSON.stringify(OneDollarIn$outboundSchema.parse(oneDollarIn));
7038
+ export function oneInToJSON(oneIn: OneIn): string {
7039
+ return JSON.stringify(OneIn$outboundSchema.parse(oneIn));
7456
7040
  }
7457
7041
 
7458
- export function oneDollarInFromJSON(
7042
+ export function oneInFromJSON(
7459
7043
  jsonString: string,
7460
- ): SafeParseResult<OneDollarIn, SDKValidationError> {
7044
+ ): SafeParseResult<OneIn, SDKValidationError> {
7461
7045
  return safeParse(
7462
7046
  jsonString,
7463
- (x) => OneDollarIn$inboundSchema.parse(JSON.parse(x)),
7464
- `Failed to parse 'OneDollarIn' from JSON`,
7047
+ (x) => OneIn$inboundSchema.parse(JSON.parse(x)),
7048
+ `Failed to parse 'OneIn' from JSON`,
7465
7049
  );
7466
7050
  }
7467
7051
 
7468
7052
  /** @internal */
7469
- export const DollarIn$inboundSchema: z.ZodType<
7470
- DollarIn,
7471
- z.ZodTypeDef,
7472
- unknown
7473
- > = z.object({
7474
- $in: z.array(z.union([z.string(), z.number(), z.boolean()])),
7475
- }).transform((v) => {
7476
- return remap$(v, {
7477
- "$in": "dollarIn",
7478
- });
7053
+ export const In$inboundSchema: z.ZodType<In, z.ZodTypeDef, unknown> = z.object({
7054
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
7479
7055
  });
7480
7056
 
7481
7057
  /** @internal */
7482
- export type DollarIn$Outbound = {
7483
- $in: Array<string | number | boolean>;
7058
+ export type In$Outbound = {
7059
+ in: Array<string | number | boolean>;
7484
7060
  };
7485
7061
 
7486
7062
  /** @internal */
7487
- export const DollarIn$outboundSchema: z.ZodType<
7488
- DollarIn$Outbound,
7489
- z.ZodTypeDef,
7490
- DollarIn
7491
- > = z.object({
7492
- dollarIn: z.array(z.union([z.string(), z.number(), z.boolean()])),
7493
- }).transform((v) => {
7494
- return remap$(v, {
7495
- dollarIn: "$in",
7063
+ export const In$outboundSchema: z.ZodType<In$Outbound, z.ZodTypeDef, In> = z
7064
+ .object({
7065
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
7496
7066
  });
7497
- });
7498
7067
 
7499
7068
  /**
7500
7069
  * @internal
7501
7070
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7502
7071
  */
7503
- export namespace DollarIn$ {
7504
- /** @deprecated use `DollarIn$inboundSchema` instead. */
7505
- export const inboundSchema = DollarIn$inboundSchema;
7506
- /** @deprecated use `DollarIn$outboundSchema` instead. */
7507
- export const outboundSchema = DollarIn$outboundSchema;
7508
- /** @deprecated use `DollarIn$Outbound` instead. */
7509
- export type Outbound = DollarIn$Outbound;
7072
+ export namespace In$ {
7073
+ /** @deprecated use `In$inboundSchema` instead. */
7074
+ export const inboundSchema = In$inboundSchema;
7075
+ /** @deprecated use `In$outboundSchema` instead. */
7076
+ export const outboundSchema = In$outboundSchema;
7077
+ /** @deprecated use `In$Outbound` instead. */
7078
+ export type Outbound = In$Outbound;
7510
7079
  }
7511
7080
 
7512
- export function dollarInToJSON(dollarIn: DollarIn): string {
7513
- return JSON.stringify(DollarIn$outboundSchema.parse(dollarIn));
7081
+ export function inToJSON(value: In): string {
7082
+ return JSON.stringify(In$outboundSchema.parse(value));
7514
7083
  }
7515
7084
 
7516
- export function dollarInFromJSON(
7085
+ export function inFromJSON(
7517
7086
  jsonString: string,
7518
- ): SafeParseResult<DollarIn, SDKValidationError> {
7087
+ ): SafeParseResult<In, SDKValidationError> {
7519
7088
  return safeParse(
7520
7089
  jsonString,
7521
- (x) => DollarIn$inboundSchema.parse(JSON.parse(x)),
7522
- `Failed to parse 'DollarIn' from JSON`,
7090
+ (x) => In$inboundSchema.parse(JSON.parse(x)),
7091
+ `Failed to parse 'In' from JSON`,
7523
7092
  );
7524
7093
  }
7525
7094
 
7526
7095
  /** @internal */
7527
- export const DollarLte$inboundSchema: z.ZodType<
7528
- DollarLte,
7529
- z.ZodTypeDef,
7530
- unknown
7531
- > = z.object({
7532
- $lte: z.number(),
7533
- }).transform((v) => {
7534
- return remap$(v, {
7535
- "$lte": "dollarLte",
7096
+ export const Lte$inboundSchema: z.ZodType<Lte, z.ZodTypeDef, unknown> = z
7097
+ .object({
7098
+ lte: z.number(),
7536
7099
  });
7537
- });
7538
7100
 
7539
7101
  /** @internal */
7540
- export type DollarLte$Outbound = {
7541
- $lte: number;
7102
+ export type Lte$Outbound = {
7103
+ lte: number;
7542
7104
  };
7543
7105
 
7544
7106
  /** @internal */
7545
- export const DollarLte$outboundSchema: z.ZodType<
7546
- DollarLte$Outbound,
7547
- z.ZodTypeDef,
7548
- DollarLte
7549
- > = z.object({
7550
- dollarLte: z.number(),
7551
- }).transform((v) => {
7552
- return remap$(v, {
7553
- dollarLte: "$lte",
7107
+ export const Lte$outboundSchema: z.ZodType<Lte$Outbound, z.ZodTypeDef, Lte> = z
7108
+ .object({
7109
+ lte: z.number(),
7554
7110
  });
7555
- });
7556
7111
 
7557
7112
  /**
7558
7113
  * @internal
7559
7114
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7560
7115
  */
7561
- export namespace DollarLte$ {
7562
- /** @deprecated use `DollarLte$inboundSchema` instead. */
7563
- export const inboundSchema = DollarLte$inboundSchema;
7564
- /** @deprecated use `DollarLte$outboundSchema` instead. */
7565
- export const outboundSchema = DollarLte$outboundSchema;
7566
- /** @deprecated use `DollarLte$Outbound` instead. */
7567
- export type Outbound = DollarLte$Outbound;
7116
+ export namespace Lte$ {
7117
+ /** @deprecated use `Lte$inboundSchema` instead. */
7118
+ export const inboundSchema = Lte$inboundSchema;
7119
+ /** @deprecated use `Lte$outboundSchema` instead. */
7120
+ export const outboundSchema = Lte$outboundSchema;
7121
+ /** @deprecated use `Lte$Outbound` instead. */
7122
+ export type Outbound = Lte$Outbound;
7568
7123
  }
7569
7124
 
7570
- export function dollarLteToJSON(dollarLte: DollarLte): string {
7571
- return JSON.stringify(DollarLte$outboundSchema.parse(dollarLte));
7125
+ export function lteToJSON(lte: Lte): string {
7126
+ return JSON.stringify(Lte$outboundSchema.parse(lte));
7572
7127
  }
7573
7128
 
7574
- export function dollarLteFromJSON(
7129
+ export function lteFromJSON(
7575
7130
  jsonString: string,
7576
- ): SafeParseResult<DollarLte, SDKValidationError> {
7131
+ ): SafeParseResult<Lte, SDKValidationError> {
7577
7132
  return safeParse(
7578
7133
  jsonString,
7579
- (x) => DollarLte$inboundSchema.parse(JSON.parse(x)),
7580
- `Failed to parse 'DollarLte' from JSON`,
7134
+ (x) => Lte$inboundSchema.parse(JSON.parse(x)),
7135
+ `Failed to parse 'Lte' from JSON`,
7581
7136
  );
7582
7137
  }
7583
7138
 
7584
7139
  /** @internal */
7585
- export const DollarLt$inboundSchema: z.ZodType<
7586
- DollarLt,
7587
- z.ZodTypeDef,
7588
- unknown
7589
- > = z.object({
7590
- $lt: z.number(),
7591
- }).transform((v) => {
7592
- return remap$(v, {
7593
- "$lt": "dollarLt",
7594
- });
7140
+ export const Lt$inboundSchema: z.ZodType<Lt, z.ZodTypeDef, unknown> = z.object({
7141
+ lt: z.number(),
7595
7142
  });
7596
7143
 
7597
7144
  /** @internal */
7598
- export type DollarLt$Outbound = {
7599
- $lt: number;
7145
+ export type Lt$Outbound = {
7146
+ lt: number;
7600
7147
  };
7601
7148
 
7602
7149
  /** @internal */
7603
- export const DollarLt$outboundSchema: z.ZodType<
7604
- DollarLt$Outbound,
7605
- z.ZodTypeDef,
7606
- DollarLt
7607
- > = z.object({
7608
- dollarLt: z.number(),
7609
- }).transform((v) => {
7610
- return remap$(v, {
7611
- dollarLt: "$lt",
7150
+ export const Lt$outboundSchema: z.ZodType<Lt$Outbound, z.ZodTypeDef, Lt> = z
7151
+ .object({
7152
+ lt: z.number(),
7612
7153
  });
7613
- });
7614
7154
 
7615
7155
  /**
7616
7156
  * @internal
7617
7157
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7618
7158
  */
7619
- export namespace DollarLt$ {
7620
- /** @deprecated use `DollarLt$inboundSchema` instead. */
7621
- export const inboundSchema = DollarLt$inboundSchema;
7622
- /** @deprecated use `DollarLt$outboundSchema` instead. */
7623
- export const outboundSchema = DollarLt$outboundSchema;
7624
- /** @deprecated use `DollarLt$Outbound` instead. */
7625
- export type Outbound = DollarLt$Outbound;
7159
+ export namespace Lt$ {
7160
+ /** @deprecated use `Lt$inboundSchema` instead. */
7161
+ export const inboundSchema = Lt$inboundSchema;
7162
+ /** @deprecated use `Lt$outboundSchema` instead. */
7163
+ export const outboundSchema = Lt$outboundSchema;
7164
+ /** @deprecated use `Lt$Outbound` instead. */
7165
+ export type Outbound = Lt$Outbound;
7626
7166
  }
7627
7167
 
7628
- export function dollarLtToJSON(dollarLt: DollarLt): string {
7629
- return JSON.stringify(DollarLt$outboundSchema.parse(dollarLt));
7168
+ export function ltToJSON(lt: Lt): string {
7169
+ return JSON.stringify(Lt$outboundSchema.parse(lt));
7630
7170
  }
7631
7171
 
7632
- export function dollarLtFromJSON(
7172
+ export function ltFromJSON(
7633
7173
  jsonString: string,
7634
- ): SafeParseResult<DollarLt, SDKValidationError> {
7174
+ ): SafeParseResult<Lt, SDKValidationError> {
7635
7175
  return safeParse(
7636
7176
  jsonString,
7637
- (x) => DollarLt$inboundSchema.parse(JSON.parse(x)),
7638
- `Failed to parse 'DollarLt' from JSON`,
7177
+ (x) => Lt$inboundSchema.parse(JSON.parse(x)),
7178
+ `Failed to parse 'Lt' from JSON`,
7639
7179
  );
7640
7180
  }
7641
7181
 
7642
7182
  /** @internal */
7643
- export const DollarGte$inboundSchema: z.ZodType<
7644
- DollarGte,
7645
- z.ZodTypeDef,
7646
- unknown
7647
- > = z.object({
7648
- $gte: z.number(),
7649
- }).transform((v) => {
7650
- return remap$(v, {
7651
- "$gte": "dollarGte",
7183
+ export const Gte$inboundSchema: z.ZodType<Gte, z.ZodTypeDef, unknown> = z
7184
+ .object({
7185
+ gte: z.number(),
7652
7186
  });
7653
- });
7654
7187
 
7655
7188
  /** @internal */
7656
- export type DollarGte$Outbound = {
7657
- $gte: number;
7189
+ export type Gte$Outbound = {
7190
+ gte: number;
7658
7191
  };
7659
7192
 
7660
7193
  /** @internal */
7661
- export const DollarGte$outboundSchema: z.ZodType<
7662
- DollarGte$Outbound,
7663
- z.ZodTypeDef,
7664
- DollarGte
7665
- > = z.object({
7666
- dollarGte: z.number(),
7667
- }).transform((v) => {
7668
- return remap$(v, {
7669
- dollarGte: "$gte",
7194
+ export const Gte$outboundSchema: z.ZodType<Gte$Outbound, z.ZodTypeDef, Gte> = z
7195
+ .object({
7196
+ gte: z.number(),
7670
7197
  });
7671
- });
7672
7198
 
7673
7199
  /**
7674
7200
  * @internal
7675
7201
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7676
7202
  */
7677
- export namespace DollarGte$ {
7678
- /** @deprecated use `DollarGte$inboundSchema` instead. */
7679
- export const inboundSchema = DollarGte$inboundSchema;
7680
- /** @deprecated use `DollarGte$outboundSchema` instead. */
7681
- export const outboundSchema = DollarGte$outboundSchema;
7682
- /** @deprecated use `DollarGte$Outbound` instead. */
7683
- export type Outbound = DollarGte$Outbound;
7203
+ export namespace Gte$ {
7204
+ /** @deprecated use `Gte$inboundSchema` instead. */
7205
+ export const inboundSchema = Gte$inboundSchema;
7206
+ /** @deprecated use `Gte$outboundSchema` instead. */
7207
+ export const outboundSchema = Gte$outboundSchema;
7208
+ /** @deprecated use `Gte$Outbound` instead. */
7209
+ export type Outbound = Gte$Outbound;
7684
7210
  }
7685
7211
 
7686
- export function dollarGteToJSON(dollarGte: DollarGte): string {
7687
- return JSON.stringify(DollarGte$outboundSchema.parse(dollarGte));
7212
+ export function gteToJSON(gte: Gte): string {
7213
+ return JSON.stringify(Gte$outboundSchema.parse(gte));
7688
7214
  }
7689
7215
 
7690
- export function dollarGteFromJSON(
7216
+ export function gteFromJSON(
7691
7217
  jsonString: string,
7692
- ): SafeParseResult<DollarGte, SDKValidationError> {
7218
+ ): SafeParseResult<Gte, SDKValidationError> {
7693
7219
  return safeParse(
7694
7220
  jsonString,
7695
- (x) => DollarGte$inboundSchema.parse(JSON.parse(x)),
7696
- `Failed to parse 'DollarGte' from JSON`,
7221
+ (x) => Gte$inboundSchema.parse(JSON.parse(x)),
7222
+ `Failed to parse 'Gte' from JSON`,
7697
7223
  );
7698
7224
  }
7699
7225
 
7700
7226
  /** @internal */
7701
7227
  export const One3$inboundSchema: z.ZodType<One3, z.ZodTypeDef, unknown> = z
7702
7228
  .object({
7703
- $gt: z.number(),
7704
- }).transform((v) => {
7705
- return remap$(v, {
7706
- "$gt": "dollarGt",
7707
- });
7229
+ gt: z.number(),
7708
7230
  });
7709
7231
 
7710
7232
  /** @internal */
7711
7233
  export type One3$Outbound = {
7712
- $gt: number;
7234
+ gt: number;
7713
7235
  };
7714
7236
 
7715
7237
  /** @internal */
7716
7238
  export const One3$outboundSchema: z.ZodType<One3$Outbound, z.ZodTypeDef, One3> =
7717
7239
  z.object({
7718
- dollarGt: z.number(),
7719
- }).transform((v) => {
7720
- return remap$(v, {
7721
- dollarGt: "$gt",
7722
- });
7240
+ gt: z.number(),
7723
7241
  });
7724
7242
 
7725
7243
  /**
@@ -7750,206 +7268,170 @@ export function one3FromJSON(
7750
7268
  }
7751
7269
 
7752
7270
  /** @internal */
7753
- export const OneDollarNe$inboundSchema: z.ZodType<
7754
- OneDollarNe,
7755
- z.ZodTypeDef,
7756
- unknown
7757
- > = z.union([z.string(), z.number(), z.boolean()]);
7271
+ export const OneNe$inboundSchema: z.ZodType<OneNe, z.ZodTypeDef, unknown> = z
7272
+ .union([z.string(), z.number(), z.boolean()]);
7758
7273
 
7759
7274
  /** @internal */
7760
- export type OneDollarNe$Outbound = string | number | boolean;
7275
+ export type OneNe$Outbound = string | number | boolean;
7761
7276
 
7762
7277
  /** @internal */
7763
- export const OneDollarNe$outboundSchema: z.ZodType<
7764
- OneDollarNe$Outbound,
7278
+ export const OneNe$outboundSchema: z.ZodType<
7279
+ OneNe$Outbound,
7765
7280
  z.ZodTypeDef,
7766
- OneDollarNe
7281
+ OneNe
7767
7282
  > = z.union([z.string(), z.number(), z.boolean()]);
7768
7283
 
7769
7284
  /**
7770
7285
  * @internal
7771
7286
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7772
7287
  */
7773
- export namespace OneDollarNe$ {
7774
- /** @deprecated use `OneDollarNe$inboundSchema` instead. */
7775
- export const inboundSchema = OneDollarNe$inboundSchema;
7776
- /** @deprecated use `OneDollarNe$outboundSchema` instead. */
7777
- export const outboundSchema = OneDollarNe$outboundSchema;
7778
- /** @deprecated use `OneDollarNe$Outbound` instead. */
7779
- export type Outbound = OneDollarNe$Outbound;
7288
+ export namespace OneNe$ {
7289
+ /** @deprecated use `OneNe$inboundSchema` instead. */
7290
+ export const inboundSchema = OneNe$inboundSchema;
7291
+ /** @deprecated use `OneNe$outboundSchema` instead. */
7292
+ export const outboundSchema = OneNe$outboundSchema;
7293
+ /** @deprecated use `OneNe$Outbound` instead. */
7294
+ export type Outbound = OneNe$Outbound;
7780
7295
  }
7781
7296
 
7782
- export function oneDollarNeToJSON(oneDollarNe: OneDollarNe): string {
7783
- return JSON.stringify(OneDollarNe$outboundSchema.parse(oneDollarNe));
7297
+ export function oneNeToJSON(oneNe: OneNe): string {
7298
+ return JSON.stringify(OneNe$outboundSchema.parse(oneNe));
7784
7299
  }
7785
7300
 
7786
- export function oneDollarNeFromJSON(
7301
+ export function oneNeFromJSON(
7787
7302
  jsonString: string,
7788
- ): SafeParseResult<OneDollarNe, SDKValidationError> {
7303
+ ): SafeParseResult<OneNe, SDKValidationError> {
7789
7304
  return safeParse(
7790
7305
  jsonString,
7791
- (x) => OneDollarNe$inboundSchema.parse(JSON.parse(x)),
7792
- `Failed to parse 'OneDollarNe' from JSON`,
7306
+ (x) => OneNe$inboundSchema.parse(JSON.parse(x)),
7307
+ `Failed to parse 'OneNe' from JSON`,
7793
7308
  );
7794
7309
  }
7795
7310
 
7796
7311
  /** @internal */
7797
- export const DollarNe$inboundSchema: z.ZodType<
7798
- DollarNe,
7799
- z.ZodTypeDef,
7800
- unknown
7801
- > = z.object({
7802
- $ne: z.union([z.string(), z.number(), z.boolean()]),
7803
- }).transform((v) => {
7804
- return remap$(v, {
7805
- "$ne": "dollarNe",
7806
- });
7312
+ export const Ne$inboundSchema: z.ZodType<Ne, z.ZodTypeDef, unknown> = z.object({
7313
+ ne: z.union([z.string(), z.number(), z.boolean()]),
7807
7314
  });
7808
7315
 
7809
7316
  /** @internal */
7810
- export type DollarNe$Outbound = {
7811
- $ne: string | number | boolean;
7317
+ export type Ne$Outbound = {
7318
+ ne: string | number | boolean;
7812
7319
  };
7813
7320
 
7814
7321
  /** @internal */
7815
- export const DollarNe$outboundSchema: z.ZodType<
7816
- DollarNe$Outbound,
7817
- z.ZodTypeDef,
7818
- DollarNe
7819
- > = z.object({
7820
- dollarNe: z.union([z.string(), z.number(), z.boolean()]),
7821
- }).transform((v) => {
7822
- return remap$(v, {
7823
- dollarNe: "$ne",
7322
+ export const Ne$outboundSchema: z.ZodType<Ne$Outbound, z.ZodTypeDef, Ne> = z
7323
+ .object({
7324
+ ne: z.union([z.string(), z.number(), z.boolean()]),
7824
7325
  });
7825
- });
7826
7326
 
7827
7327
  /**
7828
7328
  * @internal
7829
7329
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7830
7330
  */
7831
- export namespace DollarNe$ {
7832
- /** @deprecated use `DollarNe$inboundSchema` instead. */
7833
- export const inboundSchema = DollarNe$inboundSchema;
7834
- /** @deprecated use `DollarNe$outboundSchema` instead. */
7835
- export const outboundSchema = DollarNe$outboundSchema;
7836
- /** @deprecated use `DollarNe$Outbound` instead. */
7837
- export type Outbound = DollarNe$Outbound;
7331
+ export namespace Ne$ {
7332
+ /** @deprecated use `Ne$inboundSchema` instead. */
7333
+ export const inboundSchema = Ne$inboundSchema;
7334
+ /** @deprecated use `Ne$outboundSchema` instead. */
7335
+ export const outboundSchema = Ne$outboundSchema;
7336
+ /** @deprecated use `Ne$Outbound` instead. */
7337
+ export type Outbound = Ne$Outbound;
7838
7338
  }
7839
7339
 
7840
- export function dollarNeToJSON(dollarNe: DollarNe): string {
7841
- return JSON.stringify(DollarNe$outboundSchema.parse(dollarNe));
7340
+ export function neToJSON(ne: Ne): string {
7341
+ return JSON.stringify(Ne$outboundSchema.parse(ne));
7842
7342
  }
7843
7343
 
7844
- export function dollarNeFromJSON(
7344
+ export function neFromJSON(
7845
7345
  jsonString: string,
7846
- ): SafeParseResult<DollarNe, SDKValidationError> {
7346
+ ): SafeParseResult<Ne, SDKValidationError> {
7847
7347
  return safeParse(
7848
7348
  jsonString,
7849
- (x) => DollarNe$inboundSchema.parse(JSON.parse(x)),
7850
- `Failed to parse 'DollarNe' from JSON`,
7349
+ (x) => Ne$inboundSchema.parse(JSON.parse(x)),
7350
+ `Failed to parse 'Ne' from JSON`,
7851
7351
  );
7852
7352
  }
7853
7353
 
7854
7354
  /** @internal */
7855
- export const OneDollarEq$inboundSchema: z.ZodType<
7856
- OneDollarEq,
7857
- z.ZodTypeDef,
7858
- unknown
7859
- > = z.union([z.string(), z.number(), z.boolean()]);
7355
+ export const OneEq$inboundSchema: z.ZodType<OneEq, z.ZodTypeDef, unknown> = z
7356
+ .union([z.string(), z.number(), z.boolean()]);
7860
7357
 
7861
7358
  /** @internal */
7862
- export type OneDollarEq$Outbound = string | number | boolean;
7359
+ export type OneEq$Outbound = string | number | boolean;
7863
7360
 
7864
7361
  /** @internal */
7865
- export const OneDollarEq$outboundSchema: z.ZodType<
7866
- OneDollarEq$Outbound,
7362
+ export const OneEq$outboundSchema: z.ZodType<
7363
+ OneEq$Outbound,
7867
7364
  z.ZodTypeDef,
7868
- OneDollarEq
7365
+ OneEq
7869
7366
  > = z.union([z.string(), z.number(), z.boolean()]);
7870
7367
 
7871
7368
  /**
7872
7369
  * @internal
7873
7370
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7874
7371
  */
7875
- export namespace OneDollarEq$ {
7876
- /** @deprecated use `OneDollarEq$inboundSchema` instead. */
7877
- export const inboundSchema = OneDollarEq$inboundSchema;
7878
- /** @deprecated use `OneDollarEq$outboundSchema` instead. */
7879
- export const outboundSchema = OneDollarEq$outboundSchema;
7880
- /** @deprecated use `OneDollarEq$Outbound` instead. */
7881
- export type Outbound = OneDollarEq$Outbound;
7372
+ export namespace OneEq$ {
7373
+ /** @deprecated use `OneEq$inboundSchema` instead. */
7374
+ export const inboundSchema = OneEq$inboundSchema;
7375
+ /** @deprecated use `OneEq$outboundSchema` instead. */
7376
+ export const outboundSchema = OneEq$outboundSchema;
7377
+ /** @deprecated use `OneEq$Outbound` instead. */
7378
+ export type Outbound = OneEq$Outbound;
7882
7379
  }
7883
7380
 
7884
- export function oneDollarEqToJSON(oneDollarEq: OneDollarEq): string {
7885
- return JSON.stringify(OneDollarEq$outboundSchema.parse(oneDollarEq));
7381
+ export function oneEqToJSON(oneEq: OneEq): string {
7382
+ return JSON.stringify(OneEq$outboundSchema.parse(oneEq));
7886
7383
  }
7887
7384
 
7888
- export function oneDollarEqFromJSON(
7385
+ export function oneEqFromJSON(
7889
7386
  jsonString: string,
7890
- ): SafeParseResult<OneDollarEq, SDKValidationError> {
7387
+ ): SafeParseResult<OneEq, SDKValidationError> {
7891
7388
  return safeParse(
7892
7389
  jsonString,
7893
- (x) => OneDollarEq$inboundSchema.parse(JSON.parse(x)),
7894
- `Failed to parse 'OneDollarEq' from JSON`,
7390
+ (x) => OneEq$inboundSchema.parse(JSON.parse(x)),
7391
+ `Failed to parse 'OneEq' from JSON`,
7895
7392
  );
7896
7393
  }
7897
7394
 
7898
7395
  /** @internal */
7899
- export const DollarEq$inboundSchema: z.ZodType<
7900
- DollarEq,
7901
- z.ZodTypeDef,
7902
- unknown
7903
- > = z.object({
7904
- $eq: z.union([z.string(), z.number(), z.boolean()]),
7905
- }).transform((v) => {
7906
- return remap$(v, {
7907
- "$eq": "dollarEq",
7908
- });
7396
+ export const Eq$inboundSchema: z.ZodType<Eq, z.ZodTypeDef, unknown> = z.object({
7397
+ eq: z.union([z.string(), z.number(), z.boolean()]),
7909
7398
  });
7910
7399
 
7911
7400
  /** @internal */
7912
- export type DollarEq$Outbound = {
7913
- $eq: string | number | boolean;
7401
+ export type Eq$Outbound = {
7402
+ eq: string | number | boolean;
7914
7403
  };
7915
7404
 
7916
7405
  /** @internal */
7917
- export const DollarEq$outboundSchema: z.ZodType<
7918
- DollarEq$Outbound,
7919
- z.ZodTypeDef,
7920
- DollarEq
7921
- > = z.object({
7922
- dollarEq: z.union([z.string(), z.number(), z.boolean()]),
7923
- }).transform((v) => {
7924
- return remap$(v, {
7925
- dollarEq: "$eq",
7406
+ export const Eq$outboundSchema: z.ZodType<Eq$Outbound, z.ZodTypeDef, Eq> = z
7407
+ .object({
7408
+ eq: z.union([z.string(), z.number(), z.boolean()]),
7926
7409
  });
7927
- });
7928
7410
 
7929
7411
  /**
7930
7412
  * @internal
7931
7413
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7932
7414
  */
7933
- export namespace DollarEq$ {
7934
- /** @deprecated use `DollarEq$inboundSchema` instead. */
7935
- export const inboundSchema = DollarEq$inboundSchema;
7936
- /** @deprecated use `DollarEq$outboundSchema` instead. */
7937
- export const outboundSchema = DollarEq$outboundSchema;
7938
- /** @deprecated use `DollarEq$Outbound` instead. */
7939
- export type Outbound = DollarEq$Outbound;
7415
+ export namespace Eq$ {
7416
+ /** @deprecated use `Eq$inboundSchema` instead. */
7417
+ export const inboundSchema = Eq$inboundSchema;
7418
+ /** @deprecated use `Eq$outboundSchema` instead. */
7419
+ export const outboundSchema = Eq$outboundSchema;
7420
+ /** @deprecated use `Eq$Outbound` instead. */
7421
+ export type Outbound = Eq$Outbound;
7940
7422
  }
7941
7423
 
7942
- export function dollarEqToJSON(dollarEq: DollarEq): string {
7943
- return JSON.stringify(DollarEq$outboundSchema.parse(dollarEq));
7424
+ export function eqToJSON(eq: Eq): string {
7425
+ return JSON.stringify(Eq$outboundSchema.parse(eq));
7944
7426
  }
7945
7427
 
7946
- export function dollarEqFromJSON(
7428
+ export function eqFromJSON(
7947
7429
  jsonString: string,
7948
- ): SafeParseResult<DollarEq, SDKValidationError> {
7430
+ ): SafeParseResult<Eq, SDKValidationError> {
7949
7431
  return safeParse(
7950
7432
  jsonString,
7951
- (x) => DollarEq$inboundSchema.parse(JSON.parse(x)),
7952
- `Failed to parse 'DollarEq' from JSON`,
7433
+ (x) => Eq$inboundSchema.parse(JSON.parse(x)),
7434
+ `Failed to parse 'Eq' from JSON`,
7953
7435
  );
7954
7436
  }
7955
7437
 
@@ -7959,28 +7441,28 @@ export const KnowledgeFilter1$inboundSchema: z.ZodType<
7959
7441
  z.ZodTypeDef,
7960
7442
  unknown
7961
7443
  > = z.union([
7962
- z.lazy(() => DollarEq$inboundSchema),
7963
- z.lazy(() => DollarNe$inboundSchema),
7444
+ z.lazy(() => Eq$inboundSchema),
7445
+ z.lazy(() => Ne$inboundSchema),
7964
7446
  z.lazy(() => One3$inboundSchema),
7965
- z.lazy(() => DollarGte$inboundSchema),
7966
- z.lazy(() => DollarLt$inboundSchema),
7967
- z.lazy(() => DollarLte$inboundSchema),
7968
- z.lazy(() => DollarIn$inboundSchema),
7969
- z.lazy(() => DollarNin$inboundSchema),
7970
- z.lazy(() => DollarExists$inboundSchema),
7447
+ z.lazy(() => Gte$inboundSchema),
7448
+ z.lazy(() => Lt$inboundSchema),
7449
+ z.lazy(() => Lte$inboundSchema),
7450
+ z.lazy(() => In$inboundSchema),
7451
+ z.lazy(() => Nin$inboundSchema),
7452
+ z.lazy(() => Exists$inboundSchema),
7971
7453
  ]);
7972
7454
 
7973
7455
  /** @internal */
7974
7456
  export type KnowledgeFilter1$Outbound =
7975
- | DollarEq$Outbound
7976
- | DollarNe$Outbound
7457
+ | Eq$Outbound
7458
+ | Ne$Outbound
7977
7459
  | One3$Outbound
7978
- | DollarGte$Outbound
7979
- | DollarLt$Outbound
7980
- | DollarLte$Outbound
7981
- | DollarIn$Outbound
7982
- | DollarNin$Outbound
7983
- | DollarExists$Outbound;
7460
+ | Gte$Outbound
7461
+ | Lt$Outbound
7462
+ | Lte$Outbound
7463
+ | In$Outbound
7464
+ | Nin$Outbound
7465
+ | Exists$Outbound;
7984
7466
 
7985
7467
  /** @internal */
7986
7468
  export const KnowledgeFilter1$outboundSchema: z.ZodType<
@@ -7988,15 +7470,15 @@ export const KnowledgeFilter1$outboundSchema: z.ZodType<
7988
7470
  z.ZodTypeDef,
7989
7471
  KnowledgeFilter1
7990
7472
  > = z.union([
7991
- z.lazy(() => DollarEq$outboundSchema),
7992
- z.lazy(() => DollarNe$outboundSchema),
7473
+ z.lazy(() => Eq$outboundSchema),
7474
+ z.lazy(() => Ne$outboundSchema),
7993
7475
  z.lazy(() => One3$outboundSchema),
7994
- z.lazy(() => DollarGte$outboundSchema),
7995
- z.lazy(() => DollarLt$outboundSchema),
7996
- z.lazy(() => DollarLte$outboundSchema),
7997
- z.lazy(() => DollarIn$outboundSchema),
7998
- z.lazy(() => DollarNin$outboundSchema),
7999
- z.lazy(() => DollarExists$outboundSchema),
7476
+ z.lazy(() => Gte$outboundSchema),
7477
+ z.lazy(() => Lt$outboundSchema),
7478
+ z.lazy(() => Lte$outboundSchema),
7479
+ z.lazy(() => In$outboundSchema),
7480
+ z.lazy(() => Nin$outboundSchema),
7481
+ z.lazy(() => Exists$outboundSchema),
8000
7482
  ]);
8001
7483
 
8002
7484
  /**
@@ -8036,37 +7518,34 @@ export const KnowledgeFilter$inboundSchema: z.ZodType<
8036
7518
  z.ZodTypeDef,
8037
7519
  unknown
8038
7520
  > = z.union([
8039
- z.lazy(() => DollarAnd$inboundSchema),
8040
- z.lazy(() => DollarOr$inboundSchema),
7521
+ z.lazy(() => And$inboundSchema),
7522
+ z.lazy(() => Or$inboundSchema),
8041
7523
  z.record(z.union([
8042
- z.lazy(() => DollarEq$inboundSchema),
8043
- z.lazy(() => DollarNe$inboundSchema),
7524
+ z.lazy(() => Eq$inboundSchema),
7525
+ z.lazy(() => Ne$inboundSchema),
8044
7526
  z.lazy(() => One3$inboundSchema),
8045
- z.lazy(() => DollarGte$inboundSchema),
8046
- z.lazy(() => DollarLt$inboundSchema),
8047
- z.lazy(() => DollarLte$inboundSchema),
8048
- z.lazy(() => DollarIn$inboundSchema),
8049
- z.lazy(() => DollarNin$inboundSchema),
8050
- z.lazy(() => DollarExists$inboundSchema),
7527
+ z.lazy(() => Gte$inboundSchema),
7528
+ z.lazy(() => Lt$inboundSchema),
7529
+ z.lazy(() => Lte$inboundSchema),
7530
+ z.lazy(() => In$inboundSchema),
7531
+ z.lazy(() => Nin$inboundSchema),
7532
+ z.lazy(() => Exists$inboundSchema),
8051
7533
  ])),
8052
7534
  ]);
8053
7535
 
8054
7536
  /** @internal */
8055
- export type KnowledgeFilter$Outbound =
8056
- | DollarAnd$Outbound
8057
- | DollarOr$Outbound
8058
- | {
8059
- [k: string]:
8060
- | DollarEq$Outbound
8061
- | DollarNe$Outbound
8062
- | One3$Outbound
8063
- | DollarGte$Outbound
8064
- | DollarLt$Outbound
8065
- | DollarLte$Outbound
8066
- | DollarIn$Outbound
8067
- | DollarNin$Outbound
8068
- | DollarExists$Outbound;
8069
- };
7537
+ export type KnowledgeFilter$Outbound = And$Outbound | Or$Outbound | {
7538
+ [k: string]:
7539
+ | Eq$Outbound
7540
+ | Ne$Outbound
7541
+ | One3$Outbound
7542
+ | Gte$Outbound
7543
+ | Lt$Outbound
7544
+ | Lte$Outbound
7545
+ | In$Outbound
7546
+ | Nin$Outbound
7547
+ | Exists$Outbound;
7548
+ };
8070
7549
 
8071
7550
  /** @internal */
8072
7551
  export const KnowledgeFilter$outboundSchema: z.ZodType<
@@ -8074,18 +7553,18 @@ export const KnowledgeFilter$outboundSchema: z.ZodType<
8074
7553
  z.ZodTypeDef,
8075
7554
  KnowledgeFilter
8076
7555
  > = z.union([
8077
- z.lazy(() => DollarAnd$outboundSchema),
8078
- z.lazy(() => DollarOr$outboundSchema),
7556
+ z.lazy(() => And$outboundSchema),
7557
+ z.lazy(() => Or$outboundSchema),
8079
7558
  z.record(z.union([
8080
- z.lazy(() => DollarEq$outboundSchema),
8081
- z.lazy(() => DollarNe$outboundSchema),
7559
+ z.lazy(() => Eq$outboundSchema),
7560
+ z.lazy(() => Ne$outboundSchema),
8082
7561
  z.lazy(() => One3$outboundSchema),
8083
- z.lazy(() => DollarGte$outboundSchema),
8084
- z.lazy(() => DollarLt$outboundSchema),
8085
- z.lazy(() => DollarLte$outboundSchema),
8086
- z.lazy(() => DollarIn$outboundSchema),
8087
- z.lazy(() => DollarNin$outboundSchema),
8088
- z.lazy(() => DollarExists$outboundSchema),
7562
+ z.lazy(() => Gte$outboundSchema),
7563
+ z.lazy(() => Lt$outboundSchema),
7564
+ z.lazy(() => Lte$outboundSchema),
7565
+ z.lazy(() => In$outboundSchema),
7566
+ z.lazy(() => Nin$outboundSchema),
7567
+ z.lazy(() => Exists$outboundSchema),
8089
7568
  ])),
8090
7569
  ]);
8091
7570
 
@@ -8152,18 +7631,18 @@ export const DeploymentGetConfigRequestBody$inboundSchema: z.ZodType<
8152
7631
  invoke_options: z.lazy(() => InvokeOptions$inboundSchema).optional(),
8153
7632
  thread: z.lazy(() => Thread$inboundSchema).optional(),
8154
7633
  knowledge_filter: z.union([
8155
- z.lazy(() => DollarAnd$inboundSchema),
8156
- z.lazy(() => DollarOr$inboundSchema),
7634
+ z.lazy(() => And$inboundSchema),
7635
+ z.lazy(() => Or$inboundSchema),
8157
7636
  z.record(z.union([
8158
- z.lazy(() => DollarEq$inboundSchema),
8159
- z.lazy(() => DollarNe$inboundSchema),
7637
+ z.lazy(() => Eq$inboundSchema),
7638
+ z.lazy(() => Ne$inboundSchema),
8160
7639
  z.lazy(() => One3$inboundSchema),
8161
- z.lazy(() => DollarGte$inboundSchema),
8162
- z.lazy(() => DollarLt$inboundSchema),
8163
- z.lazy(() => DollarLte$inboundSchema),
8164
- z.lazy(() => DollarIn$inboundSchema),
8165
- z.lazy(() => DollarNin$inboundSchema),
8166
- z.lazy(() => DollarExists$inboundSchema),
7640
+ z.lazy(() => Gte$inboundSchema),
7641
+ z.lazy(() => Lt$inboundSchema),
7642
+ z.lazy(() => Lte$inboundSchema),
7643
+ z.lazy(() => In$inboundSchema),
7644
+ z.lazy(() => Nin$inboundSchema),
7645
+ z.lazy(() => Exists$inboundSchema),
8167
7646
  ])),
8168
7647
  ]).optional(),
8169
7648
  }).transform((v) => {
@@ -8205,17 +7684,17 @@ export type DeploymentGetConfigRequestBody$Outbound = {
8205
7684
  documents?: Array<Documents$Outbound> | undefined;
8206
7685
  invoke_options?: InvokeOptions$Outbound | undefined;
8207
7686
  thread?: Thread$Outbound | undefined;
8208
- knowledge_filter?: DollarAnd$Outbound | DollarOr$Outbound | {
7687
+ knowledge_filter?: And$Outbound | Or$Outbound | {
8209
7688
  [k: string]:
8210
- | DollarEq$Outbound
8211
- | DollarNe$Outbound
7689
+ | Eq$Outbound
7690
+ | Ne$Outbound
8212
7691
  | One3$Outbound
8213
- | DollarGte$Outbound
8214
- | DollarLt$Outbound
8215
- | DollarLte$Outbound
8216
- | DollarIn$Outbound
8217
- | DollarNin$Outbound
8218
- | DollarExists$Outbound;
7692
+ | Gte$Outbound
7693
+ | Lt$Outbound
7694
+ | Lte$Outbound
7695
+ | In$Outbound
7696
+ | Nin$Outbound
7697
+ | Exists$Outbound;
8219
7698
  } | undefined;
8220
7699
  };
8221
7700
 
@@ -8253,18 +7732,18 @@ export const DeploymentGetConfigRequestBody$outboundSchema: z.ZodType<
8253
7732
  invokeOptions: z.lazy(() => InvokeOptions$outboundSchema).optional(),
8254
7733
  thread: z.lazy(() => Thread$outboundSchema).optional(),
8255
7734
  knowledgeFilter: z.union([
8256
- z.lazy(() => DollarAnd$outboundSchema),
8257
- z.lazy(() => DollarOr$outboundSchema),
7735
+ z.lazy(() => And$outboundSchema),
7736
+ z.lazy(() => Or$outboundSchema),
8258
7737
  z.record(z.union([
8259
- z.lazy(() => DollarEq$outboundSchema),
8260
- z.lazy(() => DollarNe$outboundSchema),
7738
+ z.lazy(() => Eq$outboundSchema),
7739
+ z.lazy(() => Ne$outboundSchema),
8261
7740
  z.lazy(() => One3$outboundSchema),
8262
- z.lazy(() => DollarGte$outboundSchema),
8263
- z.lazy(() => DollarLt$outboundSchema),
8264
- z.lazy(() => DollarLte$outboundSchema),
8265
- z.lazy(() => DollarIn$outboundSchema),
8266
- z.lazy(() => DollarNin$outboundSchema),
8267
- z.lazy(() => DollarExists$outboundSchema),
7741
+ z.lazy(() => Gte$outboundSchema),
7742
+ z.lazy(() => Lt$outboundSchema),
7743
+ z.lazy(() => Lte$outboundSchema),
7744
+ z.lazy(() => In$outboundSchema),
7745
+ z.lazy(() => Nin$outboundSchema),
7746
+ z.lazy(() => Exists$outboundSchema),
8268
7747
  ])),
8269
7748
  ]).optional(),
8270
7749
  }).transform((v) => {