@orq-ai/node 3.5.22 → 3.5.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. package/bin/mcp-server.js +40 -40
  2. package/bin/mcp-server.js.map +21 -21
  3. package/jsr.json +1 -1
  4. package/lib/config.d.ts +3 -3
  5. package/lib/config.js +3 -3
  6. package/mcp-server/mcp-server.js +1 -1
  7. package/mcp-server/server.js +1 -1
  8. package/models/operations/bulkcreatedatapoints.js +2 -2
  9. package/models/operations/createcontact.js +2 -2
  10. package/models/operations/createdataset.js +2 -2
  11. package/models/operations/createdatasetitem.js +2 -2
  12. package/models/operations/createdatasource.js +2 -2
  13. package/models/operations/fileget.js +2 -2
  14. package/models/operations/filelist.js +2 -2
  15. package/models/operations/fileupload.js +2 -2
  16. package/models/operations/listdatasetdatapoints.js +2 -2
  17. package/models/operations/listdatasets.js +2 -2
  18. package/models/operations/listdatasources.js +2 -2
  19. package/models/operations/retrievedatapoint.js +2 -2
  20. package/models/operations/retrievedataset.js +2 -2
  21. package/models/operations/retrievedatasource.js +2 -2
  22. package/models/operations/updatedatapoint.js +2 -2
  23. package/models/operations/updatedataset.js +2 -2
  24. package/models/operations/updatedatasource.js +2 -2
  25. package/package.json +1 -1
  26. package/packages/orq-rc/jsr.json +1 -1
  27. package/packages/orq-rc/package-lock.json +6 -6
  28. package/packages/orq-rc/package.json +2 -2
  29. package/packages/orq-rc/src/lib/config.ts +3 -3
  30. package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
  31. package/packages/orq-rc/src/mcp-server/server.ts +1 -1
  32. package/packages/orq-rc/src/models/components/deployments.ts +1217 -1677
  33. package/packages/orq-rc/src/models/operations/bulkcreatedatapoints.ts +416 -12
  34. package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
  35. package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
  36. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +410 -13
  37. package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
  38. package/packages/orq-rc/src/models/operations/createprompt.ts +400 -12
  39. package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +1413 -1729
  40. package/packages/orq-rc/src/models/operations/deployments.ts +211 -23
  41. package/packages/orq-rc/src/models/operations/deploymentstream.ts +1314 -1761
  42. package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
  43. package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
  44. package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
  45. package/packages/orq-rc/src/models/operations/getallprompts.ts +200 -6
  46. package/packages/orq-rc/src/models/operations/getoneprompt.ts +195 -6
  47. package/packages/orq-rc/src/models/operations/getpromptversion.ts +204 -6
  48. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +207 -8
  49. package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
  50. package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
  51. package/packages/orq-rc/src/models/operations/listpromptversions.ts +202 -6
  52. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +204 -8
  53. package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
  54. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
  55. package/packages/orq-rc/src/models/operations/searchknowledge.ts +1334 -1750
  56. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +412 -14
  57. package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
  58. package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
  59. package/packages/orq-rc/src/models/operations/updateprompt.ts +400 -12
  60. package/src/lib/config.ts +3 -3
  61. package/src/mcp-server/mcp-server.ts +1 -1
  62. package/src/mcp-server/server.ts +1 -1
  63. package/src/models/operations/bulkcreatedatapoints.ts +2 -2
  64. package/src/models/operations/createcontact.ts +2 -2
  65. package/src/models/operations/createdataset.ts +2 -2
  66. package/src/models/operations/createdatasetitem.ts +2 -2
  67. package/src/models/operations/createdatasource.ts +2 -2
  68. package/src/models/operations/fileget.ts +2 -2
  69. package/src/models/operations/filelist.ts +2 -2
  70. package/src/models/operations/fileupload.ts +2 -2
  71. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  72. package/src/models/operations/listdatasets.ts +2 -2
  73. package/src/models/operations/listdatasources.ts +2 -2
  74. package/src/models/operations/retrievedatapoint.ts +2 -2
  75. package/src/models/operations/retrievedataset.ts +2 -2
  76. package/src/models/operations/retrievedatasource.ts +2 -2
  77. package/src/models/operations/updatedatapoint.ts +2 -2
  78. package/src/models/operations/updatedataset.ts +2 -2
  79. package/src/models/operations/updatedatasource.ts +2 -2
@@ -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
 
@@ -1283,6 +1265,39 @@ export type DeploymentGetConfigRole = ClosedEnum<
1283
1265
  typeof DeploymentGetConfigRole
1284
1266
  >;
1285
1267
 
1268
+ /**
1269
+ * The type of the content part. Always `file`.
1270
+ */
1271
+ export const DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType = {
1272
+ File: "file",
1273
+ } as const;
1274
+ /**
1275
+ * The type of the content part. Always `file`.
1276
+ */
1277
+ export type DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType =
1278
+ ClosedEnum<
1279
+ typeof DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType
1280
+ >;
1281
+
1282
+ export type DeploymentGetConfig2File = {
1283
+ /**
1284
+ * The base64 encoded file data, used when passing the file to the model as a string.
1285
+ */
1286
+ fileData: string;
1287
+ /**
1288
+ * The name of the file, used when passing the file to the model as a string.
1289
+ */
1290
+ filename?: string | undefined;
1291
+ };
1292
+
1293
+ export type DeploymentGetConfig23 = {
1294
+ /**
1295
+ * The type of the content part. Always `file`.
1296
+ */
1297
+ type: DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType;
1298
+ file: DeploymentGetConfig2File;
1299
+ };
1300
+
1286
1301
  export const DeploymentGetConfig2DeploymentsResponse200Type = {
1287
1302
  ImageUrl: "image_url",
1288
1303
  } as const;
@@ -1330,14 +1345,19 @@ export type DeploymentGetConfig21 = {
1330
1345
 
1331
1346
  export type DeploymentGetConfigContentDeploymentsResponse2 =
1332
1347
  | DeploymentGetConfig21
1333
- | DeploymentGetConfig2Deployments2;
1348
+ | DeploymentGetConfig2Deployments2
1349
+ | DeploymentGetConfig23;
1334
1350
 
1335
1351
  /**
1336
1352
  * The contents of the user message. Either the text content of the message or an array of content parts with a defined type, each can be of type `text` or `image_url` when passing in images. You can pass multiple images by adding multiple `image_url` content parts.
1337
1353
  */
1338
1354
  export type DeploymentGetConfigContent =
1339
1355
  | string
1340
- | Array<DeploymentGetConfig21 | DeploymentGetConfig2Deployments2>;
1356
+ | Array<
1357
+ | DeploymentGetConfig21
1358
+ | DeploymentGetConfig2Deployments2
1359
+ | DeploymentGetConfig23
1360
+ >;
1341
1361
 
1342
1362
  export const DeploymentGetConfigDeploymentsResponseType = {
1343
1363
  Function: "function",
@@ -1371,7 +1391,11 @@ export type DeploymentGetConfigMessages = {
1371
1391
  */
1372
1392
  content:
1373
1393
  | string
1374
- | Array<DeploymentGetConfig21 | DeploymentGetConfig2Deployments2>;
1394
+ | Array<
1395
+ | DeploymentGetConfig21
1396
+ | DeploymentGetConfig2Deployments2
1397
+ | DeploymentGetConfig23
1398
+ >;
1375
1399
  toolCalls?: Array<DeploymentGetConfigToolCalls> | undefined;
1376
1400
  toolCallId?: string | undefined;
1377
1401
  };
@@ -5354,2372 +5378,1908 @@ export function threadFromJSON(
5354
5378
  }
5355
5379
 
5356
5380
  /** @internal */
5357
- export const DollarOrDollarExists$inboundSchema: z.ZodType<
5358
- DollarOrDollarExists,
5381
+ export const OrExists$inboundSchema: z.ZodType<
5382
+ OrExists,
5359
5383
  z.ZodTypeDef,
5360
5384
  unknown
5361
5385
  > = z.object({
5362
- $exists: z.boolean(),
5363
- }).transform((v) => {
5364
- return remap$(v, {
5365
- "$exists": "dollarExists",
5366
- });
5386
+ exists: z.boolean(),
5367
5387
  });
5368
5388
 
5369
5389
  /** @internal */
5370
- export type DollarOrDollarExists$Outbound = {
5371
- $exists: boolean;
5390
+ export type OrExists$Outbound = {
5391
+ exists: boolean;
5372
5392
  };
5373
5393
 
5374
5394
  /** @internal */
5375
- export const DollarOrDollarExists$outboundSchema: z.ZodType<
5376
- DollarOrDollarExists$Outbound,
5395
+ export const OrExists$outboundSchema: z.ZodType<
5396
+ OrExists$Outbound,
5377
5397
  z.ZodTypeDef,
5378
- DollarOrDollarExists
5398
+ OrExists
5379
5399
  > = z.object({
5380
- dollarExists: z.boolean(),
5381
- }).transform((v) => {
5382
- return remap$(v, {
5383
- dollarExists: "$exists",
5384
- });
5400
+ exists: z.boolean(),
5385
5401
  });
5386
5402
 
5387
5403
  /**
5388
5404
  * @internal
5389
5405
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5390
5406
  */
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;
5407
+ export namespace OrExists$ {
5408
+ /** @deprecated use `OrExists$inboundSchema` instead. */
5409
+ export const inboundSchema = OrExists$inboundSchema;
5410
+ /** @deprecated use `OrExists$outboundSchema` instead. */
5411
+ export const outboundSchema = OrExists$outboundSchema;
5412
+ /** @deprecated use `OrExists$Outbound` instead. */
5413
+ export type Outbound = OrExists$Outbound;
5398
5414
  }
5399
5415
 
5400
- export function dollarOrDollarExistsToJSON(
5401
- dollarOrDollarExists: DollarOrDollarExists,
5402
- ): string {
5403
- return JSON.stringify(
5404
- DollarOrDollarExists$outboundSchema.parse(dollarOrDollarExists),
5405
- );
5416
+ export function orExistsToJSON(orExists: OrExists): string {
5417
+ return JSON.stringify(OrExists$outboundSchema.parse(orExists));
5406
5418
  }
5407
5419
 
5408
- export function dollarOrDollarExistsFromJSON(
5420
+ export function orExistsFromJSON(
5409
5421
  jsonString: string,
5410
- ): SafeParseResult<DollarOrDollarExists, SDKValidationError> {
5422
+ ): SafeParseResult<OrExists, SDKValidationError> {
5411
5423
  return safeParse(
5412
5424
  jsonString,
5413
- (x) => DollarOrDollarExists$inboundSchema.parse(JSON.parse(x)),
5414
- `Failed to parse 'DollarOrDollarExists' from JSON`,
5425
+ (x) => OrExists$inboundSchema.parse(JSON.parse(x)),
5426
+ `Failed to parse 'OrExists' from JSON`,
5415
5427
  );
5416
5428
  }
5417
5429
 
5418
5430
  /** @internal */
5419
- export const DeploymentGetConfigDollarOrDollarNin$inboundSchema: z.ZodType<
5420
- DeploymentGetConfigDollarOrDollarNin,
5431
+ export const DeploymentGetConfigOrNin$inboundSchema: z.ZodType<
5432
+ DeploymentGetConfigOrNin,
5421
5433
  z.ZodTypeDef,
5422
5434
  unknown
5423
5435
  > = z.union([z.string(), z.number(), z.boolean()]);
5424
5436
 
5425
5437
  /** @internal */
5426
- export type DeploymentGetConfigDollarOrDollarNin$Outbound =
5427
- | string
5428
- | number
5429
- | boolean;
5438
+ export type DeploymentGetConfigOrNin$Outbound = string | number | boolean;
5430
5439
 
5431
5440
  /** @internal */
5432
- export const DeploymentGetConfigDollarOrDollarNin$outboundSchema: z.ZodType<
5433
- DeploymentGetConfigDollarOrDollarNin$Outbound,
5441
+ export const DeploymentGetConfigOrNin$outboundSchema: z.ZodType<
5442
+ DeploymentGetConfigOrNin$Outbound,
5434
5443
  z.ZodTypeDef,
5435
- DeploymentGetConfigDollarOrDollarNin
5444
+ DeploymentGetConfigOrNin
5436
5445
  > = z.union([z.string(), z.number(), z.boolean()]);
5437
5446
 
5438
5447
  /**
5439
5448
  * @internal
5440
5449
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5441
5450
  */
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;
5451
+ export namespace DeploymentGetConfigOrNin$ {
5452
+ /** @deprecated use `DeploymentGetConfigOrNin$inboundSchema` instead. */
5453
+ export const inboundSchema = DeploymentGetConfigOrNin$inboundSchema;
5454
+ /** @deprecated use `DeploymentGetConfigOrNin$outboundSchema` instead. */
5455
+ export const outboundSchema = DeploymentGetConfigOrNin$outboundSchema;
5456
+ /** @deprecated use `DeploymentGetConfigOrNin$Outbound` instead. */
5457
+ export type Outbound = DeploymentGetConfigOrNin$Outbound;
5451
5458
  }
5452
5459
 
5453
- export function deploymentGetConfigDollarOrDollarNinToJSON(
5454
- deploymentGetConfigDollarOrDollarNin: DeploymentGetConfigDollarOrDollarNin,
5460
+ export function deploymentGetConfigOrNinToJSON(
5461
+ deploymentGetConfigOrNin: DeploymentGetConfigOrNin,
5455
5462
  ): string {
5456
5463
  return JSON.stringify(
5457
- DeploymentGetConfigDollarOrDollarNin$outboundSchema.parse(
5458
- deploymentGetConfigDollarOrDollarNin,
5459
- ),
5464
+ DeploymentGetConfigOrNin$outboundSchema.parse(deploymentGetConfigOrNin),
5460
5465
  );
5461
5466
  }
5462
5467
 
5463
- export function deploymentGetConfigDollarOrDollarNinFromJSON(
5468
+ export function deploymentGetConfigOrNinFromJSON(
5464
5469
  jsonString: string,
5465
- ): SafeParseResult<DeploymentGetConfigDollarOrDollarNin, SDKValidationError> {
5470
+ ): SafeParseResult<DeploymentGetConfigOrNin, SDKValidationError> {
5466
5471
  return safeParse(
5467
5472
  jsonString,
5468
- (x) =>
5469
- DeploymentGetConfigDollarOrDollarNin$inboundSchema.parse(JSON.parse(x)),
5470
- `Failed to parse 'DeploymentGetConfigDollarOrDollarNin' from JSON`,
5473
+ (x) => DeploymentGetConfigOrNin$inboundSchema.parse(JSON.parse(x)),
5474
+ `Failed to parse 'DeploymentGetConfigOrNin' from JSON`,
5471
5475
  );
5472
5476
  }
5473
5477
 
5474
5478
  /** @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",
5479
+ export const OrNin$inboundSchema: z.ZodType<OrNin, z.ZodTypeDef, unknown> = z
5480
+ .object({
5481
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
5484
5482
  });
5485
- });
5486
5483
 
5487
5484
  /** @internal */
5488
- export type DollarOrDollarNin$Outbound = {
5489
- $nin: Array<string | number | boolean>;
5485
+ export type OrNin$Outbound = {
5486
+ nin: Array<string | number | boolean>;
5490
5487
  };
5491
5488
 
5492
5489
  /** @internal */
5493
- export const DollarOrDollarNin$outboundSchema: z.ZodType<
5494
- DollarOrDollarNin$Outbound,
5490
+ export const OrNin$outboundSchema: z.ZodType<
5491
+ OrNin$Outbound,
5495
5492
  z.ZodTypeDef,
5496
- DollarOrDollarNin
5493
+ OrNin
5497
5494
  > = 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
- });
5495
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
5503
5496
  });
5504
5497
 
5505
5498
  /**
5506
5499
  * @internal
5507
5500
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5508
5501
  */
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;
5502
+ export namespace OrNin$ {
5503
+ /** @deprecated use `OrNin$inboundSchema` instead. */
5504
+ export const inboundSchema = OrNin$inboundSchema;
5505
+ /** @deprecated use `OrNin$outboundSchema` instead. */
5506
+ export const outboundSchema = OrNin$outboundSchema;
5507
+ /** @deprecated use `OrNin$Outbound` instead. */
5508
+ export type Outbound = OrNin$Outbound;
5516
5509
  }
5517
5510
 
5518
- export function dollarOrDollarNinToJSON(
5519
- dollarOrDollarNin: DollarOrDollarNin,
5520
- ): string {
5521
- return JSON.stringify(
5522
- DollarOrDollarNin$outboundSchema.parse(dollarOrDollarNin),
5523
- );
5511
+ export function orNinToJSON(orNin: OrNin): string {
5512
+ return JSON.stringify(OrNin$outboundSchema.parse(orNin));
5524
5513
  }
5525
5514
 
5526
- export function dollarOrDollarNinFromJSON(
5515
+ export function orNinFromJSON(
5527
5516
  jsonString: string,
5528
- ): SafeParseResult<DollarOrDollarNin, SDKValidationError> {
5517
+ ): SafeParseResult<OrNin, SDKValidationError> {
5529
5518
  return safeParse(
5530
5519
  jsonString,
5531
- (x) => DollarOrDollarNin$inboundSchema.parse(JSON.parse(x)),
5532
- `Failed to parse 'DollarOrDollarNin' from JSON`,
5520
+ (x) => OrNin$inboundSchema.parse(JSON.parse(x)),
5521
+ `Failed to parse 'OrNin' from JSON`,
5533
5522
  );
5534
5523
  }
5535
5524
 
5536
5525
  /** @internal */
5537
- export const DeploymentGetConfigDollarOrDollarIn$inboundSchema: z.ZodType<
5538
- DeploymentGetConfigDollarOrDollarIn,
5526
+ export const DeploymentGetConfigOrIn$inboundSchema: z.ZodType<
5527
+ DeploymentGetConfigOrIn,
5539
5528
  z.ZodTypeDef,
5540
5529
  unknown
5541
5530
  > = z.union([z.string(), z.number(), z.boolean()]);
5542
5531
 
5543
5532
  /** @internal */
5544
- export type DeploymentGetConfigDollarOrDollarIn$Outbound =
5545
- | string
5546
- | number
5547
- | boolean;
5533
+ export type DeploymentGetConfigOrIn$Outbound = string | number | boolean;
5548
5534
 
5549
5535
  /** @internal */
5550
- export const DeploymentGetConfigDollarOrDollarIn$outboundSchema: z.ZodType<
5551
- DeploymentGetConfigDollarOrDollarIn$Outbound,
5536
+ export const DeploymentGetConfigOrIn$outboundSchema: z.ZodType<
5537
+ DeploymentGetConfigOrIn$Outbound,
5552
5538
  z.ZodTypeDef,
5553
- DeploymentGetConfigDollarOrDollarIn
5539
+ DeploymentGetConfigOrIn
5554
5540
  > = z.union([z.string(), z.number(), z.boolean()]);
5555
5541
 
5556
5542
  /**
5557
5543
  * @internal
5558
5544
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5559
5545
  */
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;
5546
+ export namespace DeploymentGetConfigOrIn$ {
5547
+ /** @deprecated use `DeploymentGetConfigOrIn$inboundSchema` instead. */
5548
+ export const inboundSchema = DeploymentGetConfigOrIn$inboundSchema;
5549
+ /** @deprecated use `DeploymentGetConfigOrIn$outboundSchema` instead. */
5550
+ export const outboundSchema = DeploymentGetConfigOrIn$outboundSchema;
5551
+ /** @deprecated use `DeploymentGetConfigOrIn$Outbound` instead. */
5552
+ export type Outbound = DeploymentGetConfigOrIn$Outbound;
5569
5553
  }
5570
5554
 
5571
- export function deploymentGetConfigDollarOrDollarInToJSON(
5572
- deploymentGetConfigDollarOrDollarIn: DeploymentGetConfigDollarOrDollarIn,
5555
+ export function deploymentGetConfigOrInToJSON(
5556
+ deploymentGetConfigOrIn: DeploymentGetConfigOrIn,
5573
5557
  ): string {
5574
5558
  return JSON.stringify(
5575
- DeploymentGetConfigDollarOrDollarIn$outboundSchema.parse(
5576
- deploymentGetConfigDollarOrDollarIn,
5577
- ),
5559
+ DeploymentGetConfigOrIn$outboundSchema.parse(deploymentGetConfigOrIn),
5578
5560
  );
5579
5561
  }
5580
5562
 
5581
- export function deploymentGetConfigDollarOrDollarInFromJSON(
5563
+ export function deploymentGetConfigOrInFromJSON(
5582
5564
  jsonString: string,
5583
- ): SafeParseResult<DeploymentGetConfigDollarOrDollarIn, SDKValidationError> {
5565
+ ): SafeParseResult<DeploymentGetConfigOrIn, SDKValidationError> {
5584
5566
  return safeParse(
5585
5567
  jsonString,
5586
- (x) =>
5587
- DeploymentGetConfigDollarOrDollarIn$inboundSchema.parse(JSON.parse(x)),
5588
- `Failed to parse 'DeploymentGetConfigDollarOrDollarIn' from JSON`,
5568
+ (x) => DeploymentGetConfigOrIn$inboundSchema.parse(JSON.parse(x)),
5569
+ `Failed to parse 'DeploymentGetConfigOrIn' from JSON`,
5589
5570
  );
5590
5571
  }
5591
5572
 
5592
5573
  /** @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",
5574
+ export const OrIn$inboundSchema: z.ZodType<OrIn, z.ZodTypeDef, unknown> = z
5575
+ .object({
5576
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
5602
5577
  });
5603
- });
5604
5578
 
5605
5579
  /** @internal */
5606
- export type DollarOrDollarIn$Outbound = {
5607
- $in: Array<string | number | boolean>;
5580
+ export type OrIn$Outbound = {
5581
+ in: Array<string | number | boolean>;
5608
5582
  };
5609
5583
 
5610
5584
  /** @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",
5585
+ export const OrIn$outboundSchema: z.ZodType<OrIn$Outbound, z.ZodTypeDef, OrIn> =
5586
+ z.object({
5587
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
5620
5588
  });
5621
- });
5622
5589
 
5623
5590
  /**
5624
5591
  * @internal
5625
5592
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5626
5593
  */
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;
5594
+ export namespace OrIn$ {
5595
+ /** @deprecated use `OrIn$inboundSchema` instead. */
5596
+ export const inboundSchema = OrIn$inboundSchema;
5597
+ /** @deprecated use `OrIn$outboundSchema` instead. */
5598
+ export const outboundSchema = OrIn$outboundSchema;
5599
+ /** @deprecated use `OrIn$Outbound` instead. */
5600
+ export type Outbound = OrIn$Outbound;
5634
5601
  }
5635
5602
 
5636
- export function dollarOrDollarInToJSON(
5637
- dollarOrDollarIn: DollarOrDollarIn,
5638
- ): string {
5639
- return JSON.stringify(
5640
- DollarOrDollarIn$outboundSchema.parse(dollarOrDollarIn),
5641
- );
5603
+ export function orInToJSON(orIn: OrIn): string {
5604
+ return JSON.stringify(OrIn$outboundSchema.parse(orIn));
5642
5605
  }
5643
5606
 
5644
- export function dollarOrDollarInFromJSON(
5607
+ export function orInFromJSON(
5645
5608
  jsonString: string,
5646
- ): SafeParseResult<DollarOrDollarIn, SDKValidationError> {
5609
+ ): SafeParseResult<OrIn, SDKValidationError> {
5647
5610
  return safeParse(
5648
5611
  jsonString,
5649
- (x) => DollarOrDollarIn$inboundSchema.parse(JSON.parse(x)),
5650
- `Failed to parse 'DollarOrDollarIn' from JSON`,
5612
+ (x) => OrIn$inboundSchema.parse(JSON.parse(x)),
5613
+ `Failed to parse 'OrIn' from JSON`,
5651
5614
  );
5652
5615
  }
5653
5616
 
5654
5617
  /** @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",
5618
+ export const OrLte$inboundSchema: z.ZodType<OrLte, z.ZodTypeDef, unknown> = z
5619
+ .object({
5620
+ lte: z.number(),
5664
5621
  });
5665
- });
5666
5622
 
5667
5623
  /** @internal */
5668
- export type DollarOrDollarLte$Outbound = {
5669
- $lte: number;
5624
+ export type OrLte$Outbound = {
5625
+ lte: number;
5670
5626
  };
5671
5627
 
5672
5628
  /** @internal */
5673
- export const DollarOrDollarLte$outboundSchema: z.ZodType<
5674
- DollarOrDollarLte$Outbound,
5629
+ export const OrLte$outboundSchema: z.ZodType<
5630
+ OrLte$Outbound,
5675
5631
  z.ZodTypeDef,
5676
- DollarOrDollarLte
5632
+ OrLte
5677
5633
  > = z.object({
5678
- dollarLte: z.number(),
5679
- }).transform((v) => {
5680
- return remap$(v, {
5681
- dollarLte: "$lte",
5682
- });
5634
+ lte: z.number(),
5683
5635
  });
5684
5636
 
5685
5637
  /**
5686
5638
  * @internal
5687
5639
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5688
5640
  */
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;
5641
+ export namespace OrLte$ {
5642
+ /** @deprecated use `OrLte$inboundSchema` instead. */
5643
+ export const inboundSchema = OrLte$inboundSchema;
5644
+ /** @deprecated use `OrLte$outboundSchema` instead. */
5645
+ export const outboundSchema = OrLte$outboundSchema;
5646
+ /** @deprecated use `OrLte$Outbound` instead. */
5647
+ export type Outbound = OrLte$Outbound;
5696
5648
  }
5697
5649
 
5698
- export function dollarOrDollarLteToJSON(
5699
- dollarOrDollarLte: DollarOrDollarLte,
5700
- ): string {
5701
- return JSON.stringify(
5702
- DollarOrDollarLte$outboundSchema.parse(dollarOrDollarLte),
5703
- );
5650
+ export function orLteToJSON(orLte: OrLte): string {
5651
+ return JSON.stringify(OrLte$outboundSchema.parse(orLte));
5704
5652
  }
5705
5653
 
5706
- export function dollarOrDollarLteFromJSON(
5654
+ export function orLteFromJSON(
5707
5655
  jsonString: string,
5708
- ): SafeParseResult<DollarOrDollarLte, SDKValidationError> {
5656
+ ): SafeParseResult<OrLte, SDKValidationError> {
5709
5657
  return safeParse(
5710
5658
  jsonString,
5711
- (x) => DollarOrDollarLte$inboundSchema.parse(JSON.parse(x)),
5712
- `Failed to parse 'DollarOrDollarLte' from JSON`,
5659
+ (x) => OrLte$inboundSchema.parse(JSON.parse(x)),
5660
+ `Failed to parse 'OrLte' from JSON`,
5713
5661
  );
5714
5662
  }
5715
5663
 
5716
5664
  /** @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",
5665
+ export const OrLt$inboundSchema: z.ZodType<OrLt, z.ZodTypeDef, unknown> = z
5666
+ .object({
5667
+ lt: z.number(),
5726
5668
  });
5727
- });
5728
5669
 
5729
5670
  /** @internal */
5730
- export type DollarOrDollarLt$Outbound = {
5731
- $lt: number;
5671
+ export type OrLt$Outbound = {
5672
+ lt: number;
5732
5673
  };
5733
5674
 
5734
5675
  /** @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",
5676
+ export const OrLt$outboundSchema: z.ZodType<OrLt$Outbound, z.ZodTypeDef, OrLt> =
5677
+ z.object({
5678
+ lt: z.number(),
5744
5679
  });
5745
- });
5746
5680
 
5747
5681
  /**
5748
5682
  * @internal
5749
5683
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5750
5684
  */
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;
5685
+ export namespace OrLt$ {
5686
+ /** @deprecated use `OrLt$inboundSchema` instead. */
5687
+ export const inboundSchema = OrLt$inboundSchema;
5688
+ /** @deprecated use `OrLt$outboundSchema` instead. */
5689
+ export const outboundSchema = OrLt$outboundSchema;
5690
+ /** @deprecated use `OrLt$Outbound` instead. */
5691
+ export type Outbound = OrLt$Outbound;
5758
5692
  }
5759
5693
 
5760
- export function dollarOrDollarLtToJSON(
5761
- dollarOrDollarLt: DollarOrDollarLt,
5762
- ): string {
5763
- return JSON.stringify(
5764
- DollarOrDollarLt$outboundSchema.parse(dollarOrDollarLt),
5765
- );
5694
+ export function orLtToJSON(orLt: OrLt): string {
5695
+ return JSON.stringify(OrLt$outboundSchema.parse(orLt));
5766
5696
  }
5767
5697
 
5768
- export function dollarOrDollarLtFromJSON(
5698
+ export function orLtFromJSON(
5769
5699
  jsonString: string,
5770
- ): SafeParseResult<DollarOrDollarLt, SDKValidationError> {
5700
+ ): SafeParseResult<OrLt, SDKValidationError> {
5771
5701
  return safeParse(
5772
5702
  jsonString,
5773
- (x) => DollarOrDollarLt$inboundSchema.parse(JSON.parse(x)),
5774
- `Failed to parse 'DollarOrDollarLt' from JSON`,
5703
+ (x) => OrLt$inboundSchema.parse(JSON.parse(x)),
5704
+ `Failed to parse 'OrLt' from JSON`,
5775
5705
  );
5776
5706
  }
5777
5707
 
5778
5708
  /** @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",
5709
+ export const OrGte$inboundSchema: z.ZodType<OrGte, z.ZodTypeDef, unknown> = z
5710
+ .object({
5711
+ gte: z.number(),
5788
5712
  });
5789
- });
5790
5713
 
5791
5714
  /** @internal */
5792
- export type DollarOrDollarGte$Outbound = {
5793
- $gte: number;
5715
+ export type OrGte$Outbound = {
5716
+ gte: number;
5794
5717
  };
5795
5718
 
5796
5719
  /** @internal */
5797
- export const DollarOrDollarGte$outboundSchema: z.ZodType<
5798
- DollarOrDollarGte$Outbound,
5720
+ export const OrGte$outboundSchema: z.ZodType<
5721
+ OrGte$Outbound,
5799
5722
  z.ZodTypeDef,
5800
- DollarOrDollarGte
5723
+ OrGte
5801
5724
  > = z.object({
5802
- dollarGte: z.number(),
5803
- }).transform((v) => {
5804
- return remap$(v, {
5805
- dollarGte: "$gte",
5806
- });
5725
+ gte: z.number(),
5807
5726
  });
5808
5727
 
5809
5728
  /**
5810
5729
  * @internal
5811
5730
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5812
5731
  */
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;
5732
+ export namespace OrGte$ {
5733
+ /** @deprecated use `OrGte$inboundSchema` instead. */
5734
+ export const inboundSchema = OrGte$inboundSchema;
5735
+ /** @deprecated use `OrGte$outboundSchema` instead. */
5736
+ export const outboundSchema = OrGte$outboundSchema;
5737
+ /** @deprecated use `OrGte$Outbound` instead. */
5738
+ export type Outbound = OrGte$Outbound;
5820
5739
  }
5821
5740
 
5822
- export function dollarOrDollarGteToJSON(
5823
- dollarOrDollarGte: DollarOrDollarGte,
5824
- ): string {
5825
- return JSON.stringify(
5826
- DollarOrDollarGte$outboundSchema.parse(dollarOrDollarGte),
5827
- );
5741
+ export function orGteToJSON(orGte: OrGte): string {
5742
+ return JSON.stringify(OrGte$outboundSchema.parse(orGte));
5828
5743
  }
5829
5744
 
5830
- export function dollarOrDollarGteFromJSON(
5745
+ export function orGteFromJSON(
5831
5746
  jsonString: string,
5832
- ): SafeParseResult<DollarOrDollarGte, SDKValidationError> {
5747
+ ): SafeParseResult<OrGte, SDKValidationError> {
5833
5748
  return safeParse(
5834
5749
  jsonString,
5835
- (x) => DollarOrDollarGte$inboundSchema.parse(JSON.parse(x)),
5836
- `Failed to parse 'DollarOrDollarGte' from JSON`,
5750
+ (x) => OrGte$inboundSchema.parse(JSON.parse(x)),
5751
+ `Failed to parse 'OrGte' from JSON`,
5837
5752
  );
5838
5753
  }
5839
5754
 
5840
5755
  /** @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",
5756
+ export const Or3$inboundSchema: z.ZodType<Or3, z.ZodTypeDef, unknown> = z
5757
+ .object({
5758
+ gt: z.number(),
5850
5759
  });
5851
- });
5852
5760
 
5853
5761
  /** @internal */
5854
- export type DollarOr3$Outbound = {
5855
- $gt: number;
5762
+ export type Or3$Outbound = {
5763
+ gt: number;
5856
5764
  };
5857
5765
 
5858
5766
  /** @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",
5767
+ export const Or3$outboundSchema: z.ZodType<Or3$Outbound, z.ZodTypeDef, Or3> = z
5768
+ .object({
5769
+ gt: z.number(),
5868
5770
  });
5869
- });
5870
5771
 
5871
5772
  /**
5872
5773
  * @internal
5873
5774
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5874
5775
  */
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;
5776
+ export namespace Or3$ {
5777
+ /** @deprecated use `Or3$inboundSchema` instead. */
5778
+ export const inboundSchema = Or3$inboundSchema;
5779
+ /** @deprecated use `Or3$outboundSchema` instead. */
5780
+ export const outboundSchema = Or3$outboundSchema;
5781
+ /** @deprecated use `Or3$Outbound` instead. */
5782
+ export type Outbound = Or3$Outbound;
5882
5783
  }
5883
5784
 
5884
- export function dollarOr3ToJSON(dollarOr3: DollarOr3): string {
5885
- return JSON.stringify(DollarOr3$outboundSchema.parse(dollarOr3));
5785
+ export function or3ToJSON(or3: Or3): string {
5786
+ return JSON.stringify(Or3$outboundSchema.parse(or3));
5886
5787
  }
5887
5788
 
5888
- export function dollarOr3FromJSON(
5789
+ export function or3FromJSON(
5889
5790
  jsonString: string,
5890
- ): SafeParseResult<DollarOr3, SDKValidationError> {
5791
+ ): SafeParseResult<Or3, SDKValidationError> {
5891
5792
  return safeParse(
5892
5793
  jsonString,
5893
- (x) => DollarOr3$inboundSchema.parse(JSON.parse(x)),
5894
- `Failed to parse 'DollarOr3' from JSON`,
5794
+ (x) => Or3$inboundSchema.parse(JSON.parse(x)),
5795
+ `Failed to parse 'Or3' from JSON`,
5895
5796
  );
5896
5797
  }
5897
5798
 
5898
5799
  /** @internal */
5899
- export const DeploymentGetConfigDollarOrDollarNe$inboundSchema: z.ZodType<
5900
- DeploymentGetConfigDollarOrDollarNe,
5800
+ export const DeploymentGetConfigOrNe$inboundSchema: z.ZodType<
5801
+ DeploymentGetConfigOrNe,
5901
5802
  z.ZodTypeDef,
5902
5803
  unknown
5903
5804
  > = z.union([z.string(), z.number(), z.boolean()]);
5904
5805
 
5905
5806
  /** @internal */
5906
- export type DeploymentGetConfigDollarOrDollarNe$Outbound =
5907
- | string
5908
- | number
5909
- | boolean;
5807
+ export type DeploymentGetConfigOrNe$Outbound = string | number | boolean;
5910
5808
 
5911
5809
  /** @internal */
5912
- export const DeploymentGetConfigDollarOrDollarNe$outboundSchema: z.ZodType<
5913
- DeploymentGetConfigDollarOrDollarNe$Outbound,
5810
+ export const DeploymentGetConfigOrNe$outboundSchema: z.ZodType<
5811
+ DeploymentGetConfigOrNe$Outbound,
5914
5812
  z.ZodTypeDef,
5915
- DeploymentGetConfigDollarOrDollarNe
5813
+ DeploymentGetConfigOrNe
5916
5814
  > = z.union([z.string(), z.number(), z.boolean()]);
5917
5815
 
5918
5816
  /**
5919
5817
  * @internal
5920
5818
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5921
5819
  */
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;
5820
+ export namespace DeploymentGetConfigOrNe$ {
5821
+ /** @deprecated use `DeploymentGetConfigOrNe$inboundSchema` instead. */
5822
+ export const inboundSchema = DeploymentGetConfigOrNe$inboundSchema;
5823
+ /** @deprecated use `DeploymentGetConfigOrNe$outboundSchema` instead. */
5824
+ export const outboundSchema = DeploymentGetConfigOrNe$outboundSchema;
5825
+ /** @deprecated use `DeploymentGetConfigOrNe$Outbound` instead. */
5826
+ export type Outbound = DeploymentGetConfigOrNe$Outbound;
5931
5827
  }
5932
5828
 
5933
- export function deploymentGetConfigDollarOrDollarNeToJSON(
5934
- deploymentGetConfigDollarOrDollarNe: DeploymentGetConfigDollarOrDollarNe,
5829
+ export function deploymentGetConfigOrNeToJSON(
5830
+ deploymentGetConfigOrNe: DeploymentGetConfigOrNe,
5935
5831
  ): string {
5936
5832
  return JSON.stringify(
5937
- DeploymentGetConfigDollarOrDollarNe$outboundSchema.parse(
5938
- deploymentGetConfigDollarOrDollarNe,
5939
- ),
5833
+ DeploymentGetConfigOrNe$outboundSchema.parse(deploymentGetConfigOrNe),
5940
5834
  );
5941
5835
  }
5942
5836
 
5943
- export function deploymentGetConfigDollarOrDollarNeFromJSON(
5837
+ export function deploymentGetConfigOrNeFromJSON(
5944
5838
  jsonString: string,
5945
- ): SafeParseResult<DeploymentGetConfigDollarOrDollarNe, SDKValidationError> {
5839
+ ): SafeParseResult<DeploymentGetConfigOrNe, SDKValidationError> {
5946
5840
  return safeParse(
5947
5841
  jsonString,
5948
- (x) =>
5949
- DeploymentGetConfigDollarOrDollarNe$inboundSchema.parse(JSON.parse(x)),
5950
- `Failed to parse 'DeploymentGetConfigDollarOrDollarNe' from JSON`,
5842
+ (x) => DeploymentGetConfigOrNe$inboundSchema.parse(JSON.parse(x)),
5843
+ `Failed to parse 'DeploymentGetConfigOrNe' from JSON`,
5951
5844
  );
5952
5845
  }
5953
5846
 
5954
5847
  /** @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",
5848
+ export const OrNe$inboundSchema: z.ZodType<OrNe, z.ZodTypeDef, unknown> = z
5849
+ .object({
5850
+ ne: z.union([z.string(), z.number(), z.boolean()]),
5964
5851
  });
5965
- });
5966
5852
 
5967
5853
  /** @internal */
5968
- export type DollarOrDollarNe$Outbound = {
5969
- $ne: string | number | boolean;
5854
+ export type OrNe$Outbound = {
5855
+ ne: string | number | boolean;
5970
5856
  };
5971
5857
 
5972
5858
  /** @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",
5859
+ export const OrNe$outboundSchema: z.ZodType<OrNe$Outbound, z.ZodTypeDef, OrNe> =
5860
+ z.object({
5861
+ ne: z.union([z.string(), z.number(), z.boolean()]),
5982
5862
  });
5983
- });
5984
5863
 
5985
5864
  /**
5986
5865
  * @internal
5987
5866
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5988
5867
  */
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;
5868
+ export namespace OrNe$ {
5869
+ /** @deprecated use `OrNe$inboundSchema` instead. */
5870
+ export const inboundSchema = OrNe$inboundSchema;
5871
+ /** @deprecated use `OrNe$outboundSchema` instead. */
5872
+ export const outboundSchema = OrNe$outboundSchema;
5873
+ /** @deprecated use `OrNe$Outbound` instead. */
5874
+ export type Outbound = OrNe$Outbound;
5996
5875
  }
5997
5876
 
5998
- export function dollarOrDollarNeToJSON(
5999
- dollarOrDollarNe: DollarOrDollarNe,
6000
- ): string {
6001
- return JSON.stringify(
6002
- DollarOrDollarNe$outboundSchema.parse(dollarOrDollarNe),
6003
- );
5877
+ export function orNeToJSON(orNe: OrNe): string {
5878
+ return JSON.stringify(OrNe$outboundSchema.parse(orNe));
6004
5879
  }
6005
5880
 
6006
- export function dollarOrDollarNeFromJSON(
5881
+ export function orNeFromJSON(
6007
5882
  jsonString: string,
6008
- ): SafeParseResult<DollarOrDollarNe, SDKValidationError> {
5883
+ ): SafeParseResult<OrNe, SDKValidationError> {
6009
5884
  return safeParse(
6010
5885
  jsonString,
6011
- (x) => DollarOrDollarNe$inboundSchema.parse(JSON.parse(x)),
6012
- `Failed to parse 'DollarOrDollarNe' from JSON`,
5886
+ (x) => OrNe$inboundSchema.parse(JSON.parse(x)),
5887
+ `Failed to parse 'OrNe' from JSON`,
6013
5888
  );
6014
5889
  }
6015
5890
 
6016
5891
  /** @internal */
6017
- export const DeploymentGetConfigDollarOrDollarEq$inboundSchema: z.ZodType<
6018
- DeploymentGetConfigDollarOrDollarEq,
5892
+ export const DeploymentGetConfigOrEq$inboundSchema: z.ZodType<
5893
+ DeploymentGetConfigOrEq,
6019
5894
  z.ZodTypeDef,
6020
5895
  unknown
6021
5896
  > = z.union([z.string(), z.number(), z.boolean()]);
6022
5897
 
6023
5898
  /** @internal */
6024
- export type DeploymentGetConfigDollarOrDollarEq$Outbound =
6025
- | string
6026
- | number
6027
- | boolean;
5899
+ export type DeploymentGetConfigOrEq$Outbound = string | number | boolean;
6028
5900
 
6029
5901
  /** @internal */
6030
- export const DeploymentGetConfigDollarOrDollarEq$outboundSchema: z.ZodType<
6031
- DeploymentGetConfigDollarOrDollarEq$Outbound,
5902
+ export const DeploymentGetConfigOrEq$outboundSchema: z.ZodType<
5903
+ DeploymentGetConfigOrEq$Outbound,
6032
5904
  z.ZodTypeDef,
6033
- DeploymentGetConfigDollarOrDollarEq
5905
+ DeploymentGetConfigOrEq
6034
5906
  > = z.union([z.string(), z.number(), z.boolean()]);
6035
5907
 
6036
5908
  /**
6037
5909
  * @internal
6038
5910
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6039
5911
  */
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;
5912
+ export namespace DeploymentGetConfigOrEq$ {
5913
+ /** @deprecated use `DeploymentGetConfigOrEq$inboundSchema` instead. */
5914
+ export const inboundSchema = DeploymentGetConfigOrEq$inboundSchema;
5915
+ /** @deprecated use `DeploymentGetConfigOrEq$outboundSchema` instead. */
5916
+ export const outboundSchema = DeploymentGetConfigOrEq$outboundSchema;
5917
+ /** @deprecated use `DeploymentGetConfigOrEq$Outbound` instead. */
5918
+ export type Outbound = DeploymentGetConfigOrEq$Outbound;
6049
5919
  }
6050
5920
 
6051
- export function deploymentGetConfigDollarOrDollarEqToJSON(
6052
- deploymentGetConfigDollarOrDollarEq: DeploymentGetConfigDollarOrDollarEq,
5921
+ export function deploymentGetConfigOrEqToJSON(
5922
+ deploymentGetConfigOrEq: DeploymentGetConfigOrEq,
6053
5923
  ): string {
6054
5924
  return JSON.stringify(
6055
- DeploymentGetConfigDollarOrDollarEq$outboundSchema.parse(
6056
- deploymentGetConfigDollarOrDollarEq,
6057
- ),
5925
+ DeploymentGetConfigOrEq$outboundSchema.parse(deploymentGetConfigOrEq),
6058
5926
  );
6059
5927
  }
6060
5928
 
6061
- export function deploymentGetConfigDollarOrDollarEqFromJSON(
5929
+ export function deploymentGetConfigOrEqFromJSON(
6062
5930
  jsonString: string,
6063
- ): SafeParseResult<DeploymentGetConfigDollarOrDollarEq, SDKValidationError> {
5931
+ ): SafeParseResult<DeploymentGetConfigOrEq, SDKValidationError> {
6064
5932
  return safeParse(
6065
5933
  jsonString,
6066
- (x) =>
6067
- DeploymentGetConfigDollarOrDollarEq$inboundSchema.parse(JSON.parse(x)),
6068
- `Failed to parse 'DeploymentGetConfigDollarOrDollarEq' from JSON`,
5934
+ (x) => DeploymentGetConfigOrEq$inboundSchema.parse(JSON.parse(x)),
5935
+ `Failed to parse 'DeploymentGetConfigOrEq' from JSON`,
6069
5936
  );
6070
5937
  }
6071
5938
 
6072
5939
  /** @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",
5940
+ export const OrEq$inboundSchema: z.ZodType<OrEq, z.ZodTypeDef, unknown> = z
5941
+ .object({
5942
+ eq: z.union([z.string(), z.number(), z.boolean()]),
6082
5943
  });
6083
- });
6084
5944
 
6085
5945
  /** @internal */
6086
- export type DollarOrDollarEq$Outbound = {
6087
- $eq: string | number | boolean;
5946
+ export type OrEq$Outbound = {
5947
+ eq: string | number | boolean;
6088
5948
  };
6089
5949
 
6090
5950
  /** @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",
5951
+ export const OrEq$outboundSchema: z.ZodType<OrEq$Outbound, z.ZodTypeDef, OrEq> =
5952
+ z.object({
5953
+ eq: z.union([z.string(), z.number(), z.boolean()]),
6100
5954
  });
6101
- });
6102
5955
 
6103
5956
  /**
6104
5957
  * @internal
6105
5958
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6106
5959
  */
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;
5960
+ export namespace OrEq$ {
5961
+ /** @deprecated use `OrEq$inboundSchema` instead. */
5962
+ export const inboundSchema = OrEq$inboundSchema;
5963
+ /** @deprecated use `OrEq$outboundSchema` instead. */
5964
+ export const outboundSchema = OrEq$outboundSchema;
5965
+ /** @deprecated use `OrEq$Outbound` instead. */
5966
+ export type Outbound = OrEq$Outbound;
6114
5967
  }
6115
5968
 
6116
- export function dollarOrDollarEqToJSON(
6117
- dollarOrDollarEq: DollarOrDollarEq,
6118
- ): string {
6119
- return JSON.stringify(
6120
- DollarOrDollarEq$outboundSchema.parse(dollarOrDollarEq),
6121
- );
5969
+ export function orEqToJSON(orEq: OrEq): string {
5970
+ return JSON.stringify(OrEq$outboundSchema.parse(orEq));
6122
5971
  }
6123
5972
 
6124
- export function dollarOrDollarEqFromJSON(
5973
+ export function orEqFromJSON(
6125
5974
  jsonString: string,
6126
- ): SafeParseResult<DollarOrDollarEq, SDKValidationError> {
5975
+ ): SafeParseResult<OrEq, SDKValidationError> {
6127
5976
  return safeParse(
6128
5977
  jsonString,
6129
- (x) => DollarOrDollarEq$inboundSchema.parse(JSON.parse(x)),
6130
- `Failed to parse 'DollarOrDollarEq' from JSON`,
5978
+ (x) => OrEq$inboundSchema.parse(JSON.parse(x)),
5979
+ `Failed to parse 'OrEq' from JSON`,
6131
5980
  );
6132
5981
  }
6133
5982
 
6134
5983
  /** @internal */
6135
- export const KnowledgeFilterDollarOr$inboundSchema: z.ZodType<
6136
- KnowledgeFilterDollarOr,
5984
+ export const KnowledgeFilterOr$inboundSchema: z.ZodType<
5985
+ KnowledgeFilterOr,
6137
5986
  z.ZodTypeDef,
6138
5987
  unknown
6139
5988
  > = 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),
5989
+ z.lazy(() => OrEq$inboundSchema),
5990
+ z.lazy(() => OrNe$inboundSchema),
5991
+ z.lazy(() => Or3$inboundSchema),
5992
+ z.lazy(() => OrGte$inboundSchema),
5993
+ z.lazy(() => OrLt$inboundSchema),
5994
+ z.lazy(() => OrLte$inboundSchema),
5995
+ z.lazy(() => OrIn$inboundSchema),
5996
+ z.lazy(() => OrNin$inboundSchema),
5997
+ z.lazy(() => OrExists$inboundSchema),
6149
5998
  ]);
6150
5999
 
6151
6000
  /** @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;
6001
+ export type KnowledgeFilterOr$Outbound =
6002
+ | OrEq$Outbound
6003
+ | OrNe$Outbound
6004
+ | Or3$Outbound
6005
+ | OrGte$Outbound
6006
+ | OrLt$Outbound
6007
+ | OrLte$Outbound
6008
+ | OrIn$Outbound
6009
+ | OrNin$Outbound
6010
+ | OrExists$Outbound;
6162
6011
 
6163
6012
  /** @internal */
6164
- export const KnowledgeFilterDollarOr$outboundSchema: z.ZodType<
6165
- KnowledgeFilterDollarOr$Outbound,
6013
+ export const KnowledgeFilterOr$outboundSchema: z.ZodType<
6014
+ KnowledgeFilterOr$Outbound,
6166
6015
  z.ZodTypeDef,
6167
- KnowledgeFilterDollarOr
6016
+ KnowledgeFilterOr
6168
6017
  > = 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),
6018
+ z.lazy(() => OrEq$outboundSchema),
6019
+ z.lazy(() => OrNe$outboundSchema),
6020
+ z.lazy(() => Or3$outboundSchema),
6021
+ z.lazy(() => OrGte$outboundSchema),
6022
+ z.lazy(() => OrLt$outboundSchema),
6023
+ z.lazy(() => OrLte$outboundSchema),
6024
+ z.lazy(() => OrIn$outboundSchema),
6025
+ z.lazy(() => OrNin$outboundSchema),
6026
+ z.lazy(() => OrExists$outboundSchema),
6178
6027
  ]);
6179
6028
 
6180
6029
  /**
6181
6030
  * @internal
6182
6031
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6183
6032
  */
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;
6033
+ export namespace KnowledgeFilterOr$ {
6034
+ /** @deprecated use `KnowledgeFilterOr$inboundSchema` instead. */
6035
+ export const inboundSchema = KnowledgeFilterOr$inboundSchema;
6036
+ /** @deprecated use `KnowledgeFilterOr$outboundSchema` instead. */
6037
+ export const outboundSchema = KnowledgeFilterOr$outboundSchema;
6038
+ /** @deprecated use `KnowledgeFilterOr$Outbound` instead. */
6039
+ export type Outbound = KnowledgeFilterOr$Outbound;
6191
6040
  }
6192
6041
 
6193
- export function knowledgeFilterDollarOrToJSON(
6194
- knowledgeFilterDollarOr: KnowledgeFilterDollarOr,
6042
+ export function knowledgeFilterOrToJSON(
6043
+ knowledgeFilterOr: KnowledgeFilterOr,
6195
6044
  ): string {
6196
6045
  return JSON.stringify(
6197
- KnowledgeFilterDollarOr$outboundSchema.parse(knowledgeFilterDollarOr),
6046
+ KnowledgeFilterOr$outboundSchema.parse(knowledgeFilterOr),
6198
6047
  );
6199
6048
  }
6200
6049
 
6201
- export function knowledgeFilterDollarOrFromJSON(
6050
+ export function knowledgeFilterOrFromJSON(
6202
6051
  jsonString: string,
6203
- ): SafeParseResult<KnowledgeFilterDollarOr, SDKValidationError> {
6052
+ ): SafeParseResult<KnowledgeFilterOr, SDKValidationError> {
6204
6053
  return safeParse(
6205
6054
  jsonString,
6206
- (x) => KnowledgeFilterDollarOr$inboundSchema.parse(JSON.parse(x)),
6207
- `Failed to parse 'KnowledgeFilterDollarOr' from JSON`,
6055
+ (x) => KnowledgeFilterOr$inboundSchema.parse(JSON.parse(x)),
6056
+ `Failed to parse 'KnowledgeFilterOr' from JSON`,
6208
6057
  );
6209
6058
  }
6210
6059
 
6211
6060
  /** @internal */
6212
- export const DollarOr$inboundSchema: z.ZodType<
6213
- DollarOr,
6214
- z.ZodTypeDef,
6215
- unknown
6216
- > = z.object({
6217
- $or: z.array(
6061
+ export const Or$inboundSchema: z.ZodType<Or, z.ZodTypeDef, unknown> = z.object({
6062
+ or: z.array(
6218
6063
  z.record(z.union([
6219
- z.lazy(() => DollarOrDollarEq$inboundSchema),
6064
+ z.lazy(() => OrEq$inboundSchema),
6220
6065
  z.lazy(() =>
6221
- DollarOrDollarNe$inboundSchema
6066
+ OrNe$inboundSchema
6222
6067
  ),
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),
6068
+ z.lazy(() => Or3$inboundSchema),
6069
+ z.lazy(() => OrGte$inboundSchema),
6070
+ z.lazy(() => OrLt$inboundSchema),
6071
+ z.lazy(() => OrLte$inboundSchema),
6072
+ z.lazy(() => OrIn$inboundSchema),
6073
+ z.lazy(() => OrNin$inboundSchema),
6074
+ z.lazy(() => OrExists$inboundSchema),
6230
6075
  ])),
6231
6076
  ),
6232
- }).transform((v) => {
6233
- return remap$(v, {
6234
- "$or": "dollarOr",
6235
- });
6236
6077
  });
6237
6078
 
6238
6079
  /** @internal */
6239
- export type DollarOr$Outbound = {
6240
- $or: Array<
6080
+ export type Or$Outbound = {
6081
+ or: Array<
6241
6082
  {
6242
6083
  [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;
6084
+ | OrEq$Outbound
6085
+ | OrNe$Outbound
6086
+ | Or3$Outbound
6087
+ | OrGte$Outbound
6088
+ | OrLt$Outbound
6089
+ | OrLte$Outbound
6090
+ | OrIn$Outbound
6091
+ | OrNin$Outbound
6092
+ | OrExists$Outbound;
6252
6093
  }
6253
6094
  >;
6254
6095
  };
6255
6096
 
6256
6097
  /** @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",
6098
+ export const Or$outboundSchema: z.ZodType<Or$Outbound, z.ZodTypeDef, Or> = z
6099
+ .object({
6100
+ or: z.array(
6101
+ z.record(z.union([
6102
+ z.lazy(() => OrEq$outboundSchema),
6103
+ z.lazy(() =>
6104
+ OrNe$outboundSchema
6105
+ ),
6106
+ z.lazy(() => Or3$outboundSchema),
6107
+ z.lazy(() => OrGte$outboundSchema),
6108
+ z.lazy(() => OrLt$outboundSchema),
6109
+ z.lazy(() => OrLte$outboundSchema),
6110
+ z.lazy(() => OrIn$outboundSchema),
6111
+ z.lazy(() => OrNin$outboundSchema),
6112
+ z.lazy(() => OrExists$outboundSchema),
6113
+ ])),
6114
+ ),
6280
6115
  });
6281
- });
6282
6116
 
6283
6117
  /**
6284
6118
  * @internal
6285
6119
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6286
6120
  */
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;
6121
+ export namespace Or$ {
6122
+ /** @deprecated use `Or$inboundSchema` instead. */
6123
+ export const inboundSchema = Or$inboundSchema;
6124
+ /** @deprecated use `Or$outboundSchema` instead. */
6125
+ export const outboundSchema = Or$outboundSchema;
6126
+ /** @deprecated use `Or$Outbound` instead. */
6127
+ export type Outbound = Or$Outbound;
6294
6128
  }
6295
6129
 
6296
- export function dollarOrToJSON(dollarOr: DollarOr): string {
6297
- return JSON.stringify(DollarOr$outboundSchema.parse(dollarOr));
6130
+ export function orToJSON(or: Or): string {
6131
+ return JSON.stringify(Or$outboundSchema.parse(or));
6298
6132
  }
6299
6133
 
6300
- export function dollarOrFromJSON(
6134
+ export function orFromJSON(
6301
6135
  jsonString: string,
6302
- ): SafeParseResult<DollarOr, SDKValidationError> {
6136
+ ): SafeParseResult<Or, SDKValidationError> {
6303
6137
  return safeParse(
6304
6138
  jsonString,
6305
- (x) => DollarOr$inboundSchema.parse(JSON.parse(x)),
6306
- `Failed to parse 'DollarOr' from JSON`,
6139
+ (x) => Or$inboundSchema.parse(JSON.parse(x)),
6140
+ `Failed to parse 'Or' from JSON`,
6307
6141
  );
6308
6142
  }
6309
6143
 
6310
6144
  /** @internal */
6311
- export const DollarAndDollarExists$inboundSchema: z.ZodType<
6312
- DollarAndDollarExists,
6145
+ export const AndExists$inboundSchema: z.ZodType<
6146
+ AndExists,
6313
6147
  z.ZodTypeDef,
6314
6148
  unknown
6315
6149
  > = z.object({
6316
- $exists: z.boolean(),
6317
- }).transform((v) => {
6318
- return remap$(v, {
6319
- "$exists": "dollarExists",
6320
- });
6150
+ exists: z.boolean(),
6321
6151
  });
6322
6152
 
6323
6153
  /** @internal */
6324
- export type DollarAndDollarExists$Outbound = {
6325
- $exists: boolean;
6154
+ export type AndExists$Outbound = {
6155
+ exists: boolean;
6326
6156
  };
6327
6157
 
6328
6158
  /** @internal */
6329
- export const DollarAndDollarExists$outboundSchema: z.ZodType<
6330
- DollarAndDollarExists$Outbound,
6159
+ export const AndExists$outboundSchema: z.ZodType<
6160
+ AndExists$Outbound,
6331
6161
  z.ZodTypeDef,
6332
- DollarAndDollarExists
6162
+ AndExists
6333
6163
  > = z.object({
6334
- dollarExists: z.boolean(),
6335
- }).transform((v) => {
6336
- return remap$(v, {
6337
- dollarExists: "$exists",
6338
- });
6164
+ exists: z.boolean(),
6339
6165
  });
6340
6166
 
6341
6167
  /**
6342
6168
  * @internal
6343
6169
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6344
6170
  */
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;
6171
+ export namespace AndExists$ {
6172
+ /** @deprecated use `AndExists$inboundSchema` instead. */
6173
+ export const inboundSchema = AndExists$inboundSchema;
6174
+ /** @deprecated use `AndExists$outboundSchema` instead. */
6175
+ export const outboundSchema = AndExists$outboundSchema;
6176
+ /** @deprecated use `AndExists$Outbound` instead. */
6177
+ export type Outbound = AndExists$Outbound;
6352
6178
  }
6353
6179
 
6354
- export function dollarAndDollarExistsToJSON(
6355
- dollarAndDollarExists: DollarAndDollarExists,
6356
- ): string {
6357
- return JSON.stringify(
6358
- DollarAndDollarExists$outboundSchema.parse(dollarAndDollarExists),
6359
- );
6180
+ export function andExistsToJSON(andExists: AndExists): string {
6181
+ return JSON.stringify(AndExists$outboundSchema.parse(andExists));
6360
6182
  }
6361
6183
 
6362
- export function dollarAndDollarExistsFromJSON(
6184
+ export function andExistsFromJSON(
6363
6185
  jsonString: string,
6364
- ): SafeParseResult<DollarAndDollarExists, SDKValidationError> {
6186
+ ): SafeParseResult<AndExists, SDKValidationError> {
6365
6187
  return safeParse(
6366
6188
  jsonString,
6367
- (x) => DollarAndDollarExists$inboundSchema.parse(JSON.parse(x)),
6368
- `Failed to parse 'DollarAndDollarExists' from JSON`,
6189
+ (x) => AndExists$inboundSchema.parse(JSON.parse(x)),
6190
+ `Failed to parse 'AndExists' from JSON`,
6369
6191
  );
6370
6192
  }
6371
6193
 
6372
6194
  /** @internal */
6373
- export const DeploymentGetConfigDollarAndDollarNin$inboundSchema: z.ZodType<
6374
- DeploymentGetConfigDollarAndDollarNin,
6195
+ export const DeploymentGetConfigAndNin$inboundSchema: z.ZodType<
6196
+ DeploymentGetConfigAndNin,
6375
6197
  z.ZodTypeDef,
6376
6198
  unknown
6377
6199
  > = z.union([z.string(), z.number(), z.boolean()]);
6378
6200
 
6379
6201
  /** @internal */
6380
- export type DeploymentGetConfigDollarAndDollarNin$Outbound =
6381
- | string
6382
- | number
6383
- | boolean;
6202
+ export type DeploymentGetConfigAndNin$Outbound = string | number | boolean;
6384
6203
 
6385
6204
  /** @internal */
6386
- export const DeploymentGetConfigDollarAndDollarNin$outboundSchema: z.ZodType<
6387
- DeploymentGetConfigDollarAndDollarNin$Outbound,
6205
+ export const DeploymentGetConfigAndNin$outboundSchema: z.ZodType<
6206
+ DeploymentGetConfigAndNin$Outbound,
6388
6207
  z.ZodTypeDef,
6389
- DeploymentGetConfigDollarAndDollarNin
6208
+ DeploymentGetConfigAndNin
6390
6209
  > = z.union([z.string(), z.number(), z.boolean()]);
6391
6210
 
6392
6211
  /**
6393
6212
  * @internal
6394
6213
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6395
6214
  */
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;
6215
+ export namespace DeploymentGetConfigAndNin$ {
6216
+ /** @deprecated use `DeploymentGetConfigAndNin$inboundSchema` instead. */
6217
+ export const inboundSchema = DeploymentGetConfigAndNin$inboundSchema;
6218
+ /** @deprecated use `DeploymentGetConfigAndNin$outboundSchema` instead. */
6219
+ export const outboundSchema = DeploymentGetConfigAndNin$outboundSchema;
6220
+ /** @deprecated use `DeploymentGetConfigAndNin$Outbound` instead. */
6221
+ export type Outbound = DeploymentGetConfigAndNin$Outbound;
6405
6222
  }
6406
6223
 
6407
- export function deploymentGetConfigDollarAndDollarNinToJSON(
6408
- deploymentGetConfigDollarAndDollarNin: DeploymentGetConfigDollarAndDollarNin,
6224
+ export function deploymentGetConfigAndNinToJSON(
6225
+ deploymentGetConfigAndNin: DeploymentGetConfigAndNin,
6409
6226
  ): string {
6410
6227
  return JSON.stringify(
6411
- DeploymentGetConfigDollarAndDollarNin$outboundSchema.parse(
6412
- deploymentGetConfigDollarAndDollarNin,
6413
- ),
6228
+ DeploymentGetConfigAndNin$outboundSchema.parse(deploymentGetConfigAndNin),
6414
6229
  );
6415
6230
  }
6416
6231
 
6417
- export function deploymentGetConfigDollarAndDollarNinFromJSON(
6232
+ export function deploymentGetConfigAndNinFromJSON(
6418
6233
  jsonString: string,
6419
- ): SafeParseResult<DeploymentGetConfigDollarAndDollarNin, SDKValidationError> {
6234
+ ): SafeParseResult<DeploymentGetConfigAndNin, SDKValidationError> {
6420
6235
  return safeParse(
6421
6236
  jsonString,
6422
- (x) =>
6423
- DeploymentGetConfigDollarAndDollarNin$inboundSchema.parse(JSON.parse(x)),
6424
- `Failed to parse 'DeploymentGetConfigDollarAndDollarNin' from JSON`,
6237
+ (x) => DeploymentGetConfigAndNin$inboundSchema.parse(JSON.parse(x)),
6238
+ `Failed to parse 'DeploymentGetConfigAndNin' from JSON`,
6425
6239
  );
6426
6240
  }
6427
6241
 
6428
6242
  /** @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",
6243
+ export const AndNin$inboundSchema: z.ZodType<AndNin, z.ZodTypeDef, unknown> = z
6244
+ .object({
6245
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
6438
6246
  });
6439
- });
6440
6247
 
6441
6248
  /** @internal */
6442
- export type DollarAndDollarNin$Outbound = {
6443
- $nin: Array<string | number | boolean>;
6249
+ export type AndNin$Outbound = {
6250
+ nin: Array<string | number | boolean>;
6444
6251
  };
6445
6252
 
6446
6253
  /** @internal */
6447
- export const DollarAndDollarNin$outboundSchema: z.ZodType<
6448
- DollarAndDollarNin$Outbound,
6254
+ export const AndNin$outboundSchema: z.ZodType<
6255
+ AndNin$Outbound,
6449
6256
  z.ZodTypeDef,
6450
- DollarAndDollarNin
6257
+ AndNin
6451
6258
  > = 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
- });
6259
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
6457
6260
  });
6458
6261
 
6459
6262
  /**
6460
6263
  * @internal
6461
6264
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6462
6265
  */
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;
6266
+ export namespace AndNin$ {
6267
+ /** @deprecated use `AndNin$inboundSchema` instead. */
6268
+ export const inboundSchema = AndNin$inboundSchema;
6269
+ /** @deprecated use `AndNin$outboundSchema` instead. */
6270
+ export const outboundSchema = AndNin$outboundSchema;
6271
+ /** @deprecated use `AndNin$Outbound` instead. */
6272
+ export type Outbound = AndNin$Outbound;
6470
6273
  }
6471
6274
 
6472
- export function dollarAndDollarNinToJSON(
6473
- dollarAndDollarNin: DollarAndDollarNin,
6474
- ): string {
6475
- return JSON.stringify(
6476
- DollarAndDollarNin$outboundSchema.parse(dollarAndDollarNin),
6477
- );
6275
+ export function andNinToJSON(andNin: AndNin): string {
6276
+ return JSON.stringify(AndNin$outboundSchema.parse(andNin));
6478
6277
  }
6479
6278
 
6480
- export function dollarAndDollarNinFromJSON(
6279
+ export function andNinFromJSON(
6481
6280
  jsonString: string,
6482
- ): SafeParseResult<DollarAndDollarNin, SDKValidationError> {
6281
+ ): SafeParseResult<AndNin, SDKValidationError> {
6483
6282
  return safeParse(
6484
6283
  jsonString,
6485
- (x) => DollarAndDollarNin$inboundSchema.parse(JSON.parse(x)),
6486
- `Failed to parse 'DollarAndDollarNin' from JSON`,
6284
+ (x) => AndNin$inboundSchema.parse(JSON.parse(x)),
6285
+ `Failed to parse 'AndNin' from JSON`,
6487
6286
  );
6488
6287
  }
6489
6288
 
6490
6289
  /** @internal */
6491
- export const DeploymentGetConfigDollarAndDollarIn$inboundSchema: z.ZodType<
6492
- DeploymentGetConfigDollarAndDollarIn,
6290
+ export const DeploymentGetConfigAndIn$inboundSchema: z.ZodType<
6291
+ DeploymentGetConfigAndIn,
6493
6292
  z.ZodTypeDef,
6494
6293
  unknown
6495
6294
  > = z.union([z.string(), z.number(), z.boolean()]);
6496
6295
 
6497
6296
  /** @internal */
6498
- export type DeploymentGetConfigDollarAndDollarIn$Outbound =
6499
- | string
6500
- | number
6501
- | boolean;
6297
+ export type DeploymentGetConfigAndIn$Outbound = string | number | boolean;
6502
6298
 
6503
6299
  /** @internal */
6504
- export const DeploymentGetConfigDollarAndDollarIn$outboundSchema: z.ZodType<
6505
- DeploymentGetConfigDollarAndDollarIn$Outbound,
6300
+ export const DeploymentGetConfigAndIn$outboundSchema: z.ZodType<
6301
+ DeploymentGetConfigAndIn$Outbound,
6506
6302
  z.ZodTypeDef,
6507
- DeploymentGetConfigDollarAndDollarIn
6303
+ DeploymentGetConfigAndIn
6508
6304
  > = z.union([z.string(), z.number(), z.boolean()]);
6509
6305
 
6510
6306
  /**
6511
6307
  * @internal
6512
6308
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6513
6309
  */
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;
6310
+ export namespace DeploymentGetConfigAndIn$ {
6311
+ /** @deprecated use `DeploymentGetConfigAndIn$inboundSchema` instead. */
6312
+ export const inboundSchema = DeploymentGetConfigAndIn$inboundSchema;
6313
+ /** @deprecated use `DeploymentGetConfigAndIn$outboundSchema` instead. */
6314
+ export const outboundSchema = DeploymentGetConfigAndIn$outboundSchema;
6315
+ /** @deprecated use `DeploymentGetConfigAndIn$Outbound` instead. */
6316
+ export type Outbound = DeploymentGetConfigAndIn$Outbound;
6523
6317
  }
6524
6318
 
6525
- export function deploymentGetConfigDollarAndDollarInToJSON(
6526
- deploymentGetConfigDollarAndDollarIn: DeploymentGetConfigDollarAndDollarIn,
6319
+ export function deploymentGetConfigAndInToJSON(
6320
+ deploymentGetConfigAndIn: DeploymentGetConfigAndIn,
6527
6321
  ): string {
6528
6322
  return JSON.stringify(
6529
- DeploymentGetConfigDollarAndDollarIn$outboundSchema.parse(
6530
- deploymentGetConfigDollarAndDollarIn,
6531
- ),
6323
+ DeploymentGetConfigAndIn$outboundSchema.parse(deploymentGetConfigAndIn),
6532
6324
  );
6533
6325
  }
6534
6326
 
6535
- export function deploymentGetConfigDollarAndDollarInFromJSON(
6327
+ export function deploymentGetConfigAndInFromJSON(
6536
6328
  jsonString: string,
6537
- ): SafeParseResult<DeploymentGetConfigDollarAndDollarIn, SDKValidationError> {
6329
+ ): SafeParseResult<DeploymentGetConfigAndIn, SDKValidationError> {
6538
6330
  return safeParse(
6539
6331
  jsonString,
6540
- (x) =>
6541
- DeploymentGetConfigDollarAndDollarIn$inboundSchema.parse(JSON.parse(x)),
6542
- `Failed to parse 'DeploymentGetConfigDollarAndDollarIn' from JSON`,
6332
+ (x) => DeploymentGetConfigAndIn$inboundSchema.parse(JSON.parse(x)),
6333
+ `Failed to parse 'DeploymentGetConfigAndIn' from JSON`,
6543
6334
  );
6544
6335
  }
6545
6336
 
6546
6337
  /** @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",
6338
+ export const AndIn$inboundSchema: z.ZodType<AndIn, z.ZodTypeDef, unknown> = z
6339
+ .object({
6340
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
6556
6341
  });
6557
- });
6558
6342
 
6559
6343
  /** @internal */
6560
- export type DollarAndDollarIn$Outbound = {
6561
- $in: Array<string | number | boolean>;
6344
+ export type AndIn$Outbound = {
6345
+ in: Array<string | number | boolean>;
6562
6346
  };
6563
6347
 
6564
6348
  /** @internal */
6565
- export const DollarAndDollarIn$outboundSchema: z.ZodType<
6566
- DollarAndDollarIn$Outbound,
6349
+ export const AndIn$outboundSchema: z.ZodType<
6350
+ AndIn$Outbound,
6567
6351
  z.ZodTypeDef,
6568
- DollarAndDollarIn
6352
+ AndIn
6569
6353
  > = 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
- });
6354
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
6575
6355
  });
6576
6356
 
6577
6357
  /**
6578
6358
  * @internal
6579
6359
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6580
6360
  */
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;
6361
+ export namespace AndIn$ {
6362
+ /** @deprecated use `AndIn$inboundSchema` instead. */
6363
+ export const inboundSchema = AndIn$inboundSchema;
6364
+ /** @deprecated use `AndIn$outboundSchema` instead. */
6365
+ export const outboundSchema = AndIn$outboundSchema;
6366
+ /** @deprecated use `AndIn$Outbound` instead. */
6367
+ export type Outbound = AndIn$Outbound;
6588
6368
  }
6589
6369
 
6590
- export function dollarAndDollarInToJSON(
6591
- dollarAndDollarIn: DollarAndDollarIn,
6592
- ): string {
6593
- return JSON.stringify(
6594
- DollarAndDollarIn$outboundSchema.parse(dollarAndDollarIn),
6595
- );
6370
+ export function andInToJSON(andIn: AndIn): string {
6371
+ return JSON.stringify(AndIn$outboundSchema.parse(andIn));
6596
6372
  }
6597
6373
 
6598
- export function dollarAndDollarInFromJSON(
6374
+ export function andInFromJSON(
6599
6375
  jsonString: string,
6600
- ): SafeParseResult<DollarAndDollarIn, SDKValidationError> {
6376
+ ): SafeParseResult<AndIn, SDKValidationError> {
6601
6377
  return safeParse(
6602
6378
  jsonString,
6603
- (x) => DollarAndDollarIn$inboundSchema.parse(JSON.parse(x)),
6604
- `Failed to parse 'DollarAndDollarIn' from JSON`,
6379
+ (x) => AndIn$inboundSchema.parse(JSON.parse(x)),
6380
+ `Failed to parse 'AndIn' from JSON`,
6605
6381
  );
6606
6382
  }
6607
6383
 
6608
6384
  /** @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",
6385
+ export const AndLte$inboundSchema: z.ZodType<AndLte, z.ZodTypeDef, unknown> = z
6386
+ .object({
6387
+ lte: z.number(),
6618
6388
  });
6619
- });
6620
6389
 
6621
6390
  /** @internal */
6622
- export type DollarAndDollarLte$Outbound = {
6623
- $lte: number;
6391
+ export type AndLte$Outbound = {
6392
+ lte: number;
6624
6393
  };
6625
6394
 
6626
6395
  /** @internal */
6627
- export const DollarAndDollarLte$outboundSchema: z.ZodType<
6628
- DollarAndDollarLte$Outbound,
6396
+ export const AndLte$outboundSchema: z.ZodType<
6397
+ AndLte$Outbound,
6629
6398
  z.ZodTypeDef,
6630
- DollarAndDollarLte
6399
+ AndLte
6631
6400
  > = z.object({
6632
- dollarLte: z.number(),
6633
- }).transform((v) => {
6634
- return remap$(v, {
6635
- dollarLte: "$lte",
6636
- });
6401
+ lte: z.number(),
6637
6402
  });
6638
6403
 
6639
6404
  /**
6640
6405
  * @internal
6641
6406
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6642
6407
  */
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;
6408
+ export namespace AndLte$ {
6409
+ /** @deprecated use `AndLte$inboundSchema` instead. */
6410
+ export const inboundSchema = AndLte$inboundSchema;
6411
+ /** @deprecated use `AndLte$outboundSchema` instead. */
6412
+ export const outboundSchema = AndLte$outboundSchema;
6413
+ /** @deprecated use `AndLte$Outbound` instead. */
6414
+ export type Outbound = AndLte$Outbound;
6650
6415
  }
6651
6416
 
6652
- export function dollarAndDollarLteToJSON(
6653
- dollarAndDollarLte: DollarAndDollarLte,
6654
- ): string {
6655
- return JSON.stringify(
6656
- DollarAndDollarLte$outboundSchema.parse(dollarAndDollarLte),
6657
- );
6417
+ export function andLteToJSON(andLte: AndLte): string {
6418
+ return JSON.stringify(AndLte$outboundSchema.parse(andLte));
6658
6419
  }
6659
6420
 
6660
- export function dollarAndDollarLteFromJSON(
6421
+ export function andLteFromJSON(
6661
6422
  jsonString: string,
6662
- ): SafeParseResult<DollarAndDollarLte, SDKValidationError> {
6423
+ ): SafeParseResult<AndLte, SDKValidationError> {
6663
6424
  return safeParse(
6664
6425
  jsonString,
6665
- (x) => DollarAndDollarLte$inboundSchema.parse(JSON.parse(x)),
6666
- `Failed to parse 'DollarAndDollarLte' from JSON`,
6426
+ (x) => AndLte$inboundSchema.parse(JSON.parse(x)),
6427
+ `Failed to parse 'AndLte' from JSON`,
6667
6428
  );
6668
6429
  }
6669
6430
 
6670
6431
  /** @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",
6432
+ export const AndLt$inboundSchema: z.ZodType<AndLt, z.ZodTypeDef, unknown> = z
6433
+ .object({
6434
+ lt: z.number(),
6680
6435
  });
6681
- });
6682
6436
 
6683
6437
  /** @internal */
6684
- export type DollarAndDollarLt$Outbound = {
6685
- $lt: number;
6438
+ export type AndLt$Outbound = {
6439
+ lt: number;
6686
6440
  };
6687
6441
 
6688
6442
  /** @internal */
6689
- export const DollarAndDollarLt$outboundSchema: z.ZodType<
6690
- DollarAndDollarLt$Outbound,
6443
+ export const AndLt$outboundSchema: z.ZodType<
6444
+ AndLt$Outbound,
6691
6445
  z.ZodTypeDef,
6692
- DollarAndDollarLt
6446
+ AndLt
6693
6447
  > = z.object({
6694
- dollarLt: z.number(),
6695
- }).transform((v) => {
6696
- return remap$(v, {
6697
- dollarLt: "$lt",
6698
- });
6448
+ lt: z.number(),
6699
6449
  });
6700
6450
 
6701
6451
  /**
6702
6452
  * @internal
6703
6453
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6704
6454
  */
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;
6455
+ export namespace AndLt$ {
6456
+ /** @deprecated use `AndLt$inboundSchema` instead. */
6457
+ export const inboundSchema = AndLt$inboundSchema;
6458
+ /** @deprecated use `AndLt$outboundSchema` instead. */
6459
+ export const outboundSchema = AndLt$outboundSchema;
6460
+ /** @deprecated use `AndLt$Outbound` instead. */
6461
+ export type Outbound = AndLt$Outbound;
6712
6462
  }
6713
6463
 
6714
- export function dollarAndDollarLtToJSON(
6715
- dollarAndDollarLt: DollarAndDollarLt,
6716
- ): string {
6717
- return JSON.stringify(
6718
- DollarAndDollarLt$outboundSchema.parse(dollarAndDollarLt),
6719
- );
6464
+ export function andLtToJSON(andLt: AndLt): string {
6465
+ return JSON.stringify(AndLt$outboundSchema.parse(andLt));
6720
6466
  }
6721
6467
 
6722
- export function dollarAndDollarLtFromJSON(
6468
+ export function andLtFromJSON(
6723
6469
  jsonString: string,
6724
- ): SafeParseResult<DollarAndDollarLt, SDKValidationError> {
6470
+ ): SafeParseResult<AndLt, SDKValidationError> {
6725
6471
  return safeParse(
6726
6472
  jsonString,
6727
- (x) => DollarAndDollarLt$inboundSchema.parse(JSON.parse(x)),
6728
- `Failed to parse 'DollarAndDollarLt' from JSON`,
6473
+ (x) => AndLt$inboundSchema.parse(JSON.parse(x)),
6474
+ `Failed to parse 'AndLt' from JSON`,
6729
6475
  );
6730
6476
  }
6731
6477
 
6732
6478
  /** @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",
6479
+ export const AndGte$inboundSchema: z.ZodType<AndGte, z.ZodTypeDef, unknown> = z
6480
+ .object({
6481
+ gte: z.number(),
6742
6482
  });
6743
- });
6744
6483
 
6745
6484
  /** @internal */
6746
- export type DollarAndDollarGte$Outbound = {
6747
- $gte: number;
6485
+ export type AndGte$Outbound = {
6486
+ gte: number;
6748
6487
  };
6749
6488
 
6750
6489
  /** @internal */
6751
- export const DollarAndDollarGte$outboundSchema: z.ZodType<
6752
- DollarAndDollarGte$Outbound,
6490
+ export const AndGte$outboundSchema: z.ZodType<
6491
+ AndGte$Outbound,
6753
6492
  z.ZodTypeDef,
6754
- DollarAndDollarGte
6493
+ AndGte
6755
6494
  > = z.object({
6756
- dollarGte: z.number(),
6757
- }).transform((v) => {
6758
- return remap$(v, {
6759
- dollarGte: "$gte",
6760
- });
6495
+ gte: z.number(),
6761
6496
  });
6762
6497
 
6763
6498
  /**
6764
6499
  * @internal
6765
6500
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6766
6501
  */
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;
6502
+ export namespace AndGte$ {
6503
+ /** @deprecated use `AndGte$inboundSchema` instead. */
6504
+ export const inboundSchema = AndGte$inboundSchema;
6505
+ /** @deprecated use `AndGte$outboundSchema` instead. */
6506
+ export const outboundSchema = AndGte$outboundSchema;
6507
+ /** @deprecated use `AndGte$Outbound` instead. */
6508
+ export type Outbound = AndGte$Outbound;
6774
6509
  }
6775
6510
 
6776
- export function dollarAndDollarGteToJSON(
6777
- dollarAndDollarGte: DollarAndDollarGte,
6778
- ): string {
6779
- return JSON.stringify(
6780
- DollarAndDollarGte$outboundSchema.parse(dollarAndDollarGte),
6781
- );
6511
+ export function andGteToJSON(andGte: AndGte): string {
6512
+ return JSON.stringify(AndGte$outboundSchema.parse(andGte));
6782
6513
  }
6783
6514
 
6784
- export function dollarAndDollarGteFromJSON(
6515
+ export function andGteFromJSON(
6785
6516
  jsonString: string,
6786
- ): SafeParseResult<DollarAndDollarGte, SDKValidationError> {
6517
+ ): SafeParseResult<AndGte, SDKValidationError> {
6787
6518
  return safeParse(
6788
6519
  jsonString,
6789
- (x) => DollarAndDollarGte$inboundSchema.parse(JSON.parse(x)),
6790
- `Failed to parse 'DollarAndDollarGte' from JSON`,
6520
+ (x) => AndGte$inboundSchema.parse(JSON.parse(x)),
6521
+ `Failed to parse 'AndGte' from JSON`,
6791
6522
  );
6792
6523
  }
6793
6524
 
6794
6525
  /** @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",
6526
+ export const And3$inboundSchema: z.ZodType<And3, z.ZodTypeDef, unknown> = z
6527
+ .object({
6528
+ gt: z.number(),
6804
6529
  });
6805
- });
6806
6530
 
6807
6531
  /** @internal */
6808
- export type DollarAnd3$Outbound = {
6809
- $gt: number;
6532
+ export type And3$Outbound = {
6533
+ gt: number;
6810
6534
  };
6811
6535
 
6812
6536
  /** @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",
6537
+ export const And3$outboundSchema: z.ZodType<And3$Outbound, z.ZodTypeDef, And3> =
6538
+ z.object({
6539
+ gt: z.number(),
6822
6540
  });
6823
- });
6824
6541
 
6825
6542
  /**
6826
6543
  * @internal
6827
6544
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6828
6545
  */
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;
6546
+ export namespace And3$ {
6547
+ /** @deprecated use `And3$inboundSchema` instead. */
6548
+ export const inboundSchema = And3$inboundSchema;
6549
+ /** @deprecated use `And3$outboundSchema` instead. */
6550
+ export const outboundSchema = And3$outboundSchema;
6551
+ /** @deprecated use `And3$Outbound` instead. */
6552
+ export type Outbound = And3$Outbound;
6836
6553
  }
6837
6554
 
6838
- export function dollarAnd3ToJSON(dollarAnd3: DollarAnd3): string {
6839
- return JSON.stringify(DollarAnd3$outboundSchema.parse(dollarAnd3));
6555
+ export function and3ToJSON(and3: And3): string {
6556
+ return JSON.stringify(And3$outboundSchema.parse(and3));
6840
6557
  }
6841
6558
 
6842
- export function dollarAnd3FromJSON(
6559
+ export function and3FromJSON(
6843
6560
  jsonString: string,
6844
- ): SafeParseResult<DollarAnd3, SDKValidationError> {
6561
+ ): SafeParseResult<And3, SDKValidationError> {
6845
6562
  return safeParse(
6846
6563
  jsonString,
6847
- (x) => DollarAnd3$inboundSchema.parse(JSON.parse(x)),
6848
- `Failed to parse 'DollarAnd3' from JSON`,
6564
+ (x) => And3$inboundSchema.parse(JSON.parse(x)),
6565
+ `Failed to parse 'And3' from JSON`,
6849
6566
  );
6850
6567
  }
6851
6568
 
6852
6569
  /** @internal */
6853
- export const DeploymentGetConfigDollarAndDollarNe$inboundSchema: z.ZodType<
6854
- DeploymentGetConfigDollarAndDollarNe,
6570
+ export const DeploymentGetConfigAndNe$inboundSchema: z.ZodType<
6571
+ DeploymentGetConfigAndNe,
6855
6572
  z.ZodTypeDef,
6856
6573
  unknown
6857
6574
  > = z.union([z.string(), z.number(), z.boolean()]);
6858
6575
 
6859
6576
  /** @internal */
6860
- export type DeploymentGetConfigDollarAndDollarNe$Outbound =
6861
- | string
6862
- | number
6863
- | boolean;
6577
+ export type DeploymentGetConfigAndNe$Outbound = string | number | boolean;
6864
6578
 
6865
6579
  /** @internal */
6866
- export const DeploymentGetConfigDollarAndDollarNe$outboundSchema: z.ZodType<
6867
- DeploymentGetConfigDollarAndDollarNe$Outbound,
6580
+ export const DeploymentGetConfigAndNe$outboundSchema: z.ZodType<
6581
+ DeploymentGetConfigAndNe$Outbound,
6868
6582
  z.ZodTypeDef,
6869
- DeploymentGetConfigDollarAndDollarNe
6583
+ DeploymentGetConfigAndNe
6870
6584
  > = z.union([z.string(), z.number(), z.boolean()]);
6871
6585
 
6872
6586
  /**
6873
6587
  * @internal
6874
6588
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6875
6589
  */
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;
6590
+ export namespace DeploymentGetConfigAndNe$ {
6591
+ /** @deprecated use `DeploymentGetConfigAndNe$inboundSchema` instead. */
6592
+ export const inboundSchema = DeploymentGetConfigAndNe$inboundSchema;
6593
+ /** @deprecated use `DeploymentGetConfigAndNe$outboundSchema` instead. */
6594
+ export const outboundSchema = DeploymentGetConfigAndNe$outboundSchema;
6595
+ /** @deprecated use `DeploymentGetConfigAndNe$Outbound` instead. */
6596
+ export type Outbound = DeploymentGetConfigAndNe$Outbound;
6885
6597
  }
6886
6598
 
6887
- export function deploymentGetConfigDollarAndDollarNeToJSON(
6888
- deploymentGetConfigDollarAndDollarNe: DeploymentGetConfigDollarAndDollarNe,
6599
+ export function deploymentGetConfigAndNeToJSON(
6600
+ deploymentGetConfigAndNe: DeploymentGetConfigAndNe,
6889
6601
  ): string {
6890
6602
  return JSON.stringify(
6891
- DeploymentGetConfigDollarAndDollarNe$outboundSchema.parse(
6892
- deploymentGetConfigDollarAndDollarNe,
6893
- ),
6603
+ DeploymentGetConfigAndNe$outboundSchema.parse(deploymentGetConfigAndNe),
6894
6604
  );
6895
6605
  }
6896
6606
 
6897
- export function deploymentGetConfigDollarAndDollarNeFromJSON(
6607
+ export function deploymentGetConfigAndNeFromJSON(
6898
6608
  jsonString: string,
6899
- ): SafeParseResult<DeploymentGetConfigDollarAndDollarNe, SDKValidationError> {
6609
+ ): SafeParseResult<DeploymentGetConfigAndNe, SDKValidationError> {
6900
6610
  return safeParse(
6901
6611
  jsonString,
6902
- (x) =>
6903
- DeploymentGetConfigDollarAndDollarNe$inboundSchema.parse(JSON.parse(x)),
6904
- `Failed to parse 'DeploymentGetConfigDollarAndDollarNe' from JSON`,
6612
+ (x) => DeploymentGetConfigAndNe$inboundSchema.parse(JSON.parse(x)),
6613
+ `Failed to parse 'DeploymentGetConfigAndNe' from JSON`,
6905
6614
  );
6906
6615
  }
6907
6616
 
6908
6617
  /** @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",
6618
+ export const AndNe$inboundSchema: z.ZodType<AndNe, z.ZodTypeDef, unknown> = z
6619
+ .object({
6620
+ ne: z.union([z.string(), z.number(), z.boolean()]),
6918
6621
  });
6919
- });
6920
6622
 
6921
6623
  /** @internal */
6922
- export type DollarAndDollarNe$Outbound = {
6923
- $ne: string | number | boolean;
6624
+ export type AndNe$Outbound = {
6625
+ ne: string | number | boolean;
6924
6626
  };
6925
6627
 
6926
6628
  /** @internal */
6927
- export const DollarAndDollarNe$outboundSchema: z.ZodType<
6928
- DollarAndDollarNe$Outbound,
6629
+ export const AndNe$outboundSchema: z.ZodType<
6630
+ AndNe$Outbound,
6929
6631
  z.ZodTypeDef,
6930
- DollarAndDollarNe
6632
+ AndNe
6931
6633
  > = z.object({
6932
- dollarNe: z.union([z.string(), z.number(), z.boolean()]),
6933
- }).transform((v) => {
6934
- return remap$(v, {
6935
- dollarNe: "$ne",
6936
- });
6634
+ ne: z.union([z.string(), z.number(), z.boolean()]),
6937
6635
  });
6938
6636
 
6939
6637
  /**
6940
6638
  * @internal
6941
6639
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6942
6640
  */
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;
6641
+ export namespace AndNe$ {
6642
+ /** @deprecated use `AndNe$inboundSchema` instead. */
6643
+ export const inboundSchema = AndNe$inboundSchema;
6644
+ /** @deprecated use `AndNe$outboundSchema` instead. */
6645
+ export const outboundSchema = AndNe$outboundSchema;
6646
+ /** @deprecated use `AndNe$Outbound` instead. */
6647
+ export type Outbound = AndNe$Outbound;
6950
6648
  }
6951
6649
 
6952
- export function dollarAndDollarNeToJSON(
6953
- dollarAndDollarNe: DollarAndDollarNe,
6954
- ): string {
6955
- return JSON.stringify(
6956
- DollarAndDollarNe$outboundSchema.parse(dollarAndDollarNe),
6957
- );
6650
+ export function andNeToJSON(andNe: AndNe): string {
6651
+ return JSON.stringify(AndNe$outboundSchema.parse(andNe));
6958
6652
  }
6959
6653
 
6960
- export function dollarAndDollarNeFromJSON(
6654
+ export function andNeFromJSON(
6961
6655
  jsonString: string,
6962
- ): SafeParseResult<DollarAndDollarNe, SDKValidationError> {
6656
+ ): SafeParseResult<AndNe, SDKValidationError> {
6963
6657
  return safeParse(
6964
6658
  jsonString,
6965
- (x) => DollarAndDollarNe$inboundSchema.parse(JSON.parse(x)),
6966
- `Failed to parse 'DollarAndDollarNe' from JSON`,
6659
+ (x) => AndNe$inboundSchema.parse(JSON.parse(x)),
6660
+ `Failed to parse 'AndNe' from JSON`,
6967
6661
  );
6968
6662
  }
6969
6663
 
6970
6664
  /** @internal */
6971
- export const DeploymentGetConfigDollarAndDollarEq$inboundSchema: z.ZodType<
6972
- DeploymentGetConfigDollarAndDollarEq,
6665
+ export const DeploymentGetConfigAndEq$inboundSchema: z.ZodType<
6666
+ DeploymentGetConfigAndEq,
6973
6667
  z.ZodTypeDef,
6974
6668
  unknown
6975
6669
  > = z.union([z.string(), z.number(), z.boolean()]);
6976
6670
 
6977
6671
  /** @internal */
6978
- export type DeploymentGetConfigDollarAndDollarEq$Outbound =
6979
- | string
6980
- | number
6981
- | boolean;
6672
+ export type DeploymentGetConfigAndEq$Outbound = string | number | boolean;
6982
6673
 
6983
6674
  /** @internal */
6984
- export const DeploymentGetConfigDollarAndDollarEq$outboundSchema: z.ZodType<
6985
- DeploymentGetConfigDollarAndDollarEq$Outbound,
6675
+ export const DeploymentGetConfigAndEq$outboundSchema: z.ZodType<
6676
+ DeploymentGetConfigAndEq$Outbound,
6986
6677
  z.ZodTypeDef,
6987
- DeploymentGetConfigDollarAndDollarEq
6678
+ DeploymentGetConfigAndEq
6988
6679
  > = z.union([z.string(), z.number(), z.boolean()]);
6989
6680
 
6990
6681
  /**
6991
6682
  * @internal
6992
6683
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6993
6684
  */
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;
6685
+ export namespace DeploymentGetConfigAndEq$ {
6686
+ /** @deprecated use `DeploymentGetConfigAndEq$inboundSchema` instead. */
6687
+ export const inboundSchema = DeploymentGetConfigAndEq$inboundSchema;
6688
+ /** @deprecated use `DeploymentGetConfigAndEq$outboundSchema` instead. */
6689
+ export const outboundSchema = DeploymentGetConfigAndEq$outboundSchema;
6690
+ /** @deprecated use `DeploymentGetConfigAndEq$Outbound` instead. */
6691
+ export type Outbound = DeploymentGetConfigAndEq$Outbound;
7003
6692
  }
7004
6693
 
7005
- export function deploymentGetConfigDollarAndDollarEqToJSON(
7006
- deploymentGetConfigDollarAndDollarEq: DeploymentGetConfigDollarAndDollarEq,
6694
+ export function deploymentGetConfigAndEqToJSON(
6695
+ deploymentGetConfigAndEq: DeploymentGetConfigAndEq,
7007
6696
  ): string {
7008
6697
  return JSON.stringify(
7009
- DeploymentGetConfigDollarAndDollarEq$outboundSchema.parse(
7010
- deploymentGetConfigDollarAndDollarEq,
7011
- ),
6698
+ DeploymentGetConfigAndEq$outboundSchema.parse(deploymentGetConfigAndEq),
7012
6699
  );
7013
6700
  }
7014
6701
 
7015
- export function deploymentGetConfigDollarAndDollarEqFromJSON(
6702
+ export function deploymentGetConfigAndEqFromJSON(
7016
6703
  jsonString: string,
7017
- ): SafeParseResult<DeploymentGetConfigDollarAndDollarEq, SDKValidationError> {
6704
+ ): SafeParseResult<DeploymentGetConfigAndEq, SDKValidationError> {
7018
6705
  return safeParse(
7019
6706
  jsonString,
7020
- (x) =>
7021
- DeploymentGetConfigDollarAndDollarEq$inboundSchema.parse(JSON.parse(x)),
7022
- `Failed to parse 'DeploymentGetConfigDollarAndDollarEq' from JSON`,
6707
+ (x) => DeploymentGetConfigAndEq$inboundSchema.parse(JSON.parse(x)),
6708
+ `Failed to parse 'DeploymentGetConfigAndEq' from JSON`,
7023
6709
  );
7024
6710
  }
7025
6711
 
7026
6712
  /** @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",
6713
+ export const AndEq$inboundSchema: z.ZodType<AndEq, z.ZodTypeDef, unknown> = z
6714
+ .object({
6715
+ eq: z.union([z.string(), z.number(), z.boolean()]),
7036
6716
  });
7037
- });
7038
6717
 
7039
6718
  /** @internal */
7040
- export type DollarAndDollarEq$Outbound = {
7041
- $eq: string | number | boolean;
6719
+ export type AndEq$Outbound = {
6720
+ eq: string | number | boolean;
7042
6721
  };
7043
6722
 
7044
6723
  /** @internal */
7045
- export const DollarAndDollarEq$outboundSchema: z.ZodType<
7046
- DollarAndDollarEq$Outbound,
6724
+ export const AndEq$outboundSchema: z.ZodType<
6725
+ AndEq$Outbound,
7047
6726
  z.ZodTypeDef,
7048
- DollarAndDollarEq
6727
+ AndEq
7049
6728
  > = z.object({
7050
- dollarEq: z.union([z.string(), z.number(), z.boolean()]),
7051
- }).transform((v) => {
7052
- return remap$(v, {
7053
- dollarEq: "$eq",
7054
- });
6729
+ eq: z.union([z.string(), z.number(), z.boolean()]),
7055
6730
  });
7056
6731
 
7057
6732
  /**
7058
6733
  * @internal
7059
6734
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7060
6735
  */
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;
6736
+ export namespace AndEq$ {
6737
+ /** @deprecated use `AndEq$inboundSchema` instead. */
6738
+ export const inboundSchema = AndEq$inboundSchema;
6739
+ /** @deprecated use `AndEq$outboundSchema` instead. */
6740
+ export const outboundSchema = AndEq$outboundSchema;
6741
+ /** @deprecated use `AndEq$Outbound` instead. */
6742
+ export type Outbound = AndEq$Outbound;
7068
6743
  }
7069
6744
 
7070
- export function dollarAndDollarEqToJSON(
7071
- dollarAndDollarEq: DollarAndDollarEq,
7072
- ): string {
7073
- return JSON.stringify(
7074
- DollarAndDollarEq$outboundSchema.parse(dollarAndDollarEq),
7075
- );
6745
+ export function andEqToJSON(andEq: AndEq): string {
6746
+ return JSON.stringify(AndEq$outboundSchema.parse(andEq));
7076
6747
  }
7077
6748
 
7078
- export function dollarAndDollarEqFromJSON(
6749
+ export function andEqFromJSON(
7079
6750
  jsonString: string,
7080
- ): SafeParseResult<DollarAndDollarEq, SDKValidationError> {
6751
+ ): SafeParseResult<AndEq, SDKValidationError> {
7081
6752
  return safeParse(
7082
6753
  jsonString,
7083
- (x) => DollarAndDollarEq$inboundSchema.parse(JSON.parse(x)),
7084
- `Failed to parse 'DollarAndDollarEq' from JSON`,
6754
+ (x) => AndEq$inboundSchema.parse(JSON.parse(x)),
6755
+ `Failed to parse 'AndEq' from JSON`,
7085
6756
  );
7086
6757
  }
7087
6758
 
7088
6759
  /** @internal */
7089
- export const KnowledgeFilterDollarAnd$inboundSchema: z.ZodType<
7090
- KnowledgeFilterDollarAnd,
6760
+ export const KnowledgeFilterAnd$inboundSchema: z.ZodType<
6761
+ KnowledgeFilterAnd,
7091
6762
  z.ZodTypeDef,
7092
6763
  unknown
7093
6764
  > = 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),
6765
+ z.lazy(() => AndEq$inboundSchema),
6766
+ z.lazy(() => AndNe$inboundSchema),
6767
+ z.lazy(() => And3$inboundSchema),
6768
+ z.lazy(() => AndGte$inboundSchema),
6769
+ z.lazy(() => AndLt$inboundSchema),
6770
+ z.lazy(() => AndLte$inboundSchema),
6771
+ z.lazy(() => AndIn$inboundSchema),
6772
+ z.lazy(() => AndNin$inboundSchema),
6773
+ z.lazy(() => AndExists$inboundSchema),
7103
6774
  ]);
7104
6775
 
7105
6776
  /** @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;
6777
+ export type KnowledgeFilterAnd$Outbound =
6778
+ | AndEq$Outbound
6779
+ | AndNe$Outbound
6780
+ | And3$Outbound
6781
+ | AndGte$Outbound
6782
+ | AndLt$Outbound
6783
+ | AndLte$Outbound
6784
+ | AndIn$Outbound
6785
+ | AndNin$Outbound
6786
+ | AndExists$Outbound;
7116
6787
 
7117
6788
  /** @internal */
7118
- export const KnowledgeFilterDollarAnd$outboundSchema: z.ZodType<
7119
- KnowledgeFilterDollarAnd$Outbound,
6789
+ export const KnowledgeFilterAnd$outboundSchema: z.ZodType<
6790
+ KnowledgeFilterAnd$Outbound,
7120
6791
  z.ZodTypeDef,
7121
- KnowledgeFilterDollarAnd
6792
+ KnowledgeFilterAnd
7122
6793
  > = 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),
6794
+ z.lazy(() => AndEq$outboundSchema),
6795
+ z.lazy(() => AndNe$outboundSchema),
6796
+ z.lazy(() => And3$outboundSchema),
6797
+ z.lazy(() => AndGte$outboundSchema),
6798
+ z.lazy(() => AndLt$outboundSchema),
6799
+ z.lazy(() => AndLte$outboundSchema),
6800
+ z.lazy(() => AndIn$outboundSchema),
6801
+ z.lazy(() => AndNin$outboundSchema),
6802
+ z.lazy(() => AndExists$outboundSchema),
7132
6803
  ]);
7133
6804
 
7134
6805
  /**
7135
6806
  * @internal
7136
6807
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7137
6808
  */
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;
6809
+ export namespace KnowledgeFilterAnd$ {
6810
+ /** @deprecated use `KnowledgeFilterAnd$inboundSchema` instead. */
6811
+ export const inboundSchema = KnowledgeFilterAnd$inboundSchema;
6812
+ /** @deprecated use `KnowledgeFilterAnd$outboundSchema` instead. */
6813
+ export const outboundSchema = KnowledgeFilterAnd$outboundSchema;
6814
+ /** @deprecated use `KnowledgeFilterAnd$Outbound` instead. */
6815
+ export type Outbound = KnowledgeFilterAnd$Outbound;
7145
6816
  }
7146
6817
 
7147
- export function knowledgeFilterDollarAndToJSON(
7148
- knowledgeFilterDollarAnd: KnowledgeFilterDollarAnd,
6818
+ export function knowledgeFilterAndToJSON(
6819
+ knowledgeFilterAnd: KnowledgeFilterAnd,
7149
6820
  ): string {
7150
6821
  return JSON.stringify(
7151
- KnowledgeFilterDollarAnd$outboundSchema.parse(knowledgeFilterDollarAnd),
6822
+ KnowledgeFilterAnd$outboundSchema.parse(knowledgeFilterAnd),
7152
6823
  );
7153
6824
  }
7154
6825
 
7155
- export function knowledgeFilterDollarAndFromJSON(
6826
+ export function knowledgeFilterAndFromJSON(
7156
6827
  jsonString: string,
7157
- ): SafeParseResult<KnowledgeFilterDollarAnd, SDKValidationError> {
6828
+ ): SafeParseResult<KnowledgeFilterAnd, SDKValidationError> {
7158
6829
  return safeParse(
7159
6830
  jsonString,
7160
- (x) => KnowledgeFilterDollarAnd$inboundSchema.parse(JSON.parse(x)),
7161
- `Failed to parse 'KnowledgeFilterDollarAnd' from JSON`,
6831
+ (x) => KnowledgeFilterAnd$inboundSchema.parse(JSON.parse(x)),
6832
+ `Failed to parse 'KnowledgeFilterAnd' from JSON`,
7162
6833
  );
7163
6834
  }
7164
6835
 
7165
6836
  /** @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",
6837
+ export const And$inboundSchema: z.ZodType<And, z.ZodTypeDef, unknown> = z
6838
+ .object({
6839
+ and: z.array(
6840
+ z.record(z.union([
6841
+ z.lazy(() => AndEq$inboundSchema),
6842
+ z.lazy(() =>
6843
+ AndNe$inboundSchema
6844
+ ),
6845
+ z.lazy(() => And3$inboundSchema),
6846
+ z.lazy(() => AndGte$inboundSchema),
6847
+ z.lazy(() => AndLt$inboundSchema),
6848
+ z.lazy(() => AndLte$inboundSchema),
6849
+ z.lazy(() => AndIn$inboundSchema),
6850
+ z.lazy(() => AndNin$inboundSchema),
6851
+ z.lazy(() => AndExists$inboundSchema),
6852
+ ])),
6853
+ ),
7189
6854
  });
7190
- });
7191
6855
 
7192
6856
  /** @internal */
7193
- export type DollarAnd$Outbound = {
7194
- $and: Array<
6857
+ export type And$Outbound = {
6858
+ and: Array<
7195
6859
  {
7196
6860
  [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;
6861
+ | AndEq$Outbound
6862
+ | AndNe$Outbound
6863
+ | And3$Outbound
6864
+ | AndGte$Outbound
6865
+ | AndLt$Outbound
6866
+ | AndLte$Outbound
6867
+ | AndIn$Outbound
6868
+ | AndNin$Outbound
6869
+ | AndExists$Outbound;
7206
6870
  }
7207
6871
  >;
7208
6872
  };
7209
6873
 
7210
6874
  /** @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",
6875
+ export const And$outboundSchema: z.ZodType<And$Outbound, z.ZodTypeDef, And> = z
6876
+ .object({
6877
+ and: z.array(
6878
+ z.record(z.union([
6879
+ z.lazy(() => AndEq$outboundSchema),
6880
+ z.lazy(() =>
6881
+ AndNe$outboundSchema
6882
+ ),
6883
+ z.lazy(() => And3$outboundSchema),
6884
+ z.lazy(() => AndGte$outboundSchema),
6885
+ z.lazy(() => AndLt$outboundSchema),
6886
+ z.lazy(() => AndLte$outboundSchema),
6887
+ z.lazy(() => AndIn$outboundSchema),
6888
+ z.lazy(() => AndNin$outboundSchema),
6889
+ z.lazy(() => AndExists$outboundSchema),
6890
+ ])),
6891
+ ),
7234
6892
  });
7235
- });
7236
6893
 
7237
6894
  /**
7238
6895
  * @internal
7239
6896
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7240
6897
  */
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;
6898
+ export namespace And$ {
6899
+ /** @deprecated use `And$inboundSchema` instead. */
6900
+ export const inboundSchema = And$inboundSchema;
6901
+ /** @deprecated use `And$outboundSchema` instead. */
6902
+ export const outboundSchema = And$outboundSchema;
6903
+ /** @deprecated use `And$Outbound` instead. */
6904
+ export type Outbound = And$Outbound;
7248
6905
  }
7249
6906
 
7250
- export function dollarAndToJSON(dollarAnd: DollarAnd): string {
7251
- return JSON.stringify(DollarAnd$outboundSchema.parse(dollarAnd));
6907
+ export function andToJSON(and: And): string {
6908
+ return JSON.stringify(And$outboundSchema.parse(and));
7252
6909
  }
7253
6910
 
7254
- export function dollarAndFromJSON(
6911
+ export function andFromJSON(
7255
6912
  jsonString: string,
7256
- ): SafeParseResult<DollarAnd, SDKValidationError> {
6913
+ ): SafeParseResult<And, SDKValidationError> {
7257
6914
  return safeParse(
7258
6915
  jsonString,
7259
- (x) => DollarAnd$inboundSchema.parse(JSON.parse(x)),
7260
- `Failed to parse 'DollarAnd' from JSON`,
6916
+ (x) => And$inboundSchema.parse(JSON.parse(x)),
6917
+ `Failed to parse 'And' from JSON`,
7261
6918
  );
7262
6919
  }
7263
6920
 
7264
6921
  /** @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",
6922
+ export const Exists$inboundSchema: z.ZodType<Exists, z.ZodTypeDef, unknown> = z
6923
+ .object({
6924
+ exists: z.boolean(),
7274
6925
  });
7275
- });
7276
6926
 
7277
6927
  /** @internal */
7278
- export type DollarExists$Outbound = {
7279
- $exists: boolean;
6928
+ export type Exists$Outbound = {
6929
+ exists: boolean;
7280
6930
  };
7281
6931
 
7282
6932
  /** @internal */
7283
- export const DollarExists$outboundSchema: z.ZodType<
7284
- DollarExists$Outbound,
6933
+ export const Exists$outboundSchema: z.ZodType<
6934
+ Exists$Outbound,
7285
6935
  z.ZodTypeDef,
7286
- DollarExists
6936
+ Exists
7287
6937
  > = z.object({
7288
- dollarExists: z.boolean(),
7289
- }).transform((v) => {
7290
- return remap$(v, {
7291
- dollarExists: "$exists",
7292
- });
6938
+ exists: z.boolean(),
7293
6939
  });
7294
6940
 
7295
6941
  /**
7296
6942
  * @internal
7297
6943
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7298
6944
  */
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;
6945
+ export namespace Exists$ {
6946
+ /** @deprecated use `Exists$inboundSchema` instead. */
6947
+ export const inboundSchema = Exists$inboundSchema;
6948
+ /** @deprecated use `Exists$outboundSchema` instead. */
6949
+ export const outboundSchema = Exists$outboundSchema;
6950
+ /** @deprecated use `Exists$Outbound` instead. */
6951
+ export type Outbound = Exists$Outbound;
7306
6952
  }
7307
6953
 
7308
- export function dollarExistsToJSON(dollarExists: DollarExists): string {
7309
- return JSON.stringify(DollarExists$outboundSchema.parse(dollarExists));
6954
+ export function existsToJSON(exists: Exists): string {
6955
+ return JSON.stringify(Exists$outboundSchema.parse(exists));
7310
6956
  }
7311
6957
 
7312
- export function dollarExistsFromJSON(
6958
+ export function existsFromJSON(
7313
6959
  jsonString: string,
7314
- ): SafeParseResult<DollarExists, SDKValidationError> {
6960
+ ): SafeParseResult<Exists, SDKValidationError> {
7315
6961
  return safeParse(
7316
6962
  jsonString,
7317
- (x) => DollarExists$inboundSchema.parse(JSON.parse(x)),
7318
- `Failed to parse 'DollarExists' from JSON`,
6963
+ (x) => Exists$inboundSchema.parse(JSON.parse(x)),
6964
+ `Failed to parse 'Exists' from JSON`,
7319
6965
  );
7320
6966
  }
7321
6967
 
7322
6968
  /** @internal */
7323
- export const OneDollarNin$inboundSchema: z.ZodType<
7324
- OneDollarNin,
7325
- z.ZodTypeDef,
7326
- unknown
7327
- > = z.union([z.string(), z.number(), z.boolean()]);
6969
+ export const OneNin$inboundSchema: z.ZodType<OneNin, z.ZodTypeDef, unknown> = z
6970
+ .union([z.string(), z.number(), z.boolean()]);
7328
6971
 
7329
6972
  /** @internal */
7330
- export type OneDollarNin$Outbound = string | number | boolean;
6973
+ export type OneNin$Outbound = string | number | boolean;
7331
6974
 
7332
6975
  /** @internal */
7333
- export const OneDollarNin$outboundSchema: z.ZodType<
7334
- OneDollarNin$Outbound,
6976
+ export const OneNin$outboundSchema: z.ZodType<
6977
+ OneNin$Outbound,
7335
6978
  z.ZodTypeDef,
7336
- OneDollarNin
6979
+ OneNin
7337
6980
  > = z.union([z.string(), z.number(), z.boolean()]);
7338
6981
 
7339
6982
  /**
7340
6983
  * @internal
7341
6984
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7342
6985
  */
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;
6986
+ export namespace OneNin$ {
6987
+ /** @deprecated use `OneNin$inboundSchema` instead. */
6988
+ export const inboundSchema = OneNin$inboundSchema;
6989
+ /** @deprecated use `OneNin$outboundSchema` instead. */
6990
+ export const outboundSchema = OneNin$outboundSchema;
6991
+ /** @deprecated use `OneNin$Outbound` instead. */
6992
+ export type Outbound = OneNin$Outbound;
7350
6993
  }
7351
6994
 
7352
- export function oneDollarNinToJSON(oneDollarNin: OneDollarNin): string {
7353
- return JSON.stringify(OneDollarNin$outboundSchema.parse(oneDollarNin));
6995
+ export function oneNinToJSON(oneNin: OneNin): string {
6996
+ return JSON.stringify(OneNin$outboundSchema.parse(oneNin));
7354
6997
  }
7355
6998
 
7356
- export function oneDollarNinFromJSON(
6999
+ export function oneNinFromJSON(
7357
7000
  jsonString: string,
7358
- ): SafeParseResult<OneDollarNin, SDKValidationError> {
7001
+ ): SafeParseResult<OneNin, SDKValidationError> {
7359
7002
  return safeParse(
7360
7003
  jsonString,
7361
- (x) => OneDollarNin$inboundSchema.parse(JSON.parse(x)),
7362
- `Failed to parse 'OneDollarNin' from JSON`,
7004
+ (x) => OneNin$inboundSchema.parse(JSON.parse(x)),
7005
+ `Failed to parse 'OneNin' from JSON`,
7363
7006
  );
7364
7007
  }
7365
7008
 
7366
7009
  /** @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",
7010
+ export const Nin$inboundSchema: z.ZodType<Nin, z.ZodTypeDef, unknown> = z
7011
+ .object({
7012
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
7376
7013
  });
7377
- });
7378
7014
 
7379
7015
  /** @internal */
7380
- export type DollarNin$Outbound = {
7381
- $nin: Array<string | number | boolean>;
7016
+ export type Nin$Outbound = {
7017
+ nin: Array<string | number | boolean>;
7382
7018
  };
7383
7019
 
7384
7020
  /** @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",
7021
+ export const Nin$outboundSchema: z.ZodType<Nin$Outbound, z.ZodTypeDef, Nin> = z
7022
+ .object({
7023
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
7394
7024
  });
7395
- });
7396
7025
 
7397
7026
  /**
7398
7027
  * @internal
7399
7028
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7400
7029
  */
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;
7030
+ export namespace Nin$ {
7031
+ /** @deprecated use `Nin$inboundSchema` instead. */
7032
+ export const inboundSchema = Nin$inboundSchema;
7033
+ /** @deprecated use `Nin$outboundSchema` instead. */
7034
+ export const outboundSchema = Nin$outboundSchema;
7035
+ /** @deprecated use `Nin$Outbound` instead. */
7036
+ export type Outbound = Nin$Outbound;
7408
7037
  }
7409
7038
 
7410
- export function dollarNinToJSON(dollarNin: DollarNin): string {
7411
- return JSON.stringify(DollarNin$outboundSchema.parse(dollarNin));
7039
+ export function ninToJSON(nin: Nin): string {
7040
+ return JSON.stringify(Nin$outboundSchema.parse(nin));
7412
7041
  }
7413
7042
 
7414
- export function dollarNinFromJSON(
7043
+ export function ninFromJSON(
7415
7044
  jsonString: string,
7416
- ): SafeParseResult<DollarNin, SDKValidationError> {
7045
+ ): SafeParseResult<Nin, SDKValidationError> {
7417
7046
  return safeParse(
7418
7047
  jsonString,
7419
- (x) => DollarNin$inboundSchema.parse(JSON.parse(x)),
7420
- `Failed to parse 'DollarNin' from JSON`,
7048
+ (x) => Nin$inboundSchema.parse(JSON.parse(x)),
7049
+ `Failed to parse 'Nin' from JSON`,
7421
7050
  );
7422
7051
  }
7423
7052
 
7424
7053
  /** @internal */
7425
- export const OneDollarIn$inboundSchema: z.ZodType<
7426
- OneDollarIn,
7427
- z.ZodTypeDef,
7428
- unknown
7429
- > = z.union([z.string(), z.number(), z.boolean()]);
7054
+ export const OneIn$inboundSchema: z.ZodType<OneIn, z.ZodTypeDef, unknown> = z
7055
+ .union([z.string(), z.number(), z.boolean()]);
7430
7056
 
7431
7057
  /** @internal */
7432
- export type OneDollarIn$Outbound = string | number | boolean;
7058
+ export type OneIn$Outbound = string | number | boolean;
7433
7059
 
7434
7060
  /** @internal */
7435
- export const OneDollarIn$outboundSchema: z.ZodType<
7436
- OneDollarIn$Outbound,
7061
+ export const OneIn$outboundSchema: z.ZodType<
7062
+ OneIn$Outbound,
7437
7063
  z.ZodTypeDef,
7438
- OneDollarIn
7064
+ OneIn
7439
7065
  > = z.union([z.string(), z.number(), z.boolean()]);
7440
7066
 
7441
7067
  /**
7442
7068
  * @internal
7443
7069
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7444
7070
  */
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;
7071
+ export namespace OneIn$ {
7072
+ /** @deprecated use `OneIn$inboundSchema` instead. */
7073
+ export const inboundSchema = OneIn$inboundSchema;
7074
+ /** @deprecated use `OneIn$outboundSchema` instead. */
7075
+ export const outboundSchema = OneIn$outboundSchema;
7076
+ /** @deprecated use `OneIn$Outbound` instead. */
7077
+ export type Outbound = OneIn$Outbound;
7452
7078
  }
7453
7079
 
7454
- export function oneDollarInToJSON(oneDollarIn: OneDollarIn): string {
7455
- return JSON.stringify(OneDollarIn$outboundSchema.parse(oneDollarIn));
7080
+ export function oneInToJSON(oneIn: OneIn): string {
7081
+ return JSON.stringify(OneIn$outboundSchema.parse(oneIn));
7456
7082
  }
7457
7083
 
7458
- export function oneDollarInFromJSON(
7084
+ export function oneInFromJSON(
7459
7085
  jsonString: string,
7460
- ): SafeParseResult<OneDollarIn, SDKValidationError> {
7086
+ ): SafeParseResult<OneIn, SDKValidationError> {
7461
7087
  return safeParse(
7462
7088
  jsonString,
7463
- (x) => OneDollarIn$inboundSchema.parse(JSON.parse(x)),
7464
- `Failed to parse 'OneDollarIn' from JSON`,
7089
+ (x) => OneIn$inboundSchema.parse(JSON.parse(x)),
7090
+ `Failed to parse 'OneIn' from JSON`,
7465
7091
  );
7466
7092
  }
7467
7093
 
7468
7094
  /** @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
- });
7095
+ export const In$inboundSchema: z.ZodType<In, z.ZodTypeDef, unknown> = z.object({
7096
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
7479
7097
  });
7480
7098
 
7481
7099
  /** @internal */
7482
- export type DollarIn$Outbound = {
7483
- $in: Array<string | number | boolean>;
7100
+ export type In$Outbound = {
7101
+ in: Array<string | number | boolean>;
7484
7102
  };
7485
7103
 
7486
7104
  /** @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",
7105
+ export const In$outboundSchema: z.ZodType<In$Outbound, z.ZodTypeDef, In> = z
7106
+ .object({
7107
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
7496
7108
  });
7497
- });
7498
7109
 
7499
7110
  /**
7500
7111
  * @internal
7501
7112
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7502
7113
  */
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;
7114
+ export namespace In$ {
7115
+ /** @deprecated use `In$inboundSchema` instead. */
7116
+ export const inboundSchema = In$inboundSchema;
7117
+ /** @deprecated use `In$outboundSchema` instead. */
7118
+ export const outboundSchema = In$outboundSchema;
7119
+ /** @deprecated use `In$Outbound` instead. */
7120
+ export type Outbound = In$Outbound;
7510
7121
  }
7511
7122
 
7512
- export function dollarInToJSON(dollarIn: DollarIn): string {
7513
- return JSON.stringify(DollarIn$outboundSchema.parse(dollarIn));
7123
+ export function inToJSON(value: In): string {
7124
+ return JSON.stringify(In$outboundSchema.parse(value));
7514
7125
  }
7515
7126
 
7516
- export function dollarInFromJSON(
7127
+ export function inFromJSON(
7517
7128
  jsonString: string,
7518
- ): SafeParseResult<DollarIn, SDKValidationError> {
7129
+ ): SafeParseResult<In, SDKValidationError> {
7519
7130
  return safeParse(
7520
7131
  jsonString,
7521
- (x) => DollarIn$inboundSchema.parse(JSON.parse(x)),
7522
- `Failed to parse 'DollarIn' from JSON`,
7132
+ (x) => In$inboundSchema.parse(JSON.parse(x)),
7133
+ `Failed to parse 'In' from JSON`,
7523
7134
  );
7524
7135
  }
7525
7136
 
7526
7137
  /** @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",
7138
+ export const Lte$inboundSchema: z.ZodType<Lte, z.ZodTypeDef, unknown> = z
7139
+ .object({
7140
+ lte: z.number(),
7536
7141
  });
7537
- });
7538
7142
 
7539
7143
  /** @internal */
7540
- export type DollarLte$Outbound = {
7541
- $lte: number;
7144
+ export type Lte$Outbound = {
7145
+ lte: number;
7542
7146
  };
7543
7147
 
7544
7148
  /** @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",
7149
+ export const Lte$outboundSchema: z.ZodType<Lte$Outbound, z.ZodTypeDef, Lte> = z
7150
+ .object({
7151
+ lte: z.number(),
7554
7152
  });
7555
- });
7556
7153
 
7557
7154
  /**
7558
7155
  * @internal
7559
7156
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7560
7157
  */
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;
7158
+ export namespace Lte$ {
7159
+ /** @deprecated use `Lte$inboundSchema` instead. */
7160
+ export const inboundSchema = Lte$inboundSchema;
7161
+ /** @deprecated use `Lte$outboundSchema` instead. */
7162
+ export const outboundSchema = Lte$outboundSchema;
7163
+ /** @deprecated use `Lte$Outbound` instead. */
7164
+ export type Outbound = Lte$Outbound;
7568
7165
  }
7569
7166
 
7570
- export function dollarLteToJSON(dollarLte: DollarLte): string {
7571
- return JSON.stringify(DollarLte$outboundSchema.parse(dollarLte));
7167
+ export function lteToJSON(lte: Lte): string {
7168
+ return JSON.stringify(Lte$outboundSchema.parse(lte));
7572
7169
  }
7573
7170
 
7574
- export function dollarLteFromJSON(
7171
+ export function lteFromJSON(
7575
7172
  jsonString: string,
7576
- ): SafeParseResult<DollarLte, SDKValidationError> {
7173
+ ): SafeParseResult<Lte, SDKValidationError> {
7577
7174
  return safeParse(
7578
7175
  jsonString,
7579
- (x) => DollarLte$inboundSchema.parse(JSON.parse(x)),
7580
- `Failed to parse 'DollarLte' from JSON`,
7176
+ (x) => Lte$inboundSchema.parse(JSON.parse(x)),
7177
+ `Failed to parse 'Lte' from JSON`,
7581
7178
  );
7582
7179
  }
7583
7180
 
7584
7181
  /** @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
- });
7182
+ export const Lt$inboundSchema: z.ZodType<Lt, z.ZodTypeDef, unknown> = z.object({
7183
+ lt: z.number(),
7595
7184
  });
7596
7185
 
7597
7186
  /** @internal */
7598
- export type DollarLt$Outbound = {
7599
- $lt: number;
7187
+ export type Lt$Outbound = {
7188
+ lt: number;
7600
7189
  };
7601
7190
 
7602
7191
  /** @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",
7192
+ export const Lt$outboundSchema: z.ZodType<Lt$Outbound, z.ZodTypeDef, Lt> = z
7193
+ .object({
7194
+ lt: z.number(),
7612
7195
  });
7613
- });
7614
7196
 
7615
7197
  /**
7616
7198
  * @internal
7617
7199
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7618
7200
  */
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;
7201
+ export namespace Lt$ {
7202
+ /** @deprecated use `Lt$inboundSchema` instead. */
7203
+ export const inboundSchema = Lt$inboundSchema;
7204
+ /** @deprecated use `Lt$outboundSchema` instead. */
7205
+ export const outboundSchema = Lt$outboundSchema;
7206
+ /** @deprecated use `Lt$Outbound` instead. */
7207
+ export type Outbound = Lt$Outbound;
7626
7208
  }
7627
7209
 
7628
- export function dollarLtToJSON(dollarLt: DollarLt): string {
7629
- return JSON.stringify(DollarLt$outboundSchema.parse(dollarLt));
7210
+ export function ltToJSON(lt: Lt): string {
7211
+ return JSON.stringify(Lt$outboundSchema.parse(lt));
7630
7212
  }
7631
7213
 
7632
- export function dollarLtFromJSON(
7214
+ export function ltFromJSON(
7633
7215
  jsonString: string,
7634
- ): SafeParseResult<DollarLt, SDKValidationError> {
7216
+ ): SafeParseResult<Lt, SDKValidationError> {
7635
7217
  return safeParse(
7636
7218
  jsonString,
7637
- (x) => DollarLt$inboundSchema.parse(JSON.parse(x)),
7638
- `Failed to parse 'DollarLt' from JSON`,
7219
+ (x) => Lt$inboundSchema.parse(JSON.parse(x)),
7220
+ `Failed to parse 'Lt' from JSON`,
7639
7221
  );
7640
7222
  }
7641
7223
 
7642
7224
  /** @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",
7225
+ export const Gte$inboundSchema: z.ZodType<Gte, z.ZodTypeDef, unknown> = z
7226
+ .object({
7227
+ gte: z.number(),
7652
7228
  });
7653
- });
7654
7229
 
7655
7230
  /** @internal */
7656
- export type DollarGte$Outbound = {
7657
- $gte: number;
7231
+ export type Gte$Outbound = {
7232
+ gte: number;
7658
7233
  };
7659
7234
 
7660
7235
  /** @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",
7236
+ export const Gte$outboundSchema: z.ZodType<Gte$Outbound, z.ZodTypeDef, Gte> = z
7237
+ .object({
7238
+ gte: z.number(),
7670
7239
  });
7671
- });
7672
7240
 
7673
7241
  /**
7674
7242
  * @internal
7675
7243
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7676
7244
  */
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;
7245
+ export namespace Gte$ {
7246
+ /** @deprecated use `Gte$inboundSchema` instead. */
7247
+ export const inboundSchema = Gte$inboundSchema;
7248
+ /** @deprecated use `Gte$outboundSchema` instead. */
7249
+ export const outboundSchema = Gte$outboundSchema;
7250
+ /** @deprecated use `Gte$Outbound` instead. */
7251
+ export type Outbound = Gte$Outbound;
7684
7252
  }
7685
7253
 
7686
- export function dollarGteToJSON(dollarGte: DollarGte): string {
7687
- return JSON.stringify(DollarGte$outboundSchema.parse(dollarGte));
7254
+ export function gteToJSON(gte: Gte): string {
7255
+ return JSON.stringify(Gte$outboundSchema.parse(gte));
7688
7256
  }
7689
7257
 
7690
- export function dollarGteFromJSON(
7258
+ export function gteFromJSON(
7691
7259
  jsonString: string,
7692
- ): SafeParseResult<DollarGte, SDKValidationError> {
7260
+ ): SafeParseResult<Gte, SDKValidationError> {
7693
7261
  return safeParse(
7694
7262
  jsonString,
7695
- (x) => DollarGte$inboundSchema.parse(JSON.parse(x)),
7696
- `Failed to parse 'DollarGte' from JSON`,
7263
+ (x) => Gte$inboundSchema.parse(JSON.parse(x)),
7264
+ `Failed to parse 'Gte' from JSON`,
7697
7265
  );
7698
7266
  }
7699
7267
 
7700
7268
  /** @internal */
7701
7269
  export const One3$inboundSchema: z.ZodType<One3, z.ZodTypeDef, unknown> = z
7702
7270
  .object({
7703
- $gt: z.number(),
7704
- }).transform((v) => {
7705
- return remap$(v, {
7706
- "$gt": "dollarGt",
7707
- });
7271
+ gt: z.number(),
7708
7272
  });
7709
7273
 
7710
7274
  /** @internal */
7711
7275
  export type One3$Outbound = {
7712
- $gt: number;
7276
+ gt: number;
7713
7277
  };
7714
7278
 
7715
7279
  /** @internal */
7716
7280
  export const One3$outboundSchema: z.ZodType<One3$Outbound, z.ZodTypeDef, One3> =
7717
7281
  z.object({
7718
- dollarGt: z.number(),
7719
- }).transform((v) => {
7720
- return remap$(v, {
7721
- dollarGt: "$gt",
7722
- });
7282
+ gt: z.number(),
7723
7283
  });
7724
7284
 
7725
7285
  /**
@@ -7750,206 +7310,170 @@ export function one3FromJSON(
7750
7310
  }
7751
7311
 
7752
7312
  /** @internal */
7753
- export const OneDollarNe$inboundSchema: z.ZodType<
7754
- OneDollarNe,
7755
- z.ZodTypeDef,
7756
- unknown
7757
- > = z.union([z.string(), z.number(), z.boolean()]);
7313
+ export const OneNe$inboundSchema: z.ZodType<OneNe, z.ZodTypeDef, unknown> = z
7314
+ .union([z.string(), z.number(), z.boolean()]);
7758
7315
 
7759
7316
  /** @internal */
7760
- export type OneDollarNe$Outbound = string | number | boolean;
7317
+ export type OneNe$Outbound = string | number | boolean;
7761
7318
 
7762
7319
  /** @internal */
7763
- export const OneDollarNe$outboundSchema: z.ZodType<
7764
- OneDollarNe$Outbound,
7320
+ export const OneNe$outboundSchema: z.ZodType<
7321
+ OneNe$Outbound,
7765
7322
  z.ZodTypeDef,
7766
- OneDollarNe
7323
+ OneNe
7767
7324
  > = z.union([z.string(), z.number(), z.boolean()]);
7768
7325
 
7769
7326
  /**
7770
7327
  * @internal
7771
7328
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7772
7329
  */
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;
7330
+ export namespace OneNe$ {
7331
+ /** @deprecated use `OneNe$inboundSchema` instead. */
7332
+ export const inboundSchema = OneNe$inboundSchema;
7333
+ /** @deprecated use `OneNe$outboundSchema` instead. */
7334
+ export const outboundSchema = OneNe$outboundSchema;
7335
+ /** @deprecated use `OneNe$Outbound` instead. */
7336
+ export type Outbound = OneNe$Outbound;
7780
7337
  }
7781
7338
 
7782
- export function oneDollarNeToJSON(oneDollarNe: OneDollarNe): string {
7783
- return JSON.stringify(OneDollarNe$outboundSchema.parse(oneDollarNe));
7339
+ export function oneNeToJSON(oneNe: OneNe): string {
7340
+ return JSON.stringify(OneNe$outboundSchema.parse(oneNe));
7784
7341
  }
7785
7342
 
7786
- export function oneDollarNeFromJSON(
7343
+ export function oneNeFromJSON(
7787
7344
  jsonString: string,
7788
- ): SafeParseResult<OneDollarNe, SDKValidationError> {
7345
+ ): SafeParseResult<OneNe, SDKValidationError> {
7789
7346
  return safeParse(
7790
7347
  jsonString,
7791
- (x) => OneDollarNe$inboundSchema.parse(JSON.parse(x)),
7792
- `Failed to parse 'OneDollarNe' from JSON`,
7348
+ (x) => OneNe$inboundSchema.parse(JSON.parse(x)),
7349
+ `Failed to parse 'OneNe' from JSON`,
7793
7350
  );
7794
7351
  }
7795
7352
 
7796
7353
  /** @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
- });
7354
+ export const Ne$inboundSchema: z.ZodType<Ne, z.ZodTypeDef, unknown> = z.object({
7355
+ ne: z.union([z.string(), z.number(), z.boolean()]),
7807
7356
  });
7808
7357
 
7809
7358
  /** @internal */
7810
- export type DollarNe$Outbound = {
7811
- $ne: string | number | boolean;
7359
+ export type Ne$Outbound = {
7360
+ ne: string | number | boolean;
7812
7361
  };
7813
7362
 
7814
7363
  /** @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",
7364
+ export const Ne$outboundSchema: z.ZodType<Ne$Outbound, z.ZodTypeDef, Ne> = z
7365
+ .object({
7366
+ ne: z.union([z.string(), z.number(), z.boolean()]),
7824
7367
  });
7825
- });
7826
7368
 
7827
7369
  /**
7828
7370
  * @internal
7829
7371
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7830
7372
  */
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;
7373
+ export namespace Ne$ {
7374
+ /** @deprecated use `Ne$inboundSchema` instead. */
7375
+ export const inboundSchema = Ne$inboundSchema;
7376
+ /** @deprecated use `Ne$outboundSchema` instead. */
7377
+ export const outboundSchema = Ne$outboundSchema;
7378
+ /** @deprecated use `Ne$Outbound` instead. */
7379
+ export type Outbound = Ne$Outbound;
7838
7380
  }
7839
7381
 
7840
- export function dollarNeToJSON(dollarNe: DollarNe): string {
7841
- return JSON.stringify(DollarNe$outboundSchema.parse(dollarNe));
7382
+ export function neToJSON(ne: Ne): string {
7383
+ return JSON.stringify(Ne$outboundSchema.parse(ne));
7842
7384
  }
7843
7385
 
7844
- export function dollarNeFromJSON(
7386
+ export function neFromJSON(
7845
7387
  jsonString: string,
7846
- ): SafeParseResult<DollarNe, SDKValidationError> {
7388
+ ): SafeParseResult<Ne, SDKValidationError> {
7847
7389
  return safeParse(
7848
7390
  jsonString,
7849
- (x) => DollarNe$inboundSchema.parse(JSON.parse(x)),
7850
- `Failed to parse 'DollarNe' from JSON`,
7391
+ (x) => Ne$inboundSchema.parse(JSON.parse(x)),
7392
+ `Failed to parse 'Ne' from JSON`,
7851
7393
  );
7852
7394
  }
7853
7395
 
7854
7396
  /** @internal */
7855
- export const OneDollarEq$inboundSchema: z.ZodType<
7856
- OneDollarEq,
7857
- z.ZodTypeDef,
7858
- unknown
7859
- > = z.union([z.string(), z.number(), z.boolean()]);
7397
+ export const OneEq$inboundSchema: z.ZodType<OneEq, z.ZodTypeDef, unknown> = z
7398
+ .union([z.string(), z.number(), z.boolean()]);
7860
7399
 
7861
7400
  /** @internal */
7862
- export type OneDollarEq$Outbound = string | number | boolean;
7401
+ export type OneEq$Outbound = string | number | boolean;
7863
7402
 
7864
7403
  /** @internal */
7865
- export const OneDollarEq$outboundSchema: z.ZodType<
7866
- OneDollarEq$Outbound,
7404
+ export const OneEq$outboundSchema: z.ZodType<
7405
+ OneEq$Outbound,
7867
7406
  z.ZodTypeDef,
7868
- OneDollarEq
7407
+ OneEq
7869
7408
  > = z.union([z.string(), z.number(), z.boolean()]);
7870
7409
 
7871
7410
  /**
7872
7411
  * @internal
7873
7412
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7874
7413
  */
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;
7414
+ export namespace OneEq$ {
7415
+ /** @deprecated use `OneEq$inboundSchema` instead. */
7416
+ export const inboundSchema = OneEq$inboundSchema;
7417
+ /** @deprecated use `OneEq$outboundSchema` instead. */
7418
+ export const outboundSchema = OneEq$outboundSchema;
7419
+ /** @deprecated use `OneEq$Outbound` instead. */
7420
+ export type Outbound = OneEq$Outbound;
7882
7421
  }
7883
7422
 
7884
- export function oneDollarEqToJSON(oneDollarEq: OneDollarEq): string {
7885
- return JSON.stringify(OneDollarEq$outboundSchema.parse(oneDollarEq));
7423
+ export function oneEqToJSON(oneEq: OneEq): string {
7424
+ return JSON.stringify(OneEq$outboundSchema.parse(oneEq));
7886
7425
  }
7887
7426
 
7888
- export function oneDollarEqFromJSON(
7427
+ export function oneEqFromJSON(
7889
7428
  jsonString: string,
7890
- ): SafeParseResult<OneDollarEq, SDKValidationError> {
7429
+ ): SafeParseResult<OneEq, SDKValidationError> {
7891
7430
  return safeParse(
7892
7431
  jsonString,
7893
- (x) => OneDollarEq$inboundSchema.parse(JSON.parse(x)),
7894
- `Failed to parse 'OneDollarEq' from JSON`,
7432
+ (x) => OneEq$inboundSchema.parse(JSON.parse(x)),
7433
+ `Failed to parse 'OneEq' from JSON`,
7895
7434
  );
7896
7435
  }
7897
7436
 
7898
7437
  /** @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
- });
7438
+ export const Eq$inboundSchema: z.ZodType<Eq, z.ZodTypeDef, unknown> = z.object({
7439
+ eq: z.union([z.string(), z.number(), z.boolean()]),
7909
7440
  });
7910
7441
 
7911
7442
  /** @internal */
7912
- export type DollarEq$Outbound = {
7913
- $eq: string | number | boolean;
7443
+ export type Eq$Outbound = {
7444
+ eq: string | number | boolean;
7914
7445
  };
7915
7446
 
7916
7447
  /** @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",
7448
+ export const Eq$outboundSchema: z.ZodType<Eq$Outbound, z.ZodTypeDef, Eq> = z
7449
+ .object({
7450
+ eq: z.union([z.string(), z.number(), z.boolean()]),
7926
7451
  });
7927
- });
7928
7452
 
7929
7453
  /**
7930
7454
  * @internal
7931
7455
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7932
7456
  */
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;
7457
+ export namespace Eq$ {
7458
+ /** @deprecated use `Eq$inboundSchema` instead. */
7459
+ export const inboundSchema = Eq$inboundSchema;
7460
+ /** @deprecated use `Eq$outboundSchema` instead. */
7461
+ export const outboundSchema = Eq$outboundSchema;
7462
+ /** @deprecated use `Eq$Outbound` instead. */
7463
+ export type Outbound = Eq$Outbound;
7940
7464
  }
7941
7465
 
7942
- export function dollarEqToJSON(dollarEq: DollarEq): string {
7943
- return JSON.stringify(DollarEq$outboundSchema.parse(dollarEq));
7466
+ export function eqToJSON(eq: Eq): string {
7467
+ return JSON.stringify(Eq$outboundSchema.parse(eq));
7944
7468
  }
7945
7469
 
7946
- export function dollarEqFromJSON(
7470
+ export function eqFromJSON(
7947
7471
  jsonString: string,
7948
- ): SafeParseResult<DollarEq, SDKValidationError> {
7472
+ ): SafeParseResult<Eq, SDKValidationError> {
7949
7473
  return safeParse(
7950
7474
  jsonString,
7951
- (x) => DollarEq$inboundSchema.parse(JSON.parse(x)),
7952
- `Failed to parse 'DollarEq' from JSON`,
7475
+ (x) => Eq$inboundSchema.parse(JSON.parse(x)),
7476
+ `Failed to parse 'Eq' from JSON`,
7953
7477
  );
7954
7478
  }
7955
7479
 
@@ -7959,28 +7483,28 @@ export const KnowledgeFilter1$inboundSchema: z.ZodType<
7959
7483
  z.ZodTypeDef,
7960
7484
  unknown
7961
7485
  > = z.union([
7962
- z.lazy(() => DollarEq$inboundSchema),
7963
- z.lazy(() => DollarNe$inboundSchema),
7486
+ z.lazy(() => Eq$inboundSchema),
7487
+ z.lazy(() => Ne$inboundSchema),
7964
7488
  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),
7489
+ z.lazy(() => Gte$inboundSchema),
7490
+ z.lazy(() => Lt$inboundSchema),
7491
+ z.lazy(() => Lte$inboundSchema),
7492
+ z.lazy(() => In$inboundSchema),
7493
+ z.lazy(() => Nin$inboundSchema),
7494
+ z.lazy(() => Exists$inboundSchema),
7971
7495
  ]);
7972
7496
 
7973
7497
  /** @internal */
7974
7498
  export type KnowledgeFilter1$Outbound =
7975
- | DollarEq$Outbound
7976
- | DollarNe$Outbound
7499
+ | Eq$Outbound
7500
+ | Ne$Outbound
7977
7501
  | One3$Outbound
7978
- | DollarGte$Outbound
7979
- | DollarLt$Outbound
7980
- | DollarLte$Outbound
7981
- | DollarIn$Outbound
7982
- | DollarNin$Outbound
7983
- | DollarExists$Outbound;
7502
+ | Gte$Outbound
7503
+ | Lt$Outbound
7504
+ | Lte$Outbound
7505
+ | In$Outbound
7506
+ | Nin$Outbound
7507
+ | Exists$Outbound;
7984
7508
 
7985
7509
  /** @internal */
7986
7510
  export const KnowledgeFilter1$outboundSchema: z.ZodType<
@@ -7988,15 +7512,15 @@ export const KnowledgeFilter1$outboundSchema: z.ZodType<
7988
7512
  z.ZodTypeDef,
7989
7513
  KnowledgeFilter1
7990
7514
  > = z.union([
7991
- z.lazy(() => DollarEq$outboundSchema),
7992
- z.lazy(() => DollarNe$outboundSchema),
7515
+ z.lazy(() => Eq$outboundSchema),
7516
+ z.lazy(() => Ne$outboundSchema),
7993
7517
  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),
7518
+ z.lazy(() => Gte$outboundSchema),
7519
+ z.lazy(() => Lt$outboundSchema),
7520
+ z.lazy(() => Lte$outboundSchema),
7521
+ z.lazy(() => In$outboundSchema),
7522
+ z.lazy(() => Nin$outboundSchema),
7523
+ z.lazy(() => Exists$outboundSchema),
8000
7524
  ]);
8001
7525
 
8002
7526
  /**
@@ -8036,37 +7560,34 @@ export const KnowledgeFilter$inboundSchema: z.ZodType<
8036
7560
  z.ZodTypeDef,
8037
7561
  unknown
8038
7562
  > = z.union([
8039
- z.lazy(() => DollarAnd$inboundSchema),
8040
- z.lazy(() => DollarOr$inboundSchema),
7563
+ z.lazy(() => And$inboundSchema),
7564
+ z.lazy(() => Or$inboundSchema),
8041
7565
  z.record(z.union([
8042
- z.lazy(() => DollarEq$inboundSchema),
8043
- z.lazy(() => DollarNe$inboundSchema),
7566
+ z.lazy(() => Eq$inboundSchema),
7567
+ z.lazy(() => Ne$inboundSchema),
8044
7568
  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),
7569
+ z.lazy(() => Gte$inboundSchema),
7570
+ z.lazy(() => Lt$inboundSchema),
7571
+ z.lazy(() => Lte$inboundSchema),
7572
+ z.lazy(() => In$inboundSchema),
7573
+ z.lazy(() => Nin$inboundSchema),
7574
+ z.lazy(() => Exists$inboundSchema),
8051
7575
  ])),
8052
7576
  ]);
8053
7577
 
8054
7578
  /** @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
- };
7579
+ export type KnowledgeFilter$Outbound = And$Outbound | Or$Outbound | {
7580
+ [k: string]:
7581
+ | Eq$Outbound
7582
+ | Ne$Outbound
7583
+ | One3$Outbound
7584
+ | Gte$Outbound
7585
+ | Lt$Outbound
7586
+ | Lte$Outbound
7587
+ | In$Outbound
7588
+ | Nin$Outbound
7589
+ | Exists$Outbound;
7590
+ };
8070
7591
 
8071
7592
  /** @internal */
8072
7593
  export const KnowledgeFilter$outboundSchema: z.ZodType<
@@ -8074,18 +7595,18 @@ export const KnowledgeFilter$outboundSchema: z.ZodType<
8074
7595
  z.ZodTypeDef,
8075
7596
  KnowledgeFilter
8076
7597
  > = z.union([
8077
- z.lazy(() => DollarAnd$outboundSchema),
8078
- z.lazy(() => DollarOr$outboundSchema),
7598
+ z.lazy(() => And$outboundSchema),
7599
+ z.lazy(() => Or$outboundSchema),
8079
7600
  z.record(z.union([
8080
- z.lazy(() => DollarEq$outboundSchema),
8081
- z.lazy(() => DollarNe$outboundSchema),
7601
+ z.lazy(() => Eq$outboundSchema),
7602
+ z.lazy(() => Ne$outboundSchema),
8082
7603
  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),
7604
+ z.lazy(() => Gte$outboundSchema),
7605
+ z.lazy(() => Lt$outboundSchema),
7606
+ z.lazy(() => Lte$outboundSchema),
7607
+ z.lazy(() => In$outboundSchema),
7608
+ z.lazy(() => Nin$outboundSchema),
7609
+ z.lazy(() => Exists$outboundSchema),
8089
7610
  ])),
8090
7611
  ]);
8091
7612
 
@@ -8152,18 +7673,18 @@ export const DeploymentGetConfigRequestBody$inboundSchema: z.ZodType<
8152
7673
  invoke_options: z.lazy(() => InvokeOptions$inboundSchema).optional(),
8153
7674
  thread: z.lazy(() => Thread$inboundSchema).optional(),
8154
7675
  knowledge_filter: z.union([
8155
- z.lazy(() => DollarAnd$inboundSchema),
8156
- z.lazy(() => DollarOr$inboundSchema),
7676
+ z.lazy(() => And$inboundSchema),
7677
+ z.lazy(() => Or$inboundSchema),
8157
7678
  z.record(z.union([
8158
- z.lazy(() => DollarEq$inboundSchema),
8159
- z.lazy(() => DollarNe$inboundSchema),
7679
+ z.lazy(() => Eq$inboundSchema),
7680
+ z.lazy(() => Ne$inboundSchema),
8160
7681
  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),
7682
+ z.lazy(() => Gte$inboundSchema),
7683
+ z.lazy(() => Lt$inboundSchema),
7684
+ z.lazy(() => Lte$inboundSchema),
7685
+ z.lazy(() => In$inboundSchema),
7686
+ z.lazy(() => Nin$inboundSchema),
7687
+ z.lazy(() => Exists$inboundSchema),
8167
7688
  ])),
8168
7689
  ]).optional(),
8169
7690
  }).transform((v) => {
@@ -8205,17 +7726,17 @@ export type DeploymentGetConfigRequestBody$Outbound = {
8205
7726
  documents?: Array<Documents$Outbound> | undefined;
8206
7727
  invoke_options?: InvokeOptions$Outbound | undefined;
8207
7728
  thread?: Thread$Outbound | undefined;
8208
- knowledge_filter?: DollarAnd$Outbound | DollarOr$Outbound | {
7729
+ knowledge_filter?: And$Outbound | Or$Outbound | {
8209
7730
  [k: string]:
8210
- | DollarEq$Outbound
8211
- | DollarNe$Outbound
7731
+ | Eq$Outbound
7732
+ | Ne$Outbound
8212
7733
  | One3$Outbound
8213
- | DollarGte$Outbound
8214
- | DollarLt$Outbound
8215
- | DollarLte$Outbound
8216
- | DollarIn$Outbound
8217
- | DollarNin$Outbound
8218
- | DollarExists$Outbound;
7734
+ | Gte$Outbound
7735
+ | Lt$Outbound
7736
+ | Lte$Outbound
7737
+ | In$Outbound
7738
+ | Nin$Outbound
7739
+ | Exists$Outbound;
8219
7740
  } | undefined;
8220
7741
  };
8221
7742
 
@@ -8253,18 +7774,18 @@ export const DeploymentGetConfigRequestBody$outboundSchema: z.ZodType<
8253
7774
  invokeOptions: z.lazy(() => InvokeOptions$outboundSchema).optional(),
8254
7775
  thread: z.lazy(() => Thread$outboundSchema).optional(),
8255
7776
  knowledgeFilter: z.union([
8256
- z.lazy(() => DollarAnd$outboundSchema),
8257
- z.lazy(() => DollarOr$outboundSchema),
7777
+ z.lazy(() => And$outboundSchema),
7778
+ z.lazy(() => Or$outboundSchema),
8258
7779
  z.record(z.union([
8259
- z.lazy(() => DollarEq$outboundSchema),
8260
- z.lazy(() => DollarNe$outboundSchema),
7780
+ z.lazy(() => Eq$outboundSchema),
7781
+ z.lazy(() => Ne$outboundSchema),
8261
7782
  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),
7783
+ z.lazy(() => Gte$outboundSchema),
7784
+ z.lazy(() => Lt$outboundSchema),
7785
+ z.lazy(() => Lte$outboundSchema),
7786
+ z.lazy(() => In$outboundSchema),
7787
+ z.lazy(() => Nin$outboundSchema),
7788
+ z.lazy(() => Exists$outboundSchema),
8268
7789
  ])),
8269
7790
  ]).optional(),
8270
7791
  }).transform((v) => {
@@ -8352,6 +7873,158 @@ export namespace DeploymentGetConfigRole$ {
8352
7873
  export const outboundSchema = DeploymentGetConfigRole$outboundSchema;
8353
7874
  }
8354
7875
 
7876
+ /** @internal */
7877
+ export const DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$inboundSchema:
7878
+ z.ZodNativeEnum<
7879
+ typeof DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType
7880
+ > = z.nativeEnum(
7881
+ DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType,
7882
+ );
7883
+
7884
+ /** @internal */
7885
+ export const DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$outboundSchema:
7886
+ z.ZodNativeEnum<
7887
+ typeof DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType
7888
+ > =
7889
+ DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$inboundSchema;
7890
+
7891
+ /**
7892
+ * @internal
7893
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7894
+ */
7895
+ export namespace DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$ {
7896
+ /** @deprecated use `DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$inboundSchema` instead. */
7897
+ export const inboundSchema =
7898
+ DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$inboundSchema;
7899
+ /** @deprecated use `DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$outboundSchema` instead. */
7900
+ export const outboundSchema =
7901
+ DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$outboundSchema;
7902
+ }
7903
+
7904
+ /** @internal */
7905
+ export const DeploymentGetConfig2File$inboundSchema: z.ZodType<
7906
+ DeploymentGetConfig2File,
7907
+ z.ZodTypeDef,
7908
+ unknown
7909
+ > = z.object({
7910
+ file_data: z.string(),
7911
+ filename: z.string().optional(),
7912
+ }).transform((v) => {
7913
+ return remap$(v, {
7914
+ "file_data": "fileData",
7915
+ });
7916
+ });
7917
+
7918
+ /** @internal */
7919
+ export type DeploymentGetConfig2File$Outbound = {
7920
+ file_data: string;
7921
+ filename?: string | undefined;
7922
+ };
7923
+
7924
+ /** @internal */
7925
+ export const DeploymentGetConfig2File$outboundSchema: z.ZodType<
7926
+ DeploymentGetConfig2File$Outbound,
7927
+ z.ZodTypeDef,
7928
+ DeploymentGetConfig2File
7929
+ > = z.object({
7930
+ fileData: z.string(),
7931
+ filename: z.string().optional(),
7932
+ }).transform((v) => {
7933
+ return remap$(v, {
7934
+ fileData: "file_data",
7935
+ });
7936
+ });
7937
+
7938
+ /**
7939
+ * @internal
7940
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7941
+ */
7942
+ export namespace DeploymentGetConfig2File$ {
7943
+ /** @deprecated use `DeploymentGetConfig2File$inboundSchema` instead. */
7944
+ export const inboundSchema = DeploymentGetConfig2File$inboundSchema;
7945
+ /** @deprecated use `DeploymentGetConfig2File$outboundSchema` instead. */
7946
+ export const outboundSchema = DeploymentGetConfig2File$outboundSchema;
7947
+ /** @deprecated use `DeploymentGetConfig2File$Outbound` instead. */
7948
+ export type Outbound = DeploymentGetConfig2File$Outbound;
7949
+ }
7950
+
7951
+ export function deploymentGetConfig2FileToJSON(
7952
+ deploymentGetConfig2File: DeploymentGetConfig2File,
7953
+ ): string {
7954
+ return JSON.stringify(
7955
+ DeploymentGetConfig2File$outboundSchema.parse(deploymentGetConfig2File),
7956
+ );
7957
+ }
7958
+
7959
+ export function deploymentGetConfig2FileFromJSON(
7960
+ jsonString: string,
7961
+ ): SafeParseResult<DeploymentGetConfig2File, SDKValidationError> {
7962
+ return safeParse(
7963
+ jsonString,
7964
+ (x) => DeploymentGetConfig2File$inboundSchema.parse(JSON.parse(x)),
7965
+ `Failed to parse 'DeploymentGetConfig2File' from JSON`,
7966
+ );
7967
+ }
7968
+
7969
+ /** @internal */
7970
+ export const DeploymentGetConfig23$inboundSchema: z.ZodType<
7971
+ DeploymentGetConfig23,
7972
+ z.ZodTypeDef,
7973
+ unknown
7974
+ > = z.object({
7975
+ type:
7976
+ DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$inboundSchema,
7977
+ file: z.lazy(() => DeploymentGetConfig2File$inboundSchema),
7978
+ });
7979
+
7980
+ /** @internal */
7981
+ export type DeploymentGetConfig23$Outbound = {
7982
+ type: string;
7983
+ file: DeploymentGetConfig2File$Outbound;
7984
+ };
7985
+
7986
+ /** @internal */
7987
+ export const DeploymentGetConfig23$outboundSchema: z.ZodType<
7988
+ DeploymentGetConfig23$Outbound,
7989
+ z.ZodTypeDef,
7990
+ DeploymentGetConfig23
7991
+ > = z.object({
7992
+ type:
7993
+ DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$outboundSchema,
7994
+ file: z.lazy(() => DeploymentGetConfig2File$outboundSchema),
7995
+ });
7996
+
7997
+ /**
7998
+ * @internal
7999
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
8000
+ */
8001
+ export namespace DeploymentGetConfig23$ {
8002
+ /** @deprecated use `DeploymentGetConfig23$inboundSchema` instead. */
8003
+ export const inboundSchema = DeploymentGetConfig23$inboundSchema;
8004
+ /** @deprecated use `DeploymentGetConfig23$outboundSchema` instead. */
8005
+ export const outboundSchema = DeploymentGetConfig23$outboundSchema;
8006
+ /** @deprecated use `DeploymentGetConfig23$Outbound` instead. */
8007
+ export type Outbound = DeploymentGetConfig23$Outbound;
8008
+ }
8009
+
8010
+ export function deploymentGetConfig23ToJSON(
8011
+ deploymentGetConfig23: DeploymentGetConfig23,
8012
+ ): string {
8013
+ return JSON.stringify(
8014
+ DeploymentGetConfig23$outboundSchema.parse(deploymentGetConfig23),
8015
+ );
8016
+ }
8017
+
8018
+ export function deploymentGetConfig23FromJSON(
8019
+ jsonString: string,
8020
+ ): SafeParseResult<DeploymentGetConfig23, SDKValidationError> {
8021
+ return safeParse(
8022
+ jsonString,
8023
+ (x) => DeploymentGetConfig23$inboundSchema.parse(JSON.parse(x)),
8024
+ `Failed to parse 'DeploymentGetConfig23' from JSON`,
8025
+ );
8026
+ }
8027
+
8355
8028
  /** @internal */
8356
8029
  export const DeploymentGetConfig2DeploymentsResponse200Type$inboundSchema:
8357
8030
  z.ZodNativeEnum<typeof DeploymentGetConfig2DeploymentsResponse200Type> = z
@@ -8593,12 +8266,14 @@ export const DeploymentGetConfigContentDeploymentsResponse2$inboundSchema:
8593
8266
  > = z.union([
8594
8267
  z.lazy(() => DeploymentGetConfig21$inboundSchema),
8595
8268
  z.lazy(() => DeploymentGetConfig2Deployments2$inboundSchema),
8269
+ z.lazy(() => DeploymentGetConfig23$inboundSchema),
8596
8270
  ]);
8597
8271
 
8598
8272
  /** @internal */
8599
8273
  export type DeploymentGetConfigContentDeploymentsResponse2$Outbound =
8600
8274
  | DeploymentGetConfig21$Outbound
8601
- | DeploymentGetConfig2Deployments2$Outbound;
8275
+ | DeploymentGetConfig2Deployments2$Outbound
8276
+ | DeploymentGetConfig23$Outbound;
8602
8277
 
8603
8278
  /** @internal */
8604
8279
  export const DeploymentGetConfigContentDeploymentsResponse2$outboundSchema:
@@ -8609,6 +8284,7 @@ export const DeploymentGetConfigContentDeploymentsResponse2$outboundSchema:
8609
8284
  > = z.union([
8610
8285
  z.lazy(() => DeploymentGetConfig21$outboundSchema),
8611
8286
  z.lazy(() => DeploymentGetConfig2Deployments2$outboundSchema),
8287
+ z.lazy(() => DeploymentGetConfig23$outboundSchema),
8612
8288
  ]);
8613
8289
 
8614
8290
  /**
@@ -8664,6 +8340,7 @@ export const DeploymentGetConfigContent$inboundSchema: z.ZodType<
8664
8340
  z.array(z.union([
8665
8341
  z.lazy(() => DeploymentGetConfig21$inboundSchema),
8666
8342
  z.lazy(() => DeploymentGetConfig2Deployments2$inboundSchema),
8343
+ z.lazy(() => DeploymentGetConfig23$inboundSchema),
8667
8344
  ])),
8668
8345
  ]);
8669
8346
 
@@ -8671,7 +8348,9 @@ export const DeploymentGetConfigContent$inboundSchema: z.ZodType<
8671
8348
  export type DeploymentGetConfigContent$Outbound =
8672
8349
  | string
8673
8350
  | Array<
8674
- DeploymentGetConfig21$Outbound | DeploymentGetConfig2Deployments2$Outbound
8351
+ | DeploymentGetConfig21$Outbound
8352
+ | DeploymentGetConfig2Deployments2$Outbound
8353
+ | DeploymentGetConfig23$Outbound
8675
8354
  >;
8676
8355
 
8677
8356
  /** @internal */
@@ -8684,6 +8363,7 @@ export const DeploymentGetConfigContent$outboundSchema: z.ZodType<
8684
8363
  z.array(z.union([
8685
8364
  z.lazy(() => DeploymentGetConfig21$outboundSchema),
8686
8365
  z.lazy(() => DeploymentGetConfig2Deployments2$outboundSchema),
8366
+ z.lazy(() => DeploymentGetConfig23$outboundSchema),
8687
8367
  ])),
8688
8368
  ]);
8689
8369
 
@@ -8881,6 +8561,7 @@ export const DeploymentGetConfigMessages$inboundSchema: z.ZodType<
8881
8561
  z.array(z.union([
8882
8562
  z.lazy(() => DeploymentGetConfig21$inboundSchema),
8883
8563
  z.lazy(() => DeploymentGetConfig2Deployments2$inboundSchema),
8564
+ z.lazy(() => DeploymentGetConfig23$inboundSchema),
8884
8565
  ])),
8885
8566
  ]),
8886
8567
  tool_calls: z.array(z.lazy(() => DeploymentGetConfigToolCalls$inboundSchema))
@@ -8899,7 +8580,9 @@ export type DeploymentGetConfigMessages$Outbound = {
8899
8580
  content:
8900
8581
  | string
8901
8582
  | Array<
8902
- DeploymentGetConfig21$Outbound | DeploymentGetConfig2Deployments2$Outbound
8583
+ | DeploymentGetConfig21$Outbound
8584
+ | DeploymentGetConfig2Deployments2$Outbound
8585
+ | DeploymentGetConfig23$Outbound
8903
8586
  >;
8904
8587
  tool_calls?: Array<DeploymentGetConfigToolCalls$Outbound> | undefined;
8905
8588
  tool_call_id?: string | undefined;
@@ -8917,6 +8600,7 @@ export const DeploymentGetConfigMessages$outboundSchema: z.ZodType<
8917
8600
  z.array(z.union([
8918
8601
  z.lazy(() => DeploymentGetConfig21$outboundSchema),
8919
8602
  z.lazy(() => DeploymentGetConfig2Deployments2$outboundSchema),
8603
+ z.lazy(() => DeploymentGetConfig23$outboundSchema),
8920
8604
  ])),
8921
8605
  ]),
8922
8606
  toolCalls: z.array(z.lazy(() => DeploymentGetConfigToolCalls$outboundSchema))